:root {
  --ink: #1f2a2e;
  --muted-ink: #56646b;
  --paper: #fbfaf7;
  --soft: #f3f0ea;
  --line: #d9ded9;
  --green: #314e49;
  --green-2: #496f68;
  --blue: #d8e2ef;
  --coral: #d77b61;
  --coral-dark: #a84f39;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(31, 42, 46, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 92px;
}

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

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

a {
  color: inherit;
  text-decoration-color: rgba(49, 78, 73, 0.45);
  text-underline-offset: 0.18em;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--coral-dark);
  outline-offset: 4px;
}

main:focus {
  outline: none;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  color: var(--white);
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
  padding: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid rgba(217, 222, 217, 0.78);
  backdrop-filter: blur(16px);
}

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

.brand span {
  min-width: 0;
}

.brand-logo {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 8px;
}

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

.brand strong {
  font-size: 1rem;
  line-height: 1.2;
}

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

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted-ink);
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
  white-space: nowrap;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-ink);
  font-size: 0.8rem;
  line-height: 1;
}

.language-switcher a {
  padding: 2px 0;
  color: var(--muted-ink);
  text-decoration: none;
}

.language-switcher a[aria-current="true"] {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.58fr);
  grid-template-areas:
    "copy portrait"
    "facts portrait";
  align-items: center;
  column-gap: clamp(28px, 5vw, 72px);
  row-gap: 32px;
  min-height: min(720px, calc(86vh - 70px));
  padding: clamp(40px, 6vw, 76px) clamp(20px, 5vw, 72px) clamp(34px, 5vw, 62px);
  background:
    linear-gradient(120deg, rgba(216, 226, 239, 0.34), rgba(251, 250, 247, 0) 42%),
    linear-gradient(180deg, var(--paper), #eef4f1);
}

.hero-copy {
  grid-area: copy;
  max-width: 790px;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: 3.75rem;
}

h2 {
  font-size: 2.95rem;
}

h3 {
  font-size: 1.2rem;
}

.lead {
  margin: 20px 0 0;
  max-width: 740px;
  color: var(--muted-ink);
  font-size: 1.2rem;
}

.hero-note {
  margin: 20px 0 0;
  color: var(--green);
  font-size: 0.98rem;
  font-weight: 800;
}

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

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

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

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

.button.primary:hover {
  background: var(--green-2);
  color: var(--white);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.58);
  color: var(--green);
}

.session-facts {
  grid-area: facts;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 710px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.session-facts div {
  min-width: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.session-facts dt {
  color: var(--muted-ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.session-facts dd {
  margin: 5px 0 0;
  font-weight: 800;
}

.portrait-panel {
  position: relative;
  grid-area: portrait;
  margin: 0;
}

.portrait-panel::before,
.portrait-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.portrait-panel::before {
  right: -16px;
  bottom: -16px;
  z-index: 0;
  width: 58%;
  height: 54%;
  border-right: 7px solid var(--coral);
  border-bottom: 7px solid var(--coral);
  border-radius: 0 0 18px 0;
}

.portrait-panel::after {
  top: -12px;
  left: -12px;
  z-index: 0;
  width: 28%;
  height: 24%;
  border-radius: 12px 0 18px 0;
  background: #f2b79f;
  opacity: 0.75;
}

.portrait-panel img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  object-fit: cover;
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
}

.section.compact {
  padding-top: clamp(48px, 7vw, 84px);
}

.section-heading {
  max-width: 980px;
  margin-bottom: 34px;
}

.section-heading.narrow {
  max-width: 760px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted-ink);
  font-size: 1.08rem;
}

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

.intro-band .eyebrow {
  color: #f2b79f;
}

.intro-band .two-column p {
  color: rgba(255, 255, 255, 0.82);
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 72px);
}

.two-column p,
.about-grid p,
.legal-page p,
.card p,
.contact-copy p {
  margin: 0;
  color: var(--muted-ink);
}

.two-column p + p,
.about-grid p + p,
.legal-page p + p {
  margin-top: 18px;
}

.session-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(24px, 4vw, 40px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.session-detail .section-heading {
  margin-bottom: 0;
}

.detail-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.detail-grid div {
  padding: 22px;
  background: var(--white);
}

.detail-grid span,
.card-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--coral-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.detail-grid p {
  margin: 12px 0 0;
  color: var(--muted-ink);
}

.practical-section {
  padding-top: clamp(48px, 7vw, 88px);
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
}

.practical-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.practical-list div {
  min-width: 0;
  padding: 22px;
  background: var(--white);
}

.practical-list dt {
  color: var(--coral-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.practical-list dd {
  margin: 8px 0 0;
  color: var(--muted-ink);
}

.feel-section {
  background: var(--paper);
}

.feel-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.feel-list article {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 56px);
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.feel-list h3 {
  color: var(--green);
}

.feel-list p {
  margin: 0;
  color: var(--muted-ink);
}

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

.card {
  min-height: 250px;
  padding: 26px 24px 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--coral);
  border-radius: 8px;
  background: var(--white);
}

.card p {
  margin-top: 14px;
}

.muted {
  background: var(--soft);
}

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

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

.check-list li {
  position: relative;
  padding: 18px 18px 18px 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 19px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(215, 123, 97, 0.15);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
}

.about-section {
  background:
    linear-gradient(90deg, #eef4f1 0, #eef4f1 32%, var(--paper) 32%, var(--paper) 100%);
}

.quote-block {
  padding: clamp(26px, 4vw, 42px);
  border-left: 6px solid var(--coral);
  background: var(--green);
  color: var(--white);
}

.quote-block p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 2.2rem;
  line-height: 1.16;
}

.quote-block .eyebrow {
  color: #f2b79f;
  font-size: 0.78rem;
}

.boundary {
  background: #e8efeb;
}

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

.direct-email {
  margin-top: 18px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label,
input,
textarea {
  font: inherit;
}

label {
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #bdc8c3;
  border-radius: 8px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
}

input:focus,
textarea:focus {
  outline: 3px solid var(--coral-dark);
  outline-offset: 2px;
  border-color: var(--green-2);
}

input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #9e3527;
}

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

.field-error {
  min-height: 1.25em;
  margin: 0;
  color: #9e3527;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--muted-ink);
  font-weight: 800;
}

.form-status[data-type="success"] {
  color: var(--green);
}

.form-status[data-type="error"] {
  color: #9e3527;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .button:hover {
    transform: none;
  }
}

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

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 16px;
}

.legal-page {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) 20px;
}

