:root {
  --navy: #1a2744;
  --terra: #c4773a;
  --cream: #f5efe6;
  --gold: #c9a86c;
  --dark: #111827;
  --muted: #6b7280;
  --white: #ffffff;
  --border: #e5ddd4;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --max-width: 1100px;
  --narrow: 680px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--dark);
  background: var(--cream);
}

/* --- Layout --- */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: var(--narrow);
}

/* --- Typography --- */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); color: var(--navy); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); color: var(--navy); margin-bottom: 1rem; }
h3 { font-size: 1.375rem; color: var(--navy); margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--terra); text-decoration: none; }
a:hover { text-decoration: underline; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1rem;
}

/* --- Buttons --- */

.btn-primary {
  display: inline-block;
  background: var(--terra);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease;
}

.btn-primary:hover { background: #b06830; text-decoration: none; }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }

.btn-primary--large {
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
}

.btn-primary--full { width: 100%; text-align: center; }

/* --- Scenic break --- */

.scenic-break {
  margin: 0;
  line-height: 0;
  max-height: 420px;
  overflow: hidden;
}

.scenic-break img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

/* --- Author layout --- */

.author-layout {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.author-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  flex-shrink: 0;
  border: 3px solid var(--border);
}

.author-text { flex: 1; }

@media (max-width: 480px) {
  .author-layout { flex-direction: column; gap: 1.25rem; }
  .author-photo { width: 80px; height: 80px; }
}

/* --- Header --- */

.site-header {
  background: var(--navy);
  padding: 1.25rem 0;
}

.site-header .logo {
  font-family: var(--font-display);
  font-size: 1.375rem;
  color: var(--cream);
  letter-spacing: 0.03em;
}

.site-header--minimal .logo {
  font-size: 1.125rem;
  text-decoration: none;
}

.site-header--minimal .logo:hover { text-decoration: none; opacity: 0.85; }

/* --- Hero --- */

.hero {
  background: var(--navy);
  background-size: cover;
  background-position: center 35%;
  color: var(--cream);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 39, 68, 0.72);
  pointer-events: none;
}

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

.hero h1 {
  color: var(--cream);
  margin-bottom: 1.25rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.subhead {
  font-size: 1.1875rem;
  color: rgba(245, 239, 230, 0.8);
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  font-weight: 300;
}

.below-cta {
  margin-top: 0.875rem;
  font-size: 0.875rem;
  color: rgba(245, 239, 230, 0.55);
  letter-spacing: 0.02em;
}

/* --- Sections --- */

.section-problem {
  padding: 5rem 0;
  background: var(--white);
}

.section-problem p, .section-beta p {
  color: #374151;
  font-size: 1.0625rem;
}

.section-problem .pain-close {
  font-style: italic;
  color: var(--navy);
  border-left: 3px solid var(--gold);
  padding: 0.25rem 0 0.25rem 1.25rem;
  margin-top: 1.75rem;
  font-size: 1.0625rem;
  line-height: 1.65;
}

.section-problem .pain-resolve {
  margin-top: 1.75rem;
  font-size: 1.125rem;
  color: var(--navy);
}

.section-contents {
  padding: 5rem 0;
  background: var(--cream);
}

.section-contents__lede {
  color: var(--muted);
  font-size: 1.0625rem;
  max-width: 560px;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.section-beta {
  padding: 4rem 0;
  background: var(--white);
}

.section-for-who {
  padding: 5rem 0;
  background: var(--cream);
}

.section-offer {
  padding: 5rem 0;
  background: var(--navy);
}

/* --- Divider --- */

.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
  background: var(--white);
}

.divider-ornament span {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

/* --- Module grid --- */

.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.module-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
}

.module-number {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.module-card h3 {
  font-size: 1.1875rem;
  margin-bottom: 0.5rem;
}

.module-card p {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 0;
}

.cta-mid {
  text-align: center;
  margin-top: 1rem;
}

/* --- Lists --- */

.clean-list, .check-list, .cross-list {
  list-style: none;
  margin: 1.25rem 0;
}

.clean-list li {
  padding: 0.375rem 0;
  padding-left: 1.25rem;
  position: relative;
  color: #374151;
}

.clean-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.check-list li {
  padding: 0.375rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: #374151;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--terra);
  font-weight: 600;
}

.cross-list li {
  padding: 0.375rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: #374151;
}

.cross-list li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

/* --- Transformation --- */

.section-transformation {
  padding: 5rem 0;
  background: var(--navy);
  color: var(--cream);
}

.section-transformation h2 {
  color: var(--cream);
  margin-bottom: 2rem;
}

.transform-blocks {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.transform-block {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(201, 168, 108, 0.2);
}

.transform-block:last-child { border-bottom: none; }

.transform-block p {
  color: rgba(245, 239, 230, 0.85);
  font-size: 1.0625rem;
  margin-bottom: 0;
}

.transform-block em {
  color: var(--gold);
  font-style: italic;
}

/* --- Author --- */

.section-author {
  padding: 5rem 0;
  background: var(--white);
}

.section-author p {
  color: #374151;
}

/* --- FAQ --- */

.section-faq {
  padding: 5rem 0;
  background: var(--cream);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1.5rem;
}

.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-item h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.625rem;
  font-family: var(--font-body);
  font-weight: 500;
}

.faq-item p {
  color: #374151;
  margin-bottom: 0;
  font-size: 0.9875rem;
}

/* --- For-who grid --- */

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

@media (max-width: 640px) {
  .for-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.for-col--not h2 { color: var(--muted); font-size: 1.75rem; }

/* --- Offer box --- */

.offer-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201, 168, 108, 0.3);
  border-radius: 8px;
  padding: 3rem;
  text-align: center;
  color: var(--cream);
  overflow-x: hidden;
}

.offer-box .eyebrow { color: var(--gold); }

.offer-promise {
  color: var(--cream);
  font-size: clamp(1.625rem, 3vw, 2.125rem);
  margin-bottom: 0.875rem;
}

.offer-recap {
  color: rgba(245, 239, 230, 0.75);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 1.25rem;
  line-height: 1.6;
}

.offer-price {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--cream);
  margin: 0.75rem 0;
  line-height: 1;
}

