@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;450;500;600&display=swap");

:root {
  --color-ink: #161616;
  --color-ink-soft: #2f2f2d;
  --color-muted: #6f6d68;
  --color-paper: #f7f6f3;
  --color-white: #ffffff;
  --color-warm-white: #f2eee7;
  --color-stone: #d4ccc2;
  --color-stone-mid: #a6a09a;
  --color-concrete: #625e58;
  --color-wood: #4f3321;
  --color-line: rgba(22, 22, 22, 0.14);
  --font-main: "Neue Haas Grotesk", "Inter", "Helvetica Neue", Arial, sans-serif;
  --page-max: 1280px;
  --section-x: clamp(24px, 6vw, 78px);
  --transition: 180ms ease;
  --ease-luxe: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-ink);
  background: var(--color-paper);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.01em;
}
body.is-ready main {
  animation: pageFadeUp 620ms var(--ease-luxe) both;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin: 0; }
p, h1, h2, h3, a, span { overflow-wrap: break-word; }

.site-shell {
  width: min(100%, var(--page-max));
  margin: 0 auto;
  background: var(--color-white);
  overflow: hidden;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  width: min(100%, var(--page-max));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 42px var(--section-x) 0;
}

.static-header {
  position: sticky;
  transform: none;
  left: auto;
  border-bottom: 1px solid rgba(22, 22, 22, 0.08);
  background: rgba(247, 246, 243, 0.94);
  backdrop-filter: blur(14px);
  padding-bottom: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(18px, 1.6vw, 23px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.logo img {
  width: clamp(34px, 3.5vw, 46px);
  height: clamp(34px, 3.5vw, 46px);
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.3vw, 48px);
  font-size: 14px;
  font-weight: 450;
}
.nav a {
  position: relative;
  padding-bottom: 5px;
  border-bottom: 0;
  transition: opacity var(--transition);
}
.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 420ms var(--ease-luxe);
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.menu-button {
  display: none;
  width: 28px;
  height: 20px;
  border: 0;
  background: transparent;
  padding: 0;
}
.menu-button span {
  display: block;
  height: 1px;
  margin: 6px 0;
  background: var(--color-ink);
}

.hero {
  position: relative;
  min-height: 800px;
  padding: 180px var(--section-x) 116px;
  display: grid;
  align-items: center;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(247,246,243,0.97) 0%, rgba(247,246,243,0.86) 28%, rgba(247,246,243,0.18) 58%, rgba(247,246,243,0) 100%),
    url("assets/hero-exterior.jpg");
  background-size: cover;
  background-position: 100% center;
  background-repeat: no-repeat;
  transform: scale(1);
  animation: imageSettle 720ms var(--ease-luxe) both;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  z-index: -1;
  background: linear-gradient(0deg, rgba(247,246,243,0.52), transparent);
}
.hero-content { width: 100%; max-width: 500px; }
.hero-content, .page-hero > div, .body-copy, .contact-details, .contact-form { min-width: 0; }
.hero-content > *, .page-hero > div > * {
  animation: softRise 680ms var(--ease-luxe) both;
}
.hero-content > :nth-child(1), .page-hero > div > :nth-child(1) { animation-delay: 80ms; }
.hero-content > :nth-child(2), .page-hero > div > :nth-child(2) { animation-delay: 180ms; }
.hero-content > :nth-child(3), .page-hero > div > :nth-child(3) { animation-delay: 300ms; }
.hero-content > :nth-child(4), .page-hero > div > :nth-child(4) { animation-delay: 420ms; }
.hero h1 {
  margin: 0 0 34px;
  max-width: 610px;
  font-size: clamp(46px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.055em;
}
.hero p {
  max-width: 420px;
  margin: 0 0 30px;
  color: var(--color-ink-soft);
  font-size: 17px;
  line-height: 1.58;
}
.hero-note {
  padding-top: 16px;
  border-top: 1px solid var(--color-line);
  font-size: 24px !important;
  font-weight: 500;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid var(--color-ink);
  background: var(--color-ink);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.button:hover { background: transparent; color: var(--color-ink); transform: translateY(-1px); }
.button-outline { background: transparent; color: var(--color-white); border-color: rgba(255,255,255,0.85); }
.button-outline:hover { background: var(--color-white); color: var(--color-ink); }

.section { padding: 84px var(--section-x); }
.section-label {
  margin: 0 0 18px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
h1, h2 {
  font-weight: 300;
  letter-spacing: -0.045em;
}
h2 {
  margin-bottom: 30px;
  font-size: clamp(30px, 3.3vw, 46px);
  line-height: 1.14;
}
h3 { font-size: 16px; font-weight: 500; }
.body-copy { display: grid; gap: 22px; max-width: 720px; }
.body-copy p, .page-hero p, .about-strip p, .process-grid p, .service-list p, .process-list p, .narrative p, .contact-details {
  color: var(--color-ink-soft);
  font-size: 15px;
  line-height: 1.65;
}
.text-link {
  width: fit-content;
  display: inline-flex;
  margin-top: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 500;
}
.section-kicker {
  max-width: 720px;
  margin-bottom: 34px;
}

.intro-grid, .about-strip {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(52px, 8vw, 120px);
  align-items: start;
}
.about-strip img {
  width: 100%;
  aspect-ratio: 2.2 / 1;
  object-fit: cover;
  object-position: center;
}

.process-preview { padding-top: 10px; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
}
.process-grid article {
  min-height: 140px;
  padding-right: clamp(24px, 3.5vw, 58px);
}
.process-grid article + article {
  border-left: 1px solid var(--color-line);
  padding-left: clamp(24px, 3.5vw, 58px);
}
.process-grid span {
  display: block;
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: -0.03em;
}
.process-grid h3 { margin-bottom: 14px; }

.cta {
  min-height: 500px;
  display: grid;
  grid-template-columns: 0.55fr 0.45fr;
  align-items: center;
  color: var(--color-white);
  background:
    linear-gradient(90deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.08) 40%, rgba(0,0,0,0.76) 100%),
    url("assets/courtyard.jpg");
  background-size: cover;
  background-position: left bottom;
  background-repeat: no-repeat;
}
.cta-image {
  display: none;
}
.cta-content { max-width: 470px; padding: 70px var(--section-x); grid-column: 2; }
.cta .section-label { color: rgba(255,255,255,0.74); }
.cta p { max-width: 330px; margin-bottom: 28px; color: rgba(255,255,255,0.84); }

.page-hero {
  min-height: 450px;
  display: grid;
  align-content: center;
  gap: 24px;
  padding: 92px var(--section-x);
  background: var(--color-paper);
}
.page-hero h1 {
  max-width: 820px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.08;
}
.two-col-hero {
  grid-template-columns: minmax(0, 0.82fr) minmax(330px, 0.72fr);
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
}
.services-hero p {
  margin-top: 24px;
}
.two-col-hero img, .contact-hero img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  object-position: center;
  animation: imageSettle 720ms var(--ease-luxe) 120ms both;
  transition: transform 1800ms var(--ease-luxe);
}
.two-col-hero:hover img { transform: scale(1.02); }
.image-edge-fade {
  position: relative;
  width: 100%;
  background: var(--color-paper);
  overflow: hidden;
}
.image-edge-fade::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to right, var(--color-paper), rgba(247,246,243,0) 10px, rgba(247,246,243,0) calc(100% - 10px), var(--color-paper)),
    linear-gradient(to bottom, var(--color-paper), rgba(247,246,243,0) 10px, rgba(247,246,243,0) calc(100% - 10px), var(--color-paper));
}
.image-edge-fade img {
  width: 100%;
}
.contact-hero img {
  aspect-ratio: 1.18 / 1;
  object-position: center;
}
.contact-hero {
  position: relative;
  min-height: 520px;
  isolation: isolate;
  overflow: hidden;
}
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(247,246,243,0.98) 0%, rgba(247,246,243,0.86) 42%, rgba(247,246,243,0.24) 66%, rgba(247,246,243,0) 100%),
    url("assets/contact-exterior.jpg");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  animation: imageSettle 720ms var(--ease-luxe) 120ms both;
}
.contact-hero > div {
  max-width: 520px;
}
.contact-hero h1 {
  margin-bottom: 24px;
}
.contact-hero img {
  display: none;
}
.about-founder img { object-position: center; }

