
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    :root {
      --bg:      #0d0c09;
      --surface: #18160f;
      --sur2:    #22201a;
      --text:    #ece7dc;
      --muted:   #8a8474;
      --gold:    #c6a45a;
      --light:   #f5f0e6;
      --serif:   'Cormorant Garamond', serif;
      --sans:    'DM Sans', sans-serif;
      --ease:    cubic-bezier(0.16, 1, 0.3, 1);
      --spring:  cubic-bezier(0.34, 1.3, 0.64, 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; }
    button { background: none; border: none; cursor: none; font-family: var(--sans); }
    input, textarea, select { font-family: var(--sans); }

    /* ── SCROLL ROOT ── */
    /* 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; }

    /* ── 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; pointer-events: none; }
    .loader-logo { font-family: var(--serif); font-size: 32px; font-weight: 300; }
    .loader-logo em { font-style: italic; color: var(--gold); }
    .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); }
    .loader-logo img { width: 160px; height: auto; opacity: 0.92; }

    /* ── 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; }
    #cursor-ring { position: fixed; width: 36px; height: 36px; border: 1px solid rgba(198,164,90,.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); }

    /* ── TRANSITION OVERLAY ── */
    #transition-overlay { position: fixed; inset: 0; z-index: 8000; pointer-events: none; overflow: hidden; display: none; }
    #transition-overlay .t-circle { position: absolute; border-radius: 50%; background: var(--bg); width: 200vmax; height: 200vmax; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0); opacity: 0; }

    /* ── TICKER ── */
    .ticker-bar   { background: var(--gold); color: var(--bg); 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 30s linear infinite; }
    .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 ── */
    header { position: fixed; top: 32px; left: 50%; transform: translateX(-50%); width: 100%; z-index: 100; padding: 0 64px; display: flex; align-items: center; justify-content: space-between; height: 64px; background: rgba(0,0,0,.5); background-image: linear-gradient(to bottom,rgba(0,0,0,.65) 0%,rgba(0,0,0,.3) 60%,transparent 100%); background-repeat: no-repeat; background-size: 100% 120px; backdrop-filter: blur(0); border: 1px solid transparent; border-radius: 0; transition: width .65s var(--spring), top .65s var(--spring), padding .5s var(--ease), border-radius .5s var(--ease), background .4s, backdrop-filter .4s, border-color .4s, box-shadow .4s, height .5s var(--ease); }
    header.island { top: 18px; width: 720px; height: 52px; padding: 0 40px 0 32px; border-radius: 100px; background: rgba(16,14,10,.88); 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 .5px rgba(198,164,90,.1) inset; }
    @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 .5px rgba(198,164,90,.1) inset;} }
    header.island.just-docked { animation: island-glow .7s var(--ease) forwards; }
    .header-logo { font-family: var(--serif); font-size: 22px; font-weight: 400; letter-spacing: .05em; color: var(--light); transition: font-size .4s var(--ease); white-space: nowrap; }
    .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; }
    .header-logo em { font-style: italic; color: var(--gold); }
    nav { display: flex; gap: 36px; align-items: center; transition: 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, nav a.active { opacity: 1; }
    nav a:hover::after, nav a.active::after { width: 100%; }
    .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; }
    .lang-switch:hover { opacity: 1; border-color: var(--gold); }
    .lang-switch svg { stroke: currentColor; }

    /* ════════════════════════════════════
       HERO
    ════════════════════════════════════ */
    .section-hero { position: relative; height: 100vh; display: flex; align-items: flex-end; overflow: hidden; }
    .hero-bg { position: absolute; inset: 0; }
    .hero-bg img { width: 100%; height: 130%; object-fit: cover; object-position: center 30%; }
    .hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,12,9,.25) 0%, rgba(13,12,9,.5) 45%, rgba(13,12,9,.95) 100%); }
    .hero-content { position: relative; z-index: 2; padding: 0 64px 72px; width: 100%; display: flex; justify-content: flex-start !important; gap: 60px; }
    /* Title block — always anchored to the left edge of the container */
    .hero-left { display: flex; flex-direction: column; flex: 0 1 auto; text-align: left; justify-content: flex-start !important; }
    /* Description block — pushed to the far right with auto-margin */
    .hero-right { margin-left: auto; flex-shrink: 0; }
    .hero-eyebrow { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; opacity: 0; transition: opacity .7s ease .15s; }
    .hero-eyebrow.in { opacity: 1; }
    .hero-title-clip { padding-bottom: 10px; margin-bottom: -10px; }
    .hero-title-clip h1 { font-family: var(--serif); font-weight: 300; line-height: .9; color: var(--light); transform: translateY(110%); transition: transform 1.1s var(--ease); }
    .hero-title-clip h1.l1 { font-size: clamp(72px, 10vw, 148px); letter-spacing: -.02em; }
    .hero-title-clip h1.l2 { font-size: clamp(72px, 10vw, 148px); letter-spacing: -.02em; font-style: italic; color: var(--gold); transition-delay: .18s; }
    .hero-title-clip h1.loaded { transform: translateY(0); }
    .hero-right { text-align: right; opacity: 0; transform: translateY(16px); transition: opacity .8s ease .7s, transform .8s var(--ease) .7s; }
    .hero-right.in { opacity: 1; transform: translateY(0); }
    .hero-desc { font-size: 14px; color: rgba(236,231,220,.6); line-height: 1.75; max-width: 280px; margin-left: auto; margin-bottom: 24px; }
    .hero-scroll-cue { display: flex; align-items: center; justify-content: flex-end; gap: 12px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
    .hero-scroll-line { width: 40px; height: 1px; background: var(--muted); }

    /* ════════════════════════════════════
       CONTACT MAIN SECTION
    ════════════════════════════════════ */
    .section-contact { background: var(--bg); padding: 112px 64px 0; }

    .contact-head { text-align: center; margin-bottom: 80px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,.08); }
    .contact-head-label { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
    .contact-head-title { font-family: var(--serif); font-size: clamp(52px, 7vw, 104px); font-weight: 300; line-height: .92; color: var(--light); letter-spacing: -.02em; }
    .contact-head-title em { font-style: italic; color: var(--gold); }

    .contact-body { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; max-width: 1160px; margin: 0 auto; padding-bottom: 120px; }

    /* ─ FORM COLUMN ─ */
    .form-col { background: rgba(255,255,255,.028); border: 1px solid rgba(255,255,255,.08); border-radius: 4px; padding: 48px 52px 52px; }
    .form-intro-text { font-size: 14px; color: rgba(236,231,220,.65); line-height: 1.85; margin-bottom: 44px; }

    .form-fields { display: flex; flex-direction: column; gap: 0; }
    .field-wrap { position: relative; border-bottom: 1px solid rgba(255,255,255,.18); transition: border-color .35s; }
    .field-wrap:first-child { border-top: 1px solid rgba(255,255,255,.18); }
    .field-wrap:focus-within { border-color: var(--gold); }
    .field-wrap label { display: flex; flex-direction: column; padding: 18px 0 16px; gap: 7px; }
    .field-label { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); opacity: .85; transition: opacity .3s; }
    .field-wrap:focus-within .field-label { opacity: 1; }
    .field-wrap input,
    .field-wrap textarea {
      background: transparent;
      border: none;
      outline: none;
      font-size: 15px;
      font-weight: 300;
      color: var(--light);
      width: 100%;
      padding: 0;
      caret-color: var(--gold);
    }
    .field-wrap input::placeholder,
    .field-wrap textarea::placeholder { color: rgba(236,231,220,.32); font-size: 14px; }
    .field-wrap textarea { resize: none; height: 110px; line-height: 1.7; padding-top: 4px; }

    .privacy-row { display: flex; align-items: flex-start; gap: 14px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
    .privacy-checkbox { position: relative; width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
    .privacy-checkbox input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
    .checkbox-box { width: 18px; height: 18px; border: 1px solid rgba(255,255,255,.3); border-radius: 3px; display: flex; align-items: center; justify-content: center; transition: border-color .3s, background .3s; pointer-events: none; }
    .privacy-checkbox input:checked ~ .checkbox-box { background: var(--gold); border-color: var(--gold); }
    .checkbox-box svg { width: 10px; height: 10px; stroke: var(--bg); fill: none; stroke-width: 2.5; opacity: 0; transition: opacity .2s; }
    .privacy-checkbox input:checked ~ .checkbox-box svg { opacity: 1; }
    .privacy-text { font-size: 12px; color: rgba(236,231,220,.55); line-height: 1.65; }
    .privacy-text a { color: var(--gold); border-bottom: 1px solid rgba(198,164,90,.3); transition: border-color .3s; }
    .privacy-text a:hover { border-color: var(--gold); }

    .submit-row { display: flex; align-items: center; justify-content: space-between; padding-top: 36px; }
    .btn-submit { display: inline-flex; align-items: center; gap: 14px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--bg); background: var(--gold); padding: 15px 34px; border-radius: 100px; border: none; cursor: none; transition: background .3s; position: relative; overflow: hidden; }
    .btn-submit::before { content: ''; position: absolute; inset: 0; background: #d4b46a; transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
    .btn-submit:hover::before { transform: scaleX(1); }
    .btn-submit span, .btn-submit svg { position: relative; z-index: 1; }
    .btn-submit svg { width: 13px; height: 13px; stroke: var(--bg); fill: none; stroke-width: 1.5; transition: transform .3s var(--ease); }
    .btn-submit:hover svg { transform: translateX(4px); }
    .form-note { font-size: 12px; color: var(--muted); }

    .form-success { display: none; text-align: center; padding: 60px 0; }
    .form-success.show { display: block; }
    .form-success-icon { width: 56px; height: 56px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
    .form-success-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
    .form-success h3 { font-family: var(--serif); font-size: 36px; font-weight: 300; color: var(--light); margin-bottom: 12px; }
    .form-success p { font-size: 14px; color: var(--muted); }

    /* ─ INFO COLUMN ─ */
    .info-col { padding-top: 4px; }
    .info-items { display: flex; flex-direction: column; margin-bottom: 48px; }
    .info-item { display: grid; grid-template-columns: 36px 1fr; gap: 20px; align-items: start; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
    .info-item:first-child { padding-top: 0; }
    .info-num { font-size: 10px; letter-spacing: .12em; color: var(--muted); padding-top: 3px; }
    .info-content {}
    .info-label { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
    .info-value { font-size: 16px; color: var(--light); line-height: 1.5; font-family: var(--serif); font-weight: 300; }
    .info-value a { transition: color .3s; }
    .info-value a:hover { color: var(--gold); }
    .info-value .sub { font-family: var(--sans); font-size: 12px; color: var(--muted); font-weight: 300; margin-top: 4px; }

    .quick-actions { display: flex; flex-direction: column; gap: 10px; }
    .btn-action { display: flex; align-items: center; gap: 14px; padding: 15px 20px; border: 1px solid rgba(255,255,255,.1); border-radius: 6px; font-size: 13px; color: var(--text); transition: border-color .35s, background .35s; position: relative; overflow: hidden; }
    .btn-action::before { content: ''; position: absolute; inset: 0; background: var(--surface); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); z-index: 0; }
    .btn-action:hover { border-color: rgba(198,164,90,.3); }
    .btn-action:hover::before { transform: scaleX(1); }
    .btn-action > * { position: relative; z-index: 1; }
    .btn-action-icon { width: 36px; height: 36px; border: 1px solid rgba(198,164,90,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .btn-action-icon svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
    .btn-action-text { flex: 1; }
    .btn-action-label { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
    .btn-action-val { font-size: 13px; color: var(--text); }
    .btn-action-arrow { margin-left: auto; opacity: .4; transition: opacity .3s, transform .3s; }
    .btn-action-arrow svg { width: 12px; height: 12px; stroke: var(--text); fill: none; stroke-width: 1.5; }
    .btn-action:hover .btn-action-arrow { opacity: 1; transform: translateX(4px); }

    /* ════════════════════════════════════
       MAP SECTION
    ════════════════════════════════════ */
    .section-map { background: var(--bg); padding: 0 64px 0; border-top: 1px solid rgba(255,255,255,.07); }
    .map-head { display: flex; align-items: flex-end; justify-content: space-between; padding: 80px 0 56px; }
    .map-title { font-family: var(--serif); font-size: clamp(42px, 5.5vw, 80px); font-weight: 300; line-height: .95; }
    .map-title em { font-style: italic; color: var(--gold); }
    .map-address { text-align: right; color: var(--muted); font-size: 14px; line-height: 1.7; }
    .map-address strong { display: block; color: var(--light); font-weight: 400; margin-bottom: 4px; }
    .map-wrap { position: relative; height: 520px; overflow: hidden; border-radius: 2px; margin-bottom: 80px; }
    .map-wrap iframe { width: 100%; height: 100%; border: none; filter: grayscale(100%) invert(92%) contrast(90%); opacity: .7; }
    .map-wrap::after { content: ''; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 60px rgba(13,12,9,.4); }
    .map-btn { position: absolute; bottom: 28px; right: 28px; display: inline-flex; align-items: center; gap: 10px; background: var(--bg); border: 1px solid rgba(198,164,90,.3); border-radius: 100px; padding: 12px 24px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); transition: background .3s, border-color .3s; }
    .map-btn:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }
    .map-btn svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 1.5; }

    /* ════════════════════════════════════
       FOOTER
    ════════════════════════════════════ */
    footer { background: var(--bg); padding: 64px 64px 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 em { font-style: italic; color: var(--gold); }
    .footer-tagline { margin-top: 12px; font-size: 13px; color: var(--muted); line-height: 1.65; max-width: 260px; }
    .footer-social { margin-top: 28px; display: flex; gap: 12px; }
    .soc { 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; }
    .soc:hover { border-color: var(--gold); }
    .soc 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 a { font-size: 14px; color: var(--muted); transition: color .3s; }
    .footer-col ul a:hover { color: var(--text); }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.06); }
    .footer-bottom p { font-size: 12px; color: var(--muted); }
    .footer-bottom a { color: var(--gold); }

    /* ── SCROLL ANIMATIONS ── */
    .anim-fade-up { opacity: 0; transform: translateY(40px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
    .anim-fade-up.visible { opacity: 1; transform: translateY(0); }
    .anim-slide-right { opacity: 0; transform: translateX(-40px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
    .anim-slide-right.visible { opacity: 1; transform: translateX(0); }
    .d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; } .d3 { transition-delay: .24s; } .d4 { transition-delay: .32s; }
  
    /* ── 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); }

    /* ── TABLET ≤ 1100px ── */
    @media (max-width:1100px) {
      header { padding:0 32px !important; }
      header.island { width:min(680px,calc(100% - 40px)) !important; }
      nav { gap:20px !important; }
      .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; }
      .footer-top { grid-template-columns:1fr 1fr !important; gap:32px !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; }
      .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; }
    }

    /* ── MOBILE ≤ 768px ── */
    @media (max-width:768px) {
      #cursor-dot, #cursor-ring { display:none !important; }
      body { cursor:auto !important; }
      a, button { cursor:pointer !important; }
      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; 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-bar { height:28px !important; font-size:10px !important; }
      .ticker-track span { padding:0 24px !important; }
      .hero-content { padding: 80px 20px 48px !important; flex-direction: column !important; align-items: flex-start !important; gap: 24px !important; }
      .hero-left { width: 100% !important; text-align: left !important; }
      .hero-right { margin-left: 0 !important; text-align: left !important; width: 100% !important; }
      .hero-desc { margin-left: 0 !important; text-align: left !important; max-width: 100% !important; }
      .hero-scroll-cue { justify-content: flex-start !important; }
      .hero-title h1, h1 { font-size:clamp(36px,11vw,60px) !important; }
      .hero-meta { flex-direction:column !important; align-items:flex-start !important; gap:16px !important; }
      .btn-pill { padding:12px 22px !important; font-size:11px !important; }
      .section-about { grid-template-columns:1fr !important; padding:60px 20px !important; gap:32px !important; min-height:auto !important; }
      .about-image { height:65vw; min-height:220px; }
      .about-image-tag { display:none; }
      .section-marquee { padding:40px 0 !important; }
      .marquee-track span { font-size:clamp(28px,7vw,48px) !important; padding:0 28px !important; }
      .section-zero { padding:60px 20px !important; min-height:auto !important; }
      .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; }
      .section-showcase { height:auto !important; }
      .showcase-sticky { position:relative !important; height:auto !important; display:flex; flex-direction:column; }
      .showcase-bg,.showcase-orb,.showcase-dots,.showcase-counter,.showcase-progress,.showcase-ghost { display:none !important; }
      .showcase-bottle-wrap { position:relative !important; top:auto !important; left:auto !important; transform:none !important; width:100% !important; height:55vw !important; min-height:200px; }
      .showcase-bottle { position:relative !important; opacity:0 !important; transform:none !important; display:none !important; }
      .showcase-bottle.active { display:flex !important; opacity:1 !important; }
      .showcase-panel { position:relative !important; top:auto !important; left:auto !important; right:auto !important; transform:none !important; opacity:1 !important; max-width:100% !important; padding:20px 20px 32px !important; text-align:left !important; display:none !important; border-bottom:1px solid rgba(255,255,255,.06); }
      .showcase-panel.active { display:block !important; }
      .panel-title { font-size:clamp(28px,7vw,44px) !important; }
      .mobile-swipe-bar { display:flex !important; justify-content:center; gap:8px; padding:12px 0 8px; }
      .mobile-swipe-dot { width:6px; height:6px; border-radius:50%; background:rgba(255,255,255,.2); cursor:pointer; transition:background .3s,transform .3s; }
      .mobile-swipe-dot.active { background:var(--gold); transform:scale(1.4); }
      .section-quote { padding:60px 20px !important; min-height:auto !important; }
      .section-newsletter { grid-template-columns:1fr !important; padding:60px 20px !important; gap:32px !important; }
      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; }
      .section-company { grid-template-columns:1fr !important; padding:60px 20px !important; gap:32px !important; }
      .company-text { position:static !important; }
      .section-vineyard { grid-template-columns:1fr !important; padding:60px 20px !important; gap:28px !important; }
      .vineyard-bottle-wrap { height:55vw !important; min-height:180px; }
      .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; }
      .section-values { padding:60px 20px !important; }
      .values-grid { grid-template-columns:1fr !important; }
      .value-card { padding:28px 20px !important; }
      .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; }
      .section-cta { padding:60px 20px !important; }
      .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 { grid-template-columns:repeat(2,1fr) !important; gap:2px !important; }
      .filter-bar { padding:0 20px 20px !important; gap:6px !important; flex-wrap:wrap !important; }
      .filter-btn { font-size:10px !important; padding:7px 14px !important; }
      .products-header { padding:80px 20px 20px !important; }
      .detail-hero-inner { flex-direction:column !important; padding:80px 20px 32px !important; gap:24px !important; }
      .detail-left, .detail-right { max-width:100% !important; }
      .section-details { grid-template-columns:1fr !important; padding:60px 20px !important; gap:32px !important; }
      .related-grid { grid-template-columns:1fr 1fr !important; }
      .section-related { padding:60px 20px !important; }
    }
    @media (max-width:480px) {
      .footer-top { grid-template-columns:1fr !important; }
      .products-grid { grid-template-columns:1fr !important; }
      .related-grid { grid-template-columns:1fr !important; }
      .gallery-grid { grid-template-columns:1fr !important; }
      .values-grid { grid-template-columns:1fr !important; }
    }
    .mobile-swipe-bar { display:none; }

  