:root {
  --bg: #f6f4ef;
  --surface: rgba(255, 252, 247, 0.9);
  --surface-strong: #fffdf9;
  --ink: #1f2824;
  --muted: #5d6b65;
  --line: rgba(31, 40, 36, 0.1);
  --line-strong: rgba(31, 40, 36, 0.18);
  --sage: #5e7c72;
  --sage-deep: #34544b;
  --sand: #e8dfd0;
  --amber: #bf7d3d;
  --amber-deep: #905922;
  --shadow: 0 24px 60px rgba(55, 48, 33, 0.1);
  --shadow-soft: 0 14px 32px rgba(55, 48, 33, 0.08);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --frame: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Aptos", "Segoe UI Variable Text", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(94, 124, 114, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(191, 125, 61, 0.14), transparent 24%),
    linear-gradient(180deg, #fbfaf7 0%, var(--bg) 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a,
button {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(100% - 24px, var(--frame));
  margin: 0 auto;
  padding: 20px 0 48px;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.74);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.section {
  margin-top: 22px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-lg);
  background: var(--surface);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  gap: 24px;
}

.personalization-section {
  padding: 20px;
}

.personalization-card {
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(94, 124, 114, 0.18);
  background:
    radial-gradient(circle at top right, rgba(94, 124, 114, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 248, 0.98));
  box-shadow: var(--shadow-soft);
}

.hero-copy,
.hero-card,
.info-card,
.session-card,
.pricing-card,
.booking-panel {
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.hero-copy {
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(191, 125, 61, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 244, 0.98));
}

.hero-card {
  padding: 28px;
  align-self: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--sage-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber), var(--sage));
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  text-wrap: balance;
}

h1,
h2,
.brand,
.price {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: 11ch;
  font-size: clamp(2.9rem, 8vw, 5.2rem);
  letter-spacing: -0.05em;
}

h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 58ch;
  margin-top: 18px;
  font-size: 1.06rem;
}

.result-chip {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 22px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(94, 124, 114, 0.1);
  color: var(--sage-deep);
  font-size: 0.94rem;
  font-weight: 700;
}

.result-chip strong {
  color: var(--ink);
}

.personalization-label {
  margin-top: 4px;
  color: var(--sage-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.personalization-value {
  max-width: none;
  margin-top: 8px;
  font-size: clamp(2rem, 5vw, 3rem);
}

.personalization-copy {
  max-width: 56ch;
  margin-top: 12px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  min-height: 52px;
  padding: 14px 22px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fffdfa;
  background: linear-gradient(135deg, #8f5220, #6f3910);
  box-shadow: 0 18px 34px rgba(111, 57, 16, 0.28);
}

.button-secondary {
  color: var(--sage-deep);
  background: #eef3f1;
  border-color: rgba(52, 84, 75, 0.12);
}

.button-ghost {
  color: var(--ink);
  background: #f4ede2;
  border-color: rgba(31, 40, 36, 0.08);
}

.hero-actions .button-primary,
.site-header .button-secondary {
  min-width: 220px;
}

.card-label,
.plan-name,
.booking-plan-label {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-label,
.booking-plan-label {
  color: var(--sage-deep);
}

.feature-stack,
.plan-points {
  margin: 16px 0 0;
  padding-left: 18px;
}

.feature-stack li,
.plan-points li {
  margin-bottom: 10px;
  color: var(--ink);
  line-height: 1.55;
}

.section-heading {
  max-width: 60ch;
  margin-bottom: 20px;
}

.section-actions {
  margin-top: 16px;
}

.section-heading h2 {
  margin-bottom: 12px;
}

.problem-grid,
.session-grid,
.pricing-grid {
  display: grid;
  gap: 16px;
}

.info-card,
.session-card,
.pricing-card {
  padding: 24px;
}

.session-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(94, 124, 114, 0.1);
  color: var(--sage-deep);
  font-weight: 800;
}

.pricing-card {
  position: relative;
  display: grid;
  gap: 14px;
  align-content: start;
}

.pricing-card-basic {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 247, 0.98));
  border-color: rgba(52, 84, 75, 0.12);
}

.plan-kicker {
  color: var(--sage-deep);
  font-size: 0.92rem;
  font-weight: 700;
}

.pricing-card-featured {
  background:
    radial-gradient(circle at top right, rgba(191, 125, 61, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(255, 247, 238, 0.98));
  border: 1px solid rgba(191, 125, 61, 0.5);
  transform: translateY(-6px) scale(1.05);
  box-shadow:
    0 26px 54px rgba(144, 89, 34, 0.18),
    0 0 0 1px rgba(191, 125, 61, 0.18);
}

.featured-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(191, 125, 61, 0.14);
  color: var(--amber-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  color: var(--ink);
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.price-currency {
  font-size: 0.95rem;
  font-family: "Aptos", "Segoe UI Variable Text", "Segoe UI", sans-serif;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-summary {
  color: var(--ink);
  font-weight: 700;
  font-size: 1.02rem;
}

.featured-plan-note {
  padding: 14px 16px;
  border: 1px solid rgba(191, 125, 61, 0.24);
  border-radius: 18px;
  background: rgba(191, 125, 61, 0.12);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.6;
}

.report-trigger-featured {
  justify-self: start;
  border-color: rgba(191, 125, 61, 0.24);
  animation: pulse-report 1.8s ease-in-out infinite;
}

.plan-microcopy {
  color: var(--amber-deep);
  font-size: 0.88rem;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-strong);
}

.faq-item summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 700;
  list-style: none;
}

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

.faq-item p {
  margin-top: 12px;
}

.booking-section {
  scroll-margin-top: 100px;
}

.booking-heading {
  text-align: center;
  margin-inline: auto;
}

.booking-heading h2 {
  margin-inline: auto;
}

.booking-panel {
  padding: 24px;
}

.booking-meta {
  margin-bottom: 18px;
}

.booking-meta-inline h3 {
  margin: 6px 0;
}

.booking-toggle {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 18px;
}

.toggle-button {
  appearance: none;
  min-height: 50px;
  padding: 12px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.toggle-button.is-active {
  background: linear-gradient(135deg, var(--sage-deep), var(--sage));
  border-color: transparent;
  color: #fff;
}

.embed-stack {
  display: grid;
  gap: 0;
}

.embed-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
}

.embed-card[hidden] {
  display: none;
}

.embed-card-featured {
  border-color: rgba(191, 125, 61, 0.4);
  box-shadow:
    0 18px 42px rgba(111, 57, 16, 0.08),
    0 0 0 1px rgba(191, 125, 61, 0.14);
}

.embed-card-head {
  margin-bottom: 14px;
}

.embed-card-head h3 {
  margin: 6px 0;
}

.tidycal-embed-shell {
  width: 100%;
  min-height: 760px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}

#tidycal-embed {
  min-height: 760px;
}

.info-card h3,
.session-card p {
  max-width: 26ch;
}

.info-card h3 {
  font-size: 1.16rem;
  line-height: 1.35;
  margin-top: 16px;
}

.report-modal[hidden] {
  display: none;
}

.report-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 20px;
}

