:root {
  --paper: #f7f2e9;
  --paper-soft: #fffaf2;
  --ash: #ddd6ca;
  --ink: #191816;
  --ink-soft: #3f3b35;
  --muted: #766f64;
  --line: rgba(25, 24, 22, 0.14);
  --line-strong: rgba(25, 24, 22, 0.26);
  --timber: #7c5733;
  --timber-dark: #422d1e;
  --moss: #5e654f;
  --moss-deep: #34382c;
  --white: #fffaf4;
  --shadow-soft: 0 24px 70px rgba(45, 34, 23, 0.16);
  --shadow-deep: 0 38px 110px rgba(31, 24, 17, 0.22);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.9), transparent 360px),
    radial-gradient(circle at 90% 24%, rgba(94, 101, 79, 0.2), transparent 360px),
    linear-gradient(135deg, #f8f3eb 0%, #e7dfd3 52%, #f6f0e6 100%);
}

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

.site-shell {
  min-height: 100svh;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.98), rgba(255, 250, 242, 0.78) 46%, rgba(255, 250, 242, 0.08) 72%),
    linear-gradient(120deg, transparent 0 57%, rgba(94, 101, 79, 0.1) 57% 57.4%, transparent 57.4%),
    var(--paper-soft);
}

.hero::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -2;
  width: 46%;
  content: "";
  opacity: 0.34;
  background:
    linear-gradient(90deg, rgba(124, 87, 51, 0.13), transparent),
    repeating-linear-gradient(90deg, rgba(25, 24, 22, 0.08) 0 1px, transparent 1px 44px);
  mask-image: linear-gradient(to right, black, transparent);
}

.hero::after {
  position: absolute;
  right: -190px;
  bottom: -240px;
  z-index: -2;
  width: 680px;
  height: 680px;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(94, 101, 79, 0.24), transparent 64%),
    radial-gradient(circle at 40% 42%, rgba(124, 87, 51, 0.16), transparent 54%);
  filter: blur(4px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1480px, 100%);
  margin: 0 auto;
  padding: 26px 44px 10px;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 230px;
  min-height: 58px;
  padding: 6px 17px 9px 19px;
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.brand:hover {
  opacity: 0.76;
  transform: translateY(-1px);
}

.brand:focus-visible,
.nav-links a:focus-visible,
.nav-cta:focus-visible,
.button:focus-visible,
.hero-flow a:focus-visible,
.content-link:focus-visible,
.reference-contact a:focus-visible,
.credit a:focus-visible {
  outline: 2px solid var(--timber);
  outline-offset: 4px;
}

.brand-frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.brand-frame::before,
.brand-frame::after {
  position: absolute;
  bottom: 0;
  width: 20px;
  height: 34px;
  content: "";
  border-color: var(--ink);
  border-style: solid;
}

.brand-frame::before {
  left: 0;
  border-width: 0 0 3px 3px;
}

.brand-frame::after {
  right: 0;
  border-width: 0 3px 3px 0;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-name {
  font-size: 3.1rem;
  font-weight: 500;
  line-height: 0.88;
}

.brand-sub {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(25, 24, 22, 0.5);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-sub span:not(.brand-mark) {
  color: rgba(25, 24, 22, 0.65);
  font-size: 1.35em;
  line-height: 0;
}

.brand-mark {
  width: 11px;
  height: 11px;
  background: rgba(25, 24, 22, 0.32);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 12px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 190ms var(--ease);
}

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

.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 250, 242, 0.48);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  transition: background 180ms var(--ease), border-color 180ms var(--ease), transform 180ms var(--ease);
}

