/* ==========================================================================
   Coconut Dates Daal — stylesheet
   Palette: warm mustard/gold + deep maroon, South+North Indian fusion story.
   All text/background pairings below are checked for WCAG AA contrast
   (4.5:1 body text, 3:1 large text) — do not swap a token into a role
   without rechecking contrast against its typical background.
   ========================================================================== */

:root {
  /* Brand colors */
  --gold: #c8891f;              /* darkened from brief's #E8AE5B for AA text-on-cream use */
  --gold-light: #e8ae5b;        /* decorative/background use only — not for text on light bg */
  --gold-pale: #faf1de;
  --maroon: #6b1414;
  --maroon-dark: #4a0d0d;
  --maroon-soft: #8a2a2a;
  --cream: #fdf8ef;
  --cream-deep: #f6ead2;
  --ink: #2c1a10;
  --ink-soft: #5a4636;
  --white: #ffffff;

  /* Semantic roles */
  --color-bg: var(--cream);
  --color-surface: var(--white);
  --color-text: var(--ink);
  --color-text-soft: var(--ink-soft);
  --color-heading: var(--maroon-dark);
  --color-accent: var(--gold);
  --color-accent-strong: var(--maroon);

  /* Type */
  --font-display: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 6px 20px rgba(74, 13, 13, 0.10);
  --shadow-strong: 0 16px 40px rgba(74, 13, 13, 0.20);
  --container-w: 1180px;

  /* Spacing scale (Tailwind-like rhythm) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;

  --header-h: 76px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  font-size: 1rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-heading);
  margin: 0 0 0.6em;
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

a {
  color: var(--color-accent-strong);
  text-decoration: none;
}
a:hover, a:focus-visible { color: var(--maroon-soft); }

img { max-width: 100%; display: block; }

ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: var(--space-24) 0; }
.section-alt { background: var(--white); }
.section-lede {
  color: var(--color-text-soft);
  max-width: 640px;
  font-size: 1.08rem;
}
.section-head { margin-bottom: var(--space-12); }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .section-lede { margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--color-accent-strong);
  background: var(--gold-pale);
  padding: 0.35em 0.9em;
  border-radius: 999px;
  margin-bottom: var(--space-4);
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--maroon);
  color: var(--white);
  padding: 0.75em 1.25em;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.85em 1.7em;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }

.btn-primary {
  background: var(--maroon);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--maroon-dark);
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.btn-secondary {
  background: var(--white);
  border-color: var(--maroon);
  color: var(--maroon);
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  background: var(--gold-pale);
  color: var(--maroon-dark);
}

.btn-whatsapp {
  background: #25873f; /* darkened WhatsApp green for AA contrast with white text */
  color: var(--white);
}
.btn-whatsapp:hover, .btn-whatsapp:focus-visible {
  background: #1f6e34;
  color: var(--white);
}

.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 0.6em 1.3em; font-size: 0.92rem; }

.btn-icon { width: 1.15em; height: 1.15em; flex: none; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
}

/* Blur layer lives on a sibling, NOT an ancestor of the fixed mobile nav —
   backdrop-filter on an ancestor of position:fixed elements becomes their
   containing block and breaks full-viewport fixed positioning on mobile. */
.site-header-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(253, 248, 239, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(107, 20, 20, 0.08);
}

