/* =====================================================
   DR. CRYSTAL ROSE TANK — STYLE.CSS
   Clean · Clinical · Warm · Premium
   Palette: Deep Jade + Warm Gold + Stone Neutrals
   Fonts: Cormorant Garamond (display) + DM Sans (body)
===================================================== */

/* ---- DESIGN TOKENS ---- */
:root {
  /* Jade — primary brand */
  --jade-900: #0B3323;
  --jade-700: #1A5C42;
  --jade-500: #2D7A5A;
  --jade-200: #B8D9CC;
  --jade-100: #E5F2EC;
  --jade-50:  #F2F9F5;

  /* Gold — prestige accent */
  --gold-700: #8A6018;
  --gold-500: #B8861E;
  --gold-300: #D4A84A;
  --gold-100: #F5EDD8;
  --gold-50:  #FDFAF3;

  /* Stone — neutral ground */
  --stone-900: #18160F;
  --stone-800: #2A2720;
  --stone-700: #342F28;
  --stone-500: #6B6358;
  --stone-400: #8C8278;
  --stone-200: #C8C1B8;
  --stone-100: #EAE5DF;
  --stone-50:  #FAF8F4;
  --white:     #FFFFFF;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container:  1080px;
  --section-v:  6rem;
  --gutter:     1.5rem;

  /* Radius */
  --r-xs:  3px;
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  24px;
  --r-xl:  40px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(26, 92, 66, 0.07);
  --shadow-md: 0 4px 20px rgba(26, 92, 66, 0.10);
  --shadow-lg: 0 12px 48px rgba(26, 92, 66, 0.14);

  /* Transitions */
  --t-fast: 160ms ease;
  --t-mid:  280ms ease;
  --t-slow: 420ms ease;

  /* Nav height — used for offset */
  --nav-h: 68px;
}


/* =====================================================
   BASE RESET
===================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--stone-700);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; }
strong { font-weight: 500; }


/* =====================================================
   UTILITY & SHARED COMPONENTS
===================================================== */

/* Container */
.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--section-v) var(--gutter);
}

/* Eyebrow labels */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone-400);
  margin-bottom: 0.75rem;
}
.eyebrow--jade   { color: var(--jade-500); }
.eyebrow--gold   { color: var(--gold-500); }
.eyebrow--light  { color: rgba(255, 255, 255, 0.5); }
.eyebrow--center { text-align: center; }

/* Section titles */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--stone-900);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-title--center { text-align: center; }

.section-subtitle {
  font-size: 1.02rem;
  color: var(--stone-500);
  line-height: 1.75;
  max-width: 620px;
  margin-bottom: 3rem;
}

/* Image placeholders — remove when real photos added */
.img-placeholder {
  background: linear-gradient(145deg, var(--jade-50) 0%, var(--gold-50) 100%);
  border: 1.5px dashed var(--jade-200);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jade-500);
  font-size: 0.78rem;
  font-style: italic;
  text-align: center;
  padding: 1.5rem;
  width: 100%;
}
.img-placeholder--tall    { aspect-ratio: 4 / 5; }
.img-placeholder--portrait { aspect-ratio: 3 / 4; }
.img-placeholder--square  { aspect-ratio: 1 / 1; }


