/* ============================================================
   Grolan — Prebuilt Tailwind v4.1.5 Utility CSS
   Design System: Modern Sport / Deep Dark / Mustard-Amber
   Palette: #0D0D0B | #161612 | #F0EBE0 | #B5850A | #6B6456
   Fonts: Space Grotesk 700 (display) + Inter 400/500 (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@700&family=Inter:wght@400;500&display=swap');

/* 1. THEME TOKENS */
@layer base {
  :root {
    --color-bg-primary:    #0D0D0B;
    --color-bg-secondary:  #161612;
    --color-ink-primary:   #F0EBE0;
    --color-ink-muted:     #6B6456;
    --color-accent:        #B5850A;
    --font-display:        'Space Grotesk', sans-serif;
    --font-body:           'Inter', sans-serif;
    --radius-sm:           0.25rem;
    --radius-md:           0.5rem;
    --shadow-card:         0 4px 24px rgba(0,0,0,0.35);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background-color: var(--color-bg-primary);
    color: var(--color-ink-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
  }
  a { color: inherit; text-decoration: none; transition: color 0.2s; }
  a:hover { color: var(--color-accent); }
  img { max-width: 100%; display: block; }
  ul, ol { list-style: none; }
  button { cursor: pointer; }
}

/* 2. LAYOUT */
.flex           { display: flex; }
.inline-flex    { display: inline-flex; }
.grid           { display: grid; }
.block          { display: block; }
.inline-block   { display: inline-block; }
.hidden         { display: none; }
.relative       { position: relative; }
.absolute       { position: absolute; }
.fixed          { position: fixed; }
.sticky         { position: sticky; }
.inset-0        { top:0; right:0; bottom:0; left:0; }
.top-0          { top: 0; }
.left-0         { left: 0; }
.right-0        { right: 0; }
.bottom-0       { bottom: 0; }
.bottom-4       { bottom: 1rem; }
.top-1\/2       { top: 50%; }
.left-1\/2      { left: 50%; }
.z-10           { z-index: 10; }
.z-20           { z-index: 20; }
.z-30           { z-index: 30; }
.z-40           { z-index: 40; }
.z-50           { z-index: 50; }
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-auto  { overflow: auto; }
.flex-col       { flex-direction: column; }
.flex-row       { flex-direction: row; }
.flex-wrap      { flex-wrap: wrap; }
.flex-nowrap    { flex-wrap: nowrap; }
.flex-1         { flex: 1 1 0%; }
.flex-shrink-0  { flex-shrink: 0; }
.items-start    { align-items: flex-start; }
.items-center   { align-items: center; }
.items-end      { align-items: flex-end; }
.items-stretch  { align-items: stretch; }
.justify-start  { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end    { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around  { justify-content: space-around; }
.self-start     { align-self: flex-start; }
.self-center    { align-self: center; }
.self-end       { align-self: flex-end; }
.self-stretch   { align-self: stretch; }
.col-span-1     { grid-column: span 1; }
.col-span-2     { grid-column: span 2; }
.col-span-3     { grid-column: span 3; }
.col-span-full  { grid-column: 1 / -1; }
.row-span-2     { grid-row: span 2; }
.grid-cols-1    { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2    { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3    { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4    { grid-template-columns: repeat(4, 1fr); }

/* 3. SPACING — Gap */
.gap-1   { gap: 0.25rem; }
.gap-2   { gap: 0.5rem; }
.gap-3   { gap: 0.75rem; }
.gap-4   { gap: 1rem; }
.gap-5   { gap: 1.25rem; }
.gap-6   { gap: 1.5rem; }
.gap-7   { gap: 1.75rem; }
.gap-8   { gap: 2rem; }
.gap-10  { gap: 2.5rem; }
.gap-12  { gap: 3rem; }
.gap-16  { gap: 4rem; }
.gap-x-4 { column-gap: 1rem; }
.gap-x-6 { column-gap: 1.5rem; }
.gap-x-8 { column-gap: 2rem; }
.gap-y-4 { row-gap: 1rem; }
.gap-y-6 { row-gap: 1.5rem; }
.gap-y-8 { row-gap: 2rem; }

/* 3b. SPACING — Margin */
.m-0    { margin: 0; }
.m-auto { margin: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-auto { margin-top: auto; margin-bottom: auto; }
.mt-0   { margin-top: 0; }
.mt-1   { margin-top: 0.25rem; }
.mt-2   { margin-top: 0.5rem; }
.mt-3   { margin-top: 0.75rem; }
.mt-4   { margin-top: 1rem; }
.mt-5   { margin-top: 1.25rem; }
.mt-6   { margin-top: 1.5rem; }
.mt-7   { margin-top: 1.75rem; }
.mt-8   { margin-top: 2rem; }
.mt-10  { margin-top: 2.5rem; }
.mt-12  { margin-top: 3rem; }
.mt-14  { margin-top: 3.5rem; }
.mt-16  { margin-top: 4rem; }
.mt-20  { margin-top: 5rem; }
.mt-24  { margin-top: 6rem; }
.mt-28  { margin-top: 7rem; }
.mt-32  { margin-top: 8rem; }
.mb-0   { margin-bottom: 0; }
.mb-1   { margin-bottom: 0.25rem; }
.mb-2   { margin-bottom: 0.5rem; }
.mb-3   { margin-bottom: 0.75rem; }
.mb-4   { margin-bottom: 1rem; }
.mb-5   { margin-bottom: 1.25rem; }
.mb-6   { margin-bottom: 1.5rem; }
.mb-7   { margin-bottom: 1.75rem; }
.mb-8   { margin-bottom: 2rem; }
.mb-10  { margin-bottom: 2.5rem; }
.mb-12  { margin-bottom: 3rem; }
.mb-16  { margin-bottom: 4rem; }
.mb-24  { margin-bottom: 6rem; }
.ml-0   { margin-left: 0; }
.ml-1   { margin-left: 0.25rem; }
.ml-2   { margin-left: 0.5rem; }
.ml-3   { margin-left: 0.75rem; }
.ml-4   { margin-left: 1rem; }
.ml-auto { margin-left: auto; }
.mr-0   { margin-right: 0; }
.mr-1   { margin-right: 0.25rem; }
.mr-2   { margin-right: 0.5rem; }
.mr-3   { margin-right: 0.75rem; }
.mr-auto { margin-right: auto; }
.-mt-2  { margin-top: -0.5rem; }
.-mt-4  { margin-top: -1rem; }
.-mb-2  { margin-bottom: -0.5rem; }

/* 3c. SPACING — Padding */
.p-0    { padding: 0; }
.p-1    { padding: 0.25rem; }
.p-2    { padding: 0.5rem; }
.p-3    { padding: 0.75rem; }
.p-4    { padding: 1rem; }
.p-5    { padding: 1.25rem; }
.p-6    { padding: 1.5rem; }
.p-7    { padding: 1.75rem; }
.p-8    { padding: 2rem; }
.p-10   { padding: 2.5rem; }
.p-12   { padding: 3rem; }
.px-2   { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3   { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4   { padding-left: 1rem; padding-right: 1rem; }
.px-5   { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6   { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-7   { padding-left: 1.75rem; padding-right: 1.75rem; }
.px-8   { padding-left: 2rem; padding-right: 2rem; }
.px-10  { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-12  { padding-left: 3rem; padding-right: 3rem; }
.py-1   { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2   { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3   { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4   { padding-top: 1rem; padding-bottom: 1rem; }
.py-5   { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6   { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-7   { padding-top: 1.75rem; padding-bottom: 1.75rem; }
.py-8   { padding-top: 2rem; padding-bottom: 2rem; }
.py-10  { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12  { padding-top: 3rem; padding-bottom: 3rem; }
.py-14  { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16  { padding-top: 4rem; padding-bottom: 4rem; }
.py-20  { padding-top: 5rem; padding-bottom: 5rem; }
.py-24  { padding-top: 6rem; padding-bottom: 6rem; }
.py-28  { padding-top: 7rem; padding-bottom: 7rem; }
.py-32  { padding-top: 8rem; padding-bottom: 8rem; }
.pt-0   { padding-top: 0; }
.pt-2   { padding-top: 0.5rem; }
.pt-3   { padding-top: 0.75rem; }
.pt-4   { padding-top: 1rem; }
.pt-6   { padding-top: 1.5rem; }
.pt-8   { padding-top: 2rem; }
.pt-10  { padding-top: 2.5rem; }
.pt-12  { padding-top: 3rem; }
.pt-16  { padding-top: 4rem; }
.pt-20  { padding-top: 5rem; }
.pt-24  { padding-top: 6rem; }
.pb-0   { padding-bottom: 0; }
.pb-2   { padding-bottom: 0.5rem; }
.pb-3   { padding-bottom: 0.75rem; }
.pb-4   { padding-bottom: 1rem; }
.pb-6   { padding-bottom: 1.5rem; }
.pb-8   { padding-bottom: 2rem; }
.pb-10  { padding-bottom: 2.5rem; }
.pb-12  { padding-bottom: 3rem; }
.pb-16  { padding-bottom: 4rem; }
.pb-24  { padding-bottom: 6rem; }
.pl-0   { padding-left: 0; }
.pl-2   { padding-left: 0.5rem; }
.pl-3   { padding-left: 0.75rem; }
.pl-4   { padding-left: 1rem; }
.pl-6   { padding-left: 1.5rem; }
.pl-8   { padding-left: 2rem; }
.pr-0   { padding-right: 0; }
.pr-2   { padding-right: 0.5rem; }
.pr-3   { padding-right: 0.75rem; }
.pr-4   { padding-right: 1rem; }
.pr-6   { padding-right: 1.5rem; }
.pr-8   { padding-right: 2rem; }

/* Space-y */
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }
.space-y-12 > * + * { margin-top: 3rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-4 > * + * { margin-left: 1rem; }

/* 4. SIZING */
.w-full     { width: 100%; }
.w-screen   { width: 100vw; }
.w-auto     { width: auto; }
.w-0        { width: 0; }
.w-4        { width: 1rem; }
.w-5        { width: 1.25rem; }
.w-6        { width: 1.5rem; }
.w-8        { width: 2rem; }
.w-10       { width: 2.5rem; }
.w-12       { width: 3rem; }
.w-16       { width: 4rem; }
.w-20       { width: 5rem; }
.w-24       { width: 6rem; }
.w-32       { width: 8rem; }
.w-40       { width: 10rem; }
.w-48       { width: 12rem; }
.w-1\/2     { width: 50%; }
.w-1\/3     { width: 33.3333%; }
.w-2\/3     { width: 66.6667%; }
.w-3\/4     { width: 75%; }
.w-\[calc\(100\%-1\.5rem\)\] { width: calc(100% - 1.5rem); }
.h-full     { height: 100%; }
.h-screen   { height: 100vh; }
.h-auto     { height: auto; }
.h-0        { height: 0; }
.h-0\.5     { height: 0.125rem; }
.h-1        { height: 0.25rem; }
.h-2        { height: 0.5rem; }
.h-4        { height: 1rem; }
.h-5        { height: 1.25rem; }
.h-6        { height: 1.5rem; }
.h-8        { height: 2rem; }
.h-10       { height: 2.5rem; }
.h-12       { height: 3rem; }
.h-16       { height: 4rem; }
.h-20       { height: 5rem; }
.h-24       { height: 6rem; }
.h-32       { height: 8rem; }
.h-40       { height: 10rem; }
.h-48       { height: 12rem; }
.h-56       { height: 14rem; }
.h-64       { height: 16rem; }
.h-72       { height: 18rem; }
.h-80       { height: 20rem; }
.h-96       { height: 24rem; }
.h-\[50vh\] { height: 50vh; }
.h-\[60vh\] { height: 60vh; }
.h-\[70vh\] { height: 70vh; }
.h-\[80vh\] { height: 80vh; }
.h-\[90vh\] { height: 90vh; }
.min-h-0    { min-height: 0; }
.min-h-screen { min-height: 100vh; }
.min-h-\[60vh\] { min-height: 60vh; }
.min-h-\[70vh\] { min-height: 70vh; }
.min-h-\[80vh\] { min-height: 80vh; }
.max-w-none { max-width: none; }
.max-w-xs   { max-width: 20rem; }
.max-w-sm   { max-width: 24rem; }
.max-w-md   { max-width: 28rem; }
.max-w-lg   { max-width: 32rem; }
.max-w-xl   { max-width: 36rem; }
.max-w-2xl  { max-width: 42rem; }
.max-w-3xl  { max-width: 48rem; }
.max-w-4xl  { max-width: 56rem; }
.max-w-5xl  { max-width: 64rem; }
.max-w-6xl  { max-width: 72rem; }
.max-w-7xl  { max-width: 80rem; }
.max-w-full { max-width: 100%; }
.min-w-0    { min-width: 0; }
.min-w-full { min-width: 100%; }
.min-w-\[120px\] { min-width: 120px; }
.min-w-\[160px\] { min-width: 160px; }

/* Aspect ratio */
.aspect-square    { aspect-ratio: 1 / 1; }
.aspect-video     { aspect-ratio: 16 / 9; }
.aspect-\[4\/3\]  { aspect-ratio: 4 / 3; }
.aspect-\[16\/9\] { aspect-ratio: 16 / 9; }
.aspect-\[21\/9\] { aspect-ratio: 21 / 9; }
.aspect-\[3\/2\]  { aspect-ratio: 3 / 2; }
.aspect-\[2\/3\]  { aspect-ratio: 2 / 3; }
.aspect-\[1\/1\]  { aspect-ratio: 1 / 1; }

/* Object fit */
.object-cover   { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-fill    { object-fit: fill; }
.object-center  { object-position: center; }
.object-top     { object-position: top; }

/* 5. TYPOGRAPHY */
.text-xs    { font-size: 0.75rem;   line-height: 1rem; }
.text-sm    { font-size: 0.875rem;  line-height: 1.25rem; }
.text-base  { font-size: 1rem;      line-height: 1.5rem; }
.text-lg    { font-size: 1.125rem;  line-height: 1.75rem; }
.text-xl    { font-size: 1.25rem;   line-height: 1.75rem; }
.text-2xl   { font-size: 1.5rem;    line-height: 2rem; }
.text-3xl   { font-size: 1.875rem;  line-height: 2.25rem; }
.text-4xl   { font-size: 2.25rem;   line-height: 2.5rem; }
.text-5xl   { font-size: 3rem;      line-height: 1; }
.text-6xl   { font-size: 3.75rem;   line-height: 1; }
.text-7xl   { font-size: 4.5rem;    line-height: 1; }
.text-8xl   { font-size: 6rem;      line-height: 1; }
.text-9xl   { font-size: 8rem;      line-height: 1; }
.text-\[0\.6875rem\]  { font-size: 0.6875rem; }
.text-\[0\.8125rem\]  { font-size: 0.8125rem; }
.text-\[1\.125rem\]   { font-size: 1.125rem; }
.text-\[clamp\(1\.5rem\2C_4vw\2C_2\.5rem\)\]  { font-size: clamp(1.5rem, 4vw, 2.5rem); }
.text-\[clamp\(2rem\2C_5vw\2C_3\.5rem\)\]     { font-size: clamp(2rem, 5vw, 3.5rem); }
.text-\[clamp\(2\.5rem\2C_6vw\2C_5rem\)\]     { font-size: clamp(2.5rem, 6vw, 5rem); }
.text-\[clamp\(3rem\2C_7vw\2C_6rem\)\]        { font-size: clamp(3rem, 7vw, 6rem); }
.text-\[clamp\(3\.5rem\2C_8vw\2C_7rem\)\]     { font-size: clamp(3.5rem, 8vw, 7rem); }

.font-normal   { font-weight: 400; }
.font-medium   { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold     { font-weight: 700; }
.font-black    { font-weight: 900; }

.font-sans    { font-family: 'Inter', sans-serif; }
.font-display { font-family: 'Space Grotesk', sans-serif; font-weight: 700; }
.font-mono    { font-family: 'Space Mono', 'Courier New', monospace; }
.font-serif   { font-family: Georgia, 'Times New Roman', serif; }
.italic       { font-style: italic; }
.not-italic   { font-style: normal; }

.leading-none    { line-height: 1; }
.leading-tight   { line-height: 1.25; }
.leading-snug    { line-height: 1.375; }
.leading-normal  { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose   { line-height: 2; }
.leading-\[1\.1\]  { line-height: 1.1; }
.leading-\[1\.15\] { line-height: 1.15; }
.leading-\[1\.2\]  { line-height: 1.2; }
.leading-\[1\.3\]  { line-height: 1.3; }
.leading-\[1\.4\]  { line-height: 1.4; }
.leading-\[1\.7\]  { line-height: 1.7; }
.leading-\[1\.8\]  { line-height: 1.8; }

.tracking-tighter { letter-spacing: -0.05em; }
.tracking-tight   { letter-spacing: -0.025em; }
.tracking-normal  { letter-spacing: 0; }
.tracking-wide    { letter-spacing: 0.025em; }
.tracking-wider   { letter-spacing: 0.05em; }
.tracking-widest  { letter-spacing: 0.1em; }
.tracking-\[0\.08em\]  { letter-spacing: 0.08em; }
.tracking-\[0\.12em\]  { letter-spacing: 0.12em; }
.tracking-\[0\.15em\]  { letter-spacing: 0.15em; }
.tracking-\[0\.18em\]  { letter-spacing: 0.18em; }
.tracking-\[-0\.03em\] { letter-spacing: -0.03em; }
.tracking-\[-0\.04em\] { letter-spacing: -0.04em; }

.uppercase   { text-transform: uppercase; }
.lowercase   { text-transform: lowercase; }
.capitalize  { text-transform: capitalize; }
.normal-case { text-transform: none; }
.truncate    { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.whitespace-nowrap  { white-space: nowrap; }
.whitespace-pre     { white-space: pre; }
.break-words { overflow-wrap: break-word; }
.text-left   { text-align: left; }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-balance  { text-wrap: balance; }
.text-pretty   { text-wrap: pretty; }
.underline              { text-decoration: underline; }
.no-underline           { text-decoration: none; }
.underline-offset-2     { text-underline-offset: 2px; }
.underline-offset-4     { text-underline-offset: 4px; }
.decoration-1           { text-decoration-thickness: 1px; }
.list-disc              { list-style-type: disc; }
.list-decimal           { list-style-type: decimal; }
.list-inside            { list-style-position: inside; }

/* 6. COLORS — Text */
.text-\[\#F0EBE0\]  { color: #F0EBE0; }
.text-\[\#E8DFD0\]  { color: #E8DFD0; }
.text-\[\#D5C9B8\]  { color: #D5C9B8; }
.text-\[\#B5850A\]  { color: #B5850A; }
.text-\[\#C9950B\]  { color: #C9950B; }
.text-\[\#6B6456\]  { color: #6B6456; }
.text-\[\#8A7D6E\]  { color: #8A7D6E; }
.text-\[\#0D0D0B\]  { color: #0D0D0B; }
.text-\[\#161612\]  { color: #161612; }
.text-\[\#1A1A16\]  { color: #1A1A16; }
.text-white         { color: #ffffff; }
.text-\[\#D8E2DC\]  { color: #D8E2DC; }

/* 6b. COLORS — Background */
.bg-\[\#0D0D0B\]   { background-color: #0D0D0B; }
.bg-\[\#161612\]   { background-color: #161612; }
.bg-\[\#1A1A16\]   { background-color: #1A1A16; }
.bg-\[\#1E1D19\]   { background-color: #1E1D19; }
.bg-\[\#222219\]   { background-color: #222219; }
.bg-\[\#252420\]   { background-color: #252420; }
.bg-\[\#2A2920\]   { background-color: #2A2920; }
.bg-\[\#B5850A\]   { background-color: #B5850A; }
.bg-\[\#C9950B\]   { background-color: #C9950B; }
.bg-\[\#0D0D0B\/80\] { background-color: rgba(13,13,11,0.80); }
.bg-\[\#0D0D0B\/90\] { background-color: rgba(13,13,11,0.90); }
.bg-\[\#161612\/80\] { background-color: rgba(22,22,18,0.80); }
.bg-\[\#B5850A\/10\] { background-color: rgba(181,133,10,0.10); }
.bg-\[\#B5850A\/15\] { background-color: rgba(181,133,10,0.15); }
.bg-\[\#B5850A\/20\] { background-color: rgba(181,133,10,0.20); }
.bg-transparent    { background-color: transparent; }
.bg-white          { background-color: #ffffff; }

/* 6c. COLORS — Border */
.border-\[\#6B6456\]       { border-color: #6B6456; }
.border-\[\#6B6456\]\/10   { border-color: rgba(107,100,86,0.10); }
.border-\[\#6B6456\]\/15   { border-color: rgba(107,100,86,0.15); }
.border-\[\#6B6456\]\/20   { border-color: rgba(107,100,86,0.20); }
.border-\[\#6B6456\]\/30   { border-color: rgba(107,100,86,0.30); }
.border-\[\#6B6456\]\/40   { border-color: rgba(107,100,86,0.40); }
.border-\[\#6B6456\]\/50   { border-color: rgba(107,100,86,0.50); }
.border-\[\#B5850A\]       { border-color: #B5850A; }
.border-\[\#B5850A\]\/30   { border-color: rgba(181,133,10,0.30); }
.border-\[\#B5850A\]\/40   { border-color: rgba(181,133,10,0.40); }
.border-\[\#B5850A\]\/50   { border-color: rgba(181,133,10,0.50); }
.border-\[\#F0EBE0\]\/10   { border-color: rgba(240,235,224,0.10); }
.border-\[\#F0EBE0\]\/20   { border-color: rgba(240,235,224,0.20); }
.border-transparent        { border-color: transparent; }
.border-white\/18          { border-color: rgba(255,255,255,0.18); }
.divide-\[\#6B6456\]\/20 > * + * { border-top: 1px solid rgba(107,100,86,0.20); }

/* 6d. COLORS — Fill / Stroke */
.fill-\[\#B5850A\]   { fill: #B5850A; }
.fill-current        { fill: currentColor; }
.stroke-\[\#B5850A\] { stroke: #B5850A; }
.stroke-\[\#6B6456\] { stroke: #6B6456; }
.stroke-2            { stroke-width: 2; }

/* 7. BORDERS */
.border         { border-width: 1px; border-style: solid; }
.border-0       { border-width: 0; }
.border-2       { border-width: 2px; border-style: solid; }
.border-t       { border-top-width: 1px; border-top-style: solid; }
.border-b       { border-bottom-width: 1px; border-bottom-style: solid; }
.border-l       { border-left-width: 1px; border-left-style: solid; }
.border-r       { border-right-width: 1px; border-right-style: solid; }
.border-t-2     { border-top-width: 2px; border-top-style: solid; }
.border-b-2     { border-bottom-width: 2px; border-bottom-style: solid; }
.border-l-2     { border-left-width: 2px; border-left-style: solid; }
.border-l-4     { border-left-width: 4px; border-left-style: solid; }
.border-none    { border-style: none; }
.rounded        { border-radius: 0.25rem; }
.rounded-sm     { border-radius: 0.125rem; }
.rounded-md     { border-radius: 0.375rem; }
.rounded-lg     { border-radius: 0.5rem; }
.rounded-xl     { border-radius: 0.75rem; }
.rounded-2xl    { border-radius: 1rem; }
.rounded-full   { border-radius: 9999px; }
.rounded-none   { border-radius: 0; }
.rounded-t-lg   { border-top-left-radius: 0.5rem; border-top-right-radius: 0.5rem; }
.rounded-b-lg   { border-bottom-left-radius: 0.5rem; border-bottom-right-radius: 0.5rem; }

/* 8. EFFECTS */
.opacity-0      { opacity: 0; }
.opacity-10     { opacity: 0.1; }
.opacity-20     { opacity: 0.2; }
.opacity-30     { opacity: 0.3; }
.opacity-40     { opacity: 0.4; }
.opacity-50     { opacity: 0.5; }
.opacity-60     { opacity: 0.6; }
.opacity-70     { opacity: 0.7; }
.opacity-80     { opacity: 0.8; }
.opacity-90     { opacity: 0.9; }
.opacity-100    { opacity: 1; }
.shadow         { box-shadow: 0 1px 3px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.2); }
.shadow-md      { box-shadow: 0 4px 6px rgba(0,0,0,0.35), 0 2px 4px rgba(0,0,0,0.25); }
.shadow-lg      { box-shadow: 0 10px 15px rgba(0,0,0,0.4), 0 4px 6px rgba(0,0,0,0.3); }
.shadow-xl      { box-shadow: 0 20px 25px rgba(0,0,0,0.5), 0 10px 10px rgba(0,0,0,0.3); }
.shadow-none    { box-shadow: none; }
.shadow-\[0_4px_24px_rgba\(0\,0\,0\,0\.35\)\] { box-shadow: 0 4px 24px rgba(0,0,0,0.35); }
.shadow-\[0_20px_60px_rgba\(15\,23\,42\,0\.24\)\] { box-shadow: 0 20px 60px rgba(15,23,42,0.24); }
.shadow-\[4px_4px_0_\#B5850A\] { box-shadow: 4px 4px 0 #B5850A; }
.shadow-\[6px_6px_0_\#B5850A\] { box-shadow: 6px 6px 0 #B5850A; }
.shadow-\[-4px_4px_0_\#B5850A\] { box-shadow: -4px 4px 0 #B5850A; }
.blur-sm        { filter: blur(4px); }
.blur           { filter: blur(8px); }
.blur-xl        { filter: blur(24px); }
.backdrop-blur  { backdrop-filter: blur(8px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); }

/* 9. TRANSFORMS */
.rotate-90      { transform: rotate(90deg); }
.rotate-180     { transform: rotate(180deg); }
.-rotate-90     { transform: rotate(-90deg); }
.rotate-\[-8deg\]  { transform: rotate(-8deg); }
.rotate-\[-12deg\] { transform: rotate(-12deg); }
.rotate-\[8deg\]   { transform: rotate(8deg); }
.scale-95       { transform: scale(0.95); }
.scale-100      { transform: scale(1); }
.scale-105      { transform: scale(1.05); }
.translate-x-0  { transform: translateX(0); }
.translate-y-0  { transform: translateY(0); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.translate-x-1\/2  { transform: translateX(50%); }
.translate-y-1\/2  { transform: translateY(50%); }

/* 10. TRANSITIONS */
.transition        { transition: all 0.15s ease; }
.transition-all    { transition: all 0.15s ease; }
.transition-colors { transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease; }
.transition-opacity { transition: opacity 0.15s ease; }
.transition-transform { transition: transform 0.15s ease; }
.transition-shadow { transition: box-shadow 0.15s ease; }
.duration-100      { transition-duration: 100ms; }
.duration-150      { transition-duration: 150ms; }
.duration-200      { transition-duration: 200ms; }
.duration-300      { transition-duration: 300ms; }
.duration-500      { transition-duration: 500ms; }
.ease-in           { transition-timing-function: cubic-bezier(0.4,0,1,1); }
.ease-out          { transition-timing-function: cubic-bezier(0,0,0.2,1); }
.ease-in-out       { transition-timing-function: cubic-bezier(0.4,0,0.2,1); }
.ease-linear       { transition-timing-function: linear; }

/* 11. HOVER / FOCUS / STATE */
.hover\:text-\[\#B5850A\]:hover         { color: #B5850A; }
.hover\:text-\[\#C9950B\]:hover         { color: #C9950B; }
.hover\:text-\[\#F0EBE0\]:hover         { color: #F0EBE0; }
.hover\:bg-\[\#B5850A\]:hover           { background-color: #B5850A; }
.hover\:bg-\[\#1A1A16\]:hover           { background-color: #1A1A16; }
.hover\:bg-\[\#1E1D19\]:hover           { background-color: #1E1D19; }
.hover\:bg-\[\#222219\]:hover           { background-color: #222219; }
.hover\:bg-\[\#161612\]:hover           { background-color: #161612; }
.hover\:border-\[\#B5850A\]:hover       { border-color: #B5850A; }
.hover\:border-\[\#B5850A\]\/50:hover   { border-color: rgba(181,133,10,0.50); }
.hover\:border-\[\#6B6456\]:hover       { border-color: #6B6456; }
.hover\:opacity-90:hover               { opacity: 0.9; }
.hover\:opacity-80:hover               { opacity: 0.8; }
.hover\:scale-105:hover                { transform: scale(1.05); }
.hover\:shadow-lg:hover                { box-shadow: 0 10px 15px rgba(0,0,0,0.4), 0 4px 6px rgba(0,0,0,0.3); }
.hover\:shadow-\[4px_4px_0_\#B5850A\]:hover { box-shadow: 4px 4px 0 #B5850A; }
.group:hover .group-hover\:opacity-100  { opacity: 1; }
.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }
.group:hover .group-hover\:text-\[\#B5850A\] { color: #B5850A; }
.focus\:outline-none:focus             { outline: none; }
.focus\:ring-2:focus                   { box-shadow: 0 0 0 2px #B5850A; }
.focus\:border-\[\#B5850A\]:focus      { border-color: #B5850A; }

/* 12. RESPONSIVE — md: (768px+) */
@media (min-width: 768px) {
  .md\:block        { display: block; }
  .md\:flex         { display: flex; }
  .md\:grid         { display: grid; }
  .md\:hidden       { display: none; }
  .md\:inline-block { display: inline-block; }
  .md\:inline-flex  { display: inline-flex; }
  .md\:flex-row     { flex-direction: row; }
  .md\:flex-col     { flex-direction: column; }
  .md\:items-center { align-items: center; }
  .md\:items-start  { align-items: flex-start; }
  .md\:justify-between { justify-content: space-between; }
  .md\:justify-end  { justify-content: flex-end; }
  .md\:gap-4        { gap: 1rem; }
  .md\:gap-6        { gap: 1.5rem; }
  .md\:gap-8        { gap: 2rem; }
  .md\:gap-12       { gap: 3rem; }
  .md\:gap-16       { gap: 4rem; }
  .md\:mt-0         { margin-top: 0; }
  .md\:mt-8         { margin-top: 2rem; }
  .md\:mb-0         { margin-bottom: 0; }
  .md\:mb-8         { margin-bottom: 2rem; }
  .md\:px-8         { padding-left: 2rem; padding-right: 2rem; }
  .md\:py-12        { padding-top: 3rem; padding-bottom: 3rem; }
  .md\:py-16        { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:py-24        { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:pt-0         { padding-top: 0; }
  .md\:pb-0         { padding-bottom: 0; }
  .md\:grid-cols-2  { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3  { grid-template-columns: repeat(3, 1fr); }
  .md\:grid-cols-4  { grid-template-columns: repeat(4, 1fr); }
  .md\:col-span-1   { grid-column: span 1; }
  .md\:col-span-2   { grid-column: span 2; }
  .md\:col-span-3   { grid-column: span 3; }
  .md\:w-1\/2       { width: 50%; }
  .md\:w-2\/3       { width: 66.6667%; }
  .md\:w-3\/5       { width: 60%; }
  .md\:w-2\/5       { width: 40%; }
  .md\:w-full       { width: 100%; }
  .md\:max-w-none   { max-width: none; }
  .md\:text-sm      { font-size: 0.875rem; }
  .md\:text-base    { font-size: 1rem; }
  .md\:text-lg      { font-size: 1.125rem; }
  .md\:text-xl      { font-size: 1.25rem; }
  .md\:text-2xl     { font-size: 1.5rem; }
  .md\:text-3xl     { font-size: 1.875rem; }
  .md\:text-4xl     { font-size: 2.25rem; }
  .md\:text-5xl     { font-size: 3rem; }
  .md\:text-left    { text-align: left; }
  .md\:text-right   { text-align: right; }
  .md\:aspect-\[21\/9\] { aspect-ratio: 21/9; }
  .md\:border-l     { border-left-width: 1px; border-left-style: solid; }
  .md\:border-t-0   { border-top-width: 0; }
}

/* 12b. RESPONSIVE — lg: (1024px+) */
@media (min-width: 1024px) {
  .lg\:flex         { display: flex; }
  .lg\:grid         { display: grid; }
  .lg\:hidden       { display: none; }
  .lg\:block        { display: block; }
  .lg\:flex-row     { flex-direction: row; }
  .lg\:items-center { align-items: center; }
  .lg\:gap-8        { gap: 2rem; }
  .lg\:gap-12       { gap: 3rem; }
  .lg\:gap-16       { gap: 4rem; }
  .lg\:gap-24       { gap: 6rem; }
  .lg\:px-8         { padding-left: 2rem; padding-right: 2rem; }
  .lg\:py-24        { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\:py-32        { padding-top: 8rem; padding-bottom: 8rem; }
  .lg\:grid-cols-2  { grid-template-columns: repeat(2, 1fr); }
  .lg\:grid-cols-3  { grid-template-columns: repeat(3, 1fr); }
  .lg\:grid-cols-4  { grid-template-columns: repeat(4, 1fr); }
  .lg\:col-span-1   { grid-column: span 1; }
  .lg\:col-span-2   { grid-column: span 2; }
  .lg\:w-3\/5       { width: 60%; }
  .lg\:w-2\/5       { width: 40%; }
  .lg\:w-1\/2       { width: 50%; }
  .lg\:text-xl      { font-size: 1.25rem; }
  .lg\:text-2xl     { font-size: 1.5rem; }
  .lg\:text-3xl     { font-size: 1.875rem; }
  .lg\:text-4xl     { font-size: 2.25rem; }
  .lg\:text-5xl     { font-size: 3rem; }
  .lg\:text-6xl     { font-size: 3.75rem; }
  .lg\:text-7xl     { font-size: 4.5rem; }
  .lg\:text-8xl     { font-size: 6rem; }
}

/* 12c. RESPONSIVE — xl: (1280px+) */
@media (min-width: 1280px) {
  .xl\:text-8xl     { font-size: 6rem; }
  .xl\:text-9xl     { font-size: 8rem; }
  .xl\:grid-cols-4  { grid-template-columns: repeat(4, 1fr); }
  .xl\:gap-16       { gap: 4rem; }
  .xl\:py-32        { padding-top: 8rem; padding-bottom: 8rem; }
}

/* 13. ARBITRARY VALUE CLASSES (JIT-style, used in markup) */
.w-\[calc\(100\%-1\.5rem\)\]     { width: calc(100% - 1.5rem); }
.h-\[2px\]                        { height: 2px; }
.h-\[1px\]                        { height: 1px; }
.w-\[40px\]                       { width: 40px; }
.h-\[40px\]                       { height: 40px; }
.w-\[48px\]                       { width: 48px; }
.h-\[48px\]                       { height: 48px; }
.w-\[56px\]                       { width: 56px; }
.h-\[56px\]                       { height: 56px; }
.w-\[64px\]                       { width: 64px; }
.h-\[64px\]                       { height: 64px; }
.w-\[80px\]                       { width: 80px; }
.h-\[80px\]                       { height: 80px; }
.max-w-\[640px\]                  { max-width: 640px; }
.max-w-\[720px\]                  { max-width: 720px; }
.max-w-\[800px\]                  { max-width: 800px; }
.max-w-\[960px\]                  { max-width: 960px; }
.max-w-\[1220px\]                 { max-width: 1220px; }
.max-w-\[1280px\]                 { max-width: 1280px; }
.min-h-\[320px\]                  { min-height: 320px; }
.min-h-\[400px\]                  { min-height: 400px; }
.min-h-\[480px\]                  { min-height: 480px; }
.min-h-\[520px\]                  { min-height: 520px; }
.min-h-\[600px\]                  { min-height: 600px; }
.pt-\[5\.5rem\]                   { padding-top: 5.5rem; }
.pb-\[5\.5rem\]                   { padding-bottom: 5.5rem; }
.text-\[\#6B6456\]\/70            { color: rgba(107,100,86,0.70); }
.bg-\[\#B5850A\/08\]              { background-color: rgba(181,133,10,0.08); }
.bg-\[rgba\(27\,38\,44\,0\.78\)\] { background-color: rgba(27,38,44,0.78); }
.border-\[rgba\(255\,255\,255\,0\.18\)\] { border-color: rgba(255,255,255,0.18); }
.border-\[rgba\(216\,226\,220\,0\.28\)\] { border-color: rgba(216,226,220,0.28); }

/* 14. COMPONENT PATTERNS (not custom classes — structural helpers) */

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}

/* Header */
header.site-header,
.g-header {
  background-color: #0D0D0B;
  border-bottom: 1px solid rgba(107,100,86,0.20);
  width: 100%;
}
.g-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .g-header-inner { padding: 1.25rem 2rem; }
}
.g-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.025em;
  color: #F0EBE0;
}
.g-brand span { color: #B5850A; }
.g-nav {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  color: #F0EBE0;
}
@media (min-width: 768px) { .g-nav { display: flex; } }
.g-nav a:hover { color: #B5850A; }
.g-header-phone {
  display: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  letter-spacing: -0.025em;
  color: #F0EBE0;
}
.g-header-phone:hover { color: #B5850A; }
@media (min-width: 768px) { .g-header-phone { display: inline-block; } }
.g-hamburger {
  background: none;
  border: none;
  padding: 0.5rem;
  color: #F0EBE0;
  font-size: 1.25rem;
  cursor: pointer;
}
@media (min-width: 768px) { .g-hamburger { display: none; } }
.g-mobile-menu {
  background-color: #0D0D0B;
  border-top: 1px solid rgba(107,100,86,0.20);
}
.g-mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem;
  gap: 0.75rem;
  font-size: 1rem;
  color: #F0EBE0;
}
.g-mobile-menu nav a:hover { color: #B5850A; }
.g-mobile-phone {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(107,100,86,0.20);
}

/* Footer */
.g-footer {
  background-color: #161612;
  border-top: 1px solid rgba(107,100,86,0.20);
}
.g-footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .g-footer-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 4rem 2rem;
  }
}
.g-footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  color: #F0EBE0;
  margin-bottom: 1rem;
}
.g-footer-brand span { color: #B5850A; }
.g-footer-statement {
  font-size: 0.875rem;
  color: #6B6456;
  line-height: 1.625;
}
.g-footer-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6B6456;
  margin-bottom: 0.75rem;
  font-family: 'Space Grotesk', sans-serif;
}
.g-footer-address {
  font-style: normal;
  font-size: 0.875rem;
  color: #F0EBE0;
}
.g-footer-address > div + div { margin-top: 0.5rem; }
.g-footer-address a:hover { color: #B5850A; }
.g-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #F0EBE0;
}
.g-footer-nav a:hover { color: #B5850A; }
.g-footer-bottom {
  border-top: 1px solid rgba(107,100,86,0.20);
}
.g-footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .g-footer-bottom-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
  }
}
.g-footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: #6B6456;
}
.g-footer-legal a:hover { color: #B5850A; }
.g-footer-copyright {
  font-size: 0.75rem;
  color: #6B6456;
}

/* Buttons */
.g-btn {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
  line-height: 1;
}
.g-btn-primary {
  background-color: #B5850A;
  color: #0D0D0B;
}
.g-btn-primary:hover { opacity: 0.88; color: #0D0D0B; }
.g-btn-ghost {
  background: transparent;
  color: #F0EBE0;
  border: 1px solid rgba(107,100,86,0.4);
}
.g-btn-ghost:hover { border-color: #B5850A; color: #B5850A; }
.g-btn-accent {
  background-color: transparent;
  color: #B5850A;
  border: 1px solid #B5850A;
}
.g-btn-accent:hover { background-color: #B5850A; color: #0D0D0B; }

/* Section label / mono chip */
.g-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6B6456;
  font-family: 'Space Grotesk', sans-serif;
}
.g-label-accent {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #B5850A;
  font-family: 'Space Grotesk', sans-serif;
}

/* Numbered section marker */
.g-section-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  color: #B5850A;
  text-transform: uppercase;
}

/* Accent divider bar */
.g-divider {
  width: 40px;
  height: 2px;
  background-color: #B5850A;
}
.g-divider-lg {
  width: 64px;
  height: 2px;
  background-color: #B5850A;
}

/* Card base */
.g-card {
  background-color: #161612;
  border: 1px solid rgba(107,100,86,0.20);
  transition: border-color 0.25s, background-color 0.25s;
}
.g-card:hover {
  border-color: rgba(181,133,10,0.40);
  background-color: #1A1A16;
}
.g-card-dark {
  background-color: #1A1A16;
  border: 1px solid rgba(107,100,86,0.20);
  transition: border-color 0.25s, background-color 0.25s;
}
.g-card-dark:hover {
  border-color: rgba(181,133,10,0.40);
  background-color: #1E1D19;
}

/* Stat item */
.g-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #B5850A;
  letter-spacing: -0.04em;
  line-height: 1;
}
.g-stat-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6B6456;
  margin-top: 0.375rem;
  font-family: 'Space Grotesk', sans-serif;
}

/* Step / timeline item */
.g-step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  color: #B5850A;
  opacity: 0.18;
  letter-spacing: -0.05em;
  user-select: none;
}

/* Image wrapper */
.g-img-wrap {
  overflow: hidden;
  background-color: #1A1A16;
}
.g-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.g-img-wrap:hover img { transform: scale(1.03); }

/* Marquee */
.g-marquee-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(107,100,86,0.20);
  border-bottom: 1px solid rgba(107,100,86,0.20);
  background-color: #161612;
}
.g-marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee-scroll 30s linear infinite;
  white-space: nowrap;
  padding: 1rem 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.g-marquee-item {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6B6456;
  flex-shrink: 0;
}
.g-marquee-sep {
  color: #B5850A;
  font-size: 0.5rem;
  flex-shrink: 0;
  align-self: center;
}

/* FAQ accordion */
.g-faq-item {
  border-bottom: 1px solid rgba(107,100,86,0.20);
}
.g-faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  color: #F0EBE0;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
}
.g-faq-q:hover { color: #B5850A; }
.g-faq-icon {
  color: #B5850A;
  font-size: 0.875rem;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.g-faq-a {
  display: none;
  padding-bottom: 1.25rem;
  font-size: 0.875rem;
  color: #6B6456;
  line-height: 1.7;
}

/* Input / form */
.g-input {
  width: 100%;
  background-color: #0D0D0B;
  border: 1px solid rgba(107,100,86,0.30);
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  color: #F0EBE0;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.g-input:focus { border-color: #B5850A; }
.g-input::placeholder { color: #6B6456; }
.g-textarea {
  width: 100%;
  background-color: #0D0D0B;
  border: 1px solid rgba(107,100,86,0.30);
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  color: #F0EBE0;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.g-textarea:focus { border-color: #B5850A; }
.g-input-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6B6456;
  margin-bottom: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
}

/* Legal page content */
.g-legal-body {
  font-size: 0.9375rem;
  color: #6B6456;
  line-height: 1.8;
}
.g-legal-body p { margin-bottom: 1.25rem; }
.g-legal-body h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #F0EBE0;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.g-legal-body h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #D5C9B8;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}
.g-legal-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.g-legal-body ul li { margin-bottom: 0.5rem; }
.g-legal-body a { color: #B5850A; text-decoration: underline; }
.g-legal-body strong { color: #F0EBE0; font-weight: 500; }

/* Tag / badge */
.g-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B5850A;
  border: 1px solid rgba(181,133,10,0.40);
  padding: 0.25rem 0.625rem;
}
.g-tag-muted {
  display: inline-block;
  font-size: 0.6875rem;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6B6456;
  border: 1px solid rgba(107,100,86,0.25);
  padding: 0.25rem 0.625rem;
}

/* Icon box */
.g-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(181,133,10,0.10);
  color: #B5850A;
  flex-shrink: 0;
}

/* Diagonal decorative lines (Modern Sport aesthetic) */
.g-deco {
  position: absolute;
  pointer-events: none;
  overflow: hidden;
}
.g-deco::before, .g-deco::after {
  content: '';
  position: absolute;
  left: -10%;
  width: 120%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(181,133,10,0.07), transparent);
}
.g-deco::before { top: 30%; transform: rotate(-10deg); }
.g-deco::after  { bottom: 30%; transform: rotate(-10deg); }

/* Vertical rotated label */
.g-rotated-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6B6456;
  font-family: 'Space Grotesk', sans-serif;
  user-select: none;
}

/* AOS override for dark theme */
[data-aos] { will-change: transform, opacity; }

/* Swiper customisation */
.swiper-pagination-bullet { background: #6B6456; }
.swiper-pagination-bullet-active { background: #B5850A; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0D0D0B; }
::-webkit-scrollbar-thumb { background: #6B6456; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #B5850A; }

/* Selection */
::selection { background-color: rgba(181,133,10,0.30); color: #F0EBE0; }

/* Print */
@media print {
  .g-hamburger, [data-target="cookies.banner"], .g-marquee-wrap { display: none !important; }
}
