/* ============================================================
   Garnett Chiropractic & Wellness — Redesign Stylesheet
   Design system: navy trust + warm gold + clean white
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --navy:       #1d3557;
  --navy-dark:  #02285e;
  --navy-light: #2a4a9e;
  --gold:       #c8952a;
  --gold-light: #e8b04a;
  --teal:       #2a7f7f;
  --teal-light: #3aa8a8;
  --white:      #ffffff;
  --gray-50:    #f8f9fa;
  --gray-100:   #f1f3f5;
  --gray-200:   #e9ecef;
  --gray-400:   #adb5bd;
  --gray-600:   #6c757d;
  --gray-800:   #343a40;
  --text:       #2d3748;
  --text-muted: #6c757d;

  --font-serif: 'Merriweather', Georgia, serif;
  --font-sans:  'Inter', 'Segoe UI', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 12px rgba(0,0,0,.10), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg:  0 10px 30px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
  --shadow-xl:  0 20px 60px rgba(0,0,0,.15);

  --max-width: 1100px;
  --header-h:  72px;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.3;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ── Layout Utilities ───────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 5rem 0;
}
.section--alt {
  background: var(--gray-50);
}
.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section__eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: .75rem auto 0;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-sans);
  transition: all .2s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(200,149,42,.35);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,149,42,.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}
.btn-sm {
  padding: .625rem 1.25rem;
  font-size: .875rem;
}
.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

/* ── Header / Nav ───────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--navy);
  box-shadow: var(--shadow-md);
  transition: background .3s;
}
#site-header.scrolled {
  background: var(--navy-dark);
  box-shadow: var(--shadow-lg);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 2rem;
  line-height: 1.25;
  text-decoration: none;
}
.logo__name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
}
.logo__tagline {
  display: block;
  font-size: .7rem;
  color: var(--gold-light);
  letter-spacing: .06em;
  font-weight: 500;
  text-transform: uppercase;
}
.header-logo {
  display: block;
  /* Fixed width + auto height = consistent aspect ratio across all browsers */
  width: 220px;
  height: auto;
  max-height: 52px;        /* hard cap so it never bumps the header edges */
  object-fit: contain;
  object-position: left center;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header-nav__links {
  display: flex;
  gap: 1.75rem;
}
.header-nav__links a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: color .2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.header-nav__links a:hover,
.header-nav__links a.active {
  color: var(--white);
  border-bottom-color: var(--gold);
}
.header-phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--gold-light);
  transition: color .2s;
}
.header-phone:hover { color: var(--white); }
.header-phone svg { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--navy-dark);
  padding: 1.5rem;
  z-index: 999;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,.9);
  font-size: 1rem;
  font-weight: 500;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .btn { text-align: center; justify-content: center; margin-top: .5rem; }

/* ── Hero ───────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,149,42,.12) 0%, transparent 70%);
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,127,127,.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(200,149,42,.2);
  border: 1px solid rgba(200,149,42,.4);
  color: var(--gold-light);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem .9rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 1.25rem;
}
.hero-headline em {
  font-style: normal;
  color: var(--gold-light);
}
.hero-subhead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.82);
  max-width: 580px;
  margin-bottom: 2.25rem;
  line-height: 1.65;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.hero-proof__item {
  display: flex;
  flex-direction: column;
}
.hero-proof__number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.hero-proof__label {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: .2rem;
}

/* ── Trust Bar ──────────────────────────────────────────────── */
#trust-bar {
  background: var(--gold);
  padding: 1.1rem 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 3rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
}
.trust-item svg { flex-shrink: 0; opacity: .9; }

/* ── Testimonials ───────────────────────────────────────────── */
#testimonials {
  background: var(--gray-50);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform .2s, box-shadow .2s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 1rem;
}
.testimonial-text {
  font-size: .975rem;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}
.testimonial-author__name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy);
}
.testimonial-author__loc {
  font-size: .8rem;
  color: var(--text-muted);
}

/* ── How It Works ───────────────────────────────────────────── */
#how-it-works {
  background: var(--white);
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  position: relative;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border-top: 4px solid var(--teal);
}
.step__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.step h3 { margin-bottom: .5rem; color: var(--navy); }
.step p { font-size: .95rem; color: var(--text-muted); }

/* ── Services & Pricing ─────────────────────────────────────── */
#services {
  background: var(--gray-50);
}
.concierge-intro {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  margin-bottom: 2.5rem;
  font-size: .975rem;
  line-height: 1.75;
  color: var(--text);
}
.concierge-intro__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}
.concierge-intro__body strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: .4rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2rem;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border: 2px solid transparent;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-card--featured {
  border-color: var(--gold);
  position: relative;
}
.pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .85rem;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-card__tier {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}
.pricing-card__name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  line-height: 1.2;
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: .3rem;
}
.pricing-card__amount {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
}
.pricing-card__note {
  font-size: .85rem;
  color: var(--text-muted);
}
.pricing-card__divider {
  height: 1px;
  background: var(--gray-200);
}
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .925rem;
}
.feature-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--teal);
}
.pricing-card__cta { margin-top: auto; }
.pricing-card__cta .btn { width: 100%; justify-content: center; }
.pricing-card--entry {
  border-color: var(--teal);
  background: linear-gradient(135deg, #f0fafa 0%, var(--white) 100%);
}
.pricing-card--entry .pricing-card__amount { color: var(--teal); }

/* ── Why Choose Us ──────────────────────────────────────────── */
#why-us {
  position: relative;
  background:
    linear-gradient(135deg, rgba(15,31,51,.91) 0%, rgba(29,53,87,.87) 100%),
    url('../images/sleep4.jpg') center/cover no-repeat;
  color: var(--white);
}
#why-us h2 { color: var(--white); }
#why-us .section__subtitle { color: rgba(255,255,255,.7); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.why-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.why-icon {
  width: 56px;
  height: 56px;
  background: rgba(200,149,42,.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}
