/* ===========================================================
   THERMAL TOUCH HVAC — Design System
   Concept 3 Editorial + Brand Blue/Orange
   =========================================================== */

/* ---------- Fonts ---------- */
@import url('https://api.fontshare.com/v2/css?f[]=general-sans@200,300,400,500,600,700&f[]=fraunces@400,500,600,700,800,900&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Brand Colors */
  --tt-navy: #1B4B8F;
  --tt-navy-deep: #0F2E5A;
  --tt-orange: #E85D3C;
  --tt-orange-dark: #C64525;
  --tt-brass: #C6913A;
  --tt-brass-light: #E5B76A;

  /* Editorial neutrals */
  --tt-ivory: #FAF7F0;
  --tt-ivory-warm: #F5F0E3;
  --tt-charcoal: #1F2937;
  --tt-charcoal-soft: #374151;
  --tt-slate: #6B7280;
  --tt-slate-light: #9CA3AF;
  --tt-line: #E5E1D5;
  --tt-white: #FFFFFF;

  /* Semantic */
  --tt-bg: var(--tt-ivory);
  --tt-bg-alt: var(--tt-white);
  --tt-bg-dark: var(--tt-navy-deep);
  --tt-text: var(--tt-charcoal);
  --tt-text-muted: var(--tt-slate);
  --tt-accent: var(--tt-orange);
  --tt-accent-soft: var(--tt-brass);

  /* Type */
  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'General Sans', system-ui, -apple-system, sans-serif;

  /* Type scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 2.5rem;
  --text-hero: clamp(2.5rem, 5.5vw, 4.5rem);
  --text-display: clamp(3rem, 7vw, 5.5rem);

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

  /* Radii */
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 46, 90, 0.06);
  --shadow: 0 4px 12px rgba(15, 46, 90, 0.08);
  --shadow-lg: 0 12px 28px rgba(15, 46, 90, 0.12);
  --shadow-xl: 0 20px 44px rgba(15, 46, 90, 0.15);

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.24s;

  /* Layout */
  --container: 1240px;
  --container-narrow: 900px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--tt-text);
  background: var(--tt-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--tt-charcoal);
}
h1 { font-size: var(--text-hero); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--tt-brass);
}

.lead {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: var(--tt-charcoal-soft);
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 400;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.container-narrow {
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
section { padding-block: clamp(3rem, 7vw, 6rem); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.header.scrolled {
  border-bottom-color: var(--tt-line);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding: var(--space-4) 0;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--tt-charcoal);
  letter-spacing: -0.01em;
  font-weight: 500;
}
.header__logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.header__logo-name {
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 500;
}
.header__logo-tag {
  font-size: 0.7rem;
  color: var(--tt-brass);
  letter-spacing: 0.15em;
  font-family: var(--font-body);
  font-weight: 500;
  margin-top: 2px;
}
.header__nav {
  display: none;
  gap: var(--space-6);
}
.header__nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--tt-charcoal-soft);
  letter-spacing: 0.02em;
  transition: color var(--dur) var(--ease);
}
.header__nav a:hover { color: var(--tt-orange); }
.header__cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  border: 1.5px solid var(--tt-orange);
  color: var(--tt-orange);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--dur) var(--ease);
}
.header__cta:hover {
  background: var(--tt-orange);
  color: white;
}
.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--tt-charcoal);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

@media (min-width: 900px) {
  .header__nav { display: flex; }
  .header__cta { display: inline-flex; }
  .mobile-toggle { display: none; }
}