.offer-includes {
  list-style: none;
  margin: 1.5rem 0 2rem;
  text-align: left;
  display: inline-block;
}

.offer-includes li {
  padding: 0.3rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: rgba(245, 239, 230, 0.8);
  font-size: 0.9375rem;
}

.offer-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.price-justification {
  margin-top: 1.75rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border-left: 2px solid var(--gold);
  border-radius: 0 6px 6px 0;
  text-align: left;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.price-justification p {
  color: rgba(245, 239, 230, 0.78);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.price-justification strong {
  color: var(--gold);
  font-weight: 500;
}

.guarantee {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: rgba(245, 239, 230, 0.5);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Footer --- */

.site-footer {
  background: var(--navy);
  padding: 2.5rem 0;
  text-align: center;
  color: rgba(245, 239, 230, 0.5);
}

.site-footer a { color: rgba(245, 239, 230, 0.7); }
.site-footer a:hover { color: var(--cream); }
.site-footer p { margin-bottom: 0.25rem; font-size: 0.9375rem; }
.footer-small { font-size: 0.8125rem; margin-top: 0.5rem; }

/* --- Checkout --- */

.checkout-page {
  padding: 3rem 0 5rem;
  min-height: calc(100vh - 72px);
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .checkout-layout { grid-template-columns: 1fr; gap: 2rem; }
}

.checkout-summary {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
}

.checkout-summary h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.checkout-desc {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.checkout-includes {
  list-style: none;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.checkout-includes li {
  padding: 0.25rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9375rem;
  color: #374151;
}

.checkout-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--terra);
}

.checkout-price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.9375rem;
  color: var(--muted);
}

.checkout-price-line--total {
  font-weight: 500;
  color: var(--dark);
  font-size: 1rem;
}

.checkout-price {
  font-weight: 500;
  color: var(--navy);
}

.checkout-guarantee {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 1rem;
  text-align: center;
}

.checkout-form-col {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
}

.checkout-step h3 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
  color: var(--dark);
}

.form-group input {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.15s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--navy);
}

.form-hint {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 0.375rem;
  margin-bottom: 0;
}

.order-bump {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.875rem;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.25rem;
  background: #fff9f0;
  cursor: pointer;
}

.order-bump input {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
}

.order-bump__title {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.35rem;
}

.order-bump__desc {
  display: block;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.5;
}

.order-bump__highlights {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.5;
}

.order-bump__meta {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.45;
}

.form-error {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.75rem;
}

