:root {
  --ink: #202321;
  --ink-soft: #434947;
  --paper: #f8f7f2;
  --white: #fffefa;
  --aqua: #dcecea;
  --aqua-deep: #0e676d;
  --mint: #b9d9d1;
  --rose: #ead8d2;
  --apricot: #efc3a3;
  --sand: #e7e1d7;
  --line: rgba(32, 35, 33, .28);
  --serif: "Cormorant Garamond", "Bodoni 72", Didot, Georgia, serif;
  --sans: Avenir, "Avenir Next", Futura, "Helvetica Neue", Arial, sans-serif;
  --max: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .22em; }
p { margin: 0 0 1.15em; }
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 500; line-height: .98; letter-spacing: -.035em; }
h1 { font-size: clamp(3.8rem, 8vw, 8.7rem); }
h2 { font-size: clamp(3rem, 5.7vw, 6.3rem); }
address { font-style: normal; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 99;
  padding: .75rem 1rem;
  background: var(--ink);
  color: white;
}
.skip-link:focus { top: 1rem; }
.wrap { width: min(calc(100% - 3rem), var(--max)); margin-inline: auto; }
.wrap--wide { --max: 1480px; }
.section { padding-block: clamp(5.5rem, 10vw, 10rem); }
.eyebrow, .index {
  font-size: .76rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.index { color: var(--aqua-deep); }
.lead { font-family: var(--serif); font-size: clamp(1.65rem, 2.7vw, 2.7rem); line-height: 1.18; }
.small-note { font-size: .86rem; line-height: 1.55; color: var(--ink-soft); }

.site-header {
  min-height: 118px;
  padding: 1.1rem clamp(1.5rem, 4vw, 4.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.brand { display: block; padding: .45rem .65rem; text-decoration: none; }
.brand img { width: 240px; }
.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2.7vw, 2.8rem); }
.site-nav a { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.nav-cta { border: 1px solid var(--ink); border-radius: 999px; padding: .75rem 1rem; }

.hero {
  overflow: hidden;
  padding: clamp(5rem, 9vw, 9rem) 0 clamp(5rem, 8vw, 8rem);
  background:
    radial-gradient(circle at 88% 20%, rgba(56, 184, 185, .2), transparent 29%),
    linear-gradient(118deg, #f4efe8 4%, #dfeceb 56%, #d1e9e5 100%);
}
.hero__content { max-width: 1150px; }
.hero .eyebrow { margin-bottom: 2rem; }
.hero h1 { max-width: 1100px; }
.hero h1 em { color: var(--aqua-deep); font-weight: 400; }
.hero__intro { max-width: 760px; margin: 2.25rem 0 2rem auto; font-size: clamp(1.15rem, 2vw, 1.55rem); color: #2d3735; }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero .actions { justify-content: flex-end; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: .78rem 1.2rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--dark { background: var(--ink); color: var(--white); }
.button--dark:hover { background: var(--aqua-deep); }
.button--ghost:hover { background: rgba(255,255,255,.46); }
.hero__visual { position: relative; margin-top: clamp(4rem, 9vw, 8rem); }
.hero-screen { position: relative; width: min(85%, 1050px); overflow: hidden; background: #bddbd6; box-shadow: 0 28px 90px rgba(22, 62, 61, .17); }
.hero-screen img { width: 100%; }
.hero-note { position: absolute; right: 0; bottom: -2rem; margin: 0; font-family: var(--serif); font-size: clamp(1.35rem, 2.6vw, 2.4rem); line-height: 1.05; }
.hero-note span { display: block; margin-bottom: .5rem; font-family: var(--sans); font-size: .72rem; font-weight: 700; letter-spacing: .15em; }

.intro { display: grid; grid-template-columns: .95fr 1.05fr; column-gap: clamp(3rem, 8vw, 9rem); row-gap: 5rem; }
.intro h2 { font-size: clamp(3.4rem, 5.5vw, 6rem); }
.intro__copy { max-width: 620px; padding-top: 1rem; }
.audiences { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.audiences span { min-height: 90px; display: grid; place-items: center; padding: 1rem; border-right: 1px solid var(--line); font-family: var(--serif); font-size: 1.25rem; text-align: center; }
.audiences span:last-child { border-right: 0; }

.case { overflow: hidden; }
.case__grid { display: grid; grid-template-columns: minmax(0, .83fr) minmax(0, 1.17fr); gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.case__grid--reverse { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); }
.case h2 { margin-bottom: 1.25rem; }
.case__copy { max-width: 560px; }
.case__claim { font-family: var(--serif); font-size: clamp(1.7rem, 2.65vw, 2.65rem); line-height: 1.12; }
.tag-list { display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; margin: 2rem 0; list-style: none; }
.tag-list li { padding: .48rem .72rem; border: 1px solid rgba(32,35,33,.42); border-radius: 999px; font-size: .75rem; line-height: 1.2; }
.text-link { display: inline-block; margin-top: 1rem; font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.screen { margin: 0; }
.screen img { width: 100%; }
.screen figcaption, .archive-inset figcaption { margin-top: .8rem; font-size: .7rem; letter-spacing: .09em; text-transform: uppercase; }
.project-split { display: grid; grid-template-columns: minmax(0, 64fr) minmax(360px, 36fr); min-height: clamp(760px, 78vh, 980px); }
.project-split__visual { position: relative; display: grid; place-items: center; padding: clamp(3rem, 7vw, 8rem) clamp(2rem, 5vw, 6rem); background: #afd6d7; }
.project-screen { width: 100%; max-width: 1080px; margin: 0; box-shadow: 0 28px 75px rgba(19, 73, 75, .12); }
.project-screen img { width: 100%; }
.trust-badge { position: absolute; right: clamp(1.5rem, 5vw, 5.5rem); bottom: clamp(1.5rem, 5vw, 5rem); width: clamp(118px, 11vw, 158px); aspect-ratio: 1; display: grid; place-content: center; border-radius: 50%; background: #f04a1f; color: #fff; font-style: italic; text-align: center; text-transform: uppercase; box-shadow: 0 16px 36px rgba(104, 48, 25, .14); transform: rotate(-2deg); }
.trust-badge span { font-family: var(--serif); font-size: 1.35rem; line-height: 1; }
.trust-badge b { margin-top: .55rem; font-size: .78rem; letter-spacing: .12em; }
.trust-badge--hero { right: clamp(1.2rem, 4vw, 3.5rem); bottom: clamp(1.2rem, 4vw, 3.5rem); width: clamp(108px, 12vw, 156px); z-index: 2; }
.project-split__copy { padding: clamp(4rem, 7vw, 8rem) clamp(2.2rem, 6vw, 6rem); display: flex; flex-direction: column; background: #e2eadc; }
.project-split__copy .index { margin-bottom: clamp(4rem, 7vw, 7rem); color: var(--ink); }
.project-split__copy h2 { margin: 0 0 2.6rem; font-size: clamp(5rem, 7.3vw, 8.2rem); line-height: .68; letter-spacing: -.055em; }
.project-split__copy > p:not(.index):not(.project-split__meta) { max-width: 470px; color: #505957; font-size: clamp(1.1rem, 1.45vw, 1.45rem); line-height: 1.8; }
.project-split__meta { margin-top: 1rem; color: #66706d; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.project-link { margin-top: auto; align-self: flex-start; font-size: .78rem; font-weight: 800; letter-spacing: .15em; text-decoration: none; text-transform: uppercase; }
.project-link span { margin-left: .35rem; font-size: 1.15em; }
.project-split--georg { grid-template-columns: minmax(0, 65fr) minmax(360px, 35fr); }
.project-split--georg .project-split__visual { background: #d97a56; }
.project-split--georg .project-split__copy { background: #efbea8; }
.project-split--georg .project-screen { max-width: 1060px; box-shadow: 0 28px 75px rgba(82, 39, 27, .16); }
.project-split--georg .project-split__copy h2 { line-height: .76; }

.case--somata { background: linear-gradient(115deg, #eadbd4 0%, #f4e6e1 48%, #dce6dc 100%); }
.case-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 4rem; margin-bottom: 5rem; }
.case-heading .case__claim { margin-bottom: .3rem; }
.somata-layout { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(2rem, 5vw, 5.5rem); align-items: start; }
.scroll-shot { margin: 0; overflow: hidden; background: #fff; box-shadow: 0 24px 65px rgba(77,54,45,.12); }
.scroll-shot--tall { height: clamp(720px, 77vw, 1120px); }
.scroll-shot--detail { height: clamp(420px, 46vw, 690px); margin-top: 2.5rem; }
.scroll-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.somata-copy { padding-top: 1rem; }
.life-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin: 2rem 0; }
.life-grid span { min-height: 102px; padding: 1rem; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--line); background: rgba(255,255,255,.26); font-family: var(--serif); font-size: 1.25rem; line-height: 1.15; }
.life-grid b { font-family: var(--sans); font-size: .65rem; letter-spacing: .14em; }

.case--physio { background: linear-gradient(135deg, #efc1a3, #f4d5c1 62%, #d6e5df); }
.physio-heading { display: grid; grid-template-columns: .7fr 1.3fr; gap: 1rem 5rem; align-items: end; margin-bottom: clamp(3.5rem, 7vw, 6.5rem); }
.physio-heading h2 { grid-column: 2; }
.physio-heading .case__claim { grid-column: 2; max-width: 780px; margin-bottom: 0; }
.physio-showcase { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: clamp(2.5rem, 7vw, 7rem); align-items: start; }
.physio-crop { height: clamp(620px, 70vw, 970px); margin: 0; overflow: hidden; background: #f8f4ed; box-shadow: 0 26px 70px rgba(70, 44, 34, .16); }
.physio-crop img { width: 100%; height: calc(100% - 48px); object-fit: cover; object-position: top center; }
.physio-crop figcaption, .physio-cards figcaption { height: 48px; display: flex; align-items: center; padding: .7rem 1rem; background: rgba(255,255,255,.78); font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; }
.physio-materials { max-width: 620px; padding-top: clamp(.5rem, 3vw, 3rem); }
.physio-cards { width: min(100%, 560px); margin: 2.5rem 0 0 auto; box-shadow: 0 22px 55px rgba(70,44,34,.15); transform: rotate(1.5deg); }
.physio-cards img { width: 100%; }

.case--communication { background: var(--paper); }
.communication-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.screen--archive img { border: 1px solid rgba(32,35,33,.18); }
.medical-photo-grid { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: 1.35fr .65fr; gap: .8rem; }
.medical-photo-grid figure { margin: 0; overflow: hidden; min-height: 180px; }
.medical-photo-grid figure:first-child { grid-column: 1 / -1; min-height: 430px; }
.medical-photo-grid figure:nth-child(2) { grid-row: 2 / 4; }
.medical-photo-grid img { width: 100%; height: 100%; object-fit: cover; }
.medical-photo-grid figure:nth-child(2) img { object-position: center; }

.services { background: #f7f5ef; }
.services__heading { display: grid; grid-template-columns: .55fr 1.45fr; column-gap: clamp(3rem, 7vw, 7rem); align-items: start; margin-bottom: 4rem; }
.services__heading h2 { grid-column: 2; }
.services__heading > p:last-child { grid-column: 2; max-width: 670px; margin-top: 1.6rem; }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.services__grid article { min-height: 330px; padding: 1.4rem; border-right: 1px solid var(--ink); display: flex; flex-direction: column; }
.services__grid article:last-child { border-right: 0; }
.services__grid span { font-size: .65rem; font-weight: 700; letter-spacing: .14em; }
.services__grid h3 { margin: auto 0 1.2rem; font-size: clamp(1.65rem, 2.5vw, 2.4rem); line-height: 1.02; }
.services__grid p { margin-bottom: 0; font-size: .9rem; line-height: 1.55; }

.heritage { background: #e8e2d7; color: var(--ink); }
.heritage-heading { display: grid; grid-template-columns: .65fr 1.35fr; column-gap: 4rem; margin-bottom: 5rem; }
.heritage-heading .eyebrow { color: #9b6555; }
.heritage-heading p:last-child { grid-column: 2; max-width: 720px; margin-top: 2rem; color: #5c625f; }
.heritage-grid { width: min(100%, 900px); margin-left: auto; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.2rem, 3vw, 2.4rem); align-items: stretch; }
.heritage-grid figure { margin: 0; display: grid; grid-template-rows: 310px auto; background: #f7f4ed; color: var(--ink); box-shadow: 0 20px 48px rgba(64, 56, 45, .08); }
.heritage-grid img { width: 100%; height: 100%; object-fit: contain; object-position: center; padding: 1rem; background: #fffdf9; }
.heritage-grid figcaption { padding: 1.2rem; font-size: .9rem; }
.heritage-grid figcaption span, .heritage-grid figcaption b { display: block; }
.heritage-grid figcaption span { margin-bottom: .5rem; font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.heritage-grid figcaption b { margin-bottom: .3rem; font-family: var(--serif); font-size: 1.5rem; }

.profile { background: #d9e6e4; }
.profile__grid { display: grid; grid-template-columns: .72fr 1fr; gap: clamp(3rem, 8vw, 9rem); align-items: center; }
.profile__mark { width: min(100%, 470px); aspect-ratio: 1; display: grid; place-content: center; border: 1px solid #bd8977; border-radius: 50%; background: #efbaa7; text-align: center; text-decoration: none; transition: background .2s, color .2s, transform .2s; }
.profile__mark:hover { background: var(--ink); color: var(--paper); transform: rotate(-2deg); }
.profile__mark img { width: 80%; margin: 0 auto; }
.profile__copy h2 { margin-bottom: 2rem; font-size: clamp(3.2rem, 5.3vw, 5.6rem); }
.profile__lead { max-width: 680px; color: #56605e; font-size: clamp(1.05rem, 1.45vw, 1.35rem); line-height: 1.8; }

.faq { background: #f3f1eb; }
.faq__grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.faq__items { border-top: 1px solid var(--ink); }
details { border-bottom: 1px solid var(--ink); }
summary { padding: 1.35rem 2.6rem 1.35rem 0; position: relative; cursor: pointer; list-style: none; font-family: var(--serif); font-size: 1.55rem; line-height: 1.2; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: .25rem; top: 1rem; font-family: var(--sans); font-size: 1.5rem; }
details[open] summary::after { content: "–"; }
details p { max-width: 690px; padding: 0 2rem 1.5rem 0; }

.contact { background: linear-gradient(118deg, #dfecea, #b8dcd6 68%, #e7c4b7); }
.contact__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(3rem, 8vw, 8rem); align-items: end; }
.contact h2 { font-size: clamp(3.6rem, 6.5vw, 7rem); }
.contact__grid > div:last-child { padding-bottom: .5rem; }

.site-footer { padding: 3.5rem 0; background: var(--ink); color: #eef3f1; font-size: .84rem; }
.footer__grid { display: grid; grid-template-columns: .75fr 1.3fr .5fr; gap: 2rem; align-items: start; }
.site-footer b { font-family: var(--serif); font-size: 1.7rem; font-weight: 500; }
.site-footer p { color: #abb7b3; }
.site-footer nav { display: flex; flex-direction: column; gap: .5rem; }

.legal { max-width: 940px; }
.legal h1 { margin-bottom: 3rem; }
.legal h2 { margin: 3rem 0 1rem; font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.08; }

@media (max-width: 900px) {
  body { font-size: 16px; }
  .site-header { min-height: auto; align-items: flex-start; }
  .brand img { width: 195px; }
  .site-nav { flex-wrap: wrap; justify-content: flex-end; gap: .75rem 1rem; }
  .site-nav a { font-size: .66rem; }
  .project-split { grid-template-columns: 1fr; min-height: 0; }
  .project-split__visual { min-height: 600px; }
  .project-split__copy { min-height: 670px; }
  .project-split__copy h2 { line-height: .75; }
  .intro, .case__grid, .case__grid--reverse, .case-heading, .somata-layout, .communication-grid, .services__heading, .heritage-heading, .profile__grid, .faq__grid, .contact__grid, .physio-heading, .physio-showcase { grid-template-columns: 1fr; }
  .audiences { grid-template-columns: 1fr 1fr; }
  .audiences span:nth-child(2) { border-right: 0; }
  .audiences span:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .case-heading { gap: 1.5rem; }
  .physio-heading h2, .physio-heading .case__claim { grid-column: auto; }
  .scroll-shot--tall, .scroll-shot--detail, .physio-crop { height: auto; }
  .scroll-shot img, .physio-crop img { height: auto; object-fit: contain; }
  .services__heading h2, .services__heading > p:last-child { grid-column: auto; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .services__grid article:nth-child(2) { border-right: 0; }
  .services__grid article:nth-child(-n+2) { border-bottom: 1px solid var(--ink); }
  .heritage-heading p:last-child { grid-column: auto; }
  .heritage-grid { grid-template-columns: 1fr; }
  .profile__mark { max-width: 320px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer nav { grid-column: 1 / -1; flex-direction: row; }
}

@media (max-width: 620px) {
  .wrap { width: min(calc(100% - 2rem), var(--max)); }
  .section { padding-block: 5rem; }
  .site-header { padding: .8rem 1rem 1rem; flex-direction: column; gap: .7rem; }
  .brand { padding: .3rem 0; }
  .brand img { width: 180px; }
  .site-nav { width: 100%; justify-content: space-between; }
  .site-nav a:nth-child(3) { display: none; }
  .nav-cta { padding: .55rem .7rem; }
  .hero { padding-top: 4.3rem; }
  .hero__intro { margin-left: 0; }
  .hero .actions { justify-content: flex-start; }
  .hero-screen { width: 100%; }
  .hero-note { position: static; margin-top: 1.2rem; }
  .project-split__visual { min-height: 430px; padding: 3rem 1rem; }
  .project-split__copy { min-height: 600px; padding: 4rem 1.5rem; }
  .project-split__copy .index { margin-bottom: 4rem; }
  .project-split__copy h2 { font-size: clamp(4.8rem, 24vw, 7rem); }
  .scroll-shot--tall, .scroll-shot--detail { height: auto; }
  .medical-photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .medical-photo-grid figure:first-child { min-height: 260px; }
  .medical-photo-grid figure:nth-child(2) { grid-row: auto; }
  .medical-photo-grid figure { min-height: 170px; }
  .intro { row-gap: 3rem; }
  .audiences { grid-template-columns: 1fr; }
  .audiences span { border-right: 0; border-bottom: 1px solid var(--line); }
  .audiences span:last-child { border-bottom: 0; }
  .life-grid, .services__grid { grid-template-columns: 1fr; }
  .services__grid article { min-height: 230px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .services__grid article:last-child { border-bottom: 0; }
  .physio-crop { height: auto; }
  .heritage-grid figure { grid-template-rows: 250px auto; }
  .footer__grid { grid-template-columns: 1fr; }
  .site-footer nav { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
