:root{
    --maroon-900:#1B5E3A;
    --maroon-700:#2F7D4A;
    --maroon-600:#3D9457;
    --gold-500:#F5A72E;
    --gold-300:#FFCE6B;
    --gold-100:#FFEFD1;
    --cream-50:#FFF8EC;
    --cream-100:#FCEBD3;
    --paper:#FFFFFF;
    --ink-900:#241722;
    --ink-700:#4A3F4A;
    --sage-600:#2E9E52;
    --sage-100:#DFF3E4;
    --shadow-soft: 0 20px 45px -25px rgba(27,94,58,0.5);
    --radius-lg: 28px;
    --radius-md: 16px;
  }

  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    background:var(--cream-50);
    color:var(--ink-900);
    font-family:'Karla', Arial, sans-serif;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  h1,h2,h3,.display{
    font-family:'Rozha One', Georgia, serif;
    font-weight:400;
    color:var(--maroon-900);
    margin:0;
  }
  .script{ font-family:'Kalam', cursive; }
  a{color:inherit;}
  img,svg{display:block;max-width:100%;}
  .wrap{
    max-width:1180px;
    margin:0 auto;
    padding:0 28px;
  }
  .eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:12.5px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:var(--maroon-700);
    font-weight:700;
  }
  .eyebrow::before{
    content:"";
    width:22px;height:2px;background:var(--gold-500);display:inline-block;
  }
  .btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 26px;
    border-radius:999px;
    font-weight:700;
    font-size:15px;
    text-decoration:none;
    border:2px solid transparent;
    cursor:pointer;
    transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
    font-family:'Karla',sans-serif;
  }
  .btn:hover{ transform:translateY(-2px); }
  .btn-primary{
    background:var(--maroon-900);
    color:var(--gold-100);
    box-shadow:var(--shadow-soft);
  }
  .btn-primary:hover{ background:var(--maroon-700); }
  .btn-whatsapp{
    background:#25D366;
    color:#FFFFFF;
  }
  .btn-ghost{
    background:transparent;
    border-color:var(--maroon-900);
    color:var(--maroon-900);
  }
  .btn-ghost:hover{ background:var(--maroon-900); color:var(--gold-100); }
  .btn svg{width:18px;height:18px;flex-shrink:0;}

  /* ---------- NAV ---------- */
  header{
    position:sticky; top:0; z-index:50;
    background:rgba(251,243,231,0.92);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(27,94,58,0.1);
  }
  .nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 0;
  }
  .brand{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
  }
  .brand-logo{
    height:52px;
    width:auto;
    max-width:none;
  }
  .links{
    display:flex;
    align-items:center;
    gap:6px;
    list-style:none;
    margin:0;padding:0;
  }
  .links li{ list-style:none; }
  .links a{
    display:inline-block;
    text-decoration:none;
    font-weight:700;
    font-size:14.5px;
    color:var(--ink-700);
    padding:9px 16px;
    border-radius:999px;
    transition:background .18s ease, color .18s ease;
  }
  .links a:hover{
    background:var(--cream-100);
    color:var(--maroon-700);
  }
  .nav-actions{ display:flex; align-items:center; gap:12px; }
  .nav-actions .btn{ padding:10px 18px; font-size:13.5px; }

  .menu-toggle{
    display:none;
    width:44px;height:44px;
    border-radius:12px;
    border:1px solid rgba(27,94,58,0.18);
    background:var(--paper);
    align-items:center;
    justify-content:center;
    cursor:pointer;
    flex-shrink:0;
  }
  .menu-toggle svg{ width:20px;height:20px; stroke:var(--maroon-900); }
  .mobile-links{
    display:none;
    flex-direction:column;
    gap:4px;
    padding:10px 0 18px;
    border-top:1px solid rgba(27,94,58,0.1);
    margin-top:14px;
  }
  .mobile-links.open{ display:flex; }
  .mobile-links a{
    text-decoration:none;
    font-weight:700;
    font-size:15px;
    color:var(--ink-900);
    padding:12px 6px;
    border-bottom:1px solid rgba(27,94,58,0.08);
  }
  .mobile-actions{
    display:none;
    gap:10px;
    margin-top:12px;
  }
  .mobile-links.open ~ .mobile-actions,
  .header-mobile.open .mobile-actions{ display:flex; }

  /* ---------- HERO ---------- */
  .hero{
    position:relative;
    padding:76px 0 90px;
    background:
      radial-gradient(circle at 85% 8%, rgba(217,164,65,0.16), transparent 55%),
      radial-gradient(circle at 8% 90%, rgba(107,30,40,0.10), transparent 45%);
    overflow:hidden;
  }
  .hero-grid{
    display:grid;
    grid-template-columns:1.05fr 0.85fr;
    gap:56px;
    align-items:center;
  }
  .hero h1{
    font-size:clamp(38px,5vw,58px);
    line-height:1.08;
    margin:18px 0 22px;
  }
  .hero h1 em{
    font-style:normal;
    color:var(--maroon-700);
    position:relative;
    white-space:nowrap;
  }
  .hero-sub{
    font-size:17.5px;
    line-height:1.7;
    color:var(--ink-700);
    max-width:520px;
    margin-bottom:30px;
  }
  .hero-actions{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom:34px; }
  .badges{ display:flex; flex-wrap:wrap; gap:12px; }
  .badge{
    display:inline-flex; align-items:center; gap:8px;
    background:var(--paper);
    border:1px solid rgba(27,94,58,0.12);
    padding:9px 16px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
    color:var(--maroon-800,var(--maroon-900));
    box-shadow:0 8px 20px -14px rgba(0,0,0,0.3);
  }
  .veg-dot{
    width:15px;height:15px;border:2px solid var(--sage-600);
    display:inline-flex; align-items:center; justify-content:center; border-radius:3px;
  }
  .veg-dot::after{content:"";width:7px;height:7px;border-radius:50%;background:var(--sage-600);}

  /* Hero visual — organic blob photo composition */
  .hero-visual{
    position:relative;
    width:100%;
    aspect-ratio:1/1;
    max-width:440px;
    margin:0 auto;
  }
  .blob-bg{
    position:absolute;
    display:block;
    border-radius:63% 37% 54% 46% / 43% 47% 53% 57%;
  }
  .blob-bg--gold{
    inset:-4%;
    background:linear-gradient(135deg, var(--gold-300), var(--gold-500));
    opacity:0.55;
    transform:rotate(-6deg);
    z-index:0;
  }
  .blob-bg--ring{
    inset:6%;
    border:2px dashed rgba(27,94,58,0.28);
    background:transparent;
    transform:rotate(4deg);
    z-index:1;
  }
  .hero-photo-frame{
    position:absolute;
    inset:9%;
    border-radius:63% 37% 54% 46% / 43% 47% 53% 57%;
    overflow:hidden;
    box-shadow:0 24px 50px -18px rgba(36,23,34,0.5);
    border:6px solid var(--paper);
    z-index:2;
  }
  .hero-photo-frame img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
  }
  .floating-badge{
    position:absolute;
    display:flex;
    align-items:center;
    gap:8px;
    background:var(--paper);
    padding:12px 18px;
    border-radius:18px;
    box-shadow:0 16px 32px -14px rgba(36,23,34,0.4);
    font-weight:800;
    font-size:13px;
    color:var(--ink-900);
    z-index:3;
  }
  .floating-badge--years{
    top:2%;
    right:-6%;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:12px 20px;
  }
  .floating-badge--years .fb-number{
    font-family:'Rozha One',serif;
    font-size:26px;
    line-height:1.1;
    color:var(--maroon-700);
  }
  .floating-badge--years .fb-label{
    font-size:10.5px;
    letter-spacing:0.4px;
    color:var(--ink-700);
    font-weight:700;
  }
  .floating-badge--veg{
    bottom:4%;
    left:-8%;
  }

  /* ---------- SECTION HEADERS ---------- */
  section{ padding:88px 0; position:relative; }
  .section-head{ max-width:640px; margin-bottom:48px; }
  .section-head h2{ font-size:clamp(30px,3.6vw,42px); margin-top:14px; line-height:1.15; }
  .section-head p{ color:var(--ink-700); font-size:16.5px; line-height:1.7; margin-top:14px; }
  .center{ text-align:center; margin-left:auto; margin-right:auto; }

  /* ---------- ABOUT ---------- */
  .about{ background:var(--paper); }
  .about-grid{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:60px;
    align-items:center;
  }
  .mr-mark{
    background:var(--maroon-900);
    border-radius:var(--radius-lg);
    padding:46px 36px;
    color:var(--cream-50);
    position:relative;
    overflow:hidden;
    box-shadow:var(--shadow-soft);
  }
  .mr-mark::before{
    content:"";
    position:absolute; inset:10px;
    border:1px solid rgba(217,164,65,0.35);
    border-radius:20px;
    pointer-events:none;
  }
  .mr-equation{
    display:flex; align-items:center; justify-content:center; gap:16px;
    font-family:'Rozha One',serif;
    font-size:34px;
    color:var(--gold-300);
    margin-bottom:10px;
  }
  .mr-equation .name{ font-size:18px; font-family:'Karla',sans-serif; font-weight:700; letter-spacing:1px; color:var(--gold-100); text-align:center;}
  .mr-equation .sub{ display:block; font-size:11px; letter-spacing:2px; color:var(--cream-100); margin-top:4px; font-weight:600;}
  .mr-quote{
    font-family:'Kalam',cursive;
    font-size:18px;
    line-height:1.7;
    text-align:center;
    color:var(--gold-100);
    margin-top:26px;
    padding-top:22px;
    border-top:1px dashed rgba(217,164,65,0.4);
  }
  .about-copy p{ font-size:16.5px; line-height:1.85; color:var(--ink-700); margin:0 0 18px; }
  .about-copy strong{ color:var(--maroon-900); }
  .stat-row{ display:flex; gap:34px; margin-top:30px; flex-wrap:wrap;}
  .stat{ }
  .stat b{ display:block; font-family:'Rozha One',serif; font-size:34px; color:var(--maroon-700); }
  .stat span{ font-size:13px; color:var(--ink-700); font-weight:600; }

  /* ---------- SERVICES ---------- */
  .services{ background:var(--cream-50); }
  .service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
  }
  .service-card{
    background:var(--paper);
    border-radius:var(--radius-md);
    padding:34px 28px;
    border:1px solid rgba(27,94,58,0.08);
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .service-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-soft); }
  .service-icon{
    width:54px;height:54px;
    border-radius:14px;
    background:var(--maroon-900);
    display:flex;align-items:center;justify-content:center;
    margin-bottom:20px;
  }
  .service-icon svg{ width:28px; height:28px; stroke:var(--gold-300); }
  .service-card h3{ font-size:21px; margin-bottom:10px; }
  .service-card p{ font-size:15px; line-height:1.7; color:var(--ink-700); margin:0; }
  .service-tag{
    display:inline-block; margin-top:16px;
    font-size:11.5px; font-weight:700; letter-spacing:1.5px;
    color:var(--maroon-700); text-transform:uppercase;
    background:var(--gold-100); padding:5px 12px; border-radius:999px;
  }

  /* ---------- DIET STRIP ---------- */
  .diet-strip{
    background:var(--sage-100);
    border-top:1px solid rgba(79,122,69,0.18);
    border-bottom:1px solid rgba(79,122,69,0.18);
    padding:40px 0;
  }
  .diet-inner{
    display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap;
  }
  .diet-item{ display:flex; align-items:center; gap:14px; }
  .diet-item .icon-box{
    width:46px;height:46px;border-radius:12px;background:var(--paper);
    display:flex;align-items:center;justify-content:center; flex-shrink:0;
    box-shadow:0 8px 18px -12px rgba(0,0,0,0.25);
  }
  .diet-item h4{ margin:0 0 3px; font-family:'Karla',sans-serif; font-weight:800; font-size:15.5px; color:var(--ink-900);}
  .diet-item p{ margin:0; font-size:13.5px; color:var(--ink-700); max-width:280px; }

  /* ---------- MENU ---------- */
  .menu-section{ background:var(--paper); }
  .menu-panel{
    background:var(--maroon-900);
    border-radius:var(--radius-lg);
    overflow:hidden;
    box-shadow:var(--shadow-soft);
  }
  .menu-tab-hint{
    text-align:center;
    font-size:12.5px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
    color:var(--gold-300);
    opacity:0.85;
    padding:18px 20px 0;
  }
  .menu-tabs{
    background:transparent;
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
    padding:14px 24px 22px;
  }
  .menu-tab{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:12px 24px;
    cursor:pointer;
    border:2px solid rgba(255,206,107,0.35);
    border-radius:999px;
    background:rgba(255,255,255,0.04);
    color:var(--gold-100);
    font-family:'Karla',sans-serif;
    font-weight:800;
    font-size:14px;
    letter-spacing:0.4px;
    transition:all .18s ease;
  }
  .menu-tab .tab-dot{
    width:7px;height:7px;border-radius:50%;
    background:var(--gold-300);
    opacity:0.6;
    transition:all .18s ease;
  }
  .menu-tab:hover{
    border-color:var(--gold-300);
    transform:translateY(-2px);
    background:rgba(255,255,255,0.08);
  }
  .menu-tab.active{
    background:var(--gold-300);
    border-color:var(--gold-300);
    color:var(--maroon-900);
    box-shadow:0 10px 24px -10px rgba(0,0,0,0.5);
  }
  .menu-tab.active .tab-dot{ background:var(--maroon-900); opacity:1; }

  .menu-content{ padding:32px 46px 42px; color:var(--cream-50); border-top:1px solid rgba(255,255,255,0.08); }
  .menu-cat-title{
    display:flex; align-items:baseline; gap:14px; margin-bottom:8px;
    flex-wrap:wrap;
  }
  .menu-cat-title h3{ color:var(--gold-300); font-size:28px; }
  .menu-cat-title span{ font-size:13px; color:var(--cream-100); opacity:0.75; font-weight:600;}
  .menu-note{ font-size:14px; color:var(--cream-100); opacity:0.85; margin-bottom:26px; max-width:560px; line-height:1.6;}
  .menu-items{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px 26px;
    list-style:none;
    margin:0;padding:0;
  }
  .menu-items li{
    padding:11px 0;
    border-bottom:1px dashed rgba(251,243,231,0.18);
    font-size:15px;
    display:flex;
    align-items:baseline;
    gap:10px;
  }
  .menu-items li::before{
    content:"";
    width:5px;height:5px;border-radius:50%;
    background:var(--gold-500);
    flex-shrink:0;
    transform:translateY(-2px);
  }
  .menu-panel-hide{ display:none; }
  .menu-specials{
    margin-top:56px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
  }
  .special-card{
    background:var(--cream-50);
    border:1px solid rgba(27,94,58,0.1);
    border-radius:var(--radius-md);
    padding:24px 22px;
  }
  .special-card h4{ font-family:'Rozha One',serif; font-size:19px; color:var(--maroon-900); margin:0 0 8px;}
  .special-card p{ margin:0; font-size:14px; line-height:1.6; color:var(--ink-700); }
  .prepaid-note{
    text-align:center; margin-top:34px;
    font-weight:800; letter-spacing:1.5px; font-size:13px;
    color:var(--maroon-700); text-transform:uppercase;
  }

  /* ---------- TESTIMONIAL ---------- */
  .testimonial{
    background:var(--cream-50);
    text-align:center;
  }
  .testimonial blockquote{
    font-family:'Kalam',cursive;
    font-size:clamp(22px,2.6vw,30px);
    line-height:1.6;
    color:var(--maroon-900);
    max-width:760px;
    margin:0 auto 18px;
  }
  .testimonial cite{ font-style:normal; font-weight:700; font-size:14px; color:var(--ink-700); }

  /* ---------- CONTACT ---------- */
  .contact{ background:var(--maroon-900); color:var(--cream-50); position:relative; overflow:hidden; }
  .contact::before{
    content:"";
    position:absolute; right:-120px; top:-120px; width:340px; height:340px;
    border:1px solid rgba(217,164,65,0.18); border-radius:50%;
  }
  .contact::after{
    content:"";
    position:absolute; left:-100px; bottom:-140px; width:280px; height:280px;
    border:1px solid rgba(217,164,65,0.14); border-radius:50%;
  }
  .contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    position:relative; z-index:1;
  }
  .contact h2{ color:var(--gold-100); }
  .contact .section-head p{ color:var(--cream-100); opacity:0.85; }
  .contact-list{ list-style:none; margin:34px 0 0; padding:0; display:flex; flex-direction:column; gap:22px; }
  .contact-list li{ display:flex; gap:16px; align-items:flex-start; }
  .c-icon{
    width:44px;height:44px;border-radius:12px;
    background:rgba(217,164,65,0.14);
    border:1px solid rgba(217,164,65,0.3);
    display:flex;align-items:center;justify-content:center;flex-shrink:0;
  }
  .c-icon svg{ width:20px;height:20px; stroke:var(--gold-300); }
  .contact-list h4{ margin:0 0 4px; font-size:15px; letter-spacing:.5px; color:var(--gold-200,var(--gold-300)); font-weight:700;}
  .contact-list p, .contact-list a{ margin:0; font-size:15.5px; color:var(--cream-50); text-decoration:none; line-height:1.6;}
  .contact-list a:hover{ text-decoration:underline; }
  .contact-actions{ display:flex; gap:14px; margin-top:32px; flex-wrap:wrap; }
  .contact-card{
    background:rgba(251,243,231,0.06);
    border:1px solid rgba(217,164,65,0.22);
    border-radius:var(--radius-lg);
    padding:34px;
  }
  .contact-card h3{ color:var(--gold-200,var(--gold-300)); font-size:22px; margin-bottom:16px; }
  .hours-row{ display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px dashed rgba(251,243,231,0.14); font-size:14.5px;}
  .hours-row:last-child{ border-bottom:none; }
  .hours-row span:first-child{ color:var(--cream-100); opacity:.8; }
  .map-link{
    margin-top:22px; display:flex; align-items:center; justify-content:center; gap:8px;
    padding:14px; border-radius:12px;
    border:1px dashed rgba(217,164,65,0.4);
    color:var(--gold-200,var(--gold-300)); text-decoration:none; font-weight:700; font-size:14px;
  }
  .map-link:hover{ background:rgba(217,164,65,0.08); }

  /* ---------- FOOTER ---------- */
  footer{
    background:var(--ink-900);
    color:var(--cream-100);
    padding:36px 0;
    font-size:13.5px;
  }
  .footer-inner{
    display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;
  }
  .footer-inner a{ color:var(--gold-300); text-decoration:none; font-weight:700; }
  .footer-inner a:hover{ text-decoration:underline; }
  .footer-credit{ opacity:0.85; line-height:1.7; }

  /* ---------- WHATSAPP FLOAT ---------- */
  .wa-float{
    position:fixed; right:22px; bottom:22px; z-index:60;
    width:60px;height:60px;border-radius:50%;
    background:#25D366;
    display:flex;align-items:center;justify-content:center;
    box-shadow:0 14px 30px -10px rgba(37,211,102,0.6);
    text-decoration:none;
    animation:pulse 2.4s infinite;
  }
  .wa-float svg{ width:30px;height:30px; }
  @keyframes pulse{
    0%{ box-shadow:0 0 0 0 rgba(37,211,102,0.45);}
    70%{ box-shadow:0 0 0 16px rgba(37,211,102,0);}
    100%{ box-shadow:0 0 0 0 rgba(37,211,102,0);}
  }

  @media (prefers-reduced-motion: reduce){
    *{ animation:none !important; transition:none !important; }
    html{ scroll-behavior:auto; }
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width:980px){
    .hero-grid{ grid-template-columns:1fr; }
    .hero-visual{ order:-1; max-width:320px; }
    .floating-badge--years{ right:0; }
    .floating-badge--veg{ left:0; }
    .about-grid{ grid-template-columns:1fr; }
    .service-grid{ grid-template-columns:1fr 1fr; }
    .menu-specials{ grid-template-columns:1fr; }
    .contact-grid{ grid-template-columns:1fr; }
    .links{ display:none; }
    .menu-toggle{ display:flex; }
    .nav-actions .btn-ghost{ display:none; }
  }
  @media (max-width:640px){
    .brand-logo{ height:38px; }
    .hero-visual{ max-width:260px; }
    .floating-badge{ padding:9px 13px; font-size:11.5px; border-radius:14px; }
    .floating-badge--years .fb-number{ font-size:20px; }
    .service-grid{ grid-template-columns:1fr; }
    .menu-content{ padding:24px 20px 32px; }
    .menu-items{ grid-template-columns:1fr; }
    .diet-inner{ flex-direction:column; align-items:flex-start; }
    .nav-actions .btn span.btn-label{ display:none; }
    .menu-tabs{ padding:12px 14px 18px; gap:8px; }
    .menu-tab{ padding:10px 16px; font-size:13px; }
  }