/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--tt-ivory);
  z-index: 60;
  display: flex;
  flex-direction: column;
  padding: var(--space-24) var(--space-6) var(--space-8);
  transform: translateX(100%);
  transition: transform 0.3s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--tt-line);
  color: var(--tt-charcoal);
}
.mobile-menu__close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--tt-charcoal);
}
.mobile-menu__cta {
  display: block;
  margin-top: auto;
  padding: 1rem;
  background: var(--tt-orange);
  color: white !important;
  text-align: center;
  border-radius: var(--radius);
  font-family: var(--font-body) !important;
  font-size: var(--text-lg) !important;
  font-weight: 600;
  border: none !important;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% center;
}
@media (max-width: 640px) {
  .hero__bg img {
    object-position: center 20%;
  }
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,46,90,0.88) 0%, rgba(15,46,90,0.72) 25%, rgba(15,46,90,0.30) 55%, rgba(15,46,90,0.00) 85%);
}
@media (max-width: 640px) {
  .hero__bg::after {
    background: linear-gradient(180deg, rgba(15,46,90,0.35) 0%, rgba(15,46,90,0.15) 40%, rgba(15,46,90,0.85) 100%);
  }
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 2rem);
  width: 100%;
}
.hero__content {
  max-width: 700px;
}
.hero h1 {
  color: white;
  font-size: var(--text-hero);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
}
.hero h1 em {
  font-style: italic;
  color: var(--tt-brass-light);
  font-weight: 400;
}
.hero .lead {
  color: rgba(255,255,255,0.92);
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
  font-style: italic;
}
.hero__meta {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-8);
  letter-spacing: 0.02em;
}
.hero__meta strong {
  color: var(--tt-brass-light);
  font-weight: 500;
}
.hero__actions {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  border: 1.5px solid transparent;
  min-height: 48px;
  line-height: 1;
}
.btn--primary {
  background: var(--tt-orange);
  color: white;
  border-color: var(--tt-orange);
  box-shadow: 0 6px 18px rgba(232,93,60,0.35);
}
.btn--primary:hover {
  background: var(--tt-orange-dark);
  border-color: var(--tt-orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(232,93,60,0.45);
}
.btn--outline {
  border-color: rgba(255,255,255,0.6);
  color: white;
  background: transparent;
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}
.btn--secondary {
  background: transparent;
  color: white;
  padding: 0.95rem 0.3rem;
  text-transform: uppercase;
  border-bottom: 1.5px solid rgba(255,255,255,0.7);
  border-radius: 0;
}
.btn--secondary:hover {
  color: var(--tt-brass-light);
  border-bottom-color: var(--tt-brass-light);
}
.btn--dark {
  background: var(--tt-charcoal);
  color: white;
  border-color: var(--tt-charcoal);
}
.btn--dark:hover {
  background: var(--tt-navy-deep);
  border-color: var(--tt-navy-deep);
}
.btn--brass {
  background: var(--tt-brass);
  color: white;
  border-color: var(--tt-brass);
}
.btn--brass:hover {
  background: var(--tt-charcoal);
  border-color: var(--tt-charcoal);
}

/* ---------- Availability badge (LIVE) ---------- */
.avail {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: white;
  margin-top: var(--space-6);
}
.avail__dot {
  width: 8px;
  height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(74,222,128,0.25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.avail__label { color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.08em; font-size: var(--text-xs); }
.avail__slot { color: white; font-weight: 500; }

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--tt-navy-deep);
  color: white;
  padding: var(--space-6) 0;
}
.trust-bar__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.25rem 0;
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: var(--space-4);
}
.trust-item:first-child { border-left: none; padding-left: 0; }
.trust-item__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tt-brass-light);
  flex-shrink: 0;
}
.trust-item__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.2;
}
.trust-item__value {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: white;
  letter-spacing: -0.01em;
}
.trust-item__label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.trust-item__stars {
  color: var(--tt-brass-light);
  letter-spacing: 0.05em;
}

@media (max-width: 700px) {
  .trust-item { border-left: none; padding-left: 0; }
}

/* ---------- Value Props ---------- */
.values {
  background: var(--tt-ivory);
  padding-block: clamp(4rem, 8vw, 7rem);
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
}
.value {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-left: 1px solid var(--tt-line);
  padding-left: var(--space-6);
}
.value:first-child { border-left: none; padding-left: 0; }
@media (max-width: 900px) {
  .value { border-left: none; padding-left: 0; border-top: 1px solid var(--tt-line); padding-top: var(--space-6); }
  .value:first-child { border-top: none; padding-top: 0; }
}
.value__icon {
  width: 48px;
  height: 48px;
  color: var(--tt-orange);
  margin-bottom: var(--space-2);
}
.value__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--tt-charcoal);
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.value__title em { font-style: italic; font-weight: 400; color: var(--tt-orange); }
.value__body {
  font-size: var(--text-base);
  color: var(--tt-charcoal-soft);
  line-height: 1.65;
  max-width: 32ch;
}

