:root {
  --color-background-dark: #000000;
  --color-background: #f4f4f4;
  --color-accent: #c5965f;
  --color-accent-light: #e4c5b6;
  --color-text: #3a3a3a;
  --color-text-light: #ffffff;
  --color-panel: #eff1f7;
  --color-success: #2f855a;
  --color-error: #c0392b;
  --color-muted: rgba(58, 58, 58, 0.8);
  --font-heading: 'Playfair Display', 'Times New Roman', serif;
  --font-body: 'Karla', 'Helvetica Neue', Arial, sans-serif;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

/* Base page defaults */
html,
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #f8ebe4 0%, #fdeee7 45%, #fff6f2 100%);
  color: var(--color-text);
  font-family: var(--font-body);
  scroll-behavior: smooth;
  /* Prevent horizontal overflow on small devices (hide any accidental overflow)
     This avoids the white gap users can pan/zoom to on mobile while keeping
     pinch-zoom accessibility (we do not disable zooming).
  */
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Video Gallery Section */
.video-gallery {
  background: var(--color-background-dark);
  padding: 4rem 1rem;
}

.video-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.video-card {
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 9/16;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.video-card iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .video-container {
    grid-template-columns: 1fr;
    max-width: 400px;
    gap: 1.5rem;
  }
}

header {
  background: var(--color-background-dark);
  color: var(--color-text-light);
  position: sticky;
  top: 0;
  z-index: 10;
}

.navbar {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Increased vertical padding for a taller desktop header */
  padding: 1.6rem 1rem;
  font-size: 0.95rem;
}

.brand {
  display: inline-block;
}

.brand img {
  display: block;
  /* larger logo on desktop */
  height: 4.76rem;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

/* hide the mobile nav toggle on larger screens; shown only via the
   mobile media query below */
.nav-toggle {
  display: none;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.25rem;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

/* Phone label and responsive adjustments */
.nav-actions .icon-label {
  display: none;
  margin-left: 0.5rem;
  font-weight: 600;
  color: var(--color-text-light);
  font-size: 0.95rem;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .nav-actions .icon-label {
    display: inline-block;
  }
  /* allow the phone anchor to expand to fit the number */
  .nav-actions a.icon-link.phone {
    width: auto;
    padding: 0.35rem 0.9rem;
    gap: 0.5rem;
  }
}

/* Mobile header: minimal, centered brand with icon actions beneath
   Hide the full nav-links on small screens for a cleaner mobile UX.
*/
@media (max-width: 639px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Make header more compact while allowing a larger logo */
    /* tightened vertical spacing for mobile */
    padding: 0.05rem 0.35rem 0;
    gap: 0;
  }

  /* hide long nav links in mobile minimal mode */
  /* (kept single .nav-links rule later in this media query) */

  .brand {
    margin: 0;
    /* remove extra gap below logo; keep it tightly stacked */
    margin-bottom: 0;
    display: block;
    text-align: center;
  }

  .brand img {
    /* larger logo on mobile; reduced padding keeps header compact */
    height: 4.32rem !important;
    width: auto !important;
  }

  /* center the action icons and increase tappable area */
  .nav-actions {
    width: 100%;
    justify-content: center;
    gap: 0.35rem;
    padding: 0;
    /* keep actions very close to the hamburger */
    margin-top: 0;
  }

  .nav-actions a.icon-link {
    padding: 0.15rem;
    min-width: 40px;
    min-height: 40px;
  }

  /* keep the phone label hidden on small screens for a compact bar */
  .nav-actions .icon-label {
    display: none !important;
  }

  /* hamburger toggle button (mobile) */
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--color-text-light);
    font-size: 1.05rem;
    padding: 0.05rem 0.12rem;
    /* remove vertical margin so the toggle hugs the logo above */
    margin: 0;
    line-height: 0;
    cursor: pointer;
  }

  /* hide the full nav by default; will be shown when .open is added */
  .nav-links {
    display: none;
    width: 100%;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    padding: 0.75rem 0;
    background: var(--color-background-dark);
    width: 100%;
  }

  /* keep the brand and actions visually separated when nav opens */
  .navbar {
    position: relative;
  }
}

.nav-actions a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  opacity: 0.85;
  transition: opacity 0.2s ease-in-out;
}