/* =====================================================
   BUTTONS
===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.875rem;
  border-radius: var(--r-xs);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background var(--t-fast), color var(--t-fast),
              border-color var(--t-fast), transform var(--t-fast),
              box-shadow var(--t-fast);
  white-space: nowrap;
  text-decoration: none;
}

/* Primary — jade fill */
.btn--primary {
  background: var(--jade-700);
  color: var(--white);
  border-color: var(--jade-700);
}
.btn--primary:hover {
  background: var(--jade-500);
  border-color: var(--jade-500);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Outline — jade border */
.btn--outline {
  background: transparent;
  color: var(--jade-700);
  border-color: var(--jade-700);
}
.btn--outline:hover {
  background: var(--jade-50);
}

/* Ghost — soft border */
.btn--ghost {
  background: transparent;
  color: var(--stone-700);
  border-color: var(--stone-200);
}
.btn--ghost:hover {
  border-color: var(--jade-500);
  color: var(--jade-700);
}

/* Light — white fill (for dark backgrounds) */
.btn--light {
  background: var(--white);
  color: var(--jade-700);
  border-color: var(--white);
}
.btn--light:hover {
  background: var(--jade-50);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Light button inside the final CTA gets a gold hover — earns it */
.cta-final .btn--light:hover {
  background: var(--gold-500);
  color: var(--white);
  border-color: var(--gold-500);
  box-shadow: 0 6px 28px rgba(184, 134, 30, 0.4);
}

/* Size modifier */
.btn--lg {
  padding: 1.1rem 2.5rem;
  font-size: 0.86rem;
}


/* =====================================================
   NAV
===================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--stone-100);
  transition: box-shadow var(--t-mid);
}

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

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Logo */
.nav__logo { text-decoration: none; flex-shrink: 0; }

.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--stone-900);
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.nav__logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone-400);
}

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
  list-style: none;
}

.nav__links li a {
  display: block;
  padding: 0.45rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--stone-500);
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}

.nav__links li a:hover {
  color: var(--jade-700);
  background: var(--jade-50);
}

/* Book Now CTA in nav */
.nav__book {
  background: var(--jade-700) !important;
  color: var(--white) !important;
  font-weight: 500 !important;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: 0.75rem !important;
  padding: 0.5rem 1.1rem !important;
  border-radius: var(--r-xs) !important;
  margin-left: 0.5rem;
}
.nav__book:hover {
  background: var(--jade-500) !important;
}

/* Hamburger toggle (hidden on desktop) */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px 4px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  width: 36px;
  height: 36px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--stone-700);
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}

/* Animated X state */
.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* =====================================================
   HERO
===================================================== */
.hero {
  padding-top: var(--nav-h);
  background-color: var(--stone-50);
  background-image: url('images/oriental-lattice-jade.svg');
  background-repeat: repeat;
  background-size: 80px 80px;
  overflow: hidden;
}

.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 5rem var(--gutter) 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--jade-500);
  margin-bottom: 1.25rem;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--stone-900);
  margin-bottom: 1.5rem;
}

.hero__headline em {
  font-style: italic;
  color: var(--jade-700);
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--stone-500);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 500px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2rem;
}

.hero__trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  font-size: 0.78rem;
  color: var(--stone-400);
}

.hero__trust .sep { color: var(--stone-200); }

/* Hero image column */
.hero__img-placeholder {
  border-radius: var(--r-lg);
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, var(--jade-100) 0%, var(--jade-50) 50%, var(--gold-100) 100%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

/* Decorative ring behind placeholder */
.hero__img-placeholder::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid var(--jade-200);
  opacity: 0.5;
}

.hero__img-placeholder::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid var(--gold-300);
  opacity: 0.3;
}

.hero__img-inner {
  position: relative;
  z-index: 1;
}

.hero__img-monogram {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--jade-700);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero__img-note {
  font-size: 0.75rem;
  color: var(--jade-500);
  font-style: italic;
}


/* =====================================================
   TRUST STRIP
===================================================== */
.trust-strip {
  background: var(--jade-700);
  padding: 1.5rem var(--gutter);
}

.trust-strip__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  min-width: 80px;
  text-align: center;
}

.trust-item__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}

.trust-item__label {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.trust-divider {
  width: 1px;
  height: 2rem;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}


/* =====================================================
   THE RENEWAL PROTOCOL
===================================================== */
.renewal {
  background: var(--white);
}

.renewal__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4.5rem;
}

.renewal__header .section-title {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
}

.renewal__price-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  background: var(--gold-50);
  border: 1px solid var(--gold-300);
  border-radius: 100px;
  padding: 0.55rem 1.75rem;
  margin-top: 1.5rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.renewal__price-badge:hover {
  background: var(--gold-100, #fef3c7);
  border-color: var(--gold-500, #d97706);
  transform: translateY(-1px);
}

.renewal__price {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--gold-700);
  line-height: 1;
}

.renewal__price-detail {
  font-size: 0.85rem;
  color: var(--stone-400);
  letter-spacing: 0.02em;
}

/* Steps timeline */
.renewal__steps {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

/* Vertical line connecting steps */
.renewal__steps::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 28px;
  bottom: 56px;
  width: 1px;
  background: linear-gradient(to bottom, var(--jade-200), transparent);
  pointer-events: none;
}

.step {
  display: flex;
  gap: 1.75rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--stone-100);
  position: relative;
}