.site-header-inner {
  position: relative;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--color-heading);
}
.brand:hover, .brand:focus-visible { color: var(--maroon-soft); }
.brand-badge {
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-heading);
}
.brand-tagline {
  font-size: 0.72rem;
  color: var(--color-text-soft);
  letter-spacing: 0.03em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(107, 20, 20, 0.15);
  background: var(--white);
  cursor: pointer;
  flex: none;
}
.nav-toggle-bar {
  width: 20px;
  height: 2px;
  background: var(--maroon);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
/* :not(.btn) so this rule can't out-specificity the shared .btn padding
   on the CTA that lives inside this same nav */
.main-nav ul a:not(.btn) {
  display: inline-block;
  padding: 0.4rem 0.1rem;
  color: var(--color-text);
  font-weight: 500;
  border-bottom: 2px solid transparent;
}
.main-nav ul a:not(.btn):hover,
.main-nav ul a:not(.btn):focus-visible,
.main-nav ul a:not(.btn).is-active {
  color: var(--color-accent-strong);
  border-bottom-color: var(--color-accent);
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    width: min(320px, 84vw);
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-8);
    padding: var(--space-8) var(--space-6);
    box-shadow: -8px 0 30px rgba(74, 13, 13, 0.18);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-2);
  }
  .main-nav ul a:not(.btn) {
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid var(--cream-deep);
  }
  .main-nav .nav-cta { width: 100%; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: min(88vh, 780px);
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  /* Solid-enough scrim so hero text stays >= 4.5:1 against any photo underneath at every breakpoint */
  background: linear-gradient(180deg, rgba(42, 12, 8, 0.72) 0%, rgba(42, 12, 8, 0.8) 55%, rgba(42, 12, 8, 0.9) 100%);
}
.hero-inner {
  position: relative;
  padding: var(--space-24) 1.5rem;
  max-width: 760px;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(253, 248, 239, 0.16);
  border: 1px solid rgba(253, 248, 239, 0.4);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding: 0.4em 1em;
  border-radius: 999px;
  margin-bottom: var(--space-6);
}
.hero h1 { color: var(--white); margin-bottom: var(--space-4); }
.hero-sub {
  font-size: 1.2rem;
  color: rgba(253, 248, 239, 0.95);
  max-width: 560px;
  margin-bottom: var(--space-2);
}
.hero-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold-light);
  font-size: 1.05rem;
  margin-bottom: var(--space-8);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  font-size: 0.92rem;
  color: rgba(253, 248, 239, 0.9);
}
.hero-trust li { display: flex; align-items: center; gap: 0.5em; }

/* ==========================================================================
   Meal plan cards
   ========================================================================== */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}
@media (max-width: 760px) {
  .plan-grid { grid-template-columns: 1fr; }
}

.plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-strong); }

.plan-card-media { position: relative; aspect-ratio: 16 / 10; }
.plan-card-media img { width: 100%; height: 100%; object-fit: cover; }
.plan-card-tag {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  background: var(--maroon);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  padding: 0.4em 1em;
  border-radius: 999px;
}
.plan-card-tag.is-coconut { background: var(--gold); color: var(--maroon-dark); }

.plan-card-body {
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.plan-card-body h3 { font-size: 1.4rem; }
.plan-card-desc { color: var(--color-text-soft); flex: 1; }
.plan-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  margin-bottom: var(--space-6);
}
.chip {
  display: inline-block;
  background: var(--cream-deep);
  color: var(--color-text-soft);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.35em 0.9em;
  border-radius: 999px;
}
.plan-card-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-accent-strong);
  font-size: 1.15rem;
  margin-bottom: var(--space-4);
}
.plan-card-price span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--color-text-soft);
}
.plan-card-actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }

/* ==========================================================================
   Menu showcase (tabbed/filterable grid)
   ========================================================================== */
.menu-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.menu-filter-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.55em 1.3em;
  border-radius: 999px;
  border: 1.5px solid rgba(107, 20, 20, 0.25);
  background: var(--white);
  color: var(--color-text);
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.menu-filter-btn:hover { border-color: var(--maroon); }
.menu-filter-btn[aria-pressed="true"] {
  background: var(--maroon);
  border-color: var(--maroon);
  color: var(--white);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
@media (max-width: 980px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .menu-grid { grid-template-columns: 1fr; } }

.menu-item-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.menu-item-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-strong); }
.menu-item-media { aspect-ratio: 5 / 4; overflow: hidden; }
.menu-item-media img { width: 100%; height: 100%; object-fit: cover; }
.menu-item-body { padding: var(--space-4) var(--space-4) var(--space-6); }
.menu-item-body h3 { font-size: 1.02rem; margin-bottom: 0.3em; }
.menu-item-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
}
.menu-item-price { font-weight: 700; color: var(--color-accent-strong); font-family: var(--font-display); }
.menu-item-badges { display: flex; gap: 0.35em; }
.badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2em 0.55em;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.badge-veg { background: #e4f4e6; color: #216534; border: 1px solid #216534; }
.badge-nonveg { background: #fbe7e5; color: #a3241b; border: 1px solid #a3241b; }

.menu-item-card[hidden] { display: none; }

/* ==========================================================================
   About / Story
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: var(--space-8); }
}
.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.about-copy p { color: var(--color-text); font-size: 1.05rem; }
.about-signoff {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-accent-strong);
  margin-top: var(--space-6);
}

/* ==========================================================================
   Delivery areas
   ========================================================================== */
.delivery-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-16);
  align-items: start;
}
@media (max-width: 860px) {
  .delivery-layout { grid-template-columns: 1fr; gap: var(--space-8); }
}
.city-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin: var(--space-6) 0 var(--space-8);
}
.city-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: var(--white);
  border: 1.5px solid var(--cream-deep);
  color: var(--color-text);
  font-weight: 600;
  padding: 0.6em 1.2em;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}
