:root {
  --ivory: #f6f4f0;
  --paper: #fffdfa;
  --earth: #7b402b;
  --terracotta: #aa5936;
  --ochre: #957b4a;
  --slate: #526572;
  --sage: #5b6f5d;
  --ink: #211c19;
  --muted: #6b625c;
  --line: rgba(33, 28, 25, 0.16);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ivory);
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

.modal-backdrop[hidden],
.collection-card[hidden] {
  display: none !important;
}

.form-honeypot,
.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  background: var(--paper);
  color: var(--earth);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.section-shell,
.nav-shell {
  width: min(1280px, calc(100% - 80px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(33, 28, 25, 0.1);
  background: rgba(246, 244, 240, 0.92);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  gap: 28px;
}

.wordmark {
  justify-self: start;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.07em;
}

.wordmark-dot {
  color: var(--terracotta);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav li,
.site-footer nav li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav a,
.site-footer nav a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.site-footer nav a:hover {
  color: var(--terracotta);
}

.nav-cta {
  justify-self: end;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid var(--earth);
  border-radius: 999px;
  background: var(--earth);
  color: white;
  padding: 0.85rem 1.35rem;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.button--small {
  min-height: 44px;
  padding-inline: 1.1rem;
  font-size: 0.7rem;
}

.button--light {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--earth);
}

.button--light:hover {
  border-color: white;
  background: white;
  color: var(--earth);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.text-link--light {
  color: white;
}

.menu-button,
.mobile-nav {
  display: none;
}

.mobile-nav[hidden] {
  display: none !important;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(540px, 1.1fr);
  min-height: calc(100vh - 78px);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(72px, 8vw, 124px) clamp(40px, 5vw, 92px);
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--earth);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.standards-intro h2,
.approach-copy h2,
.booking-copy h2,
.faq-heading h2,
.closing-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.7rem, 6.8vw, 7.8rem);
  line-height: 0.85;
}

.hero h1 em,
.standards-intro em,
.booking-copy em {
  color: var(--earth);
  font-weight: 400;
}

.hero-lede {
  max-width: 620px;
  margin: 40px 0 0;
  color: #493f39;
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}

.hero-audience {
  max-width: 560px;
  margin: 44px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-art {
  position: relative;
  min-height: 720px;
  margin: 0;
  overflow: hidden;
  background: var(--earth);
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-art:hover img {
  transform: scale(1.018);
}

.hero-art figcaption {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-radius: 999px;
  background: rgba(246, 244, 240, 0.9);
  padding: 12px 18px;
  color: var(--earth);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 253, 250, 0.58);
}

.value-strip article {
  display: flex;
  min-height: 132px;
  align-items: center;
  gap: 22px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.value-strip article:last-child {
  border-right: 0;
}

.value-index {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--earth);
  color: white;
  font-size: 0.68rem;
  font-weight: 750;
}

.value-strip h2 {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.1;
}

.value-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.work-section,
.services-section,
.applications-section,
.standards-section,
.faq-section {
  padding-block: clamp(90px, 10vw, 150px);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: clamp(42px, 7vw, 112px);
}

.section-heading h2,
.standards-intro h2,
.approach-copy h2,
.booking-copy h2,
.faq-heading h2,
.closing-cta h2 {
  font-size: clamp(2.8rem, 5.3vw, 5.7rem);
  line-height: 0.98;
}

.section-heading--split > p,
.standards-intro > p:last-child,
.approach-copy > p,
.booking-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 62px 0 26px;
}

.filter-button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  padding: 0.6rem 1.1rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.filter-button:hover,
.filter-button--active {
  border-color: var(--earth);
  background: var(--earth);
  color: white;
}

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

.collection-card--feature {
  grid-row: span 2;
}

.collection-image {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background: #e8e2da;
  padding: 0;
}

.collection-card--feature .collection-image {
  height: 874px;
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.collection-card:hover .collection-image img,
.collection-image:focus-visible img {
  transform: scale(1.025);
}

.image-action {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.92);
  padding: 0.65rem 1rem;
  color: var(--earth);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transform: translateY(3px);
  transition: transform 180ms ease;
  backdrop-filter: blur(12px);
}

.collection-card:hover .image-action {
  transform: translateY(0);
}

.collection-meta {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 4px 8px;
}

.collection-meta p,
.study-label {
  margin: 0 0 6px;
  color: var(--earth);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collection-meta h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.4vw, 2.7rem);
  font-weight: 500;
  line-height: 1;
}

.collection-meta > span {
  color: var(--muted);
  font-size: 0.74rem;
}

.editorial-statement {
  padding: clamp(72px, 9vw, 128px);
  border-radius: 32px;
  background: var(--earth);
  color: white;
  text-align: center;
}

.editorial-statement .eyebrow {
  color: #f3d8cb;
}

.editorial-statement blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6.7rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.editorial-statement blockquote em {
  color: #f2cbbb;
  font-weight: 400;
}

.statement-foot {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 58px;
}

.statement-foot span {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  padding: 0.62rem 0.95rem;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 64px;
}

.service-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
  transition: transform 200ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card > span {
  font-family: var(--serif);
  font-size: 2.5rem;
}

.service-card h3 {
  margin: auto 0 18px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.4vw, 2.7rem);
  font-weight: 500;
  line-height: 0.98;
}

