:root {
  --paper: #f7f4ee;
  --paper-deep: #ece8df;
  --white: #fffdf9;
  --ink: #26312f;
  --ink-soft: #596461;
  --sea: #739d9a;
  --sea-light: #c7ddda;
  --sea-pale: #e3efed;
  --deep: #385b58;
  --line: rgba(38, 49, 47, 0.18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --script: "Caveat", "Segoe Script", cursive;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: clamp(3.1rem, 5.5vw, 6.1rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.6rem, 4.2vw, 4.7rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.8rem;
}

.shell {
  width: min(calc(100% - 64px), var(--shell));
  margin-inline: auto;
}

.section {
  padding: clamp(90px, 11vw, 150px) 0;
  scroll-margin-top: 90px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header */

.site-header {
  position: relative;
  z-index: 10;
  background: var(--paper);
  border-bottom: 1px solid transparent;
}

.header-inner {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand {
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
}

.brand-name,
.brand-role {
  display: block;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.brand-role {
  margin-top: 8px;
  color: var(--sea);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 38px);
}

.site-nav a {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:not(.nav-cta) {
  padding: 10px 0 7px;
  border-bottom: 1px solid transparent;
}

.site-nav a:not(.nav-cta):hover,
.site-nav a:not(.nav-cta):focus-visible {
  border-bottom-color: var(--sea);
}

.nav-cta {
  padding: 12px 24px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  transition: background-color 180ms ease, color 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--ink);
  color: var(--white);
}

/* Hero */

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(320px, 42%) minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(46px, 7vw, 120px);
  max-width: 1500px;
  margin-inline: auto;
  padding: 44px 0 70px;
  overflow: hidden;
}

.hero-image-wrap {
  height: 590px;
  position: relative;
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 160px;
  height: 160px;
  border-right: 1px solid var(--sea);
  border-bottom: 1px solid var(--sea);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
}

.hero-copy {
  max-width: 690px;
  padding-right: clamp(32px, 6vw, 90px);
}

.eyebrow {
  margin-bottom: 28px;
  color: var(--deep);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.21em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--sea-light);
}

.script-accent {
  color: var(--sea);
  font-family: var(--script);
  font-size: 1.08em;
  font-weight: 500;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.script-accent.pale {
  color: var(--sea-light);
}

.hero-copy .lede {
  max-width: 630px;
  margin-bottom: 15px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.35;
}

.hero-copy > p:not(.eyebrow):not(.lede) {
  max-width: 620px;
  color: var(--ink-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 15px;
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  color: var(--sea);
  font-size: 1rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 45px;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-meta span + span::before {
  content: "·";
  margin-right: 26px;
  color: var(--sea);
}

/* Opening */

.opening {
  background: var(--white);
}

.opening-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

.opening-heading h2 {
  max-width: 700px;
  margin-bottom: 0;
}

.opening-copy {
  padding-top: 52px;
  color: var(--ink-soft);
}

.opening-copy p {
  margin-bottom: 22px;
}

.supportive-note {
  margin-top: 38px;
  color: var(--sea) !important;
  font-family: var(--script);
  font-size: 2.2rem;
  line-height: 1.15;
}

/* About */

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

.split-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(360px, 1.12fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: center;
}

.portrait-frame {
  position: relative;
  padding: 0 42px 46px 0;
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 48px 0 0 42px;
  border: 1px solid var(--sea);
}

.portrait-frame img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.image-note {
  position: absolute;
  z-index: 2;
  right: -25px;
  bottom: 23px;
  margin: 0;
  padding: 15px 20px;
  background: var(--paper);
  color: var(--deep);
  font-family: var(--script);
  font-size: 1.55rem;
  line-height: 1.05;
  transform: rotate(-3deg);
}

.section-copy {
  max-width: 590px;
}

.section-copy h2 {
  max-width: 560px;
}

.section-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
}

/* Approach */

.approach-section {
  background: var(--deep);
  color: var(--white);
}

.approach-section h2 {
  color: var(--white);
}

.approach-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 11vw, 160px);
}

.approach-grid h2 {
  max-width: 470px;
}

.approach-copy {
  columns: 2;
  column-gap: 48px;
  color: rgba(255, 253, 249, 0.8);
}

.approach-copy p {
  break-inside: avoid;
  margin-bottom: 24px;
}

/* Experience */

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

.section-intro {
  max-width: 830px;
}

.section-intro > p:last-child {
  max-width: 650px;
  color: var(--ink-soft);
}

.concerns {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 75px 0 58px;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.concerns li {
  min-height: 190px;
  padding: 30px 30px 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.48rem;
  line-height: 1.25;
}

.concerns li span {
  display: block;
  margin-bottom: 32px;
  color: var(--sea);
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.closing-line {
  margin: 0;
  text-align: center;
}

.closing-line em {
  color: var(--sea);
  font-family: var(--script);
  font-size: 1.65rem;
  font-style: normal;
}

/* What to expect */

.expect-section {
  background: var(--white);
}

.expect-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 50px;
  align-items: end;
}

.expect-heading h2 {
  margin-bottom: 16px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 65px;
}

.step {
  padding: 0 42px 20px;
  border-left: 1px solid var(--line);
}

.step:first-child {
  padding-left: 0;
  border-left: 0;
}

.step-number {
  display: block;
  margin-bottom: 45px;
  color: var(--sea);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.step h3 {
  margin-bottom: 18px;
}

.step p {
  color: var(--ink-soft);
}

.session-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.session-strip div {
  padding: 0 28px;
  border-left: 1px solid var(--line);
}

.session-strip div:first-child {
  padding-left: 0;
  border-left: 0;
}

.session-strip span,
.session-strip strong {
  display: block;
}

.session-strip span {
  margin-bottom: 7px;
  color: var(--sea);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.session-strip strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
}

/* Contact */

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--deep);
  scroll-margin-top: 90px;
}

.contact-copy,
.form-panel {
  padding: clamp(70px, 9vw, 130px) clamp(38px, 7vw, 110px);
}

.contact-copy {
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
}

.contact-copy > div {
  max-width: 570px;
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy > div > p:last-child {
  max-width: 540px;
  color: rgba(255, 253, 249, 0.78);
}

.contact-aside {
  margin: 60px 0 0;
  color: var(--sea-light);
  font-family: var(--script);
  font-size: 2rem;
  line-height: 1.1;
}

.form-panel {
  display: flex;
  align-items: center;
  background: var(--sea-pale);
}

#contact-form {
  width: min(100%, 560px);
  margin-inline: auto;
}

.form-row {
  margin-bottom: 24px;
}

.form-row label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row textarea {
  width: 100%;
  padding: 13px 2px;
  border: 0;
  border-bottom: 1px solid rgba(38, 49, 47, 0.35);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-bottom-color: var(--deep);
  box-shadow: 0 1px 0 var(--deep);
}

.form-row.consent {
  margin: 30px 0;
}

.form-row.consent label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.form-row.consent input {
  margin-top: 3px;
  accent-color: var(--deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 200px;
  padding: 15px 22px;
  border: 1px solid var(--deep);
  background: var(--deep);
  color: var(--white);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  background: transparent;
  color: var(--deep);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.6;
}

.form-note,
.form-status {
  color: var(--ink-soft);
  font-size: 0.7rem;
  line-height: 1.5;
}

.form-note {
  max-width: 470px;
  margin: 22px 0 0;
}

.form-status {
  min-height: 1.5em;
  margin: 15px 0 0;
}

.form-status.ok {
  color: #315e4f;
}

.form-status.error {
  color: #8b3a32;
}

.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

/* Footer */

.site-footer {
  padding: 55px 0;
  background: #294744;
  color: rgba(255, 253, 249, 0.72);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr auto auto auto;
  align-items: end;
  gap: 35px;
}

.footer-brand {
  color: var(--white);
}

.footer-brand .brand-role {
  color: var(--sea-light);
}

.footer-inner p {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  line-height: 1.7;
  text-transform: uppercase;
}

.footer-copyright {
  text-align: right;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
  padding: 8px 0 6px;
  border-bottom: 1px solid rgba(255, 253, 249, 0.38);
  color: rgba(255, 253, 249, 0.72);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease;
}

.back-to-top span {
  color: var(--sea-light);
  font-size: 0.9rem;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  border-bottom-color: var(--sea-light);
  color: var(--white);
}

.footer-link {
  padding: 8px 0 6px;
  border-bottom: 1px solid rgba(255, 253, 249, 0.38);
  color: rgba(255, 253, 249, 0.72);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-link:hover,
.footer-link:focus-visible,
.footer-link[aria-current="page"] {
  border-bottom-color: var(--sea-light);
  color: var(--white);
}

/* Legal notice */

.legal-page {
  min-height: 70vh;
  padding: clamp(80px, 10vw, 135px) 0;
}

.legal-shell {
  max-width: 980px;
}

.legal-page h1 {
  margin-bottom: 55px;
}

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

.legal-card {
  padding: clamp(30px, 4vw, 48px);
  background: var(--white);
  border-top: 3px solid var(--sea);
}

.legal-card h2,
.crisis-card h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.legal-card address {
  margin-bottom: 28px;
  font-style: normal;
}

.legal-card p:last-child,
.legal-details dd:last-child,
.crisis-card p:last-child {
  margin-bottom: 0;
}

.legal-details {
  margin: 0;
}

.legal-details dt {
  margin-top: 20px;
  color: var(--deep);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-details dt:first-child {
  margin-top: 0;
}

.legal-details dd {
  margin: 3px 0 0;
}

.crisis-card {
  margin-top: 28px;
  padding: clamp(32px, 5vw, 58px);
  background: var(--sea-pale);
}

.crisis-card .eyebrow {
  margin-bottom: 18px;
}

/* Responsive */

@media (max-width: 980px) {
  .header-inner {
    min-height: 96px;
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 0.65rem;
  }

  .site-nav a:nth-child(3),
  .site-nav a:nth-child(4) {
    display: none;
  }

  .hero {
    grid-template-columns: 43% 57%;
    column-gap: 42px;
    min-height: 620px;
  }

  .hero-image-wrap {
    height: 530px;
  }

  .hero-copy {
    padding-right: 32px;
  }

  .hero-meta {
    display: none;
  }

  .opening-grid,
  .approach-grid {
    gap: 70px;
  }

  .approach-copy {
    columns: 1;
  }

  .concerns {
    grid-template-columns: repeat(2, 1fr);
  }

  .session-strip {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }

  .session-strip div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .shell {
    width: min(calc(100% - 40px), var(--shell));
  }

  .section {
    padding: 80px 0;
  }

  .header-inner {
    min-height: 88px;
  }

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

  .brand-role {
    font-size: 0.58rem;
  }

  .site-nav a:not(.nav-cta) {
    display: none;
  }

  .nav-cta {
    padding: 10px 16px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0 0 75px;
  }

  .hero-image-wrap {
    order: 2;
    width: calc(100% - 40px);
    height: min(76vw, 470px);
    margin-top: 55px;
  }

  .hero-image-wrap::after {
    right: -20px;
    bottom: -20px;
    width: 100px;
    height: 100px;
  }

  .hero-copy {
    order: 1;
    padding: 65px 20px 0;
  }

  h1 {
    font-size: clamp(3.2rem, 14vw, 5.1rem);
  }

  h2 {
    font-size: clamp(2.6rem, 11vw, 4rem);
  }

  .script-accent {
    white-space: normal;
  }

  .opening-grid,
  .split-layout,
  .approach-grid,
  .expect-heading,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .opening-grid {
    gap: 38px;
  }

  .opening-copy {
    padding-top: 0;
  }

  .split-layout {
    gap: 75px;
  }

  .portrait-frame {
    width: min(90%, 470px);
  }

  .image-note {
    right: -12px;
  }

  .approach-grid {
    gap: 30px;
  }

  .concerns,
  .steps {
    grid-template-columns: 1fr;
  }

  .concerns {
    margin-top: 55px;
  }

  .concerns li {
    min-height: 0;
  }

  .steps {
    gap: 42px;
  }

  .step,
  .step:first-child {
    padding: 0 0 35px;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .step-number {
    margin-bottom: 20px;
  }

  .contact-copy {
    min-height: 600px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-copyright {
    text-align: left;
  }

  .back-to-top {
    justify-self: start;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .hero-copy {
    padding-top: 50px;
  }

  .hero-copy .lede {
    font-size: 1.35rem;
  }

  .supportive-note {
    font-size: 1.85rem;
  }

  .portrait-frame {
    padding: 0 26px 30px 0;
  }

  .portrait-frame::before {
    inset: 30px 0 0 26px;
  }

  .image-note {
    position: relative;
    right: auto;
    bottom: auto;
    display: inline-block;
    margin: -20px 0 0 20px;
  }

  .concerns {
    grid-template-columns: 1fr;
  }

  .session-strip {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .session-strip div,
  .session-strip div:nth-child(3) {
    padding: 18px 0;
    border: 0;
    border-top: 1px solid var(--line);
  }

  .session-strip div:first-child {
    border-top: 0;
  }

  .contact-copy,
  .form-panel {
    padding: 75px 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