.nav-actions a.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--color-text-light) !important;
  text-decoration: none;
  box-shadow: none;
  transition: transform 120ms ease, opacity 120ms ease;
}

.nav-actions a.icon-link svg {
  width: 22px;
  height: 22px;
  display: block;
  color: var(--color-text-light);
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 0;
}

.nav-actions a.icon-link img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}

.nav-actions a.icon-link:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.hero {
  position: relative;
  background: linear-gradient(
      115deg,
      rgba(14, 14, 14, 0.35) 0%,
      rgba(14, 14, 14, 0.16) 45%,
      rgba(14, 14, 14, 0.05) 100%
    ),
    url('../images/relaxing-facial-ritual.png') 44% center/cover;
  min-height: 80vh;
  color: var(--color-text-light);
  display: flex;
  align-items: stretch;
}

.hero-shell {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5.5rem 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1200px) {
  .hero-shell {
    margin-left: clamp(0.5rem, 6vw, 6rem);
    margin-right: clamp(3rem, 18vw, 16rem);
    gap: clamp(5.5rem, 20vw, 20rem);
  }
}

.hero .hero-content {
  max-width: 560px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.75rem;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.55rem, 4.7vw, 3.9rem);
  line-height: 1.05;
  margin: 0 0 1.5rem;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease,
    background-color 0.2s ease;
}

.button.primary {
  background: var(--color-accent);
  color: var(--color-background-dark);
  border-color: var(--color-accent);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.14);
  color: var(--color-text-light);
  border-color: rgba(255, 255, 255, 0.4);
}

.button.ghost {
  background: transparent;
  color: var(--color-text-light);
  border-color: rgba(255, 255, 255, 0.55);
}

.button.ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button.dark {
  background: var(--color-background-dark);
  color: var(--color-text-light);
  border-color: var(--color-background-dark);
}

.button.dark:hover,
.button.dark:focus-visible {
  background: rgba(0, 0, 0, 0.85);
  border-color: rgba(0, 0, 0, 0.85);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-aside {
  display: flex;
  justify-content: flex-end;
  padding-left: clamp(5rem, 12vw, 14rem);
}

.glow-card {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.6rem;
  padding: 2.5rem;
  width: 100%;
  max-width: 400px;
  color: var(--color-text-light);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.25);
}

.glow-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.7;
  margin-bottom: 1.25rem;
}

.glow-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin: 0 0 0.75rem;
}

.glow-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.glow-metric {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  margin: 1.75rem 0 0.75rem;
}

.metric-value {
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1;
}

.metric-caption {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  opacity: 0.68;
}

.glow-note {
  font-style: italic;
  opacity: 0.85;
}

@media (max-width: 1024px) {
  .hero-shell {
    grid-template-columns: 1fr;
    padding: 5rem 1.5rem 4rem;
    gap: 2rem;
  }

  .hero-aside {
    justify-content: flex-start;
    padding-left: 0;
  }

  .glow-card {
    margin-top: 1rem;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 9vw, 3.1rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-highlights span {
    width: 100%;
    justify-content: center;
  }
}

.section {
  padding: 5rem 1.25rem;
}

.section.light {
  background: var(--color-panel);
}

.section.dark {
  background: var(--color-background-dark);
  color: var(--color-text-light);
}

.section.pink {
  background: var(--color-accent-light);
}

.section .section-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 3rem;
}

.section-header {
  max-width: 640px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-header p {
  line-height: 1.7;
  font-size: 1rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.85);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.info-card p {
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 1.5rem;
}

.service-card h3 {
  font-family: var(--font-heading);
  margin: 0;
  font-size: 1.5rem;
}

.service-card p {
  margin: 0;
  line-height: 1.7;
}

.schedule {
  font-size: 1.05rem;
}

.schedule h4 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.schedule ul {
  margin: 0;
  padding-left: 1.25rem;
  list-style: disc;
  display: grid;
  gap: 0.35rem;
}

.schedule li {
  margin: 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.contact-card {
  background: rgba(0, 0, 0, 0.7);
  color: var(--color-text-light);
  padding: 3rem;
  border-radius: 1rem;
}

form {
  display: grid;
  gap: 0.85rem;
}

input,
textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: none;
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.85);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

form button {
  background: var(--color-background-dark);
  color: var(--color-text-light);
  border: none;
  padding: 0.9rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: opacity 0.2s ease-in-out;
}

form button:hover {
  opacity: 0.85;
}

footer {
  background: var(--color-background-dark);
  color: var(--color-text-light);
  padding: 3rem 1.25rem;
}

footer .footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.85;
}

