:root {
  --ink: #17201c;
  --muted: #66706b;
  --paper: #faf8f3;
  --porcelain: #f4efe7;
  --sage: #556b5f;
  --sage-dark: #31483b;
  --clay: #b46d54;
  --sun: #dfb35f;
  --line: rgba(23, 32, 28, 0.14);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(33, 37, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 16px clamp(20px, 4vw, 56px);
  color: var(--white);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  font-family: "Playfair Display", Georgia, serif;
}

.nav-links {
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.94rem;
  font-weight: 600;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 26, 22, 0.78) 0%, rgba(18, 26, 22, 0.52) 42%, rgba(18, 26, 22, 0.12) 100%),
    linear-gradient(180deg, rgba(18, 26, 22, 0.42) 0%, rgba(18, 26, 22, 0.08) 38%, rgba(18, 26, 22, 0.36) 100%);
}

.hero-content {
  align-self: end;
  max-width: 760px;
  padding: 140px clamp(20px, 6vw, 86px) 96px;
  color: var(--white);
}

.eyebrow,
.card-kicker {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0d298;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  font-size: clamp(3.1rem, 8vw, 6.8rem);
}

h2 {
  font-size: clamp(2.1rem, 4.2vw, 4.35rem);
}

h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--sage-dark);
  box-shadow: 0 16px 30px rgba(25, 42, 34, 0.24);
}

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

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-band div {
  min-height: 132px;
  padding: clamp(22px, 3vw, 36px);
  background: var(--porcelain);
}

.intro-band strong,
.intro-band span {
  display: block;
}

.intro-band strong {
  margin-bottom: 8px;
  font-size: 1.04rem;
}

.intro-band span {
  color: var(--muted);
}

.section {
  padding: clamp(70px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

.split,
.faq-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.section-copy p,
.contact-panel p,
.faq p,
.session-card p {
  color: var(--muted);
}

.section-copy p {
  max-width: 700px;
  font-size: 1.04rem;
}

.feature-panel,
.instructor-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-panel {
  overflow: hidden;
}

.feature-panel div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 26px;
}

.feature-panel div + div {
  border-top: 1px solid var(--line);
}

.feature-panel span {
  color: var(--clay);
  font-weight: 800;
}

.feature-panel p {
  margin: 0;
}

.instructor-card {
  overflow: hidden;
}

.portrait-frame {
  width: 100%;
  height: clamp(390px, 68vw, 560px);
  min-height: 390px;
  overflow: hidden;
  background: var(--porcelain);
}

.instructor-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: none;
  transform-origin: center top;
}

.instructor-card-body {
  padding: 28px;
}

.instructor-card-body h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
}

.credential-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: 14px;
  border: 1px solid rgba(180, 109, 84, 0.34);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--sage-dark);
  background: #fbf1eb;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.instructor-card-body p {
  margin: 12px 0 0;
  color: var(--muted);
}

.instructor-card-body ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.instructor-card-body li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 0.95rem;
}

.instructor-card-body li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay);
  content: "";
  transform: translateY(-50%);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

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

.session-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--white);
}

.session-card p {
  margin: 18px 0 28px;
}

.session-card a {
  color: var(--sage-dark);
  font-weight: 800;
}

.quote-band {
  padding: clamp(58px, 8vw, 96px) clamp(22px, 8vw, 120px);
  color: var(--white);
  background: var(--sage-dark);
}

.quote-band blockquote {
  max-width: 990px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.08;
}

.quote-band p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

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

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

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

.contact-panel {
  padding: clamp(24px, 4vw, 34px);
}

form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffdf9;
  font: inherit;
}

textarea {
  resize: vertical;
}

.contact-note {
  margin-bottom: 0;
  font-size: 0.86rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.site-footer div {
  display: flex;
  gap: 18px;
}

.site-footer a {
  font-weight: 700;
}

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

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(18, 26, 22, 0.82), rgba(18, 26, 22, 0.34)),
      linear-gradient(180deg, rgba(18, 26, 22, 0.38), rgba(18, 26, 22, 0.5));
  }

  .hero-content {
    padding: 118px 22px 58px;
  }

  .intro-band,
  .session-grid,
  .split,
  .faq-contact {
    grid-template-columns: 1fr;
  }

  .intro-band div {
    min-height: auto;
  }

  .session-card {
    min-height: 260px;
  }

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

@media (max-width: 520px) {
  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2rem;
  }

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

  .feature-panel div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
