/* ============================================================
   BLISSD — Massage & Wellness Studios
   Design System & Stylesheet
   ============================================================ */

/* ---------- FONT SETUP ----------
   Chapman is the primary font. Add .woff2 files to /fonts/ and
   uncomment the @font-face rules below, or load via Adobe Fonts.
   Cormorant Garamond is loaded from Google Fonts as fallback.
   -------------------------------- */

/*
@font-face {
  font-family: 'Chapman';
  src: url('../fonts/Chapman-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Chapman';
  src: url('../fonts/Chapman-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Chapman';
  src: url('../fonts/Chapman-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
*/

/* ---------- CUSTOM PROPERTIES ---------- */
:root {
  /* Colors */
  --c-accent: #8FBC8F;
  --c-accent-dark: #6B9B6B;
  --c-accent-light: #B5D5B5;
  --c-accent-pale: #E8F2E8;
  --c-dark: #1a1a1a;
  --c-text: #3a3a3a;
  --c-text-light: #555555;
  --c-text-muted: #777;
  --c-white: #ffffff;
  --c-off-white: #faf9f7;
  --c-cream: #f5f3ef;
  --c-border: #e8e6e2;

  /* Typography */
  --ff-primary: 'Chapman', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --fs-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --fs-sm: clamp(0.875rem, 0.8rem + 0.2vw, 0.95rem);
  --fs-body: clamp(0.95rem, 0.88rem + 0.25vw, 1.05rem);
  --fs-md: clamp(1.05rem, 0.95rem + 0.35vw, 1.2rem);
  --fs-lg: clamp(1.125rem, 1rem + 0.5vw, 1.5rem);
  --fs-xl: clamp(1.5rem, 1.2rem + 1.2vw, 2.25rem);
  --fs-2xl: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  --fs-3xl: clamp(2.5rem, 1.8rem + 3vw, 5rem);
  --fs-hero: clamp(3rem, 2rem + 5vw, 8rem);

  /* Spacing */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2.5rem;
  --sp-xl: 4rem;
  --sp-2xl: 6rem;
  --sp-3xl: 10rem;
  --sp-section: clamp(5rem, 4rem + 5vw, 10rem);

  /* Layout */
  --max-w: 1280px;
  --max-w-narrow: 800px;

  /* Animation */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 0.3s;
  --dur-med: 0.6s;
  --dur-slow: 1s;
  --dur-xslow: 1.5s;

  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* ---------- RESET ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--ff-primary);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--c-text);
  background-color: var(--c-off-white);
  overflow-x: hidden;
  letter-spacing: 0.01em;
}
body.no-scroll {
  overflow: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* ---------- UTILITY ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 3rem);
}
.container--narrow {
  max-width: var(--max-w-narrow);
}
.section {
  padding: var(--sp-section) 0;
}
.section__header {
  text-align: center;
  margin-bottom: var(--sp-xl);
}
.section__header--light .section__label,
.section__header--light .section__title {
  color: var(--c-white);
}
.section__label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c-accent-dark);
  margin-bottom: var(--sp-sm);
}
.section__label--light {
  color: var(--c-accent-light);
}
.section__title {
  font-size: var(--fs-2xl);
  font-weight: 400;
  color: var(--c-dark);
  letter-spacing: -0.03em;
}
.section__subtitle {
  font-size: var(--fs-body);
  color: var(--c-text-light);
  max-width: 520px;
  margin: var(--sp-sm) auto 0;
  line-height: 1.7;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--ff-primary);
  font-size: var(--fs-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  border: 1px solid var(--c-dark);
  color: var(--c-dark);
  background: transparent;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
  cursor: pointer;
}
.btn:hover {
  background: var(--c-dark);
  color: var(--c-white);
}
.btn--primary {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-white);
}
.btn--primary:hover {
  background: var(--c-accent-dark);
  border-color: var(--c-accent-dark);
  color: var(--c-white);
}
.btn--outline {
  border-color: var(--c-accent);
  color: var(--c-accent-dark);
}
.btn--outline:hover {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-white);
}
.btn--light {
  border-color: var(--c-white);
  color: var(--c-white);
}
.btn--light:hover {
  background: var(--c-white);
  color: var(--c-dark);
}
.btn--nav {
  padding: 0.6rem 1.4rem;
  font-size: 0.6rem;
}
.btn--large {
  padding: 1.1rem 2.8rem;
  font-size: var(--fs-sm);
}
.btn--hero {
  border-color: var(--c-white);
  color: var(--c-white);
}
.btn--hero:hover {
  background: var(--c-white);
  color: var(--c-dark);
}
.btn--full {
  width: 100%;
  justify-content: center;
}