.nav-cta:hover {
  border-color: rgba(25, 24, 22, 0.48);
  background: rgba(255, 250, 242, 0.8);
  transform: translateY(-1px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(450px, 0.88fr);
  align-items: center;
  gap: 84px;
  width: min(1480px, 100%);
  margin: 0 auto;
  padding: 52px 44px 42px;
}

.hero-copy {
  max-width: 740px;
  animation: reveal 720ms var(--ease) both;
}

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

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

.eyebrow span {
  color: var(--timber-dark);
}

h1 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 8.2rem;
  font-weight: 500;
  line-height: 0.84;
}

.lead {
  max-width: 660px;
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-size: 1.18rem;
  line-height: 1.62;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 25px;
  border-radius: 2px;
  font-size: 0.92rem;
  font-weight: 850;
  transition: background 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

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

.button:active {
  transform: translateY(0) scale(0.985);
}

.button.primary {
  border: 1px solid var(--timber-dark);
  background: var(--timber-dark);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(66, 45, 30, 0.2);
}

.button.primary:hover {
  background: #342419;
  box-shadow: 0 24px 48px rgba(66, 45, 30, 0.28);
}

.button.secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 250, 242, 0.4);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: rgba(25, 24, 22, 0.46);
  background: rgba(255, 250, 242, 0.84);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px 34px;
  margin: 54px 0 0;
}

.trust-list div {
  position: relative;
  min-width: 132px;
  padding-left: 15px;
}

.trust-list div::before {
  position: absolute;
  inset: 8px auto 8px 0;
  width: 2px;
  content: "";
  background: linear-gradient(var(--timber), rgba(124, 87, 51, 0.08));
}

.trust-list dt {
  margin: 0 0 5px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.35rem;
  font-weight: 600;
  line-height: 0.95;
}

.trust-list dd {
  max-width: 150px;
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 690px;
  animation: reveal 820ms 80ms var(--ease) both;
}

.hero-visual::before {
  position: absolute;
  inset: 54px auto auto -6px;
  width: 74%;
  height: 74%;
  content: "";
  border: 1px solid rgba(25, 24, 22, 0.18);
  transform: rotate(-3deg);
}

.hero-visual::after {
  position: absolute;
  right: 46px;
  bottom: 64px;
  width: 160px;
  height: 160px;
  content: "";
  border: 1px solid rgba(25, 24, 22, 0.16);
  background: rgba(255, 250, 242, 0.38);
  transform: rotate(8deg);
}

.image-card {
  position: absolute;
  inset: 0 0 auto auto;
  width: min(86%, 680px);
  aspect-ratio: 4 / 3;
  height: auto;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 2px;
  background: #d7c6b0;
  box-shadow: var(--shadow-deep);
}

.image-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(25, 24, 22, 0), rgba(25, 24, 22, 0.34)),
    linear-gradient(90deg, rgba(255, 250, 242, 0.2), transparent 45%);
  pointer-events: none;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% 52%;
  transform: scale(1.03);
  transition: transform 900ms var(--ease);
}

.hero-visual:hover .image-card img {
  transform: scale(1.07);
}

