/* =============================================================================
   Sathya Kitchen — Luxury landing styles
   Architecture: tokens → base → layout → sections → utilities
   ============================================================================= */

:root {
  /* Tamil Nadu celebration palette — rice cream, temple gold, kancheepuram maroon */
  --ivory: #faf8f5;
  --ivory-deep: #f0ebe3;
  --champagne: #d4af37;
  --champagne-soft: rgba(212, 175, 55, 0.32);
  --gold-deep: #8b6914;
  --temple-gold: #c9a227;
  --beige: #e2cfae;
  --beige-muted: #c9a574;
  --blush: #e8a898;
  --blush-soft: rgba(232, 168, 152, 0.38);
  --maroon: #4a1520;
  --maroon-deep: #2d0f14;
  --brown: #2a1810;
  --brown-soft: #4a3628;
  --palm: #1e3d2f;
  --white: #ffffff;
  --shadow-soft: 0 24px 60px rgba(45, 15, 20, 0.1);
  --shadow-lift: 0 18px 40px rgba(45, 15, 20, 0.14);
  --shadow-gold: 0 12px 40px rgba(201, 162, 39, 0.28);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-accent: "Poppins", "Inter", system-ui, sans-serif;
  --font-body: "Inter", "Noto Sans Tamil", system-ui, sans-serif;
  --space-xs: clamp(0.5rem, 1.5vw, 0.75rem);
  --space-sm: clamp(0.75rem, 2vw, 1rem);
  --space-md: clamp(1rem, 3vw, 1.5rem);
  --space-lg: clamp(1.5rem, 4vw, 2.5rem);
  --space-xl: clamp(2rem, 6vw, 4rem);
  --space-2xl: clamp(3rem, 8vw, 6rem);
  /* Vertical rhythm between major page bands */
  --section-pad-y: clamp(2.75rem, 7vw, 4.75rem);
  --section-pad-y-mobile: clamp(2.25rem, 6vw, 3.75rem);
  --header-h: 76px;
  --gallery-gap: clamp(0.45rem, 1.1vw, 0.65rem);
  --gallery-gap-tight: clamp(0.35rem, 0.75vw, 0.5rem);
  --gallery-radius: var(--radius-md);
  --gallery-tile-ratio: 1;
  --gallery-tile-ratio-page: 1;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  line-height: 1.65;
  color: var(--brown-soft);
  background-color: var(--ivory);
  background-image: radial-gradient(ellipse 120% 70% at 50% -15%, rgba(201, 162, 39, 0.12), transparent 55%),
    radial-gradient(ellipse 80% 50% at 100% 100%, rgba(74, 21, 32, 0.05), transparent 50%),
    linear-gradient(180deg, var(--ivory) 0%, var(--ivory-deep) 100%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}

[lang="ta"] {
  font-family: "Noto Sans Tamil", var(--font-body);
  font-weight: 500;
}

.tamil-accent {
  letter-spacing: 0.14em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

a {
  color: var(--gold-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.25s var(--ease-soft), opacity 0.25s var(--ease-soft);
}

a:hover {
  color: var(--brown);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--brown);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

ul {
  margin: 0;
  padding: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: var(--brown);
  color: var(--ivory);
  z-index: 1000;
  border-radius: var(--radius-sm);
}

.container {
  width: min(1120px, 100% - 2 * var(--space-md));
  margin-inline: auto;
}

#main {
  display: block;
}

/* -----------------------------------------------------------------------------
   Header
   ----------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(249, 244, 232, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.28);
  transition: box-shadow 0.35s var(--ease-soft), background 0.35s var(--ease-soft);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-soft);
  background: rgba(249, 244, 232, 0.96);
}

.header-inner {
  height: 100%;
  width: min(1200px, 100% - 2 * var(--space-md));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.logo {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.logo:hover {
  color: inherit;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--maroon-deep);
  background: linear-gradient(145deg, #f3e4b8, #e8c76b);
  border: 1px solid rgba(74, 21, 32, 0.2);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.logo-img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: block;
  padding: 0;
  margin: 0;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  background: rgba(255, 252, 245, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.logo-img--footer {
  width: 52px;
  height: 52px;
  display: block;
  padding: 0;
  margin: 0;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  background: rgba(255, 252, 245, 0.08);
  border-color: rgba(212, 175, 55, 0.4);
}

.site-header.is-shrunk .logo-img {
  width: 42px;
  height: 42px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brown);
}

.logo-tag {
  font-size: clamp(0.55rem, 1.4vw, 0.65rem);
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--gold-deep);
  line-height: 1.35;
  max-width: min(100%, 26rem);
  white-space: normal;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(59, 44, 36, 0.12);
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle-bar {
  width: 20px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.site-header.is-open .nav-toggle-bar:first-child {
  transform: translateY(4px) rotate(45deg);
}

.site-header.is-open .nav-toggle-bar:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.site-nav .nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1.75rem);
}

.site-nav a {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--brown-soft);
  font-weight: 500;
}

.site-nav a:hover {
  color: var(--brown);
}

.nav-cta {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #e8c76b, var(--temple-gold), #a67c00);
  color: var(--maroon-deep) !important;
  box-shadow: var(--shadow-gold);
}

.nav-cta:hover {
  filter: brightness(1.05);
  color: var(--maroon-deep) !important;
}

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

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(250, 247, 242, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    padding: var(--space-lg);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.45s var(--ease-out), opacity 0.35s;
  }

  .site-header.is-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .site-nav .nav-list a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
}

/* -----------------------------------------------------------------------------
   Buttons
   ----------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-soft),
    background 0.35s var(--ease-soft), border-color 0.35s, color 0.35s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--maroon-deep) 0%, var(--maroon) 100%);
  color: #fff8e8;
  box-shadow: var(--shadow-lift);
}

.btn--primary:hover {
  color: #fff8e8;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(59, 44, 36, 0.15);
  color: var(--brown);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  color: var(--brown);
  border-color: rgba(201, 162, 39, 0.5);
}

.btn--gold {
  background: linear-gradient(130deg, #e8d5a8, var(--champagne), #b8924f);
  color: var(--brown);
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  color: var(--brown);
}

.btn--full {
  width: 100%;
}

/* -----------------------------------------------------------------------------
   Hero
   ----------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  padding-bottom: max(var(--space-2xl), env(safe-area-inset-bottom, 0px));
  overflow: clip;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.12) contrast(1.02);
  transform: scale(1.03);
}

.hero-collage {
  position: absolute;
  inset: 8% 4% 12%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.75rem, 2vw, 1.5rem);
  align-items: end;
  pointer-events: none;
}

.hero-card {
  margin: 0;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(20, 8, 10, 0.45), 0 0 0 1px rgba(212, 175, 55, 0.35);
  border: 1px solid rgba(255, 240, 210, 0.35);
  aspect-ratio: 3 / 4;
  max-height: min(58vh, 620px);
  justify-self: center;
  width: 100%;
  max-width: 280px;
  animation: floatIn 1.1s var(--ease-out) backwards;
}

.hero-card--1 {
  animation-delay: 0.1s;
  transform: translateY(6%) rotate(-2deg);
}

.hero-card--2 {
  animation-delay: 0.22s;
  transform: translateY(-4%) scale(1.02);
  z-index: 1;
  max-width: 300px;
}

.hero-card--3 {
  animation-delay: 0.34s;
  transform: translateY(8%) rotate(2deg);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(1.1) sepia(0.06);
}

.hero-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff8e8;
  font-family: var(--font-body);
  background: linear-gradient(to top, rgba(45, 15, 20, 0.88), transparent);
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.hero-veil {
  position: absolute;
  inset: 0;
  /* Stronger legibility scrim behind headline area */
  background: radial-gradient(ellipse 95% 75% at 50% 72%, rgba(12, 4, 6, 0.55), transparent 62%),
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(249, 244, 232, 0.98), transparent 58%),
    linear-gradient(to top, rgba(249, 244, 232, 0.995) 0%, rgba(249, 244, 232, 0.45) 28%, transparent 62%),
    linear-gradient(90deg, rgba(45, 15, 20, 0.18), transparent 25%, transparent 75%, rgba(45, 15, 20, 0.16));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 100% - 2 * var(--space-md));
  margin-inline: auto;
  text-align: center;
  padding: clamp(1.25rem, 4vw, 2rem) clamp(1rem, 3vw, 1.75rem) max(4.5rem, env(safe-area-inset-bottom, 0px));
  padding-top: calc(var(--header-h) + var(--space-lg));
  background: rgba(253, 248, 238, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(74, 21, 32, 0.1);
  box-shadow: 0 28px 60px rgba(20, 8, 10, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #5c1a22;
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.hero .hero-title {
  font-size: clamp(2.1rem, 1.4rem + 3vw, 3.6rem);
  font-weight: 600;
  margin: 0 0 var(--space-md);
  color: #2d0f14;
  text-wrap: balance;
  line-height: 1.12;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero .hero-sub {
  font-size: clamp(1rem, 0.95rem + 0.35vw, 1.12rem);
  color: #3d2a22;
  max-width: 34em;
  margin-inline: auto;
  font-weight: 500;
  line-height: 1.62;
  text-shadow: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: var(--space-lg);
}

.hero-scroll {
  position: absolute;
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  left: 50%;
  translate: -50% 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff8e8;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85), 0 0 18px rgba(0, 0, 0, 0.45);
}

.hero-scroll:hover {
  color: #ffeaa1;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--champagne), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(0.85);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@media (max-width: 900px) {
  .hero-collage {
    inset: 12% 6% 22%;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .hero-card {
    max-height: none;
    aspect-ratio: 4 / 5;
    max-width: none;
  }

  .hero-card--3 {
    grid-column: 1 / -1;
    max-width: 70%;
    justify-self: center;
    transform: translateY(4%) rotate(0deg);
  }

  .hero-card--1 {
    transform: translateY(4%) rotate(-1deg);
  }

  .hero-card--2 {
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 520px) {
  .hero-collage {
    display: none;
  }

  .hero-bg {
    background-image: linear-gradient(
        to top,
        rgba(249, 244, 232, 0.94) 0%,
        rgba(45, 15, 20, 0.42) 100%
      ),
      url("../images/hero/hero-1.jpg");
  }

  .hero-content {
    width: calc(100% - 1rem);
    padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

/* -----------------------------------------------------------------------------
   Sections — shared
   ----------------------------------------------------------------------------- */

.section {
  padding-block: var(--section-pad-y);
  padding-inline: 0;
  position: relative;
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(1.35rem, 3.5vw, 2rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
  max-width: min(720px, 100%);
}

.section-title {
  font-size: clamp(1.75rem, 1.35rem + 1.5vw, 2.5rem);
  margin: 0 0 var(--space-sm);
}

.section-head .section-lead {
  margin-top: var(--space-md);
  margin-bottom: 0;
  max-width: 52ch;
}

.section-head--center .section-lead {
  margin-inline: auto;
}

.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
}

.section-lead {
  font-size: 1.02rem;
  color: var(--brown-soft);
  line-height: 1.65;
}

/* Extra air after full-bleed hero */
main .hero + .section {
  padding-top: calc(var(--section-pad-y) + var(--space-sm));
}

/* About — split cards */
.section--about {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-deep) 100%);
}

.split-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.split-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  align-items: stretch;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201, 162, 39, 0.35);
}

.split-card--reverse {
  direction: rtl;
}

.split-card--reverse > * {
  direction: ltr;
}

.split-card-media {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background: var(--ivory-deep);
}

.split-card-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.split-card-body {
  padding: clamp(1.5rem, 4vw, 2.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-sm);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(243, 228, 184, 0.35));
}

.split-card-body h3 {
  font-size: clamp(1.35rem, 1.1rem + 0.8vw, 1.75rem);
  margin: 0;
}

.split-points {
  list-style: none;
  padding: 0;
  margin-top: 0.5rem;
}

.split-points li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
}

