/* ============================================================
   O'Brien Fitness & Lifestyle — static marketing site
   Dark disciplined aesthetic · mobile-first
   ============================================================ */

:root {
  --bg: #0a0a0b;
  --bg-elevated: #121214;
  --bg-card: #161618;
  --bg-card-hover: #1c1c1f;
  --border: #2a2a2e;
  --border-subtle: #1f1f23;
  --text: #f2f2f3;
  --text-muted: #a0a0a8;
  --text-dim: #6e6e76;
  /* Sunrise / sunset */
  --accent: #ff8c42;           /* sunset orange */
  --accent-soft: #ffc857;      /* morning gold */
  --accent-hot: #ff5e3a;       /* horizon coral */
  --accent-dawn: #ffd89b;      /* pale sunrise */
  --accent-dusk: #c45c26;      /* deep dusk */
  --accent-dim: rgba(255, 140, 66, 0.16);
  --accent-border: rgba(255, 184, 87, 0.4);
  --sky-top: #1a0f18;
  --sky-mid: #3d1f2e;
  --sky-glow: #ff7a3c;
  --sky-blue: #5ba4d9;       /* desert sky */
  --sky-blue-soft: #8ec5e8;
  --sky-blue-deep: #2f6f9f;
  --sky-blue-dim: rgba(91, 164, 217, 0.16);
  --sky-blue-border: rgba(91, 164, 217, 0.4);
  --focus: var(--sky-blue-soft);
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  --header-h: 68px;
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --max: 1100px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(255, 122, 60, 0.12), transparent 60%),
    radial-gradient(800px 400px at 100% 30%, rgba(255, 200, 87, 0.06), transparent 50%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--text);
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #111;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
}

.logo:hover {
  color: var(--text);
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.45rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #1a0a05;
  background: linear-gradient(135deg, var(--accent-hot) 0%, var(--accent) 45%, var(--accent-soft) 100%);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(255, 94, 58, 0.3);
}