.image-note {
  position: absolute;
  top: 34px;
  right: 18px;
  bottom: auto;
  z-index: 4;
  display: grid;
  gap: 6px;
  width: min(320px, 48%);
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 2px;
  background: rgba(255, 250, 242, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.image-note span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.image-note strong {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.08;
}

.service-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: min(390px, 72%);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 2px;
  background: rgba(255, 250, 242, 0.88);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.service-panel p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.service-panel ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-panel li {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 750;
}

.service-panel li span {
  color: var(--timber);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.hero-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1480px, calc(100% - 88px));
  margin: 0 auto 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  animation: reveal 780ms 160ms var(--ease) both;
}

.hero-flow a {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 24px 28px;
  overflow: hidden;
  transition: background 190ms var(--ease), transform 190ms var(--ease);
}

.hero-flow a + a {
  border-left: 1px solid var(--line);
}

.hero-flow a::after {
  position: absolute;
  right: 24px;
  bottom: 21px;
  width: 24px;
  height: 1px;
  content: "";
  background: var(--timber);
  transform: scaleX(0.6);
  transform-origin: right;
  transition: transform 190ms var(--ease);
}

.hero-flow a:hover {
  background: rgba(255, 250, 242, 0.5);
  transform: translateY(-2px);
}

.hero-flow a:hover::after {
  transform: scaleX(1);
}

.hero-flow span {
  color: var(--timber-dark);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-flow strong {
  max-width: 330px;
  color: var(--ink-soft);
  font-size: 1rem;
  font-weight: 550;
  line-height: 1.45;
}

.credit {
  display: flex;
  justify-content: flex-end;
  min-height: 34px;
  padding: 10px 22px 0;
  color: rgba(25, 24, 22, 0.46);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.credit a {
  transition: color 160ms var(--ease);
}

.credit a:hover {
  color: var(--ink);
}

.home-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(380px, 0.82fr);
  gap: 74px;
  width: min(1380px, calc(100% - 88px));
  margin: 0 auto;
  padding: 82px 0 86px;
  border-bottom: 1px solid var(--line);
}

.home-intro h2,
.all-services h2,
.consultation-card h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4.25rem;
  font-weight: 500;
  line-height: 0.92;
}

.home-intro p,
.consultation-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.72;
}

.home-intro p + p {
  margin-top: 18px;
}

.content-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--timber-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  transition: color 180ms var(--ease), transform 180ms var(--ease);
}

.content-link:hover {
  color: var(--ink);
  transform: translateX(4px);
}

.inner-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.9), transparent 360px),
    linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(232, 222, 207, 0.72));
}

.inner-page .topbar {
  border-bottom: 1px solid var(--line);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.62fr);
  align-items: center;
  gap: 70px;
  width: min(1380px, calc(100% - 88px));
  margin: 0 auto;
  padding: 78px 0 84px;
  animation: reveal 700ms var(--ease) both;
}

.page-hero.compact {
  display: block;
  max-width: 980px;
  margin-left: calc((100% - min(1380px, calc(100% - 88px))) / 2);
}

.page-hero.service-detail {
  padding-bottom: 62px;
}

.page-kicker {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0 0 20px;
  color: var(--timber-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.page-kicker::before {
  width: 34px;
  height: 1px;
  content: "";
  background: var(--timber);
}

.page-title {
  max-width: 920px;
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 6.25rem;
  font-weight: 500;
  line-height: 0.88;
}

.page-lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 1.12rem;
  line-height: 1.66;
}

.back-link {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  transition: color 180ms var(--ease), transform 180ms var(--ease);
}

.back-link:hover {
  color: var(--ink);
  transform: translateX(-3px);
}

.page-visual {
  position: relative;
  min-height: 440px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: #d8c9b6;
  box-shadow: var(--shadow-soft);
}

.page-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(25, 24, 22, 0), rgba(25, 24, 22, 0.26));
  pointer-events: none;
}

.page-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}

.page-visual:hover img {
  transform: scale(1.045);
}

.page-visual.portrait {
  min-height: 560px;
}

.page-visual.landscape,
.page-visual.wide {
  min-height: 440px;
}

.page-visual.portrait img {
  object-position: 50% 52%;
}

.page-visual.landscape img {
  object-position: 50% 50%;
}

.service-index {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1380px, calc(100% - 88px));
  margin: 0 auto 70px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-tile {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 330px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition: background 190ms var(--ease), transform 190ms var(--ease);
}

.service-tile::after {
  position: absolute;
  right: 26px;
  bottom: 26px;
  width: 34px;
  height: 1px;
  content: "";
  background: var(--timber);
  transform: scaleX(0.55);
  transform-origin: right;
  transition: transform 190ms var(--ease);
}

.service-tile:hover {
  background: rgba(255, 250, 242, 0.56);
  transform: translateY(-3px);
}

.service-tile:hover::after {
  transform: scaleX(1);
}

.service-tile span,
.detail-list span {
  color: var(--timber);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
}

