/* ── RESET & CORE ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; overflow-x: hidden; font-size: 16px; }

    :root {
      --primary: #A77C59; 
      --bg-base: #FFFBFA;
      --radius: 32px;
      --max-w: 1200px; 
      
      --text-xs: clamp(0.75rem, 0.8vw, 0.875rem); 
      --text-sm: clamp(0.875rem, 1vw, 1rem);      
      --text-base: clamp(1rem, 1.2vw, 1.125rem);  
      --text-lg: clamp(1.125rem, 1.5vw, 1.5rem);  
      --text-xl: clamp(1.5rem, 2vw, 2rem);        
      --text-display: clamp(3.5rem, 8vw, 6rem); 
    }

    body { 
      font-family: 'Inter', sans-serif; 
      color: #431407; 
      background: linear-gradient(180deg, rgba(167,124,89,0.04) 0%, var(--bg-base) 100vh) no-repeat;
      background-color: var(--bg-base);
      background-attachment: fixed;
      line-height: 1.6; 
      font-size: var(--text-base); 
      -webkit-font-smoothing: antialiased; 
    }

    h1, h2, h3 { font-family: 'Playfair Display', serif; text-wrap: balance; }
    p, span, li { text-wrap: pretty; }

    .f-xs { font-size: var(--text-xs); }
    .f-sm { font-size: var(--text-sm); }
    .f-base { font-size: var(--text-base); }
    .f-lg { font-size: var(--text-lg); }
    .f-xl { font-size: var(--text-xl); }
    .f-display { font-size: var(--text-display); line-height: 1; letter-spacing: -0.04em; font-weight: 700; }
    .overline-text { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.25em; font-weight: 800; color: var(--primary); }

    /* ── NAV ── */
    #nav { 
      position: fixed; top: 16px; left: 50%; transform: translateX(-50%) translateY(-20px); z-index: 9999; 
      height: 72px; width: calc(100% - 32px); max-width: var(--max-w);
      display: flex; justify-content: space-between; align-items: center; 
      padding: 0 24px; 
      background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,251,250,0.85) 100%);
      backdrop-filter: blur(20px); 
      border: 1px solid rgba(167, 124, 89, 0.15); border-radius: 100px; opacity: 0;
      box-shadow: 0 10px 40px -10px rgba(167, 124, 89, 0.15);
    }
    @media (min-width: 768px) { #nav { display: grid; grid-template-columns: 1fr auto 1fr; top: 24px; } }

    .logo-container { height: 48px; width: 48px; display: flex; align-items: center; justify-content: center; }
    .logo-container img { max-height: 100%; max-width: 100%; object-fit: contain; }

    .nav-links { display: flex; gap: 2rem; justify-content: center; }
    .nav-link { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #431407; transition: color 0.3s; }
    .nav-link:hover { color: var(--primary); }

    .cta-button {
      position: relative; display: inline-flex; align-items: center; justify-content: center;
      background: var(--primary); color: white; height: 42px; padding: 0 24px; border-radius: 100px;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; font-size: 11px;
      text-align: center;
    }

    section { padding: 100px 24px; position: relative; width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; }
    .reveal { opacity: 0; transform: translateY(30px); } 

    /* ── HERO ── */
    #hero { min-height: 95vh; justify-content: center; background: radial-gradient(circle at center, rgba(167,124,89,0.06) 0%, transparent 70%); }
    .title-wrapper { position: relative; display: inline-block; width: 100%; height: 1.1em; overflow: hidden; color: var(--primary); vertical-align: top; }
    .title-item { position: absolute; left: 0; right: 0; width: 100%; text-align: center; opacity: 0; transform: translateY(100%); }

    /* ── GALLERY SLIDER ── */
    #menu-gallery { width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; overflow: hidden; padding: 40px 0; cursor: grab; user-select: none; }
    #menu-gallery:active { cursor: grabbing; }
    .gallery-container { display: flex; gap: 32px; width: max-content; padding: 0 40px; will-change: transform; }
    .menu-item { width: clamp(280px, 25vw, 380px); flex-shrink: 0; text-align: left; pointer-events: none; }
    .menu-item img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 24px; margin-bottom: 20px; box-shadow: 0 20px 40px -10px rgba(67, 20, 7, 0.15); }
    .menu-item h4 { font-family: 'Playfair Display', serif; font-size: 1.75rem; color: #431407; font-weight: 700; }
    .menu-item p { font-family: 'Inter', sans-serif; font-size: 0.95rem; color: rgba(67, 20, 7, 0.6); margin-top: 6px; font-weight: 400; }

    /* ── ABOUT ── */
    .about-image-placeholder { 
      width: 100%; 
      aspect-ratio: 21/9; 
      background: #e5e5e5; 
      border-radius: 40px; 
      display: flex; 
      align-items: center; 
      justify-content: center; 
      overflow: hidden;
      margin-bottom: 60px;
    }
    .about-image-placeholder img { width: 100%; height: 100%; object-fit: cover; }

    .btn-secondary { border: 2px solid var(--primary); color: var(--primary); padding: 1.25rem 2.5rem; border-radius: 100px; font-weight: 700; transition: all 0.3s ease; display: flex; align-items: center; gap: 10px; text-align: center; justify-content: center; }
    .btn-secondary:hover { background: var(--primary); color: white; transform: translateY(-2px); }

    #nav-list.mobile-active {
      display: flex !important;
      flex-direction: column;
      position: absolute;
      top: 80px;
      left: 0;
      width: 100%;
      background: white;
      padding: 20px;
      border-radius: 24px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
      border: 1px solid rgba(167, 124, 89, 0.1);
      z-index: 100;
    }