.city-chip-icon { color: var(--color-accent-strong); }
.delivery-note {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: var(--space-4) var(--space-6);
  color: var(--color-text-soft);
}
.delivery-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.delivery-map iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ==========================================================================
   Gallery / Instagram
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
@media (max-width: 760px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-grid a {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-soft);
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-grid a:hover img, .gallery-grid a:focus-visible img { transform: scale(1.06); }
.gallery-follow { margin-top: var(--space-8); text-align: center; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
@media (max-width: 860px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--space-8);
  box-shadow: var(--shadow-soft);
}
.testimonial-stars { color: var(--gold); letter-spacing: 0.1em; margin-bottom: var(--space-3); }
.testimonial-quote { font-style: italic; color: var(--color-text); }
.testimonial-name { font-weight: 700; color: var(--color-heading); margin-top: var(--space-4); }
.testimonial-role { color: var(--color-text-soft); font-size: 0.9rem; }

/* ==========================================================================
   Newsletter
   ========================================================================== */
.newsletter-section {
  background: var(--maroon);
  color: var(--white);
}
.newsletter-section h2 { color: var(--white); }
.newsletter-section .section-lede { color: rgba(253, 248, 239, 0.85); }
.newsletter-form {
  display: flex;
  gap: var(--space-3);
  max-width: 480px;
  margin-top: var(--space-6);
  flex-wrap: wrap;
}
.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 0.85em 1.2em;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-size: 1rem;
}
.newsletter-form input[type="email"]:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.form-status {
  margin-top: var(--space-3);
  font-size: 0.92rem;
  min-height: 1.4em;
}
.form-status.is-success { color: #bdeccb; }
.form-status.is-error { color: #ffc9c0; }

.contact-form .form-status.is-success { color: #216534; }
.contact-form .form-status.is-error { color: #a3241b; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: var(--space-8); } }
.contact-list { margin: var(--space-6) 0 var(--space-8); }
.contact-list li {
  display: flex;
  flex-direction: column;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--cream-deep);
}
.contact-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-soft);
  font-weight: 600;
}
.contact-list a { font-weight: 600; font-size: 1.05rem; }
.social-links { display: flex; gap: 0.8em; }

.form-field { margin-bottom: var(--space-4); }
.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4em;
  font-size: 0.92rem;
}
.form-field input, .form-field textarea {
  width: 100%;
  padding: 0.8em 1em;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(107, 20, 20, 0.2);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
  color: var(--color-text);
}
.form-field input:focus-visible, .form-field textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--maroon);
}
.form-field-error {
  color: #a3241b;
  font-size: 0.85rem;
  margin-top: 0.3em;
  min-height: 1.2em;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--maroon-dark);
  color: rgba(253, 248, 239, 0.85);
  padding: var(--space-16) 0 var(--space-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); } }
.footer-brand { display: flex; align-items: center; gap: 0.6rem; color: var(--white); margin-bottom: var(--space-4); }
.footer-brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.footer-tagline { color: rgba(253, 248, 239, 0.7); max-width: 320px; }
.footer-heading {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-4);
}
.footer-links li, .footer-cities li { margin-bottom: 0.6em; }
.footer-links a, .footer-cities span, .footer-contact a {
  color: rgba(253, 248, 239, 0.85);
}
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-light); }
.footer-cities { display: flex; flex-wrap: wrap; gap: 0.4em 0.8em; }
.footer-social { display: flex; gap: var(--space-4); margin-top: var(--space-4); }
.footer-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(253, 248, 239, 0.1);
  color: var(--white);
}
.footer-social a:hover { background: var(--gold); color: var(--maroon-dark); }
.footer-bottom {
  border-top: 1px solid rgba(253, 248, 239, 0.15);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: 0.85rem;
  color: rgba(253, 248, 239, 0.6);
}
.footer-bottom a { color: rgba(253, 248, 239, 0.6); }
.footer-bottom a:hover { color: var(--white); }

/* ==========================================================================
   WhatsApp floating action button (mobile-friendly persistent CTA)
   ========================================================================== */
.whatsapp-fab {
  position: fixed;
  right: var(--space-6);
  bottom: var(--space-6);
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25873f;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-strong);
}
.whatsapp-fab:hover, .whatsapp-fab:focus-visible { background: #1f6e34; color: var(--white); transform: translateY(-2px); }
.whatsapp-fab svg { width: 28px; height: 28px; }

/* ==========================================================================
   Scroll reveal animation (respects prefers-reduced-motion)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
