/* ============================================
   DESIGN TOKENS — Healing Aesthetics
   Warm cream + deep teal palette
   ============================================ */

:root {
  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Fonts */
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Switzer', 'Helvetica Neue', sans-serif;

  /* Colors — Warm Cream + Deep Teal (Healing Aesthetics brand) */
  --color-bg:          #FAF7F2;
  --color-surface:     #F5F0E8;
  --color-surface-2:   #EDE7DC;
  --color-border:      #D4CCBE;
  --color-text:        #2A2520;
  --color-text-muted:  #7A7168;
  --color-text-faint:  #B0A89E;
  --color-text-inverse:#FAF7F2;

  /* Primary — Deep Teal (from existing brand) */
  --color-primary:       #0A6C6E;
  --color-primary-hover:  #085456;
  --color-primary-active: #063E40;
  --color-primary-light:  #E0F0F0;

  /* Accent — Warm Gold */
  --color-accent:       #C8974C;
  --color-accent-hover: #B07E38;

  /* Semantic */
  --color-success: #437a22;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 1px 2px oklch(0.25 0.02 60 / 0.06);
  --shadow-md: 0 4px 12px oklch(0.25 0.02 60 / 0.08);
  --shadow-lg: 0 12px 32px oklch(0.25 0.02 60 / 0.12);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

body {
  font-family: var(--font-body);
  overflow-x: hidden;
}

.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--space-8); }
}

/* ============================================
   HEADER / NAV
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.06);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.header--scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-3);
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

@media (min-width: 768px) {
  .header__inner { padding-inline: var(--space-8); }
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--color-text);
}

.header__logo-svg {
  height: 48px;
  width: auto;
  display: block;
}

@media (max-width: 767px) {
  .header__logo-svg {
    height: 40px;
  }
}

.header__nav {
  display: none;
  gap: var(--space-6);
  align-items: center;
}

@media (min-width: 768px) {
  .header__nav { display: flex; }
}

.header__nav a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-interactive);
}

.header__nav a:hover {
  color: var(--color-primary);
}

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition-interactive), transform var(--transition-interactive);
}

.header__cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}

.header__cta:active {
  transform: translateY(0);
}

.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-text);
}

@media (min-width: 768px) {
  .mobile-toggle { display: none; }
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: var(--color-bg);
  padding: var(--space-24) var(--space-6) var(--space-8);
  flex-direction: column;
  gap: var(--space-4);
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  font-size: var(--text-lg);
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  padding: var(--space-3) 0;
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.08);
}

.mobile-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  background: var(--color-primary);
  color: var(--color-text-inverse) !important;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-full);
  font-weight: 600;
  text-align: center;
  margin-top: var(--space-4);
  border: none !important;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    oklch(0.25 0.02 60 / 0.75) 0%,
    oklch(0.2 0.03 180 / 0.65) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
  padding-block: var(--space-12);
}

@media (min-width: 768px) {
  .hero__content {
    padding-inline: var(--space-8);
    max-width: 720px;
    margin-inline: 0;
    margin-left: max(var(--space-8), calc((100vw - var(--content-wide)) / 2));
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: oklch(1 0 0 / 0.12);
  backdrop-filter: blur(8px);
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: #fff;
  margin-bottom: var(--space-4);
  line-height: 1.05;
}

.hero__subtitle {
  font-size: var(--text-base);
  color: oklch(1 0 0 / 0.8);
  max-width: 50ch;
  margin-bottom: var(--space-8);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition-interactive), 
              transform var(--transition-interactive),
              box-shadow var(--transition-interactive);
  cursor: pointer;
  border: none;
  min-height: 48px;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--color-accent);
  color: #fff;
}
.btn--primary:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 4px 20px oklch(from var(--color-accent) l c h / 0.35);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid oklch(1 0 0 / 0.4);
}
.btn--outline:hover {
  background: oklch(1 0 0 / 0.1);
  border-color: oklch(1 0 0 / 0.7);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-6);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: oklch(1 0 0 / 0.7);
  font-size: var(--text-xs);
  font-weight: 500;
}

.hero__trust-item svg {
  flex-shrink: 0;
  color: var(--color-accent);
}

/* ============================================
   SOCIAL PROOF BAR
   ============================================ */

