/* The Open Ceiling — site styles */
:root {
  /* Type 3 Colors.png — clean professional subset
     Neutrals: ivory / cream / tan / espresso
     Accent: rich burgundy (row 2); soft forest reserved for rare emphasis */
  --bone: #fbf5e6;       /* ivory */
  --bone-deep: #f3e6cf;  /* soft cream (wheat family, quieter for sections) */
  --ink: #4a2c0b;        /* espresso brown */
  --ink-soft: #6b4423;   /* medium brown */
  --muted: #8a7355;      /* warm taupe */
  --line: #e6d3b5;       /* tan line */
  --accent: #a01828;     /* rich red */
  --accent-deep: #8b0000;/* burgundy — CTAs / links */
  --forest: #006400;     /* Type 3 green — reserved */
  --tan: #d2b48c;
  --white: #fffaf2;
  --max: 68rem;
  --content: 40rem;
  --serif: "Cormorant Garamond", "Times New Roman", Times, serif;
  --sans: "Source Sans 3", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

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

.wrap-narrow {
  width: min(100% - 2.5rem, var(--content));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bone) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.wordmark {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.1;
}

.wordmark span {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-top: 0.15rem;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.35rem;
}

.nav a {
  font-size: 0.92rem;
  color: var(--ink-soft);
  text-decoration: none;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--accent-deep);
  border-radius: 999px;
  color: var(--accent-deep) !important;
  text-decoration: none !important;
  font-size: 0.88rem;
}

.nav-cta:hover {
  background: var(--accent-deep);
  color: var(--white) !important;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 0.4rem;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.1rem;
  height: 1.5px;
  background: var(--ink);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 1.1rem;
  height: 1.5px;
  background: var(--ink);
}

.menu-toggle span::before {
  top: -5px;
}

.menu-toggle span::after {
  top: 5px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.85rem;
  padding: 0 0 1.25rem;
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: var(--accent-deep);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--ink);
  color: var(--bone);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* Hero */
.hero {
  padding: 3.5rem 0 3.5rem;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-media {
  margin: 0;
  border-radius: 0.85rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
  box-shadow: 0 18px 40px color-mix(in srgb, var(--ink) 12%, transparent);
}

.hero-media img {
  width: 100%;
  height: 100%;
  max-height: 34rem;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: contrast(1.02) saturate(0.15);
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0 0 1.25rem;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.8vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 1.25rem;
  max-width: 14ch;
}

.hero-lead {
  font-size: 1.125rem;
  color: var(--ink-soft);
  max-width: 36rem;
  margin: 0;
}

@media (min-width: 900px) {
  .hero {
    padding: 5rem 0 4.5rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3rem;
  }

  .hero-media img {
    min-height: 28rem;
  }
}

.proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.65rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

/* Sections */
.section {
  padding: 4.25rem 0;
  border-bottom: 1px solid var(--line);
}

.section h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  margin: 0 0 1.25rem;
}

.section p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.section p:last-child {
  margin-bottom: 0;
}

.stack {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0 1.5rem;
  padding: 0;
  list-style: none;
}

.stack li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

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

.checklist {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 720px) {
  .checklist {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.checklist h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  margin: 0 0 0.85rem;
}

.checklist ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.checklist li {
  padding-left: 1.15rem;
  position: relative;
  color: var(--ink-soft);
}

.checklist .for li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--accent-deep);
}

.checklist .not li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--muted);
}

/* Method steps */
.steps {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 1.25rem 1.15rem;
}

.step-num {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 0.55rem;
}

.step h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 0.45rem;
}

.step p {
  margin: 0;
  font-size: 0.95rem;
}

.methods-line {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* Offer band — deep espresso (Type 3 rich brown) */
.offer {
  background: var(--ink);
  color: var(--bone);
  border-bottom: none;
}

.offer .eyebrow {
  color: color-mix(in srgb, var(--bone) 72%, #d2b48c);
}

.offer h2,
.offer h3 {
  color: var(--bone);
}

.offer p,
.offer li {
  color: color-mix(in srgb, var(--bone) 82%, transparent);
}

.offer .stack li::before {
  background: color-mix(in srgb, var(--bone) 55%, transparent);
}

.offer-panel {
  display: grid;
  gap: 2rem;
}

@media (min-width: 860px) {
  .offer-panel {
    grid-template-columns: 1.4fr 1fr;
    align-items: end;
  }
}

.price-card {
  background: color-mix(in srgb, var(--white) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--bone) 22%, transparent);
  border-radius: 0.85rem;
  padding: 1.5rem;
}

.price-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--bone) 65%, transparent);
  margin: 0 0 0.35rem;
}

