:root {
    --bamboo-dark:   #6A221C;
    --bamboo-mid:    #9A382F;
    --bamboo-light:  #9A382F;
    --ember:         #9A382F;
    --ember-glow:    #9A382F;
    --ash:           #9A382F;
    --smoke:         rgba(154, 56, 47, 0.8);
    --char:          #F4EFD9;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--char);
    color: var(--ash);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  /* ── BAMBOO TEXTURE OVERLAY ── */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 38px,
      rgba(154,56,47,0.04) 38px,
      rgba(154,56,47,0.04) 40px
    );
    pointer-events: none;
    z-index: 0;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 5%;
    background: linear-gradient(to bottom, rgba(244,239,217,0.92) 0%, transparent 100%);
    backdrop-filter: blur(2px);
  }
  .nav-logo {
    display: flex;
    align-items: center;
  }
  .nav-logo img {
    height: 100px;
    width: auto;
  }
  .nav-cta {
    background: transparent;
    border: 1.5px solid var(--ember);
    color: var(--ember-glow);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.55rem 1.4rem;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
    text-decoration: none;
  }
  .nav-cta:hover { background: var(--ember); color: var(--char); }

  .nav-actions { display: flex; gap: 0.6rem; align-items: center; }
  .nav-check { background: transparent; border: 1px solid rgba(154,56,47,0.2); color: var(--bamboo-light); padding: 0.45rem 1rem; cursor: pointer; }
  .nav-check:hover { background: rgba(154,56,47,0.08); }

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 0 5% 8%;
    overflow: hidden;
  }

  /* Bamboo stalk silhouettes */
  .hero-bg {
    position: absolute; inset: 0;
    background-image: 
      linear-gradient(to bottom, rgba(244, 239, 217, 0.85) 0%, rgba(244, 239, 217, 0.95) 70%, var(--char) 100%),
      url('../images/b-gal-01.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .stalks {
    position: absolute; inset: 0;
    overflow: hidden;
  }
  .stalk {
    position: absolute; bottom: 0;
    width: 18px;
    background: linear-gradient(to top, var(--bamboo-mid), var(--bamboo-light));
    border-radius: 9px 9px 0 0;
    opacity: 0.18;
    transform-origin: bottom center;
  }
  .stalk::after {
    content: '';
    position: absolute;
    left: 50%; transform: translateX(-50%);
    width: 100%; height: 3px;
    background: rgba(154,56,47,0.4);
    border-radius: 2px;
  }
  /* node marks on stalks via box-shadows */
  .stalk-node {
    position: absolute; left: 0; right: 0;
    height: 2px;
    background: rgba(154,56,47,0.12);
  }

  /* ember particles */
  .embers {
    position: absolute; inset: 0; pointer-events: none;
  }
  .ember-dot {
    position: absolute;
    border-radius: 50%;
    background: var(--ember-glow);
    animation: rise linear infinite;
    opacity: 0;
  }
  @keyframes rise {
    0%   { transform: translateY(0)   translateX(0)   scale(1);   opacity: 0.9; }
    60%  { opacity: 0.5; }
    100% { transform: translateY(-140px) translateX(var(--drift)) scale(0.2); opacity: 0; }
  }

  .hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--bamboo-light);
    margin-bottom: 1.2rem;
    position: relative; z-index: 2;
  }
  .hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.8rem, 10vw, 9rem);
    font-weight: 900;
    line-height: 0.9;
    position: relative; z-index: 2;
    color: var(--ash);
  }
  .hero-headline em {
    font-style: normal;
    color: var(--ember);
    display: block;
  }
  .hero-tagline {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--smoke);
    margin-top: 1.2rem;
    position: relative; z-index: 2;
    max-width: 420px;
  }
  .hero-actions {
    display: flex; gap: 1rem; align-items: center;
    margin-top: 2.8rem;
    position: relative; z-index: 2;
    flex-wrap: wrap;
  }
  .btn-primary {
    background: var(--ember);
    color: var(--char);
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 2.4rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--ember-glow); transform: translateY(-2px); }
  .btn-outline {
    background: transparent;
    color: var(--ash);
    border: 2px solid var(--ember);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-outline:hover { background: var(--ember); color: var(--char); transform: translateY(-2px); }
  .btn-ghost {
    background: transparent;
    color: var(--smoke);
    border: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    cursor: pointer;
    display: flex; align-items: center; gap: 0.5rem;
    transition: color 0.2s;
    text-decoration: none;
  }
  .btn-ghost:hover { color: var(--ash); }

  .hero-location {
    position: absolute; bottom: 2.5rem; right: 5%;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bamboo-light);
    opacity: 0.7;
    z-index: 2;
    writing-mode: vertical-rl;
  }

  /* ── DIVIDER ── */
  .bamboo-divider {
    display: flex; align-items: center; gap: 1rem;
    padding: 0 5%;
    margin: 0;
  }
  .bamboo-divider span { flex: 1; height: 1px; background: rgba(154,56,47,0.2); }
  .bamboo-divider .node { width: 6px; height: 6px; background: var(--bamboo-light); border-radius: 50%; opacity: 0.5; }

  /* ── OUR ROOTS (BENTO REDESIGN) ── */
  .roots-section {
    padding: 7rem 5%;
    position: relative; 
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .roots-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .roots-header .section-label {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 1rem;
  }
  
  .roots-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--ash);
    margin-bottom: 1.5rem;
  }
  
  .roots-header h2 em {
    font-style: normal;
    background: linear-gradient(to right, var(--ember), #D45C4B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .roots-subtitle {
    font-size: 1.1rem;
    color: var(--smoke);
    max-width: 600px;
  }
  
  .roots-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 1.25rem;
    width: 100%;
    max-width: 1200px;
  }
  
  .bento-card {
    position: relative;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(154, 56, 47, 0.12);
    box-shadow: 0 20px 45px rgba(106, 34, 28, 0.05);
    padding: 2.5rem;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(106, 34, 28, 0.1);
  }
  
  /* Layout Mapping */
  .bento-main {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(244,239,217,0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .bento-visual {
    grid-column: span 1;
    grid-row: span 2;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(154, 56, 47, 0.04);
  }
  
  .bento-feature {
    grid-column: span 1;
    grid-row: span 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
  }
  
  .bento-accent {
    grid-column: span 2;
    grid-row: span 1;
    background: linear-gradient(135deg, var(--ember), #6A221C);
    color: var(--char);
    display: flex;
    align-items: center;
  }
  
  .bento-accent p {
    font-family: 'IM Fell English', serif;
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    color: rgba(244, 239, 217, 0.95);
  }
  
  /* Content Styling */
  .bento-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at top right, rgba(154, 56, 47, 0.08), transparent 60%);
    pointer-events: none;
  }
  
  .bento-main h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--ash);
    margin-bottom: 1.25rem;
  }
  
  .bento-main p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--smoke);
    margin-bottom: 1rem;
  }
  
  .bento-main p:last-child {
    margin-bottom: 0;
  }
  
  .bento-icon {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 4px 6px rgba(154, 56, 47, 0.2));
  }
  
  .bento-feature h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ash);
  }
  
  .bento-feature p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--smoke);
  }
  
  .bento-visual-mask {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }
  
  .bamboo-icon-bento {
    width: 100%;
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(106, 34, 28, 0.15));
    transform-origin: bottom center;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  
  .bento-visual:hover .bamboo-icon-bento {
    transform: scale(1.05) rotate(2deg);
  }
  
  @media (max-width: 1024px) {
    .roots-bento {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-visual {
      grid-column: span 2;
      grid-row: span 1;
      min-height: 300px;
    }
  }
  
  @media (max-width: 640px) {
    .roots-bento {
      grid-template-columns: 1fr;
    }
    
    .bento-main, .bento-accent, .bento-visual, .bento-feature {
      grid-column: span 1;
      grid-row: auto;
    }
    
    .bento-card {
      padding: 1.8rem;
    }
    
    .roots-header h2 {
      font-size: 2.2rem;
    }
  }

  /* ── MENU HIGHLIGHT ── */
  .menu-section {
    padding: 5rem 5%;
    position: relative; z-index: 1;
  }
  .menu-section .section-label {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 1rem;
    text-align: center;
  }
  .menu-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    color: var(--ash);
    margin-bottom: 3.5rem;
  }
  .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5px;
    background: rgba(154,56,47,0.04);
    border: 1px solid rgba(154,56,47,0.1);
  }
  .menu-card {
    background: rgba(154,56,47,0.05);
    padding: 2.2rem 2rem;
    transition: background 0.25s;
    cursor: default;
    position: relative;
    overflow: hidden;
  }
  .menu-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--ember);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }
  .menu-card:hover { background: rgba(154,56,47,0.1); }
  .menu-card:hover::before { transform: scaleX(1); }
  .menu-card .emoji { font-size: 2rem; margin-bottom: 1rem; }
  .menu-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--ash);
    margin-bottom: 0.5rem;
  }
  .menu-card p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--smoke);
  }
  .menu-card .price {
    margin-top: 1.2rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--ember-glow);
    font-family: 'Playfair Display', serif;
  }

  /* ── REVIEWS (STAGGERED GRID) ── */
  .reviews-section-modern {
    padding: 7rem 5%;
    position: relative;
    z-index: 1;
    background: radial-gradient(circle at top left, rgba(154,56,47,0.06), transparent 50%),
                radial-gradient(circle at bottom right, rgba(154,56,47,0.04), transparent 40%);
  }

  .reviews-header-modern {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .reviews-header-modern .section-label {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 1rem;
  }

  .reviews-header-modern h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    color: var(--ash);
    line-height: 1.1;
    margin-bottom: 1rem;
  }

  .reviews-header-modern p {
    color: var(--smoke);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
  }

  .rating-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(154,56,47,0.15);
    box-shadow: 0 10px 30px rgba(106,34,28,0.06);
  }

  .rating-badge-modern .rating-score {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--ash);
  }

  .rating-badge-modern .rating-stars {
    color: #D45C4B;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
  }

  .rating-badge-modern .rating-label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    color: var(--smoke);
    border-left: 1px solid rgba(154,56,47,0.2);
    padding-left: 0.75rem;
  }

  .reviews-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  /* Stagger the second column */
  .reviews-grid-modern .review-card-modern:nth-child(even) {
    transform: translateY(3rem);
  }

  .review-card-modern {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(154, 56, 47, 0.12);
    border-radius: 32px;
    padding: 3rem 2.5rem;
    position: relative;
    box-shadow: 0 25px 60px rgba(106, 34, 28, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  /* Stagger hover effect needs to account for base translation */
  .review-card-modern:nth-child(odd):hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 75px rgba(106, 34, 28, 0.1);
  }

  .review-card-modern:nth-child(even):hover {
    transform: translateY(calc(3rem - 5px));
    box-shadow: 0 35px 75px rgba(106, 34, 28, 0.1);
  }

  .review-quote-mark {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    line-height: 1;
    color: rgba(154, 56, 47, 0.06);
    pointer-events: none;
  }

  .review-stars-modern {
    color: #D45C4B;
    font-size: 1.25rem;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
  }

  .review-text-modern {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--ash);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
  }

  .review-author-box {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(154, 56, 47, 0.1);
    padding-top: 1.5rem;
  }

  .review-author-name {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--ash);
    margin-bottom: 0.2rem;
  }

  .review-author-meta {
    font-size: 0.85rem;
    color: var(--smoke);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .reviews-footer-modern {
    margin-top: 6rem;
    text-align: center;
  }

  .reviews-footer-modern .btn-outline {
    background: rgba(255, 255, 255, 0.95);
  }

  @media (max-width: 900px) {
    .reviews-grid-modern {
      grid-template-columns: 1fr;
    }
    
    .reviews-grid-modern .review-card-modern:nth-child(even) {
      transform: translateY(0);
    }
    
    .review-card-modern:nth-child(even):hover {
      transform: translateY(-5px);
    }
    
    .reviews-footer-modern {
      margin-top: 4rem;
    }
  }

  @media (max-width: 600px) {
    .review-card-modern {
      padding: 2rem 1.5rem;
    }
    
    .review-text-modern {
      font-size: 1.05rem;
    }
  }

  /* ── HOW IT WORKS ── */
  .how-section {
    padding: 6rem 5%;
    position: relative; z-index: 1;
    text-align: center;
  }
  .how-section .section-label {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--bamboo-light);
    margin-bottom: 1rem;
  }
  .how-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--ash);
    margin-bottom: 3.5rem;
  }
  .how-steps {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    max-width: 860px;
    margin: 0 auto;
  }
  .how-step {
    flex: 1; min-width: 180px; max-width: 220px;
    position: relative;
    padding: 0 1.5rem;
  }
  .how-step:not(:last-child)::after {
    content: '';
    position: absolute; right: 0; top: 28px;
    width: 1px; height: 40%;
    background: rgba(154,56,47,0.2);
  }
  .step-icon {
    width: 56px; height: 56px;
    border: 1.5px solid var(--bamboo-mid);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1.2rem;
    background: rgba(154,56,47,0.05);
  }
  .how-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--ash);
    margin-bottom: 0.5rem;
  }
  .how-step p {
    font-size: 0.82rem;
    line-height: 1.7;
    color: var(--smoke);
  }

  /* ── GALLERY (ASYMMETRICAL BENTO) ── */
  .gallery-section-modern {
    padding: 6rem 5%;
    position: relative; 
    z-index: 1;
  }
  .gallery-section-modern .section-label {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--bamboo-light);
    margin-bottom: 1rem;
    text-align: center;
  }
  .gallery-section-modern h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--ash);
    margin-bottom: 3rem;
    text-align: center;
  }
  
  .gallery-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .gallery-card-modern {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(106,34,28,0.08);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .gallery-card-modern:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 25px 50px rgba(106,34,28,0.15);
  }
  
  .bento-tall {
    grid-column: span 2;
    grid-row: span 2;
  }
  .bento-square {
    grid-column: span 1;
    grid-row: span 1;
  }
  .bento-wide {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .gallery-card-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  
  .gallery-card-modern:hover img {
    transform: scale(1.08);
  }
  
  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(106,34,28,0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  .gallery-card-modern:hover .gallery-overlay {
    opacity: 1;
  }
  
  .view-icon {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .gallery-card-modern:hover .view-icon {
    transform: translateY(0);
  }
  
  .gallery-overlay .gallery-caption {
    color: #fff;
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.05s;
  }
  
  .gallery-card-modern:hover .gallery-caption {
    transform: translateY(0);
  }

  /* ── LIGHTBOX MODAL ── */
  .lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  
  .lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
  }
  
  .lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 10, 8, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  
  .lightbox-content {
    position: relative;
    z-index: 1001;
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .lightbox-modal.active .lightbox-content {
    transform: scale(1);
  }
  
  .lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    object-fit: contain;
  }
  
  .lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s, transform 0.2s;
  }
  
  .lightbox-close:hover {
    opacity: 1;
    transform: scale(1.1);
  }

  @media (max-width: 900px) {
    .gallery-grid-modern {
      grid-template-columns: repeat(2, 1fr);
    }
    .bento-tall, .bento-wide {
      grid-column: span 2;
    }
  }
  
  @media (max-width: 600px) {
    .gallery-grid-modern {
      grid-template-columns: 1fr;
      grid-auto-rows: 250px;
    }
    .bento-tall, .bento-square, .bento-wide {
      grid-column: span 1;
      grid-row: span 1;
    }
  }

  /* ── CONTACT / ORDER ── */
  .contact-section {
    padding: 6rem 5%;
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(154,56,47,0.08) 0%, rgba(154,56,47,0.02) 100%);
    border-top: 1px solid rgba(154,56,47,0.1);
    border-bottom: 1px solid rgba(154,56,47,0.1);
  }
  .contact-info .section-label {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 1rem;
  }
  .contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--ash);
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  .contact-info p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--smoke);
    margin-bottom: 2rem;
    max-width: 400px;
  }
  .phone-link {
    display: flex; align-items: center; gap: 1rem;
    text-decoration: none;
    border: 1px solid var(--ember);
    padding: 1.2rem 1.8rem;
    color: var(--ash);
    transition: background 0.2s;
    max-width: fit-content;
  }
  .phone-link:hover { background: rgba(154,56,47,0.1); }
  .phone-link .ph-icon { font-size: 1.4rem; }
  .phone-link .ph-text .label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--bamboo-light);
    margin-bottom: 0.1rem;
  }
  .phone-link .ph-text .number {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--ember-glow);
    letter-spacing: 0.05em;
  }
  .cod-note {
    margin-top: 1.5rem;
    display: flex; gap: 0.7rem;
    align-items: flex-start;
    padding: 1rem 1.2rem;
    background: rgba(154,56,47,0.05);
    border-left: 2px solid var(--ember);
  }
  .cod-note p { margin: 0; font-size: 0.82rem; color: var(--smoke); }
  .cod-note p strong { color: var(--ember-glow); }

  .map-placeholder {
    background: rgba(154,56,47,0.05);
    border: 1px solid rgba(154,56,47,0.15);
    padding: 3rem 2rem;
    text-align: center;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    min-height: 300px;
    gap: 1rem;
  }
  .map-pin { font-size: 2.5rem; }
  .map-place {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--ash);
  }
  .map-region {
    font-size: 0.82rem;
    color: var(--smoke);
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  /* Contact actions layout */
  .contact-actions { display: flex; gap: 1.2rem; align-items: center; margin-top: 1rem; flex-wrap: wrap; }
  .contact-order { padding: 0.9rem 1.6rem; font-size: 1rem; }

  /* ── FOOTER ── */
  footer {
    padding: 3rem 5%;
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
    text-align: center;
    position: relative; z-index: 1;
  }
  .footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
  }
  .footer-logo img {
    height: 120px;
    width: auto;
  }
  .footer-copy {
    font-size: 0.72rem;
    color: rgba(154,56,47,0.6);
    letter-spacing: 0.08em;
    margin-top: 0.5rem;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 700px) {
    .about, .contact-section { grid-template-columns: 1fr; }
    .about-visual { display: none; }
    .how-steps { gap: 2rem; }
    .how-step:not(:last-child)::after { display: none; }
    .hero-location { display: none; }
    .contact-actions { flex-direction: column; align-items: flex-start; }
  }

  /* Map placeholder: delivery check */
  #check-delivery { margin-top: 0.8rem; border: 1px solid rgba(154,56,47,0.2); }
  .delivery-result { margin-top: 0.6rem; font-size: 0.95rem; color: var(--smoke); }
  .delivery-result.available { color: var(--bamboo-light); }
  .delivery-result.not-available { color: var(--ember-glow); }