.social-proof {
  background: var(--color-primary);
  padding: var(--space-4) 0;
  overflow: hidden;
}

.social-proof__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-8);
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

.social-proof__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: oklch(1 0 0 / 0.9);
  font-size: var(--text-sm);
  font-weight: 500;
  white-space: nowrap;
}

.social-proof__item strong {
  font-weight: 700;
}

/* ============================================
   PROMO MARQUEE BANNER
   ============================================ */

.promo-marquee {
  background: var(--color-accent);
  overflow: hidden;
  white-space: nowrap;
  padding: var(--space-2) 0;
}

.promo-marquee__track {
  display: inline-flex;
  animation: marquee-scroll 28s linear infinite;
}

.promo-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: #fff;
  padding-inline: var(--space-8);
  letter-spacing: 0.02em;
}

.promo-marquee__item strong {
  font-weight: 700;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .promo-marquee__track {
    animation: none;
  }
}

/* ============================================
   SECTIONS — GENERAL
   ============================================ */

.section {
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}

.section--alt {
  background: var(--color-surface);
}

.section--teal {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.section__header {
  text-align: left;
  margin-bottom: var(--space-10);
  max-width: 640px;
}

.section__header--center {
  text-align: center;
  margin-inline: auto;
}

.section__eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.section--teal .section__eyebrow {
  color: var(--color-accent);
}

.section__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.section--teal .section__title {
  color: #fff;
}

.section__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 56ch;
}

.section--teal .section__desc {
  color: oklch(1 0 0 / 0.75);
}

.section__header--center .section__desc {
  margin-inline: auto;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how-it-works__grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .how-it-works__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: center;
  }
}

.how-it-works__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.how-it-works__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how-it-works__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.step {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.step__number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 50%;
  font-weight: 700;
  font-size: var(--text-sm);
}

.step__content h3 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-1);
  color: var(--color-text);
}

.step__content p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================
   BENEFITS
   ============================================ */

.benefits__grid {
  display: grid;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .benefits__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .benefits__grid { grid-template-columns: 1fr 1fr 1fr; gap: var(--space-5); }
}

.benefit-card {
  padding: var(--space-6);
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
  transition: box-shadow var(--transition-interactive), transform var(--transition-interactive);
}

.benefit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.benefit-card__icon {
  width: 40px;
  height: 40px;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.benefit-card__title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}

.benefit-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */

.why-us__grid {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .why-us__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.why-us__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 520px;
}

.why-us__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-us__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.feature {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}

.feature__check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  margin-top: 2px;
}

.feature__text h3 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.feature__text p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================
   SKIN TONES SECTION (Full-Bleed)
   ============================================ */

.skin-tones {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.skin-tones__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.skin-tones__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.skin-tones__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    oklch(0.2 0.03 180 / 0.85) 0%,
    oklch(0.2 0.03 180 / 0.5) 50%,
    oklch(0.2 0.03 180 / 0.2) 100%
  );
}

.skin-tones__content {
  position: relative;
  z-index: 1;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: var(--space-16) var(--space-4);
}

@media (min-width: 768px) {
  .skin-tones__content {
    padding: var(--space-20) var(--space-8);
    max-width: 560px;
    margin-inline: 0;
    margin-left: max(var(--space-8), calc((100vw - var(--content-wide)) / 2));
  }
}

.skin-tones__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: #fff;
  margin-bottom: var(--space-4);
}

.skin-tones__desc {
  font-size: var(--text-base);
  color: oklch(1 0 0 / 0.8);
  max-width: 48ch;
  margin-bottom: var(--space-6);
  line-height: 1.7;
}

/* ============================================
   PRICING / OFFERS
   ============================================ */

.pricing__grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .pricing__grid { grid-template-columns: 1fr 1fr; }
}

.pricing-card {
  background: oklch(1 0 0 / 0.08);
  border: 1px solid oklch(1 0 0 / 0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive);
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px oklch(0 0 0 / 0.15);
}

.pricing-card__badge {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-4);
}

.pricing-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: #fff;
  margin-bottom: var(--space-2);
}

.pricing-card__desc {
  font-size: var(--text-base);
  color: oklch(1 0 0 / 0.7);
  margin-bottom: var(--space-6);
  line-height: 1.6;
}