.legal-page h1 {
  font-size: 3.6rem;
}

.legal-page section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.legal-page h2 {
  margin-bottom: 12px;
  font-size: 1.9rem;
}

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

  h2 {
    font-size: 2.35rem;
  }

  .lead {
    font-size: 1.1rem;
  }

  .hero,
  .two-column,
  .session-detail,
  .practical-list,
  .cards,
  .split,
  .about-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-areas:
      "copy"
      "portrait"
      "facts";
    min-height: 0;
    align-items: start;
  }

  .portrait-panel {
    max-width: 390px;
  }

  .session-detail {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .cards {
    gap: 14px;
  }

  .feel-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-section {
    background: var(--paper);
  }

  .quote-block p {
    font-size: 1.9rem;
  }

  .legal-page h1 {
    font-size: 3rem;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: sticky;
    align-items: stretch;
    flex-direction: column;
    gap: 7px;
    padding: 8px 14px 9px;
  }

  .brand {
    width: 100%;
    min-width: 0;
  }

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

  .nav {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 5px;
    width: calc(100% + 8px);
    margin-right: -8px;
    overflow-x: auto;
    padding-bottom: 1px;
    font-size: 0.84rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 0 0 auto;
    padding: 5px 9px;
    border: 1px solid rgba(217, 222, 217, 0.9);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.54);
  }

  .language-switcher {
    align-self: flex-start;
    padding-top: 2px;
  }

  .hero {
    row-gap: 22px;
    padding: 24px 16px 36px;
  }

  h1 {
    font-size: 2.08rem;
    line-height: 1.1;
  }

  h2 {
    font-size: 1.9rem;
    line-height: 1.12;
  }

  .lead {
    font-size: 1rem;
  }

  .section {
    padding: 52px 16px;
  }

  .section.compact {
    padding-top: 40px;
  }

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

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.74rem;
  }

  .portrait-panel {
    width: min(100%, 300px);
    max-width: none;
    justify-self: center;
    box-shadow: none;
  }

  .session-facts {
    grid-template-columns: 1fr;
  }

  .session-facts div {
    padding: 15px 16px;
  }

  .session-facts dd {
    margin-top: 2px;
  }

  .detail-grid div {
    padding: 18px;
  }

  .practical-list div {
    padding: 18px;
  }

  .card {
    min-height: auto;
    padding: 22px 20px;
  }

  .quote-block {
    padding: 24px 20px;
  }

  .quote-block p {
    font-size: 1.62rem;
  }

  .check-list {
    gap: 10px;
  }

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

  .button {
    min-height: 50px;
  }

  .contact-form {
    box-shadow: none;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 16px;
  }

  .site-footer nav {
    flex-wrap: wrap;
    row-gap: 8px;
  }

  .legal-page {
    padding: 44px 16px;
  }

  .legal-page h1 {
    font-size: 2.35rem;
  }

  .legal-page h2 {
    font-size: 1.55rem;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

  .brand small {
    font-size: 0.74rem;
  }

  .hero {
    padding: 24px 14px 34px;
  }

  h1 {
    font-size: 1.86rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  h3 {
    font-size: 1.08rem;
  }

  .lead {
    margin-top: 16px;
    font-size: 1rem;
  }

  .hero-note {
    margin-top: 16px;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .section {
    padding: 46px 14px;
  }

  .check-list li {
    padding: 16px 16px 16px 44px;
  }

  .contact-form {
    padding: 16px;
  }

  .legal-page {
    padding-inline: 14px;
  }
}

@media (max-width: 380px) {
  .site-header {
    padding-inline: 12px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

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

  .brand small {
    font-size: 0.7rem;
  }

  .nav {
    width: calc(100% + 6px);
    margin-right: -6px;
    font-size: 0.84rem;
  }

  .nav a {
    padding: 6px 9px;
  }

  .hero {
    padding: 24px 12px 34px;
  }

  h1 {
    font-size: 1.86rem;
  }

  h2 {
    font-size: 1.54rem;
  }

  .section {
    padding: 40px 12px;
  }

  .button {
    padding-inline: 14px;
  }

  .contact-form,
  .detail-grid div,
  .card {
    padding: 14px;
  }
}