/* ---------- Family Strip (trust section) ---------- */
.family-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
  text-align: center;
}
.family-strip__image {
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px -18px rgba(15, 46, 90, 0.3), 0 6px 20px -6px rgba(15, 46, 90, 0.18);
}
.family-strip__image img {
  width: 100%;
  height: auto;
  display: block;
}
.family-strip__content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.2;
  margin: 0.75rem 0 var(--space-4);
  color: var(--tt-navy);
}
.family-strip__content p {
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--tt-charcoal);
  margin: 0 0 var(--space-5);
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .family-strip {
    grid-template-columns: minmax(260px, 340px) 1fr;
    column-gap: clamp(3rem, 6vw, 5rem);
    row-gap: var(--space-6);
    text-align: left;
    align-items: center;
  }
  .family-strip__image { margin: 0; }
  .family-strip__content { padding-left: 0.5rem; }
  .family-strip__content p { margin-left: 0; margin-right: 0; max-width: 58ch; }
}

/* ---------- Meet The Humans ---------- */
.humans {
  background: var(--tt-white);
}
.humans__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-16);
  align-items: center;
}
@media (min-width: 900px) {
  .humans__inner { grid-template-columns: 1.05fr 1fr; gap: var(--space-24); }
}
.humans__image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.humans__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.humans__content .eyebrow { display: block; margin-bottom: var(--space-4); }
.humans__content h2 {
  margin-bottom: var(--space-6);
  max-width: 14ch;
}
.humans__content h2 em { font-style: italic; color: var(--tt-orange); font-weight: 400; }
.humans__content p {
  margin-bottom: var(--space-4);
  color: var(--tt-charcoal-soft);
  font-size: var(--text-lg);
  line-height: 1.65;
}
.humans__quote {
  padding: var(--space-6);
  background: var(--tt-ivory);
  border-left: 3px solid var(--tt-orange);
  margin-top: var(--space-6);
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--tt-charcoal);
  line-height: 1.5;
}
.humans__quote-attr {
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--text-sm);
  color: var(--tt-slate);
  margin-top: var(--space-3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ---------- Services Grid ---------- */
.services {
  background: var(--tt-navy-deep);
  color: white;
}
.services__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-16);
}
.services__header .eyebrow { color: var(--tt-brass-light); }
.services__header h2 {
  color: white;
  margin: var(--space-3) 0 var(--space-4);
  font-weight: 400;
}
.services__header h2 em { font-style: italic; color: var(--tt-brass-light); }
.services__header p {
  color: rgba(255,255,255,0.75);
  font-size: var(--text-lg);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-6);
}
.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(198,145,58,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.service-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.service-card:hover .service-card__image img { transform: scale(1.05); }
.service-card__body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
}
.service-card__icon {
  width: 40px;
  height: 40px;
  background: rgba(198,145,58,0.15);
  color: var(--tt-brass-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-2);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: white;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  flex: 1;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--tt-brass-light);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: var(--space-3);
  transition: gap var(--dur) var(--ease);
}
.service-card__link:hover { gap: 0.7rem; color: var(--tt-brass); }

/* ---------- Reviews ---------- */
.reviews {
  background: var(--tt-ivory);
}
.reviews__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
  margin-bottom: var(--space-12);
}
.reviews__header h2 { max-width: 20ch; }
.reviews__header h2 em { font-style: italic; color: var(--tt-orange); font-weight: 400; }
.reviews__stats {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-6);
  background: white;
  border: 1px solid var(--tt-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.reviews__stats-rating {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--tt-charcoal);
  line-height: 1;
}
.reviews__stats-stars { color: var(--tt-brass); font-size: 1.1rem; letter-spacing: 0.05em; }
.reviews__stats-count { font-size: var(--text-xs); color: var(--tt-slate); text-transform: uppercase; letter-spacing: 0.1em; }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}
.review {
  background: white;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--tt-line);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.review__stars { color: var(--tt-brass); letter-spacing: 0.05em; }
.review__body {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--tt-charcoal);
  line-height: 1.55;
  flex: 1;
}
.review__attr {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--tt-line);
}
.review__avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--tt-navy), var(--tt-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: var(--text-base);
}
.review__name { font-weight: 500; color: var(--tt-charcoal); font-size: var(--text-sm); }
.review__meta { font-size: var(--text-xs); color: var(--tt-slate); }