.service-card p {
  margin: 0 0 28px;
  font-size: 0.86rem;
  line-height: 1.65;
  opacity: 0.82;
}

.service-card a {
  align-self: flex-start;
  border-bottom: 1px solid currentColor;
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.service-card--earth {
  border-color: var(--earth);
  background: var(--earth);
  color: white;
}

.service-card--ivory {
  background: var(--paper);
}

.service-card--slate {
  border-color: var(--slate);
  background: var(--slate);
  color: white;
}

.service-card--sage {
  border-color: var(--sage);
  background: var(--sage);
  color: white;
}

.service-card--earth :focus-visible,
.service-card--slate :focus-visible,
.service-card--sage :focus-visible,
.process-section :focus-visible,
.approach-section :focus-visible,
.booking-section :focus-visible,
.closing-cta :focus-visible,
.site-footer :focus-visible,
.editorial-statement :focus-visible {
  outline-color: var(--paper);
}

.process-section {
  background: var(--slate);
  color: white;
  padding-block: clamp(90px, 10vw, 148px);
}

.section-heading--light {
  display: grid;
  grid-template-columns: 0.35fr 1.65fr;
  gap: 48px;
  align-items: start;
}

.section-heading--light .eyebrow {
  color: #d8e2e6;
}

.section-heading--light h2 {
  max-width: 900px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 88px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 280px;
  padding: 0 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.process-list li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  font-size: 0.68rem;
}

.process-list li div {
  position: absolute;
  right: 24px;
  bottom: 0;
  left: 24px;
}

.process-list h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.process-list p {
  margin: 0;
  color: #dce3e6;
  font-size: 0.78rem;
}

.room-study {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  gap: 24px;
  margin-top: 64px;
}

.room-wall {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 30px;
  background: #ded8cf;
}

.room-wall::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, rgba(255, 255, 255, 0.45), transparent 40%), radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.76), transparent 38%);
}

.room-wall::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 26%;
  background: #b8afa3;
  clip-path: polygon(0 28%, 100% 0, 100% 100%, 0 100%);
}

.room-frame {
  position: absolute;
  z-index: 2;
  top: 16%;
  left: 9%;
  width: 72%;
  padding: 9px;
  background: #41352f;
  box-shadow: 20px 28px 40px rgba(46, 35, 29, 0.22);
}

.room-frame img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.room-bench {
  position: absolute;
  z-index: 3;
  bottom: 17%;
  left: 15%;
  width: 42%;
  height: 54px;
  border-radius: 28px 28px 8px 8px;
  background: #7f654f;
  box-shadow: 0 26px 0 -18px #493a30;
}

.room-shadow {
  position: absolute;
  z-index: 1;
  top: -8%;
  right: 7%;
  width: 32%;
  height: 82%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  filter: blur(2px);
  transform: rotate(18deg);
}

.room-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 30px;
  background: var(--paper);
  padding: clamp(32px, 4vw, 58px);
}

.room-copy h3 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4vw, 4.5rem);
  font-weight: 500;
  line-height: 0.96;
}

.room-copy > p:not(.study-label) {
  margin: 0;
  color: var(--muted);
}

.room-copy dl,
.modal-copy dl {
  margin: 38px 0 0;
}

.room-copy dl div,
.modal-copy dl div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.room-copy dt,
.modal-copy dt {
  color: var(--earth);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.room-copy dd,
.modal-copy dd {
  margin: 0;
  font-size: 0.78rem;
}

.standards-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(60px, 9vw, 132px);
}

.standards-intro {
  align-self: start;
  position: sticky;
  top: 130px;
}

.standards-intro > p:last-child {
  margin-top: 32px;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.standards-grid article {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  border-radius: 26px;
  padding: 28px;
  background: var(--paper);
}

.standards-grid article:nth-child(2) {
  background: #e3d5ce;
}

.standards-grid article:nth-child(3) {
  background: #d7ddd6;
}

.standards-grid article:nth-child(4) {
  background: #d5dde2;
}

.standards-grid span {
  color: var(--earth);
  font-size: 0.68rem;
  font-weight: 750;
}

.standards-grid h3 {
  margin: 12px 0 0;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.standards-grid strong {
  margin-top: auto;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 3.5vw, 4.1rem);
  font-weight: 500;
  line-height: 1;
}

.standards-grid p {
  margin: 18px 0 0;
  color: #514943;
  font-size: 0.78rem;
}

.frame-systems {
  grid-column: 2;
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
}

.frame-systems > p {
  margin: 0 0 14px;
  color: var(--earth);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.frame-systems div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.frame-systems span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.6rem 0.85rem;
  font-size: 0.7rem;
}

.approach-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 820px;
  background: var(--sage);
  color: white;
}