.step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.step__marker {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step__num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--jade-700);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  transition: background var(--t-fast), transform var(--t-fast);
}

.step:hover .step__num {
  background: var(--jade-500);
  transform: scale(1.05);
}

.step__body {
  padding-top: 0.75rem;
}

.step__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--stone-900);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.step__desc {
  font-size: 0.94rem;
  color: var(--stone-500);
  line-height: 1.8;
}

.step__desc strong {
  color: var(--stone-700);
  font-weight: 500;
}

/* Footer of protocol section */
.renewal__footer {
  max-width: 700px;
  margin: 3.5rem auto 0;
  padding-top: 2.5rem;
  border-top: 1px solid var(--stone-100);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.renewal__note {
  font-size: 0.875rem;
  color: var(--stone-400);
  font-style: italic;
  max-width: 480px;
  line-height: 1.65;
}


/* =====================================================
   GUIDE SIGNUP
===================================================== */
.guide-signup {
  background-color: var(--jade-900);
  background-image: url('images/oriental-lattice.svg');
  background-repeat: repeat;
  background-size: 80px 80px;
  padding: var(--section-v) var(--gutter);
}

.guide-signup__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: center;
}

.guide-signup__content .eyebrow {
  margin-bottom: 1rem;
}

.guide-signup__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.guide-signup__desc {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 1.75rem;
}

.guide-signup__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.guide-signup__bullets li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.55;
}

.guide-signup__bullets li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-300);
}

/* Form card */
.guide-signup__card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-lg);
}

.guide-signup__card-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.guide-signup__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.guide-signup__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.guide-signup__field label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-500);
  font-weight: 500;
}

.guide-signup__field input {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--stone-800);
  background: var(--stone-50);
  border: 1px solid var(--stone-200);
  border-radius: var(--r-sm);
  padding: 0.7rem 0.875rem;
  width: 100%;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
}

.guide-signup__field input:focus {
  border-color: var(--jade-500);
  box-shadow: 0 0 0 3px rgba(45, 122, 90, 0.12);
}

.guide-signup__field input::placeholder {
  color: var(--stone-400);
}

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

.guide-signup__micro {
  font-size: 0.75rem;
  color: var(--stone-400);
  line-height: 1.55;
  text-align: center;
  margin-top: -0.25rem;
}

/* Responsive */
@media (max-width: 860px) {
  .guide-signup__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .guide-signup__desc { max-width: 100%; }
}


/* =====================================================
   SERVICES
===================================================== */
.services {
  background-color: var(--stone-50);
  background-image: url('images/oriental-lattice-jade.svg');
  background-repeat: repeat;
  background-size: 80px 80px;
}

/* --- Hero service blocks --- */
.service-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  /* No border-bottom — supporting section carries its own single top border */
}

.service-hero__photo {
  width: 100%;
  border-radius: var(--r-md);
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 4 / 5;
  display: block;
  box-shadow: var(--shadow-md);
}

.service-hero:last-of-type {
  margin-bottom: 0;
}

/* Reversed layout — image on right */
.service-hero--reversed {
  direction: rtl;
}
.service-hero--reversed > * {
  direction: ltr;
}

.service-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--stone-900);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.service-hero__desc {
  font-size: 0.96rem;
  color: var(--stone-500);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.service-hero__list {
  list-style: none;
  margin: 1.25rem 0 2rem;
}

.service-hero__list li {
  font-size: 0.9rem;
  color: var(--stone-500);
  padding: 0.3rem 0 0.3rem 1.4rem;
  position: relative;
  line-height: 1.5;
}

.service-hero__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--jade-500);
  font-weight: 300;
}

/* --- Supporting services grid --- */
.services__supporting {
  border-top: 1px solid var(--stone-100);
  padding-top: 4rem;
  margin-top: 1rem;
}