/* ---------- PRELOADER ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--c-off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader__inner {
  text-align: center;
}
.preloader__logo {
  width: 120px;
  margin: 0 auto var(--sp-md);
  animation: preloaderPulse 1.5s ease-in-out infinite;
}
.preloader__logo img {
  width: 100%;
}
.preloader__bar {
  width: 120px;
  height: 1px;
  background: var(--c-border);
  border-radius: 2px;
  overflow: hidden;
}
.preloader__bar-fill {
  width: 0;
  height: 100%;
  background: var(--c-accent);
  animation: preloaderFill 2s var(--ease-out) forwards;
}
@keyframes preloaderPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
@keyframes preloaderFill {
  to { width: 100%; }
}

/* ---------- CUSTOM CURSOR ---------- */
.cursor, .cursor-follower {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  will-change: transform;
}
.cursor {
  width: 8px;
  height: 8px;
  background: var(--c-accent);
  transform: translate(-50%, -50%);
  transition: width var(--dur-fast) var(--ease-out),
              height var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
}
.cursor.hover {
  width: 40px;
  height: 40px;
  background: rgba(143, 188, 143, 0.15);
  mix-blend-mode: normal;
}
.cursor-follower {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(143, 188, 143, 0.3);
  transform: translate(-50%, -50%);
  transition: width var(--dur-fast) var(--ease-out),
              height var(--dur-fast) var(--ease-out),
              opacity var(--dur-fast) var(--ease-out);
}
.cursor-follower.hover {
  width: 56px;
  height: 56px;
  opacity: 0;
}
@media (hover: none) {
  .cursor, .cursor-follower { display: none; }
}

/* ---------- GRAIN OVERLAY ---------- */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--dur-med) var(--ease-out);
}
.nav.scrolled {
  padding: 0.75rem 0;
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 3rem);
}
.nav__logo {
  position: relative;
  width: 95px;
  z-index: 10;
}
.nav__logo-img {
  width: 100%;
  transition: opacity var(--dur-fast) var(--ease-out);
}
.nav__logo-color {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.nav__logo-white {
  opacity: 1;
}
.nav.scrolled .nav__logo-color {
  opacity: 1;
}
.nav.scrolled .nav__logo-white {
  opacity: 0;
}
.nav--dark .nav__logo-color {
  opacity: 1;
}
.nav--dark .nav__logo-white {
  opacity: 0;
}
.nav--dark .nav__link {
  color: var(--c-dark);
}
.nav--dark .nav__link:hover {
  color: var(--c-accent-dark);
}
.nav--dark .btn--nav {
  color: var(--c-dark);
  border-color: var(--c-dark);
}
.nav--dark .btn--nav:hover {
  background: var(--c-dark);
  color: var(--c-white);
}
.nav--dark .nav__hamburger-line {
  background: var(--c-dark);
}
.nav__menu {
  display: none;
}
.nav__list {
  display: flex;
  gap: 2rem;
}
.nav__link {
  font-size: var(--fs-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-white);
  position: relative;
  padding: 0.25rem 0;
}
.nav.scrolled .nav__link {
  color: var(--c-text);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--dur-fast) var(--ease-out);
}
.nav__link:hover::after {
  width: 100%;
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.btn--nav {
  color: var(--c-white);
  border-color: rgba(255,255,255,0.4);
}
.btn--nav:hover {
  background: var(--c-white);
  color: var(--c-dark);
}
.nav.scrolled .btn--nav {
  color: var(--c-dark);
  border-color: var(--c-dark);
}
.nav.scrolled .btn--nav:hover {
  background: var(--c-dark);
  color: var(--c-white);
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  z-index: 1001;
}
.nav__hamburger-line {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--c-white);
  transition: all var(--dur-fast) var(--ease-out);
  transform-origin: center;
}
.nav.scrolled .nav__hamburger-line {
  background: var(--c-dark);
}
.nav__hamburger.active .nav__hamburger-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
  background: var(--c-dark);
}
.nav__hamburger.active .nav__hamburger-line:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.active .nav__hamburger-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
  background: var(--c-dark);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--c-off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur-med) var(--ease-out);
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu__inner {
  text-align: center;
  padding-top: 80px;
  overflow-y: auto;
  max-height: 100vh;
}
.mobile-menu__list {
  margin-bottom: var(--sp-lg);
}
.mobile-menu__item {
  overflow: hidden;
}
.mobile-menu__link {
  display: block;
  font-size: var(--fs-xl);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--c-dark);
  padding: 0.5rem 0;
  transform: translateY(100%);
  opacity: 0;
  transition: transform var(--dur-med) var(--ease-out),
              opacity var(--dur-med) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
}
.mobile-menu.open .mobile-menu__link {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu.open .mobile-menu__item:nth-child(1) .mobile-menu__link { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu__item:nth-child(2) .mobile-menu__link { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu__item:nth-child(3) .mobile-menu__link { transition-delay: 0.2s; }
.mobile-menu.open .mobile-menu__item:nth-child(4) .mobile-menu__link { transition-delay: 0.25s; }
.mobile-menu.open .mobile-menu__item:nth-child(5) .mobile-menu__link { transition-delay: 0.3s; }
.mobile-menu.open .mobile-menu__item:nth-child(6) .mobile-menu__link { transition-delay: 0.35s; }
.mobile-menu.open .mobile-menu__item:nth-child(7) .mobile-menu__link { transition-delay: 0.4s; }
.mobile-menu__link:hover {
  color: var(--c-accent);
}
.mobile-menu__cta {
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--dur-med) var(--ease-out) 0.4s;
}
.mobile-menu.open .mobile-menu__cta {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: kenBurns 20s var(--ease-in-out) infinite alternate;
  will-change: transform;
}
@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.25) 50%,
    rgba(0,0,0,0.5) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--c-white);
  padding: 0 var(--sp-md);
}
.hero__tagline {
  font-size: var(--fs-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: var(--sp-md);
  opacity: 0;
}
.hero__wordmark {
  width: clamp(160px, 28vw, 320px);
  filter: brightness(0) invert(1);
  margin: 0 auto;
}
.hero__tagline--below {
  margin-top: -6.5rem;
  margin-bottom: var(--sp-lg);
}
@media (max-width: 768px) {
  .hero__tagline--below {
    margin-top: -3.5rem;
  }
}
.hero__title {
  margin-bottom: 0.5rem;
  opacity: 0;
}
.hero__subtitle {
  font-size: var(--fs-md);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.05em;
  margin-bottom: var(--sp-lg);
  opacity: 0;
}
.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 2s forwards;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--c-white);
  animation: scrollLine 2s var(--ease-in-out) infinite;
}
@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* Hero animation triggers */
.hero.loaded .hero__tagline,
.hero.loaded .hero__title,
.hero.loaded .hero__subtitle,
.hero.loaded .btn--hero {
  animation: heroFadeUp 1s var(--ease-out) forwards;
}
.hero.loaded .hero__tagline { animation-delay: 0.3s; }
.hero.loaded .hero__title   { animation-delay: 0.6s; }
.hero.loaded .hero__subtitle { animation-delay: 0.9s; }
.hero.loaded .btn--hero     { animation-delay: 1.2s; opacity: 0; }

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- GIFT OPTIONS (eGift / Physical) ---------- */
.gift-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.gift-option {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(143, 188, 143, 0.25);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gift-option:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(107, 155, 107, 0.15);
}
.gift-option__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--c-accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent-dark);
}
.gift-option__label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-accent-dark);
  margin-bottom: 0.5rem;
}
.gift-option__title {
  font-size: clamp(1.6rem, 1.4rem + 0.6vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  color: var(--c-text);
}
.gift-option__text {
  color: var(--c-text-light);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.gift-option__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  text-align: left;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
}
.gift-option__features li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.4rem;
  color: var(--c-text);
  font-size: 0.95rem;
  line-height: 1.4;
  border-bottom: 1px solid rgba(143, 188, 143, 0.15);
}
.gift-option__features li:last-child { border-bottom: none; }
.gift-option__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-accent);
}
.gift-option__cta {
  margin-top: auto;
  align-self: center;
}
@media (max-width: 768px) {
  .gift-options {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .gift-option {
    padding: 2rem 1.5rem;
  }
}

/* ---------- COOKIE CONSENT BANNER ---------- */
.consent-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  color: var(--c-text);
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(143, 188, 143, 0.3);
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  font-family: var(--font-body, 'Cormorant Garamond', serif);
}
.consent-banner.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.consent-banner__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.consent-banner__text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  color: var(--c-text);
}
.consent-banner__text a {
  color: var(--c-accent-dark);
  text-decoration: underline;
}
.consent-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.consent-banner__btn {
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--c-accent-dark);
  background: transparent;
  color: var(--c-accent-dark);
  transition: opacity 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}