.hero.small {
  min-height: 45vh;
}

.page-intro {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 1.25rem;
}

.badge {
  display: inline-flex;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.75);
  color: var(--color-text-light);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.product-card {
  background: #f9f7f6;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  width: 100%;
  max-width: 260px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.product-card img {
  width: 120px;
  margin: 0 auto 1.5rem;
}

.product-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.product-card p {
  margin: 0;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.review-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  display: grid;
  gap: 0.85rem;
}

.review-card blockquote {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  font-style: italic;
}

.review-card cite {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.hero .hero-content .badge {
  background: rgba(0, 0, 0, 0.35);
}

/* Modern minimalistic styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Home - minimal sections */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-accent);
  opacity: 0.85;
}

.feature-split .feature-copy .section-eyebrow {
  color: var(--color-text-light);
  opacity: 1;
}

.feature-split {
  padding: 3.25rem 0;
  background: linear-gradient(180deg, #d5b18c 0%, #dcbfa1 50%, #ead4bb 100%);
}

.feature-split .container {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 2.25rem;
  align-items: center;
}

.feature-media img {
  border-radius: 1.25rem;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12);
}

.feature-copy {
  display: grid;
  gap: 1.35rem;
  color: #2f2418;
}

.feature-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin: 0;
  color: #24170d;
}

.feature-copy p {
  margin: 0;
  line-height: 1.6;
  color: rgba(36, 23, 13, 0.85);
}

.feature-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 0.25rem 0 1.5rem;
}

.feature-point {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.4rem 1.2rem;
  border: 1px solid rgba(45, 36, 26, 0.08);
  box-shadow: 0 14px 26px rgba(45, 36, 26, 0.08);
  display: grid;
  gap: 0.55rem;
}

.feature-point h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin: 0;
  color: #20160c;
}

.feature-point p {
  margin: 0;
  line-height: 1.55;
  color: rgba(45, 36, 26, 0.7);
}

.feature-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.feature-ctas .button.secondary {
  background: transparent;
  color: #24170d;
  border-color: rgba(36, 23, 13, 0.2);
}

.feature-ctas .button.secondary:hover,
.feature-ctas .button.secondary:focus-visible {
  background: rgba(36, 23, 13, 0.06);
}

.button.ghost-dark {
  background: transparent;
  color: #24170d;
  border: 1px solid rgba(36, 23, 13, 0.35);
}

.button.ghost-dark:hover,
.button.ghost-dark:focus-visible {
  background: rgba(36, 23, 13, 0.06);
}

.packages-hero {
  position: relative;
  overflow: hidden;
  color: #fdf7ef;
  background: #1c130d;
}

.packages-hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.packages-hero-overlay {
  position: relative;
  z-index: 1;
  backdrop-filter: blur(1.5px);
  background: transparent;
}

.packages-hero-content {
  max-width: 640px;
  padding: 4.75rem 1.5rem 4.25rem;
  display: grid;
  gap: 1.5rem;
}

.packages-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 4.2vw, 3.1rem);
  margin: 0;
}

.packages-hero-content p {
  margin: 0;
  line-height: 1.7;
  color: rgba(252, 246, 237, 0.82);
}

.packages-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.packages-intro {
  background: #f5eee5;
  padding: 3rem 0;
}

.packages-intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.packages-intro-grid article {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.6rem 1.35rem;
  box-shadow: 0 14px 24px rgba(32, 24, 16, 0.08);
  display: grid;
  gap: 0.75rem;
  color: rgba(36, 23, 13, 0.85);
}

.packages-intro-grid h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #23160d;
}

.packages-grid {
  background: #fbf8f3;
  padding: 3rem 0 2rem;
}

.packages-grid-inner {
  display: grid;
  gap: 2rem;
}

.package-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: center;
}

.package-card.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
}

.package-media img {
  display: block;
  width: 100%;
  border-radius: 1.2rem;
  box-shadow: 0 22px 38px rgba(30, 20, 14, 0.12);
}

.package-content {
  display: grid;
  gap: 0.85rem;
  color: #2c1f14;
}