.why-item h3 { color: var(--white); font-size: 1.1rem; margin-bottom: .25rem; }
.why-item p { font-size: .9rem; color: rgba(255,255,255,.72); line-height: 1.65; }

/* ── About ──────────────────────────────────────────────────── */
#about {
  background: var(--white);
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--gray-100) 0%, var(--gray-200) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: .85rem;
  text-align: center;
  gap: .75rem;
  box-shadow: var(--shadow-lg);
}
.about-img-placeholder svg { opacity: .4; }
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.5rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  line-height: 1.3;
}
.about-badge__number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  display: block;
}
.about-badge__text {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  opacity: .9;
}
.about-content .section__eyebrow { text-align: left; }
.about-content h2 { margin-bottom: 1rem; }
.credential-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin: 1.5rem 0;
}
.credential-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .925rem;
  color: var(--text);
}
.credential-item svg { color: var(--teal); flex-shrink: 0; }

/* ── FAQ ────────────────────────────────────────────────────── */
#faq {
  background: var(--gray-50);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-size: .975rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: background .2s;
}
.faq-question:hover { background: var(--gray-50); }
.faq-question.open { color: var(--teal); }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, transform .3s;
  color: var(--gray-600);
}
.faq-question.open .faq-icon {
  background: var(--teal);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .2s;
}
.faq-answer.open {
  max-height: 400px;
}
.faq-closing {
  text-align: center;
  margin-top: 2.5rem;
  font-size: .95rem;
  color: var(--text-muted);
}
.faq-closing a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-answer__inner {
  padding: 0 1.5rem 1.25rem;
  font-size: .935rem;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--gray-100);
  padding-top: 1rem;
}

/* ── Contact ────────────────────────────────────────────────── */
#contact {
  background: var(--white);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info h2 { margin-bottom: .5rem; }
.contact-info p { color: var(--text-muted); }
.contact-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-item__icon {
  width: 44px;
  height: 44px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.contact-item__text { display: flex; flex-direction: column; }
.contact-item__label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  margin-bottom: .2rem;
}
.contact-item__value {
  font-weight: 600;
  color: var(--navy);
  font-size: .975rem;
}
.contact-item__value a {
  color: var(--navy);
  transition: color .2s;
}
.contact-item__value a:hover { color: var(--teal); }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.hours-table tr { border-bottom: 1px solid var(--gray-100); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: .55rem 0; }
.hours-table td:first-child { font-weight: 600; color: var(--navy); }
.hours-table td:last-child { color: var(--text-muted); text-align: right; }

.booking-card {
  background: var(--gray-50);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  border: 1px solid var(--gray-200);
}
.booking-card h3 { margin-bottom: .5rem; }
.booking-card p { font-size: .95rem; color: var(--text-muted); margin-bottom: 1.75rem; }
.booking-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  color: var(--text-muted);
  font-size: .85rem;
}
.booking-divider::before,
.booking-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,127,127,.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; justify-content: center; }

/* ── CTA Banner ─────────────────────────────────────────────── */
#cta-banner {
  position: relative;
  background:
    linear-gradient(135deg, rgba(42,127,127,.88) 0%, rgba(15,31,51,.92) 100%),
    url('../images/sleep5.jpg') center/cover no-repeat;
  padding: 4.5rem 0;
  text-align: center;
}
#cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
#cta-banner p {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}
.cta-banner-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ── What Makes It Different ────────────────────────────────── */
.section-logo {
  display: block;
  margin: 0 auto 1.5rem;
  max-width: 340px;
  height: auto;
  border-radius: var(--radius-sm);
}
.different-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.different-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  height: 100%;
}
.different-card--no { border-top: 4px solid #e05c3a; }
.different-card--yes { border-top: 4px solid var(--teal); }
.different-card__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.different-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.different-card__icon--no  { background: #fde8e4; color: #b03020; }
.different-card__icon--yes { background: #e6f7f5; color: var(--teal); }
.different-card__header h3 { margin: 0; font-size: 1.1rem; line-height: 1.35; }
.different-list {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.different-item {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .925rem;
  line-height: 1.55;
}
.different-item svg { flex-shrink: 0; margin-top: 2px; }
.different-item--no  { color: var(--text); }
.different-item--no  svg { color: #c0392b; }
.different-item--yes { color: var(--text); }
.different-item--yes svg { color: var(--teal); }
.different-card__note {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-top: .75rem;
  border-top: 1px solid var(--gray-200);
}

/* ── Footer logo ────────────────────────────────────────────── */
.footer-logo {
  display: block;
  max-width: 220px;
  height: auto;
  border-radius: var(--radius-sm);
  margin-bottom: .25rem;
}

/* ── Footer ─────────────────────────────────────────────────── */
#site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: .875rem;
  line-height: 1.7;
  margin: .75rem 0 1.25rem;
  color: rgba(255,255,255,.55);
}
.footer-brand .logo__name { font-size: 1rem; }
.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--white); }

/* ── Scroll to top button ───────────────────────────────────── */
#scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
  z-index: 500;
}
#scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#scroll-top:hover { background: var(--navy-light); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .different-layout { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { max-width: 360px; margin: 0 auto; }
  .about-badge { bottom: -1rem; right: .5rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  :root { --header-h: 64px; }
  .section { padding: 3.5rem 0; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }
  .pricing-card--featured::before { white-space: normal; text-align: center; }
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