.consent-banner__btn--accept {
  background: var(--c-accent);
  color: #fff;
  border-color: var(--c-accent);
}
.consent-banner__btn:hover { opacity: 0.85; }
.consent-banner__btn:active { transform: scale(0.97); }
@media (max-width: 640px) {
  .consent-banner {
    padding: 1rem 1.1rem;
  }
  .consent-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }
  .consent-banner__text {
    text-align: center;
    font-size: 0.95rem;
  }
  .consent-banner__actions {
    justify-content: center;
  }
  .consent-banner__btn {
    flex: 1;
  }
}

/* ---------- PROMO BANNER (Mother's Day, seasonal) ---------- */
.promo-banner {
  padding: var(--sp-xl) 0;
  background: var(--c-accent-pale);
}
.promo-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-lg);
  padding: var(--sp-lg) var(--sp-xl);
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(107, 155, 107, 0.12);
  border: 1px solid rgba(143, 188, 143, 0.25);
}
.promo-banner__text {
  flex: 1;
  min-width: 0;
}
.promo-banner__eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-accent-dark);
  margin-bottom: 0.5rem;
}
.promo-banner__title {
  font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.4rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0.6rem;
  color: var(--c-text);
}
.promo-banner__subtitle {
  color: var(--c-text-light);
  line-height: 1.6;
  max-width: 56ch;
  margin: 0;
}
.promo-banner__cta {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .promo-banner__inner {
    flex-direction: column;
    text-align: center;
    padding: var(--sp-lg);
  }
  .promo-banner__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---------- WELCOME ---------- */
.welcome__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.welcome__heading {
  font-size: var(--fs-xl);
  font-weight: 400;
  line-height: 1.4;
  color: var(--c-dark);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-md);
}
.welcome__heading .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.welcome__heading .word-inner {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.8s var(--ease-out);
}
.welcome__heading.animated .word-inner {
  transform: translateY(0);
}
.welcome__text {
  font-size: var(--fs-body);
  color: var(--c-text-light);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto var(--sp-xl);
}
.welcome__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}
.welcome__features--4 {
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-md);
}
.welcome__feature-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.25rem;
  background: var(--c-accent-pale);
  color: var(--c-accent-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.welcome__feature-icon svg {
  width: 38px;
  height: 38px;
}
.welcome__features--4 .welcome__feature {
  text-align: center;
  border-top: none;
  padding: var(--sp-md) var(--sp-sm);
}
.welcome__feature {
  padding: var(--sp-lg);
  border-top: 1px solid var(--c-border);
}
.welcome__feature-number {
  font-size: var(--fs-xs);
  color: var(--c-accent);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: var(--sp-sm);
}
.welcome__feature-title {
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--c-dark);
  margin-bottom: 0.5rem;
}
.welcome__feature-text {
  font-size: var(--fs-sm);
  color: var(--c-text-light);
  line-height: 1.7;
}