.split-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--champagne));
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8);
}

@media (max-width: 820px) {
  .split-card,
  .split-card--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .split-card-media img {
    min-height: 220px;
  }
}

/* Services */
.section--services {
  background: var(--ivory);
  border-block: 1px solid rgba(201, 162, 39, 0.15);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.service-card {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(201, 162, 39, 0.28);
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(201, 162, 39, 0.55);
}

.service-card h3 {
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

.service-card p {
  font-size: 0.92rem;
  margin: 0;
  color: var(--brown-soft);
}

.service-card-icon {
  font-size: 1.25rem;
  color: var(--temple-gold);
  margin-bottom: 0.75rem;
  opacity: 0.95;
}

@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

/* Why us */
.section--why {
  background: radial-gradient(ellipse 120% 80% at 10% 0%, rgba(243, 228, 184, 0.45), transparent 50%),
    linear-gradient(180deg, var(--ivory-deep), var(--ivory));
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.feature-card {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 16px 40px rgba(59, 44, 36, 0.06);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.feature-icon {
  display: inline-flex;
  color: var(--maroon);
  margin-bottom: 0.75rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin: 0 0 0.4rem;
}

.feature-card p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--brown-soft);
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* Celebrations */
.section--celebrations {
  background: linear-gradient(168deg, var(--maroon-deep) 0%, var(--maroon) 42%, #5c1f28 100%);
  color: var(--ivory);
  border-block: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 230, 180, 0.06);
}

.section--celebrations .section-eyebrow {
  color: var(--champagne);
}

.section--celebrations .section-title {
  color: var(--ivory);
}

.celebration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.celebration-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  text-decoration: none;
  color: var(--ivory);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(212, 175, 55, 0.22);
  isolation: isolate;
}

.celebration-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out), filter 0.8s;
  filter: brightness(0.85);
}

