@font-face {
  font-family: Outfit;
  src: url("/assets/outfit-variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
/* Native CSS art direction, not an imitation of a component design system.
   Taste dials: DESIGN_VARIANCE 9 / MOTION_INTENSITY 5 / VISUAL_DENSITY 3.
   One pink accent; forest ink acts as a neutral. Controls and media use a
   consistent 4px radius. Layers: content 0, navigation 10, skip link 20. */
:root {
  --paper: #f4f5f0;
  --surface: #e9ece5;
  --ink: #203b2e;
  --muted: #536457;
  --line: #cbd3c8;
  --accent: #efaec2;
  --accent-ink: #283d31;
  --focus: #76516a;
  --radius: 4px;
  color-scheme: light dark;
  font-family: Outfit, Arial, sans-serif;
  font-synthesis: none;
}
@media (prefers-color-scheme: dark) {
  :root {
    --paper: #15241c;
    --surface: #203128;
    --ink: #edf0e7;
    --muted: #b7c4b7;
    --line: #425046;
    --accent: #efaec2;
    --accent-ink: #283d31;
    --focus: #efaec2;
  }
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
::selection {
  background: var(--accent);
  color: var(--accent-ink);
}
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 6px;
}
p,
h1,
h2,
h3 {
  margin: 0;
}
p {
  font-size: 1.0625rem;
  line-height: 1.55;
}
a,
button {
  touch-action: manipulation;
}
.wrap {
  width: min(100% - 112px, 1328px);
  margin-inline: auto;
}
.section {
  padding-block: 110px;
  scroll-margin-top: 24px;
}
.skip-link {
  position: absolute;
  z-index: 20;
  top: 8px;
  left: 16px;
  padding: 12px;
  background: var(--accent);
  color: var(--accent-ink);
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  height: 80px;
  display: flex;
  align-items: center;
  gap: 44px;
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 2.15rem;
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 1;
}
.wordmark img {
  object-fit: contain;
  width: 38px;
  height: 38px;
}
.wordmark-period {
  color: var(--ink);
}
.site-header nav {
  margin-left: auto;
  display: flex;
  gap: 32px;
  font-size: 0.9375rem;
}
.site-header nav a {
  padding-block: 10px;
}
.nav-contact {
  font-size: 0.9375rem;
  white-space: nowrap;
  display: flex;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 19px;
}
.nav-contact span {
  font-size: 1.25rem;
}
.nav-contact:hover {
  border-color: var(--ink);
}
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.38fr 1fr;
  gap: 32px;
  align-items: center;
  min-height: min(760px, calc(100dvh - 80px));
  padding-block: 42px 70px;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-bottom: 30px;
}
.hero h1 {
  font-size: clamp(3.8rem, 6.7vw, 6.25rem);
  font-weight: 450;
  letter-spacing: -0.065em;
  line-height: 1.03;
  max-width: 760px;
}
.hero h1 span {
  display: block;
  white-space: nowrap;
}
.hero-description {
  font-size: 1.18rem;
  max-width: 365px;
  color: var(--muted);
  margin-top: 30px;
}
.button {
  display: inline-flex;
  gap: 35px;
  align-items: center;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 17px 22px;
  border: 0;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  transition: transform 0.22s ease;
}
.button span {
  font-size: 1.25rem;
}
.button:hover {
  transform: translateY(-3px);
}
.button:active {
  transform: translateY(1px);
}
.hero .button {
  margin-top: 33px;
}
.hero-art {
  aspect-ratio: 4/5;
  max-height: 560px;
  background: var(--accent);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-art .brand-study {
  width: 65%;
  height: 65%;
  object-fit: contain;
}
.section-heading {
  margin-bottom: 55px;
  max-width: 660px;
}
h2 {
  font-size: clamp(2.8rem, 4.8vw, 4.75rem);
  font-weight: 420;
  letter-spacing: -0.055em;
  line-height: 1.05;
}
.section-heading p {
  color: var(--muted);
  max-width: 390px;
  margin-top: 22px;
}
.offer-list {
  border-top: 1px solid var(--line);
}
.offer-list article {
  padding: 35px 0;
  border-bottom: 1px solid var(--line);
}
h3 {
  font-size: 2rem;
  font-weight: 450;
  letter-spacing: -0.035em;
}
.offer-list p {
  color: var(--muted);
  margin-top: 8px;
}
.approach {
  border-top: 1px solid var(--line);
}
.approach > p {
  margin-top: 30px;
  max-width: 510px;
  color: var(--muted);
}
.site-footer {
  padding-block: 32px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
}
.site-footer p,
.site-footer a {
  font-size: 0.875rem;
}
.site-footer p {
  color: var(--muted);
}
.services {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 90px;
  border-top: 1px solid var(--line);
}
.services .section-heading {
  position: sticky;
  top: 40px;
  align-self: start;
  margin-bottom: 0;
}
.section-heading .service-note {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 34px;
  color: var(--ink);
}
.offer-list {
  min-width: 0;
}
.offer {
  border-bottom: 1px solid var(--line);
}
.offer summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  cursor: pointer;
  list-style: none;
}
.offer summary::-webkit-details-marker {
  display: none;
}
.offer-type {
  display: block;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.offer-title {
  display: block;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 450;
  letter-spacing: -0.035em;
  line-height: 1.2;
}
.expand-symbol {
  position: relative;
  display: block;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}
.expand-symbol::before,
.expand-symbol::after {
  content: "";
  position: absolute;
  background: var(--ink);
  inset: 9px 2px;
  height: 1.5px;
}
.expand-symbol::after {
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}
.offer[open] .expand-symbol::after {
  transform: rotate(0);
}
.offer[open] .offer-title {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 7px;
  text-decoration-thickness: 3px;
}
.offer-body {
  padding: 0 0 28px;
}
.offer-body > p {
  max-width: 490px;
  font-size: 1rem;
  color: var(--muted);
}
.deliverables {
  padding: 0;
  margin: 23px 0 30px;
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: 0.9375rem;
}
.deliverables li {
  position: relative;
  padding-left: 21px;
}
.deliverables li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--muted);
}
.offer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.875rem;
}
.offer-bottom > span {
  color: var(--muted);
}
.offer-bottom a {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
}
.offer-bottom a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.offer summary:hover .offer-title {
  color: var(--muted);
}
.approach-intro {
  max-width: 1090px;
}
.approach-intro .eyebrow {
  margin-bottom: 28px;
}
.approach-intro h2 {
  font-size: clamp(2.8rem, 5.6vw, 5.35rem);
}
.approach-intro > p:last-child {
  max-width: 470px;
  margin-top: 30px;
  color: var(--muted);
}
.ownership-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 60px;
  margin-top: 66px;
}
.role-word {
  display: block;
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.ownership h3 {
  font-size: 1.45rem;
  line-height: 1.2;
  max-width: 270px;
}
.ownership p {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 15px;
  max-width: 300px;
}
.control-note {
  margin-top: 50px;
  background: var(--surface);
  padding: 25px 30px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  border-radius: var(--radius);
}
.control-note p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}
.control-note strong {
  font-weight: 500;
  color: var(--ink);
}
.care {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 100px;
  align-items: center;
  border-top: 1px solid var(--line);
}
.care-art {
  overflow: hidden;
  border-radius: var(--radius);
}
.care-art img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.care-copy > p {
  color: var(--muted);
  margin-top: 25px;
  max-width: 330px;
}
.care-options {
  margin-top: 36px;
  display: grid;
  gap: 28px;
}
.care-options h3 {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.care-options p {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 7px;
  max-width: 370px;
}
.care-copy .scope-note {
  font-size: 0.8125rem;
  line-height: 1.6;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 30px;
  max-width: 380px;
}
.evidence {
  border-top: 1px solid var(--line);
}
.evidence-title {
  max-width: 900px;
}
.evidence-title > p {
  max-width: 510px;
  margin-top: 25px;
  color: var(--muted);
}
.evidence-principles {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 50px;
}
.evidence-principles p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 260px;
}
.evidence-principles span {
  display: block;
  font-size: 1.375rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.contact {
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  padding-block: 95px;
}
.contact h2 {
  font-size: clamp(4rem, 8.7vw, 8.2rem);
  font-weight: 450;
  line-height: 0.97;
  letter-spacing: -0.065em;
}
.contact h2 span {
  color: var(--muted);
}
.contact-copy > p {
  margin-top: 30px;
  color: var(--muted);
}
.contact .button {
  margin-top: 30px;
  gap: 70px;
}
.contact-booking {
  margin-bottom: 12px;
  font-size: 1.05rem;
  text-decoration: underline;
  text-underline-offset: 5px;
  word-break: break-word;
}
.site-footer {
  align-items: center;
}
.site-footer .wordmark {
  font-size: 2rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 44px;
  white-space: nowrap;
}
.site-header nav a:hover,
.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.reveal {
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-pending {
  opacity: 0;
  transform: translateY(22px);
}
@media (min-width: 1440px) {
  .hero {
    gap: 60px;
  }
  .hero h1 {
    font-size: 6.35rem;
  }
}
@media (max-width: 1023px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .hero {
    grid-template-columns: 1.18fr 1fr;
    gap: 26px;
    min-height: 650px;
  }
  .hero h1 {
    font-size: clamp(3.1rem, 6.5vw, 4.5rem);
  }
  .hero-description {
    max-width: 310px;
    font-size: 1.0625rem;
  }
  .site-header {
    gap: 24px;
  }
  .site-header nav {
    gap: 20px;
  }
  .hero-art {
    aspect-ratio: 3/4;
  }
  .section {
    padding-block: 80px;
  }
}
@media (max-width: 767px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 72px;
    gap: 16px;
  }
  .wordmark {
    font-size: 1.9rem;
  }
  .wordmark img {
    width: 32px;
    height: 32px;
  }
  .site-header nav {
    display: none;
  }
  .nav-contact {
    margin-left: auto;
    padding: 9px 12px;
    gap: 14px;
    font-size: 0.875rem;
  }
  .hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 38px;
    min-height: 0;
    padding-block: 42px 52px;
  }
  .hero h1 {
    font-size: clamp(2.8rem, 9.7vw, 4.65rem);
  }
  .eyebrow {
    font-size: 0.6875rem;
    margin-bottom: 24px;
  }
  .hero-description {
    margin-top: 23px;
    max-width: 345px;
    font-size: 1.0625rem;
  }
  .hero .button {
    margin-top: 26px;
  }
  .hero-art {
    aspect-ratio: 5/4;
    max-height: none;
  }
  .hero-art img {
    object-position: 50% 48%;
  }
  .section {
    padding-block: 64px;
  }
  .section-heading {
    margin-bottom: 36px;
  }
  h2 {
    font-size: clamp(2.65rem, 9vw, 4rem);
  }
  h3 {
    font-size: 1.7rem;
  }
  .site-footer {
    flex-direction: column;
    padding-block: 26px;
    gap: 12px;
  }
}
@media (max-width: 1023px) {
  .services {
    gap: 50px;
    grid-template-columns: 0.75fr 1.25fr;
  }
  .offer-title {
    font-size: 1.5rem;
  }
  .ownership-grid {
    gap: 30px;
  }
  .care {
    gap: 45px;
  }
  .control-note {
    gap: 24px;
    padding: 24px;
  }
  .evidence-principles {
    gap: 30px;
  }
  .contact {
    gap: 30px;
  }
  .contact-booking {
    font-size: 0.9375rem;
  }
}
@media (max-width: 767px) {
  .services {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .services .section-heading {
    position: static;
  }
  .section-heading .service-note {
    margin-top: 20px;
  }
  .offer summary {
    padding: 24px 0;
    gap: 15px;
  }
  .offer-title {
    font-size: clamp(1.4rem, 5.6vw, 1.85rem);
  }
  .offer-type {
    font-size: 0.8125rem;
  }
  .offer-body > p {
    font-size: 1rem;
  }
  .ownership-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 40px;
  }
  .role-word {
    margin-bottom: 10px;
  }
  .ownership h3 {
    max-width: none;
    font-size: 1.4rem;
  }
  .ownership p {
    max-width: 390px;
  }
  .control-note {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 36px;
    padding: 22px;
  }
  .care {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .care-copy h2 br {
    display: none;
  }
  .care-copy > p,
  .care-options p,
  .care-copy .scope-note {
    max-width: 420px;
  }
  .care-options {
    gap: 24px;
    margin-top: 28px;
  }
  .evidence-principles {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 34px;
  }
  .evidence-principles p {
    max-width: none;
  }
  .evidence-principles span {
    margin-bottom: 4px;
  }
  .contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding-block: 64px;
  }
  .contact h2 {
    font-size: clamp(3.5rem, 15vw, 6rem);
  }
  .contact-booking {
    font-size: 1rem;
    margin-bottom: 0;
  }
  .site-footer {
    align-items: flex-start;
  }
  .footer-links {
    margin-top: 10px;
  }
}
h1,
h2,
h3 {
  overflow-wrap: break-word;
}
.hero-copy,
.care-copy,
.section-heading,
.contact-copy {
  min-width: 0;
}
.button {
  max-width: 100%;
}
@media (max-width: 767px) {
  .hero h1 span {
    white-space: normal;
  }
  .hero-art {
    aspect-ratio: 4/5;
    max-height: 600px;
  }
  .button {
    white-space: normal;
  }
  .site-header {
    flex-wrap: wrap;
    height: auto;
    min-height: 72px;
    padding-block: 12px;
  }
  .contact {
    width: calc(100% - 40px);
  }
  .contact h2 {
    overflow-wrap: anywhere;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: enter 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  .hero-art {
    animation: enter 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
  }
  @keyframes enter {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
}