.package-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3.2vw, 2.6rem);
  margin: 0;
  letter-spacing: -0.01em;
}

.package-tagline {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  color: rgba(37, 25, 17, 0.62);
}

.package-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.45rem 1rem;
}

.package-content li {
  position: relative;
  padding-left: 0.85rem;
  line-height: 1.5;
  font-size: 0.95rem;
  color: rgba(39, 27, 19, 0.78);
}

.package-content li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #c49158;
}

.package-price {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  font-size: 0.92rem;
  color: rgba(35, 24, 16, 0.7);
}


.package-price strong {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #20150b;
}

.package-price .package-value {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: rgba(33, 23, 15, 0.55);
}

.packages-extras {
  background: #f3e7db;
  padding: 3.25rem 0;
}

.packages-extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.packages-extras-grid article {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.75rem 1.4rem;
  box-shadow: 0 12px 24px rgba(28, 20, 13, 0.08);
  display: grid;
  gap: 0.75rem;
  color: rgba(34, 24, 16, 0.85);
}

.packages-extras-grid h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #1f150c;
}

.packages-cta {
  padding: 3.5rem 0 4rem;
  background: linear-gradient(120deg, #22170f, #3c2a1c);
  color: #f9f4ec;
}

.packages-cta-card {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 0.85rem;
}

.packages-cta-card h3 {
  font-family: var(--font-heading);
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.packages-cta-card p {
  margin: 0;
  line-height: 1.65;
  color: rgba(252, 244, 233, 0.78);
}

.packages-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.service-hero {
  position: relative;
  overflow: hidden;
  color: #fdf9f4;
  background: #1c130d;
}

.service-hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.service-hero-inner {
  position: relative;
  z-index: 1;
  backdrop-filter: blur(1.5px);
  background: transparent;
}

.service-hero-content {
  max-width: 620px;
  padding: 4.5rem 1.5rem 4rem;
  display: grid;
  gap: 1.4rem;
}

.service-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.4vw, 3.2rem);
  margin: 0;
}

.service-hero-content p {
  margin: 0;
  line-height: 1.7;
  color: rgba(250, 246, 240, 0.82);
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.service-highlights {
  background: #f6efe6;
  padding: 3rem 0;
}

.service-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-highlights-grid article {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 14px 26px rgba(35, 25, 19, 0.08);
  display: grid;
  gap: 0.75rem;
  color: #2a1e16;
}

.service-highlight-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: rgba(36, 23, 13, 0.6);
}

.service-suite {
  padding: 3.5rem 0 1.5rem;
  background: #fdf9f4;
}

.service-suite-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: center;
}

.service-suite-card.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
}

.service-suite-media img {
  display: block;
  width: 100%;
  border-radius: 1.2rem;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.12);
}

.service-suite-copy {
  display: grid;
  gap: 0.85rem;
  color: #2a1e16;
}

.service-suite-copy h3 {
  font-family: var(--font-heading);
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 2.2rem);
}

.service-suite-copy p {
  margin: 0;
  line-height: 1.65;
  color: rgba(33, 24, 17, 0.78);
}

.service-suite-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.45rem 1rem;
  color: rgba(33, 24, 17, 0.82);
}

.service-suite-copy li {
  position: relative;
  padding-left: 0.85rem;
  line-height: 1.55;
}

.service-suite-copy li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.service-process {
  background: #f1e7da;
  padding: 3.25rem 0;
}

.service-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-process-grid article {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 14px 26px rgba(31, 23, 16, 0.08);
  display: grid;
  gap: 0.75rem;
  color: #291d13;
}

.service-process-step {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(41, 29, 19, 0.6);
}

.service-faq {
  padding: 3.25rem 0;
  background: #fbf6f0;
}

.service-faq-inner {
  display: grid;
  gap: 1.5rem;
  text-align: center;
}

.service-faq-inner h3 {
  font-family: var(--font-heading);
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  color: #24170d;
}

.service-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  text-align: left;
}

.service-faq-grid article {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 14px 24px rgba(27, 21, 15, 0.06);
  display: grid;
  gap: 0.65rem;
  color: rgba(36, 23, 13, 0.85);
}

.service-faq-grid h4 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #21160e;
}

.service-cta {
  padding: 3.5rem 0 4rem;
  background: linear-gradient(120deg, #201610, #3a291d);
  color: #f9f4ed;
}

.service-cta-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 0.85rem;
}