.celebration-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 6, 8, 0.88), transparent 52%);
  opacity: 0.96;
  transition: opacity 0.5s;
}

.celebration-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.95);
}

.celebration-label {
  position: absolute;
  left: var(--space-md);
  right: var(--space-md);
  bottom: var(--space-md);
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.25rem);
  letter-spacing: 0.02em;
  color: #fff8e8;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55), 0 0 1px rgba(212, 175, 55, 0.5);
}

@media (max-width: 900px) {
  .celebration-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .celebration-grid {
    grid-template-columns: 1fr;
  }

  .celebration-card {
    aspect-ratio: 16 / 11;
  }
}

/* Gallery masonry */
.section--gallery {
  background: linear-gradient(180deg, var(--ivory), var(--ivory-deep));
}

.gallery-masonry:not(.gallery-masonry--auto) {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 130px;
  gap: var(--space-lg);
}

/* Glossy polish overlay — shared by category + main gallery tiles */
.gallery-item::before,
.sk-gallery__item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.48) 0%,
    rgba(255, 255, 255, 0.14) 28%,
    transparent 52%
  );
  opacity: 0.85;
  transition: opacity 0.4s var(--ease-soft);
}

.gallery-item::after,
.sk-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, transparent 58%, rgba(45, 15, 20, 0.22) 100%);
}

.gallery-item:hover::before,
.sk-gallery__item:hover::before {
  opacity: 1;
}

.gallery-item {
  position: relative;
  margin: 0;
  min-width: 0;
  min-height: 0;
  aspect-ratio: var(--gallery-tile-ratio);
  border-radius: var(--gallery-radius);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(74, 21, 32, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: var(--ivory-deep);
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.65s var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item figcaption,
.sk-gallery__cap {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  padding: 0.55rem 0.75rem;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory);
  background: linear-gradient(to top, rgba(30, 20, 15, 0.82), transparent);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s var(--ease-soft), transform 0.35s var(--ease-out);
}

.gallery-item:hover figcaption,
.sk-gallery__item:hover .sk-gallery__cap {
  opacity: 1;
  transform: translateY(0);
}

/* Explicit masonry placement — desktop */
.gallery-masonry:not(.gallery-masonry--auto) > .gallery-item:nth-child(1) {
  grid-column: 1 / 5;
  grid-row: 1 / 4;
}

.gallery-masonry:not(.gallery-masonry--auto) > .gallery-item:nth-child(2) {
  grid-column: 5 / 9;
  grid-row: 1 / 3;
}

.gallery-masonry:not(.gallery-masonry--auto) > .gallery-item:nth-child(3) {
  grid-column: 9 / 13;
  grid-row: 1 / 3;
}

.gallery-masonry:not(.gallery-masonry--auto) > .gallery-item:nth-child(4) {
  grid-column: 5 / 13;
  grid-row: 3 / 5;
}

.gallery-masonry:not(.gallery-masonry--auto) > .gallery-item:nth-child(5) {
  grid-column: 1 / 5;
  grid-row: 4 / 6;
}

.gallery-masonry:not(.gallery-masonry--auto) > .gallery-item:nth-child(6) {
  grid-column: 5 / 13;
  grid-row: 5 / 7;
}

@media (max-width: 900px) {
  .gallery-masonry:not(.gallery-masonry--auto) {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 110px;
  }

  .gallery-masonry:not(.gallery-masonry--auto) > .gallery-item:nth-child(1) {
    grid-column: 1 / 4;
    grid-row: 1 / 4;
  }

  .gallery-masonry:not(.gallery-masonry--auto) > .gallery-item:nth-child(2) {
    grid-column: 4 / 7;
    grid-row: 1 / 3;
  }

  .gallery-masonry:not(.gallery-masonry--auto) > .gallery-item:nth-child(3) {
    grid-column: 4 / 7;
    grid-row: 3 / 5;
  }

  .gallery-masonry:not(.gallery-masonry--auto) > .gallery-item:nth-child(4) {
    grid-column: 1 / 7;
    grid-row: 4 / 6;
  }

  .gallery-masonry:not(.gallery-masonry--auto) > .gallery-item:nth-child(5) {
    grid-column: 1 / 4;
    grid-row: 6 / 8;
  }

  .gallery-masonry:not(.gallery-masonry--auto) > .gallery-item:nth-child(6) {
    grid-column: 4 / 7;
    grid-row: 6 / 8;
  }
}

@media (max-width: 560px) {
  .section {
    padding-block: var(--section-pad-y-mobile);
  }

  main .hero + .section {
    padding-top: calc(var(--section-pad-y-mobile) + var(--space-sm));
  }

  .gallery-masonry:not(.gallery-masonry--auto) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--gallery-gap);
  }

  .gallery-item {
    aspect-ratio: var(--gallery-tile-ratio);
  }

  .gallery-item figcaption {
    opacity: 1;
    transform: none;
  }

  .section--contact {
    padding-bottom: calc(var(--section-pad-y-mobile) + 5.5rem + env(safe-area-inset-bottom, 0px));
  }
}

/* Testimonials */
.section--testimonials {
  background: linear-gradient(135deg, rgba(243, 228, 184, 0.35), rgba(232, 168, 152, 0.2)),
    var(--ivory);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.testimonial-card {
  margin: 0;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 20px 50px rgba(59, 44, 36, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: -0.1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: rgba(201, 162, 39, 0.28);
  pointer-events: none;
}

.testimonial-card p {
  font-size: 0.98rem;
  font-style: italic;
  color: var(--brown);
  position: relative;
  z-index: 1;
}

.testimonial-card footer {
  margin-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--brown-soft);
  position: relative;
  z-index: 1;
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  color: var(--brown);
}

.testimonial-tag {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.55);
  color: var(--maroon);
  background: rgba(255, 248, 230, 0.45);
}