.service-tile h2 {
  max-width: 260px;
  margin: 42px 0 16px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.45rem;
  font-weight: 600;
  line-height: 0.95;
}

.service-tile p {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.58;
}

.service-tile.quiet {
  background: rgba(94, 101, 79, 0.08);
}

.all-services,
.consultation-card,
.reference-contact {
  width: min(1380px, calc(100% - 88px));
  margin-right: auto;
  margin-left: auto;
}

.all-services {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(420px, 0.9fr);
  gap: 70px;
  padding: 8px 0 74px;
}

.all-services ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--line);
  list-style: none;
}

.all-services li {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 18px 20px;
  background: rgba(255, 250, 242, 0.64);
  color: var(--ink);
  font-weight: 750;
}

.all-services li::before {
  width: 8px;
  height: 8px;
  margin-right: 12px;
  content: "";
  border: 1px solid var(--timber);
  background: rgba(124, 87, 51, 0.15);
}

.consultation-card {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(420px, 0.9fr);
  gap: 70px;
  margin-bottom: 74px;
  padding: 32px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.6);
}

.two-column,
.image-story,
.text-section,
.proof-strip,
.project-grid,
.contact-layout,
.note-band,
.cta-panel,
.site-footer {
  width: min(1380px, calc(100% - 88px));
  margin-right: auto;
  margin-left: auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(380px, 0.8fr);
  gap: 74px;
  padding: 24px 0 84px;
}

.statement {
  position: sticky;
  top: 32px;
  align-self: start;
}

.statement h2,
.image-story h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4.35rem;
  font-weight: 500;
  line-height: 0.92;
}

.statement p,
.image-story p,
.text-section p {
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.72;
}

.detail-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.detail-list div {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 20px;
  padding: 26px;
  background: rgba(255, 250, 242, 0.62);
}

.detail-list h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.15rem;
}

.detail-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.image-story {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 0.75fr);
  align-items: center;
  gap: 70px;
  padding: 12px 0 84px;
}

.image-story figure {
  min-height: 580px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.image-story img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-weight: 750;
}

.check-list li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  border: 1px solid var(--timber);
  background: rgba(124, 87, 51, 0.15);
}

.text-section {
  max-width: 920px;
  padding: 0 0 68px;
}

.text-section p {
  font-size: 1.2rem;
}

.text-section strong {
  color: var(--timber-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35em;
  font-weight: 600;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 76px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  display: grid;
  gap: 8px;
  padding: 28px;
}

.proof-strip div + div {
  border-left: 1px solid var(--line);
}

.proof-strip strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3rem;
  line-height: 0.9;
}

.proof-strip span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 78px;
}

.project-grid article {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #d8c9b6;
  box-shadow: var(--shadow-soft);
}

.project-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}

.project-grid article:hover img {
  transform: scale(1.055);
}

.project-grid article::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 35%, rgba(25, 24, 22, 0.72));
}

.project-grid div {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  color: var(--white);
}

.project-grid span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.project-grid h2 {
  max-width: 340px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.45rem;
  font-weight: 600;
  line-height: 0.95;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.74fr);
  gap: 72px;
  padding: 76px 0 60px;
}

.contact-intro {
  align-self: start;
}

.contact-cards {
  display: grid;
  gap: 1px;
  max-width: 560px;
  margin-top: 38px;
  border: 1px solid var(--line);
  background: var(--line);
}

.contact-cards a,
.contact-cards div {
  display: grid;
  gap: 6px;
  padding: 22px;
  background: rgba(255, 250, 242, 0.66);
}

.contact-cards span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-cards strong {
  color: var(--ink);
  font-size: 1.1rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.68);
  box-shadow: var(--shadow-soft);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(25, 24, 22, 0.18);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  outline: 0;
  transition: border-color 170ms var(--ease), box-shadow 170ms var(--ease), background 170ms var(--ease);
}