.services__supporting-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--stone-700);
  margin-bottom: 2rem;
}

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

.support-card {
  background: var(--white);
  border: 1px solid var(--stone-100);
  border-radius: var(--r-md);
  padding: 2rem 1.75rem;
  transition: box-shadow var(--t-mid), transform var(--t-mid),
              border-color var(--t-mid);
}

.support-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--jade-200);
}

.support-card__icon {
  font-size: 1.4rem;
  color: var(--jade-500);
  margin-bottom: 1.1rem;
  display: block;
}

.support-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--stone-900);
  margin-bottom: 0.6rem;
}

.support-card__desc {
  font-size: 0.875rem;
  color: var(--stone-500);
  line-height: 1.7;
}


/* =====================================================
   ABOUT
===================================================== */
.about {
  background: var(--white);
}

.about__inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: start;
}

.about__image-col {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.about__image-caption {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--stone-400);
  line-height: 1.6;
}

.about__image-caption em {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--jade-500);
}

.about__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  color: var(--stone-900);
  line-height: 1.15;
  margin-bottom: 0.3rem;
}

.about__creds {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jade-500);
  font-weight: 500;
  margin-bottom: 2rem;
}

.about__desc {
  font-size: 0.96rem;
  color: var(--stone-500);
  line-height: 1.85;
  margin-bottom: 1.1rem;
}

.about__quote {
  margin: 2.25rem 0;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--jade-700);
  background: var(--jade-50);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}

.about__quote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--jade-700);
  line-height: 1.5;
}

.about__quote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.78rem;
  color: var(--stone-400);
  margin-top: 0.6rem;
  letter-spacing: 0.06em;
}

/* Credential list */
.about__cred-list {
  border-top: 1px solid var(--stone-100);
  padding-top: 1.75rem;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cred {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.55;
}

.cred__label {
  font-weight: 500;
  color: var(--stone-700);
  padding-top: 0.05em;
}

.cred__value { color: var(--stone-500); }


/* =====================================================
   TESTIMONIALS
===================================================== */
.testimonials {
  background-color: var(--jade-50);
  background-image:
    linear-gradient(rgba(242, 249, 245, 0.90), rgba(242, 249, 245, 0.90)),
    url('images/beach.jpeg');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}

/* Featured hero quote */
.testimonial-featured {
  background: var(--jade-700);
  border-radius: var(--r-lg);
  padding: 3.5rem 4rem;
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

/* Decorative large quote mark */
.testimonial-featured::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 12rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  position: absolute;
  top: -1rem;
  left: 2rem;
  pointer-events: none;
  user-select: none;
}

.testimonial-featured__stars {
  color: var(--gold-300);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  margin-bottom: 1.75rem;
}

.testimonial-featured__quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 1.75rem;
}

.testimonial-featured__author {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Supporting grid */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 1.75rem;
  border: 1px solid var(--jade-100);
  transition: box-shadow var(--t-mid), transform var(--t-mid);
  display: flex;
  flex-direction: column;
}

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

.testimonial__stars {
  color: var(--gold-500);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  margin-bottom: 0.875rem;
}

.testimonial__text {
  font-size: 0.9rem;
  color: var(--stone-500);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
  margin-bottom: 1.25rem;
}

.testimonial__author {
  font-size: 0.76rem;
  color: var(--stone-400);
  font-weight: 500;
  letter-spacing: 0.06em;
}


/* =====================================================
   LOCATION
===================================================== */
.location {
  background: var(--white);
}