@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact */
.section--contact {
  padding-bottom: calc(var(--section-pad-y) + 5.5rem + env(safe-area-inset-bottom, 0px));
  background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(201, 162, 39, 0.2), transparent),
    radial-gradient(ellipse 50% 40% at 0% 0%, rgba(74, 21, 32, 0.06), transparent),
    var(--ivory);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0;
}

.contact-list li {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.instagram-block {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(201, 162, 39, 0.25);
}

.instagram-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--brown);
}

.instagram-link:hover {
  color: var(--gold-deep);
}

.inquiry-form .form-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 var(--space-md);
}

.form-row {
  margin-bottom: 1rem;
}

.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 560px) {
  .form-row.two {
    grid-template-columns: 1fr;
  }
}

.form-row label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.35rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(59, 44, 36, 0.12);
  background: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--brown);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: rgba(201, 162, 39, 0.65);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
}

.form-foot {
  font-size: 0.78rem;
  color: var(--brown-soft);
  margin-top: 0.75rem;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

/* Footer */
.site-footer {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: linear-gradient(180deg, var(--maroon-deep) 0%, #1a0a0c 100%);
  color: var(--beige);
  border-top: 1px solid rgba(212, 175, 55, 0.28);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

@media (max-width: 719px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
  }

  .footer-nav {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-brand .logo-mark {
  width: 38px;
  height: 38px;
  font-size: 1.1rem;
  color: #fff8e8;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.45), rgba(74, 21, 32, 0.9));
  border-color: rgba(212, 175, 55, 0.35);
}

.footer-brand .logo-img--footer {
  width: 52px;
  height: 52px;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ivory);
  display: block;
}

.footer-brand p {
  margin: 0.15rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: none;
  opacity: 0.9;
  line-height: 1.45;
  max-width: min(100%, 24rem);
}

.footer-nav {
  display: flex;
  gap: 1.25rem;
}

.footer-nav a {
  color: var(--beige);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-nav a:hover {
  color: var(--ivory);
}

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.78rem;
  opacity: 0.85;
  margin: var(--space-sm) 0 0;
  line-height: 1.55;
  text-wrap: balance;
}

.footer-credit a {
  color: #f0d78c;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(240, 215, 140, 0.45);
  text-underline-offset: 3px;
}

.footer-credit a:hover {
  color: #fff8e8;
  text-decoration-color: rgba(255, 248, 232, 0.85);
}

.footer-flag {
  display: inline-block;
  margin: 0 0.2em;
  font-size: 1.05em;
  vertical-align: -0.05em;
}

@media (min-width: 720px) {
  .footer-copy {
    width: auto;
    margin: 0;
    text-align: right;
  }
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  z-index: 60;
  width: 58px;
  height: 58px;
  min-width: 48px;
  min-height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 14px 35px rgba(18, 140, 126, 0.45);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.whatsapp-float:hover {
  transform: scale(1.06) translateY(-2px);
  color: #fff;
  box-shadow: 0 18px 45px rgba(18, 140, 126, 0.55);
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
  translate: -50% 0;
  z-index: 70;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: var(--brown);
  color: var(--ivory);
  font-size: 0.85rem;
  box-shadow: var(--shadow-lift);
  max-width: min(90vw, 420px);
  text-align: center;
}

.toast[hidden] {
  display: none;
}

/* Reveal on scroll (progressive enhancement) */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =============================================================================
   Production upgrade — navbar, hero CTAs, sections, gallery, lightbox,
   reviews, FAQ, contact map, Instagram strip, luxury footer
   (Theme tokens in :root unchanged.)
   ============================================================================= */

.site-header {
  background: rgba(249, 244, 232, 0.72);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  border-bottom: 1px solid rgba(201, 162, 39, 0.22);
}

.site-header.is-scrolled {
  background: rgba(249, 244, 232, 0.92);
  box-shadow: 0 12px 40px rgba(45, 15, 20, 0.08);
}

.site-nav .nav-link {
  position: relative;
  padding-bottom: 0.2rem;
}

.site-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--temple-gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease-out), opacity 0.35s;
  opacity: 0;
}

.site-nav .nav-link:hover::after,
.site-nav .nav-link:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.is-active {
  color: var(--maroon);
}

.site-nav .nav-link.is-active::after {
  transform: scaleX(1);
  opacity: 1;
}

.nav-cta.nav-link::after {
  display: none;
}

.nav-cta--wa {
  background: linear-gradient(145deg, #25d366, #128c7e) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(18, 140, 126, 0.35);
}

.nav-cta--wa:hover {
  filter: brightness(1.06);
  color: #fff !important;
}

.page-hero {
  position: relative;
  min-height: min(52vh, 480px);
  display: grid;
  align-items: end;
  padding-block: calc(var(--header-h) + var(--space-xl)) var(--space-xl);
  overflow: clip;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 15, 20, 0.82), rgba(45, 15, 20, 0.35));
}

.page-hero__content {
  position: relative;
  z-index: 1;
  width: min(720px, 100% - 2 * var(--space-md));
  margin-inline: auto;
  text-align: center;
  color: var(--ivory);
}

.page-hero__content .section-title {
  color: var(--ivory);
}

.page-hero__content .section-lead {
  color: rgba(255, 248, 232, 0.92);
}

.cta-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  align-items: stretch;
}

.cta-duo-card {
  display: flex;
  flex-direction: column;
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-soft);
}

.cta-duo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  color: inherit;
}

.cta-duo-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
}

.cta-duo-card p {
  margin: 0;
  flex: 1;
  font-size: 0.92rem;
  line-height: 1.6;
}

