:root {
  --ink: #213c34;
  --forest: #244c40;
  --deep: #17362e;
  --sage: #9aaa86;
  --mist: #dfe6d9;
  --cream: #f5f0e5;
  --paper: #fbf8f1;
  --clay: #c68168;
  --gold: #d4a45f;
  --line: rgba(33, 60, 52, 0.16);
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--deep);
  font-weight: 600;
}

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(24px, 5vw, 82px);
  border-bottom: 1px solid rgba(33, 60, 52, 0.12);
}

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

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand span {
  display: grid;
  line-height: 1;
}

.brand strong {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
}

.brand em {
  margin-top: 5px;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 52px);
}

.site-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.site-nav a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-contact {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--clay);
  color: white;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--forest);
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: var(--cream);
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  padding-top: 106px;
  background:
    radial-gradient(circle at 23% 45%, rgba(212, 164, 95, 0.12), transparent 24%),
    var(--paper);
}

.hero-copy {
  align-self: center;
  padding: 74px 5vw 60px clamp(28px, 7.8vw, 130px);
}

.eyebrow,
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--clay);
}

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 720px;
  font-size: clamp(60px, 6.2vw, 104px);
  line-height: 0.86;
}

h1 em,
h2 em {
  color: var(--clay);
  font-weight: 400;
}

.hero-lead {
  max-width: 590px;
  margin: 36px 0 0;
  font-size: 16px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 14px 25px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

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

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

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

.text-link {
  font-family: var(--display);
  font-size: 18px;
  font-style: italic;
  text-underline-offset: 6px;
}

.hero-visual {
  position: relative;
  min-height: 654px;
  padding: 30px 0 0;
}

.hero-frame {
  height: 100%;
  overflow: hidden;
  border-radius: 48% 0 0 0 / 22% 0 0 0;
  background: var(--mist);
}

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

.hero-note {
  position: absolute;
  right: 6%;
  bottom: 6%;
  padding: 14px 18px;
  color: white;
  font-family: var(--display);
  font-size: 22px;
  font-style: italic;
  line-height: 1.2;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.3);
}

.trust-strip {
  min-height: 76px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 2.8vw, 46px);
  padding: 18px 5vw;
  background: var(--forest);
  color: var(--cream);
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.02em;
  text-align: center;
}

.spark {
  color: var(--gold);
}

.section {
  padding: clamp(90px, 10vw, 160px) clamp(28px, 7.5vw, 124px);
}

.section-label {
  margin-bottom: clamp(46px, 6vw, 82px);
}

.section-label span {
  color: var(--clay);
  font-family: var(--display);
  font-size: 16px;
  font-style: italic;
  letter-spacing: 0;
}

.section-label::after {
  content: "";
  width: min(150px, 12vw);
  height: 1px;
  background: var(--line);
}

.section-label.light::after {
  background: rgba(245, 240, 229, 0.25);
}

.kicker {
  margin: 0 0 18px;
  color: var(--clay);
  font-family: var(--display);
  font-size: 22px;
  font-style: italic;
}

h2 {
  font-size: clamp(48px, 5vw, 82px);
  line-height: 0.96;
}

.approach {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  column-gap: 9vw;
}

.approach .section-label {
  grid-column: 1 / -1;
}

.approach-copy {
  padding-top: 24px;
}

.approach-copy p:first-child::first-letter {
  float: left;
  margin: 6px 10px 0 0;
  color: var(--clay);
  font-family: var(--display);
  font-size: 66px;
  line-height: 0.72;
}

.services {
  background: var(--forest);
  color: var(--cream);
}

.services-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 8vw;
}

.services-intro > p {
  margin: 0 0 8px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 80px;
  border-top: 1px solid rgba(245, 240, 229, 0.25);
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 42px clamp(24px, 3vw, 48px) 24px 0;
}

.service-card + .service-card {
  padding-left: clamp(24px, 3vw, 48px);
  border-left: 1px solid rgba(245, 240, 229, 0.25);
}

.service-number {
  color: var(--clay);
  font-family: var(--display);
  font-size: 20px;
  font-style: italic;
}

.service-card h3 {
  margin: 22px 0;
  font-family: var(--display);
  font-size: clamp(30px, 2.6vw, 43px);
  font-weight: 400;
  line-height: 1;
}

.service-card p {
  font-size: 14px;
  line-height: 1.8;
}