.location__card {
  background: var(--stone-50);
  border: 1px solid var(--stone-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 2rem;
}

.location__card-header {
  background-color: var(--jade-700);
  background-image:
    linear-gradient(160deg, rgba(26, 92, 66, 0.82) 0%, rgba(26, 92, 66, 0.68) 100%),
    url('images/CWC_Front_door.jpg');
  background-size: cover;
  background-position: bottom;
  padding: 2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.location__org-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
}

.location__tag {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  white-space: nowrap;
}

.location__body {
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.location__detail-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location__detail {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.location__detail-label {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone-400);
  font-weight: 500;
}

.location__detail-value {
  font-size: 0.94rem;
  color: var(--stone-700);
  line-height: 1.65;
}

.location__detail-value a {
  color: var(--jade-700);
  transition: color var(--t-fast);
}
.location__detail-value a:hover {
  color: var(--jade-500);
  text-decoration: underline;
}

.location__cta-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.25rem;
}

.location__cta-note {
  font-size: 0.91rem;
  color: var(--stone-500);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.location__cta-note strong {
  color: var(--stone-700);
}


/* =====================================================
   FAQ
===================================================== */
.faq {
  background: var(--stone-50);
}

.faq__list {
  max-width: 700px;
  margin: 3rem auto 0;
}

.faq__item {
  border-bottom: 1px solid var(--stone-100);
}

.faq__item:first-child {
  border-top: 1px solid var(--stone-100);
}

.faq__q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.35rem 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--stone-800);
  line-height: 1.35;
  transition: color var(--t-fast);
}

.faq__q:hover { color: var(--jade-700); }

/* Plus/minus indicator */
.faq__q::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--jade-500);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--t-fast), color var(--t-fast);
}

.faq__q[aria-expanded="true"] { color: var(--jade-700); }
.faq__q[aria-expanded="true"]::after {
  transform: rotate(45deg);
  color: var(--jade-700);
}

.faq__a {
  overflow: hidden;
}

.faq__a[hidden] { display: none; }

.faq__a p {
  font-size: 0.93rem;
  color: var(--stone-500);
  line-height: 1.85;
  padding-bottom: 1.5rem;
}


/* =====================================================
   FINAL CTA
===================================================== */
.cta-final {
  background-color: var(--jade-700);
  background-image: url('images/oriental-lattice.svg');
  background-repeat: repeat;
  background-size: 80px 80px;
}

.cta-final__inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 7rem var(--gutter);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}

.cta-final__title em {
  font-style: italic;
  color: var(--gold-300);
}

.cta-final__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  max-width: 480px;
}

.cta-final__location {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: -0.5rem;
}

.cta-final__location a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--t-fast);
}
.cta-final__location a:hover { color: var(--white); }


/* =====================================================
   FOOTER
===================================================== */
.footer {
  background: var(--stone-900);
}

.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 4.5rem var(--gutter) 3rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
}

.footer__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.25rem;
  letter-spacing: 0.01em;
}

.footer__creds {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1rem;
}

.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.25rem;
}

.footer__nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--t-fast);
  line-height: 1.75;
}

.footer__nav a:hover { color: var(--white); }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 0.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
}

.footer__contact strong {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--t-fast);
}
.footer__contact a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.25rem var(--gutter);
  text-align: center;
}

.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  max-width: var(--container);
  margin: 0 auto;
}


/* =====================================================
   RESPONSIVE — TABLET (≤ 960px)
===================================================== */
@media (max-width: 960px) {

  :root { --section-v: 5rem; }

  /* Hero */
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 4rem;
  }
  .hero__image {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
  .hero__img-placeholder { aspect-ratio: 4 / 3; }
  .hero__sub { max-width: 100%; }

  /* Services */
  .service-hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .service-hero--reversed { direction: ltr; }

  /* About */
  .about__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about__image-col {
    position: static;
    max-width: 380px;
    margin: 0 auto;
    width: 100%;
  }

  /* Testimonials */
  .testimonial-featured { padding: 2.5rem 2rem; }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }

  /* Support grid */
  .support-grid { grid-template-columns: repeat(2, 1fr); }

  /* Location */
  .location__body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }

  /* Trust strip */
  .trust-divider { display: none; }
  .trust-strip__inner { justify-content: center; gap: 1.5rem 3rem; }
}