/* ---------- Service Area ---------- */
.area {
  background: var(--tt-white);
}
.area__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}
@media (min-width: 900px) { .area__inner { grid-template-columns: 1fr 1.1fr; } }
.area__content h2 { margin-bottom: var(--space-4); }
.area__content h2 em { font-style: italic; color: var(--tt-orange); font-weight: 400; }
.area__content p { color: var(--tt-charcoal-soft); font-size: var(--text-lg); margin-bottom: var(--space-6); }
.area__counties {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-3);
}
.county {
  padding: var(--space-4);
  background: var(--tt-ivory);
  border: 1px solid var(--tt-line);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  font-weight: 500;
  text-align: center;
  transition: all var(--dur) var(--ease);
  color: var(--tt-charcoal);
}
.county:hover {
  background: var(--tt-orange);
  color: white;
  border-color: var(--tt-orange);
  transform: translateY(-2px);
}
.area__map {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--tt-navy);
}
.area__map svg { width: 100%; height: 100%; }

/* ---------- Booking Form ---------- */
.booking {
  background: var(--tt-navy-deep);
  color: white;
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(232,93,60,0.15) 0%, transparent 40%),
              radial-gradient(circle at 80% 80%, rgba(198,145,58,0.10) 0%, transparent 40%);
}
.booking__inner {
  position: relative;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}
@media (min-width: 900px) { .booking__inner { grid-template-columns: 1fr 1.2fr; gap: var(--space-20); align-items: start; } }
.booking__content .eyebrow { color: var(--tt-brass-light); }
.booking__content h2 {
  color: white;
  margin: var(--space-3) 0 var(--space-4);
  font-weight: 400;
}
.booking__content h2 em { font-style: italic; color: var(--tt-brass-light); }
.booking__content p {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-lg);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}
.booking__list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: var(--space-3); }
.booking__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255,255,255,0.85);
  font-size: var(--text-base);
}
.booking__list li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E5B76A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center/contain;
  flex-shrink: 0;
  margin-top: 3px;
}
.booking__form {
  background: white;
  color: var(--tt-charcoal);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.booking__step {
  display: none;
  flex-direction: column;
  gap: var(--space-4);
}
.booking__step.active { display: flex; }
.booking__step h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--tt-charcoal);
  font-weight: 500;
  margin-bottom: 0;
}
.booking__step .subtitle {
  font-size: var(--text-sm);
  color: var(--tt-slate);
  margin-bottom: var(--space-2);
}
.booking__progress {
  display: flex;
  gap: 0.35rem;
  margin-bottom: var(--space-6);
}
.booking__progress span {
  height: 4px;
  flex: 1;
  background: var(--tt-line);
  border-radius: var(--radius-full);
  transition: background var(--dur) var(--ease);
}
.booking__progress span.active { background: var(--tt-orange); }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--tt-charcoal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.field input, .field select, .field textarea {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--tt-line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: var(--text-base);
  color: var(--tt-charcoal);
  background: white;
  transition: border var(--dur) var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--tt-orange);
  box-shadow: 0 0 0 3px rgba(232,93,60,0.1);
}
.field-row { display: grid; grid-template-columns: 1fr; gap: var(--space-4); }
@media (min-width: 640px) { .field-row { grid-template-columns: 1fr 1fr; } }
.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-3);
}
.choice {
  padding: var(--space-4);
  border: 2px solid var(--tt-line);
  border-radius: var(--radius);
  text-align: center;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  background: white;
}
.choice:hover { border-color: var(--tt-brass); }
.choice.selected {
  border-color: var(--tt-orange);
  background: rgba(232,93,60,0.05);
}
.choice__icon { color: var(--tt-orange); margin-bottom: 0.5rem; }
.choice__label { font-size: var(--text-sm); font-weight: 500; color: var(--tt-charcoal); }
.booking__actions {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-2);
}
.booking__actions .btn { flex: 1; justify-content: center; }
.slot-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 4px;
}
.slot {
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--tt-line);
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  background: white;
}
.slot:hover { border-color: var(--tt-brass); background: var(--tt-ivory); }
.slot.selected { border-color: var(--tt-orange); background: rgba(232,93,60,0.05); }
.slot__date { font-weight: 500; color: var(--tt-charcoal); font-size: var(--text-sm); }
.slot__window { color: var(--tt-slate); font-size: var(--text-xs); }
.booking__success {
  text-align: center;
  padding: var(--space-6) 0;
}
.booking__success-icon {
  width: 72px;
  height: 72px;
  background: rgba(74,222,128,0.15);
  color: #16A34A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
}