.logo-text {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

@media (max-width: 640px) {
  .logo-text {
    display: none;
  }
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav .btn {
  color: #111;
}

.site-nav .btn:hover {
  color: #111;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.25rem 1.25rem;
    display: none;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .site-nav a {
    display: block;
    padding: 0.75rem 0.5rem;
  }

  .site-nav .btn {
    text-align: center;
    margin-top: 0.25rem;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-hot) 0%, var(--accent) 45%, var(--accent-soft) 100%);
  color: #1a0a05;
  border-color: transparent;
  box-shadow: 0 8px 28px rgba(255, 94, 58, 0.35);
}

.btn-primary:hover {
  filter: brightness(1.06);
  color: #1a0a05;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent-border);
  background: var(--accent-dim);
  color: var(--text);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.95rem 1.6rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* ---------- Sections ---------- */
.section {
  padding: 4.5rem 0;
}

.section-header {
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

.section-header.center,
.cta-inner {
  text-align: center;
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

h1, h2, h3 {
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 1rem;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 6vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
}

h3 {
  font-size: 1.35rem;
}

.section-lead,
.hero-lead {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin: 0 0 1.5rem;
  max-width: 36rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 4.5rem 0 5rem;
  overflow: hidden;
}

.hero::before {
  content: none; /* replaced by .hero-sky sunrise art */
}

.hero-inner {
  position: relative;
  max-width: min(56rem, 100%);
}

.tagline {
  margin: 0 0 2rem;
  font-size: 1rem;
  font-style: italic;
  color: var(--accent-soft);
  letter-spacing: 0.01em;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

/* ---------- Services / Two doors ---------- */
.doors {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .doors {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.door {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s, background 0.2s;
}

.door:hover {
  background: var(--bg-card-hover);
  border-color: #34343a;
}

.door-featured {
  border-color: var(--accent-border);
  background: linear-gradient(180deg, rgba(255, 140, 66, 0.1), var(--bg-card) 42%);
}

.door-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.3rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.door-badge.accent {
  color: #111;
  background: var(--accent);
  border-color: transparent;
}

.door-where {
  margin: -0.25rem 0 0;
  font-size: 0.9rem;
  color: var(--accent-soft);
  font-weight: 500;
}

.door-desc {
  margin: 0;
  color: var(--text-muted);
  flex-grow: 0;
}

.price-list {
  list-style: none;
  margin: 0.5rem 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--border-subtle);
}

.price-list li:last-child {
  border-bottom: 1px solid var(--border-subtle);
}

.price-label {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  color: var(--text);
  font-weight: 500;
}

.price-label small {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.4;
}

.price-value {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: var(--text);
}

.price-value .per {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.door-meta {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.door .btn {
  margin-top: auto;
}

/* ---------- Results ---------- */
.results {
  background: linear-gradient(180deg, transparent, rgba(255, 140, 66, 0.03), transparent);
}

.quotes {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-bottom: 1.5rem;
}

@media (min-width: 700px) {
  .quotes {
    grid-template-columns: repeat(3, 1fr);
  }
}

.quote {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text);
}

.quote footer {
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

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

@media (min-width: 700px) {
  .highlights {
    grid-template-columns: repeat(3, 1fr);
  }
}

.highlight {
  text-align: center;
  padding: 1.5rem 1.25rem;
}

.highlight-stat {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-dawn);
  text-shadow: 0 0 28px rgba(91, 164, 217, 0.35);
}

.highlight-label {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .about-grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }
}

.about-copy p {
  color: var(--text-muted);
  margin: 0 0 1.15rem;
}

.about-faith {
  color: var(--text) !important;
  padding: 1rem 1.15rem;
  background: var(--accent-dim);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.about-faith em {
  color: var(--accent-soft);
  font-style: italic;
}

.about-facts ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-facts li {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.975rem;
}

.about-facts li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.about-facts strong {
  color: var(--text);
}

/* ---------- Final CTA ---------- */
.cta-final {
  padding-bottom: 5.5rem;
}

.cta-inner {
  max-width: 34rem;
  padding: 3rem 1.5rem;
  background:
    radial-gradient(ellipse at top, rgba(255, 140, 66, 0.15), transparent 55%),
    var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
}

.cta-inner .section-lead {
  margin-inline: auto;
}

.cta-note {
  margin: 1.5rem 0 0;
  font-size: 0.95rem;
  color: var(--text-dim);
}

.cta-note strong {
  color: var(--accent-soft);
  letter-spacing: 0.04em;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 2.5rem 0 2rem;
  background: #070708;
}

.footer-inner {
  display: grid;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.footer-brand p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--accent-soft);
}

.copyright {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ---------- Privacy page ---------- */
.page-privacy .section {
  padding-top: 3rem;
}

.prose {
  max-width: 40rem;
  color: var(--text-muted);
}

.prose h1 {
  color: var(--text);
  margin-bottom: 0.5rem;
}

.prose h2 {
  font-family: var(--font);
  font-size: 1.25rem;
  margin-top: 2rem;
  color: var(--text);
}

.prose p {
  margin: 0 0 1rem;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---- Results story cards ---- */
.story-grid {
  display: grid;
  gap: 1.75rem;
  margin-top: 2rem;
}

@media (min-width: 900px) {
  .story-grid {
    gap: 2.25rem;
  }
}

.story-card {
  display: grid;
  gap: 1.25rem;
  overflow: hidden;
  padding: 0;
}

@media (min-width: 800px) {
  .story-card {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: stretch;
  }
  .story-card:nth-child(even) .story-media {
    order: 2;
  }
  .story-card:nth-child(even) .story-body {
    order: 1;
  }
}

.story-media {
  margin: 0;
  background: #000;
  min-height: 280px;
}

.story-media > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 520px;
}

.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}

.ba-pair figure {
  margin: 0;
  position: relative;
  background: #000;
}

.ba-pair img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 480px;
}

.ba-pair figcaption {
  position: absolute;
  left: 0.6rem;
  bottom: 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.55);
  padding: 0.25rem 0.45rem;
  border-radius: 4px;
}

.story-body {
  padding: 1.35rem 1.5rem 1.6rem;
}

.story-stat {
  margin: 0 0 0.35rem;
  color: var(--accent-soft);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.story-body h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
}

.story-blurb {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.story-body blockquote {
  margin: 0;
  padding: 0.85rem 0 0;
  border-top: 1px solid var(--border);
}

.story-body blockquote p {
  margin: 0;
  font-style: italic;
  color: var(--text);
}

.story-body blockquote footer {
  margin-top: 0.5rem;
  color: var(--text-dim);
  font-size: 0.9rem;
  font-style: normal;
}

.quotes-secondary {
  margin-top: 1.75rem;
}

.section-cta {
  margin-top: 2rem;
  text-align: center;
}

.check-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  color: var(--text-muted);
}

.check-list li {
  position: relative;
  padding-left: 1.35rem;
  margin: 0.4rem 0;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
}

.about-grid-photo {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 800px) {
  .about-grid-photo {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }
}

.about-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-photo-circle {
  width: min(100%, 28rem);
  margin-inline: auto;
  border: none;
  overflow: visible;
  background: transparent;
  justify-self: center;
}

.about-photo-circle img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 30%;
  border: 3px solid rgba(142, 197, 232, 0.6);
  box-shadow:
    0 0 0 4px rgba(255, 140, 66, 0.2),
    0 12px 32px rgba(0, 0, 0, 0.45);
  background: #1a1210;
}

@media (min-width: 800px) {
  .about-grid-photo {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2rem;
  }
  .about-photo-circle {
    width: min(100%, 26rem);
    justify-self: start;
  }
}

.testimonial-featured {
  display: grid;
  gap: 1.25rem;
  padding: 1.25rem;
  margin-top: 1.5rem;
  align-items: center;
}
@media (min-width: 720px) {
  .testimonial-featured {
    grid-template-columns: 200px 1fr;
    padding: 1.5rem 1.75rem;
  }
}
.testimonial-photo {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  max-width: 220px;
}
.testimonial-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}
.testimonial-copy blockquote {
  margin: 0;
}
.testimonial-copy blockquote p {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.55;
}
.testimonial-copy footer {
  margin-top: 0.75rem;
  color: var(--text-dim);
}
.quotes-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}
@media (min-width: 800px) {
  .quotes-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.highlights-compact {
  margin-top: 1.5rem;
}


/* ========== Sunrise art & motion ========== */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(26, 15, 24, 0.2) 0%, transparent 40%),
    linear-gradient(180deg, #120c14 0%, #0a0a0b 70%);
  border-bottom: 1px solid rgba(255, 140, 66, 0.15);
}

.hero-sky {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  left: 50%;
  bottom: -20%;
  width: min(900px, 140vw);
  height: min(520px, 70vw);
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(255, 184, 87, 0.45) 0%, rgba(255, 94, 58, 0.28) 35%, rgba(255, 94, 58, 0) 70%);
  filter: blur(8px);
  animation: glowPulse 8s ease-in-out infinite alternate;
}