.service-list { display: grid; gap: 0; border-top: 1px solid var(--color-line); }
.service-list article {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(320px, 1fr);
  gap: clamp(28px, 7vw, 96px);
  padding: 38px clamp(0px, 1.4vw, 18px);
  border-bottom: 1px solid var(--color-line);
  transition: background-color var(--transition);
}
.service-list article:hover { background: rgba(212, 204, 194, 0.16); }
.service-list h2 { margin: 0; font-size: clamp(24px, 2.6vw, 34px); }

.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 34px;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
.process-list article {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-content: start;
  min-height: 210px;
  padding: 30px clamp(20px, 2.5vw, 32px);
}
.process-list article + article { border-left: 1px solid var(--color-line); }
.process-list span { color: var(--color-muted); font-size: 22px; font-weight: 300; }
.process-list h2 { margin: 0; font-size: clamp(19px, 2vw, 25px); line-height: 1.22; }
.process-copy {
  max-width: 780px;
  margin: 12px auto 42px;
  text-align: justify;
}
.process-heading {
  margin-bottom: 24px;
  font-size: clamp(38px, 5vw, 66px);
  text-align: center;
}

.narrative {
  max-width: 780px;
  display: grid;
  gap: 24px;
  margin: 0 auto;
}
.narrative h2 { margin-bottom: 8px; }
.narrative p { text-align: justify; }
.profile-link {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--color-ink);
  align-items: center;
  background: var(--color-ink);
  color: var(--color-white);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.profile-link:hover {
  background: transparent;
  color: var(--color-ink);
  transform: translateY(-1px);
}

