/* ==========================================================================
   Masala Station — Design Tokens
   ========================================================================== */
:root {
  --olive: #788C45;
  --olive-dark: #5f7136;
  --orange: #D98932;
  --orange-dark: #bf7423;
  --brown: #5C3A21;
  --brown-dark: #462c19;
  --cream: #F8F4EA;
  --cream-soft: #F1EADA;
  --white: #FFFFFF;
  --ink: #2B2420;
  --ink-soft: #5c5248;

  --font-head: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-body: "Poppins", "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1240px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --shadow-soft: 0 18px 40px -18px rgba(92, 58, 33, 0.28);
  --shadow-card: 0 10px 30px -12px rgba(43, 36, 32, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================================
   Reset
   ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--brown-dark);
  line-height: 1.15;
}
input, textarea { font-family: inherit; }

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

section { position: relative; }

/* Section framing */
.section-pad { padding: 120px 0; }
.section-pad--tight { padding: 90px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--orange);
}

.section-title {
  font-size: clamp(32px, 4vw, 46px);
  margin-bottom: 18px;
}
.section-title em {
  font-style: italic;
  color: var(--olive);
}
.section-lede {
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 16.5px;
}
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-head .section-lede { margin: 0 auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 14px 28px -12px rgba(217, 137, 50, 0.55);
}
.btn--primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 18px 32px -12px rgba(217, 137, 50, 0.6); }
.btn--outline {
  background: transparent;
  border-color: var(--brown);
  color: var(--brown);
}
.btn--outline:hover { background: var(--brown); color: var(--cream); transform: translateY(-2px); }
.btn--olive {
  background: var(--olive);
  color: var(--white);
  box-shadow: 0 14px 28px -12px rgba(120, 140, 69, 0.5);
}
.btn--olive:hover { background: var(--olive-dark); transform: translateY(-2px); }
.btn--ghost-cream {
  background: transparent;
  border-color: rgba(248, 244, 234, 0.5);
  color: var(--cream);
}
.btn--ghost-cream:hover { background: var(--cream); color: var(--brown-dark); }
.btn--sm { padding: 12px 24px; font-size: 13.5px; }

/* ==========================================================================
   Decorative spice illustrations (hand-drawn line art, low-opacity)
   ========================================================================== */
.deco { position: absolute; pointer-events: none; z-index: 0; opacity: 0.16; }
.deco svg { width: 100%; height: 100%; display: block; }
.deco--olive { color: var(--olive); }
.deco--orange { color: var(--orange); }
.deco--brown { color: var(--brown); }

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.55s; }
.reveal-stagger > *:nth-child(7) { transition-delay: 0.65s; }
.reveal-stagger > *:nth-child(8) { transition-delay: 0.75s; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: var(--strip-height, 0px); left: 0; right: 0;
  z-index: 500;
  padding: 22px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease), top 0.3s var(--ease);
}
/* When the SIPO status strip is present, offset page content below it. */
body.has-status-strip { padding-top: var(--strip-height, 0px); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header.is-scrolled {
  padding: 12px 0;
  background: rgba(248, 244, 234, 0.92);
  backdrop-filter: none;
  box-shadow: 0 8px 24px -12px rgba(43, 36, 32, 0.18);
  border-bottom: 1px solid rgba(92, 58, 33, 0.08);
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 54px; width: auto; transition: height 0.4s var(--ease); }
.site-header.is-scrolled .brand img { height: 44px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--brown-dark);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

/* Order Online CTA in the nav — keep it a proper button, not a text link */
.nav-links a.nav-cta {
  color: var(--white);
  padding: 12px 24px;
  margin-left: 8px;
  flex-shrink: 0;
}
.nav-links a.nav-cta::after { display: none; }
.nav-links a.nav-cta:hover { color: var(--white); }

.nav-right { display: flex; align-items: center; gap: 28px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--brown-dark); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: 168px 0 100px;
  background:
    radial-gradient(ellipse at 85% 8%, rgba(217, 137, 50, 0.10), transparent 55%),
    radial-gradient(ellipse at 8% 92%, rgba(120, 140, 69, 0.10), transparent 55%),
    var(--cream);
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 64px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(40px, 5vw, 62px);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-copy h1 em { font-style: italic; color: var(--olive); }
.hero-copy p {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 38px;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 46px; }

.hero-trust { display: flex; align-items: center; gap: 22px; }
.hero-trust .stars { color: var(--orange); font-size: 15px; letter-spacing: 2px; }
.hero-trust .trust-text { font-size: 13.5px; color: var(--ink-soft); }
.hero-trust .trust-text strong { color: var(--brown-dark); }

.hero-visual { position: relative; height: 560px; }
.hero-collage { position: relative; width: 100%; height: 100%; }
.collage-item {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 6px solid var(--white);
}
.collage-item img { width: 100%; height: 100%; object-fit: cover; }
.collage-item--1 { width: 54%; height: 62%; top: 0; left: 6%; z-index: 3; }
.collage-item--2 { width: 40%; height: 40%; top: 4%; right: 0; z-index: 2; border-radius: 50%; }
.collage-item--3 { width: 42%; height: 38%; bottom: 0; right: 2%; z-index: 3; }
.collage-item--4 { width: 34%; height: 30%; bottom: 6%; left: 0; z-index: 4; }
.collage-badge {
  position: absolute;
  bottom: 30%;
  left: -6%;
  z-index: 5;
  background: var(--white);
  border-radius: 100px;
  padding: 14px 22px 14px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
}
.collage-badge .badge-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--olive);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.collage-badge strong { display: block; font-family: var(--font-head); font-size: 17px; color: var(--brown-dark); }
.collage-badge span { font-size: 11.5px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.08em; }

