  .drink-price {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--brown-light);
    text-align: center;
    margin-bottom: 8px;
    margin-top: 2px;
    letter-spacing: 0.01em;
  }
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --brown-dark:  #2c1a0e;
      --brown-mid:   #5c3d2e;
      --brown-light: #7a6050;
      --brown-link:  #6b4c3b;
      --cream:       #eeeae3;
      --cream-light: #f4f1ec;
      --white:       #ffffff;
      --font-head:   'Playfair Display', Georgia, serif;
      --font-body:   'DM Sans', sans-serif;
    }

    html { scroll-behavior: smooth; }
    body { font-family: var(--font-body); overflow-x: hidden; background: var(--cream); }
    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--cream); }
    ::-webkit-scrollbar-thumb { background: var(--brown-mid); border-radius: 2px; }

    /* ══════════════════════════════
       NAVBAR
    ══════════════════════════════ */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 48px;
      background: #f0eee6;
      border-bottom: 2px solid #452918;
      box-shadow: 0 1px 0 rgba(44, 26, 14, 0.06);
      transition: background 0.3s ease, box-shadow 0.35s ease;
    }
    nav.scrolled {
      background: #f0eee6;
      box-shadow:
        0 4px 14px rgba(44, 26, 14, 0.1),
        0 1px 0 rgba(44, 26, 14, 0.04);
    }
    .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }
    .nav-logo img.nav-brand-logo {
      height: 52px;
      width: auto;
      max-width: min(220px, 55vw);
      object-fit: contain;
      display: block;
      /* Visually enlarge logo without changing navbar layout height */
      transform: scale(1.55);
      transform-origin: left center;
    }

    .logo-fallback { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
    .nav-logo .logo-fallback .lf-name { font-family: var(--font-head); font-size: 1.35rem; font-weight: 800; color: var(--brown-dark); letter-spacing: 0.06em; }
    .nav-logo .logo-fallback .lf-sub  { font-size: 0.5rem; letter-spacing: 0.35em; color: var(--brown-mid); text-transform: uppercase; text-align: center; }
    .nav-links { display: flex; align-items: center; gap: 38px; list-style: none; }
    .nav-links a {
      font-size: 0.88rem;
      font-weight: 400;
      color: #452918;
      text-decoration: none;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
      transition: color 0.2s ease, border-bottom 0.2s ease;
      border-bottom: 2px solid transparent;
      padding-bottom: 2px;
    }
    
    .nav-links a:hover {
      color: #2c1a0e;
    }

    .nav-links a.active {
      color: #2c1a0e;
      font-weight: 600;
      border-bottom: 2px solid #2c1a0e;
    }

    .nav-cta {
      padding: 9px 20px !important;
      background: #452918 !important;
      border: 1.5px solid #452918;
      border-radius: 4px;
      font-weight: 500 !important;
      color: #f0eee6 !important;
      transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }

    .nav-cta:hover {
      background: #2c1a0e !important;
      border-color: #2c1a0e !important;
      color: #fff !important;
    }

    /* ══════════════════════════════
       HERO
    ══════════════════════════════ */
    #home {
      position: relative;
      width: 100%; height: 100vh; min-height: 580px;
      overflow: hidden;
    }
    /* HERO VIDEO */
    .hero-video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .hero-bg::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(105deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.05) 100%);
    }
    .hero-content {
      position: relative; z-index: 2;
      height: 100%; display: flex; flex-direction: column; justify-content: flex-end;
      padding: 0 64px 110px;
    }
    .hero-headline {
      font-family: var(--font-head);
      font-size: clamp(4rem, 8.5vw, 7.5rem);
      font-weight: 800; color: #fff;
      line-height: 1.04; letter-spacing: -0.01em; margin-bottom: 22px;
      animation: fadeUp 1s ease both;
    }
    .hero-sub {
      font-size: clamp(0.95rem, 1.3vw, 1.1rem);
      font-style: italic; font-weight: 300;
      color: rgba(255,255,255,0.9); line-height: 1.65; max-width: 600px;
      animation: fadeUp 1s ease 0.2s both;
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ══════════════════════════════
       OUR STORY
       Layout: title full-width → first para full-width
                → left: paras 2&3  |  right: coffee beans image
    ══════════════════════════════ */
    #our-story {
      position: relative;
      background: var(--cream);
      padding: 70px 64px 40px;
      overflow: hidden;
    }

    /* Title — full width, large */
    .story-title {
      font-family: var(--font-head);
      font-size: clamp(3.2rem, 6vw, 5rem);
      font-weight: 800;
      color: var(--brown-dark);
      margin-bottom: 28px;
      line-height: 1;
      position: relative; z-index: 2;
    }

    /* First paragraph spans full width */
    .story-para-full {
      font-size: clamp(1.25rem, 1.6vw, 1.4rem);
      font-weight: 400;
      color: var(--brown-light);
      line-height: 1.9;
      margin-bottom: 32px;
      max-width: 100%;
      position: relative; z-index: 2;
      text-shadow: 
      0 1px 2px rgba(0, 0, 0, 0.08),
      0 3px 6px rgba(0, 0, 0, 0.08);
    }

    /* Two-column row: text left, image right */
    .story-body-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: start;
        gap: 40px;
    }

    .story-left-text {
      position: relative; 
      z-index: 2;
    }

    /* Paragraphs 2 & 3 */
    .story-para {
      font-size: clamp(1.18rem, 1.45vw, 1.32rem);
      font-weight: 400;
      color: var(--brown-light);
      line-height: 1.85;
      margin-bottom: 24px;
      text-shadow: 
      0 1px 2px rgba(0, 0, 0, 0.07),
      0 3px 6px rgba(0, 0, 0, 0.07);
    }

    /* Image: flush right, bleeds off edge */
    .story-img-wrap {
      position: relative; z-index: 1;
      display: flex; align-items: flex-start; justify-content: flex-end;
      margin-right: -64px;
    }
    .story-img-wrap img {
      width: 150%; max-width: 820px;
      height: auto; display: block;
    }

    /* ══════════════════════════════
       MENU DRINKS (scrollable)
    ══════════════════════════════ */
    #menu {
      background: var(--cream);
      padding: 70px 64px 110px;
      position: relative;
    }
    .menu-section-inner {
      max-width: 1280px;
      margin: 0 auto;
    }

    .menu-heading {
      font-family: var(--font-head);
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      font-weight: 800;
      color: var(--brown-dark);
      text-align: center;
      margin: 42px 0 34px;
      letter-spacing: 0.02em;
      position: relative;
      text-decoration: underline;
      text-underline-offset: 10px;
      text-decoration-thickness: 4px;
    }

    .menu-heading::before,
    .menu-heading::after {
      content: none;
    }

    .menu-heading::before { left: 0; }
    .menu-heading::after { right: 0; }

    .menu-heading--alt::before,
    .menu-heading--alt::after {
      opacity: 0.9;
    }

    .drinks-scroller {
      overflow-x: visible;
      overflow-y: visible;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding: 0;
    }

    .drinks-scroller::-webkit-scrollbar { height: 0; width: 0; }

    .drinks-track { display: block; }
    .drinks-set {
      display: grid;
      grid-template-columns: repeat(4, minmax(210px, 1fr));
      gap: 38px 34px;
      width: 100%;
      padding: 0;
      justify-items: center;
    }
    .drinks-set--single-row {
      grid-template-columns: repeat(5, minmax(190px, 1fr));
    }

    .drink-card--menu {
      width: 100%;
      flex: 1 1 auto;
      cursor: pointer;
      gap: 10px;
    }

    @media (max-width: 600px) {
      .drinks-scroller {
        overflow-x: auto;
        overflow-y: hidden;
        padding: 4px 0 16px;
      }
      .drinks-track { display: flex; }
      .drinks-set {
        display: flex;
        gap: 34px;
        width: max-content;
        padding: 0 24px;
      }
      .drink-card--menu {
        width: 210px;
        flex: 0 0 auto;
      }
    }
    .drink-card--menu .drink-card-img {
      margin-bottom: 10px;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      overflow: visible;
      aspect-ratio: auto;
      height: 150px;
    }

    .drink-card--menu .drink-name {
      margin-bottom: 0;
      font-family: var(--font-head);
      text-transform: uppercase;
      text-align: center;
      font-size: 1.02rem;
      letter-spacing: 0.02em;
    }

    /* Make menu images "photo only" (no cover-cropping/card hover zoom). */
    .drink-card--menu .drink-card-img img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: none;
    }
    .drink-card--menu:hover .drink-card-img img { transform: none; }

    .drink-card { display: flex; flex-direction: column; cursor: pointer; gap: 6px;}
    .drink-card-img {
      width: 100%; aspect-ratio: 1/1;
      border-radius: 12px; overflow: hidden;
      position: relative;
      background: transparent;
      box-shadow: none;
    }
    .drink-card-img img {
      width: 100%; height: 100%;
      position: relative;
      z-index: 1;
      object-fit: cover; display: block;
      transition: transform 0.5s ease;
    }
    .drink-card:hover .drink-card-img img { transform: scale(1.05); }
    .img-placeholder {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      font-size: 3.5rem;
      background: linear-gradient(135deg, #c9b49a 0%, #a08060 100%);
    }
    .drink-card-img::after {
      content: '';
      position: absolute;
      bottom: 8px;           /* distance from cup */
      left: 50%;
      transform: translateX(-50%);
      
      width: 60%;            /* width of shadow */
      height: 14px;          /* thickness */
      
      background: rgba(0, 0, 0, 0.25);
      border-radius: 50%;
      
      filter: blur(6px);     /* softness */
      opacity: 0.5;
      z-index: 0;
    }

    .drink-name { font-size: 1.15rem; font-weight: 600; color: var(--brown-dark); margin-bottom: 6px; }
    .drink-desc { font-size: 1.05rem; font-weight: 400; color: var(--brown-light); line-height: 1.65; }

    /* ══════════════════════════════
       VALUES BANNER — tall, bold, immersive
    ══════════════════════════════ */
    #values {
      position: relative;
      min-height: 80vh;       /* tall section */
      overflow: hidden;
      display: flex;
      align-items: center;
    }
    .values-bg {
      position: absolute; inset: 0;
      background: url('values-bg.jpg') center center / cover no-repeat;
      background-color: #4a6040;
    }
    /* Darker overlay so text pops */
    .values-bg::after {
      content: ''; position: absolute; inset: 0;
      background: rgba(0,0,0,0.55);
    }
    .values-grid {
      position: relative; z-index: 2;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      width: 100%;
      padding: 100px 80px;
      text-align: center;
      gap: 40px;
    }
    .value-item {
      display: flex; flex-direction: column;
      align-items: center; gap: 24px;
      padding: 0 16px;
    }
    /* Bigger, thicker icons */
    .value-icon img {
      width: 130px; height: 130px;
      object-fit: contain;
      filter: 
        brightness(0) invert(1)
        drop-shadow(0 2px 8px rgba(0,0,0,0.4));
    }
    /* Bold titles with shadow */
    .value-title {
      font-family: var(--font-head);
      font-size: 1.75rem;
      font-weight: 800;
      color: #fff;
      text-shadow: 0 2px 14px rgba(0,0,0,0.5);
    }
    /* Heavier body text */
    .value-desc {
      font-size: 1.05rem;
      font-weight: 500;
      color: rgba(255,255,255,0.95);
      line-height: 1.7;
      text-shadow: 0 1px 8px rgba(0,0,0,0.45);
    }

    /* ══════════════════════════════
       CONTACT
    ══════════════════════════════ */
    #contact { background: var(--cream-light); padding: 40px 64px 80px; }
    .contact-title {
      font-family: var(--font-head);
      font-size: clamp(2.4rem, 4vw, 3.2rem);
      font-weight: 800; color: var(--brown-dark); margin-bottom: 52px;
    }
    .contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
    .contact-info-list { display: flex; flex-direction: column; gap: 30px; }
    .c-field-label {
      font-size: 1.45rem;
      font-weight: 800;
      color: var(--brown-dark);
      text-decoration: underline;
      text-underline-offset: 4px;
      text-decoration-thickness: 1.5px;
      margin-bottom: 7px;
    }
    .c-field-value { font-size: 1.08rem; font-weight: 700; color: var(--brown-light); line-height: 1.7; }

    .contact-address {
      font-size: 1.18rem;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .contact-email, .contact-phone {
      font-size: 1.18rem;
      font-weight: 700;
    }
    .social-label { font-size: 0.9rem; font-weight: 400; color: var(--brown-dark); margin-bottom: 10px; }
    .social-icons { display: flex; gap: 10px; }
    .social-icon {
      width: 48px; height: 48px; border-radius: 50%;
      background: var(--brown-dark);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; text-decoration: none;
      transition: background 0.25s, transform 0.2s;
    }
    .social-icon:hover { background: var(--brown-mid); transform: translateY(-2px); }
    .social-icon svg { width: 15px; height: 15px; fill: #fff; }
    .map-box { border-radius: 14px; overflow: hidden; height: 370px; border: 1px solid rgba(0,0,0,0.08); }
    .map-box iframe { width: 100%; height: 100%; border: none; display: block; }

    /* ══════════════════════════════
       FOOTER
    ══════════════════════════════ */
    footer {
      background: var(--white);
      padding: 48px 64px;
      display: grid;
      grid-template-columns: 1fr 1fr 1.6fr;
      gap: 48px;
      align-items: start;
      border-top: 1px solid rgba(0,0,0,0.07);
    }
    .footer-logo-col { display: flex; flex-direction: column; align-items: flex-start; }
    /* DIRTI COFFEE.png — bigger size */
    .footer-logo-col img.footer-brand-logo {
      height: 130px;
      width: auto;
      max-width: 240px;
      object-fit: contain;
    }
    .footer-col-title { font-size: 0.8rem; font-weight: 500; color: var(--brown-dark); margin-bottom: 18px; letter-spacing: 0.05em; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-links a { font-size: 0.88rem; font-weight: 300; color: var(--brown-link); text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--brown-dark); }
    .footer-contact-col p { font-size: 0.88rem; font-weight: 300; color: var(--brown-light); line-height: 1.65; margin-bottom: 8px; }

    /* ══════════════════════════════
       SCROLL REVEAL
       Note: starts visible by default, animation is a bonus
    ══════════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(120px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .rd1 { transition-delay: 0.1s; }
    .rd2 { transition-delay: 0.22s; }
    .rd3 { transition-delay: 0.34s; }

    /* Coffee beans scroll animation */
    .beans-animate {
    opacity: 0;
    transform: translateY(80px);
    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
    }

    .beans-animate.visible {
    opacity: 1;
    transform: translateY(0);
    }

    /* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
    @media (max-width: 960px) {
      nav { padding: 16px 24px; }
      .nav-logo img.nav-brand-logo { transform: scale(1.35); }
      .hero-content { padding: 0 24px 72px; }
      #our-story { padding: 60px 24px 0; }
      .story-body-row { grid-template-columns: 1fr; }
      .story-img-wrap { margin-right: -24px; }
      .story-img-wrap img { width: 100%; }
      .story-left-text { padding-bottom: 20px; }
      #menu { padding: 40px 24px 80px; }
      .values-grid { grid-template-columns: 1fr; padding: 60px 24px; }
      #contact { padding: 28px 16px; }
      .contact-layout { grid-template-columns: 1fr; }
      footer { grid-template-columns: 1fr; padding: 36px 24px; gap: 28px; }
    }
    @media (max-width: 600px) {
      .nav-links li:not(:last-child):not(:nth-last-child(2)) { display: none; }
      .nav-logo img.nav-brand-logo { transform: scale(1.22); }
    }