.cta-duo-card--bakes {
  background: linear-gradient(155deg, #fff9f6 0%, #fceee8 45%, #f5ddd4 100%);
  border-color: rgba(232, 168, 152, 0.55);
}

.cta-duo-card--bakes h3 {
  color: var(--maroon);
}

.cta-duo-card--bakes p {
  color: var(--brown-soft);
}

.cta-duo-card--catering {
  background: linear-gradient(155deg, #fdfaf2 0%, #f5ecd0 48%, #ead9a8 100%);
  border-color: rgba(201, 162, 39, 0.55);
}

.cta-duo-card--catering h3 {
  color: var(--maroon-deep);
}

.cta-duo-card--catering p {
  color: var(--brown-soft);
}

.cta-duo-card .btn {
  align-self: flex-start;
  margin-top: var(--space-md);
  border-width: 1px;
  font-weight: 600;
}

.cta-duo-card--bakes .btn {
  background: var(--maroon);
  color: var(--ivory);
  border-color: var(--maroon-deep);
  box-shadow: 0 4px 16px rgba(74, 21, 32, 0.2);
}

.cta-duo-card--bakes .btn:hover {
  background: var(--maroon-deep);
  color: #fff8e8;
  border-color: var(--maroon-deep);
}

.cta-duo-card--catering .btn {
  background: linear-gradient(120deg, #e8c76b, var(--temple-gold));
  color: var(--maroon-deep);
  border-color: rgba(139, 105, 20, 0.45);
  box-shadow: var(--shadow-gold);
}

.cta-duo-card--catering .btn:hover {
  filter: brightness(1.05);
  color: var(--maroon-deep);
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.mini-gallery a {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 4px 12px rgba(74, 21, 32, 0.1);
  background: var(--ivory-deep);
}

.mini-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.mini-gallery a:hover img {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .cta-duo {
    grid-template-columns: 1fr;
  }
  .mini-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 520px) {
  .mini-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.package-card {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(201, 162, 39, 0.28);
  box-shadow: 0 4px 12px rgba(74, 21, 32, 0.1);
}

.package-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.92rem;
  color: var(--brown-soft);
}

.package-card li {
  margin-bottom: 0.35rem;
  padding-left: 1rem;
  position: relative;
}

.package-card li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--temple-gold);
}

@media (max-width: 900px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
}

.google-embed-placeholder {
  min-height: 120px;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border: 1px dashed rgba(201, 162, 39, 0.45);
  background: rgba(255, 255, 255, 0.4);
  text-align: center;
  font-size: 0.9rem;
  color: var(--brown-soft);
}

.google-embed-placeholder a {
  font-weight: 600;
}

.sk-gallery__load-more-wrap {
  text-align: center;
  margin-top: var(--space-xl);
}

.sk-gallery__load-more {
  min-width: 200px;
}

.sk-gallery__item.is-hidden-load {
  display: none;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  align-items: start;
}

.about-split img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
  box-shadow: 0 4px 12px rgba(74, 21, 32, 0.1);
  background: var(--ivory-deep);
}

@media (max-width: 768px) {
  .about-split {
    grid-template-columns: 1fr;
  }
}

.hero-actions--lux {
  gap: clamp(0.85rem, 2vw, 1.1rem);
  margin-top: clamp(1.25rem, 3vw, 1.75rem);
}

.btn--lux {
  gap: 0.55rem;
  padding-inline: clamp(1.1rem, 2.5vw, 1.65rem);
  box-shadow: 0 14px 36px rgba(45, 15, 20, 0.12);
}

.btn--lux:hover {
  box-shadow: 0 20px 48px rgba(45, 15, 20, 0.16), 0 0 0 1px rgba(212, 175, 55, 0.35);
}

.btn-icon-arrow {
  flex-shrink: 0;
  opacity: 0.9;
}

.btn-icon-wa {
  flex-shrink: 0;
}

.btn--whatsapp-pulse {
  position: relative;
  overflow: visible;
}

.btn--whatsapp-pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 1px solid rgba(37, 211, 102, 0.45);
  pointer-events: none;
  animation: waPulse 2.6s ease-in-out infinite;
  opacity: 0.65;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  70% {
    transform: scale(1.06);
    opacity: 0;
  }
  100% {
    transform: scale(1.06);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn--whatsapp-pulse::after {
    animation: none;
    opacity: 0.25;
  }
}

.container--narrow {
  width: min(720px, 100% - 2 * var(--space-md));
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.story-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.story-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--brown-soft);
}

@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr;
  }
}

.section--home-bakes {
  background: linear-gradient(180deg, var(--ivory-deep) 0%, var(--ivory) 100%);
  border-block: 1px solid rgba(201, 162, 39, 0.12);
}

.lux-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.lux-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(201, 162, 39, 0.35);
  box-shadow: var(--shadow-soft);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
}

.lux-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift), 0 0 0 1px rgba(212, 175, 55, 0.25);
}

.lux-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ivory-deep);
}

.lux-card-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
}

.lux-card:hover .lux-card-media img {
  transform: scale(1.04);
}

.lux-card-body {
  padding: var(--space-lg);
}

.lux-card-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}

.lux-card-body p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--brown-soft);
}

@media (max-width: 900px) {
  .lux-card-grid {
    grid-template-columns: 1fr;
  }
}

.bakes-points {
  list-style: none;
  margin: var(--space-xl) 0 var(--space-md);
  padding: 0;
  display: grid;
  gap: 0.65rem;
  max-width: 52ch;
}

.bakes-points li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  color: var(--brown-soft);
}

.bakes-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--champagne));
}

.section-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.section--catering-services {
  background: var(--ivory);
}

.catering-split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--space-xl);
  align-items: stretch;
  margin-top: var(--space-xl);
}

.catering-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 1px solid rgba(201, 162, 39, 0.35);
}

.catering-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.catering-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 1rem 1.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff8e8;
  background: linear-gradient(to top, rgba(45, 15, 20, 0.88), transparent);
}

.catering-points {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-lg);
}

.catering-points li {
  margin-bottom: 0.75rem;
  font-size: 0.98rem;
  color: var(--brown-soft);
}

@media (max-width: 900px) {
  .catering-split {
    grid-template-columns: 1fr;
  }
}

.trust-compact {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
  .trust-compact {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .trust-compact {
    grid-template-columns: 1fr;
  }
}

.sk-gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: var(--space-lg) 0 var(--space-xl);
}

.sk-chip {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(74, 21, 32, 0.12);
  background: rgba(255, 255, 255, 0.65);
  color: var(--brown-soft);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.sk-chip:hover,
.sk-chip:focus-visible {
  border-color: rgba(201, 162, 39, 0.55);
  color: var(--maroon);
  outline: none;
}

.sk-chip.is-active {
  background: linear-gradient(120deg, #e8c76b, var(--temple-gold));
  color: var(--maroon-deep);
  border-color: rgba(201, 162, 39, 0.65);
  box-shadow: var(--shadow-gold);
}

.sk-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--gallery-gap);
  align-items: stretch;
}

.sk-gallery__item {
  position: relative;
  border: none;
  padding: 0;
  width: 100%;
  min-width: 0;
  margin: 0;
  aspect-ratio: var(--gallery-tile-ratio);
  cursor: pointer;
  border-radius: var(--gallery-radius);
  overflow: hidden;
  display: block;
  background: var(--ivory-deep);
  box-shadow: 0 6px 20px rgba(74, 21, 32, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.65);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
  -webkit-tap-highlight-color: transparent;
}

.sk-gallery__item:focus-visible {
  outline: 3px solid rgba(201, 162, 39, 0.65);
  outline-offset: 3px;
}