.service-cta-card h3 {
  font-family: var(--font-heading);
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.5rem);
}

.service-cta-card p {
  margin: 0;
  line-height: 1.65;
  color: rgba(250, 244, 235, 0.78);
}

.service-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

@media (max-width: 1024px) {
  .feature-split .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .packages-intro-grid,
  .packages-extras-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-card,
  .package-card.reverse {
    grid-template-columns: 1fr;
  }

  .package-card.reverse .package-media {
    order: -1;
  }

  .service-suite-card,
  .service-suite-card.reverse {
    grid-template-columns: 1fr;
  }

  .service-suite-card.reverse .service-suite-media {
    order: -1;
  }

  .service-process-grid,
  .service-highlights-grid,
  .service-faq-grid,
  .feature-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .packages-hero-content {
    padding: 4rem 1.25rem 3.25rem;
  }

  .service-hero-content {
    padding: 4rem 1.25rem 3.25rem;
  }
}

@media (max-width: 640px) {
  .service-hero-content {
    text-align: center;
    gap: 1.1rem;
  }

  .service-hero-actions {
    justify-content: center;
  }

  .packages-intro-grid,
  .packages-extras-grid {
    grid-template-columns: 1fr;
  }

  .package-card {
    gap: 1.25rem;
  }

  .service-highlights-grid,
  .service-process-grid,
  .service-faq-grid,
  .feature-points {
    grid-template-columns: 1fr;
  }

  .service-suite-card {
    gap: 1.25rem;
  }

  .service-cta-card {
    text-align: center;
  }

  .service-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.testimonial-strip {
  padding: 3rem 0;
  background: var(--color-background-dark);
  color: var(--color-text-light);
  text-align: center;
}

.testimonial-intro {
  display: grid;
  gap: 0.6rem;
  justify-items: center;
}

.testimonial-intro h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
}