.spinner {
  width: 24px;
  height: 24px;
  border: 2px solid var(--border);
  border-top-color: var(--terra);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin: 1rem auto 0;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* --- Thank you --- */

.thankyou-page {
  padding: 5rem 0;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
}

.thankyou-box {
  text-align: center;
}

.thankyou-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--terra);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.thankyou-box h1 {
  margin-bottom: 1rem;
}

.thankyou-note {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-top: 1rem;
}

.thankyou-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}

.thankyou-next h2,
.thankyou-ask h2 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
}

.thankyou-next p,
.thankyou-ask p {
  color: #374151;
  font-size: 0.9875rem;
}

.download-formats--thankyou {
  margin-top: 1.5rem;
}

/* --- Download --- */

.download-page {
  padding: 5rem 0;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
}

.download-box {
  text-align: center;
}

.download-box h1 {
  margin-bottom: 1rem;
}

.download-box .btn-primary {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.download-formats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

@media (max-width: 520px) {
  .download-formats { grid-template-columns: 1fr; }
}

.download-format {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
  text-align: left;
  background: var(--white);
}

.format-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.5rem;
}

.format-desc {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.btn-secondary {
  background: transparent;
  color: var(--terra);
  border: 1.5px solid var(--terra);
}

.btn-secondary:hover {
  background: var(--terra);
  color: var(--white);
  text-decoration: none;
}

.download-note {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.download-inline-link {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--navy);
}

/* --- Directory App --- */

.directory-app {
  background:
    radial-gradient(circle at top left, rgba(201, 168, 108, 0.22), transparent 28%),
    linear-gradient(180deg, #efe5d6 0%, #f8f4ed 38%, #f3ede4 100%);
  min-height: calc(100vh - 72px);
}

.directory-hero {
  padding: 4.5rem 0 2rem;
}

.directory-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: start;
}

.directory-hero__copy h1 {
  max-width: 12ch;
  margin-bottom: 1rem;
}

.directory-hero__lede {
  max-width: 58ch;
  color: #334155;
  font-size: 1.05rem;
}

.directory-searchbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  margin: 2rem 0 1rem;
}

.directory-searchbar input,
.directory-field select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(26, 39, 68, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  padding: 0 1rem;
  font: inherit;
  color: var(--dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.directory-searchbar input:focus,
.directory-field select:focus {
  outline: 2px solid rgba(196, 119, 58, 0.24);
  border-color: rgba(196, 119, 58, 0.55);
}

.directory-quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.directory-pill {
  border: 1px solid rgba(26, 39, 68, 0.14);
  background: rgba(255, 255, 255, 0.62);
  color: var(--navy);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font: inherit;
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.directory-pill:hover,
.directory-pill.is-active {
  transform: translateY(-1px);
  border-color: rgba(196, 119, 58, 0.45);
  background: rgba(255, 255, 255, 0.95);
}

.directory-hero__panel {
  border: 1px solid rgba(26, 39, 68, 0.08);
  border-radius: 28px;
  padding: 1.4rem;
  background:
    linear-gradient(160deg, rgba(26, 39, 68, 0.96), rgba(18, 31, 56, 0.9)),
    var(--navy);
  color: var(--cream);
  box-shadow: 0 24px 64px rgba(26, 39, 68, 0.16);
}

.directory-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.directory-stat-card {
  border-radius: 22px;
  padding: 1rem;
  min-height: 118px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.directory-stat-card__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1;
  color: var(--white);
}

.directory-stat-card__label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.72);
}

.directory-hero__actions {
  margin-top: 1rem;
}

.directory-hero__actions .btn-secondary {
  width: 100%;
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 239, 230, 0.45);
}

.directory-hero__actions .btn-secondary:hover {
  background: rgba(245, 239, 230, 0.12);
  color: var(--cream);
}

.directory-hero__note {
  margin-top: 0.8rem;
  font-size: 0.92rem;
  color: rgba(245, 239, 230, 0.68);
}

.directory-shell {
  padding: 1rem 0 5rem;
}

.directory-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 1.6rem;
  align-items: start;
}

.directory-sidebar {
  position: sticky;
  top: 1rem;
  display: grid;
  gap: 1rem;
}

.directory-panel,
.service-card {
  border: 1px solid rgba(26, 39, 68, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 48px rgba(26, 39, 68, 0.08);
}

.directory-panel {
  padding: 1.2rem;
}

.directory-panel__eyebrow,
.directory-results__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
}