.sk-gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.sk-gallery__item--tall,
.sk-gallery__item--wide,
.sk-gallery__item--sq,
.sk-gallery__item--cell {
  aspect-ratio: var(--gallery-tile-ratio);
}

.sk-gallery__item img,
.sk-gallery__item .sk-gallery__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.65s var(--ease-out);
}

.sk-gallery__item:hover img,
.sk-gallery__item:hover .sk-gallery__poster {
  transform: scale(1.06);
}

.sk-gallery__video-badge {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  background: linear-gradient(to top, rgba(20, 8, 10, 0.25), transparent 50%);
  pointer-events: none;
}

.sk-gallery__play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 248, 232, 0.92);
  color: var(--maroon-deep);
  font-size: 1.1rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(201, 162, 39, 0.45);
}

.sk-gallery__cap {
  text-align: left;
}

@media (min-width: 1100px) {
  .sk-gallery__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .sk-gallery__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .sk-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.sk-lightbox[hidden] {
  display: none !important;
}

.sk-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: var(--space-md);
}

.sk-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 8, 10, 0.72);
  backdrop-filter: blur(6px);
}

.sk-lightbox__panel {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: min(92vh, 900px);
  padding: clamp(1rem, 3vw, 1.5rem);
  overflow: auto;
}

.sk-lightbox__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(74, 21, 32, 0.12);
  background: rgba(255, 255, 255, 0.9);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--brown);
}

.sk-lightbox__nav {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(74, 21, 32, 0.12);
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  color: var(--maroon);
  font-size: 1.35rem;
}

.sk-lightbox__nav--prev {
  left: 0.5rem;
}

.sk-lightbox__nav--next {
  right: 0.5rem;
}

.sk-lightbox__figure {
  margin: 2.25rem 0 0;
  position: relative;
}

.sk-lightbox__img,
.sk-lightbox__video {
  width: 100%;
  max-height: min(70vh, 640px);
  object-fit: contain;
  border-radius: var(--radius-md);
  background: #000;
}

.sk-lightbox__caption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--brown-soft);
}

.section--reviews {
  background: linear-gradient(135deg, rgba(243, 228, 184, 0.35), rgba(232, 168, 152, 0.18)),
    var(--ivory);
}

.reviews-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  margin-top: var(--space-xl);
}

.review-slider {
  width: 100%;
  max-width: 640px;
  margin-inline: auto;
}

.review-block__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1rem + 1vw, 1.5rem);
  margin: 0 0 var(--space-md);
  color: var(--maroon);
  text-align: center;
}

.review-slider__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  display: flex;
  gap: 0;
  border-radius: var(--radius-xl);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.review-slider__viewport::-webkit-scrollbar {
  display: none;
}

.review-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  margin: 0;
  padding: var(--space-lg);
  box-sizing: border-box;
}

.review-stars {
  color: var(--temple-gold);
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.review-slide p {
  font-style: italic;
  color: var(--brown);
}

.review-slide footer {
  margin-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.85rem;
  color: var(--brown-soft);
}

.review-slide cite {
  font-style: normal;
  font-weight: 600;
  color: var(--brown);
}

.review-tag {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.45);
  color: var(--maroon);
  background: rgba(255, 248, 230, 0.5);
}

.review-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.review-slider__btn {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(74, 21, 32, 0.12);
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  color: var(--brown);
}

.review-slider__btn:hover {
  border-color: rgba(201, 162, 39, 0.55);
}

.review-slider__dots {
  display: flex;
  gap: 0.35rem;
}

.review-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(74, 21, 32, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
}

.review-slider__dot.is-active {
  background: var(--temple-gold);
}

.section--faq {
  background: var(--ivory-deep);
  border-top: 1px solid rgba(201, 162, 39, 0.12);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--brown);
  padding: 0.25rem 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--temple-gold);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-body {
  padding: 0 0 0.5rem;
}

.faq-body p {
  margin: 0;
  color: var(--brown-soft);
  font-size: 0.95rem;
}

.contact-layout--wide {
  grid-template-columns: 1fr 1fr;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-md);
}

.map-embed {
  margin-top: var(--space-xl);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.map-embed--highlight {
  position: relative;
  border: 1px solid rgba(201, 162, 39, 0.45);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(249, 244, 232, 0.88));
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.12), 0 20px 50px rgba(74, 21, 32, 0.12),
    0 0 40px rgba(201, 162, 39, 0.14);
}

.map-embed--highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 162, 39, 0.12), transparent 60%);
}

.map-embed--highlight .map-embed__title {
  color: var(--maroon);
}

.map-embed__title {
  font-family: var(--font-display);
  margin: 0 0 var(--space-sm);
  font-size: 1.35rem;
  position: relative;
  z-index: 1;
}

.map-embed__address {
  margin: 0 0 var(--space-md);
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--brown-soft);
  position: relative;
  z-index: 1;
}

.map-embed__address strong {
  color: var(--maroon);
  font-weight: 600;
}

.map-embed__frame-wrap {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(201, 162, 39, 0.4);
  min-height: 280px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 0 0 1px rgba(255, 248, 232, 0.5), 0 12px 32px rgba(74, 21, 32, 0.1);
}

.map-embed--highlight .map-embed__frame-wrap {
  box-shadow: inset 0 0 0 1px rgba(255, 248, 232, 0.6), 0 0 0 4px rgba(201, 162, 39, 0.15),
    0 16px 40px rgba(74, 21, 32, 0.14);
}

.map-embed__frame {
  width: 100%;
  height: min(450px, 56vh);
  border: 0;
  display: block;
}

.map-embed__actions {
  margin: var(--space-md) 0 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.map-embed__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.28);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-soft);
}

.map-embed__link:hover,
.map-embed__link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(201, 162, 39, 0.4), 0 10px 28px rgba(74, 21, 32, 0.15);
}

.map-embed__note {
  margin: var(--space-md) 0 0;
  font-size: 0.88rem;
  color: var(--brown-soft);
}

.insta-strip {
  padding: var(--space-xl) 0;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-deep) 100%);
  border-top: 1px solid rgba(201, 162, 39, 0.15);
}

.insta-strip__inner {
  text-align: center;
}

.insta-strip__label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 var(--space-md);
}

.insta-strip__tiles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.65rem;
}

.insta-tile {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  display: block;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201, 162, 39, 0.25);
  transition: transform 0.35s var(--ease-out);
}

.insta-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insta-tile:hover {
  transform: translateY(-4px);
}