.contact-hero {
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.7fr);
  align-items: center;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  border-top: 1px solid var(--color-line);
  scroll-margin-top: 84px;
}
.contact-details {
  display: grid;
  grid-template-rows: 1fr auto 1fr auto;
  align-content: start;
  gap: 22px;
  padding-right: clamp(34px, 6vw, 78px);
  font-size: clamp(19px, 1.5vw, 21px);
  font-weight: 300;
}
.contact-list {
  display: grid;
  gap: 0;
}
.contact-photo-frame {
  width: 128px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-warm-white);
}
.contact-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 12px;
  padding-left: clamp(34px, 6vw, 78px);
  border-left: 1px solid var(--color-line);
  font-size: clamp(16px, 1.35vw, 18px);
}
.contact-form label:has(textarea),
.form-helper,
.contact-form .button {
  grid-column: 1 / -1;
}
.contact-item {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.contact-item svg {
  width: 21px;
  height: 21px;
  margin-top: 5px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-details .button { align-self: end; width: fit-content; }
.contact-form label { display: grid; gap: 4px; color: var(--color-muted); font-size: inherit; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--color-line);
  background: transparent;
  color: var(--color-ink);
  font: inherit;
  outline: none;
  padding: 8px 0;
  min-height: 34px;
}
.contact-form textarea { height: 78px; min-height: 78px; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--color-ink); }
.contact-form .button { width: fit-content; margin-top: 0; cursor: pointer; }
.form-helper {
  max-width: 460px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.55;
}
.form-error {
  min-height: 20px;
  color: var(--color-wood);
  font-size: 13px;
  line-height: 1.45;
}
.consultation-layout {
  border-top: 0;
  background: var(--color-white);
}
.consultation-copy-panel {
  align-content: start;
}
.contact-photo-large {
  background: var(--color-warm-white);
}
.contact-photo-large img {
  object-fit: cover;
  object-position: center;
}
.consultation-copy {
  display: grid;
  gap: 18px;
}
.consultation-copy h2 {
  margin: 0;
  max-width: 360px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.045em;
}
.consultation-copy p {
  max-width: 420px;
  color: var(--color-ink-soft);
}
.consultation-benefits {
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
.consultation-benefits .contact-item {
  color: var(--color-ink-soft);
}
.consultation-form input,
.consultation-form textarea {
  border: 1px solid rgba(22, 22, 22, 0.22);
  border-radius: 5px;
}
.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
  color: rgba(47, 47, 45, 0.48);
}
.consultation-submit {
  gap: clamp(32px, 8vw, 108px);
}