.approach-art {
  overflow: hidden;
}

.approach-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approach-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 8vw, 120px);
}

.approach-copy .eyebrow {
  color: #e5ede4;
}

.approach-copy > p {
  color: #f1f5ef;
}

.approach-copy .approach-lede {
  margin-top: 42px;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.2vw, 2.4rem);
  line-height: 1.25;
}

.approach-copy .approach-lede + p {
  margin-top: 26px;
}

.approach-copy .text-link {
  align-self: flex-start;
  margin-top: 38px;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  gap: clamp(58px, 8vw, 120px);
  margin-block: clamp(80px, 10vw, 150px);
  border-radius: 34px;
  background: var(--slate);
  padding: clamp(42px, 7vw, 100px);
  color: white;
}

.booking-copy .eyebrow {
  color: #e1e9ed;
}

.booking-copy h2 em {
  color: #dce5e9;
}

.booking-copy > p {
  margin-top: 32px;
  color: #e1e8eb;
}

.booking-copy ul {
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.booking-copy li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.78rem;
}

.booking-copy li span {
  color: #dce5e9;
  font-size: 0.64rem;
  font-weight: 750;
}

.booking-form {
  border-radius: 26px;
  background: var(--paper);
  padding: clamp(26px, 4vw, 44px);
  color: var(--ink);
}

.form-topline {
  display: flex;
  gap: 28px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.form-topline div:first-child {
  color: var(--earth);
}

.form-topline span {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.58rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 14px;
}

.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--earth);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.booking-form label span {
  color: var(--muted);
  font-weight: 500;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(33, 28, 25, 0.18);
  border-radius: 12px;
  background: var(--ivory);
  padding: 0.8rem 0.9rem;
  color: var(--ink);
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: none;
}

.booking-form textarea {
  resize: vertical;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-submit {
  width: 100%;
  margin-top: 22px;
  border-color: var(--earth);
  background: var(--earth);
  color: white;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.65rem;
  text-align: center;
}

.form-message {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 18px;
  border-radius: 12px;
  background: #e2e8e2;
  padding: 14px 16px;
  color: var(--sage);
  font-size: 0.76rem;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(60px, 9vw, 132px);
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 88px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.8vw, 1.85rem);
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--earth);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 750;
}