.insta-tile--cta {
  display: grid;
  place-items: center;
  text-align: center;
  padding: var(--space-md);
  background: linear-gradient(145deg, rgba(74, 21, 32, 0.92), var(--maroon));
  color: var(--ivory);
  text-decoration: none;
  font-size: 0.85rem;
  line-height: 1.45;
  font-weight: 500;
}

.insta-tile--cta span {
  max-width: 12rem;
}

@media (max-width: 900px) {
  .insta-strip__tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 520px) {
  .insta-strip__tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Premium luxury footer — glass, gold accents, uniform across pages */
.site-footer--lux {
  position: relative;
  overflow: hidden;
  padding-top: clamp(3rem, 7vw, 4.5rem);
  background: linear-gradient(165deg, var(--maroon-deep) 0%, #1a0a0e 48%, #120608 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 248, 232, 0.06);
}

.site-footer--lux::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 162, 39, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(232, 168, 152, 0.08), transparent 50%);
  pointer-events: none;
}

.footer-lux__ambient {
  position: absolute;
  inset: -20% -10% auto;
  height: 55%;
  background: radial-gradient(ellipse at 30% 0%, rgba(212, 175, 55, 0.12), transparent 60%);
  pointer-events: none;
  opacity: 0.9;
}

.footer-lux {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr) minmax(0, 0.75fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
  align-items: start;
  padding-bottom: clamp(2rem, 4vw, 2.75rem);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-brand__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ivory);
}

.footer-tagline {
  margin: 0.55rem 0 0;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(250, 248, 245, 0.88);
  max-width: 22rem;
}

.footer-serve {
  margin: var(--space-md) 0 0;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--champagne);
}

.footer-lux__heading {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
  margin: 0 0 var(--space-sm);
}

.footer-social-lead {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  color: rgba(226, 207, 174, 0.85);
  line-height: 1.5;
}

.footer-lux-nav {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: flex-start;
}

.footer-lux-nav a {
  position: relative;
  display: inline-block;
  color: var(--beige);
  text-decoration: none;
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 400;
  padding-bottom: 2px;
  transition: color 0.3s var(--ease-soft);
}

.footer-lux-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--temple-gold), var(--champagne));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--ease-out);
}

.footer-lux-nav a:hover,
.footer-lux-nav a:focus-visible {
  color: var(--ivory);
}

.footer-lux-nav a:hover::after,
.footer-lux-nav a:focus-visible::after {
  transform: scaleX(1);
}

.footer-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-social {
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.38);
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-decoration: none;
  transition: background 0.35s var(--ease-soft), transform 0.35s var(--ease-out), border-color 0.35s var(--ease-soft),
    box-shadow 0.35s var(--ease-soft), color 0.3s var(--ease-soft);
}

.footer-social svg {
  display: block;
  flex-shrink: 0;
}

.footer-social:hover,
.footer-social:focus-visible {
  background: rgba(212, 175, 55, 0.2);
  transform: translateY(-3px);
  color: var(--ivory);
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow: 0 0 20px rgba(201, 162, 39, 0.35), 0 8px 24px rgba(45, 15, 20, 0.35);
}

.footer-social--wa:hover,
.footer-social--wa:focus-visible {
  background: rgba(37, 211, 102, 0.22);
  border-color: rgba(37, 211, 102, 0.55);
  box-shadow: 0 0 22px rgba(37, 211, 102, 0.35), 0 8px 24px rgba(45, 15, 20, 0.3);
}

.footer-initiative-card {
  padding: clamp(1.15rem, 2.5vw, 1.5rem);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 248, 232, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.footer-initiative-card__eyebrow {
  margin: 0 0 0.4rem;
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne);
}

.footer-initiative-card__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--ivory);
}

.footer-initiative-card__text {
  margin: 0 0 1rem;
  font-size: 0.84rem;
  line-height: 1.6;
  color: rgba(250, 248, 245, 0.88);
}

.footer-initiative-card__cta {
  width: 100%;
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.25);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-soft), filter 0.3s var(--ease-soft);
}

.footer-initiative-card__cta:hover,
.footer-initiative-card__cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(201, 162, 39, 0.45), 0 10px 32px rgba(45, 15, 20, 0.35);
  filter: brightness(1.06);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  padding: clamp(1rem, 2.5vw, 1.25rem) 0 clamp(2rem, 4vw, 2.75rem);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.28));
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.footer-bottom__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  text-align: center;
}

.footer-credit--primary {
  width: 100%;
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
  justify-content: center;
}

.site-footer--lux .footer-copy {
  margin: 0;
  width: 100%;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(226, 207, 174, 0.9);
  text-wrap: balance;
}

.site-footer--lux .footer-credit a {
  color: #f0d78c;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(240, 215, 140, 0.45);
  text-underline-offset: 3px;
  transition: color 0.3s var(--ease-soft), text-decoration-color 0.3s var(--ease-soft);
}

.site-footer--lux .footer-credit a:hover,
.site-footer--lux .footer-credit a:focus-visible {
  color: #fff8e8;
  text-decoration-color: rgba(255, 248, 232, 0.85);
}

.footer-credit--india {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.55rem;
}

.footer-credit--india > a {
  color: #f0d78c;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s var(--ease-soft);
}

.footer-credit--india > a:hover,
.footer-credit--india > a:focus-visible {
  color: #fff8e8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-credit__brand {
  color: rgba(226, 207, 174, 0.92);
}

