/* Sathya Kitchen — UI upgrades (hero, carousel, animations, widget, trust) */

body.is-loading {
  opacity: 0;
}

body.is-loaded {
  opacity: 1;
  transition: opacity 0.45s ease;
}

.site-header.is-shrunk .header-inner {
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

.site-header.is-shrunk .logo-mark {
  transform: scale(0.92);
}

.site-header.is-shrunk .logo-img {
  transform: scale(0.92);
}

/* ========================================
   SITE HEADER — unified navbar (all pages)
   ======================================== */

body[data-page] .site-header {
  height: auto;
  min-height: var(--header-h, 76px);
}

body[data-page] .header-inner {
  position: relative;
  width: min(1240px, 100% - 2.5rem);
  margin-inline: auto;
  min-height: var(--header-h, 76px);
  padding-block: 0.4rem;
}

body[data-page] .logo {
  min-width: 0;
  align-items: center;
}

body[data-page] .logo-text {
  min-width: 0;
}

body[data-page] .hb-header-cta,
body[data-page] .ct-header-cta,
body[data-page] .mn-header-cta {
  display: none;
  flex-shrink: 0;
  white-space: nowrap;
  padding: 0.55rem 1rem;
  font-size: clamp(0.68rem, 0.78vw, 0.76rem);
  letter-spacing: 0.04em;
}

@media (min-width: 901px) {
  body[data-page] .header-inner {
    display: grid;
    align-items: center;
    gap: 0.65rem 1rem;
  }

  body[data-page="story"] .header-inner,
  body[data-page="gallery"] .header-inner {
    grid-template-columns: minmax(0, auto) minmax(0, 1fr);
    grid-template-areas: "logo nav";
  }

  body[data-page="bakes"] .header-inner,
  body[data-page="catering"] .header-inner,
  body[data-page="menus"] .header-inner {
    grid-template-columns: minmax(0, auto) minmax(0, 1fr) auto;
    grid-template-areas: "logo nav cta";
  }

  body[data-page] .logo {
    grid-area: logo;
    max-width: min(220px, 24vw);
  }

  body[data-page] .logo-tag {
    display: none;
  }

  body[data-page] .site-nav {
    grid-area: nav;
    justify-self: center;
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  body[data-page] .site-nav .nav-list {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    row-gap: 0.3rem;
    column-gap: clamp(0.35rem, 0.9vw, 0.9rem);
  }

  body[data-page] .site-nav .nav-link {
    font-size: clamp(0.64rem, 0.78vw, 0.76rem);
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  body[data-page] .nav-toggle {
    display: none;
  }

  body[data-page="bakes"] .hb-header-cta,
  body[data-page="catering"] .ct-header-cta,
  body[data-page="menus"] .mn-header-cta {
    grid-area: cta;
    display: inline-flex;
    justify-self: end;
    align-items: center;
  }

  body[data-page="bakes"] .site-nav .nav-cta--wa,
  body[data-page="catering"] .site-nav .nav-cta--wa,
  body[data-page="menus"] .site-nav .nav-cta--wa {
    display: none;
  }
}

@media (min-width: 1180px) {
  body[data-page] .logo {
    max-width: none;
  }

  body[data-page] .logo-tag {
    display: block;
  }

  body[data-page] .site-nav .nav-link {
    font-size: 0.78rem;
    letter-spacing: 0.05em;
  }
}

@media (max-width: 900px) {
  body[data-page] .header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 0.75rem;
    width: min(1240px, 100% - 2.5rem);
  }

  body[data-page] .logo {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 3.5rem);
  }

  body[data-page] .logo-tag {
    display: none;
  }

  body[data-page] .nav-toggle {
    display: flex;
    flex-shrink: 0;
    order: 2;
    margin-left: auto;
  }

  body[data-page] .site-nav {
    order: 4;
    flex: 1 1 100%;
    width: 100%;
  }

  body[data-page] .site-nav .nav-list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0.65rem;
  }

  body[data-page] .site-nav .nav-link {
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    white-space: normal;
  }

  body[data-page] .site-nav .nav-cta--wa {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin-top: 0.25rem;
  }

  body[data-page] .hb-header-cta,
  body[data-page] .ct-header-cta,
  body[data-page] .mn-header-cta {
    display: none;
  }
}

/* ========================================
   TEXT-FOCUSED HERO SLIDESHOW (Sree Ambal Style)
   ======================================== */

.hero--text-focus {
  position: relative;
  display: block;
  width: 100%;
  min-height: clamp(600px, 100svh, 100vh);
  height: 100svh;
  padding-bottom: 0;
  overflow: hidden;
  align-items: unset;
}

.hero--text-focus .hero-slideshow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero--text-focus .hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  z-index: 1;
  pointer-events: none;
}

.hero--text-focus .hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  pointer-events: auto;
}

.hero--text-focus .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(1.08) contrast(1.02);
  transform: none;
}

.hero--text-focus .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(74, 21, 32, 0.85) 0%,
    rgba(74, 21, 32, 0.65) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 1;
}

.hero--text-focus .hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  max-width: 900px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: calc(var(--header-h, 72px) + 2rem) 24px 6rem;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  pointer-events: none;
}

.hero--text-focus .hero-content a,
.hero--text-focus .hero-content button {
  pointer-events: auto;
}

.hero--text-focus .hero-eyebrow {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #d4af37;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
}

.hero--text-focus .hero-slide.is-active .hero-eyebrow {
  animation: skHeroSlideUp 0.8s ease 0.2s forwards;
}

.hero--text-focus .hero-headline {
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero--text-focus .hero-headline-line {
  opacity: 0;
  transform: translateY(30px);
}

.hero--text-focus .hero-slide.is-active .hero-headline-line:nth-child(1) {
  animation: skHeroSlideUp 0.8s ease 0.4s forwards;
}

.hero--text-focus .hero-slide.is-active .hero-headline-line:nth-child(2) {
  animation: skHeroSlideUp 0.8s ease 0.6s forwards;
}

.hero--text-focus .hero-headline-line--accent {
  color: #d4af37;
  font-style: italic;
}

.hero--text-focus .hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  margin: 0 0 32px;
  opacity: 0;
  transform: translateY(20px);
}

.hero--text-focus .hero-slide.is-active .hero-subtitle {
  animation: skHeroSlideUp 0.8s ease 0.8s forwards;
}

.hero--text-focus .hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 0;
  opacity: 0;
  transform: translateY(20px);
}

.hero--text-focus .hero-slide.is-active .hero-actions {
  animation: skHeroSlideUp 0.8s ease 1s forwards;
}

@keyframes skHeroSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero--text-focus .btn--hero {
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
}

.hero--text-focus .btn--ghost-white {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.hero--text-focus .btn--ghost-white:hover {
  background: #ffffff;
  color: #4a1520;
  border-color: #ffffff;
}

.hero--text-focus .hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
  align-items: center;
  pointer-events: auto;
}

.hero--text-focus .hero-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero--text-focus .hero-dot:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

.hero--text-focus .hero-dot.is-active {
  width: 32px;
  background: #d4af37;
  border-color: #d4af37;
  border-radius: 6px;
}

.hero--text-focus .hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 40px;
  left: auto;
  translate: none;
  transform: none;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: none;
  transition: all 0.3s ease;
}

.hero--text-focus .hero-scroll:hover {
  transform: translateY(-4px);
  color: #d4af37;
}

.hero--text-focus .hero-scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, #d4af37, transparent);
  animation: skHeroScrollPulse 2s infinite;
}

@keyframes skHeroScrollPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(8px);
  }
}