@media (min-width: 861px) {
  .contact-grid {
    --contact-column-padding: clamp(48px, 5vw, 76px);
    --contact-column-height: 590px;
    --contact-button-width: 320px;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
    padding-top: clamp(78px, 7vw, 112px);
    padding-bottom: 0;
  }

  .contact-hero-copy span {
    display: block;
  }

  .contact-hero-copy span:first-child {
    white-space: nowrap;
  }

  .contact-details {
    min-height: var(--contact-column-height);
    grid-template-rows: 1fr auto 1fr auto;
    align-content: stretch;
    padding-right: var(--contact-column-padding);
    padding-left: var(--contact-column-padding);
    font-size: 15px;
  }

  .contact-list {
    grid-row: 2;
    gap: 0;
  }

  .contact-item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: clamp(20px, 2vw, 30px);
    align-items: center;
  }

  .contact-item svg {
    width: 28px;
    height: 28px;
    margin-top: 0;
    stroke-width: 1.35;
  }

  .contact-details .button {
    grid-row: 4;
    width: min(var(--contact-button-width), 100%);
    min-height: 58px;
    justify-self: start;
    align-self: end;
    margin-left: 0;
    padding: 0 30px;
    font-size: 12px;
  }

  .contact-form {
    min-height: var(--contact-column-height);
    grid-template-rows: repeat(3, auto) minmax(120px, auto) 1fr auto;
    gap: 18px;
    padding-right: var(--contact-column-padding);
    padding-left: var(--contact-column-padding);
    border-left: 1px solid var(--color-line);
    font-size: 12px;
  }

  .contact-form input {
    min-height: 58px;
    padding: 10px 0 18px;
  }

  .contact-form textarea {
    height: 126px;
    min-height: 126px;
    padding: 10px 0 18px;
  }

  .contact-form label {
    font-size: 12px;
  }

  .contact-form .button {
    width: min(var(--contact-button-width), 100%);
    min-height: 58px;
    margin-top: 0;
    align-self: end;
    justify-self: start;
    padding: 0 30px;
    font-size: 12px;
  }

  .about-founder {
    grid-template-columns: minmax(0, 0.72fr) minmax(430px, 0.86fr);
  }

  .about-founder img {
    width: 100%;
    aspect-ratio: 1.35 / 1;
    justify-self: end;
    object-fit: cover;
    object-position: right center;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
  }

  .consultation-layout {
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.44fr);
    min-height: 720px;
    padding-top: clamp(66px, 6vw, 92px);
    padding-bottom: clamp(58px, 5vw, 82px);
  }

  .consultation-copy-panel {
    min-height: auto;
    grid-template-rows: auto auto auto;
    gap: clamp(30px, 3.5vw, 46px);
    padding-right: clamp(34px, 4.8vw, 70px);
    padding-left: clamp(26px, 3.8vw, 54px);
    font-size: 16px;
    border-right: 1px solid var(--color-line);
  }

  .contact-photo-large {
    width: clamp(138px, 12vw, 178px);
  }

  .consultation-copy h2 {
    font-size: clamp(31px, 3vw, 46px);
  }

  .consultation-copy p {
    font-size: 16px;
    line-height: 1.75;
  }

  .consultation-benefits {
    grid-row: auto;
    gap: 26px;
    max-width: 430px;
    padding: 30px 0;
  }

  .consultation-benefits .contact-item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 24px;
    font-size: 16px;
    line-height: 1.45;
  }

  .consultation-benefits .contact-item svg {
    width: 29px;
    height: 29px;
    stroke-width: 1.35;
  }

  .consultation-form {
    min-height: auto;
    grid-template-rows: none;
    gap: clamp(23px, 2.2vw, 32px);
    align-content: start;
    padding-right: clamp(46px, 7.2vw, 112px);
    padding-left: clamp(46px, 7.2vw, 112px);
    border-left: 0;
    font-size: 16px;
  }

  .consultation-form label {
    gap: 12px;
    font-size: 15px;
    letter-spacing: 0.12em;
  }

  .consultation-form input {
    min-height: 66px;
    padding: 0 24px;
  }

  .consultation-form textarea {
    height: 154px;
    min-height: 154px;
    padding: 18px 24px;
  }

  .consultation-form .button {
    width: min(100%, 620px);
    min-height: 72px;
    justify-self: stretch;
    padding: 0 36px;
    font-size: 18px;
  }
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px var(--section-x);
  color: var(--color-muted);
  background: var(--color-paper);
  font-size: 12px;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  flex-wrap: wrap;
}
.footer-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}
.footer-links a:hover { border-color: currentColor; }

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 680ms var(--ease-luxe), transform 680ms var(--ease-luxe);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pageFadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softRise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes imageSettle {
  from {
    opacity: 0;
    transform: scale(1.02);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 860px) {
  .site-header, .static-header {
    position: fixed;
    align-items: center;
    padding: 9px 18px;
    background: rgba(247,246,243,0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(22,22,22,0.045);
  }
  body:not([data-page="home"]) main { padding-top: 52px; }
  .nav {
    position: fixed;
    top: 50px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 4px 18px 12px;
    background: rgba(247,246,243,0.97);
    border-top: 1px solid rgba(22,22,22,0.055);
    transform: translateY(calc(-100% - 52px));
    transition: transform var(--transition);
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { width: fit-content; padding: 10px 0 5px; }
  .menu-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    margin-right: -8px;
  }
  .menu-button span {
    width: 22px;
    margin: 0;
    transform-origin: center;
    transition: transform var(--transition), opacity var(--transition);
  }
  body.menu-open .menu-button span:first-child { transform: translateY(2.5px) rotate(38deg); }
  body.menu-open .menu-button span:last-child { transform: translateY(-2.5px) rotate(-38deg); }
  .logo { gap: 10px; font-size: 15px; }
  .logo img { width: 32px; height: 32px; }
  .hero {
    min-height: 620px;
    padding: 96px 26px 48px;
    align-items: end;
  }
  .hero-content { max-width: 336px; }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(247,246,243,0.72) 0%, rgba(247,246,243,0.66) 30%, rgba(247,246,243,0.54) 66%, rgba(247,246,243,0.70) 100%),
      url("assets/hero-exterior.jpg");
    background-size: cover;
    background-position: 82% center;
    background-repeat: no-repeat;
    filter: saturate(0.72);
  }
  .hero h1 { font-size: clamp(33px, 10.4vw, 44px); margin-bottom: 18px; line-height: 1.07; }
  .hero p { max-width: 330px; margin-bottom: 22px; font-size: 14px; line-height: 1.6; }
  .hero-content > p:not(.hero-note) {
    color: var(--color-ink);
    font-weight: 450;
    text-shadow: 0 1px 18px rgba(247, 246, 243, 0.72);
  }
  .hero-note { padding-top: 12px; }
  .page-hero h1 { font-size: clamp(34px, 10.5vw, 48px); }
  .contact-hero {
    min-height: 400px;
    align-content: start;
    padding-top: 60px;
  }
  .contact-hero::before {
    background:
      linear-gradient(180deg, rgba(247,246,243,0.90) 0%, rgba(247,246,243,0.72) 46%, rgba(247,246,243,0.30) 70%, rgba(247,246,243,0.92) 100%),
      url("assets/contact-exterior.jpg");
    background-size: cover;
    background-position: 70% center;
    background-repeat: no-repeat;
  }
  .contact-hero h1,
  .contact-hero p { max-width: 330px; }
  .home-why-heading span { display: block; }
  .home-why-heading {
    margin-bottom: 6px;
    font-size: clamp(21px, 5.45vw, 24px);
  }
  .home-why-copy p { text-align: justify; }
  .intro-grid { gap: 8px; }
  h2 { font-size: clamp(23px, 6vw, 30px); }
  .section, .page-hero { padding: 44px 26px; }
  .page-hero.contact-hero { padding-top: 60px; }
  .intro-grid, .about-strip, .two-col-hero, .contact-hero, .contact-grid, .service-list article, .cta { grid-template-columns: 1fr; }
  .about-strip { gap: 36px; }
  .about-strip img, .two-col-hero img { order: -1; aspect-ratio: 1.35 / 1; }
  .two-col-hero { gap: 28px; }
  .two-col-hero img { max-height: 270px; object-position: center; }
  .about-founder img { max-height: 320px; object-position: center 38%; }
  .image-edge-fade { max-height: 270px; }
  .body-copy { gap: 16px; max-width: 36rem; }
  .body-copy p, .page-hero p, .about-strip p, .process-grid p, .service-list p, .process-list p, .narrative p, .contact-details {
    font-size: 14px;
    line-height: 1.68;
  }
  .process-list { grid-template-columns: 1fr; }
  .process-list article + article {
    border-left: 0;
    border-top: 1px solid var(--color-line);
  }
  .service-list { border-top-color: rgba(22,22,22,0.12); }
  .service-list article { gap: 12px; padding: 24px 0; }
  .service-list h2 { font-size: clamp(22px, 7vw, 30px); line-height: 1.12; }
  .process-grid { grid-template-columns: 1fr; gap: 28px; }
  .process-grid article, .process-grid article + article { padding: 0 0 26px; border-left: 0; border-bottom: 1px solid var(--color-line); }
  .process-heading { margin-bottom: 18px; font-size: clamp(32px, 10vw, 44px); }
  .process-copy { margin-bottom: 28px; text-align: justify; }
  .process-list { margin-top: 26px; }
  .process-list article { min-height: 0; padding: 20px 0; gap: 10px; }
  .process-list span { font-size: 20px; }
  .process-list h2 { font-size: clamp(19px, 5.8vw, 24px); }
  .narrative { gap: 18px; }
  .narrative p { line-height: 1.72; }
  .profile-link { width: 100%; min-height: 48px; justify-content: center; }
  .cta {
    min-height: 390px;
    background:
      linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.40) 46%, rgba(0,0,0,0.78) 100%),
      url("assets/courtyard.jpg");
    background-size: cover;
    background-position: left bottom;
    background-repeat: no-repeat;
  }
  .cta-image { display: none; }
  .cta-content { grid-column: 1; padding: 42px 26px 50px; }
  .contact-grid { gap: 0; }
  .contact-details {
    grid-template-rows: none;
    gap: 16px;
    padding-right: 0;
    font-size: 18px;
  }
  .contact-item {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 14px;
    min-height: 44px;
    align-items: center;
  }
  .contact-item svg { width: 19px; height: 19px; margin-top: 0; }
  .contact-form {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-left: 0;
    padding-top: 26px;
    border-left: 0;
    border-top: 1px solid var(--color-line);
    font-size: 15px;
  }
  .contact-form input, .contact-form textarea {
    min-height: 44px;
    padding: 10px 0;
  }
  .contact-form textarea { height: 116px; min-height: 116px; }
  .contact-form .button, .contact-details .button {
    width: 100%;
    margin-left: 0;
  }
  .consultation-layout {
    gap: 30px;
    border-top: 0;
  }
  .consultation-copy-panel {
    gap: 26px;
    padding-right: 0;
  }
  .contact-photo-large {
    width: 126px;
  }
  .consultation-copy {
    gap: 14px;
  }
  .consultation-copy h2 {
    max-width: 310px;
    font-size: clamp(27px, 8vw, 34px);
  }
  .consultation-copy p {
    max-width: 360px;
    font-size: 15px;
    line-height: 1.72;
  }
  .consultation-benefits {
    gap: 20px;
    padding: 22px 0;
    border-bottom: 0;
  }
  .consultation-benefits .contact-item {
    font-size: 15px;
  }
  .consultation-benefits .contact-item svg {
    width: 24px;
    height: 24px;
  }
  .consultation-form {
    gap: 16px;
    padding-top: 26px;
    border-top: 1px solid var(--color-line);
  }
  .consultation-form label {
    gap: 9px;
    font-size: 13px;
    letter-spacing: 0.11em;
  }
  .consultation-form input,
  .consultation-form textarea {
    min-height: 54px;
    padding: 0 16px;
  }
  .consultation-form textarea {
    height: 132px;
    min-height: 132px;
    padding-top: 14px;
  }
  .consultation-form .button {
    justify-content: center;
    min-height: 56px;
    padding: 0 22px;
  }
  .site-footer { flex-direction: column; align-items: flex-start; gap: 10px; padding: 18px 26px; }
  .footer-links { display: grid; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  body.is-ready main,
  .hero-content > *,
  .hero::before,
  .page-hero > div > *,
  .contact-hero::before,
  .two-col-hero img,
  .contact-hero img {
    animation: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  .site-header, .static-header { padding: 8px 16px; }
  body:not([data-page="home"]) main { padding-top: 49px; }
  .nav { top: 48px; padding-inline: 16px; transform: translateY(calc(-100% - 50px)); }
  .hero { min-height: 585px; padding: 88px 22px 42px; }
  .hero-content { max-width: 320px; }
  .hero h1 { font-size: clamp(31px, 10.2vw, 41px); }
  .button { width: auto; min-height: 46px; padding-inline: 22px; font-size: 13px; }
  .section, .page-hero { padding: 40px 22px; }
  .contact-hero {
    min-height: 365px;
    padding-top: 46px;
  }
  .contact-grid { padding-top: 38px; padding-bottom: 38px; }
  .cta { min-height: 360px; }
  .cta-content { padding: 38px 22px 46px; }
  .site-footer { padding-inline: 22px; }
}
