
    /* ─── RESET & BASE ───────────────────────────────── */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --bg:       #0d0c09;
      --surface:  #18160f;
      --surface2: #22201a;
      --text:     #ece7dc;
      --muted:    #8a8474;
      --gold:     #c6a45a;
      --brown:    #7a5c3a;
      --light:    #f5f0e6;
      --serif:    'Cormorant Garamond', serif;
      --sans:     'DM Sans', sans-serif;
      --ease:     cubic-bezier(0.16, 1, 0.3, 1);
    }

    html {
      background: var(--bg);
      color: var(--text);
      font-family: var(--sans);
      font-weight: 300;
      overflow: hidden;
      height: 100%;
    }

    body {
      overflow: hidden;
      height: 100vh;
      width: 100vw;
      cursor: none;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; width: 100%; height: 100%; object-fit: cover; }
    button { background: none; border: none; cursor: none; }

    /* ─── SMOOTH SCROLL WRAPPER ──────────────────────── */
    /* Touch scroll */
    #scroll-root { touch-action: pan-y; }
    body { touch-action: pan-y; overscroll-behavior-y: none; }

    #scroll-root {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      will-change: transform;
    }

    /* ─── CUSTOM CURSOR ──────────────────────────────── */
    #cursor-dot {
      position: fixed;
      width: 8px; height: 8px;
      background: var(--gold);
      border-radius: 50%;
      top: 0; left: 0;
      transform: translate(-50%, -50%);
      pointer-events: none;
      z-index: 9999;
      transition: width .2s, height .2s, background .2s;
    }
    #cursor-ring {
      position: fixed;
      width: 36px; height: 36px;
      border: 1px solid rgba(198,164,90,0.5);
      border-radius: 50%;
      top: 0; left: 0;
      transform: translate(-50%, -50%);
      pointer-events: none;
      z-index: 9998;
      transition: width .4s var(--ease), height .4s var(--ease), border-color .3s;
    }
    body:has(a:hover) #cursor-ring,
    body:has(button:hover) #cursor-ring {
      width: 56px; height: 56px;
      border-color: var(--gold);
    }

    /* ─── TICKER BAR ─────────────────────────────────── */
    .ticker-bar {
      background: var(--gold);
      color: var(--bg);
      font-family: var(--sans);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: .15em;
      text-transform: uppercase;
      overflow: hidden;
      height: 32px;
      display: flex;
      align-items: center;
    }
    .ticker-track {
      display: flex;
      white-space: nowrap;
      animation: ticker 28s linear infinite;
      gap: 0;
    }
    .ticker-track span {
      padding: 0 48px;
    }
    .ticker-track span::before {
      content: '✦';
      margin-right: 48px;
      opacity: .5;
    }
    @keyframes ticker {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ─── HEADER / DYNAMIC ISLAND ───────────────────── */
    header {
      position: fixed;
      top: 32px;
      left: 50%;
      transform: translateX(-50%);
      width: calc(100% - 0px);
      z-index: 100;
      padding: 0 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
      border-radius: 0px;
      background: rgba(0,0,0,0.50);
      background-image: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.30) 60%, transparent 100%);
      background-repeat: no-repeat;
      background-size: 100% 120px;
      backdrop-filter: blur(0px);
      border: 1px solid transparent;
      box-shadow: none;
      transition:
        width      .65s cubic-bezier(0.34, 1.3, 0.64, 1),
        top        .65s cubic-bezier(0.34, 1.3, 0.64, 1),
        padding    .5s  cubic-bezier(0.16, 1, 0.3, 1),
        border-radius .5s cubic-bezier(0.16, 1, 0.3, 1),
        background .4s ease,
        backdrop-filter .4s ease,
        border-color .4s ease,
        box-shadow .4s ease,
        height     .5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* ── ISLAND STATE (scrolled) ── */
    header.island {
      top: 18px;
      width: 720px;
      height: 52px;
      padding: 0 40px 0 32px;
      border-radius: 100px;
      background: rgba(16, 14, 10, 0.85);
      background-image: none;
      backdrop-filter: blur(24px) saturate(1.8);
      -webkit-backdrop-filter: blur(24px) saturate(1.8);
      border-color: rgba(198,164,90,.18);
      box-shadow: 0 8px 40px rgba(0,0,0,.5), 0 0 0 0.5px rgba(198,164,90,.1) inset;
    }

    /* Logo shrinks slightly in island */
    .header-logo {
      display: flex;
      align-items: center;
      transition: opacity .3s;
    }
    .header-logo img {
      height: 36px;
      width: auto;
      opacity: 0.92;
      transition: height .4s var(--ease), opacity .3s;
      object-fit: contain;
      display: block;
    }
    header.island .header-logo img { height: 28px; }

    /* Nav fades out in island, replaced by minimal pill nav */
    nav {
      display: flex;
      gap: 36px;
      align-items: center;
      transition: opacity .3s ease, gap .5s var(--ease);
    }
    header.island nav { gap: 24px; }
    nav a {
      font-size: 12px;
      font-weight: 400;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--text);
      opacity: .7;
      transition: opacity .3s, font-size .3s;
      position: relative;
      white-space: nowrap;
    }
    header.island nav a { font-size: 11px; }
    nav a::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0;
      width: 0; height: 1px;
      background: var(--gold);
      transition: width .4s var(--ease);
    }
    nav a:hover { opacity: 1; }
    nav a:hover::after { width: 100%; }

    /* All nav links stay visible in island */

    /* Island glow pulse on enter */
    @keyframes island-glow {
      0%   { box-shadow: 0 8px 40px rgba(0,0,0,.5), 0 0 0 4px rgba(198,164,90,.15); }
      60%  { box-shadow: 0 8px 40px rgba(0,0,0,.5), 0 0 0 8px rgba(198,164,90,.05); }
      100% { box-shadow: 0 8px 40px rgba(0,0,0,.5), 0 0 0 0.5px rgba(198,164,90,.1) inset; }
    }
    header.island.just-docked {
      animation: island-glow .7s var(--ease) forwards;
    }

    /* ─── PILL BUTTON ────────────────────────────────── */
    .btn-pill {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 14px 28px;
      border: 1px solid rgba(255,255,255,.25);
      border-radius: 100px;
      font-family: var(--sans);
      font-size: 12px;
      font-weight: 400;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--text);
      transition: background .3s, border-color .3s, color .3s;
      position: relative;
      overflow: hidden;
    }
    .btn-pill::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .5s var(--ease);
      z-index: -1;
    }
    .btn-pill:hover {
      border-color: var(--gold);
      color: var(--bg);
    }
    .btn-pill:hover::before { transform: scaleX(1); }
    .btn-pill svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.5; transition: transform .3s; }
    .btn-pill:hover svg { transform: translateX(4px); }

    /* ─── SECTION: HERO ──────────────────────────────── */
    .section-hero {
      position: relative;
      height: 100vh;
      width: 100%;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero-bg img {
      width: 100%; height: 100%;
      object-fit: cover;
      transform: scale(1.05);
      transition: none;
    }
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(13,12,9,.2) 0%,
        rgba(13,12,9,.1) 30%,
        rgba(13,12,9,.5) 70%,
        rgba(13,12,9,.95) 100%
      );
    }
    .hero-content {
      position: relative;
      z-index: 2;
      padding: 0 48px 80px;
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 32px;
    }
    /*.hero-title {
      overflow: hidden;
    }*/
    .hero-title h1 {
      font-family: var(--serif);
      font-size: clamp(64px, 9vw, 140px);
      font-weight: 300;
      line-height: .92;
      letter-spacing: -.01em;
      color: var(--light);
      transform: translateY(110%);
      transition: transform 1s var(--ease);
    }
    .hero-title h1.is-italic {
      font-style: italic;
      color: var(--gold);
      padding-left: .15em;
    }
    .hero-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .8s ease, transform .8s var(--ease);
      transition-delay: .6s;
    }
    .hero-scroll {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 11px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .hero-scroll-line {
      width: 40px; height: 1px;
      background: var(--muted);
      position: relative;
      overflow: hidden;
    }
    .hero-scroll-line::after {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 100%; height: 100%;
      background: var(--gold);
      animation: line-scan 2s ease-in-out infinite 1.5s;
    }
    @keyframes line-scan {
      to { left: 100%; }
    }

    /* ─── SECTION: ABOUT ─────────────────────────────── */
    .section-about {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 120px 48px;
      gap: 80px;
    }
    .about-left { display: flex; flex-direction: column; gap: 48px; }
    .about-label {
      font-size: 11px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .about-title {
      font-family: var(--serif);
      font-size: clamp(52px, 6vw, 96px);
      font-weight: 300;
      line-height: .95;
      letter-spacing: -.01em;
    }
    .about-title em {
      font-style: italic;
      color: var(--gold);
      display: block;
    }
    .about-text {
      font-size: 16px;
      line-height: 1.8;
      color: rgba(236,231,220,.7);
      max-width: 480px;
    }
    .about-image {
      position: relative;
      height: 70vh;
      overflow: hidden;
      border-radius: 4px;
    }
    .about-image-inner {
      position: absolute;
      inset: 0;
      clip-path: inset(100% 0 0 0);
      transition: clip-path 1.2s var(--ease);
    }
    .about-image-inner.revealed {
      clip-path: inset(0% 0 0 0);
    }
    .about-image img {
      width: 100%; height: 100%;
      object-fit: cover;
      transform: scale(1.1);
      transition: transform 1.8s var(--ease);
    }
    .about-image-inner.revealed img {
      transform: scale(1);
    }
    .about-image-tag {
      position: absolute;
      bottom: 32px; right: 32px;
      background: var(--bg);
      border: 1px solid rgba(198,164,90,.3);
      padding: 16px 24px;
      font-family: var(--serif);
      font-size: 14px;
      font-style: italic;
      color: var(--gold);
      letter-spacing: .04em;
      z-index: 2;
    }

    /* ─── SECTION: MARQUEE STATEMENT ─────────────────── */
    .section-marquee {
      overflow: hidden;
      padding: 80px 0;
      border-top: 1px solid rgba(255,255,255,.06);
      border-bottom: 1px solid rgba(255,255,255,.06);
      background: var(--surface);
    }
    .marquee-track {
      display: flex;
      white-space: nowrap;
      animation: marq 20s linear infinite;
      gap: 0;
    }
    .marquee-track span {
      font-family: var(--serif);
      font-size: clamp(48px, 7vw, 96px);
      font-weight: 300;
      font-style: italic;
      color: transparent;
      -webkit-text-stroke: 1px rgba(198,164,90,.4);
      padding: 0 64px;
    }
    .marquee-track span.filled {
      color: var(--gold);
      -webkit-text-stroke: 0;
    }
    @keyframes marq {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ─── SECTION: ZERO ALCOHOL ──────────────────────── */
    .section-zero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 120px 48px 80px;
      position: relative;
      overflow: hidden;
    }

    /* ─── WINEMAKER BIO STRIP ────────────────────────── */
    .winemaker-strip {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      margin-top: 100px;
      padding-top: 72px;
      border-top: 1px solid rgba(198,164,90,.12);
    }
    .winemaker-photo {
      position: relative;
      height: 62vh;
      overflow: hidden;
      border-radius: 3px;
    }
    .winemaker-photo img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center 20%;
      transform: scale(1.07);
      transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
      filter: grayscale(18%) contrast(1.05);
    }
    .winemaker-strip.visible .winemaker-photo img {
      transform: scale(1);
    }
    .winemaker-photo::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        135deg,
        rgba(13,12,9,0) 50%,
        rgba(13,12,9,0.35) 100%
      );
      pointer-events: none;
    }
    .winemaker-photo-tag {
      position: absolute;
      bottom: 24px; left: 24px;
      font-size: 11px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--gold);
      opacity: .8;
      z-index: 2;
    }
    .winemaker-texts {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }
    .winemaker-name {
      font-family: var(--serif);
      font-size: clamp(36px, 4vw, 56px);
      font-weight: 300;
      line-height: 1.05;
      color: var(--light);
    }
    .winemaker-name em {
      display: block;
      font-style: italic;
      color: var(--gold);
    }
    .winemaker-para {
      font-size: 15px;
      line-height: 1.85;
      color: rgba(236,231,220,.65);
      max-width: 460px;
    }
    .winemaker-para + .winemaker-para {
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,.06);
    }
    .zero-eyebrow {
      font-size: 11px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 48px;
    }
    .zero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .zero-big {
      font-family: var(--serif);
      font-size: clamp(100px, 15vw, 220px);
      font-weight: 300;
      line-height: 1;
      color: transparent;
      -webkit-text-stroke: 1px rgba(198,164,90,.25);
      position: relative;
    }
    .zero-big em {
      display: block;
      font-style: italic;
      font-size: .55em;
      color: var(--gold);
      -webkit-text-stroke: 0;
    }
    .zero-content {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }
    .zero-heading {
      font-family: var(--serif);
      font-size: clamp(36px, 4vw, 60px);
      font-weight: 300;
      line-height: 1.1;
    }
    .zero-body {
      font-size: 15px;
      line-height: 1.85;
      color: rgba(236,231,220,.65);
      max-width: 440px;
    }
    .zero-stats {
      display: flex;
      gap: 48px;
      margin-top: 16px;
    }
    .zero-stat span {
      display: block;
      font-family: var(--serif);
      font-size: 42px;
      font-weight: 300;
      color: var(--gold);
    }
    .zero-stat p {
      font-size: 11px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 4px;
    }

    /* ─── SECTION: BOTTLE SHOWCASE (STICKY SCROLL) ──────── */
    .section-showcase {
      position: relative;
      height: 400vh; /* 4 slides × 100vh */
    }
    .showcase-sticky {
      position: absolute;
      top: 0;
      left: 0;
      height: 100vh;
      width: 100%;
      overflow: hidden;
      will-change: transform;
    }

    /* Background layers — one per slide, cross-fade via opacity */
    .showcase-bg {
      position: absolute;
      inset: 0;
      transition: opacity .9s cubic-bezier(0.16,1,0.3,1);
      opacity: 0;
    }
    .showcase-bg.active { opacity: 1; }
    .showcase-bg-0 { background: radial-gradient(ellipse 80% 80% at 60% 50%, #1a0d06 0%, #0d0c09 100%); }
    .showcase-bg-1 { background: radial-gradient(ellipse 80% 80% at 60% 50%, #1e0f14 0%, #0d0c09 100%); }
    .showcase-bg-2 { background: radial-gradient(ellipse 80% 80% at 60% 50%, #160808 0%, #0d0c09 100%); }
    .showcase-bg-3 { background: radial-gradient(ellipse 80% 80% at 60% 50%, #161208 0%, #0d0c09 100%); }

    /* Ambient glow orb behind bottle */
    .showcase-orb {
      position: absolute;
      width: 520px; height: 520px;
      border-radius: 50%;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      transition: background .9s var(--ease);
      pointer-events: none;
    }

    /* Progress bar at bottom */
    .showcase-progress {
      position: absolute;
      bottom: 0; left: 0;
      width: 100%; height: 2px;
      background: rgba(255,255,255,.06);
      z-index: 10;
    }
    .showcase-progress-fill {
      height: 100%;
      background: var(--gold);
      width: 0%;
      transition: width .1s linear;
    }

    /* Slide counter top-right */
    .showcase-counter {
      position: absolute;
      top: 48px; right: 64px;
      font-size: 11px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(236,231,220,.3);
      z-index: 10;
      transition: opacity .4s;
    }
    .showcase-counter em { color: var(--gold); font-style: normal; }

    /* Centered bottle */
    .showcase-bottle-wrap {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 280px;
      height: 75vh;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 5;
    }
    .showcase-bottle {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: translateY(28px) scale(.93);
      transition: opacity .85s var(--ease), transform .85s var(--ease);
    }
    .showcase-bottle.active {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
    .showcase-bottle img {
      max-height: 70vh;
      width: auto;
      object-fit: contain;
      filter: drop-shadow(0 48px 80px rgba(0,0,0,.7));
      transition: none;
    }

    /* Giant ghost title behind bottle */
    .showcase-ghost {
      position: absolute;
      bottom: 8vh;
      font-family: var(--serif);
      font-size: clamp(80px, 11vw, 160px);
      font-weight: 300;
      text-transform: uppercase;
      letter-spacing: -.02em;
      line-height: 1;
      color: transparent;
      -webkit-text-stroke: 1px rgba(198,164,90,.12);
      pointer-events: none;
      z-index: 3;
      white-space: nowrap;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .7s var(--ease), transform .7s var(--ease);
    }
    .showcase-ghost.active { opacity: 1; transform: translateY(0); }
    .showcase-ghost.left  { left: 48px; }
    .showcase-ghost.right { right: 48px; }

    /* Text panels — left and right */
    .showcase-panel {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 6;
      max-width: 340px;
      opacity: 0;
      transition: opacity .75s var(--ease), transform .75s var(--ease);
    }
    .showcase-panel.left {
      left: 64px;
      transform: translateY(-50%) translateX(-30px);
    }
    .showcase-panel.right {
      right: 64px;
      text-align: right;
      transform: translateY(-50%) translateX(30px);
    }
    .showcase-panel.active.left  {
      opacity: 1;
      transform: translateY(-50%) translateX(0);
    }
    .showcase-panel.active.right {
      opacity: 1;
      transform: translateY(-50%) translateX(0);
    }
    .panel-eyebrow {
      font-size: 10px;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      opacity: .85;
    }
    .panel-title {
      font-family: var(--serif);
      font-size: clamp(42px, 5vw, 72px);
      font-weight: 300;
      line-height: .95;
      color: var(--light);
      margin-bottom: 28px;
      letter-spacing: -.01em;
    }
    .panel-sub {
      font-size: 13px;
      color: rgba(236,231,220,.5);
      line-height: 1.7;
      margin-bottom: 32px;
    }
    .panel-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--text);
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 100px;
      padding: 11px 24px;
      transition: border-color .3s, color .3s, background .3s;
      position: relative; overflow: hidden;
    }
    .panel-btn::before {
      content: '';
      position: absolute; inset: 0;
      background: var(--gold);
      transform: scaleX(0); transform-origin: left;
      transition: transform .5s var(--ease); z-index: -1;
    }
    .panel-btn:hover { border-color: var(--gold); color: var(--bg); }
    .panel-btn:hover::before { transform: scaleX(1); }
    .panel-btn svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 1.5; }

    /* Vertical nav dots */
    .showcase-dots {
      position: absolute;
      right: 24px;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 10;
    }
    .showcase-dot {
      width: 4px; height: 4px;
      border-radius: 50%;
      background: rgba(255,255,255,.25);
      transition: background .3s, transform .3s;
      cursor: pointer;
    }
    .showcase-dot.active {
      background: var(--gold);
      transform: scale(1.5);
    }

    /* ─── SECTION: QUOTE ─────────────────────────────── */
    .section-quote {
      min-height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 120px 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .section-quote::before {
      content: '"';
      position: absolute;
      font-family: var(--serif);
      font-size: 40vw;
      font-weight: 300;
      color: rgba(255,255,255,.02);
      top: -10%;
      left: 50%;
      transform: translateX(-50%);
      line-height: 1;
      pointer-events: none;
    }
    .quote-inner { position: relative; z-index: 1; max-width: 900px; }
    .quote-text {
      font-family: var(--serif);
      font-size: clamp(28px, 4vw, 58px);
      font-weight: 300;
      font-style: italic;
      line-height: 1.25;
      color: var(--light);
    }
    .quote-text em { color: var(--gold); font-style: normal; }
    .quote-author {
      margin-top: 40px;
      font-size: 12px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .quote-divider {
      width: 48px; height: 1px;
      background: var(--gold);
      margin: 16px auto 0;
    }

    /* ─── SECTION: NEWSLETTER ────────────────────────── */
    .section-newsletter {
      background: var(--surface);
      padding: 120px 48px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      border-top: 1px solid rgba(255,255,255,.06);
    }
    .newsletter-heading {
      font-family: var(--serif);
      font-size: clamp(42px, 5vw, 72px);
      font-weight: 300;
      line-height: 1.05;
    }
    .newsletter-heading em { font-style: italic; color: var(--gold); }
    .newsletter-sub {
      margin-top: 24px;
      font-size: 15px;
      color: var(--muted);
      line-height: 1.7;
    }
    .newsletter-form {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .input-group {
      display: flex;
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 100px;
      overflow: hidden;
      transition: border-color .3s;
    }
    .input-group:focus-within { border-color: var(--gold); }
    .input-group input {
      flex: 1;
      background: transparent;
      border: none;
      outline: none;
      padding: 16px 24px;
      font-family: var(--sans);
      font-size: 14px;
      color: var(--text);
    }
    .input-group input::placeholder { color: var(--muted); }
    .input-group button {
      background: var(--gold);
      border: none;
      padding: 12px 24px;
      margin: 4px;
      border-radius: 100px;
      font-family: var(--sans);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--bg);
      transition: background .3s;
    }
    .input-group button:hover { background: #d4b46a; }
    .newsletter-privacy {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.6;
    }

    /* ─── FOOTER ─────────────────────────────────────── */
    footer {
      background: var(--bg);
      padding: 64px 48px 40px;
      border-top: 1px solid rgba(255,255,255,.06);
    }
    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 64px;
    }
    .footer-brand {
      font-family: var(--serif);
      font-size: 28px;
      font-weight: 300;
    }
    .footer-brand span { font-style: italic; color: var(--gold); }
    .footer-tagline {
      margin-top: 12px;
      font-size: 13px;
      color: var(--muted);
      line-height: 1.6;
      max-width: 260px;
    }
    .footer-social {
      margin-top: 28px;
      display: flex;
      gap: 12px;
    }
    .social-link {
      width: 38px; height: 38px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: border-color .3s;
    }
    .social-link:hover { border-color: var(--gold); }
    .social-link svg { width: 14px; height: 14px; stroke: var(--text); fill: none; stroke-width: 1.5; }
    .footer-col h4 {
      font-size: 11px;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-col ul li a {
      font-size: 14px;
      color: var(--muted);
      transition: color .3s;
    }
    .footer-col ul li a:hover { color: var(--text); }
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 14px;
      border-top: 1px solid rgba(255,255,255,.06);
    }
    .footer-bottom p {
      font-size: 12px;
      color: var(--muted);
      letter-spacing: .06em;
    }
    .footer-bottom a { color: var(--gold); }

    /* ─── SCROLL ANIMATION STATES ────────────────────── */

    /* Fade up */
    .anim-fade-up {
      opacity: 0;
      transform: translateY(48px);
      transition: opacity .9s var(--ease), transform .9s var(--ease);
    }
    .anim-fade-up.visible { opacity: 1; transform: translateY(0); }

    /* Slide from left */
    .anim-slide-right {
      opacity: 0;
      transform: translateX(-60px);
      transition: opacity .9s var(--ease), transform .9s var(--ease);
    }
    .anim-slide-right.visible { opacity: 1; transform: translateX(0); }

    /* Slide from right */
    .anim-slide-left {
      opacity: 0;
      transform: translateX(60px);
      transition: opacity .9s var(--ease), transform .9s var(--ease);
    }
    .anim-slide-left.visible { opacity: 1; transform: translateX(0); }

    /* Scale in */
    .anim-scale-in {
      opacity: 0;
      transform: scale(0.88);
      transition: opacity .8s var(--ease), transform .8s var(--ease);
    }
    .anim-scale-in.visible { opacity: 1; transform: scale(1); }

    /* Line draw — horizontal rule that extends from 0 width */
    .anim-line {
      display: block;
      height: 1px;
      background: var(--gold);
      width: 0;
      transition: width 1.2s var(--ease);
    }
    .anim-line.visible { width: 100%; }
    .anim-line.w-80.visible { width: 80px; }

    /* Delays */
    .delay-1 { transition-delay: .1s; }
    .delay-2 { transition-delay: .2s; }
    .delay-3 { transition-delay: .3s; }
    .delay-4 { transition-delay: .4s; }
    .delay-5 { transition-delay: .55s; }
    .delay-6 { transition-delay: .7s; }

    /* Split-word chars — each word wraps spans that fade */
    .anim-chars span {
      display: inline-block;
      opacity: 0;
      transform: translateY(30px) rotate(3deg);
      transition: opacity .6s var(--ease), transform .6s var(--ease);
    }
    .anim-chars.visible span {
      opacity: 1;
      transform: translateY(0) rotate(0deg);
    }
    .anim-chars span:nth-child(1)  { transition-delay: 0s; }
    .anim-chars span:nth-child(2)  { transition-delay: .07s; }
    .anim-chars span:nth-child(3)  { transition-delay: .14s; }
    .anim-chars span:nth-child(4)  { transition-delay: .21s; }
    .anim-chars span:nth-child(5)  { transition-delay: .28s; }
    .anim-chars span:nth-child(6)  { transition-delay: .35s; }
    .anim-chars span:nth-child(7)  { transition-delay: .42s; }
    .anim-chars span:nth-child(8)  { transition-delay: .49s; }

    /* Counter number (styled as a separate element) */
    .anim-counter {
      display: inline-block;
    }

    /* Feature pill — tag that pops in */
    .feature-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      border: 1px solid rgba(198,164,90,.25);
      border-radius: 100px;
      font-size: 11px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--gold);
      opacity: 0;
      transform: scale(.9) translateY(10px);
      transition: opacity .5s var(--ease), transform .5s var(--ease);
    }
    .feature-pill::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
    }
    .feature-pill.visible { opacity: 1; transform: scale(1) translateY(0); }

    /* ─── PAGE LOADER ────────────────────────────────── */
    #loader {
      position: fixed;
      inset: 0;
      background: var(--bg);
      z-index: 9000;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 24px;
      transition: opacity .8s ease, visibility .8s;
    }
    #loader.hidden {
      opacity: 0;
      visibility: hidden;
    }
    .loader-logo img {
      width: 160px;
      height: auto;
      opacity: 0.92;
    }
    .loader-bar-wrap {
      width: 200px;
      height: 1px;
      background: rgba(255,255,255,.1);
    }
    .loader-bar {
      height: 100%;
      background: var(--gold);
      width: 0%;
      transition: width .05s linear;
    }
    .loader-pct {
      font-size: 11px;
      letter-spacing: .14em;
      color: var(--muted);
    }

    /* ─── LANG SWITCH ────────────────────────────────── */
    .lang-switch {
      display: inline-flex; align-items: center; gap: 4px;
      font-size: 11px; font-weight: 500; letter-spacing: .12em;
      text-transform: uppercase; color: var(--text); opacity: .7;
      cursor: pointer; padding: 4px 8px;
      border: 1px solid rgba(255,255,255,.15); border-radius: 100px;
      transition: opacity .3s, border-color .3s; user-select: none;
      white-space: nowrap;
    }
    .lang-switch:hover { opacity: 1; border-color: var(--gold); }
    .lang-switch svg { stroke: currentColor; }
  
    /* ── LANG DROPDOWN ── */
    .lang-switch { display:none !important; }
    .lang-dropdown { position:relative; display:inline-flex; align-items:center; }
    .lang-btn { display:inline-flex; align-items:center; gap:5px; font-size:11px; font-weight:500; letter-spacing:.12em; text-transform:uppercase; color:var(--text); opacity:.7; background:none; border:1px solid rgba(255,255,255,.15); border-radius:100px; padding:5px 10px; cursor:pointer; transition:opacity .3s,border-color .3s; white-space:nowrap; user-select:none; font-family:var(--sans); }
    .lang-btn:hover { opacity:1; border-color:var(--gold); }
    .lang-btn svg { stroke:currentColor; transition:transform .3s; flex-shrink:0; }
    .lang-dropdown.open .lang-btn svg { transform:rotate(180deg); }
    .lang-menu { position:absolute; top:calc(100% + 8px); right:0; background:rgba(13,11,7,.97); border:1px solid rgba(198,164,90,.2); border-radius:10px; padding:5px; min-width:72px; display:none; flex-direction:column; gap:2px; backdrop-filter:blur(20px); z-index:9999; box-shadow:0 8px 32px rgba(0,0,0,.6); }
    .lang-dropdown.open .lang-menu { display:flex; }
    .lang-opt { font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--text); opacity:.65; padding:7px 13px; border-radius:7px; cursor:pointer; transition:background .2s,opacity .2s; font-family:var(--sans); }
    .lang-opt:hover { background:rgba(198,164,90,.12); opacity:1; }
    .lang-opt.active { color:var(--gold); opacity:1; font-weight:500; }

    /* ── HAMBURGER ── */
    .hamburger { display:none; flex-direction:column; justify-content:center; gap:5px; width:36px; height:36px; cursor:pointer; background:none; border:none; padding:4px; z-index:10001; }
    .hamburger span { display:block; width:22px; height:1.5px; background:var(--text); border-radius:2px; transition:transform .4s cubic-bezier(0.16,1,0.3,1),opacity .3s,width .3s; }
    .hamburger.open span:nth-child(1) { transform:translateY(6.5px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity:0; width:0; }
    .hamburger.open span:nth-child(3) { transform:translateY(-6.5px) rotate(-45deg); }

    /* ── MOBILE NAV OVERLAY ── */
    .mobile-nav-overlay { position:fixed; inset:0; z-index:10000; background:rgba(13,12,9,.98); backdrop-filter:blur(24px); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; transform:translateX(100%); transition:transform .5s cubic-bezier(0.16,1,0.3,1); pointer-events:none; }
    .mobile-nav-overlay.open { transform:translateX(0); pointer-events:all; }
    .mobile-nav-overlay a { font-family:var(--serif); font-size:clamp(32px,8vw,52px); font-weight:300; color:var(--light); opacity:.6; transition:opacity .3s,color .3s; padding:6px 0; }
    .mobile-nav-overlay a:hover, .mobile-nav-overlay a.active { opacity:1; color:var(--gold); }
    .mobile-lang-bar { display:flex; gap:10px; margin-top:28px; }
    .mobile-lang-btn { font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:var(--muted); padding:6px 14px; border:1px solid rgba(255,255,255,.1); border-radius:100px; cursor:pointer; transition:color .3s,border-color .3s; font-family:var(--sans); }
    .mobile-lang-btn.active { color:var(--gold); border-color:rgba(198,164,90,.4); }

    /* ── MOBILE NAV CLOSE BUTTON ── */
    .mobile-nav-close {
      position: absolute;
      top: 20px; right: 20px;
      width: 48px; height: 48px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.15) !important;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer !important;
      flex-direction: column; gap: 0;
      padding: 0;
      flex-shrink: 0;
    }
    .mobile-nav-close span {
      display: block;
      width: 18px; height: 1.5px;
      background: var(--text);
      border-radius: 2px;
      position: absolute;
    }
    .mobile-nav-close span:nth-child(1) { transform: rotate(45deg); }
    .mobile-nav-close span:nth-child(2) { transform: rotate(-45deg); }


  /* ═══════════════════════════════════════════════════════════════
     RESPONSIVE BREAKPOINTS
     Desktop   : 1024px +  (base styles above)
     Tablet    : 768px – 1023px
     Mobile    : 320px – 767px
     Mobile SM : 320px – 479px
  ═══════════════════════════════════════════════════════════════ */

  /* ── Global overflow guard ── */
  html, body { max-width: 100%; overflow-x: hidden; }
  img, video, iframe, embed, object { max-width: 100%; }

  /* ── Mobile swipe bar hidden by default ── */
  .mobile-swipe-bar { display: none; }
  .mobile-showcase-section { display: none; }

  /* ════════════════════════════════════════
     TABLET  (max-width: 1100px)
  ════════════════════════════════════════ */
  @media (max-width: 1100px) {
    /* Header */
    header { padding: 0 32px !important; }
    header.island { width: min(680px, calc(100% - 40px)) !important; }
    nav { gap: 20px !important; }

    /* Sections */
    .section-about {
      grid-template-columns: 1fr !important;
      padding: 80px 40px !important;
      gap: 48px !important;
    }
    .about-image { height: 55vw; min-height: 280px; }

    .winemaker-strip { gap: 48px !important; }

    .section-newsletter {
      grid-template-columns: 1fr !important;
      padding: 80px 40px !important;
      gap: 40px !important;
    }

    .section-company {
      grid-template-columns: 1fr !important;
      padding: 80px 40px !important;
      gap: 48px !important;
    }
    .company-text { position: static !important; }

    .section-vineyard {
      grid-template-columns: 1fr !important;
      padding: 80px 40px !important;
      gap: 32px !important;
    }

    /* Grids */
    .footer-top { grid-template-columns: 1fr 1fr !important; gap: 32px !important; }
    .values-grid { grid-template-columns: 1fr 1fr !important; }
    .gallery-grid { grid-template-columns: 1fr 1fr !important; }
    .gallery-img.wide,
    .gallery-img.tall { grid-column: span 1 !important; grid-row: span 1 !important; }
    .contact-body { grid-template-columns: 1fr !important; gap: 48px !important; }
    .products-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .showcase-panel { max-width: 250px !important; }

    /* Detail hero */
    .detail-hero-inner {
      grid-template-columns: 1fr auto 1fr !important;
      padding: 0 48px !important;
    }
    .related-grid { grid-template-columns: repeat(2, 1fr) !important; }
  }

  /* ════════════════════════════════════════
     TABLET (768px)
  ════════════════════════════════════════ */
  @media (max-width: 900px) {
    /* Detail hero collapses to column */
    .detail-hero-inner {
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      padding: 100px 40px 48px !important;
      gap: 32px !important;
    }
    .detail-left,
    .detail-right { max-width: 100% !important; width: 100% !important; }
    .detail-bottle-wrap {
      width: 100% !important;
      height: 52vw !important;
      min-height: 240px !important;
      max-height: 380px !important;
    }
    .detail-right { justify-content: flex-start !important; }
    .detail-specs { max-width: 100% !important; }

    /* Zero section grid */
    .zero-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
    .zero-big { font-size: clamp(80px, 18vw, 160px) !important; text-align: center; }
  }

  /* ════════════════════════════════════════
     MOBILE  (max-width: 768px)
  ════════════════════════════════════════ */
  @media (max-width: 768px) {
    /* ── Scroll model: revert to native scroll ── */
    html { overflow: auto !important; height: auto !important; max-width: 100%; }
    body {
      overflow-x: hidden !important;
      overflow-y: auto !important;
      height: auto !important;
      cursor: auto !important;
      width: 100% !important;
    }
    #scroll-root {
      position: relative !important;
      transform: none !important;
      width: 100% !important;
    }

    /* ── Custom cursor off ── */
    #cursor-dot, #cursor-ring { display: none !important; }
    a, button { cursor: pointer !important; }

    /* ── Header: full-width bar ── */
    header {
      top: 0 !important;
      left: 0 !important;
      transform: none !important;
      width: 100% !important;
      padding: 0 20px !important;
      height: 58px !important;
      border-radius: 0 !important;
      background: rgba(13,12,9,.96) !important;
      background-image: none !important;
      backdrop-filter: blur(20px) !important;
      -webkit-backdrop-filter: blur(20px) !important;
      border-width: 0 0 1px 0 !important;
      border-color: rgba(198,164,90,.1) !important;
      box-shadow: 0 2px 20px rgba(0,0,0,.4) !important;
    }
    header.island {
      top: 0 !important;
      width: 100% !important;
      border-radius: 0 !important;
      height: 58px !important;
      padding: 0 20px !important;
    }
    .header-logo img { height: 28px !important; }
    header nav { display: none !important; }
    .hamburger {
      display: flex !important;
      position: fixed !important;
      top: 11px !important;
      right: 20px !important;
      z-index: 10002 !important;
    }

    /* ── Ticker ── */
    .ticker-bar { height: 28px !important; font-size: 10px !important; }
    .ticker-track span { padding: 0 24px !important; }

    /* ── Hero ── */
    /* padding-top ensures the title never hides behind the 58px fixed header */
    .hero-content { padding: 80px 20px 48px !important; gap: 20px !important; padding-top: 500px; }
    .hero-meta {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
      flex-direction: column !important;
      align-items: flex-start !important;
      gap: 16px !important;
    }
    .hero-title h1 { transition-duration: 0.6s !important; font-size: 41px; margin-top: -20px; }
    .btn-pill { padding: 12px 22px !important; font-size: 11px !important; }

    /* ── About ── */
    .section-about {
      grid-template-columns: 1fr !important;
      padding: 80px 20px 60px !important;
      gap: 32px !important;
      min-height: auto !important;
    }
    .about-image { height: 65vw; min-height: 220px; }
    .about-image-tag { display: none; }
    .about-text { max-width: 100%; }

    /* ── Marquee ── */
    .section-marquee { padding: 40px 0 !important; }
    .marquee-track span {
      font-size: clamp(28px, 7vw, 48px) !important;
      padding: 0 28px !important;
    }

    /* ── Zero / alcohol section ── */
    .section-zero { padding: 60px 20px !important; min-height: auto !important; }
    .zero-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
    .zero-big { font-size: clamp(80px, 20vw, 140px) !important; text-align: center; }
    .zero-stats { gap: 28px !important; }

    /* ── Winemaker ── */
    .winemaker-strip {
      grid-template-columns: 1fr !important;
      gap: 28px !important;
      margin-top: 0 !important;
      padding-top: 0 !important;
      border-top: none !important;
    }
    .winemaker-photo { height: 60vw; min-height: 200px; }

    /* ── Showcase ── */
    .section-showcase { height: auto !important; display: none !important; }

    /* ── Mobile wine card carousel ── */
    .mobile-showcase-section {
      display: block !important;
      background: var(--bg);
      padding: 48px 0 56px;
    }
    .mcard-header { padding: 0 20px 36px; }
    .mcard-label {
      font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 10px;
    }
    .mcard-heading {
      font-family: var(--serif); font-size: clamp(38px,10vw,54px);
      font-weight: 300; line-height: .95; color: var(--light);
    }
    .mcard-heading em { font-style: italic; color: var(--gold); }
    .mcard-track {
      display: flex; overflow-x: scroll; scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch; scrollbar-width: none;
      gap: 0; padding: 0; scroll-padding: 0;
    }
    .mcard-track::-webkit-scrollbar { display: none; }
    .mcard {
      flex: 0 0 100vw; scroll-snap-align: start;
      display: flex; flex-direction: column; padding: 0 20px; gap: 0;
    }
    .mcard-visual {
      position: relative; background: var(--surface); border-radius: 20px;
      height: 58vw; display: flex; align-items: flex-end;
      justify-content: center; overflow: hidden; margin-bottom: 0;
    }
    .mcard-glow { position: absolute; inset: 0; pointer-events: none; }
    .mcard-0 .mcard-glow { background: radial-gradient(ellipse 80% 90% at 50% 110%, rgba(140,70,20,.55) 0%, transparent 65%); }
    .mcard-1 .mcard-glow { background: radial-gradient(ellipse 80% 90% at 50% 110%, rgba(170,55,75,.45) 0%, transparent 65%); }
    .mcard-2 .mcard-glow { background: radial-gradient(ellipse 80% 90% at 50% 110%, rgba(110,20,20,.55) 0%, transparent 65%); }
    .mcard-3 .mcard-glow { background: radial-gradient(ellipse 80% 90% at 50% 110%, rgba(130,115,40,.4) 0%, transparent 65%); }
    .mcard-bottle-img {
      display: block !important; width: auto !important;
      height: 52vw !important; max-width: 55% !important;
      object-fit: contain !important; position: relative; z-index: 1;
      filter: drop-shadow(0 12px 36px rgba(0,0,0,.75));
      flex-shrink: 0; margin: 0 auto; align-self: flex-end;
    }
    .mcard-body { padding: 20px 4px 28px; display: flex; flex-direction: column; gap: 0; }
    .mcard-ey { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); opacity: .8; margin-bottom: 8px; }
    .mcard-name { font-family: var(--serif); font-size: clamp(34px,9vw,44px); font-weight: 300; line-height: .92; color: var(--light); letter-spacing: -.01em; margin-bottom: 14px; }
    .mcard-sub { font-size: 13px; color: rgba(236,231,220,.48); line-height: 1.65; margin-bottom: 22px; }
    .mcard-btn { display: inline-flex; align-items: center; gap: 10px; padding: 13px 26px; border: 1px solid rgba(198,164,90,.3); border-radius: 100px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); align-self: flex-start; }
    .mcard-btn svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 1.5; }
    .mcard-dots { display: flex; justify-content: center; gap: 7px; padding: 4px 0 0; }
    .mcard-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.18); transition: background .3s, transform .3s; cursor: pointer; border: none; padding: 0; }
    .mcard-dot.active { background: var(--gold); transform: scale(1.6); }

    /* ── Quote ── */
    .section-quote { padding: 60px 20px !important; min-height: auto !important; }

    /* ── Newsletter ── */
    .section-newsletter {
      grid-template-columns: 1fr !important;
      padding: 60px 20px !important;
      gap: 32px !important;
    }
    .input-group { flex-direction: column; border-radius: 12px; }
    .input-group input { border-radius: 12px 12px 0 0; }
    .input-group button { margin: 0; border-radius: 0 0 12px 12px; padding: 14px 24px; }

    /* ── Footer ── */
    footer { padding: 48px 20px 32px !important; }
    .footer-top {
      grid-template-columns: 1fr 1fr !important;
      gap: 20px !important;
      margin-bottom: 32px !important;
    }
    .footer-bottom {
      flex-direction: column !important;
      text-align: center;
      gap: 6px !important;
    }

    /* ── About (page) ── */
    .section-company {
      grid-template-columns: 1fr !important;
      padding: 80px 20px 60px !important;
      gap: 32px !important;
    }
    .company-text { position: static !important; }

    /* ── Vineyard ── */
    .section-vineyard {
      grid-template-columns: 1fr !important;
      padding: 60px 20px !important;
      gap: 28px !important;
    }
    .vineyard-bottle-wrap { height: 55vw !important; min-height: 180px; }

    /* ── Mission ── */
    .section-mission { padding: 60px 20px !important; }
    .mission-top { flex-direction: column !important; gap: 16px !important; margin-bottom: 36px !important; }
    .mission-img-inner img { height: 50vw !important; }

    /* ── Values ── */
    .section-values { padding: 60px 20px !important; }
    .values-grid { grid-template-columns: 1fr !important; }
    .value-card { padding: 28px 20px !important; }

    /* ── Gallery ── */
    .section-gallery { padding: 40px 20px !important; }
    .gallery-grid { grid-template-columns: 1fr 1fr !important; gap: 6px !important; }
    .gallery-img { min-height: 140px !important; }
    .gallery-img.wide,
    .gallery-img.tall { grid-column: span 1 !important; grid-row: span 1 !important; }

    /* ── CTA ── */
    .section-cta { padding: 60px 20px !important; }

    /* ── Contact ── */
    .contact-body { grid-template-columns: 1fr !important; gap: 40px !important; padding: 0 !important; }
    .section-contact { padding: 60px 20px !important; }
    .section-map { padding: 60px 20px !important; }
    .map-wrap iframe { height: 280px !important; }

    /* ── Products grid ── */
    .products-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 2px !important; }
    .filter-bar {
      top: 58px !important;
      padding: 0 16px !important;
      flex-direction: column !important;
      align-items: flex-start !important;
      gap: 0 !important;
    }
    .filter-tabs {
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding-bottom: 2px;
    }
    .filter-tabs::-webkit-scrollbar { display: none; }
    .filter-tab {
      white-space: nowrap;
      flex-shrink: 0;
      padding: 14px 14px !important;
      font-size: 10px !important;
    }
    .filter-right { padding: 8px 0 12px; }
    .products-header { padding: 80px 20px 20px !important; }
    .pcard-img { height: 200px !important; }
    .section-hero { height: 44vh !important; min-height: 260px !important; }

    /* ── Wine detail hero ── */
    .detail-hero-inner {
      display: flex !important;
      flex-direction: column !important;
      align-items: center !important;
      padding: 80px 20px 32px !important;
      gap: 24px !important;
    }
    .detail-left,
    .detail-right { max-width: 100% !important; width: 100% !important; }
    .detail-bottle-wrap {
      width: 100% !important;
      height: 55vw !important;
      min-height: 200px !important;
      max-height: 340px !important;
    }
    .detail-right { justify-content: flex-start !important; }
    .detail-breadcrumb,
    .detail-eyebrow,
    .detail-subtitle,
    .detail-desc,
    .detail-vendors,
    .detail-specs { opacity: 1 !important; transform: none !important; transition: none !important; }
    .detail-title span { transform: none !important; transition: none !important; }
    .detail-bottle { opacity: 1 !important; transform: none !important; transition: none !important; }
    .scroll-hint { display: none !important; }
    .detail-hero { height: auto !important; min-height: 100svh; }

    /* ── Details section ── */
    .section-details {
      grid-template-columns: 1fr !important;
      padding: 60px 20px !important;
      gap: 32px !important;
    }
    .details-fact { grid-template-columns: 1fr 1fr !important; gap: 16px !important; }

    /* ── Related ── */
    .related-grid { grid-template-columns: 1fr 1fr !important; }
    .section-related { padding: 60px 20px !important; }
    .related-header { flex-direction: column !important; align-items: flex-start !important; gap: 16px !important; margin-bottom: 32px !important; }
  }

  /* ════════════════════════════════════════
     MOBILE SM  (max-width: 480px)
  ════════════════════════════════════════ */
  @media (max-width: 480px) {
    /* Footer full-width single column */
    .footer-top { grid-template-columns: 1fr !important; gap: 32px !important; }

    /* Products full-width cards */
    .products-grid { grid-template-columns: 1fr !important; gap: 2px !important; }
    .pcard-img { height: 260px !important; }

    /* Related wines: single column */
    .related-grid { grid-template-columns: 1fr !important; }

    /* Gallery: single column */
    .gallery-grid { grid-template-columns: 1fr !important; gap: 4px !important; }

    /* Values: single column */
    .values-grid { grid-template-columns: 1fr !important; }

    /* Details fact grid */
    .details-fact { grid-template-columns: 1fr !important; }

    /* Hero stat strip */
    .hero-right { display: none !important; }

    /* Products hero */
    .hero-content { padding: 0 16px 40px !important; }

    /* Filter tabs — smaller */
    .filter-tab { padding: 12px 12px !important; font-size: 9px !important; letter-spacing: .1em !important; }

    /* Detail page */
    .detail-hero-inner { padding: 70px 16px 28px !important; }
    .btn-vendor { padding: 11px 18px !important; font-size: 10px !important; }
    .detail-vendors { gap: 8px !important; }

    /* Section padding tighten */
    .section-about,
    .section-company,
    .section-vineyard,
    .section-mission,
    .section-values,
    .section-cta,
    .section-contact,
    .section-related,
    .section-details { padding-left: 16px !important; padding-right: 16px !important; }

    /* Newsletter form stacks */
    .input-group { border-radius: 10px; }

    /* Ticker smaller */
    .ticker-bar { height: 24px !important; font-size: 9px !important; }
    .ticker-track span { padding: 0 16px !important; }
    .ticker-track span::before { margin-right: 16px !important; }
  }

  /* ════════════════════════════════════════
     MOBILE XS  (max-width: 360px)
  ════════════════════════════════════════ */
  @media (max-width: 360px) {
    .header-logo img { height: 24px !important; }
    .filter-tab { padding: 10px 8px !important; font-size: 8.5px !important; }
    .pcard-name { font-size: 18px !important; }
    .detail-title { font-size: clamp(32px,10vw,48px) !important; }
  }