.pricing-card .btn {
  width: 100%;
}

.pricing__single {
  max-width: 520px;
  margin-inline: auto;
}

.pricing-card--featured {
  background: oklch(1 0 0 / 0.12);
  border: 2px solid var(--color-accent);
  box-shadow: 0 8px 40px oklch(0 0 0 / 0.2);
}

.pricing-card__highlight {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}

.pricing-card__perks {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  text-align: left;
}

.pricing-card__perks li {
  font-size: var(--text-sm);
  color: oklch(1 0 0 / 0.8);
  padding-left: var(--space-6);
  position: relative;
}

.pricing-card__perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23C8974C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials__grid {
  display: grid;
  gap: var(--space-5);
}

@media (min-width: 640px) {
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .testimonials__grid { grid-template-columns: 1fr 1fr 1fr; }
}

.testimonial-card {
  background: var(--color-bg);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-3);
  color: var(--color-accent);
}

.testimonial-card__text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
  font-style: italic;
}

.testimonial-card__author {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
}

/* ============================================
   FAQ
   ============================================ */

.faq__list {
  max-width: var(--content-narrow);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  border: 1px solid oklch(from var(--color-text) l c h / 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg);
}

.faq-item__question {
  width: 100%;
  padding: var(--space-4) var(--space-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  min-height: 52px;
}

.faq-item__question svg {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
  color: var(--color-text-muted);
}

.faq-item.active .faq-item__question svg {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out), padding 0.35s var(--ease-out);
}

.faq-item.active .faq-item__answer {
  max-height: 300px;
}

.faq-item__answer-inner {
  padding: 0 var(--space-5) var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================
   CONTACT / FORM
   ============================================ */

.contact__grid {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact__info h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
}

.contact__info p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text);
}

.contact__detail svg {
  flex-shrink: 0;
  color: var(--color-primary);
  width: 20px;
  height: 20px;
}

.contact__form-card {
  background: var(--color-surface);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
}

@media (min-width: 768px) {
  .contact__form-card { padding: var(--space-8); }
}

.contact__form-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-5);
  color: var(--color-text);
}

.form__group {
  margin-bottom: var(--space-4);
}

.form__label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid oklch(from var(--color-text) l c h / 0.12);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px oklch(from var(--color-primary) l c h / 0.12);
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form__submit {
  width: 100%;
  margin-top: var(--space-2);
}

.form__note {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: var(--space-3);
  text-align: center;
}

.form__success {
  display: none;
  text-align: center;
  padding: var(--space-8) var(--space-4);
}

.form__success.active {
  display: block;
}

.form__success svg {
  width: 48px;
  height: 48px;
  color: var(--color-success);
  margin: 0 auto var(--space-4);
}

.form__success h4 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.form__success p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--color-text);
  color: oklch(1 0 0 / 0.7);
  padding: var(--space-12) 0 var(--space-6);
}

.footer__grid {
  display: grid;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: #fff;
  margin-bottom: var(--space-2);
}

.footer__brand-desc {
  font-size: var(--text-sm);
  line-height: 1.7;
  max-width: 36ch;
}

.footer__heading {
  font-size: var(--text-sm);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__links a {
  font-size: var(--text-sm);
  color: oklch(1 0 0 / 0.6);
  text-decoration: none;
  transition: color var(--transition-interactive);
}

.footer__links a:hover {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid oklch(1 0 0 / 0.1);
  padding-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--text-xs);
}

/* ============================================
   FORM CONSENT
   ============================================ */

.form__consent {
  font-size: 11px;
  line-height: 1.5;
  color: var(--color-text-faint);
  margin-top: var(--space-3);
  text-align: left;
}

.form__consent a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* ============================================
   CONTACT HOURS
   ============================================ */

.contact__hours {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: var(--text-sm);
}

/* ============================================
   FOOTER SOCIAL
   ============================================ */