.deco-float { position: absolute; opacity: 0.55; z-index: 1; }

/* ==========================================================================
   About
   ========================================================================== */
.about { background: var(--white); }
.about .container {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 76px;
  align-items: center;
}
.about-visual { position: relative; }
.about-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
}
.about-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-stat-card {
  position: absolute;
  bottom: -32px;
  right: -32px;
  background: var(--brown);
  color: var(--cream);
  padding: 26px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  max-width: 220px;
}
.about-stat-card strong { display: block; font-family: var(--font-head); font-size: 34px; color: var(--orange); }
.about-stat-card span { font-size: 12.5px; letter-spacing: 0.04em; opacity: 0.85; }

.about-copy p { color: var(--ink-soft); margin-bottom: 18px; font-size: 16px; }
.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin: 30px 0 38px;
}
.about-point { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--ink); }
.about-point svg { flex-shrink: 0; color: var(--olive); margin-top: 2px; }

.about-stats-row {
  display: flex;
  gap: 44px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(92, 58, 33, 0.12);
}
.stat-block strong {
  display: block;
  font-family: var(--font-head);
  font-size: 36px;
  color: var(--brown-dark);
}
.stat-block strong .plus { color: var(--orange); }
.stat-block span { font-size: 12.5px; color: var(--ink-soft); letter-spacing: 0.03em; }

/* ==========================================================================
   Menu / Popular Dishes
   ========================================================================== */
.menu { background: var(--cream-soft); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.dish-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.dish-card:hover { transform: translateY(-8px); box-shadow: 0 26px 46px -20px rgba(43, 36, 32, 0.26); }
.dish-media { position: relative; aspect-ratio: 4/3.1; overflow: hidden; }
.dish-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.dish-card:hover .dish-media img { transform: scale(1.08); }
.dish-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--olive);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
}
.dish-tag--spicy { background: var(--orange); }
.dish-body { padding: 22px 24px 26px; }
.dish-body-top { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 8px; }
.dish-body-top h3 { font-size: 19px; }
.dish-price { font-family: var(--font-head); font-weight: 700; color: var(--orange-dark); font-size: 18px; white-space: nowrap; }
.dish-body p { font-size: 13.8px; color: var(--ink-soft); }

.menu-footer { text-align: center; margin-top: 56px; }

/* ==========================================================================
   Why Choose Us
   ========================================================================== */
.why { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-card {
  padding: 40px 28px;
  border-radius: var(--radius-md);
  background: var(--cream);
  text-align: left;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
  box-shadow: 0 1px 0 rgba(92,58,33,0.05);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); background: var(--white); }
.why-icon {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--olive);
  margin-bottom: 22px;
  box-shadow: 0 6px 18px -8px rgba(92,58,33,0.18);
}
.why-card:nth-child(2) .why-icon { color: var(--orange); }
.why-card:nth-child(4) .why-icon { color: var(--olive); }
.why-card h3 { font-size: 19px; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--ink-soft); }

/* ==========================================================================
   Gallery (masonry)
   ========================================================================== */
.gallery { background: var(--cream-soft); }
.gallery-grid {
  columns: 4 240px;
  column-gap: 22px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 22px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
}
.gallery-item img { width: 100%; height: auto; display: block; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 20px 18px 14px;
  background: linear-gradient(to top, rgba(43,36,32,0.72), transparent);
  color: var(--cream);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews { background: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 32px 30px;
  box-shadow: 0 1px 0 rgba(92,58,33,0.05);
}
.review-stars { color: var(--orange); font-size: 14px; letter-spacing: 3px; margin-bottom: 16px; }
.review-card p { font-size: 14.8px; color: var(--ink); margin-bottom: 24px; }
.review-person { display: flex; align-items: center; gap: 10px; padding-top: 20px; border-top: 1px solid rgba(92, 58, 33, 0.1); }
.review-person::before { content: "—"; color: var(--orange); font-weight: 600; }
.review-person strong { font-family: var(--font-head); font-weight: 600; font-size: 17px; color: var(--brown-dark); }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact { background: var(--cream-soft); }
/* Sits inside .container, so no extra max-width/padding here.
   minmax(0,…) lets the columns shrink instead of overflowing. */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 60px;
  align-items: stretch;
}
.contact-info { background: var(--white); border-radius: var(--radius-lg); padding: 46px 42px; box-shadow: var(--shadow-card); }
.contact-row { display: flex; gap: 18px; margin-bottom: 28px; }
.contact-row .c-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  color: var(--olive);
}
.contact-row h4 { font-size: 15.5px; margin-bottom: 4px; color: var(--brown-dark); }
.contact-row p, .contact-row a { font-size: 14px; color: var(--ink-soft); display: block; }
.contact-row a:hover { color: var(--orange-dark); }

