/* =========================================================
   ขนมไทยบ้านอัยริน — Design Tokens
   Palette:
     --maroon-950 : #3B0A12  (deepest, footer/backdrops)
     --maroon-800 : #6E1423  (primary brand)
     --maroon-700 : #8A1B2E  (hover/lift)
     --gold-500   : #C9A24A  (primary gold)
     --gold-300   : #E8CD8A  (light gold / hover text)
     --ivory-100  : #FBF3E3  (page background)
     --ivory-200  : #F3E6CC  (panel background)
     --ink-900    : #2B1710  (body text, warm near-black)
     --jade-600   : #3F7A5C  (fresh/available accent, used sparingly)
   Type:
     Display : 'Trirong'   (Thai serif, ornate headlines)
     Script  : 'Charmonman'(Thai cursive, signature accents)
     Body/UI : 'Prompt'    (Thai+Latin sans, body & interface)
   ========================================================= */

:root {
  --maroon-950: #3B0A12;
  --maroon-800: #6E1423;
  --maroon-700: #8A1B2E;
  --maroon-600: #9E2436;
  --gold-500: #C9A24A;
  --gold-400: #D9B968;
  --gold-300: #E8CD8A;
  --gold-100: #F6E9C9;
  --ivory-100: #FBF3E3;
  --ivory-200: #F3E6CC;
  --ivory-300: #ECD9B4;
  --ink-900: #2B1710;
  --ink-700: #4A3327;
  --ink-500: #7A6555;
  --jade-600: #3F7A5C;
  --jade-100: #E4F0E9;

  --font-display: 'Trirong', 'Noto Serif Thai', serif;
  --font-script: 'Charmonman', cursive;
  --font-body: 'Prompt', 'Noto Sans Thai', sans-serif;

  --shadow-soft: 0 10px 30px -12px rgba(59, 10, 18, 0.35);
  --shadow-lift: 0 18px 40px -14px rgba(59, 10, 18, 0.45);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--ivory-100);
  color: var(--ink-900);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--maroon-700);
  display: inline-block;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 700;
  color: var(--maroon-800);
  margin: 0 0 12px;
}

.section-head p {
  color: var(--ink-700);
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0;
}

section { position: relative; padding: 88px 0; }
section.tight { padding: 64px 0; }

/* Kranok watermark pattern (signature motif, reused as background texture) */
.pattern-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%236E1423' stroke-width='1.5'%3E%3Cpath d='M60 10 C75 25 75 45 60 60 C45 45 45 25 60 10 Z'/%3E%3Cpath d='M10 60 C25 45 45 45 60 60 C45 75 25 75 10 60 Z'/%3E%3Cpath d='M110 60 C95 45 75 45 60 60 C75 75 95 75 110 60 Z'/%3E%3Cpath d='M60 110 C45 95 45 75 60 60 C75 75 75 95 60 110 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 140px 140px;
}

/* =========================
   GOLD ROUNDEL — signature emblem, reused across the page
   ========================= */
.roundel {
  --size: 96px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  background: radial-gradient(circle at 32% 28%, #fff7e2, var(--gold-300) 45%, var(--gold-500) 78%);
  box-shadow: inset 0 0 0 3px rgba(110,20,35,0.55), 0 8px 18px -8px rgba(59,10,18,0.5);
}
.roundel::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px dashed rgba(110,20,35,0.55);
}
.roundel svg { width: 46%; height: 46%; color: var(--maroon-800); }

/* =========================
   TOP NAV
   ========================= */
.topbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(251, 243, 227, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(110,20,35,0.12);
  transition: box-shadow .3s ease;
}
.topbar.scrolled { box-shadow: 0 6px 24px -14px rgba(59,10,18,0.4); }

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 52px; height: 52px;
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--gold-500), 0 6px 14px -6px rgba(59,10,18,.5);
}
.brand-name { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name .th { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--maroon-800); }
.brand-name .en { font-family: var(--font-script); font-size: 1rem; color: var(--gold-500); }

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-700);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--gold-500);
  transition: right .25s ease;
}
.nav-links a:hover { color: var(--maroon-800); }
.nav-links a:hover::after { right: 0; }

.nav-cta {
  display: flex; align-items: center; gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  padding: 13px 26px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--maroon-950);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--maroon-800);
  color: var(--maroon-800);
}
.btn-outline:hover { background: var(--maroon-800); color: var(--ivory-100); }
.btn-ghost-gold {
  background: transparent;
  border: 1.5px solid var(--gold-500);
  color: var(--maroon-800);
}
.btn-ghost-gold:hover { background: var(--gold-100); }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; padding: 6px;
}
.hamburger span { width: 24px; height: 2px; background: var(--maroon-800); border-radius: 2px; }

/* =========================
   HERO
   ========================= */