.footer__social {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.footer__social a {
  color: oklch(1 0 0 / 0.5);
  transition: color var(--transition-interactive);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.footer__social a:hover {
  color: #fff;
}

/* ============================================
   MOBILE OPTIMIZATIONS
   ============================================ */

@media (max-width: 767px) {
  .hero {
    min-height: 100svh;
  }

  .hero__content {
    padding-block: var(--space-8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100svh - 80px);
  }

  .hero__title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__trust {
    flex-direction: column;
    gap: var(--space-3);
  }

  .social-proof__inner {
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
  }

  .how-it-works__grid {
    gap: var(--space-6);
  }

  .section__title {
    font-size: clamp(1.6rem, 6vw, 2.5rem);
  }

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

  .why-us__grid {
    gap: var(--space-6);
  }

  .why-us__image {
    order: -1;
    max-height: 320px;
  }

  .skin-tones {
    min-height: 380px;
  }

  .skin-tones__overlay {
    background: linear-gradient(
      to bottom,
      oklch(0.2 0.03 180 / 0.85) 0%,
      oklch(0.2 0.03 180 / 0.6) 100%
    );
  }

  .skin-tones__content {
    padding: var(--space-10) var(--space-4);
  }

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

  .pricing-card {
    padding: var(--space-6);
  }

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

  .contact__grid {
    gap: var(--space-6);
  }

  .form__row {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  /* Add bottom padding for sticky CTA */
  .footer {
    padding-bottom: calc(var(--space-6) + 72px);
  }
}

@media (max-width: 380px) {
  .hero__title {
    font-size: 2rem;
  }

  .section__title {
    font-size: 1.5rem;
  }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.fade-in {
  opacity: 1;
}

@supports (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 100%;
  }
}

@keyframes reveal-fade {
  to { opacity: 1; }
}

/* Fallback for browsers without scroll-driven animations */
@supports not (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    transition: opacity 0.6s var(--ease-out);
  }
  .fade-in.visible {
    opacity: 1;
  }
}

/* ============================================
   STICKY CTA (Mobile)
   ============================================ */

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--color-bg);
  border-top: 1px solid oklch(from var(--color-text) l c h / 0.08);
  padding: var(--space-3) var(--space-4);
  box-shadow: 0 -4px 16px oklch(0 0 0 / 0.08);
}

.sticky-cta.show {
  display: block;
}

@media (min-width: 768px) {
  .sticky-cta { display: none !important; }
}

.sticky-cta .btn {
  width: 100%;
}

/* ============================================
   URGENCY BADGE (Hero)
   ============================================ */
.hero__urgency {
  display: inline-block;
  background: oklch(from var(--color-primary) l c h / 0.2);
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-1) var(--space-3);
  border-radius: 999px;
  border: 1px solid oklch(1 0 0 / 0.2);
  margin-bottom: var(--space-2);
  letter-spacing: 0.01em;
  animation: pulse-urgency 2.5s ease-in-out infinite;
}

@keyframes pulse-urgency {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ============================================
   INLINE BOOKING CTA
   ============================================ */
.inline-cta {
  background: var(--color-primary);
  padding: var(--space-5) 0;
}

.inline-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.inline-cta__text {
  color: #fff;
  font-size: var(--text-lg);
  font-family: var(--font-body);
}

.inline-cta__text strong {
  font-family: var(--font-display);
  font-size: var(--text-xl);
}

.inline-cta__actions {
  display: flex;
  gap: var(--space-3);
  flex-shrink: 0;
}

.btn--outline-dark {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

.btn--outline-dark:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

@media (max-width: 767px) {
  .inline-cta__inner {
    flex-direction: column;
    text-align: center;
  }
  .inline-cta__actions {
    width: 100%;
    flex-direction: column;
  }
  .inline-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   BEFORE & AFTER GALLERY
   ============================================ */
.ba-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}

@media (max-width: 640px) {
  .ba-gallery {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

.ba-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px oklch(0 0 0 / 0.1);
}

.ba-card img {
  width: 100%;
  height: auto;
  display: block;
}

.ba-card__label {
  position: absolute;
  bottom: var(--space-3);
  left: var(--space-3);
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-1) var(--space-3);
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.ba-disclaimer {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-4);
  font-style: italic;
}

/* ============================================
   GOOGLE MAPS EMBED
   ============================================ */
.contact__map {
  margin-top: var(--space-5);
}

.contact__map iframe {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 12px oklch(0 0 0 / 0.08);
}