.testimonial-carousel {
  margin: 1.5rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.testimonial-body {
  display: grid;
  gap: 0.65rem;
  justify-items: center;
  transition: opacity 0.35s ease;
}

.testimonial-body.is-fading {
  opacity: 0;
}

.testimonial-arrow {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: var(--color-text-light);
  font-size: 1.4rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}

.testimonial-arrow:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.testimonial-arrow[disabled] {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.testimonial-strip blockquote {
  margin: 0 auto 1rem;
  max-width: 640px;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  line-height: 1.6;
}

.testimonial-strip cite {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.testimonial-strip .testimonial-source {
  font-size: 0.8rem;
  opacity: 0.7;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.testimonial-dots {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.testimonial-dots button:hover,
.testimonial-dots button:focus-visible {
  transform: scale(1.2);
  background: rgba(255, 255, 255, 0.6);
}

.testimonial-dots button.is-active {
  background: var(--color-accent);
}

.testimonial-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.testimonial-more::after {
  content: '↗';
  font-size: 0.85rem;
}

.testimonial-more:hover,
.testimonial-more:focus-visible {
  color: #ffffff;
}

.faq-section {
  padding: clamp(3.75rem, 6vw, 5.5rem) 0;
  background: linear-gradient(180deg, #f6f3f0 0%, #ffffff 100%);
}

.faq-header {
  max-width: 760px;
  margin: 0 auto 2.5rem auto;
  text-align: center;
  display: grid;
  gap: 0.75rem;
}

.faq-header p {
  margin: 0;
  color: rgba(15, 44, 51, 0.72);
  line-height: 1.7;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: 6rem;
  align-self: start;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(15, 44, 51, 0.08);
  border-radius: 24px;
  padding: 1.9rem 1.6rem;
  box-shadow: 0 26px 70px rgba(15, 44, 51, 0.12);
}

.faq-sidebar h3 {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #0f2c33;
}

.faq-sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: rgba(15, 44, 51, 0.75);
}

.faq-sidebar li::before {
  content: '+';
  color: #f6cbb6;
  margin-right: 0.45rem;
  font-weight: 600;
}

.faq-stack {
  display: grid;
  gap: 1.5rem;
}

.faq-card {
  border-radius: 24px;
  border: 1px solid rgba(15, 44, 51, 0.08);
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(15, 44, 51, 0.08);
  padding: 0;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-card[open] {
  border-color: rgba(246, 206, 189, 0.9);
  box-shadow: 0 32px 84px rgba(15, 44, 51, 0.12);
}

.faq-card summary {
  list-style: none;
  cursor: pointer;
  padding: 1.45rem 5.1rem 1.45rem 6.4rem;
  font-size: 1.12rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: #0f2c33;
  position: relative;
}

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

.faq-card summary::before {
  content: '?';
  position: absolute;
  left: 2.2rem;
  top: 50%;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 11px;
  background: linear-gradient(135deg, #fbdfd0 0%, #f6cbb6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transform: translateY(-50%);
  box-shadow: 0 10px 18px rgba(246, 203, 182, 0.35);
}

.faq-card summary::after {
  content: '';
  position: absolute;
  right: 3.4rem;
  top: 50%;
  width: 0.7rem;
  height: 0.7rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.25s ease;
}

.faq-card[open] summary::after {
  transform: translateY(-50%) rotate(-135deg);
}

.faq-copy {
  padding: 0 3.6rem 1.8rem 6.4rem;
}

.faq-more-link {
  margin-top: 1.4rem;
  color: var(--color-muted);
}

.faq-more-link .button {
  font-size: 0.95rem;
  background: rgba(15, 44, 51, 0.85);
  color: var(--color-text-light);
  box-shadow: 0 18px 35px rgba(15, 44, 51, 0.18);
}

.faq-more-link .button:hover,
.faq-more-link .button:focus-visible {
  background: rgba(15, 44, 51, 1);
}


.faq-copy p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-muted);
}

@media (max-width: 1024px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem 1rem;
  }

  .faq-sidebar h3 {
    grid-column: 1 / -1;
    margin-bottom: 0.75rem;
  }
}

@media (max-width: 640px) {
  .faq-stack {
    gap: 1.1rem;
  }

  .faq-card summary {
    padding: 1.2rem 2rem 1.2rem 3.4rem;
    font-size: 1.02rem;
  }

  .faq-card summary::before {
    left: 1.4rem;
    width: 1.6rem;
    height: 1.6rem;
  }

  .faq-card summary::after {
    right: 2.3rem;
  }

  .faq-copy {
    padding: 0 1.8rem 1.35rem 3.4rem;
  }
}

.faq-quick-reference {
  max-width: 1080px;
  margin: clamp(3rem, 6vw, 4rem) auto 0;
  padding: clamp(2.4rem, 4vw, 3rem);
  border-radius: 30px;
  background: #0f2c33;
  color: #ffffff;
  box-shadow: 0 32px 80px rgba(15, 44, 51, 0.28);
  display: grid;
  gap: 1.5rem;
}

.faq-quick-reference h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.4rem;
}

.faq-quick-reference ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.85rem;
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-quick-reference strong {
  color: #f6cbb6;
}

@media (max-width: 640px) {
  .faq-quick-reference {
    border-radius: 20px;
  }
}

.contact-panel {
  padding: 2.125rem 0 5.5rem;
  background: #f6f3f0;
  
}

.contact-panel .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: 2rem;
  align-items: stretch;
}

.contact-panel-header {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.85rem;
  text-align: center;
}

.contact-panel-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3rem);
  margin: 0;
}

.contact-panel-header p {
  margin: 0 auto;
  max-width: 640px;
  line-height: 1.7;
  color: rgba(58, 58, 58, 0.8);
}

.contact-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 3rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.06);
  display: grid;
  gap: 1.25rem;
}

