:root {
  --bg: #f3efe6;
  --bg-raised: #fbfaf6;
  --ink: #1c1915;
  --ink-soft: #5e574f;
  --line: #d6cec1;
  --gold: #a68556;
  --gold-deep: #8a6b42;
  --sage: #2f3d38;
  --sage-mid: #4a5c55;
  --cream: #e8e1d4;
  --danger: #8b3a2f;
  --success: #355c45;
  --shadow: 0 24px 60px rgba(28, 25, 21, 0.08);
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.7;
  min-height: 100vh;
}

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

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
}

h3 {
  font-size: 1.55rem;
}

p {
  margin: 0 0 1em;
}

ul {
  margin: 0 0 1em;
  padding-left: 1.15em;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: var(--bg);
  padding: 0.6rem 1rem;
  z-index: 100;
}

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

.inline-error,
.cookie-fallback {
  background: #f3e6e1;
  color: var(--danger);
  border: 1px solid #e3c8c1;
  padding: 0.75rem 1rem;
  margin: 0.5rem 1rem;
  font-size: 0.92rem;
}

#site-header,
#site-footer {
  min-height: 1px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(243, 239, 230, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.logo-mark {
  width: 0.7rem;
  height: 1.4rem;
  background: var(--gold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

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

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  box-shadow: inset 0 -1px 0 var(--gold);
}

.nav-cta {
  border: 1px solid var(--ink);
  padding: 0.45rem 0.85rem;
  color: var(--ink) !important;
  box-shadow: none !important;
}

.nav-cta:hover {
  background: var(--ink);
  color: var(--bg) !important;
}

.nav-toggle {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 1px;
  margin: 6px 8px;
  background: var(--ink);
}

main {
  overflow: hidden;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.4rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.8rem;
}

.lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 40rem;
}

.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.8rem;
  padding: 0.55rem 1.2rem;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

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

.btn-solid {
  background: var(--sage);
  border-color: var(--sage);
  color: #f7f3ea;
}

.btn-solid:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}

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

.btn-text {
  border: 0;
  padding: 0;
  min-height: 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold-deep);
  background: none;
  box-shadow: inset 0 -1px 0 var(--gold);
}

.btn-text:hover {
  background: none;
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: end;
  padding: 4.5rem 0 3.5rem;
}

.hero-kicker {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-right: 1.5rem;
  white-space: nowrap;
}

.hero-copy {
  display: flex;
  gap: 1.25rem;
}

.hero h1 span {
  display: block;
}

.hero-aside {
  font-size: 1.02rem;
  color: var(--ink-soft);
  max-width: 22rem;
  margin-top: 1.5rem;
}

.hero-frame {
  position: relative;
}

.hero-frame img {
  width: 100%;
  height: 34rem;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
  border: 1px solid var(--line);
}

.hero-chip {
  position: absolute;
  left: -1.4rem;
  bottom: 2rem;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  padding: 1.1rem 1.25rem;
  max-width: 16rem;
  box-shadow: var(--shadow);
}