/* ---------- SERVICES ---------- */
.services {
  background: var(--c-white);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}
.service-card {
  position: relative;
  overflow: hidden;
  background: var(--c-off-white);
  transition: transform var(--dur-med) var(--ease-out);
}
.service-card:hover {
  transform: translateY(-4px);
}
.service-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.service-card:hover .service-card__image {
  transform: scale(1.05);
}
.service-card__content {
  padding: var(--sp-md) var(--sp-md) var(--sp-lg);
}
.service-card__number {
  font-size: var(--fs-xs);
  color: var(--c-accent);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.75rem;
}
.service-card__title {
  font-size: var(--fs-lg);
  font-weight: 400;
  color: var(--c-dark);
  margin-bottom: 0.75rem;
}
.service-card__text {
  font-size: var(--fs-sm);
  color: var(--c-text-light);
  line-height: 1.7;
  margin-bottom: var(--sp-md);
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-accent-dark);
  transition: gap var(--dur-fast) var(--ease-out);
}
.service-card__link:hover {
  gap: 0.85rem;
}
.service-card__link svg {
  transition: transform var(--dur-fast) var(--ease-out);
}
.service-card__link:hover svg {
  transform: translateX(3px);
}

/* ---------- HORIZONTAL GALLERY ---------- */
.gallery {
  padding: var(--sp-xl) 0;
  overflow: hidden;
  background: var(--c-white);
}
.gallery__track {
  display: flex;
  gap: var(--sp-sm);
  animation: galleryScroll 40s linear infinite;
  width: max-content;
}
.gallery__track:hover {
  animation-play-state: paused;
}
.gallery__item {
  flex-shrink: 0;
  width: 300px;
  height: 400px;
  overflow: hidden;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-med) var(--ease-out);
}
.gallery__item:hover img {
  transform: scale(1.05);
}
@keyframes galleryScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- ABOUT ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}
.about__image-col {
  position: relative;
}
.about__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.about__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--c-accent);
  z-index: -1;
}
.about__text {
  font-size: var(--fs-body);
  color: var(--c-text-light);
  line-height: 1.8;
  margin-bottom: var(--sp-md);
}
.about__signature {
  margin-top: var(--sp-lg);
  padding-top: var(--sp-md);
  border-top: 1px solid var(--c-border);
}
.about__signature span {
  display: block;
  font-size: var(--fs-lg);
  font-style: italic;
  color: var(--c-dark);
}
.about__signature small {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-text-muted);
}

/* ---------- EXPERIENCE ---------- */
.experience {
  position: relative;
  overflow: hidden;
}
.experience__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: grayscale(0.3);
}
.experience__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}
.experience__container {
  position: relative;
  z-index: 2;
}
.experience__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}
.experience__step {
  text-align: center;
  color: var(--c-white);
  padding: var(--sp-lg);
}
.experience__step-number {
  font-size: var(--fs-3xl);
  font-weight: 300;
  color: var(--c-accent-light);
  opacity: 0.4;
  display: block;
  line-height: 1;
  margin-bottom: var(--sp-md);
}
.experience__step-title {
  font-size: var(--fs-lg);
  font-weight: 400;
  margin-bottom: var(--sp-sm);
}
.experience__step-text {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* ---------- STUDIOS ---------- */
.studios__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-lg);
}
.studio-card {
  background: var(--c-white);
  overflow: hidden;
  transition: transform var(--dur-med) var(--ease-out),
              box-shadow var(--dur-med) var(--ease-out);
}
.studio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}
.studio-card__image-wrap {
  overflow: hidden;
  aspect-ratio: 16/10;
}
.studio-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.studio-card:hover .studio-card__image {
  transform: scale(1.03);
}
.studio-card__content {
  padding: var(--sp-lg);
}
.studio-card__title {
  font-size: var(--fs-xl);
  font-weight: 400;
  color: var(--c-dark);
  margin-bottom: 0.5rem;
}
.studio-card__address {
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  margin-bottom: var(--sp-md);
  line-height: 1.6;
}
.studio-card__details p {
  font-size: var(--fs-sm);
  color: var(--c-text-light);
  line-height: 1.7;
  margin-bottom: var(--sp-md);
}
.studio-card__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  flex-wrap: wrap;
}
.studio-card__map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color var(--dur-fast) var(--ease-out);
}
.studio-card__map-link:hover {
  color: var(--c-accent-dark);
}