.hero-rays {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}




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

.hero .eyebrow {
  color: var(--accent-dawn);
}

.hero .tagline {
  color: var(--accent-soft);
}

.band-divider {
  line-height: 0;
  margin: -0.5rem 0 0.5rem;
  opacity: 0.9;
}

.band-divider svg {
  width: 100%;
  height: 48px;
  display: block;
}

.logo-mark {
  background: linear-gradient(135deg, var(--accent-hot) 0%, var(--accent) 45%, var(--accent-soft) 100%);
  color: #1a0a05;
  box-shadow: 0 4px 16px rgba(255, 94, 58, 0.3);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-hot) 0%, var(--accent) 45%, var(--accent-soft) 100%);
  color: #1a0a05;
  border: none;
  box-shadow: 0 8px 28px rgba(255, 94, 58, 0.35);
}

.btn-primary:hover {
  filter: brightness(1.06);
  color: #1a0a05;
}

.btn-ghost {
  border-color: rgba(255, 184, 87, 0.45);
  color: var(--accent-dawn);
}

.btn-ghost:hover {
  background: rgba(255, 140, 66, 0.12);
  border-color: var(--accent-soft);
}

.door.card,
.quote.card {
  border-color: rgba(255, 140, 66, 0.18);
  background:
    linear-gradient(165deg, rgba(255, 140, 66, 0.07) 0%, transparent 42%),
    var(--bg-card);
}

.door-featured {
  border-color: rgba(255, 184, 87, 0.45);
  box-shadow: 0 0 0 1px rgba(255, 140, 66, 0.12), 0 16px 40px rgba(0, 0, 0, 0.35);
}