.contact-form input {
  min-height: 48px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--timber);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 0 0 3px rgba(124, 87, 51, 0.12);
}

.contact-form .full,
.contact-form button.full {
  grid-column: 1 / -1;
}

.note-band {
  padding: 24px 0 74px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.note-band p {
  max-width: 780px;
  margin: 0;
  font-weight: 750;
  line-height: 1.5;
}

.reference-contact {
  display: flex;
  gap: 1px;
  margin-top: -40px;
  margin-bottom: 76px;
  border: 1px solid var(--line);
  background: var(--line);
}

.reference-contact a {
  flex: 1;
  padding: 22px;
  background: rgba(255, 250, 242, 0.64);
  color: var(--ink);
  font-weight: 850;
  text-align: center;
  transition: background 180ms var(--ease), transform 180ms var(--ease);
}

.reference-contact a:hover {
  background: rgba(255, 250, 242, 0.86);
  transform: translateY(-2px);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 78px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.58);
}

.cta-panel p {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
  padding: 22px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.sholm-credit {
  opacity: 0.72;
}

.rich-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto auto;
  align-items: start;
  gap: 34px;
  min-height: auto;
  padding: 34px 0;
}

.footer-brand {
  display: grid;
  gap: 10px;
}

.footer-brand p,
.footer-column p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.5;
  text-transform: none;
}

.footer-brand p {
  max-width: 420px;
}

.footer-column {
  display: grid;
  gap: 10px;
}

.footer-column span {
  color: var(--ink);
}

.footer-column a:hover {
  color: var(--ink);
}