/* ---------- TEAM ---------- */
.team {
  background: var(--c-white);
}
.team__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-md);
}
.team__grid .team-card {
  flex: 0 0 calc(25% - var(--sp-md) * 3 / 4);
  max-width: 260px;
}
.team-card {
  position: relative;
  overflow: hidden;
  cursor: default;
}
.team-card__image-wrap {
  overflow: hidden;
  aspect-ratio: 3/4;
}
.team-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform var(--dur-slow) var(--ease-out),
              filter var(--dur-med) var(--ease-out);
  filter: grayscale(0.2);
}
.team-card:hover .team-card__image {
  transform: scale(1.05);
  filter: grayscale(0);
}
.team-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-lg) var(--sp-md) var(--sp-md);
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  transform: translateY(100%);
  transition: transform var(--dur-med) var(--ease-out);
}
.team-card:hover .team-card__info {
  transform: translateY(0);
}
.team-card__name {
  font-size: var(--fs-md);
  font-weight: 400;
  color: var(--c-white);
}
.team-card__role {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  background: var(--c-cream);
}
.testimonials__carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  min-height: 200px;
}
.testimonial {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--dur-med) var(--ease-out);
  pointer-events: none;
}
.testimonial.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.testimonial__quote-icon {
  color: var(--c-accent);
  margin-bottom: var(--sp-md);
}
.testimonial__text {
  font-size: var(--fs-md);
  font-style: italic;
  color: var(--c-text);
  line-height: 1.8;
  margin-bottom: var(--sp-md);
}
.testimonial__author {
  font-size: var(--fs-xs);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-accent-dark);
}
.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: var(--sp-lg);
}
.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-border);
  transition: all var(--dur-fast) var(--ease-out);
}
.testimonials__dot.active {
  background: var(--c-accent);
  transform: scale(1.25);
}

/* ---------- CTA ---------- */
.cta {
  position: relative;
  padding: var(--sp-3xl) 0;
  overflow: hidden;
}
.cta__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.cta__container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--c-white);
}
.cta__title {
  font-size: var(--fs-2xl);
  font-weight: 400;
  max-width: 600px;
  margin: var(--sp-sm) auto var(--sp-md);
  letter-spacing: -0.02em;
}
.cta__text {
  font-size: var(--fs-body);
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin: 0 auto var(--sp-lg);
}

/* ---------- GIFT CARDS ---------- */
.gift__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}
.gift__image-wrap {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gift__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gift__text {
  font-size: var(--fs-body);
  color: var(--c-text-light);
  line-height: 1.8;
  margin-bottom: var(--sp-lg);
}

/* ---------- FAQ ---------- */
.faq__list {
  display: flex;
  flex-direction: column;
}
.faq__item {
  border-bottom: 1px solid var(--c-border);
}
.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-md) 0;
  font-size: var(--fs-md);
  font-weight: 400;
  color: var(--c-dark);
  text-align: left;
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease-out);
}
.faq__question:hover {
  color: var(--c-accent-dark);
}
.faq__icon {
  flex-shrink: 0;
  transition: transform var(--dur-fast) var(--ease-out);
}
.faq__item.open .faq__icon {
  transform: rotate(45deg);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-med) var(--ease-out),
              padding var(--dur-med) var(--ease-out);
}
.faq__item.open .faq__answer {
  max-height: 300px;
  padding-bottom: var(--sp-md);
}
.faq__answer p {
  font-size: var(--fs-sm);
  color: var(--c-text-light);
  line-height: 1.8;
}