.door-badge.accent,
.door-badge {
  background: rgba(255, 140, 66, 0.14);
  color: var(--accent-soft);
}

.section-header .eyebrow {
  color: var(--accent-soft);
}

.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 120% at 50% 120%, rgba(255, 122, 60, 0.35), transparent 55%),
    linear-gradient(180deg, #161018 0%, #0a0a0b 100%);
  border-top: 1px solid rgba(255, 140, 66, 0.25);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% -10%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(255, 200, 87, 0.2), transparent 65%);
  pointer-events: none;
}

/* Action chevrons under coaching cards */
.doors {
  position: relative;
}

.door::after {
  content: "";
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 36px;
  height: 36px;
  opacity: 0.35;
  background:
    linear-gradient(135deg, transparent 40%, var(--accent-soft) 40%, var(--accent-soft) 48%, transparent 48%),
    linear-gradient(135deg, transparent 55%, var(--accent-hot) 55%, var(--accent-hot) 63%, transparent 63%);
  pointer-events: none;
}

.door {
  position: relative;
}

@keyframes glowPulse {
  from { opacity: 0.75; transform: translateX(-50%) scale(1); }
  to { opacity: 1; transform: translateX(-50%) scale(1.06); }
}


@media (prefers-reduced-motion: reduce) {
  .hero-glow {
    animation: none;
  }
}

.eyebrow-mark {
  display: inline-block;
  width: 0.85em;
  height: 0.85em;
  margin-right: 0.45rem;
  vertical-align: -0.05em;
  background: linear-gradient(135deg, var(--accent-hot), var(--accent-soft));
  clip-path: polygon(0 40%, 55% 40%, 45% 0, 100% 50%, 55% 100%, 45% 60%, 0 60%);
  box-shadow: 0 0 12px rgba(255, 122, 60, 0.5);
}

.quote.card {
  position: relative;
  padding-left: 1.5rem;
}

.quote.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.25rem;
  bottom: 1.25rem;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--accent-hot), var(--accent-soft));
}

.site-header {
  border-bottom-color: rgba(255, 140, 66, 0.12);
}


/* Mission statement */
.mission-label {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dawn);
}

.hero-mission {
  margin: 0 0 1.25rem;
  max-width: 40rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.mission-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.mission-pillars li {
  padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-dawn);
  background: rgba(255, 140, 66, 0.12);
  border: 1px solid rgba(255, 184, 87, 0.35);
  border-radius: 999px;
}


/* Hero photo (option A mountain sunrise) */
.hero {
  min-height: 0;
  display: flex;
  align-items: flex-end;
  padding: 3rem 0 2.5rem;
  background: #0a0a0b;
  border-bottom: 1px solid rgba(255, 140, 66, 0.2);
}

.hero-sky {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-photo-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 8, 10, 0.72) 0%, rgba(10, 8, 10, 0.45) 38%, rgba(10, 8, 10, 0.18) 68%, rgba(10, 8, 10, 0.08) 100%),
    linear-gradient(180deg, rgba(10, 10, 11, 0.35) 0%, rgba(10, 10, 11, 0.12) 40%, rgba(10, 10, 11, 0.55) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: min(56rem, 100%);
  width: 100%;
  padding-bottom: 0.5rem;
}

/* Hide leftover ray/glow rules if present */
.hero-glow,
.hero-rays {
  display: none !important;
}


/* Hero copy readability + sky blue accents */
.hero-copy {
  position: relative;
  max-width: min(56rem, 100%);
  width: 100%;
  padding: 1.35rem 1.5rem 1.4rem;
  margin: 0 0 1.1rem;
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse 55% 80% at 100% 0%, rgba(91, 164, 217, 0.14), transparent 55%),
    radial-gradient(ellipse 40% 60% at 0% 100%, rgba(255, 140, 66, 0.10), transparent 50%),
    rgba(8, 10, 14, 0.78);
  border: 1px solid rgba(255, 184, 87, 0.32);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-copy .eyebrow {
  color: var(--sky-blue-soft);
}

.hero-copy .mission-label {
  color: var(--accent-dawn);
}