/* ---------- Membership Teaser ---------- */
.membership {
  background: var(--tt-ivory-warm);
  border-top: 1px solid var(--tt-line);
  border-bottom: 1px solid var(--tt-line);
}
.membership__inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.membership .eyebrow { display: block; margin-bottom: var(--space-4); }
.membership h2 {
  margin-bottom: var(--space-4);
  font-weight: 400;
}
.membership h2 em { font-style: italic; color: var(--tt-orange); font-weight: 400; }
.membership p { font-size: var(--text-lg); color: var(--tt-charcoal-soft); margin-bottom: var(--space-8); }
.membership__perks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-8);
  padding: var(--space-6);
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--tt-line);
}
.membership__perk { display: flex; flex-direction: column; align-items: center; gap: var(--space-2); }
.membership__perk-icon { color: var(--tt-orange); margin-bottom: var(--space-1); }
.membership__perk-value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--tt-charcoal);
  font-weight: 500;
  line-height: 1;
}
.membership__perk-label { font-size: var(--text-xs); color: var(--tt-slate); text-transform: uppercase; letter-spacing: 0.08em; text-align: center; }

/* ---------- Footer ---------- */
.footer {
  background: var(--tt-charcoal);
  color: rgba(255,255,255,0.75);
  padding: var(--space-16) 0 var(--space-8);
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-8);
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand p { color: rgba(255,255,255,0.65); font-size: var(--text-sm); margin-top: var(--space-4); max-width: 32ch; line-height: 1.6; }
.footer__col h4 {
  color: white;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: var(--space-4);
}
.footer__col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: var(--space-3); }
.footer__col a {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-sm);
  transition: color var(--dur) var(--ease);
}
.footer__col a:hover { color: var(--tt-brass-light); }
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.75);
}
.footer__contact strong { color: white; font-weight: 500; }
.footer__bottom {
  max-width: var(--container);
  margin: var(--space-8) auto 0;
  padding-inline: clamp(1rem, 4vw, 2rem);
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
}
.footer__pay {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  color: rgba(255,255,255,0.6);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer__pay-badges { display: flex; gap: var(--space-2); align-items: center; }
.pay-badge {
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.05em;
}

/* ---------- Sticky Mobile Call Button ---------- */
.sticky-call {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: var(--tt-orange);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem;
  font-weight: 600;
  font-size: var(--text-base);
  text-align: center;
  box-shadow: 0 -8px 24px rgba(15,46,90,0.2);
  transition: transform var(--dur) var(--ease);
}
.sticky-call:hover { background: var(--tt-orange-dark); color: white; }
.sticky-call svg { flex-shrink: 0; }

@media (min-width: 900px) {
  .sticky-call { display: none; }
}

/* Give mobile body room for sticky call button */
@media (max-width: 899px) {
  body { padding-bottom: 68px; }
}

/* ---------- Chat Bubble ---------- */
.chat-fab {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 42;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--tt-navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(15,46,90,0.4);
  transition: transform var(--dur) var(--ease);
}
.chat-fab:hover { transform: scale(1.06); }
@media (min-width: 900px) { .chat-fab { bottom: 24px; right: 24px; } }

/* Chat panel */
.chat-panel {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: min(360px, calc(100vw - 40px));
  height: 500px;
  max-height: calc(100vh - 120px);
  z-index: 45;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--tt-line);
}
.chat-panel.open { display: flex; }
.chat-header {
  background: var(--tt-navy);
  color: white;
  padding: var(--space-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-header h4 { color: white; font-family: var(--font-display); font-weight: 500; font-size: 1.15rem; }
.chat-header p { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 2px; }
.chat-close { color: white; padding: 4px; }
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  background: var(--tt-ivory);
}
.chat-msg {
  max-width: 85%;
  padding: 0.7rem 1rem;
  border-radius: 14px;
  font-size: var(--text-sm);
  line-height: 1.5;
}
.chat-msg.bot {
  background: white;
  color: var(--tt-charcoal);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  box-shadow: var(--shadow-sm);
}
.chat-msg.user {
  background: var(--tt-navy);
  color: white;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.chat-input-row {
  display: flex;
  gap: 0.5rem;
  padding: var(--space-3);
  border-top: 1px solid var(--tt-line);
  background: white;
}
.chat-input-row input {
  flex: 1;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--tt-line);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  outline: none;
}
.chat-input-row input:focus { border-color: var(--tt-orange); }
.chat-input-row button {
  padding: 0.65rem 1rem;
  background: var(--tt-orange);
  color: white;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
}
.chat-quick {
  display: flex;
  gap: 0.4rem;
  padding: 0 var(--space-4) var(--space-3);
  flex-wrap: wrap;
  background: var(--tt-ivory);
}
.chat-quick button {
  font-size: 12px;
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--tt-line);
  background: white;
  color: var(--tt-charcoal);
  font-weight: 500;
  transition: all var(--dur) var(--ease);
}
.chat-quick button:hover { border-color: var(--tt-orange); color: var(--tt-orange); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-6 { margin-top: var(--space-6); }
.mb-6 { margin-bottom: var(--space-6); }
.max-w-narrow { max-width: var(--container-narrow); }

/* Skip link */
.skip { position: absolute; left: -9999px; top: 0; padding: 1rem; background: var(--tt-charcoal); color: white; z-index: 200; }
.skip:focus { left: 0; }

/* Scroll reveal (subtle) — fail-open: content visible by default, JS only enhances */
.reveal { opacity: 1; transform: none; transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }

/* JS marks <html> with .js-reveal-ready then hides sections until they scroll in.
   If JS never runs, the extra classes are never applied and content stays visible. */
.js-reveal-ready .reveal:not(.in) { opacity: 0; transform: translateY(20px); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .js-reveal-ready .reveal:not(.in) { opacity: 1; transform: none; }
}

/* ============================================
   SUBPAGE STYLES
   ============================================ */

/* Page hero — smaller than homepage hero */
.page-hero {
  background: linear-gradient(180deg, var(--tt-navy-deep) 0%, var(--tt-navy) 100%);
  color: white;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(232,93,60,0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 60%, rgba(198,145,58,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.page-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tt-orange);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 400;
  color: white;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--tt-orange);
  font-weight: 400;
}
.page-hero__lede {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 0 32px;
}
.page-hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Breadcrumbs */
.breadcrumb {
  background: var(--tt-ivory);
  border-bottom: 1px solid rgba(31,41,55,0.08);
  padding: 14px 0;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--tt-charcoal);
}
.breadcrumb__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--tt-navy);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.breadcrumb a:hover { border-bottom-color: var(--tt-navy); }
.breadcrumb__sep { color: rgba(31,41,55,0.4); }
.breadcrumb__current { color: rgba(31,41,55,0.6); }