@media (max-width: 768px) {
  .hero--text-focus {
    min-height: 500px;
    height: auto;
    min-height: clamp(500px, 100svh, 100vh);
  }

  .hero--text-focus .hero-content {
    align-items: center;
    text-align: center;
    padding-bottom: 5.5rem;
  }

  .hero--text-focus .hero-eyebrow {
    font-size: 0.8rem;
  }

  .hero--text-focus .hero-headline {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero--text-focus .hero-subtitle {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero--text-focus .hero-actions {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .hero--text-focus .btn--hero {
    width: 100%;
    max-width: 300px;
  }

  .hero--text-focus .hero-dots {
    bottom: 20px;
  }

  .hero--text-focus .hero-scroll {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero--text-focus .hero-headline {
    font-size: 1.75rem;
  }

  .hero--text-focus .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero--text-focus .btn--hero {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero--text-focus .hero-content {
    max-width: 700px;
  }

  .hero--text-focus .hero-headline {
    font-size: 3rem;
  }
}

/* Premium Google Reviews carousel */
.sk-reviews {
  max-width: 72rem;
  margin: 0 auto;
  padding-top: 0.25rem;
}

.sk-reviews__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.85rem;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 1.35rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  background: rgba(253, 248, 238, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.38);
  box-shadow: 0 10px 32px rgba(45, 15, 20, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  color: var(--brown-soft, #3d2a22);
  text-align: center;
}

.sk-reviews__summary-stars {
  color: var(--gold, #d4af37);
  letter-spacing: 0.08em;
  font-size: 1rem;
  line-height: 1;
}

.sk-reviews__summary-text strong {
  color: var(--maroon, #4a1520);
  font-weight: 700;
}

.sk-reviews__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
}

.sk-reviews__tab {
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(74, 21, 32, 0.14);
  background: rgba(255, 252, 245, 0.75);
  color: var(--brown-soft, #3d2a22);
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.sk-reviews__tab:hover {
  border-color: rgba(212, 175, 55, 0.45);
}

.sk-reviews__tab.is-active {
  background: rgba(255, 252, 245, 0.95);
  border-color: rgba(212, 175, 55, 0.65);
  color: var(--maroon, #4a1520);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.25), 0 8px 24px rgba(212, 175, 55, 0.18);
}

.sk-reviews__panel {
  margin-bottom: 0.5rem;
}

.sk-reviews__carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.35rem;
}

.sk-reviews__viewport {
  overflow: hidden;
  width: 100%;
  min-width: 0;
  min-height: 210px;
}

.sk-reviews__track {
  display: flex;
  gap: 1rem;
  will-change: transform;
}

.sk-reviews__card {
  flex: 0 0 280px;
  width: 280px;
  max-width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 1.15rem 1.2rem 1.05rem;
  border-radius: var(--radius-lg, 1rem);
  background: rgba(253, 248, 238, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.32);
  box-shadow: 0 12px 28px rgba(45, 15, 20, 0.07);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.sk-reviews__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(45, 15, 20, 0.1);
}

.sk-reviews__card-stars {
  margin: 0 0 0.65rem;
  color: var(--gold, #d4af37);
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  line-height: 1;
}

.sk-reviews__card-text {
  margin: 0 0 0.9rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--brown-soft, #3d2a22);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sk-reviews__card-foot {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: auto;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.sk-reviews__card-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-display, "Playfair Display", serif);
  color: #fff8e8;
  background: linear-gradient(145deg, var(--maroon, #4a1520), #6b2433);
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.sk-reviews__card-meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.sk-reviews__card-name {
  font-style: normal;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--maroon, #4a1520);
}

.sk-reviews__card-verified {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(61, 42, 34, 0.72);
}

.sk-reviews__card-verified::before {
  content: "✓ ";
  color: var(--gold, #d4af37);
}

.sk-reviews__card-tag {
  display: inline-block;
  width: fit-content;
  margin-top: 0.15rem;
  padding: 0.12rem 0.5rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--maroon, #4a1520);
  background: rgba(243, 228, 184, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.28);
}

.sk-reviews__arrow {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(74, 21, 32, 0.16);
  background: rgba(255, 252, 245, 0.9);
  color: var(--maroon, #4a1520);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.sk-reviews__arrow:hover {
  background: #fff;
  border-color: rgba(212, 175, 55, 0.5);
  transform: scale(1.05);
}

.sk-reviews__dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
}

.sk-reviews__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(74, 21, 32, 0.22);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    width 0.2s ease;
}

.sk-reviews__dot.is-active {
  width: 22px;
  border-radius: 6px;
  background: var(--gold, #d4af37);
}

.sk-reviews__cta {
  text-align: center;
  margin-top: 1.75rem;
  padding-top: 0.25rem;
}

.sk-reviews__cta-lead {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--brown-soft, #3d2a22);
}

.sk-reviews__cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

@media (max-width: 767px) {
  .sk-reviews__carousel {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .sk-reviews__arrow {
    display: none;
  }

  .sk-reviews__tab {
    font-size: 0.76rem;
    padding: 0.5rem 0.85rem;
  }

  .sk-reviews__cta-actions .btn {
    width: 100%;
    max-width: 18rem;
  }
}

@media (min-width: 768px) {
  .sk-reviews__carousel .sk-reviews__arrow--prev {
    margin-right: 0.15rem;
  }

  .sk-reviews__carousel .sk-reviews__arrow--next {
    margin-left: 0.15rem;
  }
}

/* Scroll animations */
.sk-aos {
  opacity: 0;
  transition:
    opacity 0.7s ease var(--sk-aos-delay, 0ms),
    transform 0.7s ease var(--sk-aos-delay, 0ms);
  will-change: opacity, transform;
}

.sk-aos--visible {
  opacity: 1;
  transform: none !important;
}

.sk-aos--fade-up {
  transform: translateY(28px);
}

.sk-aos--fade-in {
  transform: none;
}

.sk-aos--zoom-in {
  transform: scale(0.92);
}

.sk-aos--slide-left {
  transform: translateX(-28px);
}

.sk-aos--slide-right {
  transform: translateX(28px);
}

.sk-aos--flip-up {
  transform: perspective(800px) rotateX(12deg);
}

/* WhatsApp widget */
.whatsapp-float--legacy {
  display: none !important;
}

.wa-widget {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 120;
}

.wa-widget__toggle {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  background: #25d366;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  display: grid;
  place-items: center;
}

.wa-widget__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: skWaPulse 2s infinite;
}

@keyframes skWaPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

.wa-widget__badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #c41e3a;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.wa-widget__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.65rem);
  width: min(320px, calc(100vw - 2rem));
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(74, 21, 32, 0.22);
  overflow: hidden;
  transform-origin: bottom right;
  transform: scale(0.92);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.25s ease;
}

.wa-widget.is-open .wa-widget__panel {
  transform: scale(1);
  opacity: 1;
}

.wa-widget__panel[hidden] {
  display: block !important;
  visibility: hidden;
  pointer-events: none;
}

.wa-widget.is-open .wa-widget__panel[hidden] {
  visibility: visible;
  pointer-events: auto;
}

.wa-widget__header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, var(--maroon, #4a1520), #6b2433);
  color: #fff;
}

.wa-widget__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold, #d4af37);
  color: var(--maroon, #4a1520);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.wa-widget__info strong {
  display: block;
  font-size: 0.95rem;
}

.wa-widget__status {
  font-size: 0.75rem;
  opacity: 0.9;
}

.wa-widget__status::before {
  content: "● ";
  color: #7cfc7c;
}

.wa-widget__close {
  margin-left: auto;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}

.wa-widget__body {
  padding: 0.85rem 1rem 0.5rem;
}

.wa-widget__msg {
  background: #f3f0eb;
  border-radius: 12px 12px 12px 4px;
  padding: 0.65rem 0.75rem;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.wa-widget__replies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
}

.wa-widget__reply {
  border: 1px solid rgba(74, 21, 32, 0.15);
  background: #faf8f5;
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  font-size: 0.78rem;
  cursor: pointer;
}

.wa-widget__reply:hover {
  border-color: var(--gold, #d4af37);
}

.wa-widget__cta {
  display: block;
  margin: 0.5rem 1rem 1rem;
  text-align: center;
  font-size: 0.85rem;
}

/* Trust section */
.trust-section {
  padding: 3rem 0;
  background: linear-gradient(180deg, rgba(250, 248, 245, 0), rgba(212, 175, 55, 0.08));
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.trust-badge {
  text-align: center;
  padding: 1.25rem 0.75rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(74, 21, 32, 0.08);
}

.trust-badge__score {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--maroon, #4a1520);
}

.trust-badge__stars {
  color: var(--gold, #d4af37);
  letter-spacing: 0.08em;
}

.trust-badge__label {
  font-size: 0.82rem;
  margin-top: 0.35rem;
  opacity: 0.85;
}

.trust-badge__num {
  font-size: 2rem;
  font-weight: 600;
  color: var(--maroon, #4a1520);
  font-family: var(--font-display, "Playfair Display", serif);
}

.trust-badge__suffix {
  font-size: 1.25rem;
  color: var(--gold, #d4af37);
}

/* Trust section — premium homepage */
.trust-section--premium {
  position: relative;
  overflow: hidden;
  padding: clamp(1.75rem, 3.5vw, 2.75rem) 0;
  background: linear-gradient(
    180deg,
    rgba(255, 252, 245, 0.55) 0%,
    rgba(253, 248, 238, 0.96) 42%,
    rgba(249, 244, 232, 1) 100%
  );
}

.trust-section--premium__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.38;
  background-image:
    radial-gradient(circle at center, rgba(212, 175, 55, 0.14) 1px, transparent 1.1px),
    radial-gradient(circle at center, rgba(232, 168, 152, 0.1) 1px, transparent 1.1px);
  background-size: 28px 28px, 14px 14px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}

.trust-section--premium__glow {
  position: absolute;
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  left: 50%;
  top: 20%;
  transform: translateX(-50%);
  border-radius: 50%;
  pointer-events: none;
  background: rgba(232, 168, 152, 0.2);
  filter: blur(64px);
}

.trust-section--premium .container {
  position: relative;
  z-index: 1;
}

.trust-premium__subheading {
  margin: 0.5rem 0 0;
  font-family: var(--font-sans, "Inter", system-ui, -apple-system, sans-serif);
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.95);
}

.trust-premium__intro {
  max-width: 40rem;
  margin: 1rem auto 0;
  font-family: var(--font-sans, "Inter", system-ui, -apple-system, sans-serif);
  font-size: clamp(1rem, 1.7vw, 1.08rem);
  line-height: 1.75;
  color: var(--brown-soft, #3d2a22);
}

.trust-premium__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
  align-items: stretch;
}

.trust-premium-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  margin: 0;
  padding: clamp(1.35rem, 2.5vw, 1.65rem) clamp(1.15rem, 2vw, 1.4rem);
  border-radius: var(--radius-lg, 1rem);
  background: rgba(255, 252, 245, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: 0 12px 32px rgba(45, 15, 20, 0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.trust-premium-card::before,
.trust-premium-card::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  pointer-events: none;
  opacity: 0.85;
  transition: opacity 0.35s ease;
}

.trust-premium-card::before {
  top: 12px;
  left: 12px;
  border-top: 2px solid rgba(212, 175, 55, 0.62);
  border-left: 2px solid rgba(212, 175, 55, 0.62);
}

.trust-premium-card::after {
  right: 12px;
  bottom: 12px;
  border-right: 2px solid rgba(212, 175, 55, 0.62);
  border-bottom: 2px solid rgba(212, 175, 55, 0.62);
}

.trust-premium-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.48);
  box-shadow:
    0 20px 44px rgba(45, 15, 20, 0.1),
    0 0 24px rgba(212, 175, 55, 0.12);
}

.trust-premium-card:hover::before,
.trust-premium-card:hover::after {
  opacity: 1;
}

.trust-premium-card__title {
  margin: 0 0 0.55rem;
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--maroon, #4a1520);
}

.trust-premium-card__text {
  margin: 0;
  flex: 1;
  font-family: var(--font-sans, "Inter", system-ui, -apple-system, sans-serif);
  font-size: clamp(0.9rem, 1.5vw, 0.98rem);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: rgba(61, 42, 34, 0.88);
}

@media (max-width: 1024px) {
  .trust-premium__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .trust-premium-card {
    padding: 1.25rem 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-premium-card,
  .trust-premium-card::before,
  .trust-premium-card::after {
    transition: none;
  }

  .trust-premium-card:hover {
    transform: none;
  }
}


/* Gallery upgrades */
.sk-gallery__grid.is-filtering .sk-gallery__item {
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.sk-gallery__item.is-filter-out {
  opacity: 0;
  transform: scale(0.92);
  pointer-events: none;
}

.sk-gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74, 21, 32, 0.88) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  color: #fff;
  text-align: left;
}

.sk-gallery__item:hover .sk-gallery__overlay {
  opacity: 1;
}

.sk-gallery__tag {
  display: inline-block;
  background: var(--gold, #d4af37);
  color: var(--maroon, #4a1520);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.35rem;
  width: fit-content;
}

.sk-lightbox__counter {
  position: absolute;
  top: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 0.85rem;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.sk-lightbox__share {
  position: absolute;
  top: 0.75rem;
  right: 3.5rem;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border-radius: 8px;
  padding: 0.35rem 0.65rem;
  font-size: 0.8rem;
  cursor: pointer;
}

/* Micro-interactions */
.btn--primary:hover,
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(74, 21, 32, 0.22);
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus,
.celebration-form-card input:focus,
.celebration-form-card select:focus,
.celebration-form-card textarea:focus {
  border-color: var(--gold, #d4af37);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
}

img[loading="lazy"] {
  background: linear-gradient(110deg, #ece8e0 8%, #f7f4ef 18%, #ece8e0 33%);
  background-size: 200% 100%;
}

img[loading="lazy"]:not([src=""]) {
  animation: skShimmer 1.4s linear infinite;
}

@keyframes skShimmer {
  to {
    background-position-x: -200%;
  }
}

img.sk-loaded {
  animation: none;
  background: none;
}

/* Before/after sliders */
.section--before-after {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: linear-gradient(135deg, #faf8f5 0%, #ffffff 100%);
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.before-after-container--single {
  max-width: 800px;
  margin: 2.5rem auto 0;
}

.before-after-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(74, 21, 32, 0.15);
  cursor: ew-resize;
}

.before-after-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.before-after-img--after {
  z-index: 1;
}

.before-after-img--before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.before-after-slider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--gold, #d4af37);
  z-index: 3;
  transform: translateX(-50%);
}

.before-after-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: #fff;
  border: 3px solid var(--gold, #d4af37);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(74, 21, 32, 0.2);
  cursor: grab;
  display: grid;
  place-items: center;
  color: var(--maroon, #4a1520);
  font-size: 1.1rem;
  font-weight: 700;
}

.before-after-handle.is-dragging {
  cursor: grabbing;
}

.before-after-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding: 0 0.5rem;
}

.before-after-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--maroon, #4a1520);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Smart WhatsApp widget */
.whatsapp-float,
.wa-widget {
  display: none !important;
}

.sk-wa-widget {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 1200;
}

.sk-wa-toggle {
  position: relative;
  width: 60px;
  height: 60px;
  background: #25d366;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  display: grid;
  place-items: center;
  color: #fff;
  transition: transform 0.25s ease;
}

.sk-wa-toggle:hover {
  transform: scale(1.08);
}

.sk-wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: skWaPulse 2s infinite;
}

@keyframes skWaPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

.sk-wa-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  background: #c41e3a;
  color: #fff;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
}

.sk-wa-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.65rem);
  width: min(340px, calc(100vw - 2rem));
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* glass-panel adds contact-form padding — reset for chat card */
.sk-wa-panel.glass-panel {
  padding: 0;
  background: rgba(255, 255, 255, 0.92);
}

.sk-wa-panel.is-visible,
.sk-wa-widget.is-expanded .sk-wa-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.sk-wa-panel[hidden] {
  display: block !important;
  visibility: hidden;
  pointer-events: none;
}

.sk-wa-widget.is-expanded .sk-wa-panel[hidden] {
  visibility: visible;
  pointer-events: auto;
}

.sk-wa-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: linear-gradient(135deg, #4a1520, #6b2433);
  color: #fff;
}

.sk-wa-avatar {
  width: 44px;
  height: 44px;
  background: var(--gold, #d4af37);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.sk-wa-avatar::before,
.sk-wa-avatar::after {
  content: none !important;
  display: none !important;
}

.sk-wa-avatar-letter {
  font-weight: 700;
  color: var(--maroon, #4a1520);
}

.sk-wa-name {
  margin: 0;
  font-size: 1rem;
}

.sk-wa-status {
  margin: 0.15rem 0 0;
  font-size: 0.8rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.sk-wa-status::before,
.sk-wa-status::after {
  content: none !important;
  display: none !important;
}

/* Legacy duplicate indicators (avatar dot + bullet) — keep hidden */
.sk-wa-status-dot,
.sk-wa-status-icon {
  display: none !important;
}

.sk-wa-online-dot {
  width: 8px;
  height: 8px;
  background: #25d366;
  border-radius: 50%;
  flex-shrink: 0;
}

.sk-wa-close {
  margin-left: auto;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.sk-wa-body {
  padding: 1rem;
  background: #faf8f5;
}

.sk-wa-message-text {
  margin: 0;
  background: #fff;
  padding: 0.65rem 0.85rem;
  border-radius: 0 12px 12px 12px;
  display: inline-block;
  max-width: 90%;
  font-size: 0.9rem;
  line-height: 1.45;
}

.sk-wa-timestamp {
  display: block;
  font-size: 0.72rem;
  color: #888;
  margin-top: 0.25rem;
}

.sk-wa-quick-replies {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #fff;
  border-top: 1px solid #eee;
}

.sk-wa-quick-reply {
  border: 1px solid #e0d5c7;
  background: #faf8f5;
  border-radius: 8px;
  padding: 0.45rem 0.55rem;
  font-size: 0.78rem;
  cursor: pointer;
  text-align: left;
}

.sk-wa-quick-reply:hover {
  background: var(--maroon, #4a1520);
  color: #fff;
  border-color: var(--maroon, #4a1520);
}

.sk-wa-cta {
  display: block;
  margin: 0 1rem 1rem;
  text-align: center;
  text-decoration: none;
}

/* Pricing tables */
.section--pricing {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  position: relative;
  background: #fff;
  border: 2px solid #e0d5c7;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(74, 21, 32, 0.12);
  border-color: var(--gold, #d4af37);
}

.pricing-card--featured {
  border-color: var(--gold, #d4af37);
  border-width: 3px;
  background: linear-gradient(135deg, #fff, #fefdfb);
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold, #d4af37);
  color: var(--maroon, #4a1520);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-card__tier {
  font-size: 1rem;
  font-weight: 600;
  color: var(--maroon, #4a1520);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.15rem;
  margin-bottom: 0.75rem;
}

.pricing-card__currency {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--maroon, #4a1520);
}

.pricing-card__amount {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--maroon, #4a1520);
  line-height: 1;
}

.pricing-card__period {
  font-size: 0.95rem;
  color: #666;
}

.pricing-card__desc {
  color: #666;
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  text-align: left;
  flex: 1;
}

.pricing-card__features li {
  padding: 0.55rem 0;
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
  border-bottom: 1px solid #f0f0f0;
}

.pricing-card__features li:last-child {
  border-bottom: none;
}

.pricing-card__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--gold, #d4af37);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  font-weight: 700;
}

.pricing-card__icon--na {
  background: #e0e0e0;
  color: #999;
}

.pricing-card__min {
  font-size: 0.82rem;
  color: #888;
  font-style: italic;
  margin: -0.5rem 0 1rem;
}

.pricing-note {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: #fefdfb;
  border-left: 4px solid var(--gold, #d4af37);
  border-radius: 8px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-note p {
  margin: 0;
  color: var(--maroon, #4a1520);
  line-height: 1.6;
}

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

  .before-after-wrapper {
    aspect-ratio: 4 / 3;
  }

  .sk-wa-panel {
    width: calc(100vw - 2rem);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sk-aos,
  .sk-reviews__track,
  .sk-reviews__card,
  .wa-widget__panel,
  .sk-wa-panel,
  .before-after-img--before {
    transition: none !important;
    animation: none !important;
  }

  .hero--text-focus .hero-slide {
    transition: opacity 0.3s ease !important;
  }

  .hero--text-focus .hero-eyebrow,
  .hero--text-focus .hero-headline-line,
  .hero--text-focus .hero-subtitle,
  .hero--text-focus .hero-actions {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero--text-focus .hero-scroll-line {
    animation: none !important;
  }

  .sk-wa-pulse {
    animation: none !important;
  }
}


.section--founder {
  position: relative;
  overflow: visible;
  padding-block: clamp(1.75rem, 3.5vw, 2.75rem);
}

/* ========================================
   OUR STORY — Premium family kitchen (scoped)
   ======================================== */

.story-premium {
  display: flex;
  flex-direction: column;
  gap: clamp(1.35rem, 2.8vw, 2rem);
  min-width: 0;
}

.story-premium__head {
  margin-bottom: 0;
}

.story-premium__lead {
  margin: 0.85rem auto 0;
  max-width: 42rem;
  font-size: clamp(0.98rem, 1.65vw, 1.08rem);
  line-height: 1.7;
  color: var(--brown-soft, #3d2a22);
}

.story-intro-card,
.story-profile-card--founder,
.story-profile-card--chef {
  --story-tex-gold: rgba(212, 175, 55, 0.42);
  --story-tex-blush: rgba(232, 168, 152, 0.22);
  isolation: isolate;
  overflow: hidden;
}

.story-intro-card {
  position: relative;
  max-width: 56rem;
  margin-inline: auto;
  padding: clamp(1.35rem, 2.5vw, 1.85rem) clamp(1.25rem, 2.5vw, 2rem);
  border-radius: clamp(28px, 3vw, 34px);
  border: 1px solid rgba(212, 175, 55, 0.48);
  background:
    linear-gradient(
      155deg,
      rgba(255, 253, 248, 0.97) 0%,
      rgba(249, 244, 232, 0.94) 52%,
      rgba(252, 238, 232, 0.42) 100%
    );
  box-shadow:
    0 20px 48px rgba(45, 15, 20, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -24px 48px rgba(212, 175, 55, 0.04);
  min-width: 0;
}

/* Welcome card — kolam dots + linen weave */
.story-intro-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
  background-image:
    radial-gradient(ellipse 55% 45% at 12% 8%, rgba(212, 175, 55, 0.14), transparent 68%),
    radial-gradient(ellipse 50% 40% at 92% 88%, rgba(232, 168, 152, 0.18), transparent 65%),
    radial-gradient(circle at center, rgba(212, 175, 55, 0.11) 0.85px, transparent 0.95px),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(212, 175, 55, 0.03) 3px,
      rgba(212, 175, 55, 0.03) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 3px,
      rgba(74, 21, 32, 0.018) 3px,
      rgba(74, 21, 32, 0.018) 4px
    );
  background-size:
    100% 100%,
    100% 100%,
    26px 26px,
    100% 100%,
    100% 100%;
  mask-image: radial-gradient(ellipse 95% 90% at 50% 45%, #000 35%, transparent 88%);
}

.story-intro-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 42px;
  border-top: 2px solid rgba(212, 175, 55, 0.72);
  border-left: 2px solid rgba(212, 175, 55, 0.72);
  border-radius: 28px 0 0 0;
  pointer-events: none;
  z-index: 2;
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.35);
}

.story-intro-card > * {
  position: relative;
  z-index: 1;
}

.story-intro-card__mark {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1;
  color: rgba(212, 175, 55, 0.55);
}

.story-intro-card p {
  margin: 0 0 0.95rem;
  font-size: clamp(0.94rem, 1.5vw, 1.02rem);
  line-height: 1.75;
  color: var(--brown-soft, #3d2a22);
}

.story-intro-card p:last-child {
  margin-bottom: 0;
}

.story-intro-card strong {
  color: var(--maroon, #4a1520);
  font-weight: 600;
}

.story-intro-card:hover {
  border-color: rgba(212, 175, 55, 0.58);
  box-shadow:
    0 24px 52px rgba(45, 15, 20, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 0 0 1px rgba(212, 175, 55, 0.06);
}

.story-leadership {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  min-width: 0;
}

.story-profile-card {
  position: relative;
  display: grid;
  align-items: center;
  gap: clamp(1.15rem, 2.5vw, 2rem);
  padding: clamp(1.25rem, 2.5vw, 1.85rem);
  border-radius: 32px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: linear-gradient(
    145deg,
    rgba(255, 252, 245, 0.98) 0%,
    rgba(252, 238, 232, 0.32) 100%
  );
  box-shadow:
    0 22px 52px rgba(45, 15, 20, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  min-width: 0;
}

.story-profile-card > * {
  position: relative;
  z-index: 1;
}

/* Founder card — warm silk + soft kolam */
.story-profile-card--founder::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(ellipse 48% 42% at 8% 18%, rgba(232, 168, 152, 0.2), transparent 70%),
    radial-gradient(ellipse 40% 38% at 96% 12%, rgba(212, 175, 55, 0.12), transparent 68%),
    radial-gradient(circle at center, rgba(212, 175, 55, 0.09) 0.75px, transparent 0.85px),
    repeating-linear-gradient(
      118deg,
      transparent 0 11px,
      rgba(255, 255, 255, 0.35) 11px 12px,
      transparent 12px 24px
    ),
    repeating-linear-gradient(
      -118deg,
      transparent 0 14px,
      rgba(212, 175, 55, 0.04) 14px 15px,
      transparent 15px 30px
    );
  background-size:
    100% 100%,
    100% 100%,
    22px 22px,
    100% 100%,
    100% 100%;
  opacity: 0.92;
  mask-image: radial-gradient(ellipse 98% 95% at 42% 50%, #000 40%, transparent 92%);
}

.story-profile-card--founder::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48px;
  height: 48px;
  border-bottom: 2px solid rgba(212, 175, 55, 0.55);
  border-right: 2px solid rgba(212, 175, 55, 0.55);
  border-radius: 0 0 32px 0;
  pointer-events: none;
  z-index: 2;
}

/* Catering Lead card — deeper maroon-gold elegance */
.story-profile-card--chef::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(ellipse 50% 45% at 92% 22%, rgba(74, 21, 32, 0.06), transparent 72%),
    radial-gradient(ellipse 45% 40% at 6% 88%, rgba(212, 175, 55, 0.14), transparent 70%),
    radial-gradient(circle at center, rgba(139, 105, 20, 0.08) 0.7px, transparent 0.8px),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 4px,
      rgba(212, 175, 55, 0.035) 4px,
      rgba(212, 175, 55, 0.035) 5px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 4px,
      rgba(45, 15, 20, 0.02) 4px,
      rgba(45, 15, 20, 0.02) 5px
    );
  background-size:
    100% 100%,
    100% 100%,
    24px 24px,
    100% 100%,
    100% 100%;
  opacity: 0.9;
  mask-image: radial-gradient(ellipse 98% 95% at 58% 50%, #000 40%, transparent 92%);
}

.story-profile-card--chef::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-top: 2px solid rgba(212, 175, 55, 0.5);
  border-right: 2px solid rgba(212, 175, 55, 0.5);
  border-radius: 0 32px 0 0;
  pointer-events: none;
  z-index: 2;
}

.story-profile-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow:
    0 28px 60px rgba(45, 15, 20, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 0 0 1px rgba(212, 175, 55, 0.08);
}

.story-profile-card--founder {
  grid-template-columns: minmax(0, 42%) minmax(0, 1fr);
  background: linear-gradient(
    128deg,
    rgba(255, 253, 248, 0.98) 0%,
    rgba(252, 241, 234, 0.55) 48%,
    rgba(255, 252, 245, 0.96) 100%
  );
}

.story-profile-card--chef {
  grid-template-columns: minmax(0, 1fr) minmax(0, 42%);
  background: linear-gradient(
    232deg,
    rgba(255, 252, 245, 0.97) 0%,
    rgba(248, 236, 228, 0.45) 50%,
    rgba(255, 251, 246, 0.98) 100%
  );
}

.story-profile-media {
  min-width: 0;
  width: 100%;
}

.story-profile-media__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: min(560px, 72vh);
  margin: 0;
  overflow: hidden;
  border-radius: clamp(22px, 3vw, 28px);
  border: 3px solid rgba(212, 175, 55, 0.58);
  box-shadow:
    0 0 0 8px rgba(232, 168, 152, 0.14),
    0 22px 44px rgba(74, 21, 32, 0.14);
  background: var(--ivory-deep, #f0ebe3);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.story-profile-card:hover .story-profile-media__frame {
  transform: scale(1.01);
}

.story-profile-media__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Founder portraits — full visibility on desktop */
@media (min-width: 901px) {
  .story-profile-media__frame {
    aspect-ratio: auto;
    max-height: none;
    height: auto;
    overflow: visible;
    background: linear-gradient(145deg, rgba(255, 252, 245, 0.98), rgba(252, 238, 232, 0.55));
  }

  .story-profile-media__img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
  }

  .story-profile-card:hover .story-profile-media__frame {
    transform: none;
  }
}



.story-profile-badge {
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  transform: translateX(-50%);
  z-index: 2;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--maroon-deep, #2d0f14);
  background: rgba(255, 252, 245, 0.94);
  border: 1px solid rgba(212, 175, 55, 0.5);
  box-shadow: 0 10px 22px rgba(45, 15, 20, 0.12);
  max-width: calc(100% - 1.5rem);
  overflow: hidden;
  text-overflow: ellipsis;
}

.story-profile-badge--chef {
  font-size: 0.6rem;
  letter-spacing: 0.08em;
}

.story-profile-content {
  display: flex;
  flex-direction: column;
  gap: clamp(0.85rem, 1.8vw, 1.1rem);
  min-width: 0;
}

.story-profile-content__head {
  margin: 0;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.28);
}

.story-profile-content__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep, #8b6914);
}

.story-profile-content__name {
  margin: 0;
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--maroon-deep, #2d0f14);
}

.story-profile-content__role {
  margin: 0.35rem 0 0;
  font-size: clamp(0.88rem, 1.4vw, 0.98rem);
  font-weight: 600;
  color: var(--maroon, #4a1520);
}

.story-profile-content__body p {
  margin: 0 0 0.85rem;
  font-size: clamp(0.9rem, 1.4vw, 0.98rem);
  line-height: 1.72;
  color: var(--brown-soft, #3d2a22);
}

.story-profile-content__body p:last-child {
  margin-bottom: 0;
}

.story-profile-content__body strong {
  color: var(--maroon, #4a1520);
  font-weight: 600;
}

.story-profile-quote {
  margin: 0;
  padding: clamp(0.9rem, 1.8vw, 1.15rem) clamp(1rem, 2vw, 1.25rem);
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.32);
  background:
    linear-gradient(135deg, rgba(255, 252, 245, 0.88) 0%, rgba(252, 238, 232, 0.35) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 0 24px rgba(212, 175, 55, 0.04);
  position: relative;
  overflow: hidden;
}

.story-profile-quote::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image: radial-gradient(circle at 12% 20%, rgba(212, 175, 55, 0.12) 1px, transparent 1.1px);
  background-size: 18px 18px;
}

.story-profile-quote p,
.story-profile-quote cite {
  position: relative;
  z-index: 1;
}

.story-profile-quote p {
  margin: 0;
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--maroon, #4a1520);
}

.story-profile-quote cite {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-deep, #8b6914);
}

.story-highlights {
  min-width: 0;
}

.story-highlights__title {
  margin: 0 0 clamp(0.85rem, 1.8vw, 1.1rem);
  text-align: center;
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 600;
  color: var(--maroon-deep, #2d0f14);
}

.story-highlights__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.65rem, 1.2vw, 0.85rem);
}

.story-highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  min-width: 0;
  padding: clamp(0.75rem, 1.4vw, 0.95rem) clamp(0.7rem, 1.2vw, 0.9rem);
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(255, 252, 245, 0.88);
  box-shadow: 0 10px 28px rgba(45, 15, 20, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.story-highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  border-top: 1px solid rgba(212, 175, 55, 0.5);
  border-left: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 14px 0 0 0;
  pointer-events: none;
}

.story-highlight-card {
  position: relative;
}

.story-highlight-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(45, 15, 20, 0.09);
}

.story-highlight-card__icon {
  flex-shrink: 0;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--gold, #d4af37);
}

.story-highlight-card__label {
  font-size: clamp(0.78rem, 1.1vw, 0.88rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--brown-soft, #3d2a22);
}

.story-promise-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: start;
  padding: clamp(1.35rem, 2.5vw, 1.85rem);
  border-radius: clamp(28px, 3vw, 32px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: linear-gradient(
    135deg,
    rgba(255, 252, 245, 0.97) 0%,
    rgba(249, 244, 232, 0.9) 100%
  );
  box-shadow: 0 20px 48px rgba(45, 15, 20, 0.08);
  overflow: hidden;
  min-width: 0;
}

.story-promise-card__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: radial-gradient(circle at center, rgba(212, 175, 55, 0.14) 1px, transparent 1.1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 90% 80% at 30% 20%, #000 15%, transparent 75%);
}

.story-promise-card__copy,
.story-promise-card__list {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.story-promise-card__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: clamp(1.35rem, 2.2vw, 1.6rem);
  font-weight: 600;
  color: var(--maroon-deep, #2d0f14);
}

.story-promise-card__copy p {
  margin: 0 0 0.85rem;
  font-size: clamp(0.92rem, 1.45vw, 1rem);
  line-height: 1.72;
  color: var(--brown-soft, #3d2a22);
}

.story-promise-card__copy p:last-child {
  margin-bottom: 0;
}

.story-promise-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.story-promise-card__list li {
  position: relative;
  padding-left: 1.45rem;
  font-size: clamp(0.88rem, 1.3vw, 0.95rem);
  line-height: 1.55;
  color: var(--brown-soft, #3d2a22);
}

.story-promise-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05em;
  font-weight: 700;
  color: var(--gold-deep, #8b6914);
}

.story-cta {
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.15rem, 2.5vw, 1.75rem);
  border-radius: clamp(26px, 3vw, 32px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: linear-gradient(
    145deg,
    rgba(74, 21, 32, 0.96) 0%,
    rgba(45, 15, 20, 0.98) 100%
  );
  box-shadow: 0 22px 48px rgba(45, 15, 20, 0.18);
  min-width: 0;
}

.story-cta__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 600;
  color: #fff8e8;
}

.story-cta__text {
  margin: 0 auto clamp(1.1rem, 2vw, 1.35rem);
  max-width: 38rem;
  font-size: clamp(0.92rem, 1.45vw, 1rem);
  line-height: 1.65;
  color: rgba(255, 248, 232, 0.88);
}

.story-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.story-cta__btn {
  min-width: min(100%, 16rem);
}

.story-cta__btn .btn-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.story-cta__btn:hover .btn-arrow {
  transform: translateX(3px);
}

.story-cta .btn--ghost {
  color: #fff8e8;
  border-color: rgba(212, 175, 55, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

.story-cta .btn--ghost:hover {
  color: var(--maroon-deep, #2d0f14);
  background: rgba(255, 252, 245, 0.92);
}

.section--founder .service-pathways--story {
  margin-top: clamp(0.5rem, 1.5vw, 0.85rem);
  padding-top: clamp(1rem, 2vw, 1.35rem);
  border-top: 1px solid rgba(212, 175, 55, 0.22);
}

@media (max-width: 1024px) {
  .story-profile-card--founder,
  .story-profile-card--chef {
    grid-template-columns: minmax(0, 40%) minmax(0, 1fr);
  }

  .story-highlights__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .story-profile-card--chef .story-profile-content {
    order: 2;
  }

  .story-profile-card--chef .story-profile-media {
    order: 1;
  }

  .story-profile-card--founder .story-profile-media {
    order: 1;
  }

  .story-profile-card--founder .story-profile-content {
    order: 2;
  }

  .story-profile-media__frame {
    max-height: min(480px, 65vh);
    aspect-ratio: 5 / 6;
  }

  .story-promise-card {
    grid-template-columns: 1fr;
  }

  .story-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .story-cta__btn {
    width: 100%;
    justify-content: center;
  }
}

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

  .story-intro-card,
  .story-profile-card,
  .story-promise-card {
    padding: 1.15rem 1rem;
    border-radius: 24px;
  }

  .story-profile-media__frame {
    aspect-ratio: 4 / 5;
    max-height: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-profile-card,
  .story-profile-media__frame,
  .story-highlight-card,
  .story-cta__btn .btn-arrow {
    transition: none;
  }

  .story-profile-card:hover,
  .story-profile-card:hover .story-profile-media__frame,
  .story-highlight-card:hover {
    transform: none;
  }

  .story-cta__btn:hover .btn-arrow {
    transform: none;
  }

  .story-intro-card::before,
  .story-profile-card--founder::before,
  .story-profile-card--chef::before {
    opacity: 0.35;
  }
}

/* ========================================
   SERVICE PATHWAY CARDS
   ======================================== */

.service-pathways__head {
  margin-bottom: clamp(1.1rem, 2.5vw, 1.5rem);
}

.service-pathways__lead {
  max-width: 42rem;
  margin: 0.85rem auto 0;
  font-size: clamp(1rem, 1.85vw, 1.08rem);
  line-height: 1.7;
  color: var(--brown-soft, #3d2a22);
}

.service-pathways__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  align-items: stretch;
}

.pathway-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-xl, 1.25rem);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.38);
  box-shadow:
    0 20px 48px rgba(45, 15, 20, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.pathway-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.52);
  box-shadow:
    0 28px 60px rgba(45, 15, 20, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  color: inherit;
}

.pathway-card__glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(56px);
  opacity: 0.85;
  transition: opacity 0.35s ease;
}

.pathway-card--bakes {
  background: linear-gradient(145deg, #fff9f6 0%, #fceee8 52%, #f8e4dc 100%);
}

.pathway-card--bakes .pathway-card__glow {
  width: min(280px, 55%);
  height: min(280px, 55%);
  right: -12%;
  top: -8%;
  background: rgba(232, 168, 152, 0.42);
}

.pathway-card--catering {
  background: linear-gradient(145deg, #fdfaf2 0%, #f5ecd0 50%, #efe0b8 100%);
}

.pathway-card--catering .pathway-card__glow {
  width: min(300px, 58%);
  height: min(300px, 58%);
  right: -10%;
  top: -6%;
  background: rgba(212, 175, 55, 0.32);
}

.pathway-card:hover .pathway-card__glow {
  opacity: 1;
}

.pathway-card__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: center;
  min-height: clamp(280px, 28vw, 340px);
  padding: clamp(1.35rem, 2.5vw, 2rem);
}

.pathway-card__content {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  min-width: 0;
  padding-right: clamp(0.25rem, 1vw, 0.5rem);
}

.pathway-card__title {
  margin: 0;
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--maroon, #4a1520);
}

.pathway-card__desc {
  margin: 0;
  font-size: clamp(0.92rem, 1.6vw, 1rem);
  line-height: 1.65;
  color: var(--brown-soft, #3d2a22);
}

.pathway-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.5rem;
  margin: 0.15rem 0 0;
  padding: 0;
  list-style: none;
}

.pathway-card__chips li {
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--maroon, #4a1520);
  background: rgba(255, 252, 245, 0.88);
  border: 1px solid rgba(212, 175, 55, 0.32);
  box-shadow: 0 4px 12px rgba(45, 15, 20, 0.04);
}

.pathway-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  margin-top: 0.35rem;
  padding: 0.72rem 1.25rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ivory, #fff8e8);
  background: var(--maroon, #4a1520);
  border: 1px solid rgba(74, 21, 32, 0.35);
  box-shadow: 0 8px 20px rgba(74, 21, 32, 0.18);
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    gap 0.3s ease;
}

.pathway-card__cta--gold {
  color: var(--maroon-deep, #3a1018);
  background: linear-gradient(120deg, #e8c76b, var(--temple-gold, #d4af37));
  border-color: rgba(139, 105, 20, 0.4);
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.28);
}

.pathway-card:hover .pathway-card__cta {
  gap: 0.75rem;
  box-shadow: 0 10px 26px rgba(74, 21, 32, 0.22);
}

.pathway-card:hover .pathway-card__cta--gold {
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.35);
}

.pathway-card__cta-arrow {
  display: inline-block;
  font-size: 1.1em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.pathway-card:hover .pathway-card__cta-arrow {
  transform: translateX(5px);
}

.pathway-card__media {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 100%;
  justify-self: end;
}

.pathway-card__media img {
  display: block;
  width: 100%;
  height: clamp(200px, 22vw, 280px);
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  border: 2px solid rgba(212, 175, 55, 0.45);
  box-shadow:
    0 0 0 6px rgba(255, 252, 245, 0.5),
    0 16px 36px rgba(74, 21, 32, 0.14);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.pathway-card:hover .pathway-card__media img {
  transform: scale(1.02);
  box-shadow:
    0 0 0 8px rgba(255, 252, 245, 0.55),
    0 20px 42px rgba(74, 21, 32, 0.16);
}

@media (max-width: 1024px) {
  .pathway-card__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 1.35rem;
  }

  .pathway-card__media {
    order: -1;
    justify-self: stretch;
  }

  .pathway-card__media img {
    height: clamp(200px, 42vw, 260px);
  }

  .pathway-card__content {
    padding-right: 0;
  }
}

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

  .pathway-card__cta {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pathway-card,
  .pathway-card__media img,
  .pathway-card__cta,
  .pathway-card__cta-arrow {
    transition: none;
  }

  .pathway-card:hover,
  .pathway-card:hover .pathway-card__media img,
  .pathway-card:hover .pathway-card__cta-arrow {
    transform: none;
  }
}

/* ========================================
   PORTFOLIO PREVIEW — Bento gallery
   ======================================== */

.section--portfolio-preview {
  position: relative;
  overflow: hidden;
  padding-block: clamp(1.75rem, 3.5vw, 2.75rem);
  background: linear-gradient(
    180deg,
    rgba(253, 248, 238, 0.55) 0%,
    rgba(255, 252, 245, 0.92) 38%,
    rgba(249, 244, 232, 0.98) 100%
  );
}

.section--portfolio-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at center, rgba(212, 175, 55, 0.14) 1px, transparent 1.1px),
    radial-gradient(circle at center, rgba(232, 168, 152, 0.1) 1px, transparent 1.1px);
  background-size: 28px 28px, 14px 14px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.section--portfolio-preview .container {
  position: relative;
  z-index: 1;
}

.portfolio-preview__lead {
  max-width: 40rem;
  margin-inline: auto;
}

.portfolio-bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(200px, 220px);
  gap: clamp(0.85rem, 1.8vw, 1.15rem);
  margin-top: clamp(1.1rem, 2.5vw, 1.5rem);
}

.portfolio-card {
  position: relative;
  display: block;
  min-height: 100%;
  border-radius: var(--radius-lg, 1rem);
  overflow: hidden;
  text-decoration: none;
  color: #fff8e8;
  border: 1px solid rgba(212, 175, 55, 0.42);
  box-shadow:
    0 16px 40px rgba(45, 15, 20, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.portfolio-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -30% -20%;
  height: 55%;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 80% at 50% 100%, rgba(232, 168, 152, 0.22), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.58);
  box-shadow:
    0 24px 52px rgba(45, 15, 20, 0.14),
    0 0 0 1px rgba(232, 168, 152, 0.2);
}

.portfolio-card:hover::after {
  opacity: 1;
}

.portfolio-card--featured {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.portfolio-card--wide {
  grid-column: 3 / 5;
  grid-row: 1;
}

.portfolio-card:nth-child(3) {
  grid-column: 3;
  grid-row: 2;
}

.portfolio-card:nth-child(4) {
  grid-column: 4;
  grid-row: 2;
}

.portfolio-card--span:nth-child(5) {
  grid-column: 1 / 3;
  grid-row: 3;
}

.portfolio-card--span:nth-child(6) {
  grid-column: 3 / 5;
  grid-row: 3;
}

.portfolio-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}

.portfolio-card:hover img {
  transform: scale(1.06);
}

.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(45, 15, 20, 0.82) 0%,
    rgba(45, 15, 20, 0.35) 42%,
    rgba(45, 15, 20, 0.08) 100%
  );
  pointer-events: none;
}

.portfolio-card__body {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(1rem, 2vw, 1.35rem);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.portfolio-card__tag {
  align-self: flex-start;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--maroon, #4a1520);
  background: rgba(253, 248, 238, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.45);
}

.portfolio-card__title {
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  font-weight: 600;
  line-height: 1.2;
  color: #fff8e8;
}

.portfolio-card__caption {
  font-size: clamp(0.78rem, 1.4vw, 0.88rem);
  line-height: 1.45;
  color: rgba(255, 248, 232, 0.88);
  max-width: 28ch;
}

.portfolio-card--featured .portfolio-card__title {
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
}

.portfolio-preview__cta-wrap {
  display: flex;
  justify-content: center;
  margin: clamp(2rem, 4vw, 2.75rem) 0 0;
  padding: 0;
}

.portfolio-preview__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
}

.portfolio-preview__cta-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.portfolio-preview__cta:hover .portfolio-preview__cta-arrow {
  transform: translateX(5px);
}

@media (max-width: 1024px) {
  .portfolio-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(200px, 240px);
  }

  .portfolio-card--featured,
  .portfolio-card--wide,
  .portfolio-card:nth-child(3),
  .portfolio-card:nth-child(4),
  .portfolio-card--span:nth-child(5),
  .portfolio-card--span:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }

  .portfolio-card--featured {
    grid-column: 1 / -1;
    grid-row: span 2;
    min-height: 360px;
  }

  .portfolio-card--wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .portfolio-bento {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .portfolio-card,
  .portfolio-card--featured {
    min-height: clamp(260px, 72vw, 320px);
  }

  .portfolio-card--featured {
    grid-row: auto;
  }

  .portfolio-preview__cta {
    width: 100%;
    max-width: 22rem;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-card,
  .portfolio-card img,
  .portfolio-preview__cta-arrow {
    transition: none;
  }

  .portfolio-card:hover,
  .portfolio-card:hover img,
  .portfolio-preview__cta:hover .portfolio-preview__cta-arrow {
    transform: none;
  }
}

/* ========================================
   CELEBRATION ENQUIRY — Contact / lead gen
   ======================================== */

.section--celebration-enquiry {
  position: relative;
  overflow: hidden;
  padding-block: clamp(1.75rem, 3.5vw, 2.75rem);
  background: linear-gradient(
    180deg,
    rgba(255, 252, 245, 0.6) 0%,
    rgba(253, 248, 238, 0.95) 35%,
    rgba(249, 244, 232, 1) 100%
  );
}

.section--celebration-enquiry::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background-image: radial-gradient(circle at center, rgba(212, 175, 55, 0.12) 1px, transparent 1.1px);
  background-size: 24px 24px;
}

.section--celebration-enquiry .container {
  position: relative;
  z-index: 1;
}

.celebration-enquiry__lead {
  max-width: 42rem;
  margin-inline: auto;
}

.celebration-enquiry__grid {
  display: grid;
  grid-template-columns: minmax(0, 20rem) minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 1.35rem);
  align-items: start;
  margin-top: clamp(1rem, 2vw, 1.35rem);
}

.celebration-enquiry__grid > .celebration-form-card {
  min-width: 0;
}

.celebration-enquiry__locations {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.65rem, 1.25vw, 0.85rem);
  min-width: 0;
  margin: 0;
  padding: 0;
}

.celebration-enquiry__aside {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  min-width: 0;
}

.celebration-wa-card {
  padding: clamp(1.25rem, 2.5vw, 1.6rem);
  border-radius: var(--radius-lg, 1rem);
  background: linear-gradient(145deg, rgba(255, 252, 245, 0.98), rgba(252, 238, 232, 0.92));
  border: 1px solid rgba(212, 175, 55, 0.38);
  box-shadow: 0 14px 36px rgba(45, 15, 20, 0.08);
}

.celebration-wa-card__label {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.95);
}

.celebration-wa-card__text {
  margin: 0 0 1.1rem;
  font-size: clamp(0.92rem, 1.6vw, 1rem);
  line-height: 1.65;
  color: var(--brown-soft, #3d2a22);
}

.celebration-wa-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    gap 0.3s ease;
}

.celebration-wa-card__btn:hover {
  transform: translateY(-3px);
  gap: 0.7rem;
}

.celebration-wa-pulse {
  animation: celebrationWaPulse 4s ease-in-out infinite;
}

@keyframes celebrationWaPulse {
  0%,
  100% {
    box-shadow: 0 8px 22px rgba(74, 21, 32, 0.2);
  }
  50% {
    box-shadow:
      0 8px 22px rgba(74, 21, 32, 0.2),
      0 0 0 8px rgba(232, 168, 152, 0.22);
  }
}

.celebration-contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

.celebration-contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.65rem 0.75rem;
  min-width: 0;
  border-radius: var(--radius-md, 0.75rem);
  background: rgba(255, 252, 245, 0.88);
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: 0 6px 18px rgba(45, 15, 20, 0.05);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.celebration-contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.52);
  box-shadow:
    0 12px 28px rgba(45, 15, 20, 0.08),
    0 0 0 1px rgba(232, 168, 152, 0.15);
}

.celebration-contact-card--wide {
  grid-column: 1 / -1;
}

.celebration-contact-card__label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(61, 42, 34, 0.65);
}

.celebration-contact-card a,
.celebration-contact-card span:last-child {
  font-size: 0.82rem;
  line-height: 1.35;
  word-break: break-word;
  font-weight: 500;
  color: var(--maroon, #4a1520);
  text-decoration: none;
}

.celebration-contact-card a:hover {
  color: var(--maroon-deep, #3a1018);
  text-decoration: underline;
}

.celebration-trust-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  width: 100%;
}

.celebration-trust-card {
  padding: 0.5rem 0.45rem;
  border-radius: var(--radius-md, 0.75rem);
  background: rgba(243, 228, 184, 0.35);
  border: 1px solid rgba(212, 175, 55, 0.3);
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.celebration-trust-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.12);
}

.celebration-trust-card__title {
  display: block;
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--maroon, #4a1520);
  line-height: 1.35;
}

.celebration-focus-note {
  margin: 0.35rem 0 0;
  padding: 0.55rem 0.65rem;
  width: 100%;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--brown-soft, #3d2a22);
  text-align: center;
  border-radius: var(--radius-md, 0.75rem);
  background: rgba(255, 252, 245, 0.75);
  border: 1px dashed rgba(212, 175, 55, 0.38);
}

.celebration-focus-note strong {
  color: var(--maroon, #4a1520);
  font-weight: 600;
}

.celebration-form-card {
  position: relative;
  margin: 0;
  border-radius: var(--radius-xl, 1.25rem);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.42);
  background: rgba(255, 252, 245, 0.94);
  box-shadow:
    0 24px 56px rgba(45, 15, 20, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.celebration-form-card__glow {
  position: absolute;
  width: min(320px, 70%);
  height: min(320px, 70%);
  right: -12%;
  top: -10%;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(232, 168, 152, 0.35), rgba(212, 175, 55, 0.12) 55%, transparent 72%);
  animation: celebrationFormGlow 9s ease-in-out infinite;
}

@keyframes celebrationFormGlow {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.75;
  }
  50% {
    transform: translate(-8px, 10px) scale(1.06);
    opacity: 1;
  }
}

.celebration-form-card__inner {
  position: relative;
  z-index: 1;
  padding: clamp(1.35rem, 2.8vw, 2rem);
}

.celebration-form-card__title {
  margin: 0;
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: clamp(1.35rem, 2.4vw, 1.6rem);
  font-weight: 600;
  color: var(--maroon, #4a1520);
}

.celebration-form-card__sub {
  margin: 0.45rem 0 1.25rem;
  font-size: clamp(0.9rem, 1.5vw, 0.98rem);
  line-height: 1.6;
  color: rgba(61, 42, 34, 0.82);
}

.celebration-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
}

.celebration-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.celebration-form__field--full {
  grid-column: 1 / -1;
}

.celebration-form__field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(61, 42, 34, 0.78);
}

.celebration-form-card input,
.celebration-form-card select,
.celebration-form-card textarea {
  width: 100%;
  padding: 0.72rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.32);
  background: rgba(255, 252, 245, 0.95);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--brown-soft, #3d2a22);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.celebration-form-card textarea {
  resize: vertical;
  min-height: 100px;
}

.celebration-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.15rem;
  transition:
    transform 0.3s ease,
    gap 0.3s ease,
    box-shadow 0.3s ease;
}

.celebration-form__submit:hover {
  transform: translateY(-3px);
  gap: 0.75rem;
}

.celebration-btn-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.celebration-form__submit:hover .celebration-btn-arrow,
.celebration-wa-card__btn:hover .celebration-btn-arrow,
.celebration-location-card__btn:hover .celebration-btn-arrow {
  transform: translateX(5px);
}

.celebration-location-card {
  margin: 0;
  padding: clamp(0.85rem, 1.6vw, 1.05rem);
  border-radius: var(--radius-lg, 1rem);
  background: linear-gradient(145deg, rgba(255, 252, 245, 0.96), rgba(249, 244, 232, 0.9));
  border: 1px solid rgba(212, 175, 55, 0.36);
  box-shadow: 0 10px 28px rgba(45, 15, 20, 0.06);
  text-align: left;
}

.celebration-location-card--compact {
  height: auto;
  align-self: stretch;
}

.celebration-location-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.celebration-location-card__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep, #8b6914);
}

.celebration-location-card__title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  font-weight: 600;
  color: var(--maroon, #4a1520);
}

.celebration-location-card__address {
  margin: 0 0 0.65rem;
  flex: 1;
  font-size: clamp(0.78rem, 1.2vw, 0.86rem);
  line-height: 1.5;
  color: var(--brown-soft, #3d2a22);
}

.celebration-location-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: 100%;
  justify-content: center;
  font-size: 0.74rem;
  padding: 0.48rem 0.75rem;
  margin-top: auto;
  transition:
    transform 0.3s ease,
    gap 0.3s ease;
}

.celebration-location-card__btn:hover {
  transform: translateY(-3px);
  gap: 0.7rem;
}

.celebration-location-card__note {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: rgba(61, 42, 34, 0.72);
}

/* Scroll reveal */
.celebrate-reveal {
  opacity: 0;
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
  transition-delay: var(--celebrate-delay, 0ms);
  will-change: opacity, transform;
}

.celebrate-reveal--fade-up {
  transform: translateY(28px);
}

.celebrate-reveal--from-left {
  transform: translateX(-32px);
}

.celebrate-reveal--from-right {
  transform: translateX(32px);
}

.celebrate-reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@media (min-width: 961px) and (max-width: 1100px) {
  .celebration-enquiry__grid {
    grid-template-columns: minmax(0, 17.5rem) minmax(0, 1fr);
  }
}

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

  .celebration-enquiry__locations {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .celebration-form__grid {
    grid-template-columns: 1fr;
  }

  .celebrate-reveal--from-left,
  .celebrate-reveal--from-right {
    transform: translateY(24px);
  }
}

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

  .celebration-contact-card--wide {
    grid-column: auto;
  }

  .celebration-trust-cards {
    grid-template-columns: 1fr;
  }

  .celebration-trust-card__title {
    font-size: 0.75rem;
  }
}

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

  .celebration-wa-pulse,
  .celebration-form-card__glow {
    animation: none;
  }

  .celebration-contact-card:hover,
  .celebration-trust-card:hover,
  .celebration-wa-card__btn:hover,
  .celebration-form__submit:hover,
  .celebration-location-card__btn:hover {
    transform: none;
  }

  .celebration-form__submit:hover .celebration-btn-arrow,
  .celebration-wa-card__btn:hover .celebration-btn-arrow,
  .celebration-location-card__btn:hover .celebration-btn-arrow {
    transform: none;
  }
}

/* Homepage — tighter vertical rhythm between bands */
body[data-page="story"] .section {
  padding-block: clamp(1.75rem, 3.5vw, 2.75rem);
}

body[data-page="story"] main .hero + .section {
  padding-top: clamp(2.25rem, 4.5vw, 3.25rem);
}

body[data-page="story"] .section--reviews .section-head {
  margin-bottom: clamp(1.1rem, 2.5vw, 1.5rem);
}

@media (max-width: 560px) {
  body[data-page="story"] .section {
    padding-block: clamp(1.5rem, 5vw, 2.25rem);
  }

  body[data-page="story"] main .hero + .section {
    padding-top: clamp(2rem, 6vw, 2.75rem);
  }
}


/* ==========================================================================
   FSSAI COMPLIANCE — trust signals (homepage)
   ========================================================================== */

/* Hero pill badge */
.hero-fssai-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0.45rem 0.95rem 0.45rem 0.55rem;
  max-width: 100%;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 252, 245, 0.96), rgba(253, 248, 238, 0.92));
  border: 1px solid rgba(212, 175, 55, 0.55);
  box-shadow:
    0 8px 22px rgba(45, 15, 20, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  color: var(--maroon, #4a1520);
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  font-size: clamp(0.72rem, 1.35vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.35;
  position: relative;
  isolation: isolate;
  opacity: 0;
  transform: translateY(14px);
}

.hero-fssai-badge::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    120deg,
    rgba(212, 175, 55, 0.15),
    rgba(212, 175, 55, 0.75),
    rgba(232, 168, 152, 0.35),
    rgba(212, 175, 55, 0.15)
  );
  background-size: 220% 100%;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
  animation: fssaiBorderShimmer 7s ease-in-out infinite;
}

.hero--text-focus .hero-slide.is-active .hero-fssai-badge {
  animation: skHeroSlideUp 0.75s ease 1.15s forwards;
}

.hero-fssai-badge__logo {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.85);
}

.hero-fssai-badge__text {
  color: var(--maroon-deep, #2d0f14);
}

/* Trust — featured FSSAI card */
.trust-premium-card--fssai {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
  align-items: center;
  padding: clamp(1.35rem, 2.8vw, 1.85rem) clamp(1.25rem, 2.5vw, 1.75rem);
  background: linear-gradient(145deg, rgba(255, 252, 245, 0.98), rgba(252, 238, 232, 0.42));
  border-color: rgba(212, 175, 55, 0.48);
  box-shadow:
    0 18px 44px rgba(45, 15, 20, 0.09),
    0 0 0 1px rgba(232, 168, 152, 0.12);
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.trust-premium-card--fssai.is-visible,
.trust-premium-card--fssai.sk-aos--visible {
  opacity: 1;
  transform: translateY(0);
}

.trust-premium-card--fssai__glow {
  position: absolute;
  inset: auto -8% -35% -8%;
  height: 70%;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 80% at 50% 100%, rgba(232, 168, 152, 0.28), transparent 72%);
  opacity: 0.85;
}

.trust-premium-card__fssai-logo-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(64px, 10vw, 76px);
  height: clamp(64px, 10vw, 76px);
  border-radius: 14px;
  background: rgba(255, 252, 245, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.trust-premium-card__fssai-logo {
  width: clamp(44px, 7vw, 56px);
  height: clamp(44px, 7vw, 56px);
  object-fit: contain;
  animation: fssaiLogoSoftGlow 5.5s ease-in-out infinite;
}

.trust-premium-card__fssai-body {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.trust-premium-card--fssai .trust-premium-card__title {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  margin-bottom: 0.45rem;
}

.trust-premium-card__text--fssai {
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  font-size: clamp(0.92rem, 1.55vw, 1.02rem);
  line-height: 1.72;
  color: var(--brown-soft, #3d2a22);
  max-width: 62ch;
}

.trust-premium-card__licenses {
  margin: 0.85rem 0 0;
  padding: 0;
}

.trust-premium-card__licenses[hidden] {
  display: none !important;
}

.trust-premium-card__license-line {
  margin: 0.35rem 0 0;
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(61, 42, 34, 0.82);
}

.trust-premium-card__license-line span {
  font-weight: 600;
  color: var(--maroon, #4a1520);
}

.trust-premium-card--fssai::before,
.trust-premium-card--fssai::after {
  animation: fssaiCornerPulse 6s ease-in-out infinite;
}

.trust-premium-card--fssai::after {
  animation-delay: 3s;
}

/* Enquiry reassurance */
.celebration-form__fssai {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0.85rem 0 0;
  padding: 0;
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(139, 105, 20, 0.95);
}

.celebration-form__fssai-logo {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 0.1rem;
  object-fit: contain;
  opacity: 0.92;
}

/* Footer compliance line */
.footer-fssai {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.65rem;
  width: 100%;
  margin: 0 0 0.85rem;
  padding: 0 0 0.85rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  font-size: clamp(0.78rem, 1.4vw, 0.88rem);
  line-height: 1.5;
  color: rgba(255, 248, 232, 0.88);
  text-align: center;
}

.footer-fssai__logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
  opacity: 0.9;
}

.footer-fssai__numbers {
  flex-basis: 100%;
  font-size: 0.76rem;
  color: rgba(212, 175, 55, 0.88);
}

.footer-fssai__numbers[hidden] {
  display: none !important;
}

@keyframes fssaiBorderShimmer {
  0%,
  100% {
    background-position: 0% 50%;
    opacity: 0.65;
  }
  50% {
    background-position: 100% 50%;
    opacity: 1;
  }
}

@keyframes fssaiLogoSoftGlow {
  0%,
  88%,
  100% {
    filter: drop-shadow(0 0 0 rgba(212, 175, 55, 0));
  }
  94% {
    filter: drop-shadow(0 0 10px rgba(232, 168, 152, 0.45));
  }
}

@keyframes fssaiCornerPulse {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

@media (max-width: 720px) {
  .trust-premium-card--fssai {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .trust-premium-card__fssai-logo-wrap {
    margin-inline: auto;
  }

  .trust-premium-card__text--fssai {
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-fssai-badge::before,
  .trust-premium-card__fssai-logo,
  .trust-premium-card--fssai::before,
  .trust-premium-card--fssai::after {
    animation: none !important;
  }

  .hero--text-focus .hero-fssai-badge,
  .hero--text-focus .hero-slide.is-active .hero-fssai-badge {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .trust-premium-card--fssai {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
