@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Montserrat:wght@200;300;400;500&display=swap');

/* ═══════════════════════════════════════════════════════════
   THE LITTLE GOLD BOX — Shared Styles
   Brand board palette:
   Jet          #000000
   Champagne    #C8A96A
   Ivory        #FAF7F2
   Warm Taupe   #E8E2D6
   Soft Grey    #DAD7D0
═══════════════════════════════════════════════════════════ */

:root {
  --ivory:    #FAF7F2;
  --taupe:    #E8E2D6;
  --grey:     #DAD7D0;
  --muted:    #9A8A78;
  --ink:      #000000;
  --gold:     #C8A96A;
  --gold-lt:  #DFC28A;
  --gold-dk:  #A8893A;
  --line:     #E0D8CE;
  --green:    #2E6B2E;
  --green-bg: #EBF5EB;
  --red-c:    #7A1C1C;
  --red-bg:   #FAF0F0;
  --ff-d:     'Cormorant Garamond', Georgia, serif;
  --ff-b:     'Montserrat', sans-serif;
  --banner-h: 0px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--ff-b);
  font-weight: 300;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: var(--ff-b); }

/* ── CURSOR ── */
.cur, .cur-r { display: none; }

/* ── BANNER ── */
.site-banner { position:fixed; top:0; left:0; right:0; z-index:400; height:40px; background:var(--gold); display:flex; align-items:center; justify-content:center; gap:16px; }
.site-banner p { font-family:var(--ff-b); font-weight:400; font-size:.56rem; letter-spacing:.26em; text-transform:uppercase; color:white; }
.banner-slots { font-weight:500; }
.banner-dismiss { position:absolute; right:16px; background:none; border:none; cursor:pointer; color:white; opacity:.7; font-size:1.1rem; line-height:1; padding:4px; }
.banner-dismiss:hover { opacity:1; }