.hero-copy #hero-heading,
.hero-copy h1 {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.hero-copy .hero-mission {
  color: rgba(242, 242, 243, 0.94);
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 0.7rem 0 0.75rem;
  max-width: none;
}

.hero-copy-intro .eyebrow {
  margin-bottom: 0.45rem;
}

.hero-copy-intro .mission-label {
  margin-bottom: 0.35rem;
}

.hero-copy-intro h1 {
  margin-bottom: 0;
}

.hero-copy .tagline {
  margin-bottom: 0;
  color: var(--sky-blue-soft);
}

.mission-pillars li {
  color: var(--sky-blue-soft);
  background: var(--sky-blue-dim);
  border-color: var(--sky-blue-border);
}

.logo-mark {
  background: linear-gradient(135deg, var(--accent-hot) 0%, var(--accent) 45%, var(--accent-soft) 100%);
  color: #1a0a05;
  box-shadow: 0 4px 16px rgba(255, 94, 58, 0.3);
}

.site-nav a:hover {
  color: var(--sky-blue-soft);
}

.band-divider svg path {
  stroke: url(#bandGrad);
}

.door-badge {
  color: var(--sky-blue-soft);
  background: var(--sky-blue-dim);
}

.quote footer {
  color: var(--sky-blue-soft);
}

.section-header .eyebrow {
  color: var(--sky-blue-soft);
}

.highlight-stat {
  color: var(--sky-blue-soft);
  text-shadow: 0 0 28px rgba(91, 164, 217, 0.35);
}

.cta-band {
  border-top-color: rgba(91, 164, 217, 0.28);
}

.site-header {
  border-bottom-color: rgba(91, 164, 217, 0.18);
}

.btn-ghost {
  border-color: rgba(142, 197, 232, 0.45);
  color: var(--sky-blue-soft);
}

.btn-ghost:hover {
  background: var(--sky-blue-dim);
  border-color: var(--sky-blue-soft);
  color: #fff;
}

a {
  color: var(--sky-blue-soft);
}




/* Face + headline row — fills the box */
.hero-copy-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem 1.1rem;
  align-items: center;
}

.hero-face {
  width: clamp(8.25rem, 18vw, 11.5rem);
  height: clamp(8.25rem, 18vw, 11.5rem);
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
  border: 3px solid rgba(142, 197, 232, 0.6);
  box-shadow:
    0 0 0 4px rgba(255, 140, 66, 0.2),
    0 12px 32px rgba(0, 0, 0, 0.45);
  display: block;
  background: #1a1210;
  flex-shrink: 0;
}

.mission-pillars {
  margin-bottom: 0.65rem;
  gap: 0.4rem;
}

@media (max-width: 640px) {
  .hero-copy {
    padding: 1.05rem 1rem 1.15rem;
  }
  .hero-copy-top {
    /* Keep face beside the headline inside the mission box */
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.55rem 0.7rem;
  }
  .hero-copy-intro h1,
  .hero-copy #hero-heading {
    font-size: clamp(1.5rem, 6.8vw, 1.95rem);
    line-height: 1.12;
  }
  .hero-face {
    order: 0;
    width: clamp(7.25rem, 28vw, 8.5rem);
    height: clamp(7.25rem, 28vw, 8.5rem);
    margin-top: 0;
    justify-self: end;
    align-self: center;
  }
  .hero-copy .hero-mission {
    font-size: 0.98rem;
    line-height: 1.55;
  }
}

@media (max-width: 380px) {
  .hero-face {
    width: 6.5rem;
    height: 6.5rem;
  }
  .hero-copy {
    padding: 0.95rem 0.85rem 1.05rem;
  }
}


.mission-bumper {
  display: inline-block;
  margin: 0 0 0.65rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dawn);
  background: rgba(255, 140, 66, 0.14);
  border: 1px solid rgba(255, 184, 87, 0.4);
  border-radius: 999px;
}

.footer-verse {
  width: 100%;
  max-width: 40rem;
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-muted);
}

.site-footer .footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
}

.site-footer .footer-verse {
  flex: 1 1 100%;
}


.price-save {
  display: block;
  margin-top: 0.2rem;
  color: var(--accent-dawn) !important;
  font-weight: 600 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.01em;
}

.price-deal {
  margin: 0.85rem 0 0.75rem;
  padding: 0.7rem 0.85rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--text);
  background: rgba(255, 140, 66, 0.1);
  border: 1px solid rgba(255, 184, 87, 0.28);
  border-radius: var(--radius-sm);
}