.faq-list summary b {
  color: var(--earth);
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary b {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 680px;
  margin: 0;
  padding: 0 30px 28px 50px;
  color: var(--muted);
  font-size: 0.9rem;
}

.closing-cta {
  margin-bottom: 24px;
  border-radius: 34px;
  background: var(--earth);
  padding: clamp(64px, 9vw, 120px);
  color: white;
  text-align: center;
}

.closing-cta .eyebrow {
  color: #efd8cf;
}

.closing-cta .button {
  margin-top: 42px;
}

.site-footer {
  background: #211c19;
  color: white;
}

.footer-main {
  display: grid;
  grid-template-columns: 0.6fr 1.2fr 0.8fr;
  align-items: start;
  gap: 60px;
  padding-block: 80px;
}

.wordmark--footer {
  font-size: 4.5rem;
}

.footer-main > p {
  max-width: 460px;
  margin: 0;
  color: #c9c0ba;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
  line-height: 1.2;
}

.site-footer nav {
  display: grid;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #9d928b;
  font-size: 0.67rem;
}

.content-shell {
  min-height: 62vh;
  padding-block: clamp(90px, 10vw, 150px);
}

.content-entry {
  max-width: 880px;
  margin-inline: auto;
}

.content-entry + .content-entry {
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid var(--line);
}

.content-entry h1 {
  margin: 0 0 36px;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.entry-content {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.modal-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  overflow-y: auto;
  background: rgba(21, 16, 13, 0.78);
  padding: 26px;
  backdrop-filter: blur(10px);
}

.collection-modal {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(340px, 0.8fr);
  width: min(1080px, 100%);
  max-height: calc(100vh - 52px);
  overflow: auto;
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 253, 250, 0.94);
  color: var(--earth);
  font-size: 1.7rem;
}

.modal-image {
  min-height: 640px;
  background: #ddd4ca;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 76px);
}

.modal-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.modal-description {
  margin: 28px 0 0;
  color: var(--muted);
}

.modal-copy .button {
  align-self: flex-start;
  margin-top: 30px;
}

@media (max-width: 1100px) {
  .section-shell,
  .nav-shell {
    width: min(100% - 48px, 1280px);
  }

  .desktop-nav {
    gap: 16px;
  }

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

  .hero-copy {
    padding-inline: 38px;
  }

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

  .service-card {
    min-height: 350px;
  }

  .process-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 0;
  }

  .process-list li {
    min-height: 240px;
  }

  .booking-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: sticky;
  }

  .nav-shell {
    display: flex;
    justify-content: space-between;
    min-height: 68px;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
  }

  .menu-button span {
    display: block;
    width: 17px;
    height: 1px;
    background: var(--earth);
  }

  .mobile-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    background: var(--ivory);
    padding-inline: 24px;
    opacity: 0;
    transition: max-height 250ms ease, opacity 180ms ease, padding 250ms ease;
  }

  .mobile-nav--open {
    max-height: 560px;
    padding-block: 14px 24px;
    opacity: 1;
  }

  .mobile-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.55rem;
  }

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

  .hero-copy {
    min-height: 650px;
    padding: 90px 24px 60px;
  }

  .hero-art {
    min-height: 68vh;
  }

  .value-strip {
    grid-template-columns: 1fr;
  }

  .value-strip article {
    min-height: 108px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .value-strip article:last-child {
    border-bottom: 0;
  }

  .section-heading--split,
  .section-heading--light,
  .room-study,
  .standards-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .section-heading--split > p {
    max-width: 640px;
  }

  .collection-card--feature {
    grid-row: auto;
  }

  .collection-card--feature .collection-image,
  .collection-image {
    height: 560px;
  }

  .editorial-statement {
    width: calc(100% - 48px);
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 58px;
  }

  .process-list li {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 24px;
    min-height: 0;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-left: 0;
  }

  .process-list li div {
    position: static;
  }

  .process-list h3 {
    margin-top: 4px;
  }

  .room-wall {
    min-height: 520px;
  }

  .standards-intro {
    position: static;
  }

  .frame-systems {
    grid-column: 1;
  }

  .approach-section {
    grid-template-columns: 1fr;
  }

  .approach-art {
    min-height: 640px;
  }

  .booking-section {
    width: calc(100% - 48px);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .wordmark--footer {
    grid-column: 1 / -1;
  }

  .collection-modal {
    grid-template-columns: 1fr;
  }

  .modal-image {
    min-height: 460px;
  }
}

@media (max-width: 620px) {
  .section-shell,
  .nav-shell {
    width: calc(100% - 32px);
  }

  .hero h1 {
    font-size: clamp(3.45rem, 17vw, 5.5rem);
  }

  .hero-copy {
    min-height: 610px;
  }

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

  .hero-art {
    min-height: 570px;
  }

  .hero-art img {
    object-position: 67% center;
  }

  .hero-art figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    border-radius: 16px;
  }

  .value-strip {
    width: calc(100% - 32px);
  }

  .value-strip article {
    padding: 22px;
  }

  .section-heading h2,
  .standards-intro h2,
  .approach-copy h2,
  .booking-copy h2,
  .faq-heading h2,
  .closing-cta h2 {
    font-size: clamp(2.7rem, 14vw, 4.3rem);
  }

  .filter-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .collection-grid {
    grid-auto-columns: 88%;
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
  }

  .collection-card {
    scroll-snap-align: start;
  }

  .collection-card--feature .collection-image,
  .collection-image {
    height: 520px;
  }

  .editorial-statement {
    width: calc(100% - 32px);
    padding: 64px 22px;
    border-radius: 24px;
  }

  .statement-foot {
    flex-wrap: wrap;
  }

  .services-grid,
  .standards-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 330px;
  }

  .room-wall {
    min-height: 410px;
  }

  .room-frame {
    top: 18%;
    left: 6%;
    width: 84%;
  }

  .room-bench {
    bottom: 16%;
    left: 12%;
    width: 55%;
  }

  .approach-art {
    min-height: 520px;
  }

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

  .booking-section {
    width: calc(100% - 32px);
    padding: 42px 20px;
    border-radius: 24px;
  }

  .booking-form {
    padding: 24px 18px;
  }

  .form-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

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

  .form-field--full {
    grid-column: 1;
  }

  .faq-list summary {
    grid-template-columns: 30px 1fr auto;
    min-height: 80px;
    font-size: 1.15rem;
  }

  .faq-list details p {
    padding-left: 42px;
  }

  .closing-cta {
    width: calc(100% - 32px);
    padding: 64px 22px;
    border-radius: 24px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .wordmark--footer {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .modal-backdrop {
    padding: 10px;
  }

  .collection-modal {
    max-height: calc(100vh - 20px);
    border-radius: 20px;
  }

  .modal-image {
    min-height: 380px;
  }

  .modal-copy {
    padding: 38px 24px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
