:root {
  --cream: #f7f1e8;
  --sand: #eadcca;
  --paper: #fffaf2;
  --paper-strong: #fffdf8;
  --charcoal: #29231f;
  --ink: #18343b;
  --muted: #665e56;
  --sage: #607568;
  --sage-dark: #3f5a49;
  --rust: #b65f35;
  --rust-dark: #8f4525;
  --gold: #d6a84b;
  --white: #fffaf2;
  --line: #ddcbb8;
  --line-strong: #cdb79f;
  --shadow: 0 18px 42px rgba(41, 35, 31, 0.1);
  --shadow-soft: 0 10px 28px rgba(41, 35, 31, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

main {
  overflow: hidden;
}

a {
  color: inherit;
}

::selection {
  background: rgba(214, 168, 75, 0.36);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 6vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: 0;
  margin-bottom: 1.3rem;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: 0;
  margin-bottom: 0.6rem;
}

p {
  color: var(--muted);
}

button,
input,
select,
textarea {
  font: inherit;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.section-pad {
  position: relative;
  padding: 88px 0;
}

.soft {
  background: #efe6da;
  background-image: radial-gradient(rgba(96, 117, 104, 0.11) 1px, transparent 1px);
  background-size: 24px 24px;
}

.ad-section {
  padding: 34px 0;
  background: var(--cream);
}

.ad-section.soft-ad {
  background: #efe6da;
}

.ad-placeholder {
  min-height: 112px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px dashed #c8ad94;
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.62);
  color: var(--muted);
}

.ad-placeholder strong {
  display: block;
  color: var(--charcoal);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.ad-placeholder p {
  margin: 0;
  font-size: 0.9rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 241, 232, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex: 0 0 auto;
  font-weight: 800;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: 0;
}

.brand-mark {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand-name {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  line-height: 1.08;
  white-space: nowrap;
}

.brand-tagline {
  color: var(--sage-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
}

.nav-links a {
  color: var(--muted);
  border-radius: 999px;
  padding: 7px 9px;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.nav-links a:hover {
  background: rgba(96, 117, 104, 0.12);
  color: var(--ink);
}

.nav-links a[href="#soundboard"] {
  background: var(--ink);
  color: #fff;
  padding-inline: 12px;
}

.nav-links a[href="#soundboard"]:hover {
  background: var(--sage-dark);
  color: #fff;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  width: 44px;
  height: 40px;
  padding: 9px;
  color: var(--charcoal);
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--charcoal);
  margin: 4px 0;
}

.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.hero::after {
  content: "";
  position: absolute;
  right: max(-160px, -9vw);
  bottom: 9%;
  width: min(34vw, 360px);
  aspect-ratio: 1;
  border: 1px solid rgba(214, 168, 75, 0.28);
  border-radius: 28px;
  transform: rotate(8deg);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 48px;
}

.hero h1 {
  max-width: 700px;
  line-height: 1.08;
}

.hero-audience {
  max-width: 680px;
  color: #514941;
  font-size: 1.25rem;
  line-height: 1.55;
}

.hero-start-label {
  margin-top: 1.65rem;
  margin-bottom: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.eyebrow::before,
.section-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  transform: rotate(45deg);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 0.75rem;
  color: var(--sage-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editorial-callout {
  margin: 0 0 1.2rem;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 253, 248, 0.66);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  line-height: 1.35;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

.button {
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

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

.button.primary {
  background: var(--ink);
  color: #fff;
}

.button.primary:hover {
  background: var(--sage-dark);
  box-shadow: 0 10px 24px rgba(24, 52, 59, 0.16);
}

.button.secondary {
  background: var(--paper-strong);
  border: 1px solid var(--line-strong);
  color: var(--ink);
}

.button.ghost {
  min-height: 38px;
  padding: 9px 12px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  color: var(--charcoal);
  font-size: 0.86rem;
}

.button.full {
  width: 100%;
}

.hero-panel,
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.hero-panel {
  position: relative;
  padding: 30px;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--sage);
}

.stat-label {
  display: block;
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-proof-lines {
  display: grid;
  gap: 9px;
  margin: 18px 0 22px;
}

.hero-proof-lines span {
  display: block;
  padding: 10px 12px;
  border: 1px solid rgba(205, 183, 159, 0.85);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.7);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  line-height: 1.12;
}

.section-heading {
  position: relative;
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading::after {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  margin-top: 18px;
  background: var(--gold);
  opacity: 0.55;
}

.card-grid {
  display: grid;
  gap: 20px;
}

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

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

.tool-card,
.mini-card {
  position: relative;
  padding: 28px;
  overflow: hidden;
}

.tool-card::after,
.mini-card::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(214, 168, 75, 0.32);
  border-radius: 8px;
  transform: rotate(10deg);
}

.tool-card,
.mini-card,
.form-card,
.result-card {
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.tool-card:hover,
.mini-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.tool-card p {
  min-height: 78px;
}

.tool-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 24px;
  align-items: start;
}

.form-card,
.result-card {
  padding: 26px;
}

.result-card {
  position: sticky;
  top: 96px;
  background: linear-gradient(180deg, var(--paper-strong), var(--paper));
  border-color: var(--line-strong);
  box-shadow: 0 22px 54px rgba(41, 35, 31, 0.13);
  overflow: hidden;
}

.result-card::before {
  content: "";
  display: block;
  height: 6px;
  margin: -26px -26px 24px;
  background: var(--ink);
}

.field {
  margin-bottom: 18px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
  color: var(--ink);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  color: var(--charcoal);
  padding: 12px 13px;
  outline: none;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

.time-input-grid {
  display: grid;
  grid-template-columns: minmax(120px, 0.7fr) minmax(160px, 1fr);
  gap: 10px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(96, 117, 104, 0.16);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(96, 117, 104, 0.34);
  outline-offset: 3px;
}

.helper,
.muted {
  color: var(--muted);
  font-size: 0.94rem;
}

.range-display {
  margin: 12px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
  color: var(--ink);
  padding: 18px;
  border: 1px solid rgba(214, 168, 75, 0.38);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
}

.result-section {
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px solid rgba(205, 183, 159, 0.82);
}

.result-section ul {
  padding-left: 1.2rem;
  color: var(--muted);
}

.quote-box,
.generated-block {
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(205, 183, 159, 0.9);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  padding: 18px;
}

.generated-block {
  margin-top: 18px;
}

.generated-block h4 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  color: var(--ink);
}

.generated-block p,
.generated-block ul {
  margin-bottom: 12px;
}

.save-report-section {
  padding-bottom: 0;
}

.save-report-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.save-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.save-card h4 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.save-card p {
  margin: 0;
}

.consent-note {
  font-size: 0.78rem;
  color: var(--muted);
}

.clarity-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.clarity-list p {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.faq-list article {
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.cta-band {
  background: var(--ink);
  color: #fff;
}

.cta-band p,
.cta-band .eyebrow {
  color: #f1dcca;
}

.cta-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.signup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 32px;
  align-items: center;
}

.signup-form {
  display: grid;
  gap: 12px;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--sage-dark);
  font-weight: 800;
}

.footer {
  padding: 28px 0;
  background: var(--ink);
  color: #fff;
}

.policy-content h2 {
  margin-top: 2rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.policy-content ul {
  padding-left: 1.2rem;
  color: var(--muted);
}

.policy-content li + li {
  margin-top: 0.35rem;
}

.report-page {
  background: #f5eee4;
}

.report-main {
  padding: 34px 0 70px;
}

.report-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 18px;
}

.report-document {
  max-width: 920px;
  background: var(--paper-strong);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 56px);
}

.report-doc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: -18px 0 34px;
  padding-bottom: 22px;
  border-bottom: 2px solid var(--ink);
}

.report-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.report-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.report-brand strong {
  display: block;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  line-height: 1.1;
}

.report-brand span,
.report-doc-header p,
.report-section-number {
  color: var(--sage-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

.report-section {
  padding: 34px 0;
  border-top: 1px solid rgba(205, 183, 159, 0.78);
}

.report-section:not(.report-cover) {
  break-inside: avoid;
  page-break-inside: avoid;
}

.report-section:first-child {
  border-top: 0;
  padding-top: 0;
}

.report-cover h1 {
  max-width: 720px;
  line-height: 1.05;
}

.report-dek {
  max-width: 680px;
  color: #514941;
  font-size: 1.18rem;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.report-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(247, 241, 232, 0.56);
  padding: 14px;
}

.report-grid dt {
  color: var(--sage-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.report-grid dd {
  margin: 0;
  color: var(--charcoal);
}

.report-range {
  display: block;
  border: 2px solid rgba(214, 168, 75, 0.58);
  border-radius: 8px;
  background: rgba(247, 241, 232, 0.76);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1;
  padding: 22px 24px;
  width: fit-content;
}

.report-callout {
  border: 1px solid rgba(214, 168, 75, 0.58);
  border-left: 6px solid var(--gold);
  border-radius: 8px;
  background: rgba(247, 241, 232, 0.76);
  padding: 22px 24px;
  break-inside: avoid;
  page-break-inside: avoid;
}

.report-document h2 {
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.report-document h3 {
  margin-top: 1.35rem;
  color: var(--ink);
}

.report-document ul {
  color: var(--muted);
  padding-left: 1.2rem;
}

.report-disclaimer {
  font-size: 0.94rem;
}

.report-booking-reminder {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  break-inside: avoid;
  page-break-inside: avoid;
}

.report-booking-reminder h2,
.report-booking-reminder p {
  color: #fff;
}

.report-booking-reminder h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.report-doc-footer {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer p {
  color: #f3e2d1;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.footer-links a {
  color: #f3e2d1;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
  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;
}

@media (max-width: 1060px) {
  .section-pad {
    padding: 64px 0;
  }

  .nav {
    flex-wrap: wrap;
    min-height: 74px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
  }

  .brand-name {
    font-size: 1.06rem;
  }

  .brand-tagline {
    font-size: 0.68rem;
    letter-spacing: 0.02em;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    border-top: 1px solid var(--line);
    padding-bottom: 18px;
    padding-top: 14px;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    min-height: auto;
    background: var(--cream);
  }

  .hero-grid,
  .tool-layout,
  .signup,
  .cta-content,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    align-items: flex-start;
    flex-direction: column;
  }

  .result-card {
    position: static;
  }

  .card-grid.two,
  .card-grid.three,
  .save-report-grid,
  .time-input-grid,
  .report-grid {
    grid-template-columns: 1fr;
  }

  .tool-card p {
    min-height: auto;
  }
}

@media print {
  @page {
    margin: 0.65in;
  }

  body,
  .report-page {
    background: #fff;
    color: #111;
  }

  .site-header,
  .footer,
  .report-actions,
  .no-print {
    display: none !important;
  }

  .report-main {
    padding: 0;
  }

  .report-document {
    width: 100%;
    max-width: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
  }

  .report-doc-header {
    margin: 0 0 10px;
    padding-bottom: 8px;
  }

  .report-section {
    padding: 12px 0;
  }

  .report-section:not(.report-cover) {
    break-inside: auto;
    page-break-inside: auto;
  }

  .report-cover {
    padding: 4px 0 8px;
  }

  .report-cover h1 {
    font-size: 2rem;
    margin-bottom: 0.45rem;
    line-height: 1.02;
  }

  .report-dek {
    font-size: 0.92rem;
    margin-bottom: 0;
  }

  .report-section-number,
  .section-label {
    font-size: 0.64rem;
  }

  .report-grid {
    gap: 8px;
    break-inside: auto;
    page-break-inside: auto;
  }

  .report-grid div {
    padding: 9px 10px;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .report-document h2,
  .report-document h3 {
    break-after: avoid;
    page-break-after: avoid;
  }

  .page-break {
    break-before: page;
    page-break-before: always;
  }

  .report-grid div,
  .report-callout,
  .report-range {
    background: #fff;
    border-color: #bbb;
  }

  .report-booking-reminder {
    background: #fff;
    border-color: #bbb;
    color: #111;
  }

  .report-booking-reminder h2,
  .report-booking-reminder p {
    color: #111;
  }

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

@media (max-width: 560px) {
  .shell {
    width: min(100% - 24px, 1120px);
  }

  h1 {
    font-size: clamp(2.4rem, 15vw, 3.6rem);
  }

  .hero h1 {
    line-height: 1.1;
  }

  .brand {
    max-width: calc(100% - 58px);
    gap: 8px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-name {
    font-size: 0.98rem;
    line-height: 1.05;
    white-space: normal;
  }

  .brand-tagline {
    font-size: 0.64rem;
    letter-spacing: 0;
    white-space: normal;
  }

  .button,
  .button-row {
    width: 100%;
  }

  .button-row {
    gap: 10px;
  }

  .hero-panel,
  .card,
  .form-card,
  .result-card,
  .tool-card,
  .mini-card {
    padding: 20px;
  }
}