.map-thumb {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.map-thumb iframe {
  display: block;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.contact-card .button.ghost {
  color: var(--color-text);
  border-color: rgba(58, 58, 58, 0.35);
}

.contact-card .button.ghost:hover {
  background: rgba(58, 58, 58, 0.05);
}

.contact-meta {
  display: grid;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: rgba(58, 58, 58, 0.85);
}

.contact-meta p {
  margin: 0;
}

.contact-meta a {
  color: inherit;
  text-decoration: none;
}

.contact-meta a:hover {
  text-decoration: underline;
}

.contact-meta .schedule {
  font-size: 0.95rem;
  color: rgba(58, 58, 58, 0.75);
}

.contact-meta .schedule h4 {
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-transform: none;
  font-weight: 600;
  color: rgba(58, 58, 58, 0.9);
}

.contact-meta .schedule ul {
  gap: 0.3rem;
}

.contact-form {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 3rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.05);
  display: grid;
  gap: 0.85rem;
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin: 0 0 1rem;
}

.contact-form input,
.contact-form textarea {
  background: #f9f7f4;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 0.75rem;
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
}

.contact-form textarea {
  min-height: 160px;
}

.contact-form button {
  justify-self: flex-start;
}

.contact-form small {
  font-size: 0.75rem;
  color: rgba(58, 58, 58, 0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

form[data-formsubmit] .form-status {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--color-muted);
  min-height: 1.2rem;
}

form[data-formsubmit] .form-status[data-state='pending'] {
  color: var(--color-accent);
}

form[data-formsubmit] .form-status[data-state='success'] {
  color: var(--color-success);
}

form[data-formsubmit] .form-status[data-state='error'] {
  color: var(--color-error);
}

form[data-formsubmit] input[type="email"][data-invalid='true'] {
  border-color: var(--color-error);
  box-shadow: 0 0 0 1px rgba(192, 57, 43, 0.15);
}

.video-duo {
  background: #000;
  padding: 1.5rem 1rem 2rem;
}

.video-duo-heading {
  text-align: center;
  margin-bottom: 0.75rem;
}

.video-duo-heading h2 {
  font-family: 'Great Vibes', 'Brush Script MT', cursive;
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--color-text-light);
  margin: 0;
}

.video-duo-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.video-duo-item {
  width: 100%;
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  height: clamp(290px, 40.6vw, 377px);
  object-fit: cover;
  background: #111;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.video-duo-item.video-duo-top {
  object-position: center 33%;
}

.about-hero {
  position: relative;
  padding: clamp(3rem, 10vw, 4.5rem) 1.5rem;
  color: var(--color-text-light);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.2));
}

.about-hero-inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-hero-copy {
  max-width: 540px;
  display: grid;
  gap: 1.5rem;
}

.about-hero-copy h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.85rem, 6vw, 4rem);
  margin: 0;
}

.about-hero-copy p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.about-story {
  padding: clamp(2.5rem, 8vw, 4rem) 1.5rem;
  background: var(--color-panel);
}

.about-story-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.about-story-copy {
  display: grid;
  gap: 1.5rem;
}

.about-story-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.7rem);
  margin: 0;
}

.about-story-copy p {
  margin: 0;
  line-height: 1.8;
  font-size: 1.02rem;
}

.about-story-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.about-story-media {
  position: relative;
}

.about-video {
  display: block;
  width: 100%;
  border-radius: 1.25rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
  background: #000;
}

.about-cta {
  padding: clamp(2.75rem, 9vw, 4.5rem) 1.5rem;
  background: linear-gradient(135deg, rgba(229, 203, 182, 0.6), rgba(255, 255, 255, 0.9));
}

.about-cta-card {
  max-width: var(--max-width);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1.5rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  padding: clamp(2.5rem, 6vw, 3.5rem);
  display: grid;
  gap: 2rem;
}

.about-cta-content {
  display: grid;
  gap: 1rem;
}

.about-cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  margin: 0;
}