.service-card a {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding: 18px 0;
  border-top: 1px solid rgba(245, 240, 229, 0.25);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 9vw;
  background: var(--cream);
}

.about-visual {
  align-self: start;
}

.about-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 48% 48% 6px 6px / 24% 24% 6px 6px;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 43% center;
}

.about-visual > p {
  margin: 22px 0 0;
  color: var(--clay);
  font-family: var(--display);
  font-size: 24px;
  font-style: italic;
  line-height: 1.2;
}

.about-copy .section-label {
  margin-bottom: 48px;
}

.about-copy h2 {
  margin-bottom: 40px;
}

.about-copy > p:not(.kicker) {
  font-size: 15px;
}

.signature {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.signature span {
  display: block;
  font-family: var(--display);
  font-size: 30px;
  font-style: italic;
}

.signature small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.beyond {
  background:
    linear-gradient(90deg, transparent 49.95%, var(--line) 50%, transparent 50.05%),
    var(--paper);
}

.beyond-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
}

.beyond-grid > div:last-child {
  padding-top: 20px;
}

.contact {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.6fr);
  gap: 8vw;
  padding: clamp(90px, 10vw, 150px) clamp(28px, 7.5vw, 124px) 40px;
  background: var(--deep);
  color: var(--cream);
}

.contact .section-label {
  margin-bottom: 55px;
}

.contact-copy > p:not(.kicker) {
  max-width: 650px;
  margin-top: 30px;
}

.contact-card {
  align-self: end;
  display: grid;
  gap: 14px;
  padding: 40px;
  border: 1px solid rgba(245, 240, 229, 0.25);
  border-radius: 160px 160px 8px 8px / 80px 80px 8px 8px;
  background: rgba(245, 240, 229, 0.05);
}

.contact-card p {
  margin: 0;
}

.contact-card a:not(.button) {
  font-family: var(--display);
  font-size: 24px;
  text-underline-offset: 5px;
}

.contact-name {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-light {
  margin-top: 16px;
  background: var(--cream);
  color: var(--deep);
}

.button-light:hover {
  background: white;
}

.crisis {
  grid-column: 1 / -1;
  margin: 55px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 240, 229, 0.18);
  font-size: 12px;
  opacity: 0.8;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 28px clamp(28px, 7.5vw, 124px);
  background: var(--cream);
  font-size: 11px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 18px;
  text-decoration: none;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
}

.copyright {
  justify-self: end;
}

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

  .hero-copy {
    padding-left: 5vw;
  }

  h1 {
    font-size: clamp(56px, 7vw, 78px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .services-intro,
  .approach,
  .about {
    gap: 6vw;
  }
}

@media (max-width: 800px) {
  .site-header {
    min-height: 84px;
    padding-block: 12px;
  }

  .menu-toggle {
    z-index: 2;
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transform: translateY(-100%);
    background: var(--deep);
    color: var(--cream);
    opacity: 0;
    visibility: hidden;
    transition: 220ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav a {
    font-family: var(--display);
    font-size: 38px;
    font-weight: 400;
  }

  .site-nav .nav-contact {
    margin-top: 12px;
    font-family: var(--sans);
    font-size: 12px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 84px;
  }

  .hero-copy {
    padding: 74px 28px 64px;
  }

  h1 {
    font-size: clamp(58px, 15vw, 88px);
  }

  .hero-visual {
    min-height: 560px;
    padding: 0 0 0 28px;
  }

  .hero-frame {
    border-radius: 52% 0 0 0 / 24% 0 0 0;
  }

  .trust-strip {
    align-items: center;
    flex-direction: column;
    gap: 8px;
    padding: 28px;
  }

  .trust-strip .spark {
    display: none;
  }

  .approach,
  .services-intro,
  .about,
  .beyond-grid,
  .contact {
    grid-template-columns: 1fr;
  }

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

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

  .service-card,
  .service-card + .service-card {
    padding: 34px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(245, 240, 229, 0.25);
  }

  .about-visual {
    max-width: 520px;
  }

  .beyond {
    background: var(--paper);
  }

  .contact {
    gap: 60px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .copyright {
    justify-self: center;
  }
}

@media (max-width: 480px) {
  .brand strong {
    font-size: 21px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .section {
    padding: 82px 24px;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .contact {
    padding: 82px 24px 30px;
  }

  .contact-card {
    padding: 34px 24px;
  }

  .contact-card a:not(.button) {
    font-size: 20px;
  }
}

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

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