/* ---------- CONTACT ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
}
.contact__text {
  font-size: var(--fs-body);
  color: var(--c-text-light);
  line-height: 1.8;
  margin-bottom: var(--sp-lg);
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
}
.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.contact__detail svg {
  flex-shrink: 0;
  color: var(--c-accent);
  margin-top: 0.15rem;
}
.contact__detail small {
  display: block;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-text-muted);
  margin-bottom: 0.15rem;
}
.contact__detail a,
.contact__detail span {
  font-size: var(--fs-body);
  color: var(--c-dark);
}
.contact__detail a:hover {
  color: var(--c-accent-dark);
}
.contact__social {
  display: flex;
  gap: 0.75rem;
}
.contact__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--c-border);
  border-radius: 50%;
  color: var(--c-text);
  transition: all var(--dur-fast) var(--ease-out);
}
.contact__social-link:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  transform: translateY(-2px);
}

/* Contact Form */
.contact__form-wrap {
  background: var(--c-white);
  padding: var(--sp-xl);
}
.tally-embed-wrap {
  width: 100%;
}
.tally-embed-wrap iframe {
  width: 100%;
  border: none;
  display: block;
}
.contact__form-title {
  font-size: var(--fs-lg);
  font-weight: 400;
  color: var(--c-dark);
  margin-bottom: var(--sp-lg);
}
.form__group {
  position: relative;
  margin-bottom: var(--sp-md);
}
.form__input {
  width: 100%;
  padding: 1rem 0 0.5rem;
  font-family: var(--ff-primary);
  font-size: var(--fs-sm);
  color: var(--c-dark);
  border: none;
  border-bottom: 1px solid var(--c-border);
  background: transparent;
  outline: none;
  transition: border-color var(--dur-fast) var(--ease-out);
}
.form__input:focus {
  border-color: var(--c-accent);
}
.form__label {
  position: absolute;
  top: 1rem;
  left: 0;
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  pointer-events: none;
  transition: all var(--dur-fast) var(--ease-out);
}
.form__input:focus ~ .form__label,
.form__input:not(:placeholder-shown) ~ .form__label {
  top: -0.1rem;
  font-size: var(--fs-xs);
  color: var(--c-accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.form__textarea {
  resize: vertical;
  min-height: 100px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--c-dark);
  color: rgba(255,255,255,0.6);
  padding: var(--sp-2xl) 0 var(--sp-lg);
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-xl);
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo {
  width: 120px;
  margin-bottom: var(--sp-sm);
}
.footer__tagline {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, auto) 1.5fr;
  gap: var(--sp-lg);
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__col-title {
  font-size: var(--fs-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-white);
  margin-bottom: 0.5rem;
}
.footer__col a {
  font-size: var(--fs-sm);
  transition: color var(--dur-fast) var(--ease-out);
}
.footer__col a:hover {
  color: var(--c-accent-light);
}
.footer__bottom {
  padding-top: var(--sp-lg);
  text-align: center;
}
.footer__acknowledgement {
  font-size: var(--fs-xs);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto var(--sp-sm);
  opacity: 0.6;
}
.footer__copy {
  font-size: var(--fs-xs);
  opacity: 0.4;
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 50%;
  color: var(--c-dark);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--dur-fast) var(--ease-out);
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-white);
  transform: translateY(-2px);
}

/* ---------- SCROLL ANIMATIONS ---------- */
.anim-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}
.anim-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children */
.anim-reveal:nth-child(2) { transition-delay: 0.08s; }
.anim-reveal:nth-child(3) { transition-delay: 0.16s; }
.anim-reveal:nth-child(4) { transition-delay: 0.24s; }
.anim-reveal:nth-child(5) { transition-delay: 0.32s; }
.anim-reveal:nth-child(6) { transition-delay: 0.4s; }
.anim-reveal:nth-child(7) { transition-delay: 0.48s; }
.anim-reveal:nth-child(8) { transition-delay: 0.56s; }
.anim-reveal:nth-child(9) { transition-delay: 0.64s; }

/* ---------- RESPONSIVE ---------- */
@media (min-width: 1024px) {
  .nav__menu {
    display: block;
  }
  .nav__hamburger {
    display: none;
  }
}

@media (max-width: 1023px) {
  .btn--nav {
    display: none;
  }
}

@media (max-width: 900px) {
  .services__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
  }
  .service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .service-card__image-wrap {
    aspect-ratio: auto;
    min-height: 250px;
  }
  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
  }
  .about__image-wrap {
    max-width: 400px;
    margin: 0 auto;
  }
  .about__image-accent { display: none; }
  .experience__steps {
    grid-template-columns: 1fr;
    gap: var(--sp-md);
  }
  .studios__grid {
    grid-template-columns: 1fr;
  }
  .team__grid .team-card {
    flex: 0 0 calc(33.333% - var(--sp-md) * 2 / 3);
  }
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .gift__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
  }
  .footer__top {
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
  }
  .footer__links {
    grid-template-columns: repeat(2, 1fr) 1.5fr;
  }
  .footer__col--form {
    grid-column: 3;
  }
}

@media (max-width: 640px) {
  .welcome__features {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .welcome__features--4 {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-sm);
  }
  .service-card {
    grid-template-columns: 1fr;
  }
  .team__grid {
    gap: var(--sp-xs);
  }
  .team__grid .team-card {
    flex: 0 0 calc(50% - var(--sp-xs) / 2);
  }
  .team-card__info {
    transform: translateY(0);
    position: relative;
    background: var(--c-white);
    padding: var(--sp-sm);
  }
  .team-card__name {
    color: var(--c-dark);
    font-size: var(--fs-sm);
  }
  .team-card__role {
    color: var(--c-text-muted);
    font-size: 0.6rem;
  }
  .gallery__item {
    width: 220px;
    height: 300px;
  }
  .footer__links {
    grid-template-columns: 1fr;
    gap: var(--sp-md);
  }
  .footer__col--form {
    grid-column: auto;
  }
  .contact__form-wrap {
    padding: var(--sp-lg);
  }
  .experience__bg {
    background-attachment: scroll;
  }
  .cta__bg {
    background-attachment: scroll;
  }
}