.about-cta-content p {
  margin: 0;
  line-height: 1.8;
  font-size: 1.02rem;
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.about-cta-meta {
  display: grid;
  gap: 0.5rem;
  font-size: 0.98rem;
  color: rgba(58, 58, 58, 0.85);
}

.about-cta-meta a {
  color: inherit;
}

@media (max-width: 720px) {
  .about-hero {
    text-align: center;
  }

  .about-hero-actions {
    justify-content: center;
  }

  .about-story-contact,
  .about-cta-actions {
    justify-content: center;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 1024px) {
  .feature-split .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .contact-panel-header {
    text-align: left;
  }

  .contact-panel .container {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 2.5rem;
  }
}

@media (max-width: 640px) {
  .feature-split {
    padding: 4.5rem 0;
  }

  .testimonial-carousel {
    gap: 0.85rem;
  }

  .testimonial-arrow {
    width: 2rem;
    height: 2rem;
  }

  .feature-points {
    grid-template-columns: 1fr;
    margin: 2rem 0 1.5rem;
  }

  .contact-panel-header {
    text-align: center;
  }

  .contact-panel {
    padding: 4.5rem 0;
  }

  .contact-card,
  .contact-form {
    padding: 2.25rem;
  }

  .contact-actions {
    flex-direction: column;
  }
}
.marquee {
  display: flex;
  gap: 4rem;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  opacity: 0.7;
}

.marquee span {
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.faq-page {
  background: linear-gradient(180deg, #fbeee6 0%, #f5e1d5 60%);
  color: #0f2c33;
}

.faq-hero {
  padding: clamp(1.3rem, 3vw, 2rem) 0 clamp(0.7rem, 2.5vw, 1.2rem);
  background: linear-gradient(180deg, #f9e9de 0%, rgba(249, 233, 222, 0.7) 65%, rgba(255, 255, 255, 0) 100%);
}

.faq-hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(0.6rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.badge-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  text-decoration: none;
  color: rgba(15, 44, 51, 0.7);
  transition: color 0.2s ease;
}

.badge-link:hover,
.badge-link:focus-visible {
  color: #0f2c33;
}

.faq-hero-copy {
  display: grid;
  gap: 0.8rem;
}

.faq-hero-copy h1 {
  margin: 0.6rem 0 1rem;
  font-size: clamp(2.4rem, 7vw, 3.3rem);
  font-family: var(--font-heading);
  color: var(--color-text);
}

.faq-hero-copy p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-muted);
}

.faq-hero-aside {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 26px;
  border: 1px solid rgba(15, 44, 51, 0.08);
  padding: clamp(1.6rem, 3vw, 2rem);
  box-shadow: 0 26px 60px rgba(15, 44, 51, 0.08);
}

.faq-highlight {
  display: grid;
  gap: 0.6rem;
  margin-top: clamp(0.5rem, 1.6vw, 0.9rem);
}

.faq-highlight .mini-heading {
  margin: 0 0 0.4rem 0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-text);
}

.faq-highlight ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.faq-highlight li::before {
  content: '+';
  color: #f6cbb6;
  margin-right: 0.4rem;
}

.faq-main {
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.faq-galleries {
  display: grid;
  gap: clamp(3rem, 6vw, 4rem);
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(1.2rem, 3vw, 1.6rem) clamp(1.5rem, 4vw, 2.5rem) 0;
}

.faq-galleries > .faq-section:first-child {
  margin-top: clamp(0.4rem, 1.2vw, 0.8rem);
}

.faq-section {
  background: #ffffff;
  border-radius: 32px;
  border: 1px solid rgba(15, 44, 51, 0.06);
  box-shadow: 0 24px 70px rgba(15, 44, 51, 0.06);
  padding: clamp(2rem, 3.5vw, 3rem);
  display: grid;
  gap: 2rem;
}

.faq-section-head h2 {
  margin: 0 0 0.75rem;
  font-size: 1.8rem;
  font-family: var(--font-heading);
}

.faq-section-head p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.7;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.faq-grid .faq-card {
  border-radius: 20px;
  border: 1px solid rgba(15, 44, 51, 0.06);
  box-shadow: 0 18px 40px rgba(15, 44, 51, 0.08);
  padding: 1.65rem;
  background: #ffffff;
  color: var(--color-text);
}

.faq-grid .faq-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  font-family: var(--font-heading);
}

.faq-grid .faq-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--color-muted);
}

.pre-post {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  padding: 1.4rem;
  border: 1px solid rgba(15, 44, 51, 0.08);
  border-radius: 18px;
  background: rgba(246, 203, 182, 0.14);
}

.pre-post h4 {
  margin: 0 0 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: #0f2c33;
}

.pre-post ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.55rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-muted);
}

.faq-quick-reference {
  max-width: 1080px;
  margin: clamp(3rem, 6vw, 4rem) auto 0;
  padding: clamp(2.4rem, 4vw, 3rem);
  border-radius: 30px;
  background: #0f2c33;
  color: #ffffff;
  box-shadow: 0 32px 80px rgba(15, 44, 51, 0.28);
}

.faq-quick-reference h2 {
  margin: 0 0 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.7rem;
}

.faq-reference-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}

.faq-reference-grid div {
  padding: 1.4rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-reference-grid strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1rem;
  color: #f6cbb6;
}

.faq-reference-grid p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.faq-reference-grid p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

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

  .faq-hero-aside {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem 1rem;
  }

  .faq-highlight ul {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}