/* Prose section — long-form content */
.prose-section {
  padding: 80px 0;
  background: white;
}
.prose-section__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}
.prose-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.2;
  font-weight: 400;
  margin: 0 0 20px;
  color: var(--tt-navy-deep);
  letter-spacing: -0.01em;
}
.prose-section h2 em {
  font-style: italic;
  color: var(--tt-orange);
}
.prose-section h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.3;
  font-weight: 500;
  margin: 40px 0 12px;
  color: var(--tt-navy-deep);
}
.prose-section p {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--tt-charcoal);
  margin: 0 0 16px;
}
.prose-section ul, .prose-section ol {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--tt-charcoal);
  padding-left: 24px;
  margin: 0 0 20px;
}
.prose-section li { margin: 4px 0; }
.prose-section .lede {
  font-size: 20px;
  line-height: 1.6;
  color: var(--tt-navy-deep);
  font-weight: 400;
  margin-bottom: 32px;
}

/* Two-column split section */
.split-section {
  padding: 80px 0;
  background: var(--tt-ivory);
}
.split-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .split-section__inner { grid-template-columns: 1fr; gap: 40px; }
}
.split-section__image {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--tt-navy);
}
.split-section__image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.split-section__text h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.2;
  font-weight: 400;
  margin: 0 0 20px;
  color: var(--tt-navy-deep);
  letter-spacing: -0.01em;
}
.split-section__text h2 em {
  font-style: italic;
  color: var(--tt-orange);
}
.split-section__text p {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--tt-charcoal);
  margin: 0 0 16px;
}

/* What's included list — for service pages */
.included {
  background: white;
  border: 1px solid rgba(31,41,55,0.08);
  border-radius: 12px;
  padding: 32px;
  margin: 32px 0;
}
.included h3 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--tt-orange);
  margin: 0 0 20px;
}
.included ul { list-style: none; padding: 0; margin: 0; }
.included li {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--tt-charcoal);
  padding: 10px 0 10px 32px;
  position: relative;
  border-bottom: 1px solid rgba(31,41,55,0.06);
}
.included li:last-child { border-bottom: none; }
.included li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 20px; height: 20px;
  background: var(--tt-orange);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Pricing callout box */