.hours-table { width: 100%; margin-top: 4px; }
.hours-table tr { font-size: 13.8px; }
.hours-table td { padding: 5px 0; color: var(--ink-soft); }
.hours-table td:last-child { text-align: right; color: var(--brown-dark); font-weight: 500; }
/* Dynamic hours rows injected by the SIPO API (#contact-hours-table) */
.hours-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 0;
  font-size: 13.8px;
  border-bottom: 1px solid rgba(92, 58, 33, 0.07);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--ink-soft); }
.hours-row .time { text-align: right; color: var(--brown-dark); font-weight: 500; white-space: nowrap; }
.hours-row .time.closed-day { color: #9c3d24; font-weight: 500; }
.hours-row.today .day,
.hours-row.today .time { color: var(--orange-dark); font-weight: 600; }

/* Dynamic footer hours list (#footer-hours) */
.footer-hours li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
  font-size: 13.5px;
}
.footer-hours .day { color: rgba(248,244,234,0.68); }
.footer-hours .time { color: var(--cream); text-align: right; white-space: nowrap; }
.footer-hours .time.closed-day { color: #e5a06a; }
.footer-hours li.today .day,
.footer-hours li.today .time { color: var(--orange); font-weight: 600; }

.contact-actions { display: flex; gap: 14px; margin-top: 34px; }

.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); min-height: 460px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 460px; border: 0; filter: saturate(0.9) contrast(1.02); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--brown-dark); color: var(--cream); padding: 84px 0 0; position: relative; overflow: hidden; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(248,244,234,0.14);
}
.footer-brand .footer-logo-card {
  display: inline-flex;
  background: var(--cream);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  box-shadow: 0 10px 24px -12px rgba(0,0,0,0.35);
}
.footer-brand img { height: 46px; display: block; }
.footer-brand p { font-size: 14px; color: rgba(248,244,234,0.68); max-width: 280px; }
.footer-col h4 { color: var(--cream); font-family: var(--font-body); font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px; font-weight: 600; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; color: rgba(248,244,234,0.68); transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--orange); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(248,244,234,0.28);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 26px 0; font-size: 13px; color: rgba(248,244,234,0.55); flex-wrap: wrap; gap: 10px 20px; }
.footer-bottom a { color: rgba(248,244,234,0.78); font-weight: 500; }
.footer-bottom a:hover { color: var(--orange); }
.footer-credits { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.footer-credit-sep { opacity: 0.4; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { columns: 3 200px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

@media (max-width: 940px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header.is-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 32px 30px;
    gap: 20px;
    box-shadow: 0 18px 30px -18px rgba(43,36,32,0.3);
  }
  .site-header.is-open .nav-cta { display: inline-flex; margin: 6px 32px 0; }

  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { height: 420px; margin-top: 20px; }
  .hero-copy p { max-width: 100%; }

  .about .container { grid-template-columns: 1fr; }
  .about-visual { max-width: 420px; margin: 0 auto; }
  .about-stats-row { flex-wrap: wrap; gap: 28px 44px; }

  .contact-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section-pad { padding: 80px 0; }
  .hero { padding: 132px 0 70px; }
  .menu-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2 160px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { flex: 1 1 auto; }
  .about-stat-card { position: static; margin-top: -40px; margin-left: auto; }
  .contact-info { padding: 32px 26px; }
}

/* ==========================================================================
   Floating "Order Now" button
   ========================================================================== */
.floating-order {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 100px;
  background: var(--orange);
  color: var(--white);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 34px -10px rgba(217, 137, 50, 0.62);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.floating-order svg { width: 22px; height: 22px; flex-shrink: 0; }
.floating-order:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 20px 38px -10px rgba(217, 137, 50, 0.68);
}

/* Mobile: icon-only circular button, no text */
@media (max-width: 640px) {
  .floating-order {
    bottom: 18px;
    right: 18px;
    width: 58px;
    height: 58px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .floating-order .floating-order-text { display: none; }
  .floating-order svg { width: 24px; height: 24px; }
}