@keyframes reveal {
  from {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@media (max-width: 1240px) {
  h1 {
    font-size: 6.5rem;
  }

  .page-title {
    font-size: 5.2rem;
  }

  .hero-grid {
    gap: 52px;
  }

  .service-index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1040px) {
  .topbar {
    align-items: flex-start;
    padding-right: 28px;
    padding-left: 28px;
  }

  .nav-links {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 52px;
    padding-right: 28px;
    padding-left: 28px;
  }

  .hero-copy {
    max-width: 880px;
  }

  h1 {
    max-width: 840px;
    font-size: 6rem;
  }

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

  .image-card {
    width: 78%;
    height: 560px;
  }

  .hero-flow {
    width: calc(100% - 56px);
  }

  .page-hero,
  .home-intro,
  .all-services,
  .consultation-card,
  .two-column,
  .image-story,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .page-hero,
  .home-intro,
  .all-services,
  .consultation-card,
  .reference-contact,
  .service-index,
  .two-column,
  .image-story,
  .text-section,
  .proof-strip,
  .project-grid,
  .contact-layout,
  .note-band,
  .cta-panel,
  .site-footer {
    width: calc(100% - 56px);
  }

  .page-hero.compact {
    width: calc(100% - 56px);
    margin-right: auto;
    margin-left: auto;
  }

  .page-visual.portrait,
  .page-visual.landscape,
  .page-visual.wide,
  .image-story figure {
    min-height: 460px;
  }

  .statement {
    position: static;
  }

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

  .project-grid article {
    min-height: 420px;
  }

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

@media (max-width: 780px) {
  .topbar {
    gap: 18px;
    padding: 16px 16px 8px;
  }

  .brand {
    min-width: 176px;
    min-height: 48px;
    padding: 5px 12px 8px 14px;
  }

  .brand-frame::before,
  .brand-frame::after {
    width: 15px;
    height: 28px;
  }

  .brand-name {
    font-size: 2.25rem;
  }

  .brand-sub {
    gap: 6px;
    font-size: 0.65rem;
  }

  .brand-mark {
    width: 8px;
    height: 8px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.68rem;
  }

  .hero-grid {
    padding: 32px 16px 34px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 0.68rem;
  }

  .eyebrow::before {
    width: 24px;
  }

  h1 {
    font-size: 4.55rem;
    line-height: 0.88;
  }

  .lead {
    margin-top: 24px;
    font-size: 1rem;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .trust-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 34px;
  }

  .trust-list div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    max-width: none;
  }

  .trust-list dd {
    max-width: 190px;
    text-align: right;
  }

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

  .hero-visual::before {
    inset: 34px auto auto 3px;
    width: 78%;
    height: 70%;
  }

  .hero-visual::after {
    right: 18px;
    bottom: 74px;
    width: 118px;
    height: 118px;
  }

  .image-card {
    width: 86%;
    height: 410px;
  }

  .image-note {
    top: 22px;
    right: 0;
    bottom: auto;
    width: min(260px, 58%);
    padding: 15px;
  }

  .image-note strong {
    font-size: 1.22rem;
  }

  .service-panel {
    width: min(330px, 92%);
    padding: 19px;
  }

  .hero-flow {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    margin-bottom: 20px;
  }

  .hero-flow a + a {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-flow a {
    min-height: 92px;
    padding: 20px;
  }

  .credit {
    justify-content: center;
    padding-right: 12px;
    padding-left: 12px;
    text-align: center;
  }

  .page-hero,
  .home-intro,
  .all-services,
  .consultation-card,
  .reference-contact,
  .service-index,
  .two-column,
  .image-story,
  .text-section,
  .proof-strip,
  .project-grid,
  .contact-layout,
  .note-band,
  .cta-panel,
  .site-footer {
    width: calc(100% - 32px);
  }

  .page-hero,
  .home-intro,
  .all-services,
  .contact-layout {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .all-services,
  .consultation-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .all-services ul {
    grid-template-columns: 1fr;
  }

  .consultation-card {
    margin-bottom: 48px;
    padding: 22px;
  }

  .page-title {
    font-size: 3.9rem;
    line-height: 0.9;
  }

  .page-lead {
    margin-top: 22px;
    font-size: 1rem;
  }

  .page-kicker {
    font-size: 0.68rem;
  }

  .page-kicker::before {
    width: 24px;
  }

  .service-index {
    grid-template-columns: 1fr;
    margin-bottom: 42px;
  }

  .service-tile {
    min-height: 230px;
    padding: 22px;
  }

  .service-tile h2 {
    margin-top: 26px;
    font-size: 2.1rem;
  }

  .two-column,
  .image-story {
    padding-bottom: 52px;
  }

  .statement h2,
  .image-story h2,
  .home-intro h2,
  .all-services h2,
  .consultation-card h2 {
    font-size: 3.1rem;
  }

  .detail-list div {
    grid-template-columns: 42px 1fr;
    padding: 20px;
  }

  .page-visual.portrait,
  .page-visual.landscape,
  .page-visual.wide,
  .image-story figure {
    min-height: 340px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    margin-bottom: 48px;
  }

  .proof-strip div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .project-grid {
    gap: 12px;
    padding-bottom: 48px;
  }

  .project-grid article {
    min-height: 340px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .cta-panel {
    display: grid;
    margin-bottom: 48px;
    padding: 22px;
  }

  .cta-panel p {
    font-size: 1.85rem;
  }

  .site-footer {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .rich-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    text-align: left;
  }

  .reference-contact {
    display: grid;
    margin-top: -20px;
    margin-bottom: 48px;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 3.7rem;
  }

  .topbar {
    align-items: center;
  }

  .nav-cta {
    max-width: 98px;
    text-align: center;
  }

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

  .image-card {
    width: 90%;
    height: 375px;
  }

  .image-note {
    top: 18px;
    width: min(235px, 74%);
    padding: 13px 14px;
  }

  .page-title {
    font-size: 3.15rem;
  }

  .statement h2,
  .image-story h2,
  .home-intro h2,
  .all-services h2,
  .consultation-card h2 {
    font-size: 2.65rem;
  }

  .contact-cards strong {
    font-size: 0.98rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