.hero {
  padding: 64px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: 1.15;
  color: var(--maroon-800);
  margin: 6px 0 18px;
  font-weight: 700;
}
.hero-copy h1 span { color: var(--gold-500); }
.hero-copy p.lead {
  font-size: 1.08rem;
  color: var(--ink-700);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.hero-badges { display: flex; gap: 22px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 10px; }
.hero-badge .roundel { --size: 52px; }
.hero-badge .roundel svg { width: 50%; height: 50%; }
.hero-badge span { font-size: 0.85rem; font-weight: 600; color: var(--ink-700); max-width: 110px; line-height: 1.35; }

/* Hero visual: layered circular composition echoing the round logo badge */
.hero-visual {
  position: relative;
  height: 480px;
  display: grid;
  place-items: center;
}
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(201,162,74,0.55);
}
.hero-ring.r1 { width: 440px; height: 440px; animation: spin 60s linear infinite; }
.hero-ring.r2 { width: 500px; height: 500px; border-color: rgba(110,20,35,0.18); animation: spin 90s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }

.hero-photo-main {
  width: 340px; height: 340px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 8px var(--ivory-100), 0 0 0 11px var(--gold-500), var(--shadow-lift);
  z-index: 3;
}
.hero-photo-main img { width: 100%; height: 100%; object-fit: cover; }

.hero-photo-float {
  position: absolute;
  width: 148px; height: 148px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 6px var(--ivory-100), 0 0 0 8px var(--gold-500), var(--shadow-soft);
  z-index: 4;
}
.hero-photo-float img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-float.f1 { top: 6px; right: 20px; animation: float1 7s ease-in-out infinite; }
.hero-photo-float.f2 { bottom: 12px; left: -6px; animation: float2 8s ease-in-out infinite; }
@keyframes float1 { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-14px);} }
@keyframes float2 { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(14px);} }

.hero-steam { position: absolute; z-index: 5; top: -10px; left: 50%; transform: translateX(-50%); width: 90px; height: 90px; pointer-events: none; }
.hero-steam .wisp { position: absolute; bottom: 0; width: 6px; height: 40px; background: linear-gradient(to top, rgba(255,255,255,0.85), rgba(255,255,255,0)); border-radius: 50%; filter: blur(2px); animation: steam 4s ease-in infinite; }
.hero-steam .wisp:nth-child(1){ left: 20px; animation-delay: 0s;}
.hero-steam .wisp:nth-child(2){ left: 42px; animation-delay: 1.2s;}
.hero-steam .wisp:nth-child(3){ left: 64px; animation-delay: 2.4s;}
@keyframes steam {
  0% { opacity: 0; transform: translateY(0) scaleX(1); }
  20% { opacity: .8; }
  100% { opacity: 0; transform: translateY(-70px) scaleX(1.6); }
}

/* Marquee ticker */
.ticker {
  background: linear-gradient(90deg, var(--maroon-800), var(--maroon-700), var(--maroon-800));
  color: var(--gold-100);
  overflow: hidden;
  padding: 13px 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 40px;
  animation: ticker 26s linear infinite;
}
.ticker-track span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  display: inline-flex; align-items: center; gap: 10px;
}
.ticker-track span::before { content: '✦'; color: var(--gold-500); }
@keyframes ticker { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* =========================
   ABOUT
   ========================= */
.about {
  background: var(--ivory-200);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.about-img-wrap img { width: 100%; height: 460px; object-fit: cover; }
.about-halal-tag {
  position: absolute;
  bottom: 18px; left: 18px;
  background: rgba(59,10,18,0.88);
  color: var(--gold-300);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  backdrop-filter: blur(4px);
}
.about-halal-tag::before { content: 'ﺣﻼﻝ'; font-size: 1.05rem; color: var(--gold-500); }

.about-copy .eyebrow { display: block; }
.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  color: var(--maroon-800);
  margin: 0 0 18px;
  font-weight: 700;
}
.about-copy p { color: var(--ink-700); line-height: 1.85; margin-bottom: 16px; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.stat-card {
  text-align: center;
  background: var(--ivory-100);
  border-radius: var(--radius-md);
  padding: 22px 10px;
  box-shadow: var(--shadow-soft);
}
.stat-card .roundel { --size: 64px; margin: 0 auto 10px; }
.stat-card .roundel svg { width: 48%; height: 48%; }
.stat-card strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--maroon-800); }
.stat-card span { font-size: 0.82rem; color: var(--ink-500); }

