:root {
  --ink: #17201f;
  --muted: #5f6a66;
  --paper: #f7f5ee;
  --white: #ffffff;
  --line: #d8d3c8;
  --steel: #34454a;
  --teal: #1f6f6b;
  --teal-dark: #104a48;
  --amber: #c98523;
  --brick: #9f4f3d;
  --shadow: 0 18px 50px rgba(21, 31, 30, 0.16);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 44px);
  background: rgba(247, 245, 238, 0.92);
  border-bottom: 1px solid rgba(216, 211, 200, 0.86);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--steel);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a {
  text-decoration: none;
}

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

.hero {
  position: relative;
  min-height: min(600px, calc(100vh - 150px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-workshop.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 22, 23, 0.88) 0%, rgba(20, 29, 28, 0.72) 42%, rgba(20, 29, 28, 0.28) 74%, rgba(20, 29, 28, 0.16) 100%),
    linear-gradient(0deg, rgba(12, 22, 23, 0.48), rgba(12, 22, 23, 0));
}

.hero-content {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 56px) clamp(22px, 5vw, 48px) clamp(22px, 3vw, 36px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.7rem, 5.3vw, 4.55rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-subhead {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: clamp(1.15rem, 2.1vw, 1.48rem);
  color: rgba(255, 255, 255, 0.92);
}

.hero-copy {
  max-width: 600px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 750;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--teal);
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary.light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.trust-line {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
}

.section,
.band,
.final-cta {
  padding: clamp(58px, 9vw, 108px) clamp(22px, 5vw, 48px);
}

.section.compact {
  padding-top: clamp(34px, 5vw, 54px);
  padding-bottom: clamp(34px, 5vw, 54px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.section-heading,
.section-grid,
.topic-grid,
.steps,
.advisor-layout,
.offer-grid,
.boundary-section,
.final-cta > * {
  width: min(100%, var(--max));
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  margin-bottom: 30px;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  line-height: 1.2;
}

p {
  font-size: 1rem;
}

.section-grid,
.advisor-layout,
.boundary-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.trial-panel,
.advisor-note,
.privacy-copy {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 12px;
  height: 7px;
  border-left: 3px solid var(--teal);
  border-bottom: 3px solid var(--teal);
  transform: rotate(-45deg);
}

.inline-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

.inline-action::after {
  content: ">";
  color: var(--amber);
}

.topic-grid,
.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.topic-grid article,
.offer {
  min-height: 190px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.topic-grid p,
.offer p,
.advisor-layout p,
.boundary-section p,
.final-cta p {
  color: var(--muted);
}

.band {
  background: var(--steel);
  color: var(--white);
}

.band .eyebrow {
  color: #e6a847;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.steps li {
  min-height: 250px;
  padding: 24px;
  background: var(--steel);
  color: rgba(255, 255, 255, 0.76);
}

.steps span {
  display: block;
  margin-bottom: 50px;
  color: #e6a847;
  font-weight: 850;
}

.steps strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.08rem;
}

.advisor-note {
  border-top: 5px solid var(--brick);
}

.price {
  display: block;
  margin-bottom: 28px;
  color: var(--teal-dark);
  font-size: 2rem;
  font-weight: 850;
}

.offer.featured {
  border-top: 5px solid var(--teal);
}

.boundary-section {
  align-items: stretch;
}

.boundary-copy {
  padding-top: 10px;
}

.privacy-copy h3 {
  font-size: 1.6rem;
}

.final-cta {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(31, 111, 107, 0.96), rgba(52, 69, 74, 0.98)),
    var(--teal);
  text-align: center;
}

.final-cta h2 {
  max-width: 780px;
}

.final-cta p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
}

.final-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(22px, 5vw, 48px);
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 620px;
  margin: 0;
  font-size: 0.9rem;
}

.form-page {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 245, 238, 0.96)),
    var(--paper);
}

.form-shell {
  width: min(100%, 940px);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 72px) clamp(18px, 5vw, 44px) clamp(64px, 8vw, 112px);
}

.short-form-shell {
  width: min(100%, 860px);
}

.form-intro {
  margin-bottom: 30px;
}

.form-intro h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.form-intro p {
  max-width: 760px;
  color: var(--muted);
}

.form-warning {
  padding: 16px 18px;
  color: var(--ink) !important;
  background: #fff4e0;
  border-left: 5px solid var(--amber);
  border-radius: 6px;
}

.concierge-form {
  display: grid;
  gap: 18px;
}

.short-concierge-form {
  gap: 14px;
}

.concierge-form fieldset,
.confirmation {
  min-width: 0;
  margin: 0;
  padding: clamp(20px, 4vw, 30px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(21, 31, 30, 0.08);
}

.concierge-form legend {
  padding: 0 10px;
  color: var(--steel);
  font-weight: 850;
  background: var(--white);
}

.concierge-form label,
.choice-group,
.checkbox-stack,
.choice-grid,
.rating-grid {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: var(--ink);
  font-weight: 720;
}

.concierge-form input,
.concierge-form select,
.concierge-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fbfaf6;
  border: 1px solid #c9c3b7;
  border-radius: 6px;
  font: inherit;
  font-weight: 500;
}

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

.short-concierge-form textarea {
  min-height: 92px;
}

.concierge-form input:focus,
.concierge-form select:focus,
.concierge-form textarea:focus {
  outline: 3px solid rgba(31, 111, 107, 0.2);
  border-color: var(--teal);
}

.concierge-form small,
.field-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.choice-group > span {
  font-weight: 780;
}

.choice-group label,
.checkbox-stack label,
.choice-grid label,
.solo-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 0;
  color: var(--muted);
  font-weight: 600;
}

.choice-group input,
.checkbox-stack input,
.choice-grid input,
.solo-checkbox input {
  width: auto;
  min-height: 0;
  margin-top: 0.28em;
}

.choice-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
}

.compact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 14px;
}

.compact-choice {
  gap: 10px;
}

.two-column-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.rating-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.rating-grid input[type="range"] {
  padding-left: 0;
  padding-right: 0;
  accent-color: var(--teal);
}

.form-submit {
  width: fit-content;
  min-width: 220px;
  border: 0;
  cursor: pointer;
}

.confirmation {
  border-top: 5px solid var(--teal);
}

.confirmation h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.confirmation:focus {
  outline: 3px solid rgba(31, 111, 107, 0.2);
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 22, 23, 0.9), rgba(12, 22, 23, 0.5)),
      linear-gradient(0deg, rgba(12, 22, 23, 0.58), rgba(12, 22, 23, 0.18));
  }

  .section-grid,
  .advisor-layout,
  .boundary-section,
  .topic-grid,
  .offer-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .steps li {
    min-height: auto;
  }

  .steps span {
    margin-bottom: 20px;
  }

  .site-footer {
    flex-direction: column;
  }

  .choice-grid,
  .rating-grid,
  .compact-grid,
  .two-column-fields {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .site-header {
    position: static;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2rem;
  }

  .form-submit {
    width: 100%;
  }
}