.hero-chip strong {
  display: block;
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-bar div {
  padding: 1.5rem 1.2rem;
  border-right: 1px solid var(--line);
}

.trust-bar div:last-child {
  border-right: 0;
}

.trust-bar strong {
  display: block;
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 600;
}

.trust-bar span {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.section {
  padding: 5.2rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2.4rem;
}

.section-muted {
  background: #ece6da;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.card {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card img {
  width: 100%;
  height: 13.5rem;
  object-fit: cover;
  filter: saturate(0.85);
}

.card-body {
  padding: 1.3rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.card-body h3 {
  margin: 0;
}

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

.card-meta {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.manifesto {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.manifesto img {
  width: 100%;
  height: 28rem;
  object-fit: cover;
  border: 1px solid var(--line);
  filter: saturate(0.8);
}

.benefit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-list li {
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
}

.benefit-list strong {
  display: block;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.4rem;
}

.quote {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  padding: 1.6rem 1.7rem;
}

.quote.wide {
  grid-row: span 2;
}

.quote p {
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1.35;
  margin-bottom: 1.1rem;
}

.quote.short p {
  font-size: 1.15rem;
  font-family: var(--sans);
  line-height: 1.55;
}

.quote footer {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.stars {
  color: var(--gold-deep);
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}

.cta-band {
  background: var(--sage);
  color: #f4efe6;
  padding: 4.2rem 0;
}

.cta-band h2,
.cta-band p {
  color: #f4efe6;
}

.cta-band p {
  max-width: 34rem;
  opacity: 0.88;
}

.cta-band .btn {
  border-color: #f4efe6;
  color: #f4efe6;
}

.cta-band .btn:hover,
.cta-band .btn-solid {
  background: #f4efe6;
  color: var(--sage);
  border-color: #f4efe6;
}

.page-hero {
  padding: 3.8rem 0 2rem;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 16ch;
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  margin-top: 2rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
  align-items: start;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.price-card {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  padding: 1.8rem 1.6rem 1.7rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.price-card.featured {
  background: var(--sage);
  color: #f6f1e8;
  border-color: var(--sage);
}

.price-card .amount {
  font-family: var(--display);
  font-size: 2.6rem;
  margin: 0.4rem 0 0.8rem;
}

.price-card ul {
  padding-left: 1rem;
  color: inherit;
  opacity: 0.92;
  flex: 1;
}

.price-card.featured .btn {
  border-color: #f6f1e8;
  color: #f6f1e8;
}

.price-card.featured .btn:hover {
  background: #f6f1e8;
  color: var(--sage);
}

.note {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.instructor {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1.3rem;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--bg-raised);
  padding: 1.2rem;
}

.instructor img {
  width: 8rem;
  height: 8rem;
  object-fit: cover;
  border-radius: 50%;
}

.modules {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modules li {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}

.modules span {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--gold-deep);
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 500;
}

.case {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  margin: 2.5rem 0;
  align-items: center;
}

.case img {
  width: 100%;
  height: 22rem;
  object-fit: cover;
  border: 1px solid var(--line);
}

.blog-list {
  display: grid;
  gap: 1.5rem;
}

.blog-row {
  display: grid;
  grid-template-columns: 16rem 1fr;
  gap: 1.5rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  text-decoration: none;
  color: inherit;
}

.blog-row img {
  width: 100%;
  height: 11rem;
  object-fit: cover;
}

.blog-row h2 {
  font-size: 1.85rem;
  margin-bottom: 0.4rem;
}

.article-hero img {
  width: 100%;
  height: 26rem;
  object-fit: cover;
  border: 1px solid var(--line);
  margin: 1.5rem 0 2rem;
}

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

.address-block,
.phone-block {
  white-space: pre-wrap;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  padding: 1.2rem 1.3rem;
  font-size: 0.98rem;
}

form[data-desk-form] {
  display: grid;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  background: var(--bg-raised);
  color: var(--ink);
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.field-error {
  color: var(--danger);
  font-size: 0.88rem;
  margin: 0;
  min-height: 1.1em;
}

.form-status {
  margin: 0;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
}

.form-status.is-success {
  background: #e5efe8;
  color: var(--success);
  border-color: #c5d8cb;
}

.form-status.is-error {
  background: #f3e6e1;
  color: var(--danger);
  border-color: #e3c8c1;
}

.table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

th,
td {
  border: 1px solid var(--line);
  padding: 0.7rem 0.8rem;
  text-align: left;
  vertical-align: top;
}

th {
  background: #ece6da;
  font-weight: 500;
}

.error-page {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 5rem 1.4rem;
}

.error-page h1 {
  font-size: clamp(3rem, 8vw, 6rem);
}

.site-footer {
  background: #1c1915;
  color: #e8e1d4;
  padding: 3.5rem 1.4rem 1.6rem;
  margin-top: 0;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1.2fr 0.7fr 0.7fr;
  gap: 2rem;
}

.footer-logo {
  font-family: var(--display);
  font-size: 1.8rem;
  margin: 0 0 0.6rem;
}

.footer-lede,
.footer-address,
.footer-contact,
.footer-copy {
  color: #cfc6b6;
  font-size: 0.95rem;
}

.footer-label {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold);
  margin: 0 0 0.8rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a,
.site-footer a {
  color: #e8e1d4;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-contact span {
  display: block;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.footer-copy {
  max-width: var(--max);
  margin: 2.4rem auto 0;
  padding-top: 1.3rem;
  border-top: 1px solid #3a342c;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1.2rem 1.3rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner-title {
  font-family: var(--display);
  font-size: 1.35rem;
  margin: 0 0 0.3rem;
}

.cookie-banner-copy p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.7rem;
  flex-shrink: 0;
}

.legal-page .section {
  padding-top: 2.5rem;
}

@media (max-width: 980px) {
  .hero,
  .manifesto,
  .quote-grid,
  .two-col,
  .split,
  .price-grid,
  .card-grid,
  .contact-grid,
  .case,
  .footer-grid,
  .trust-bar {
    grid-template-columns: 1fr;
  }

  .trust-bar div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-frame img,
  .manifesto img,
  .case img,
  .article-hero img {
    height: 18rem;
  }

  .blog-row {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.4rem 1.4rem;
    gap: 0.9rem;
  }

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

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .hero-copy {
    flex-direction: column;
  }

  .hero-kicker {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .hero-chip {
    left: 1rem;
    right: 1rem;
    max-width: none;
  }

  .benefit-list,
  .instructor {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