/* =========================
   MENU
   ========================= */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.menu-tab {
  background: var(--ivory-200);
  border: 1.5px solid transparent;
  color: var(--ink-700);
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all .2s ease;
}
.menu-tab:hover { border-color: var(--gold-500); }
.menu-tab.active {
  background: var(--maroon-800);
  color: var(--gold-100);
  box-shadow: var(--shadow-soft);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.menu-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(24px);
}
.menu-card.reveal { opacity: 1; transform: translateY(0); transition: opacity .6s ease, transform .6s ease; }
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.menu-card .thumb { position: relative; height: 210px; overflow: hidden; }
.menu-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.menu-card:hover .thumb img { transform: scale(1.08); }
.menu-card .price-tag {
  position: absolute; top: 12px; right: 12px;
  background: var(--gold-500); color: var(--maroon-950);
  font-weight: 700; font-size: 0.8rem;
  padding: 7px 13px; border-radius: 999px;
  box-shadow: 0 6px 12px -4px rgba(0,0,0,0.35);
}
.menu-card .cat-chip {
  position: absolute; top: 12px; left: 12px;
  background: rgba(59,10,18,0.75); color: var(--gold-200, var(--gold-100));
  font-size: 0.7rem; font-weight: 600;
  padding: 5px 11px; border-radius: 999px;
}
.menu-card .body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.menu-card h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--maroon-800); margin: 0 0 8px; font-weight: 700; }
.menu-card p { font-size: 0.86rem; color: var(--ink-500); line-height: 1.6; margin: 0 0 16px; flex: 1; }
.menu-card .card-foot { display: flex; align-items: center; justify-content: space-between; }
.menu-card .order-link { font-size: 0.82rem; font-weight: 700; color: var(--maroon-800); display: flex; align-items: center; gap: 5px; cursor: pointer; }
.menu-tab { cursor: pointer; }
.menu-card .order-link svg { width: 14px; height: 14px; transition: transform .2s ease; }
.menu-card:hover .order-link svg { transform: translateX(3px); }

/* =========================
   SERVICES
   ========================= */
.services { background: var(--maroon-950); color: var(--ivory-200); }
.services .section-head h2 { color: var(--gold-300); }
.services .section-head p { color: rgba(243,230,204,0.75); }
.services .eyebrow { color: var(--gold-400); }

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.service-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6); }
.service-img img { width: 100%; height: 420px; object-fit: cover; }

.service-list { display: flex; flex-direction: column; gap: 22px; }
.service-item { display: flex; gap: 18px; align-items: flex-start; }
.service-item .roundel { --size: 58px; flex-shrink: 0; }
.service-item .roundel svg { width: 48%; height: 48%; }
.service-item h4 { margin: 0 0 6px; font-family: var(--font-display); font-size: 1.15rem; color: var(--gold-300); }
.service-item p { margin: 0; color: rgba(243,230,204,0.72); font-size: 0.92rem; line-height: 1.7; }

.location-note {
  margin-top: 8px;
  display: flex;
  gap: 14px;
  align-items: center;
  background: rgba(201,162,74,0.1);
  border: 1px solid rgba(201,162,74,0.3);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}
.location-note svg { width: 26px; height: 26px; color: var(--gold-400); flex-shrink: 0; }
.location-note span { font-size: 0.9rem; color: var(--gold-100); line-height: 1.6; }

/* =========================
   BOOKING
   ========================= */
.booking { background: var(--ivory-100); }
.booking-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.booking-side {
  background: linear-gradient(160deg, var(--maroon-800), var(--maroon-950));
  color: var(--gold-100);
  padding: 48px 38px;
  position: relative;
  overflow: hidden;
}
.booking-side::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23C9A24A' stroke-width='1.2'%3E%3Cpath d='M60 10 C75 25 75 45 60 60 C45 45 45 25 60 10 Z'/%3E%3Cpath d='M10 60 C25 45 45 45 60 60 C45 75 25 75 10 60 Z'/%3E%3Cpath d='M110 60 C95 45 75 45 60 60 C75 75 95 75 110 60 Z'/%3E%3Cpath d='M60 110 C45 95 45 75 60 60 C75 75 75 95 60 110 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 130px 130px;
  opacity: 0.08;
}
.booking-side > * { position: relative; z-index: 1; }
.booking-side .eyebrow { color: var(--gold-400); }
.booking-side h2 { font-family: var(--font-display); font-size: 1.9rem; margin: 4px 0 16px; }
.booking-side p { color: rgba(243,230,204,0.78); line-height: 1.8; margin-bottom: 28px; font-size: 0.94rem; }
.booking-contact { display: flex; flex-direction: column; gap: 16px; }
.booking-contact a, .booking-contact .contact-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; font-weight: 600;
  color: var(--gold-100);
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  transition: background .2s ease;
}
.booking-contact a:hover { background: rgba(255,255,255,0.13); }
.booking-contact svg { width: 20px; height: 20px; color: var(--gold-400); flex-shrink: 0; }

