
  :root {
    --rust: #C0392B;
    --amber: #E67E22;
    --gold: #F39C12;
    --cream: #FDF6EC;
    --parchment: #F5E6C8;
    --brown: #7B4F2E;
    --dark-brown: #3E2010;
    --olive: #8B7355;
    --text: #2C1A0E;
    --light-text: #7B5C3E;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ── NOISE TEXTURE OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: var(--dark-brown);
    border-bottom: 3px solid var(--amber);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
  }

  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 0.02em;
    text-decoration: none;
  }

  .nav-logo span { color: var(--cream); font-style: italic; }

  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    color: var(--parchment);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--gold); }

  .nav-cta {
    background: var(--rust);
    color: #fff !important;
    padding: 0.4rem 1.2rem;
    border-radius: 2px;
  }
  .nav-cta:hover { background: var(--amber); color: #fff !important; }

  /* hamburger */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background:
      linear-gradient(160deg, rgba(62,32,16,0.92) 0%, rgba(192,57,43,0.7) 50%, rgba(230,126,34,0.6) 100%),
      url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 80px 2rem 4rem;
    position: relative;
    overflow: hidden;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0; right: 0;
    height: 80px;
    background: var(--cream);
    clip-path: ellipse(55% 100% at 50% 100%);
  }

  .hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    animation: fadeUp 1s ease both;
  }

  .hero-badge {
    display: inline-block;
    background: var(--amber);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 1px;
    margin-bottom: 1.5rem;
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.0;
    margin-bottom: 0.5rem;
  }

  .hero h1 em {
    color: var(--gold);
    font-style: italic;
  }

  .hero-sub {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin: 1.2rem auto;
    max-width: 480px;
    line-height: 1.7;
    font-style: italic;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
  }

  .btn-primary {
    background: var(--rust);
    color: #fff;
    padding: 0.85rem 2rem;
    border: none;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(192,57,43,0.4);
  }

  .btn-primary:hover {
    background: var(--amber);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(230,126,34,0.5);
  }

  .btn-outline {
    background: transparent;
    color: #fff;
    padding: 0.85rem 2rem;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
  }

  .btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
  }

  /* ── STRIP ── */
  .strip {
    background: var(--dark-brown);
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 1.2rem 2rem;
    border-bottom: 2px solid var(--amber);
  }

  .strip-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--parchment);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .strip-item .icon { color: var(--gold); font-size: 1rem; }

  /* ── SECTION WRAPPER ── */
  section { padding: 5rem 2rem; }

  .container {
    max-width: 1100px;
    margin: 0 auto;
  }

  .section-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 0.8rem;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--dark-brown);
    line-height: 1.15;
    margin-bottom: 1rem;
  }

  .section-title em { color: var(--rust); font-style: italic; }

  .divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--rust), var(--amber));
    margin: 1rem 0 2rem;
    border-radius: 2px;
  }

  /* ── ABOUT ── */
  .about {
    background: var(--parchment);
    position: relative;
  }

  .about::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rust), var(--amber), var(--gold));
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .about-image {
    position: relative;
  }

  .about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
    box-shadow: 12px 12px 0 var(--amber);
  }

  .about-image .badge-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--rust);
    color: #fff;
    padding: 1.2rem;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: 0 8px 24px rgba(192,57,43,0.4);
  }

  .about-image .badge-float strong { font-size: 1.3rem; display: block; }

  .about-text p {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--light-text);
    margin-bottom: 1.2rem;
  }

  .values-row {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
  }

  .value-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--cream);
    border: 1px solid rgba(230,126,34,0.3);
    border-left: 3px solid var(--amber);
    padding: 0.5rem 1rem;
    border-radius: 1px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--brown);
  }

  /* ── SERVICES ── */
  .services { background: var(--cream); }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
  }

  .service-card {
    background: #fff;
    border: 1px solid rgba(230,126,34,0.2);
    border-top: 4px solid var(--rust);
    padding: 2rem 1.5rem;
    transition: all 0.25s;
    cursor: default;
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230,126,34,0.06), transparent);
    opacity: 0;
    transition: opacity 0.25s;
  }

  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(62,32,16,0.12);
    border-top-color: var(--amber);
  }

  .service-card:hover::before { opacity: 1; }

  .service-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    display: block;
  }

  .service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 0.6rem;
  }

  .service-card p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--light-text);
  }

  /* ── MENU TEASER ── */
  .menu-section {
    background: var(--dark-brown);
    color: var(--cream);
    position: relative;
    overflow: hidden;
  }

  .menu-section::before {
    content: 'MENU';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 18vw;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    pointer-events: none;
    white-space: nowrap;
  }

  .menu-section .section-title { color: var(--cream); }

  .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .menu-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(243,156,18,0.2);
    padding: 1.8rem;
    transition: all 0.25s;
    position: relative;
  }

  .menu-card:hover {
    background: rgba(230,126,34,0.12);
    border-color: var(--amber);
    transform: translateY(-4px);
  }

  .menu-card-emoji { font-size: 2rem; margin-bottom: 0.8rem; display: block; }

  .menu-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.4rem;
  }

  .menu-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(253,246,236,0.7);
  }

  .menu-cta {
    text-align: center;
    margin-top: 3rem;
  }

  /* ── WHY US ── */
  .why { background: var(--parchment); }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }

  .why-item {
    text-align: center;
    padding: 2rem 1rem;
  }

  .why-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 0.3rem;
  }

  .why-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 0.5rem;
  }

  .why-item p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--light-text);
  }

  /* ── TESTIMONIALS ── */
  .testimonials {
    background: linear-gradient(135deg, var(--rust) 0%, var(--brown) 100%);
    color: #fff;
  }

  .testimonials .section-title { color: #fff; }
  .testimonials .section-label { color: var(--gold); }

  .testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .testi-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 2rem;
    position: relative;
  }

  .testi-quote {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--gold);
    line-height: 0.5;
    margin-bottom: 1rem;
    display: block;
  }

  .testi-text {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    line-height: 1.8;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.2rem;
  }

  .testi-author {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--gold);
    text-transform: uppercase;
  }

  .stars { color: var(--gold); margin-bottom: 0.5rem; font-size: 0.9rem; }

  /* ── CONTACT ── */
  .contact { background: var(--cream); }

  .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: start;
  }

  .contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 1rem;
  }

  .contact-info p {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--light-text);
    font-style: italic;
    margin-bottom: 2rem;
  }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem 1rem;
    background: var(--parchment);
    border-left: 3px solid var(--amber);
  }

  .contact-item .ci-icon {
    font-size: 1.3rem;
    width: 36px;
    text-align: center;
    flex-shrink: 0;
  }

  .contact-item .ci-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 0.15rem;
  }

  .contact-item .ci-value {
    font-size: 0.9rem;
    color: var(--dark-brown);
    font-weight: 500;
    text-decoration: none;
  }

  .contact-item .ci-value:hover { color: var(--rust); }

  /* ── CONTACT FORM ── */
  .contact-form {
    background: var(--dark-brown);
    padding: 2.5rem;
  }

  .contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
  }

  .form-group {
    margin-bottom: 1.2rem;
  }

  .form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(253,246,236,0.7);
    margin-bottom: 0.4rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(243,156,18,0.25);
    color: var(--cream);
    padding: 0.75rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    border-radius: 1px;
    outline: none;
    transition: border-color 0.2s;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }

  .form-group select option { background: var(--dark-brown); }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--amber);
    background: rgba(255,255,255,0.1);
  }

  .form-group textarea { resize: vertical; min-height: 100px; }

  .form-submit {
    width: 100%;
    background: var(--rust);
    color: #fff;
    padding: 0.9rem;
    border: none;
    border-radius: 1px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 0.5rem;
  }

  .form-submit:hover {
    background: var(--amber);
    transform: translateY(-1px);
  }

  .form-success {
    display: none;
    text-align: center;
    padding: 1.5rem;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--dark-brown);
    color: var(--parchment);
    padding: 3rem 2rem 1.5rem;
    border-top: 3px solid var(--amber);
  }

  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .footer-brand h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
  }

  .footer-brand h2 span { color: var(--cream); font-style: italic; }

  .footer-brand p {
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(253,246,236,0.65);
    font-style: italic;
    margin-top: 0.8rem;
  }

  .footer-col h4 {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1rem;
  }

  .footer-col ul { list-style: none; }

  .footer-col ul li {
    margin-bottom: 0.6rem;
  }

  .footer-col ul li a {
    color: rgba(253,246,236,0.65);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
  }

  .footer-col ul li a:hover { color: var(--gold); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-bottom p {
    font-size: 0.78rem;
    color: rgba(253,246,236,0.4);
  }

  .social-links {
    display: flex;
    gap: 1rem;
  }

  .social-link {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(243,156,18,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--parchment);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s;
  }

  .social-link:hover {
    background: var(--amber);
    border-color: var(--amber);
    color: #fff;
  }

  /* ── FLOATING WHATSAPP ── */
  .whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 200;
    background: #25D366;
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37,211,102,0.5);
    transition: all 0.2s;
    animation: pulse 2s infinite;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 28px rgba(37,211,102,0.6);
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @keyframes pulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
    50%       { box-shadow: 0 6px 30px rgba(37,211,102,0.8); }
  }

  .fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── MOBILE ── */
  @media (max-width: 768px) {
    .nav-links { display: none; flex-direction: column; }
    .nav-links.open {
      display: flex;
      position: absolute;
      top: 64px;
      left: 0; right: 0;
      background: var(--dark-brown);
      padding: 1rem 2rem;
      border-bottom: 2px solid var(--amber);
      gap: 1rem;
    }
    .hamburger { display: flex; }

    .about-grid { grid-template-columns: 1fr; }
    .about-image img { height: 280px; }
    .about-image .badge-float { right: 0; bottom: 0; }

    .contact-wrapper { grid-template-columns: 1fr; }

    .footer-top { grid-template-columns: 1fr; gap: 2rem; }

    .strip { gap: 1.5rem; }

    nav { position: relative; }
  }
