/* ============================= */
/* ========================================
   CORMORANT GARAMOND
   ======================================== */

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('assets/fonts/CormorantGaramond-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('assets/fonts/CormorantGaramond-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('assets/fonts/CormorantGaramond-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('assets/fonts/CormorantGaramond-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}


/* ========================================
   JOST
   ======================================== */

@font-face {
  font-family: 'Jost';
  src: url('assets/fonts/Jost-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Jost';
  src: url('assets/fonts/Jost-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Jost';
  src: url('assets/fonts/Jost-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Jost';
  src: url('assets/fonts/Jost-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}



  /* TOKENS                        */
  /* ============================= */
  :root{
    --espresso:#150c08;
    --dark-choc:#24140d;
    --dark-choc-2:#2e1810;
    --coffee:#6b4429;
    --coffee-light:#916640;
    --coffee-pale:#b58a5c;
    --cream:#efe0c9;
    --off-white:#f6efe2;
    --white:#fffaf2;

    --line: rgba(239,224,201,0.14);
    --line-soft: rgba(239,224,201,0.07);

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', -apple-system, sans-serif;

    --ease: cubic-bezier(.16,.8,.24,1);
    --ease-soft: cubic-bezier(.25,.46,.45,.94);

    --container: 1220px;
  }

  *{ box-sizing:border-box; margin:0; padding:0; }
  html{ scroll-behavior:smooth; }
  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior:auto; }
    *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
  }

  body{
    background:var(--espresso);
    color:var(--off-white);
    font-family:var(--font-body);
    font-weight:300;
    overflow-x:hidden;
    width:100%;
    min-height:100%;
    -webkit-font-smoothing:antialiased;
  }

  html, body{ max-width:100vw; overflow-x:hidden; }

  img{ max-width:100%; display:block; }

  a{ color:inherit; text-decoration:none; }

  ::selection{ background:var(--coffee-light); color:var(--white); }

  .container{
    width:100%;
    max-width:var(--container);
    margin:0 auto;
    padding:0 32px;
  }

  /* subtle film-grain overlay for cinematic feel */
  .grain{
    position:fixed; inset:0; z-index:9998; pointer-events:none;
    opacity:0.035; mix-blend-mode:overlay;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }
  .vignette{
    position:fixed; inset:0; z-index:9997; pointer-events:none;
    box-shadow: inset 0 0 18vw rgba(0,0,0,0.55);
  }

  /* ============================= */
  /* TYPE                          */
  /* ============================= */
  .eyebrow{
    font-family:var(--font-body);
    font-size:12px;
    letter-spacing:0.32em;
    text-transform:uppercase;
    color:var(--coffee-pale);
    font-weight:500;
  }
  h1,h2,h3{
    font-family:var(--font-display);
    font-weight:500;
    letter-spacing:0.01em;
    color:var(--white);
  }
  h1{ font-size:clamp(2.6rem, 6.4vw, 5.4rem); line-height:1.04; }
  h2{ font-size:clamp(2.1rem, 4.6vw, 3.6rem); line-height:1.08; }
  h3{ font-size:clamp(1.3rem, 2.4vw, 1.7rem); font-weight:600; }
  p{ line-height:1.75; color:rgba(246,239,226,0.66); font-weight:300; }

  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:10px;
    padding:16px 34px;
    font-family:var(--font-body);
    font-size:13px;
    letter-spacing:0.14em;
    text-transform:uppercase;
    font-weight:500;
    border-radius:2px;
    cursor:pointer;
    border:1px solid transparent;
    transition: transform .5s var(--ease), background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
    white-space:nowrap;
  }
  .btn-primary{
    background:var(--cream); color:var(--espresso);
  }
  .btn-primary:hover{ background:var(--white); transform:translateY(-2px); }
  .btn-ghost{
    background:transparent; color:var(--off-white); border-color:var(--line);
  }
  .btn-ghost:hover{ border-color:var(--coffee-pale); color:var(--white); transform:translateY(-2px); }

  /* ============================= */
  /* REVEAL ANIMATIONS             */
  /* ============================= */
  .reveal{
    opacity:0; transform:translateY(36px);
    transition:opacity 1.1s var(--ease-soft), transform 1.1s var(--ease-soft);
  }
  .reveal.in{ opacity:1; transform:translateY(0); }
  .reveal-delay-1{ transition-delay:.12s; }
  .reveal-delay-2{ transition-delay:.24s; }
  .reveal-delay-3{ transition-delay:.36s; }

  /* ============================= */
  /* NAVBAR                        */
  /* ============================= */
  header{
    position:fixed; top:0; left:0; width:100%; z-index:1200;
    padding:26px 0;
    transition:padding .5s var(--ease), background .5s var(--ease), backdrop-filter .5s var(--ease), border-color .5s var(--ease);
    border-bottom:1px solid transparent;
  }
  header.solid{
    padding:16px 0;
    background:rgba(21,12,8,0.86);
    backdrop-filter:blur(14px) saturate(140%);
    -webkit-backdrop-filter:blur(14px) saturate(140%);
    border-bottom:1px solid var(--line-soft);
  }
  .nav-inner{
    display:flex; align-items:center; justify-content:space-between;
  }
  .logo{
    font-family:var(--font-display);
    font-size:26px; letter-spacing:0.04em; font-weight:600; color:var(--white);
  }
  .logo span{ color:var(--coffee-pale); }
  nav.links{
    display:flex; align-items:center; gap:44px;
  }
  nav.links a{
    font-size:13px; letter-spacing:0.08em; text-transform:uppercase;
    color:rgba(246,239,226,0.75); font-weight:400;
    position:relative; padding-bottom:4px;
  }
  nav.links a::after{
    content:''; position:absolute; left:0; bottom:0; width:0; height:1px; background:var(--coffee-pale);
    transition:width .4s var(--ease);
  }
  nav.links a:hover{ color:var(--white); }
  nav.links a:hover::after{ width:100%; }
  .nav-right{ display:flex; align-items:center; gap:28px; }
  .nav-cta{ padding:12px 26px; font-size:11px; }

  .hamburger{
    display:none; flex-direction:column; gap:5px; cursor:pointer; z-index:1100;
    background:none; border:none; padding:8px;
  }
  .hamburger span{
    width:24px; height:1px; background:var(--off-white); display:block; transition:transform .4s var(--ease), opacity .3s var(--ease);
  }
  .hamburger.open span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
  .hamburger.open span:nth-child(2){ opacity:0; }
  .hamburger.open span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }

  .mobile-menu{
    position:fixed; inset:0; z-index:1100;
    background:linear-gradient(180deg, var(--espresso), var(--dark-choc));
    display:flex; flex-direction:column; align-items:center; justify-content:center; gap:34px;
    transform:translateY(-100%);
    transition:transform .55s var(--ease);
  }
  .mobile-menu.open{ transform:translateY(0); }
  .mobile-menu a{ font-family:var(--font-display); font-size:32px; color:var(--off-white); }
  .mobile-menu .btn{ margin-top:12px; }
  .mobile-menu .mobile-order-btn{
    width:min(320px, calc(100vw - 48px));
    padding:18px 28px;
    background:var(--coffee-pale);
    color:var(--espresso);
    border:1px solid rgba(255,250,242,.35);
    box-shadow:0 14px 45px rgba(0,0,0,.35);
    font-weight:600;
    letter-spacing:.16em;
    transform:translateY(0);
  }
  .mobile-menu .mobile-order-btn:hover{
    background:var(--white);
    color:var(--espresso);
    transform:translateY(-3px);
  }
  body.menu-open header{ z-index:1300; }


  /* ============================= */
  /* HERO                          */
  /* ============================= */
  .hero{
    position:relative; min-height:100vh; display:flex; align-items:center;
    overflow:hidden;
    padding-top:120px;
    background:
      radial-gradient(ellipse 120% 70% at 75% 20%, rgba(107,68,41,0.28), transparent 60%),
      radial-gradient(ellipse 100% 60% at 10% 100%, rgba(46,24,16,0.6), transparent 60%),
      linear-gradient(180deg, var(--espresso) 0%, var(--dark-choc) 100%);
  }
  

  .hero-fog{
    position:absolute; inset:0; z-index:2; pointer-events:none; mix-blend-mode:screen; opacity:.5;
    background:
      radial-gradient(ellipse 40% 30% at 65% 55%, rgba(180,140,95,0.18), transparent 70%);
    filter:blur(6px);
    animation: fogdrift 18s ease-in-out infinite alternate;
  }
  @keyframes fogdrift{
    0%{ transform:translateX(-2%) translateY(0); }
    100%{ transform:translateX(2%) translateY(-2%); }
  }

  .hero-layout{
    position:relative; z-index:5;
    display:grid; grid-template-columns:minmax(0, 1.05fr) minmax(280px, 0.95fr);
    align-items:center; gap:clamp(28px, 4vw, 72px);
  }
  .hero-content{
    position:relative; z-index:5; max-width:640px;
  }
  .hero-content::before{
    content:'';
    position:absolute;
    width:520px;
    height:520px;
    left:-190px;
    top:50%;
    transform:translateY(-50%);
    background:radial-gradient(circle, rgba(21,12,8,.94) 0%, rgba(21,12,8,.72) 42%, transparent 72%);
    z-index:-1;
    pointer-events:none;
  }
  .hero-content h1{ margin:20px 0 22px; }
  .hero-content h1 em{ font-style:italic; color:var(--coffee-pale); }
  .hero-content p{ max-width:480px; font-size:17px; margin-bottom:38px; }
  .hero-actions{ display:flex; gap:18px; flex-wrap:wrap; }

  .hero-visual{
    position:relative;
    display:flex; align-items:flex-end; justify-content:center;
    width:100%; min-height:clamp(320px, 42vw, 560px);
    margin-left:auto;
  }
  .coffee-cup-scene{
    position:relative;
    width:min(30vw, 360px);
    height:min(30vw, 400px);
    min-width:230px;
    min-height:300px;
    display:flex; align-items:flex-end; justify-content:center;
    margin-bottom:120px;
  }
  .cup-shadow{
    position:absolute; left:50%; bottom:18px; width:68%; height:38px;
    transform:translateX(-50%); border-radius:50%;
    background:radial-gradient(ellipse at center, rgba(0,0,0,0.52), rgba(0,0,0,0.08) 60%, transparent 72%);
    filter:blur(10px); opacity:0.7;
  }
  .cup-saucer{
    position:absolute; left:50%; bottom:28px; width:72%; height:42px;
    transform:translateX(-50%); border-radius:50%;
    background:linear-gradient(180deg, #2b1c15 0%, #120b08 100%);
    border:1px solid rgba(255,255,255,0.06);
    box-shadow:inset 0 8px 18px rgba(255,255,255,0.05), 0 12px 30px rgba(0,0,0,0.2);
  }
  .cup-saucer::before{
    content:''; position:absolute; inset:10px 20px 12px; border-radius:50%;
    background:linear-gradient(180deg, rgba(239,224,201,0.16), rgba(239,224,201,0.04));
    opacity:0.8;
  }
  .cup-body{
    position:absolute; left:50%; bottom:75px; width:188px; height:160px;
    transform:translateX(-50%); border-radius:0 0 46% 46% / 0 0 30% 30%;
    background:linear-gradient(180deg, rgba(34,22,16,0.98) 0%, rgba(16,9,7,0.98) 100%);
    border:1px solid rgba(255,255,255,0.08);
    box-shadow:inset -18px -18px 18px rgba(0,0,0,0.55), inset 12px 16px 18px rgba(255,255,255,0.04);
    overflow:hidden;
  }
  .cup-body::before{
    content:''; position:absolute; inset:0; border-radius:inherit;
    background:linear-gradient(120deg, rgba(255,255,255,0.12), transparent 32%, transparent 68%, rgba(255,255,255,0.05));
  }
  .cup-rim{
    position:absolute; left:50%; top:-8px; width:96%; height:26px; transform:translateX(-50%);
    border-radius:50%; background:linear-gradient(180deg, #f7edd9 0%, #d9c2a0 100%);
    box-shadow:inset 0 2px 8px rgba(255,255,255,0.7), inset 0 -8px 12px rgba(82,53,36,0.28);
    border:1px solid rgba(103,66,42,0.38);
  }
  .cup-rim::before{
    content:''; position:absolute; inset:6px 10px 7px; border-radius:50%;
    background:linear-gradient(180deg, rgba(255,255,255,0.32), rgba(82,53,36,0.08));
  }
  .coffee-surface{
    position:absolute; left:50%; top:12px; width:86%; height:38px; transform:translateX(-50%);
    border-radius:48% 52% 50% 50% / 58% 58% 42% 42%;
    background:linear-gradient(180deg, #4a2d1d 0%, #2a180f 100%);
    box-shadow:inset 0 10px 16px rgba(255,255,255,0.07), inset 0 -8px 12px rgba(0,0,0,0.34);
  }
  .coffee-surface::before{
    content:''; position:absolute; left:50%; top:10px; width:58%; height:18px; transform:translateX(-50%);
    border-radius:50%; background:radial-gradient(circle at center, rgba(239,224,201,0.62), rgba(239,224,201,0.1) 65%, transparent 72%);
  }
  .coffee-sheen{
    position:absolute; left:22%; top:22px; width:48%; height:18px; border-radius:50%;
    border:2px solid rgba(239,224,201,0.18); border-left-color:transparent; border-bottom-color:transparent;
    transform:rotate(-18deg); opacity:0.7;
  }
  .cup-brand{
    position:absolute; left:50%; bottom:108px; transform:translateX(-50%); 
    font-size:10px; letter-spacing:0.24em; text-transform:uppercase; color:rgba(239,224,201,0.4);
    font-weight:500;
    text-align:center;
  }
  .cup-handle{
    position:absolute; right:32px; bottom:130px; width:76px; height:88px;
    border:12px solid rgba(23,13,9,0.96); border-left:none; border-radius:50%;
    transform:rotate(10deg);
    box-shadow:inset -5px 0 12px rgba(255,255,255,0.04);
  }
  .cup-handle::before{
    content:''; position:absolute; inset:18px 18px 18px 8px; border-radius:50%;
    border:2px solid rgba(239,224,201,0.12); border-left:none;
  }
  .steam{
    position:absolute; left:50%; bottom:152px; width:16px; height:110px;
    border-radius:50% 50% 55% 45% / 64% 64% 36% 36%;
    background:linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(239,224,201,0.18) 35%, rgba(239,224,201,0.04) 70%, transparent 100%);
    filter:blur(4px); opacity:0;
    transform:translate3d(0, 0, 0) scale(0.8);
    animation: steamRise 7s ease-in-out infinite;
    pointer-events:none;
  }
  .steam::before,
  .steam::after{
    content:''; position:absolute; inset:0; border-radius:inherit;
    background:inherit;
  }
  .steam::before{ transform:translateX(-12px) scaleY(0.9); }
  .steam::after{ transform:translateX(12px) scaleY(0.84); }
  .steam-a{ margin-left:-54px; animation-delay:0s; }
  .steam-b{ margin-left:-10px; animation-delay:1.3s; }
  .steam-c{ margin-left:28px; animation-delay:2.7s; }
  .steam-d{ margin-left:62px; animation-delay:4.1s; }

  @keyframes steamRise{
    0%{ opacity:0; transform:translate3d(0, 20px, 0) scale(0.72); }
    18%{ opacity:0.56; }
    42%{ opacity:0.34; }
    100%{ opacity:0; transform:translate3d(var(--steam-drift, 8px), -120px, 0) scale(1.45); }
  }
  .steam-a{ --steam-drift:-8px; }
  .steam-b{ --steam-drift:6px; }
  .steam-c{ --steam-drift:-5px; }
  .steam-d{ --steam-drift:10px; }

  @media (prefers-reduced-motion: reduce){
    .steam{ animation:none; opacity:0.18; }
  }

  .scroll-cue{
    position:absolute; left:32px; bottom:38px; z-index:3;
    display:flex; align-items:center; gap:12px;
    font-size:11px; letter-spacing:0.22em; text-transform:uppercase; color:rgba(246,239,226,0.45);
  }
  .scroll-cue .line{ width:1px; height:38px; background:linear-gradient(180deg, rgba(246,239,226,0.5), transparent); position:relative; overflow:hidden; }
  .scroll-cue .line::after{
    content:''; position:absolute; top:-40px; left:0; width:100%; height:40px; background:var(--coffee-pale);
    animation: cue 2.6s ease-in-out infinite;
  }
  @keyframes cue{ 0%{ top:-40px; } 100%{ top:100%; } }

  /* ============================= */
  /* SECTION SHELL                 */
  /* ============================= */
  section{ position:relative; padding:150px 0; }
  .section-tight{ padding:110px 0; }
  .sec-head{ max-width:640px; margin-bottom:64px; }
  .sec-head .eyebrow{ margin-bottom:16px; display:block; }

  hr.rule{ border:none; border-top:1px solid var(--line); }

  /* ============================= */
  /* INTRO / SPLIT                 */
  /* ============================= */
  .split{
    display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center;
  }
  .intro-visual{
    position:relative; aspect-ratio:4/5; border-radius:2px; overflow:hidden;
    background:linear-gradient(160deg, var(--dark-choc-2), var(--espresso));
    border:1px solid var(--line-soft);
  }
  .intro-visual img{ width:100%; height:100%; object-fit:cover; opacity:.85; transition:transform 1.4s var(--ease); }
  .intro-visual:hover img{ transform:scale(1.06); }
  .intro-visual::after{
    content:''; position:absolute; inset:0;
    background:linear-gradient(180deg, transparent 40%, rgba(21,12,8,0.85) 100%);
  }
  .visual-badge{
    position:absolute; bottom:26px; left:26px; z-index:2;
    font-family:var(--font-display); font-style:italic; font-size:15px; color:var(--cream);
  }
  .intro-text p{ margin:22px 0 30px; font-size:16px; }
  .stat-row{ display:flex; gap:48px; margin-top:38px; }
  .stat-row div b{ display:block; font-family:var(--font-display); font-size:30px; color:var(--white); font-weight:600; }
  .stat-row div span{ font-size:12px; letter-spacing:0.08em; text-transform:uppercase; color:rgba(246,239,226,0.5); }

  /* ============================= */
  /* MENU                          */
  /* ============================= */
  .menu-grid{
    display:grid; grid-template-columns:repeat(3, 1fr); gap:2px;
    background:var(--line-soft);
    border:1px solid var(--line-soft);
  }
  .menu-card{
    background:var(--espresso);
    padding:38px 30px;
    display:flex; flex-direction:column;
    height:100%;
    min-width:0;
    perspective:900px;
    transition:background .5s var(--ease);
  }
  .menu-card:hover{ background:var(--dark-choc); }
  .card-tilt{ transition:transform .35s var(--ease-soft); transform-style:preserve-3d; will-change:transform; }
  .card-media{
    width:100%; aspect-ratio:1/1; border-radius:2px; overflow:hidden; ;
    background:radial-gradient(circle at 35% 30%, rgba(145,102,64,0.35), var(--dark-choc-2) 70%);
    position:relative;
  }
  .card-media img{ width:100%; height:100%; object-fit:cover; opacity:0.92; }
  .card-media::after{ content:''; position:absolute; inset:0; box-shadow:inset 0 0 40px rgba(0,0,0,0.5); }
  .menu-card .price{
    font-family:var(--font-display); font-size:20px; color:var(--coffee-pale); margin:10px 0 6px;
  }
  .menu-card p{ font-size:14px; margin-bottom:22px; flex-grow:1; }
  .menu-card .btn{
    width:100%;
    padding:14px;
    font-size:11px;
    margin-top:auto;
    flex:0 0 auto;
  }
  .menu-card .add-order{
    background:rgba(239,224,201,.06);
    border-color:rgba(239,224,201,.22);
  }
  .menu-card .add-order:hover{
    background:var(--cream);
    color:var(--espresso);
  }

  /* ============================= */
  /* EXPERIENCE                    */
  /* ============================= */
  .exp-grid{
    display:grid; grid-template-columns:repeat(3, 1fr); gap:1px;
    background:var(--line-soft); border-top:1px solid var(--line-soft); border-bottom:1px solid var(--line-soft);
  }
  .exp-item{
    background:var(--espresso); padding:56px 40px; text-align:left;
    transition:background .5s var(--ease), transform .5s var(--ease);
  }
  .exp-item:hover{ background:var(--dark-choc); transform:translateY(-6px); }
  .exp-num{ font-family:var(--font-display); font-style:italic; color:var(--coffee-light); font-size:15px; margin-bottom:26px; display:block; }
  .exp-item p{ margin-top:14px; font-size:14.5px; }

  /* ============================= */
  /* 3D SHOWCASE                   */
  /* ============================= */
  .showcase{
    background:linear-gradient(180deg, var(--dark-choc), var(--espresso));
    text-align:center;
  }
  .showcase .sec-head{ margin-left:auto; margin-right:auto; text-align:center; }
  #showcase-canvas-wrap{
    position:relative; width:100%; max-width:640px; aspect-ratio:1/1; margin:0 auto;
    opacity:0; transition:opacity 1.4s var(--ease);
  }
  #showcase-canvas-wrap.ready{ opacity:1; }
  #showcase-canvas-wrap canvas{ width:100%!important; height:100%!important; }
  .showcase-hint{ margin-top:18px; font-size:12px; letter-spacing:0.12em; text-transform:uppercase; color:rgba(246,239,226,0.4); }

  /* ============================= */
  /* STORY                         */
  /* ============================= */
  .story{
    position:relative; padding:170px 0;
    background:linear-gradient(180deg, var(--espresso), var(--dark-choc-2), var(--espresso));
    overflow:hidden;
    text-align:center;
  }
  .story::before{
    content:''; position:absolute; inset:0; z-index:0; opacity:0.5;
    background:radial-gradient(ellipse 55% 40% at 50% 40%, rgba(145,102,64,0.22), transparent 70%);
    animation: fogdrift 22s ease-in-out infinite alternate;
  }
  .story-inner{ position:relative; z-index:1; max-width:780px; margin:0 auto; }
  .story h2{ margin-bottom:26px; }
  .story p{ font-size:17px; max-width:600px; margin:0 auto; }

  /* ============================= */
  /* STATS                         */
  /* ============================= */
  .stats{
    border-top:1px solid var(--line); border-bottom:1px solid var(--line);
    padding:90px 0;
  }
  .stats-grid{
    display:grid; grid-template-columns:repeat(4, 1fr); text-align:center; gap:20px;
  }
  .stat b{
    display:block; font-family:var(--font-display); font-weight:600; font-size:clamp(2.4rem,4.2vw,3.4rem); color:var(--white);
  }
  .stat span{ font-size:12px; letter-spacing:0.1em; text-transform:uppercase; color:rgba(246,239,226,0.5); }

  /* ============================= */
  /* LOCATION                      */
  /* ============================= */
  .location-grid{ display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
  .loc-visual{
    position:relative; aspect-ratio:5/4; border:1px solid var(--line-soft); border-radius:18px; overflow:hidden;
    background:
      repeating-linear-gradient(45deg, rgba(239,224,201,0.03) 0 2px, transparent 2px 26px),
      radial-gradient(circle at 30% 30%, rgba(145,102,64,0.35), var(--dark-choc-2) 70%);
    box-shadow:0 30px 60px rgba(0,0,0,0.25);
  }
  .loc-visual iframe{
    position:absolute; inset:0; width:100%; height:100%; border:0; display:block;
    filter:grayscale(0.18) contrast(1.06) saturate(0.9) brightness(0.88);
  }
  .loc-visual::after{
    content:''; position:absolute; inset:0; background:linear-gradient(135deg, rgba(21,12,8,0.15), rgba(21,12,8,0.4)); pointer-events:none;
  }
  .loc-visual .pin{
    position:absolute; top:44%; left:48%; width:18px; height:18px; border-radius:50%;
    background:var(--cream); box-shadow:0 0 0 0 rgba(239,224,201,0.5); z-index:2;
    animation:pin-pulse 2.4s ease-out infinite;
  }
  @keyframes pin-pulse{
    0%{ box-shadow:0 0 0 0 rgba(239,224,201,0.45); }
    70%{ box-shadow:0 0 0 26px rgba(239,224,201,0); }
    100%{ box-shadow:0 0 0 0 rgba(239,224,201,0); }
  }
  .loc-list{ margin:30px 0 38px; }
  .loc-list li{ list-style:none; display:flex; justify-content:space-between; max-width:340px; padding:14px 0; border-bottom:1px solid var(--line-soft); font-size:14px; color:rgba(246,239,226,0.7); }
  .loc-list li b{ color:var(--off-white); font-weight:500; }

  /* ============================= */
  /* FINAL CTA                     */
  /* ============================= */
  .final-cta{
    position:relative; text-align:center; padding:190px 0;
    background:linear-gradient(180deg, var(--dark-choc-2), var(--espresso));
    overflow:hidden;
  }
  .final-cta::before{
    content:''; position:absolute; inset:0; opacity:.55;
    background:radial-gradient(ellipse 60% 50% at 50% 50%, rgba(145,102,64,0.25), transparent 70%);
    animation:fogdrift 20s ease-in-out infinite alternate;
  }
  .final-cta-inner{ position:relative; z-index:2; max-width:680px; margin:0 auto; }
  .final-cta p{ font-size:17px; margin:22px auto 40px; max-width:460px; }
  .final-actions{ display:flex; gap:18px; justify-content:center; flex-wrap:wrap; }

  /* ============================= */
  /* FOOTER                        */
  /* ============================= */
  footer{
    position:relative;
    background:
      radial-gradient(circle at 78% 18%, rgba(145,102,64,.16), transparent 28%),
      linear-gradient(145deg, #100805 0%, var(--dark-choc-2) 55%, #180b07 100%);
    padding:95px 0 28px;
    border-top:1px solid var(--line);
    overflow:hidden;
  }
  footer::before{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    right:-180px;
    top:-220px;
    border-radius:50%;
    background:rgba(181,138,92,.08);
    filter:blur(55px);
    pointer-events:none;
  }
  .footer-top{
    display:grid;
    grid-template-columns:1.25fr .75fr .75fr;
    gap:70px;
    align-items:start;
    padding-bottom:58px;
    margin-bottom:28px;
    border-bottom:1px solid var(--line-soft);
    position:relative;
    z-index:1;
  }
  .footer-brand .logo{
    font-size:38px;
    margin-bottom:17px;
  }
  .footer-brand p{
    font-style:italic;
    font-family:var(--font-display);
    font-size:19px;
    color:var(--coffee-pale);
    max-width:280px;
    line-height:1.5;
  }
  .footer-brand small{
    display:block;
    margin-top:22px;
    max-width:330px;
    color:rgba(246,239,226,.43);
    font-size:13px;
    line-height:1.7;
  }
  .footer-col span{
    display:block;
    font-size:10px;
    letter-spacing:.2em;
    text-transform:uppercase;
    color:var(--coffee-pale);
    margin-bottom:20px;
  }
  .footer-col a{
    display:block;
    font-size:14px;
    color:rgba(246,239,226,.68);
    margin-bottom:14px;
    transition:color .3s, transform .3s;
  }
  .footer-col a:hover{
    color:var(--white);
    transform:translateX(4px);
  }
  .footer-social-text{
    color:rgba(246,239,226,.45);
    font-size:13px;
    line-height:1.7;
    margin-bottom:18px;
    max-width:220px;
  }
  .social{ display:flex; gap:10px; }
  .social a{
    width:42px; height:42px;
    border:1px solid var(--line);
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    font-size:11px;
    letter-spacing:.05em;
    transition:border-color .3s, background .3s, color .3s, transform .3s;
  }
  .social a i{font-size:15px;line-height:1;}
  .social a:hover{
    border-color:var(--coffee-pale);
    background:var(--coffee-pale);
    color:var(--espresso);
    transform:translateY(-4px);
  }
  .footer-bottom{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:16px;
    font-size:11px;
    letter-spacing:.04em;
    color:rgba(246,239,226,.3);
    position:relative;
    z-index:1;
  }
  .footer-bottom .footer-signature{
    color:var(--coffee-pale);
  }

  /* ============================= */
  /* TOAST                         */
  /* ============================= */
  #toast{
    position:fixed; left:50%; bottom:34px; transform:translate(-50%, 20px);
    background:var(--cream); color:var(--espresso); padding:14px 26px; border-radius:2px;
    font-size:13px; letter-spacing:0.04em; z-index:2000;
    opacity:0; pointer-events:none; transition:opacity .4s var(--ease), transform .4s var(--ease);
  }
  #toast.show{ opacity:1; transform:translate(-50%, 0); }

  /* ============================= */
  /* RESPONSIVE                    */
  /* ============================= */
  @media (max-width:1024px){
    .split, .location-grid{ grid-template-columns:1fr; gap:52px; }
    .menu-grid{ grid-template-columns:repeat(2, 1fr); }
    .stats-grid{ grid-template-columns:repeat(2, 1fr); row-gap:44px; }
    .container{ padding:0 26px; }
    .hero-layout{ grid-template-columns:1fr; }
    .hero-content{ max-width:560px; }
    .hero-visual{ min-height:420px; justify-content:center; }
    .coffee-cup-scene{ width:min(52vw, 320px); height:min(54vw, 350px); }
  }

  @media (max-width:860px){
    nav.links{ display:none; }
    .nav-cta.desktop-only{ display:none; }
    .hamburger{ display:flex; }
    .exp-grid{ grid-template-columns:1fr; }

    .hero{
      align-items:flex-start;
      padding-top:145px;
      min-height:100svh;
    }
    .hero-content{
      max-width:620px;
    }
    .hero-content::before{
      width:620px;
      height:620px;
      left:-210px;
    }
    .hero-visual{ min-height:360px; }
    .coffee-cup-scene{ width:min(58vw, 300px); height:min(60vw, 330px); }
  }

  @media (max-width:640px){
    section{ padding:96px 0; }
    .hero{
      padding-top:128px;
      min-height:100svh;
      align-items:flex-start;
    }
    .hero-layout{ gap:18px; }
    .hero-content h1{ font-size:clamp(2.65rem, 13vw, 4.2rem); }
    .hero-content p{ font-size:15.5px; max-width:390px; }
    .hero-actions{ gap:12px; }
    .hero-actions .btn{ width:auto; }
    .hero-visual{ min-height:300px; }
    .coffee-cup-scene{ width:min(70vw, 300px); height:300px; }
    .cup-body{ width:156px; height:132px; bottom:68px; }
    .cup-handle{ right:24px; bottom:112px; width:66px; height:76px; }
    .steam{ bottom:126px; height:90px; }
    .menu-grid{ grid-template-columns:1fr; }
    .stats-grid{ grid-template-columns:1fr 1fr; }
    .footer-top{
      grid-template-columns:1fr;
      gap:42px;
    }
    .footer-links{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:35px;
    }
    .scroll-cue{ display:none; }
    #showcase-canvas-wrap{ max-width:100%; }
    .final-cta{ padding:130px 0; }
    .story{ padding:120px 0; }
    .mobile-menu{ padding:110px 24px 40px; }
    .mobile-menu a:not(.mobile-order-btn){ font-size:29px; }
  }

  @media (max-width:400px){
    .hero-actions, .final-actions{ flex-direction:column; width:100%; }
    .hero-actions .btn, .final-actions .btn{ width:100%; }
    .stats-grid{ grid-template-columns:1fr; }
    .hero-visual{ min-height:260px; }
    .coffee-cup-scene{ width:min(82vw, 300px); height:290px; }
    .cup-body{ width:150px; height:132px; }
    .cup-saucer{ width:78%; }
    .cup-brand{ bottom:92px; }
  }