.booking-form { padding: 48px 44px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--ink-700); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1.5px solid var(--ivory-300);
  background: var(--ivory-100);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--ink-900);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(201,162,74,0.18);
}
.field textarea { resize: vertical; min-height: 90px; }

.form-note { font-size: 0.78rem; color: var(--ink-500); margin-top: 10px; line-height: 1.6; }

.confirm-panel {
  display: none;
  background: var(--jade-100);
  border: 1px solid rgba(63,122,92,0.35);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-top: 6px;
}
.confirm-panel.show { display: block; animation: fadein .4s ease; }
@keyframes fadein { from { opacity: 0; transform: translateY(-6px);} to { opacity:1; transform: translateY(0);} }
.confirm-panel h4 { margin: 0 0 10px; color: var(--jade-600); font-family: var(--font-display); font-size: 1.15rem; }
.confirm-panel pre {
  white-space: pre-wrap;
  font-family: var(--font-body);
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.85rem;
  color: var(--ink-900);
  line-height: 1.7;
  margin: 0 0 14px;
}
.confirm-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* =========================
   FAQ / WHY US
   ========================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.why-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--ivory-200);
  border-radius: var(--radius-md);
  transition: transform .25s ease, box-shadow .25s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.why-card .roundel { --size: 74px; margin: 0 auto 16px; }
.why-card .roundel svg { width: 46%; height: 46%; }
.why-card h4 { font-family: var(--font-display); font-size: 1.08rem; color: var(--maroon-800); margin: 0 0 8px; }
.why-card p { font-size: 0.85rem; color: var(--ink-500); line-height: 1.6; margin: 0; }

/* =========================
   MAP
   ========================= */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  height: 380px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: saturate(0.9); }

/* =========================
   FOOTER
   ========================= */
footer {
  background: var(--maroon-950);
  color: rgba(243,230,204,0.65);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(201,162,74,0.2);
}
.footer-brand { display: flex; gap: 14px; align-items: center; margin-bottom: 16px; }
.footer-brand img { width: 54px; height: 54px; border-radius: 50%; box-shadow: 0 0 0 3px var(--gold-500); }
.footer-brand .th { font-family: var(--font-display); color: var(--gold-300); font-size: 1.2rem; font-weight: 700; }
.footer-brand .en { font-family: var(--font-script); color: var(--gold-500); font-size: 1rem; }
.footer-col h5 { color: var(--gold-300); font-family: var(--font-display); font-size: 1rem; margin: 0 0 16px; }
.footer-col ul li { margin-bottom: 11px; font-size: 0.88rem; }
.footer-col ul li a:hover { color: var(--gold-300); }
.footer-col p.desc { font-size: 0.87rem; line-height: 1.75; max-width: 320px; }
.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
}
.footer-bottom .halal-mark { color: var(--gold-400); font-weight: 600; }

/* =========================
   FLOATING ACTIONS
   ========================= */
.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fab {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: var(--shadow-lift);
  color: var(--ivory-100);
  transition: transform .2s ease;
}
.fab:hover { transform: scale(1.08); }
.fab.call { background: var(--jade-600); }
.fab.book { background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); color: var(--maroon-950); }
.fab svg { width: 24px; height: 24px; }

.back-top {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 300;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--maroon-800);
  color: var(--gold-300);
  display: grid; place-items: center;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.back-top.show { opacity: 1; pointer-events: auto; }
.back-top svg { width: 20px; height: 20px; }

/* =========================
   REVEAL ANIMATION (generic)
   ========================= */
.reveal-up { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal-up.in { opacity: 1; transform: translateY(0); }

/* toast */
.toast {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(-14px);
  background: var(--maroon-800);
  color: var(--gold-100);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-lift);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
  z-index: 500;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 380px; margin-top: 20px;}
  .about-grid, .service-grid { grid-template-columns: 1fr; }
  .service-img img { height: 320px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-panel { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 720px) {
  .nav-links { position: fixed; top: 78px; left: 0; right: 0; background: var(--ivory-100); flex-direction: column; padding: 20px 24px; gap: 4px; box-shadow: var(--shadow-soft); transform: translateY(-130%); transition: transform .3s ease; }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { width: 100%; padding: 12px 0; border-bottom: 1px solid rgba(110,20,35,0.08); }
  .hamburger { display: flex; }
  .nav-cta .btn-outline { display: none; }
  .hero-badges { gap: 14px; }
  .hero-badge span { max-width: 90px; }
  .form-row { grid-template-columns: 1fr; }
  .booking-form { padding: 32px 22px; }
  .booking-side { padding: 36px 24px; }
  .menu-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(3,1fr); gap: 10px; }
  .stat-card { padding: 14px 6px; }
  .stat-card .roundel { --size: 48px; }
  section { padding: 60px 0; }
}