.pricing-callout {
  background: var(--tt-navy-deep);
  color: white;
  border-radius: 12px;
  padding: 32px;
  margin: 32px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
@media (max-width: 640px) {
  .pricing-callout { grid-template-columns: 1fr; }
}
.pricing-callout__price {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
  color: var(--tt-brass);
}
.pricing-callout__price small {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
  letter-spacing: 1.5px;
}
.pricing-callout__text h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 8px;
  color: white !important;
}
.pricing-callout__text p {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

/* Service Plan Cards — for /service-plans page */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 900px) { .plans-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .plans-grid { grid-template-columns: 1fr; } }
.plan-card {
  background: white;
  border: 1px solid rgba(31,41,55,0.08);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15,46,90,0.12);
}
.plan-card__tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--tt-orange);
  margin-bottom: 12px;
}
.plan-card__name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--tt-navy-deep);
  margin: 0 0 12px;
}
.plan-card__price {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  color: var(--tt-navy);
  margin-bottom: 4px;
}
.plan-card__price small {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--tt-charcoal);
  opacity: 0.7;
  font-weight: 400;
}
.plan-card__lede {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--tt-charcoal);
  opacity: 0.8;
  margin: 12px 0 24px;
  min-height: 42px;
}
.plan-card__perks {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.plan-card__perks li {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--tt-charcoal);
  padding: 8px 0 8px 26px;
  position: relative;
  border-bottom: 1px solid rgba(31,41,55,0.06);
}
.plan-card__perks li:last-child { border-bottom: none; }
.plan-card__perks li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 8px;
  color: var(--tt-orange);
  font-weight: 700;
}
.plan-card__cta {
  display: block;
  text-align: center;
  padding: 14px 20px;
  background: var(--tt-orange);
  color: white;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.plan-card__cta:hover {
  background: #d54d2b;
  transform: translateY(-1px);
}

/* City list — for county pages */
.city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0 40px;
}
@media (max-width: 900px) { .city-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .city-grid { grid-template-columns: 1fr; } }
.city-chip {
  background: white;
  border: 1px solid rgba(31,41,55,0.1);
  border-radius: 8px;
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--tt-navy);
  text-align: center;
}

/* FAQ accordion */
.faq-list { margin: 32px 0; }
.faq-item {
  border-bottom: 1px solid rgba(31,41,55,0.1);
}
.faq-item:first-child { border-top: 1px solid rgba(31,41,55,0.1); }
.faq-q {
  width: 100%;
  padding: 24px 40px 24px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--tt-navy-deep);
  position: relative;
  display: block;
}
.faq-q::after {
  content: '+';
  position: absolute;
  right: 8px; top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 300;
  color: var(--tt-orange);
  transition: transform 0.2s;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--tt-charcoal);
}
.faq-item.open .faq-a { max-height: 800px; padding-bottom: 24px; }
.faq-a p { margin: 0 0 12px; }
.faq-a p:last-child { margin: 0; }

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-method {
  background: white;
  border: 1px solid rgba(31,41,55,0.08);
  border-radius: 12px;
  padding: 32px;
}
.contact-method h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--tt-navy-deep);
  margin: 0 0 12px;
}
.contact-method p {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--tt-charcoal);
  margin: 0 0 16px;
}
.contact-method__value {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--tt-orange);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
  display: inline-block;
}
.contact-method__value:hover { border-bottom-color: var(--tt-orange); }