/* ---------- SIGNUP POPUP ---------- */
.signup-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.signup-popup.active {
  opacity: 1;
  visibility: visible;
}
.signup-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
}
.signup-popup__modal {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 780px;
  width: 90%;
  background: var(--c-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.4s ease;
}
.signup-popup.active .signup-popup__modal {
  transform: translateY(0) scale(1);
}
.signup-popup__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  background: var(--c-white);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}
.signup-popup__close:hover {
  transform: scale(1.1);
}
.signup-popup__image {
  height: 100%;
  min-height: 400px;
}
.signup-popup__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.signup-popup__content {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.signup-popup__title {
  font-family: var(--ff-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400;
  color: var(--c-dark);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
.signup-popup__text {
  font-size: 0.9rem;
  color: var(--c-text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.signup-popup__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}
.signup-popup__input {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--c-off-white);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  font-family: var(--ff-body);
  font-size: 0.88rem;
  color: var(--c-dark);
  transition: border-color 0.3s ease;
  margin-bottom: 0.6rem;
}
.signup-popup__input::placeholder {
  color: var(--c-text-muted);
}
.signup-popup__input:focus {
  outline: none;
  border-color: var(--c-accent);
}
.signup-popup__form .btn {
  margin-top: 0.5rem;
  cursor: pointer;
}

@media (max-width: 640px) {
  .signup-popup__modal {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .signup-popup__image {
    min-height: 180px;
    max-height: 200px;
  }
  .signup-popup__content {
    padding: 1.5rem;
  }
  .signup-popup__fields {
    grid-template-columns: 1fr;
  }
}

/* ---------- LOCATION PICKER ---------- */
.location-picker {
  background: var(--c-off-white);
  padding: var(--sp-lg) 0 var(--sp-section);
  scroll-margin-top: -2rem;
}
.location-picker .section__header {
  margin-bottom: var(--sp-lg);
}
.location-picker__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-xl);
  max-width: 900px;
  margin: 0 auto;
}
.location-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-white);
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.location-card__image-wrap {
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.location-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.location-card:hover .location-card__image {
  transform: scale(1.05);
}
.location-card__content {
  padding: var(--sp-lg);
  text-align: center;
}
.location-card__title {
  font-family: var(--ff-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--c-dark);
  margin-bottom: 0.5rem;
}
/* Prevent mobile browsers auto-linkifying addresses */
.location-card__address,
.studio-card__address,
.hero__tagline,
.contact__detail span,
.contact__detail small {
  -webkit-text-decoration-skip-ink: none;
  text-decoration: none !important;
}
.location-card__address a,
.studio-card__address a,
.hero__tagline a,
.contact__detail span a,
.contact__detail div > a[href^="https://maps"] {
  text-decoration: none !important;
  color: inherit !important;
  pointer-events: none;
  border-bottom: none !important;
}
.location-card__address {
  font-size: 0.9rem;
  color: var(--c-text-light);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.location-card__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.location-card__actions .btn {
  flex: 1 1 auto;
  min-width: 120px;
  max-width: 180px;
  justify-content: center;
}
.location-card__image-wrap {
  display: block;
  text-decoration: none;
}
.location-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-accent-dark);
  transition: gap 0.3s ease;
}
.location-card:hover .location-card__cta {
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .location-picker__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-sm);
    max-width: 100%;
  }
  .location-card__image-wrap {
    height: 160px;
  }
  .location-card__content {
    padding: var(--sp-sm);
  }
  .location-card__title {
    font-size: 1.2rem;
  }
  .location-card__address {
    font-size: 0.75rem;
  }
  .location-card__actions .btn {
    min-width: unset;
    max-width: unset;
    font-size: 0.6rem;
    padding: 0.6rem 1rem;
  }
}
@media (max-width: 360px) {
  .location-picker__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-md);
  }
}

/* ---------- SUB-PAGE HERO ---------- */
.hero--sub {
  min-height: 70vh;
}
.hero--sub .hero__content {
  max-width: 800px;
}
.hero__title--text {
  font-family: var(--ff-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  color: var(--c-white);
  line-height: 1.1;
  text-align: center;
  display: block;
  width: 100%;
}

/* ---------- NAV DARK (for pages without hero scroll) ---------- */
.nav--dark {
  background: var(--c-white);
  box-shadow: 0 1px 0 var(--c-border);
}

/* ---------- SERVICE LIST ITEMS ---------- */
.services__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-md) 0;
  border-bottom: 1px solid var(--c-border);
  gap: var(--sp-lg);
}
.service-item:first-child {
  border-top: 1px solid var(--c-border);
}
.service-item__info {
  flex: 1;
}
.service-item__title {
  font-family: var(--ff-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: var(--c-dark);
  margin-bottom: 0.5rem;
}
.service-item__text {
  font-size: 0.95rem;
  color: var(--c-text-light);
  line-height: 1.6;
  max-width: 600px;
}
.service-item__meta {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  flex-shrink: 0;
}
.service-item__price {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  color: var(--c-accent-dark);
  white-space: nowrap;
}
.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
}