.report-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 22, 0.58);
  backdrop-filter: blur(6px);
}

.report-dialog {
  position: relative;
  width: min(100%, 920px);
  max-height: min(90vh, 980px);
  overflow: auto;
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(191, 125, 61, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(252, 249, 244, 0.99));
  box-shadow: 0 30px 80px rgba(18, 23, 21, 0.24);
}

.report-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 40, 36, 0.08);
  color: transparent;
  font-size: 0;
  cursor: pointer;
}

.report-close::before {
  content: "\00D7";
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
}

.report-header {
  margin-top: 8px;
  margin-bottom: 22px;
}

.report-body {
  display: grid;
  gap: 18px;
}

.report-section {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
}

.report-section h3,
.report-column h4 {
  margin-bottom: 10px;
}

.report-summary-grid,
.report-columns,
.priority-grid {
  display: grid;
  gap: 14px;
}

.report-summary-card,
.report-column,
.timeline-item {
  padding: 16px;
  border-radius: 18px;
  background: rgba(246, 243, 236, 0.9);
  border: 1px solid rgba(31, 40, 36, 0.08);
}

.report-summary-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--sage-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-summary-card strong,
.timeline-item strong,
.priority-pill {
  color: var(--ink);
}

.report-summary-card-wide {
  grid-column: 1 / -1;
}

.report-list {
  margin: 12px 0 0;
  padding-left: 18px;
}

.report-list li {
  margin-bottom: 8px;
  color: var(--ink);
  line-height: 1.55;
}

.priority-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: 12px;
}

.priority-pill {
  padding: 14px 16px;
  border-radius: 999px;
  background: rgba(94, 124, 114, 0.12);
  text-align: center;
  font-weight: 800;
}

.timeline-list {
  display: grid;
  gap: 12px;
}

.timeline-item p {
  margin-top: 6px;
}

.report-section-highlight {
  background:
    radial-gradient(circle at top right, rgba(94, 124, 114, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(247, 250, 248, 0.98), rgba(251, 249, 244, 0.98));
}

.report-disclaimer {
  margin-top: 14px;
  font-size: 0.92rem;
}

.report-example-note {
  margin: 0 4px 4px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.7;
}

@keyframes pulse-report {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(191, 125, 61, 0.16);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(191, 125, 61, 0);
    transform: scale(1.03);
  }
}

@media (min-width: 780px) {
  .hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    align-items: stretch;
  }

  .problem-grid,
  .session-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .report-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 779px) {
  .site-header {
    border-radius: 24px;
    align-items: stretch;
    flex-direction: column;
  }

  .site-header .button {
    width: 100%;
  }

  .pricing-card-featured {
    transform: none;
  }

  .report-dialog {
    width: min(100%, 760px);
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 16px, var(--frame));
    padding-top: 12px;
    padding-bottom: 24px;
  }

  .section,
  .hero-copy,
  .hero-card,
  .info-card,
  .session-card,
  .pricing-card,
  .booking-panel {
    border-radius: 22px;
  }

  .section,
  .hero-copy,
  .hero-card,
  .info-card,
  .session-card,
  .pricing-card,
  .booking-panel {
    padding: 32px 20px;
  }

  h1 {
    font-size: 2.55rem;
    max-width: 10ch;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-actions,
  .booking-toggle {
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 56px;
  }

  .pricing-grid {
    display: flex;
    flex-direction: column;
  }

  .pricing-card-featured {
    order: -1;
    margin-bottom: 8px;
  }

  .hero {
    gap: 16px;
  }

  .hero-text {
    max-width: 32ch;
  }

  .tidycal-embed-shell,
  .tidycal-embed {
    height: 700px !important;
  }

  .report-trigger-featured {
    width: 100%;
    justify-self: stretch;
  }

  .report-modal {
    padding: 10px;
  }

  .report-dialog {
    padding: 18px;
    border-radius: 22px;
  }

  .report-section {
    padding: 18px;
  }
}