/* CTA band */
.cta-band {
  background: var(--tt-navy);
  color: white;
  padding: 80px 24px;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.2;
  font-weight: 400;
  color: white;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.cta-band h2 em { font-style: italic; color: var(--tt-orange); }
.cta-band p {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 32px;
}
.cta-band__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Active nav state */
.header__nav a.active {
  color: var(--tt-orange);
}

/* Button aliases used on subpages */
.btn--orange {
  background: var(--tt-orange);
  color: white;
  border-color: var(--tt-orange);
  box-shadow: 0 6px 18px rgba(232,93,60,0.35);
}
.btn--orange:hover {
  background: var(--tt-orange-dark);
  border-color: var(--tt-orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(232,93,60,0.45);
}
.btn--ghost-light {
  border-color: rgba(255,255,255,0.6);
  color: white;
  background: transparent;
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

/* .family-strip responsive handled by component styles above */

/* ============================================================
   Resources hub + content article pages (AEO content)
   ============================================================ */

.resources-hero {
  background: linear-gradient(135deg, var(--tt-navy) 0%, #163b73 100%);
  color: white;
  padding: 5rem 1.5rem 4rem;
}
.resources-hero__inner {
  max-width: 900px;
  margin: 0 auto;
}
.resources-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.15;
  margin: 0 0 1.25rem;
  color: white;
}
.resources-hero .lead {
  font-size: 1.15rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  max-width: 680px;
  margin: 0;
}

.resources-grid-section {
  padding: 4rem 1.5rem;
  background: var(--tt-cream, #faf7f2);
}
.resources-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.resource-card {
  display: block;
  padding: 1.75rem;
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.resource-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,75,143,0.12);
  border-color: var(--tt-navy);
}
.resource-card h3 {
  font-size: 1.2rem;
  line-height: 1.3;
  color: var(--tt-navy);
  margin: 0 0 0.75rem;
}
.resource-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #555;
  margin: 0 0 1rem;
}
.resource-card__read {
  color: var(--tt-brass, #a67c2e);
  font-weight: 600;
  font-size: 0.9rem;
}

.resources-cta {
  padding: 4rem 1.5rem;
  text-align: center;
  background: white;
}
.resources-cta h2 {
  color: var(--tt-navy);
  margin: 0 0 0.5rem;
}
.resources-cta p {
  color: #555;
  margin: 0 0 1.5rem;
}
.resources-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* -------- Article pages -------- */
.content-article {
  max-width: 780px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}
.breadcrumbs {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1.5rem;
}
.breadcrumbs a {
  color: var(--tt-navy);
  text-decoration: none;
}
.breadcrumbs a:hover { text-decoration: underline; }

.content-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  color: var(--tt-navy);
  margin: 0 0 1.25rem;
}
.content-answer-block {
  font-size: 1.05rem;
  line-height: 1.65;
  background: var(--tt-cream, #faf7f2);
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--tt-brass, #a67c2e);
  border-radius: 4px;
  margin: 0 0 2.5rem;
}

.content-section {
  margin: 2.5rem 0;
}
.content-section h2 {
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--tt-navy);
  margin: 0 0 1rem;
}
.content-section h3 {
  font-size: 1.15rem;
  line-height: 1.35;
  color: var(--tt-navy);
  margin: 1.5rem 0 0.75rem;
}
.content-section p {
  font-size: 1rem;
  line-height: 1.65;
  color: #333;
  margin: 0 0 1rem;
}
.content-list {
  padding-left: 1.5rem;
  margin: 0 0 1rem;
}
.content-list li {
  font-size: 1rem;
  line-height: 1.65;
  color: #333;
  margin-bottom: 0.5rem;
}

.table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 6px;
}
.content-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.content-table thead {
  background: var(--tt-navy);
  color: white;
}
.content-table th,
.content-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  vertical-align: top;
}
.content-table tbody tr:nth-child(even) {
  background: var(--tt-cream, #faf7f2);
}
.content-table tbody tr:last-child td { border-bottom: none; }

.content-callout {
  background: #fff8e6;
  border-left: 4px solid var(--tt-brass, #a67c2e);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
  border-radius: 4px;
}
.content-callout strong { color: var(--tt-navy); }

.content-cta {
  background: var(--tt-navy);
  color: white;
  padding: 2.5rem;
  border-radius: 8px;
  margin: 3rem 0;
  text-align: center;
}
.content-cta h2 { color: white; }
.content-cta p { color: rgba(255,255,255,0.9); }
.content-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1.5rem 0 1rem;
}
.content-cta__meta {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin: 0.75rem 0 0;
}

.content-author {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 1.5rem 0 0;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #666;
}

/* FAQ items on content pages (reuse pattern from /faq) */
.content-article .faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 1rem 0;
}
.content-article .faq-q {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--tt-navy);
  cursor: pointer;
  text-align: left;
  width: 100%;
  padding: 0;
  line-height: 1.4;
}
.content-article .faq-a {
  margin-top: 0.75rem;
  color: #444;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .content-cta { padding: 1.75rem 1.25rem; }
  .content-table { font-size: 0.85rem; }
  .content-table th, .content-table td { padding: 0.6rem 0.75rem; }
}