.price {
  font-family: var(--serif);
  font-size: 2.75rem;
  font-weight: 500;
  margin: 0 0 0.35rem;
  color: var(--bone);
}

.price-note {
  font-size: 0.9rem;
  margin: 0 0 1.25rem;
  color: color-mix(in srgb, var(--bone) 70%, transparent);
}

.offer .btn-primary {
  background: var(--bone);
  color: var(--ink);
  width: 100%;
}

.offer .btn-primary:hover {
  background: var(--white);
  color: var(--accent-deep);
}

/* About */
.about-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .about-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
  }
}

.portrait {
  aspect-ratio: 4 / 5;
  border-radius: 0.85rem;
  background:
    linear-gradient(
      160deg,
      color-mix(in srgb, var(--accent-deep) 28%, var(--bone-deep)),
      color-mix(in srgb, #d2b48c 55%, var(--bone))
    );
  border: 1px solid var(--line);
  display: grid;
  place-items: end stretch;
  overflow: hidden;
}

.portrait-caption {
  padding: 1rem 1.1rem;
  background: color-mix(in srgb, var(--ink) 72%, transparent);
  color: var(--bone);
  font-size: 0.9rem;
}

.portrait-caption strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.15rem;
}

/* Mind-shift audio */
.free {
  background: var(--bone-deep);
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  padding: 0.85rem 1rem;
}

.faq-item summary {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent-deep);
  font-family: var(--sans);
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0.75rem 0 0.15rem;
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 4.5rem 0;
}

.final-cta h2 {
  max-width: 16ch;
  margin-inline: auto;
}

.final-cta .hero-lead {
  margin-inline: auto;
}

.final-cta .btn-row {
  justify-content: center;
}

.micro {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 2rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
}

.footer-brand span {
  display: block;
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

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

.footer-nav a {
  color: var(--ink-soft);
  text-decoration: none;
}

.disclaimer {
  font-size: 0.8rem;
  line-height: 1.5;
  max-width: 42rem;
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

/* Inner pages */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.85rem);
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.page-body {
  padding: 2.75rem 0 4rem;
}

.form {
  display: grid;
  gap: 1rem;
  max-width: 28rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.form input,
.form textarea,
.form select {
  font: inherit;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  padding: 0.7rem 0.8rem;
}

.form textarea {
  min-height: 7rem;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.25rem 0 0;
}

.calendly-inline-widget {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

/* Insights */
.insights-list {
  display: grid;
  gap: 1.25rem;
  max-width: 40rem;
}

.insight-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 1.35rem 1.4rem;
}

.insight-card h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.55rem;
  margin: 0.25rem 0 0.55rem;
  line-height: 1.25;
}

.insight-card h2 a {
  color: var(--ink);
  text-decoration: none;
}

.insight-card h2 a:hover {
  color: var(--accent-deep);
}

.insight-date {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.insight-card p {
  margin: 0 0 0.75rem;
  color: var(--ink-soft);
}

.insight-more {
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--accent-deep);
}

.insights-empty {
  max-width: 36rem;
  padding: 1.5rem 0 1rem;
}

.insights-empty h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.85rem;
  margin: 0 0 0.75rem;
}

.insight-body h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.45rem;
  margin: 1.75rem 0 0.65rem;
}

.insight-body p {
  color: var(--ink-soft);
}

/* Product funnel */
.offer-funnel {
  display: grid;
  gap: 1.15rem;
  max-width: 52rem;
}

@media (min-width: 800px) {
  .offer-funnel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.offer-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 1.4rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.offer-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.45rem;
  margin: 0;
  color: var(--ink);
}

.offer-card p {
  margin: 0;
  color: var(--ink-soft);
  flex: 1;
}

.offer-price {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin: 0;
  font-weight: 600;
}

.offer-card-featured {
  border-color: color-mix(in srgb, var(--accent-deep) 45%, var(--line));
  background: color-mix(in srgb, var(--bone) 65%, var(--white));
}

.offer-card .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.offer-card .btn[aria-disabled="true"] {
  opacity: 0.55;
  pointer-events: none;
}

.home-funnel {
  background: var(--bone-deep);
}

@media (min-width: 860px) {
  .nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  .hero {
    padding: 6rem 0 5rem;
  }
}