/* ── NAV ── */
nav {
  position: fixed; top: var(--banner-h); left: 0; right: 0; z-index: 300;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; padding: 0 24px; height: 68px;
  background: rgba(250,247,242,.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav-ham {
  display: flex; flex-direction: column; flex-shrink: 0;
  justify-content: center; gap: 5px; width: 36px; height: 36px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.ham-line { width: 22px; height: 1px; background: var(--ink); transition: all .35s cubic-bezier(.23,1,.32,1); transform-origin: center; }
.nav-ham.open .ham-line:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-ham.open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-ham.open .ham-line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-logo {
  justify-self: center; text-decoration: none;
  display: flex; flex-direction: column; align-items: center; gap: 1px; line-height: 1;
}
.nl-top { font-family: var(--ff-b); font-weight: 200; font-size: 9px; letter-spacing: 6px; text-transform: uppercase; color: var(--muted); display: block; }
.nl-bot { font-family: var(--ff-d); font-weight: 400; font-size: 28px; letter-spacing: 5px; text-transform: uppercase; color: var(--ink); display: block; }
.nl-bot .g { color: var(--gold); }

.nav-basket { justify-self: end; cursor: pointer; display: flex; align-items: center; position: relative; background: none; border: none; }
.basket-icon { width: 22px; height: 22px; color: var(--ink); stroke: currentColor; fill: none; stroke-width: 1.3; stroke-linecap: round; }
.basket-count { position: absolute; top: -6px; right: -8px; background: var(--gold); color: white; width: 16px; height: 16px; border-radius: 50%; font-size: .5rem; display: flex; align-items: center; justify-content: center; font-weight: 500; }

/* ── DRAWER ── */
.drawer { position: fixed; top: 0; left: 0; bottom: 0; width: 320px; z-index: 400; background: var(--ivory); border-right: 1px solid var(--line); transform: translateX(-100%); transition: transform .45s cubic-bezier(.23,1,.32,1); padding: 80px 48px 48px; display: flex; flex-direction: column; }
.drawer.open { transform: translateX(0); }
.drawer-close { position: absolute; top: 20px; right: 20px; width: 32px; height: 32px; cursor: pointer; display: flex; align-items: center; justify-content: center; background: none; border: none; }
.drawer-close svg { width: 16px; height: 16px; stroke: var(--muted); stroke-width: 1.5; fill: none; }
.drawer-links { list-style: none; margin-bottom: auto; }
.drawer-links li { border-bottom: 1px solid var(--line); }
.drawer-links a { display: block; padding: 18px 0; font-family: var(--ff-d); font-weight: 300; font-size: 1.4rem; color: var(--ink); text-decoration: none; transition: color .25s; letter-spacing: .02em; }
.drawer-links a:hover, .drawer-links a.active { color: var(--gold); }
.drawer-sub { margin-top: 40px; }
.drawer-sub a { display: block; padding: 8px 0; font-family: var(--ff-b); font-weight: 200; font-size: .65rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color .2s; }
.drawer-sub a:hover { color: var(--ink); }
.drawer-overlay { position: fixed; inset: 0; z-index: 390; background: rgba(0,0,0,.2); opacity: 0; pointer-events: none; transition: opacity .35s ease; backdrop-filter: blur(2px); }
.drawer-overlay.on { opacity: 1; pointer-events: all; }

/* ── PAGE WRAPPER ── */
.page-wrap { padding-top: calc(68px + var(--banner-h)); }

/* ── SECTION PRIMITIVES ── */
.s-ey { font-family: var(--ff-b); font-weight: 300; font-size: .56rem; letter-spacing: .42em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.s-h  { font-family: var(--ff-d); font-weight: 300; font-size: clamp(2.2rem,3vw,3.4rem); color: var(--ink); line-height: 1.08; }
.s-h em { font-style: italic; color: var(--gold); }
.s-body { font-family: var(--ff-b); font-weight: 300; font-size: .82rem; line-height: 1.9; color: var(--muted); }
.s-body strong { color: var(--ink); font-weight: 400; }

/* ── BUTTONS ── */
.btn-gold { display: block; width: 100%; padding: 17px; background: var(--gold); color: white; border: none; font-family: var(--ff-b); font-weight: 400; font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; cursor: pointer; transition: background .28s; text-align: center; text-decoration: none; }
.btn-gold:hover { background: var(--gold-lt); }
.btn-outline { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 40px; background: transparent; color: var(--ink); border: 1px solid var(--line); font-family: var(--ff-b); font-weight: 300; font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; cursor: pointer; transition: all .25s; text-decoration: none; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── WINNERS GRID ── */
.w-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); }
.w-card { background: var(--ivory); padding: 40px 36px; transition: background .3s; }
.w-card:hover { background: white; }
.w-q    { font-family: var(--ff-d); font-style: italic; font-size: 1rem; line-height: 1.78; color: var(--ink); margin-bottom: 22px; }
.w-open { font-family: var(--ff-d); font-size: 2.4rem; color: var(--gold); line-height: 0; vertical-align: -.38em; margin-right: 1px; opacity: .5; }
.w-name { font-family: var(--ff-b); font-weight: 400; font-size: .66rem; letter-spacing: .1em; color: var(--gold); display: block; margin-bottom: 3px; }
.w-bag  { font-family: var(--ff-b); font-weight: 300; font-size: .6rem; color: var(--muted); }
.w-entry{ font-family: var(--ff-b); font-weight: 300; font-size: .54rem; color: var(--grey); margin-top: 2px; display: block; }

/* ── FOOTER ── */
footer { padding: 72px 72px 44px; background: rgba(250,247,242,.97); border-top: 1px solid var(--line); }
.ft-inner { max-width: 1060px; margin: 0 auto; }
.ft-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.ft-mono { margin-bottom: 12px; }
.ft-wm   { font-family: var(--ff-d); font-weight: 400; font-size: .9rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink); margin-bottom: 10px; }
.ft-wm .g { color: var(--gold); }
.ft-tag  { font-family: var(--ff-b); font-weight: 300; font-size: .7rem; line-height: 1.9; color: var(--muted); max-width: 200px; }
.ft-ct   { font-family: var(--ff-b); font-weight: 300; font-size: .52rem; letter-spacing: .38em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.ft-links { list-style: none; }
.ft-links li { margin-bottom: 10px; }
.ft-links a  { font-family: var(--ff-b); font-weight: 300; font-size: .7rem; color: var(--muted); text-decoration: none; transition: color .22s; }
.ft-links a:hover { color: var(--ink); }
.ft-bot  { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; border-top: 1px solid var(--line); }
.ft-legal{ font-family: var(--ff-b); font-weight: 300; font-size: .54rem; color: var(--muted); line-height: 1.9; opacity: .7; }
.ft-soc  { display: flex; gap: 22px; }
.ft-soc a{ font-family: var(--ff-b); font-weight: 300; font-size: .54rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color .25s; }
.ft-soc a:hover { color: var(--gold); }

/* ── EMAIL SIGNUP ── */
.signup-sec { padding: 72px 40px; background: var(--ink); text-align: center; }
.signup-inner { max-width: 540px; margin: 0 auto; }
.signup-ey  { font-family: var(--ff-b); font-weight: 300; font-size: .54rem; letter-spacing: .42em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.signup-h   { font-family: var(--ff-d); font-weight: 300; font-size: clamp(2rem, 3vw, 3rem); color: white; line-height: 1.1; margin-bottom: 10px; }
.signup-h em { font-style: italic; color: var(--gold); }
.signup-sub { font-family: var(--ff-b); font-weight: 300; font-size: .76rem; color: rgba(255,255,255,.5); line-height: 1.8; margin-bottom: 36px; }
.signup-form { display: flex; flex-direction: column; gap: 10px; }
.signup-row  { display: flex; gap: 0; }
.signup-input { flex: 1; padding: 16px 18px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.06); color: white; font-family: var(--ff-b); font-weight: 300; font-size: .72rem; letter-spacing: .04em; outline: none; transition: border-color .2s; }
.signup-input::placeholder { color: rgba(255,255,255,.3); }
.signup-input:focus { border-color: var(--gold); }
.signup-btn { padding: 16px 28px; background: var(--gold); color: white; border: none; font-family: var(--ff-b); font-weight: 400; font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; cursor: pointer; white-space: nowrap; transition: background .25s; flex-shrink: 0; }
.signup-btn:hover { background: var(--gold-lt); }
.signup-note { font-family: var(--ff-b); font-weight: 300; font-size: .54rem; color: rgba(255,255,255,.25); line-height: 1.8; margin-top: 10px; }
.signup-note a { color: rgba(200,169,106,.6); text-decoration: none; }

/* ── TRUSTPILOT STRIP ── */
.tp-strip { padding: 28px 40px; background: var(--ivory); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.tp-stars { display: flex; gap: 3px; }
.tp-star { width: 22px; height: 22px; background: #00B67A; display: flex; align-items: center; justify-content: center; }
.tp-star svg { width: 13px; height: 13px; fill: white; }
.tp-text { font-family: var(--ff-b); font-weight: 300; font-size: .65rem; letter-spacing: .08em; color: var(--muted); }
.tp-text strong { color: var(--ink); font-weight: 400; }
.tp-logo { font-family: var(--ff-b); font-weight: 500; font-size: .8rem; color: #191919; letter-spacing: -.01em; }
.tp-logo span { color: #00B67A; }

/* ── ANIMATIONS ── */
@keyframes up     { from { opacity:0; transform:translateY(14px) } to { opacity:1; transform:translateY(0) } }
@keyframes fadeIn { from { opacity:0 } to { opacity:1 } }
@keyframes blink  { 0%,100%{opacity:1}50%{opacity:.25} }

/* ── MOBILE ── */
@media (max-width: 860px) {
  nav { padding: 0 16px; }
  .site-banner p { font-size: .48rem; letter-spacing: .14em; }
  .signup-row { flex-direction: column; }
  .signup-sec { padding: 56px 20px; }
  .tp-strip { gap: 14px; }
  .drawer { width: 100%; }
  footer { padding: 56px 20px 36px; }
  .ft-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .ft-bot { flex-direction: column; gap: 14px; text-align: center; }
  .w-grid { grid-template-columns: 1fr; }
  /* cursor already default */
}