.footer-flag-wave {
  display: inline-flex;
  align-items: center;
  transform-origin: left center;
  animation: footerFlagWave 4.5s ease-in-out infinite;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

.footer-flag-wave__svg {
  display: block;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

@keyframes footerFlagWave {
  0%,
  100% {
    transform: rotate(-3deg) translateY(0) skewY(-1deg);
  }
  25% {
    transform: rotate(1deg) translateY(-2px) skewY(0.5deg);
  }
  50% {
    transform: rotate(3deg) translateY(0) skewY(1deg);
  }
  75% {
    transform: rotate(-1deg) translateY(-1px) skewY(-0.5deg);
  }
}

@media (max-width: 1100px) {
  .footer-lux {
    grid-template-columns: 1fr 1fr;
  }

  .footer-lux__initiative {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .footer-lux {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-lux-nav {
    align-items: center;
  }

  .footer-social-row {
    justify-content: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-tagline {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 520px) {
  .footer-initiative-card__cta {
    font-size: 0.78rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

.form-foot code {
  font-size: 0.75em;
  background: rgba(201, 162, 39, 0.12);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

/* Page galleries — Home Bakes & Catering (matches main Gallery polish, 3 cols desktop) */
.gallery-masonry.gallery-masonry--auto,
.page-gallery-grid,
#bakes-gallery-grid,
#catering-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  grid-auto-rows: unset;
  gap: var(--gallery-gap-tight);
  align-items: stretch;
  width: 100%;
}

.gallery-masonry.gallery-masonry--auto > .gallery-item,
.page-gallery-grid > .gallery-item,
#bakes-gallery-grid > .gallery-item,
#catering-gallery-grid > .gallery-item {
  position: relative;
  grid-column: auto;
  grid-row: auto;
  aspect-ratio: var(--gallery-tile-ratio-page);
  margin: 0;
  min-width: 0;
  border-radius: var(--gallery-radius);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(74, 21, 32, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: var(--ivory-deep);
}

.gallery-masonry.gallery-masonry--auto .gallery-item img,
.page-gallery-grid .gallery-item img,
#bakes-gallery-grid .gallery-item img,
#catering-gallery-grid .gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-masonry.gallery-masonry--auto .gallery-item figcaption,
.page-gallery-grid .gallery-item figcaption,
#bakes-gallery-grid .gallery-item figcaption,
#catering-gallery-grid .gallery-item figcaption {
  z-index: 3;
}

@media (min-width: 1100px) {
  .gallery-masonry.gallery-masonry--auto,
  .page-gallery-grid,
  #bakes-gallery-grid,
  #catering-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .gallery-masonry.gallery-masonry--auto,
  .page-gallery-grid,
  #bakes-gallery-grid,
  #catering-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .gallery-masonry.gallery-masonry--auto,
  .page-gallery-grid,
  #bakes-gallery-grid,
  #catering-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--gallery-gap-tight);
  }
}

/* =============================================================================
   Google-style review widgets
   ============================================================================= */

/* Kind Words — Home Bakes + Catering side by side on desktop */
.grev-widgets-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
  align-items: stretch;
  margin-top: var(--space-xl);
  width: 100%;
}

.grev-widgets-stack > [data-google-reviews-widget] {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.grev-widgets-stack .grev-widget {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.grev-widgets-stack .grev-widget__header {
  flex-shrink: 0;
}

.grev-widgets-stack .grev-widget__grid {
  flex: 1;
}

@media (min-width: 961px) {
  .grev-widgets-stack .grev-widget__grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .grev-widgets-stack .grev-widget__cta {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 960px) {
  .grev-widgets-stack {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .grev-widgets-stack .grev-widget__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .grev-widgets-stack .grev-widget__grid {
    grid-template-columns: 1fr;
  }
}

.grev-widget {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(201, 162, 39, 0.22);
  box-shadow: 0 4px 12px rgba(74, 21, 32, 0.08);
}

.grev-widget__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(74, 21, 32, 0.08);
}

.grev-widget__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown-soft);
  font-weight: 600;
}

.grev-widget__brand {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.grev-widget__google-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.grev-google-word {
  font-family: var(--font-body);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.grev-google-word .g-blue {
  color: #4285f4;
}
.grev-google-word .g-red {
  color: #ea4335;
}
.grev-google-word .g-yellow {
  color: #fbbc05;
}
.grev-google-word .g-green {
  color: #34a853;
}

.grev-google-reviews {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--brown);
  margin-top: 0.15rem;
}

.grev-widget__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-top: 0.35rem;
}

.grev-widget__rating {
  font-size: 0.92rem;
  color: var(--brown-soft);
}

.grev-widget__rating strong {
  color: var(--brown);
  font-weight: 600;
}

.grev-stars {
  display: inline-flex;
  gap: 0.1rem;
  line-height: 1;
}

.grev-star {
  color: rgba(74, 21, 32, 0.15);
  font-size: 1.05rem;
}

.grev-star--on {
  color: #f4b400;
}

.grev-widget__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1.25rem;
  border-radius: 6px;
  background: #1a73e8;
  color: #fff !important;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(26, 115, 232, 0.35);
  transition: background 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}

.grev-widget__cta:hover {
  background: #1765cc;
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.4);
}

.grev-widget__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
  align-items: stretch;
}

@media (max-width: 720px) {
  .grev-widget__grid {
    grid-template-columns: 1fr;
  }

  .grev-widgets-stack .grev-widget__grid {
    grid-template-columns: 1fr;
  }
}

.grev-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(74, 21, 32, 0.08);
  background: #fff;
  box-shadow: 0 1px 4px rgba(74, 21, 32, 0.06);
  transition: box-shadow 0.25s ease-in-out;
}

.grev-card:hover {
  box-shadow: 0 4px 14px rgba(74, 21, 32, 0.1);
}

.grev-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.grev-card__who {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.grev-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 1rem;
  color: #fff8e8;
  flex-shrink: 0;
}

.grev-card__meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.grev-card__name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--brown);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.grev-card__time {
  font-size: 0.78rem;
  color: var(--brown-soft);
}

.grev-card__google {
  flex-shrink: 0;
}

.grev-card__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--brown-soft);
}

.grev-card__more {
  align-self: flex-start;
  padding: 0;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.grev-card__more:hover {
  color: var(--maroon);
}

.grev-widget__note {
  margin: var(--space-md) 0 0;
  font-size: 0.78rem;
  color: var(--brown-soft);
  text-align: center;
}

.grev-widget--loading {
  min-height: 200px;
}

.grev-widget__loading {
  margin: 0 0 var(--space-md);
  font-size: 0.9rem;
  color: var(--brown-soft);
  text-align: center;
}

.grev-widget__skeleton {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.grev-widget__skeleton span {
  height: 140px;
  border-radius: var(--radius-md);
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.08), rgba(249, 244, 232, 0.9), rgba(201, 162, 39, 0.08));
  background-size: 200% 100%;
  animation: grevShimmer 1.4s ease-in-out infinite;
}

@keyframes grevShimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.grev-widget__live {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.15rem 0.45rem;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(52, 168, 83, 0.15);
  color: #1e6b34;
  vertical-align: middle;
}

.grev-card__avatar--img {
  object-fit: cover;
  border-radius: 50%;
}

.grev-widget__empty {
  grid-column: 1 / -1;
  margin: 0;
  text-align: center;
  color: var(--brown-soft);
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .grev-widget__skeleton {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .grev-widget__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .grev-widget__header {
    flex-direction: column;
  }

  .grev-widget__cta {
    width: 100%;
  }

  .grev-widget__grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================================
   Sathya Kitchen Premium Website
   Built by Vasudevan for CursorDrive
   A Brand of TechVoyage IT Services
   Build Code: CD-SK-2026-VASUDEVAN-TVIS-AX74K9Q
======================================================== */