/* ---------- TEAM PROFILES ---------- */
.team-profiles {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xl);
}
.team-profile {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--sp-lg);
  align-items: start;
}
.team-profile__image-wrap {
  width: 200px;
  height: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.team-profile__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-profile__content {
  padding-top: 0.5rem;
}
.team-profile__name {
  font-family: var(--ff-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: var(--c-dark);
  margin-bottom: 0.25rem;
}
.team-profile__role {
  font-size: 0.9rem;
  color: var(--c-accent-dark);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.team-profile__bio {
  font-size: 0.95rem;
  color: var(--c-text-light);
  line-height: 1.7;
}

/* ---------- SECTION ALT BACKGROUND ---------- */
.section--alt {
  background: var(--c-cream);
}

/* ---------- BOOKING WIDGET ---------- */
.booking-widget {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.booking-widget iframe {
  width: 100% !important;
  max-width: 100% !important;
  height: 1000px !important;
  border-radius: 12px;
}

/* ---------- TEAM CARD LINKS + BOOK BUTTON ---------- */
.team-card__name-link {
  text-decoration: none;
  color: inherit;
}
.team-card__name-link:hover .team-card__name {
  color: var(--c-accent-dark);
}
.team-card__image-wrap {
  display: block;
}
.team-card__book {
  margin-top: 0.75rem;
}

/* ---------- ACTIVE NAV LINK ---------- */
.nav__link.active {
  color: var(--c-accent-dark);
}

/* ---------- SUB-PAGE RESPONSIVE ---------- */
@media (max-width: 768px) {
  .service-item {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-sm);
  }
  .service-item__meta {
    width: 100%;
    justify-content: space-between;
  }
  .team-profile {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .team-profile__image-wrap {
    margin: 0 auto;
  }
  .hero--sub {
    min-height: 60vh;
  }
  .booking-widget iframe {
    height: 900px !important;
  }
}

/* ---------- FOOTER CONTACT FORM (inline with nav columns) ---------- */
.footer__form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__input {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  color: var(--c-white);
  font-family: var(--ff-primary);
  font-size: 0.9rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.footer__input::placeholder {
  color: rgba(255,255,255,0.45);
}
.footer__input:focus {
  outline: none;
  border-color: var(--c-accent-light);
  background: rgba(255,255,255,0.12);
}
.footer__textarea {
  resize: vertical;
  min-height: 90px;
  font-family: var(--ff-primary);
}
.footer__form .btn {
  margin-top: 0.4rem;
  cursor: pointer;
}
.footer__form .form__status {
  margin-top: 0.75rem;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  font-size: 0.85rem;
  text-align: center;
}

/* ---------- FOOTER NEWSLETTER ---------- */
.footer__newsletter {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: var(--sp-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-lg);
  flex-wrap: wrap;
}
.footer__newsletter-text {
  flex: 0 0 auto;
  max-width: 340px;
}
.footer__newsletter-text p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.25rem;
}
.footer__newsletter-form {
  display: flex;
  gap: 0.5rem;
  flex: 1 1 auto;
  max-width: 480px;
  align-items: center;
  flex-wrap: wrap;
}
.footer__newsletter-form .footer__input {
  flex: 1 1 140px;
}
.footer__newsletter-form .btn {
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .footer__newsletter {
    flex-direction: column;
    text-align: center;
  }
  .footer__newsletter-text {
    max-width: 100%;
  }
  .footer__newsletter-form {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
  }
  .footer__newsletter-form .footer__input,
  .footer__newsletter-form .btn {
    width: 100%;
  }
}

/* ---------- THANK YOU PAGE ---------- */
.thankyou {
  display: block;
  padding: 180px 0 var(--sp-2xl);
}
.thankyou__content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.thankyou__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--sp-md);
  background: var(--c-accent-pale);
  color: var(--c-accent-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thankyou__icon svg {
  width: 48px;
  height: 48px;
}
.thankyou__title {
  font-family: var(--ff-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--c-dark);
  margin: 0.5rem 0 1rem;
}
.thankyou__subtitle {
  font-size: var(--fs-md);
  font-style: italic;
  color: var(--c-text);
  margin-bottom: 1.5rem;
}
.thankyou__text {
  font-size: var(--fs-body);
  color: var(--c-text-light);
  line-height: 1.7;
  margin: 0 auto 2.5rem;
  max-width: 500px;
}
.thankyou__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.thankyou__contact {
  padding-top: 2rem;
  border-top: 1px solid var(--c-border);
  color: var(--c-text-light);
  font-size: var(--fs-sm);
}
.thankyou__contact a {
  color: var(--c-accent-dark);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.thankyou__contact a:hover {
  border-bottom-color: var(--c-accent);
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .hero__bg-image { animation: none; }
  .gallery__track { animation: none; }
  .anim-reveal {
    opacity: 1;
    transform: none;
  }
}