.directory-category-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.directory-category-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid transparent;
  background: #fbf8f2;
  border-radius: 16px;
  padding: 0.82rem 0.9rem;
  font: inherit;
  color: #334155;
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.directory-category-button span {
  color: var(--muted);
  font-size: 0.88rem;
}

.directory-category-button:hover,
.directory-category-button.is-active {
  transform: translateX(2px);
  border-color: rgba(196, 119, 58, 0.28);
  background: rgba(196, 119, 58, 0.08);
}

.directory-field {
  display: grid;
  gap: 0.45rem;
  color: #334155;
  margin-top: 0.95rem;
}

.directory-field span {
  font-size: 0.84rem;
  font-weight: 500;
}

.directory-field--inline {
  min-width: 220px;
  margin-top: 0;
}

.directory-check {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: #334155;
  margin-top: 0.95rem;
}

.directory-check input {
  accent-color: var(--terra);
  margin-top: 0.2rem;
}

.directory-reset {
  margin-top: 1rem;
  border: none;
  background: none;
  color: var(--terra);
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.directory-results__toolbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1rem;
}

.directory-results__toolbar h2 {
  margin: 0.35rem 0 0;
}

.directory-status {
  color: #475569;
  margin-bottom: 1rem;
}

.directory-results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  padding: 1.3rem;
  position: relative;
  overflow: hidden;
}

.service-card.is-shortlisted::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(196, 119, 58, 0.38);
  border-radius: 26px;
  pointer-events: none;
}

.service-card__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.service-card__kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.5rem;
}

.service-card h3 {
  margin-bottom: 0;
}

.service-save {
  border: 1px solid rgba(26, 39, 68, 0.12);
  background: #fbf8f2;
  color: var(--navy);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font: inherit;
  cursor: pointer;
  flex-shrink: 0;
}

.service-save.is-active {
  background: rgba(196, 119, 58, 0.14);
  border-color: rgba(196, 119, 58, 0.3);
}

.service-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0.9rem;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.34rem 0.72rem;
  font-size: 0.8rem;
  color: #334155;
  background: #f6efe6;
}

.service-badge--confidence {
  background: rgba(26, 39, 68, 0.08);
}

.service-summary {
  font-size: 0.97rem;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.service-summary--secondary {
  color: var(--muted);
}

.service-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 0.95rem 0 0;
  border-top: 1px solid rgba(26, 39, 68, 0.08);
}

.service-details dt {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.3rem;
}

.service-details dd {
  color: #334155;
  font-size: 0.95rem;
}

.service-detail__muted {
  color: var(--muted);
}

.service-evidence {
  margin-top: 1rem;
  border-top: 1px dashed rgba(26, 39, 68, 0.12);
  padding-top: 0.95rem;
}

.service-evidence summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 500;
}

.service-evidence__list {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.service-evidence__item {
  border-radius: 16px;
  padding: 0.9rem;
  background: #faf6ef;
}

.service-evidence__item p {
  font-size: 0.92rem;
  color: #334155;
  margin-bottom: 0.35rem;
}

.service-evidence__item span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* --- Video section --- */

.section-video {
  padding: 5rem 0;
  background: var(--white);
}

.section-video--lead {
  padding: 3.5rem 0 4rem;
  background: var(--cream);
}

.section-video--lead .eyebrow {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(196, 119, 58, 0.28);
  border-radius: 999px;
  margin-bottom: 0.875rem;
}

.section-video .eyebrow { color: var(--terra); }

.section-video h2 { margin-bottom: 0.5rem; }

.section-video__lede {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.video-player {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #0a0f1a;
  box-shadow: 0 24px 64px rgba(26, 39, 68, 0.18), 0 2px 8px rgba(26, 39, 68, 0.12);
  aspect-ratio: 16 / 9;
  cursor: pointer;
}

.video-player video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(10, 15, 26, 0.48);
  transition: opacity 0.2s ease;
}

.video-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--terra);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0 0 8px rgba(196, 119, 58, 0.2);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.video-play-btn:hover {
  transform: scale(1.08);
  background: #b06830;
  box-shadow: 0 0 0 12px rgba(196, 119, 58, 0.15);
}

.video-play-label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.8);
}

.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem 0.75rem;
  background: linear-gradient(to top, rgba(10, 15, 26, 0.85), transparent);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.video-controls.is-visible {
  opacity: 1;
  pointer-events: all;
}

.vc-play,
.vc-mute,
.vc-fullscreen {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(245, 239, 230, 0.9);
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color 0.15s ease;
}