/* Annual Concierge (whale) */
.door-concierge {
  margin-bottom: 1.75rem;
  padding: 1.75rem 1.75rem 1.6rem;
  border-color: rgba(255, 184, 87, 0.45);
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(91, 164, 217, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 70% at 0% 100%, rgba(255, 140, 66, 0.12), transparent 50%),
    linear-gradient(165deg, rgba(255, 140, 66, 0.1) 0%, var(--bg-card) 45%);
  box-shadow: 0 0 0 1px rgba(255, 140, 66, 0.1), 0 18px 48px rgba(0, 0, 0, 0.35);
}

.door-concierge::after {
  display: none;
}

.concierge-top {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 800px) {
  .concierge-top {
    grid-template-columns: minmax(0, 1.35fr) minmax(14rem, 0.85fr);
    gap: 2rem;
    align-items: center;
  }
}

.concierge-price {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  background: rgba(8, 10, 14, 0.55);
  border: 1px solid rgba(142, 197, 232, 0.28);
}

.concierge-amount {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.02em;
}

.concierge-amount .per {
  margin-left: 0.25rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--sky-blue-soft);
}

.concierge-note {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.concierge-save {
  margin: 0 0 0.35rem !important;
}

.plans-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1.25rem;
  color: var(--text-dim);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plans-divider::before,
.plans-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(142, 197, 232, 0.35), transparent);
}

.plans-divider span {
  white-space: nowrap;
}


.concierge-price-list {
  margin: 0 0 0.5rem;
  gap: 0.65rem;
}

.concierge-price-list li {
  align-items: flex-start;
}

.concierge-price-list .price-value {
  font-size: 1.15rem;
  white-space: nowrap;
}

.concierge-price .concierge-note {
  margin: 0.25rem 0 0.5rem;
}


/* Testimonial circular faces (match hero ring language) */
.quote-by {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
}

.quote-face,
.quote-initial {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center center;
  border: 2px solid rgba(142, 197, 232, 0.55);
  box-shadow:
    0 0 0 3px rgba(255, 140, 66, 0.22),
    0 8px 20px rgba(0, 0, 0, 0.35);
  background: #1a1210;
}

.quote-initial {
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f4e4d4;
  background: linear-gradient(145deg, #3a2a28, #1a1210);
}

.quote footer.quote-by {
  color: var(--accent);
}


/* Testimonials carousel */
.quotes-carousel {
  margin: 1.25rem 0 1.5rem;
  max-width: min(48rem, 100%);
  margin-left: auto;
  margin-right: auto;
}

.quotes-carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius);
  /* Soft edge fade so peeks stay faint */
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 7%,
    #000 93%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 7%,
    #000 93%,
    transparent 100%
  );
}

.quotes-track {
  display: flex;
  gap: 0.85rem;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.quotes-carousel .quote.card {
  flex: 0 0 82%;
  min-width: 82%;
  margin: 0;
  min-height: 14rem;
  box-sizing: border-box;
  opacity: 0.32;
  transform: scale(0.96);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.quotes-carousel .quote.card.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

@media (max-width: 560px) {
  .quotes-carousel .quote.card {
    flex-basis: 86%;
    min-width: 86%;
  }
}

.quotes-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.1rem;
}

.quotes-nav {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 1px solid rgba(142, 197, 232, 0.45);
  background: rgba(8, 10, 14, 0.72);
  color: var(--sky-blue-soft);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.quotes-nav:hover,
.quotes-nav:focus-visible {
  background: var(--sky-blue-dim);
  border-color: var(--sky-blue-soft);
  color: #fff;
  outline: none;
}

.quotes-dots {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.quotes-dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: rgba(142, 197, 232, 0.28);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.quotes-dot[aria-selected="true"] {
  background: var(--sky-blue-soft);
  transform: scale(1.25);
  box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.22);
}

.quotes-dot:focus-visible {
  outline: 2px solid var(--sky-blue-soft);
  outline-offset: 2px;
}

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

@media (prefers-reduced-motion: reduce) {
  .quotes-track {
    transition: none;
  }
  .quotes-carousel .quote.card {
    transition: none;
  }
}