/* =====================================================
   RESPONSIVE — MOBILE (≤ 640px)
===================================================== */
@media (max-width: 640px) {

  :root { --section-v: 3.75rem; --gutter: 1.25rem; }

  /* Nav — show hamburger, hide links */
  .nav__toggle { display: flex; }

  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--stone-100);
    flex-direction: column;
    padding: 0.75rem var(--gutter) 1.5rem;
    gap: 0;
    box-shadow: var(--shadow-lg);
  }

  .nav__links.open { display: flex; }

  .nav__links li a {
    padding: 0.8rem 0.5rem;
    font-size: 0.95rem;
    border-radius: 0;
    border-bottom: 1px solid var(--stone-50);
  }

  .nav__links li:last-child a { border-bottom: none; }

  .nav__book {
    margin-top: 0.75rem !important;
    justify-content: center;
    text-align: center;
    border-radius: var(--r-sm) !important;
  }

  /* Hero */
  .hero__headline { font-size: 2.5rem; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  /* Renewal steps */
  .renewal__steps::before { display: none; }
  .step { gap: 1.25rem; }
  .step__num { width: 44px; height: 44px; font-size: 0.82rem; }

  /* Services */
  .support-grid { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonial-featured { padding: 2rem 1.5rem; }
  .testimonial-featured__quote { font-size: 1.25rem; }
  .testimonials__grid { grid-template-columns: 1fr; }

  /* Location card */
  .location__card-header { flex-direction: column; align-items: flex-start; }
  .location__body { padding: 1.75rem 1.25rem; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }

  /* FAQ */
  .faq__q { font-size: 1rem; }
}


/* =====================================================
   HERO PHOTO
===================================================== */
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r-lg);
  aspect-ratio: 4 / 5;
  display: block;
  box-shadow: var(--shadow-lg);
}

/* =====================================================
   ABOUT PHOTO
===================================================== */
.about__photo {
  width: 100%;
  border-radius: var(--r-lg);
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 3 / 4;
  display: block;
  box-shadow: var(--shadow-md);
}

/* =====================================================
   GOLD BUTTON (waitlist CTA)
===================================================== */
.btn--gold {
  background: var(--gold-500);
  color: var(--white);
  border-color: var(--gold-500);
}
.btn--gold:hover {
  background: var(--gold-700);
  border-color: var(--gold-700);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(184, 134, 30, 0.35);
}

/* =====================================================
   PRIVATE STUDIO WAITLIST
===================================================== */
.waitlist {
  background: var(--stone-800);
  overflow: hidden;
  position: relative;
}

/* Subtle decorative circle */
.waitlist::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(196, 145, 58, 0.12);
  pointer-events: none;
}

.waitlist::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.waitlist__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--section-v) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Photo column */
.waitlist__photo-frame {
  position: relative;
}

/* Gold border accent behind photo */
.waitlist__photo-frame::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: var(--r-lg);
  border: 1px solid var(--gold-500);
  opacity: 0.25;
}

.waitlist__photo {
  width: 100%;
  display: block;
  border-radius: var(--r-lg);
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 3 / 4;
  /* Rotate fix for CrystalTankArtsy.jpeg — remove after rotating the file in Preview */
  image-orientation: from-image;
  filter: brightness(0.92) contrast(1.04);
}

/* Content column */
.waitlist__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.waitlist__title em {
  font-style: italic;
  color: var(--gold-300);
}

.waitlist__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 480px;
}

.waitlist__details {
  list-style: none;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.waitlist__details li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.waitlist__details li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-300);
}

/* Form wrapper */
.waitlist__form-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.waitlist__form-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.waitlist__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.waitlist__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.waitlist__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.waitlist__field-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.waitlist__input {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-sm);
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--white);
  transition: border-color var(--t-fast), background var(--t-fast);
  width: 100%;
}

.waitlist__input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.waitlist__input:focus {
  outline: none;
  border-color: var(--gold-300);
  background: rgba(255, 255, 255, 0.10);
}

.waitlist__disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.28);
  text-align: center;
  letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 960px) {
  .waitlist__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .waitlist__photo-frame {
    max-width: 380px;
    margin: 0 auto;
  }
  .waitlist__desc { max-width: 100%; }
}

@media (max-width: 640px) {
  .waitlist__fields { grid-template-columns: 1fr; }
  .waitlist__title { font-size: 2.25rem; }
}

/* =====================================================
   PRINT
===================================================== */
@media print {
  .nav, .hero__ctas, .btn, .cta-final { display: none; }
  body { font-size: 12pt; color: #000; }
  .section-inner { padding: 1.5rem 0; }
}