.vc-play:hover,
.vc-mute:hover,
.vc-fullscreen:hover {
  color: var(--gold);
}

.vc-time {
  font-size: 0.75rem;
  color: rgba(245, 239, 230, 0.7);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 2.5rem;
}

.vc-progress {
  flex: 1;
  padding: 0.5rem 0;
  cursor: pointer;
}

.vc-progress__track {
  height: 3px;
  background: rgba(245, 239, 230, 0.2);
  border-radius: 2px;
  overflow: hidden;
  transition: height 0.15s ease;
}

.vc-progress:hover .vc-progress__track { height: 5px; }

.vc-progress__fill {
  height: 100%;
  background: var(--terra);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}

/* --- Responsive --- */

@media (max-width: 980px) {
  .directory-hero__grid,
  .directory-layout,
  .directory-results-grid {
    grid-template-columns: 1fr;
  }

  .directory-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .hero { padding: 3.5rem 0 3rem; }
  .section-problem,
  .section-contents,
  .section-beta,
  .section-for-who,
  .section-offer,
  .section-transformation,
  .section-author,
  .section-faq { padding: 3.5rem 0; }
  .section-video--lead { padding: 2.5rem 0 3rem; }
  .offer-box { padding: 2rem 1.5rem; }
  .offer-includes { display: block; width: 100%; text-align: left; }
  .module-grid { grid-template-columns: 1fr; }
  .scenic-break,
  .scenic-break img { max-height: 220px; height: 220px; }

  .directory-hero {
    padding-top: 3rem;
  }

  .directory-searchbar,
  .directory-stat-grid,
  .service-details {
    grid-template-columns: 1fr;
  }

  .directory-results__toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .directory-field--inline {
    min-width: 100%;
  }

  .service-card__top {
    flex-direction: column;
  }
}

/* ---- Directory — Visual Improvements ---- */

@keyframes card-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.service-card {
  animation: card-in 0.32s ease both;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 72px rgba(26, 39, 68, 0.14);
}

.service-card h3 {
  font-size: 1.5rem;
}

/* Confidence badge color variants */
.service-badge--high {
  background: rgba(16, 185, 129, 0.12);
  color: #065f46;
}

.service-badge--medium {
  background: rgba(245, 158, 11, 0.14);
  color: #78350f;
}

.service-badge--low {
  background: rgba(107, 114, 128, 0.12);
  color: #374151;
}

.service-badge--contact {
  background: rgba(26, 39, 68, 0.08);
  color: var(--navy);
}

.service-badge--mentions {
  font-variant-numeric: tabular-nums;
}

/* Save button — icon + improved states */
.service-save {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  transition: background 0.16s ease, border-color 0.16s ease, transform 0.16s ease, color 0.16s ease;
}

.service-save:hover {
  transform: translateY(-1px);
  border-color: rgba(196, 119, 58, 0.38);
  background: rgba(255, 255, 255, 0.98);
}

.service-save.is-active {
  background: rgba(196, 119, 58, 0.14);
  border-color: rgba(196, 119, 58, 0.35);
  color: var(--terra);
}

/* Evidence disclosure — custom arrow */
.service-evidence summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
}

.service-evidence summary::-webkit-details-marker { display: none; }

.service-evidence summary::before {
  content: '▸';
  font-size: 0.7rem;
  color: var(--terra);
  transition: transform 0.18s ease;
  flex-shrink: 0;
}

.service-evidence[open] summary::before {
  transform: rotate(90deg);
}

/* Results toolbar heading */
.directory-results__toolbar h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

/* Footer */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  margin-top: 4rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.site-footer a {
  color: var(--muted);
  text-decoration: underline;
}

.site-footer a:hover {
  color: var(--terra);
}

/* Legal pages */
.legal-page {
  padding: 4rem 0 6rem;
}

.legal-page h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.legal-updated {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.legal-page h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.legal-page p,
.legal-page ul {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1rem;
}

.legal-page ul {
  padding-left: 1.25rem;
}

.legal-page a {
  color: var(--terra);
}

/* Product shot in offer box */
.offer-product-shot {
  margin: 2rem auto 1.5rem;
  text-align: center;
  width: min(100%, 18rem);
}

.offer-product-img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.10);
}

@media (max-width: 640px) {
  .offer-product-shot {
    width: min(100%, 13.5rem);
    margin: 1.5rem auto 1.25rem;
  }
}
