:root {
  --warm-white: #f7f5f0;
  --ivory: #f2efe8;
  --warm-grey: #d8d3ca;
  --charcoal: #171717;
  --soft-black: #242321;
  --oak: #a58c70;
  --oak-dark: #78644f;
  --line: rgba(23, 23, 23, 0.16);
  --line-light: rgba(247, 245, 240, 0.22);
  --serif: "Outfit", Arial, sans-serif;
  --sans: "Outfit", Arial, sans-serif;
  --shell: min(1380px, calc(100vw - 80px));
  --header-height: 96px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 2px solid var(--oak-dark); outline-offset: 4px; }
::selection { background: var(--oak); color: #fff; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: #fff;
  color: #000;
}
.skip-link:focus { transform: translateY(0); }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 144px 0; }
.section-ivory { background: var(--ivory); }
.section-charcoal { background: var(--charcoal); color: var(--warm-white); }

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: .94;
}
h1 em, h2 em {
  font-style: normal;
  font-weight: 300;
  letter-spacing: -0.04em;
}
h2 { font-size: clamp(52px, 5.5vw, 88px); }
.eyebrow {
  margin-bottom: 24px;
  color: var(--oak-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow.light { color: rgba(255,255,255,.72); }
.section-index { margin: 0; color: #6e6a64; font-size: 13px; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--charcoal); color: var(--warm-white); }
.button-dark:hover { background: var(--oak-dark); }
.button-light { background: var(--warm-white); color: var(--charcoal); }
.button-light:hover { background: #fff; }
.button-outline-light { border-color: rgba(255,255,255,.55); color: #fff; }
.button-outline-light:hover { background: #fff; color: #111; border-color: #fff; }
.button-full { width: 100%; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
}
.text-link span { transition: transform .25s var(--ease); }
.text-link:hover span { transform: translate(3px, -3px); }
.light-link { color: #fff; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  color: #fff;
  transition: height .35s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255,255,255,.2);
}
.site-header.is-scrolled {
  --header-height: 74px;
  background: rgba(247,245,240,.96);
  color: var(--charcoal);
  box-shadow: 0 8px 36px rgba(23,23,23,.06);
  backdrop-filter: blur(16px);
}
.site-header.is-scrolled::after { background: rgba(23,23,23,.09); }
.header-inner { height: 100%; display: grid; grid-template-columns: 180px 1fr auto; align-items: center; gap: 38px; }
.wordmark { display: inline-flex; width: max-content; flex-direction: column; line-height: 1; }
.wordmark-main { font-family: var(--serif); font-size: 25px; font-weight: 700; letter-spacing: .18em; }
.wordmark-sub { margin-top: 7px; font-size: 7px; font-weight: 500; letter-spacing: .33em; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(18px, 2vw, 34px); }
.desktop-nav a { position: relative; font-size: 12px; font-weight: 500; letter-spacing: .025em; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: currentColor;
  transition: right .25s var(--ease);
}
.desktop-nav a:hover::after { right: 0; }
.button-header { min-height: 44px; padding-inline: 21px; border-color: rgba(255,255,255,.56); color: #fff; }
.button-header:hover { background: #fff; color: #111; }
.is-scrolled .button-header { background: var(--charcoal); border-color: var(--charcoal); color: #fff; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 25px; height: 1px; margin: 7px auto; background: currentColor; transition: transform .25s var(--ease), opacity .25s var(--ease); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 0;
  padding: 38px max(24px, calc((100vw - 1380px) / 2));
  overflow-y: auto;
  background: var(--warm-white);
  color: var(--charcoal);
}
.menu-open .site-header { background: var(--warm-white); color: var(--charcoal); }
.menu-open .site-header::after { background: rgba(23,23,23,.09); }
.mobile-menu nav { display: grid; margin-bottom: 40px; }
.mobile-menu nav a { padding: 15px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 32px; line-height: 1; }
.mobile-menu p { margin: 18px 0 0; text-align: center; color: #716d66; font-size: 12px; }

.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; background: #1f1f1d; color: #fff; }
.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1600210491892-03d54c0aaf87?auto=format&fit=crop&w=2200&q=88");
  background-position: center 52%;
  background-size: cover;
  transform: scale(1.02);
  animation: hero-settle 1.6s var(--ease) both;
}
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,15,14,.82) 0%, rgba(15,15,14,.52) 42%, rgba(15,15,14,.18) 74%), linear-gradient(180deg, rgba(8,8,8,.12), rgba(8,8,8,.45) 100%); }
.hero-content { position: relative; z-index: 2; width: 100%; min-height: 100svh; display: flex; align-items: flex-end; padding-top: calc(var(--header-height) + 72px); padding-bottom: 7vh; }
.hero-panel {
  max-width: 760px;
  margin-top: auto;
  padding: clamp(30px, 3vw, 42px);
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(180deg, rgba(19,19,18,.18), rgba(19,19,18,.34));
  backdrop-filter: blur(4px);
}
.hero h1 { max-width: 860px; font-size: clamp(64px, 6.6vw, 106px); line-height: .92; }
.hero h1 em { color: #ebe4d8; }
.hero-copy { max-width: 590px; margin: 28px 0 32px; color: rgba(255,255,255,.86); font-size: clamp(17px, 1.28vw, 20px); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.hero-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero-trust { margin: 0; color: rgba(255,255,255,.7); font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; }
.hero-trust span { margin-inline: 10px; }
.hero-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero-list li {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.82);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.scroll-cue { position: absolute; z-index: 2; right: 42px; bottom: 34px; display: grid; justify-items: center; gap: 12px; color: rgba(255,255,255,.72); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.scroll-cue i { display: block; width: 1px; height: 54px; overflow: hidden; background: rgba(255,255,255,.28); }
.scroll-cue i::after { content: ""; display: block; width: 1px; height: 24px; background: #fff; animation: scroll-line 2s ease-in-out infinite; }

.intro { overflow: hidden; }
.intro.section { padding: 112px 0 104px; }
.intro-grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(380px, .92fr); gap: clamp(40px, 5vw, 76px); align-items: start; }
.intro-copy { max-width: 620px; padding-top: 8px; }
.intro-copy h2 { font-size: clamp(54px, 5.6vw, 84px); margin-top: 18px; }
.intro-copy p { max-width: 560px; margin: 22px 0 24px; color: #55514b; font-size: 18px; line-height: 1.78; }
.intro-points { display: grid; gap: 14px; margin: 0 0 30px; padding: 0; list-style: none; }
.intro-points li {
  position: relative;
  padding-left: 18px;
  color: #625e58;
  line-height: 1.7;
}
.intro-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--oak);
}
.intro-image { position: relative; margin: 0; justify-self: end; width: 100%; max-width: 500px; min-height: 620px; background: #e9e4db url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1200&q=86") center / cover no-repeat; }
.intro-image img { display: block; width: 100%; min-height: 620px; aspect-ratio: 4 / 4.9; object-fit: cover; clip-path: inset(0) !important; opacity: 1 !important; transform: none !important; }
.intro-image::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(23,23,23,.11);
  z-index: -1;
}
.intro-image figcaption { margin-top: 18px; color: #716d66; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

.section-heading { margin-bottom: 78px; }
.split-heading { display: grid; grid-template-columns: 1.6fr .6fr; gap: 70px; align-items: end; }
.split-heading > p { max-width: 420px; margin: 0 0 8px; color: #625e58; font-size: 16px; line-height: 1.7; }
.split-heading h2 { font-size: clamp(54px, 5.3vw, 82px); }
.principles-list { border-top: 1px solid var(--line); }
.principle { display: grid; grid-template-columns: 90px 1.1fr .9fr; gap: 40px; padding: 34px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.principle .number { color: var(--oak-dark); font-size: 11px; letter-spacing: .15em; }
.principle h3 { margin: 0; font-family: var(--serif); font-size: clamp(31px, 3vw, 45px); font-weight: 500; }
.principle p { max-width: 460px; margin: 0; color: #66615b; }
.section-cta { display: flex; align-items: center; gap: 24px; margin-top: 48px; }
.section-cta span { color: #6d6862; font-size: 12px; }

.services-heading { display: grid; grid-template-columns: 1fr 1.2fr .8fr; gap: 60px; align-items: end; }
.services-heading .eyebrow { align-self: start; }
.services-heading h2 { font-size: clamp(58px, 6vw, 92px); }
.services-heading > p:last-child { margin: 0 0 10px; color: #625e58; line-height: 1.72; }
.services-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.service-card { position: relative; margin: 0; min-height: 480px; overflow: hidden; background: #d9d4cc; color: #fff; }
.service-card:nth-child(1) { grid-column: span 7; min-height: 680px; }
.service-card:nth-child(2) { grid-column: span 5; min-height: 680px; }
.service-card:nth-child(3) { grid-column: span 4; }
.service-card:nth-child(4) { grid-column: span 4; }
.service-card:nth-child(5) { grid-column: span 4; }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.service-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(12,12,12,.72), rgba(12,12,12,0) 62%); }
.service-card:hover img { transform: scale(1.035); }
.service-card figcaption { position: absolute; z-index: 2; inset: auto 34px 34px; }
.service-card .service-index { display: block; margin-bottom: 10px; color: rgba(255,255,255,.68); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.service-card h3 { margin: 0 0 8px; font-family: var(--serif); font-size: clamp(34px, 3vw, 47px); font-weight: 500; line-height: 1; }
.service-card p { max-width: 460px; margin: 0 0 18px; color: rgba(255,255,255,.82); font-size: 14px; }
.service-card a { display: inline-flex; gap: 14px; align-items: center; padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,.55); font-size: 11px; font-weight: 500; letter-spacing: .07em; text-transform: uppercase; }
.services-more { display: grid; grid-template-columns: 170px 1fr; gap: 50px; margin-top: 42px; padding-top: 34px; border-top: 1px solid var(--line); }
.services-more > p { margin: 0; color: var(--oak-dark); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; }
.services-more ul { display: flex; flex-wrap: wrap; gap: 14px 38px; margin: 0; padding: 0; list-style: none; }
.services-more li { font-family: var(--serif); font-size: 28px; }
.services-more li::after { content: "·"; margin-left: 38px; color: var(--oak); }
.services-more li:last-child::after { display: none; }

.project-feature { position: relative; min-height: 900px; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.project-media { position: absolute; inset: 0; background: url("https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?auto=format&fit=crop&w=2200&q=88") center / cover; }
.project-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(9,9,9,.82) 0%, rgba(9,9,9,.12) 65%), linear-gradient(90deg, rgba(9,9,9,.26), transparent 55%); }
.project-content { position: relative; z-index: 2; display: grid; grid-template-columns: .65fr 1.45fr .9fr; gap: 70px; align-items: end; padding-bottom: 82px; }
.project-content h2 { font-size: clamp(66px, 7vw, 108px); }
.project-content > div > p { max-width: 590px; margin: 28px 0; color: rgba(255,255,255,.8); font-size: 17px; }
.project-content dl { margin: 0; border-top: 1px solid var(--line-light); }
.project-content dl div { display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line-light); }
.project-content dt { color: rgba(255,255,255,.56); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.project-content dd { margin: 0; font-size: 13px; }

.gallery-heading { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: end; }
.gallery-heading h2 { font-size: clamp(60px, 6vw, 92px); }
.gallery-filters { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 6px 18px; max-width: 600px; }
.gallery-filters button { padding: 5px 0; border: 0; border-bottom: 1px solid transparent; background: transparent; color: rgba(255,255,255,.58); font-size: 11px; cursor: pointer; }
.gallery-filters button:hover, .gallery-filters button.is-active { border-color: #fff; color: #fff; }
.gallery-grid { column-count: 3; column-gap: 22px; }
.gallery-item { position: relative; margin: 0 0 22px; break-inside: avoid; overflow: hidden; cursor: zoom-in; }
.gallery-item[hidden] { display: none; }
.gallery-item img { width: 100%; transition: transform .65s var(--ease), filter .4s var(--ease); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.62), transparent 48%); opacity: .72; transition: opacity .3s var(--ease); }
.gallery-item:hover img { transform: scale(1.025); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item figcaption { position: absolute; z-index: 2; inset: auto 22px 20px; display: flex; justify-content: space-between; align-items: end; gap: 20px; color: #fff; }
.gallery-item h3 { margin: 0; font-family: var(--serif); font-size: 26px; font-weight: 500; }
.gallery-item span { color: rgba(255,255,255,.66); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.gallery-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 54px; padding-top: 34px; border-top: 1px solid var(--line-light); }
.gallery-footer p { margin: 0; font-family: var(--serif); font-size: 36px; }

.process-track { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); margin: 0; padding: 0; list-style: none; }
.process-track::before { content: ""; position: absolute; top: 25px; left: 2%; right: 2%; height: 1px; background: var(--line); }
.process-step { position: relative; padding: 66px 28px 0 0; }
.process-step::before { content: ""; position: absolute; top: 20px; left: 0; width: 11px; height: 11px; border: 1px solid var(--oak-dark); border-radius: 50%; background: var(--warm-white); transition: background .3s var(--ease), transform .3s var(--ease); }
.process-step:hover::before { background: var(--oak-dark); transform: scale(1.35); }
.process-step .number { color: var(--oak-dark); font-size: 10px; letter-spacing: .15em; }
.process-step h3 { margin: 18px 0 12px; font-family: var(--serif); font-size: 29px; font-weight: 500; line-height: 1; }
.process-step p { margin: 0; color: #68635d; font-size: 13px; line-height: 1.65; }

.testimonial-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 110px; align-items: start; }
.testimonial-intro h2 { font-size: clamp(56px, 5.3vw, 82px); }
.testimonial-intro > p:not(.eyebrow) { max-width: 450px; margin: 34px 0 0; color: #625e58; }
.testimonial-controls { display: flex; align-items: center; gap: 16px; margin-top: 56px; }
.testimonial-controls button { width: 46px; height: 46px; border: 1px solid var(--line); background: transparent; cursor: pointer; transition: background .25s, color .25s; }
.testimonial-controls button:hover { background: var(--charcoal); color: #fff; }
.testimonial-controls span { min-width: 58px; text-align: center; color: #6b665f; font-size: 11px; letter-spacing: .12em; }
.testimonial-stage { min-height: 430px; display: flex; flex-direction: column; justify-content: space-between; padding: 58px; background: var(--warm-white); border-top: 4px solid var(--oak); }
.testimonial-mark { font-family: var(--serif); font-size: 76px; line-height: .5; color: var(--oak); }
.testimonial-quote { max-width: 760px; margin: 40px 0 58px; font-family: var(--serif); font-size: clamp(35px, 3.3vw, 50px); line-height: 1.18; }
.testimonial-meta { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid var(--line); }
.testimonial-meta strong { font-size: 13px; font-weight: 500; }
.testimonial-meta span { color: #6c6760; font-size: 12px; }

.brand-statement { background: linear-gradient(180deg, #f7f5f0 0%, #f2efe8 100%); }
.statement-grid {
  display: grid;
  grid-template-columns: 1.2fr .85fr;
  gap: 48px 84px;
  align-items: start;
}
.statement-heading-block h2 { font-size: clamp(58px, 5.8vw, 90px); margin-top: 12px; }
.statement-copy-block { max-width: 430px; padding-top: 46px; }
.statement-copy-block p { margin: 0 0 26px; color: #625e58; font-size: 17px; line-height: 1.75; }
.statement-grid ul {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin: 6px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.statement-grid li {
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 22px 20px;
  background: rgba(255,255,255,.4);
  border: 1px solid rgba(23,23,23,.08);
}
.statement-grid li strong { font-size: 14px; font-weight: 600; }
.statement-grid li span { color: #68635d; font-size: 13px; line-height: 1.65; }

.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 110px; align-items: start; }
.faq-intro { position: sticky; top: 116px; }
.faq-intro h2 { font-size: clamp(55px, 5.1vw, 78px); }
.faq-intro > p:not(.eyebrow) { max-width: 430px; margin: 32px 0 28px; color: #625e58; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-button { width: 100%; display: grid; grid-template-columns: 44px 1fr 32px; gap: 16px; align-items: center; padding: 25px 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
.accordion-button .number { color: var(--oak-dark); font-size: 10px; letter-spacing: .14em; }
.accordion-button .question { font-family: var(--serif); font-size: 28px; }
.accordion-button .plus { position: relative; width: 22px; height: 22px; }
.accordion-button .plus::before, .accordion-button .plus::after { content: ""; position: absolute; top: 50%; left: 50%; width: 18px; height: 1px; background: currentColor; transition: transform .3s var(--ease); }
.accordion-button .plus::before { transform: translate(-50%,-50%); }
.accordion-button .plus::after { transform: translate(-50%,-50%) rotate(90deg); }
.accordion-button[aria-expanded="true"] .plus::after { transform: translate(-50%,-50%) rotate(0); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.accordion-panel p { max-width: 720px; margin: 0; padding: 0 52px 28px 60px; color: #5f5a54; line-height: 1.75; }

.final-cta { position: relative; min-height: 800px; display: flex; align-items: center; overflow: hidden; color: #fff; }
.final-cta-media { position: absolute; inset: 0; background: url("https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?auto=format&fit=crop&w=2200&q=88") center / cover; }
.final-cta-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,12,11,.8), rgba(12,12,11,.24) 72%); }
.final-cta-content { position: relative; z-index: 2; }
.final-cta-content h2 { max-width: 950px; font-size: clamp(66px, 7.4vw, 114px); }
.final-cta-content > p:not(.eyebrow) { max-width: 560px; margin: 32px 0 36px; color: rgba(255,255,255,.82); font-size: 18px; }
.cta-group { display: flex; gap: 12px; }
.final-cta-content > span { display: block; margin-top: 22px; color: rgba(255,255,255,.6); font-size: 11px; letter-spacing: .08em; }

.contact { background: var(--warm-white); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 120px; }
.contact-intro h2 { font-size: clamp(66px, 6.4vw, 96px); }
.contact-intro > p:not(.eyebrow) { max-width: 520px; margin: 32px 0 42px; color: #625e58; font-size: 17px; }
.contact-details { margin: 0 0 36px; border-top: 1px solid var(--line); }
.contact-details div { display: grid; grid-template-columns: 100px 1fr; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-details dt { color: var(--oak-dark); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.contact-details dd { margin: 0; font-size: 14px; }
.contact-details a:hover { text-decoration: underline; }
.whatsapp-inline { display: flex; align-items: center; gap: 16px; }
.whatsapp-inline > span:first-child { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; }
.whatsapp-inline b { display: block; font-size: 13px; font-weight: 600; }
.whatsapp-inline span span { color: #6d6861; font-size: 12px; }
.quote-form { padding: 52px; background: var(--ivory); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { margin-bottom: 24px; }
.field label { display: block; margin-bottom: 9px; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #c8c2b8; border-radius: 0; background: var(--warm-white); color: var(--charcoal); }
.field input, .field select { height: 52px; padding: 0 14px; }
.field textarea { min-height: 132px; padding: 14px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--oak-dark); outline: 1px solid var(--oak-dark); outline-offset: 0; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 0 0 22px; color: #5e5952; font-size: 12px; }
.consent input { margin-top: 3px; accent-color: var(--charcoal); }
.form-note { margin: 14px 0 0; text-align: center; color: #6f6a63; font-size: 11px; }
.form-status { min-height: 20px; margin: 9px 0 0; text-align: center; color: var(--oak-dark); font-size: 12px; }

.site-footer { padding: 84px 0 28px; background: var(--charcoal); color: var(--warm-white); }
.footer-grid { display: grid; grid-template-columns: 1.65fr repeat(3, .72fr); gap: 70px; padding-bottom: 72px; }
.wordmark-footer { margin-bottom: 24px; }
.footer-brand p { max-width: 380px; color: rgba(255,255,255,.58); font-size: 14px; }
.footer-grid h3 { margin: 0 0 22px; color: rgba(255,255,255,.45); font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-grid a, .footer-grid span { color: rgba(255,255,255,.74); font-size: 13px; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid var(--line-light); }
.footer-bottom p, .footer-bottom a { margin: 0; color: rgba(255,255,255,.42); font-size: 10px; }
.footer-bottom div { display: flex; gap: 22px; }

.floating-whatsapp { position: fixed; z-index: 900; right: 24px; bottom: 24px; display: inline-flex; align-items: center; gap: 9px; min-height: 48px; padding: 0 17px 0 13px; border-radius: 999px; background: #1f2a25; color: #fff; box-shadow: 0 14px 34px rgba(0,0,0,.2); font-size: 12px; transition: transform .3s var(--ease), background .3s; }
.floating-whatsapp svg { width: 23px; height: 23px; }
.floating-whatsapp:hover { transform: translateY(-4px); background: #31483d; }

.lightbox { width: min(1100px, calc(100vw - 40px)); max-height: calc(100svh - 40px); padding: 0; border: 0; background: transparent; color: #fff; }
.lightbox::backdrop { background: rgba(10,10,10,.92); backdrop-filter: blur(5px); }
.lightbox figure { margin: 0; }
.lightbox img { width: 100%; max-height: calc(100svh - 110px); object-fit: contain; }
.lightbox figcaption { margin-top: 12px; text-align: center; color: rgba(255,255,255,.72); font-size: 12px; }
.lightbox-close { position: fixed; top: 18px; right: 23px; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: transparent; color: #fff; font-size: 28px; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.image-reveal { clip-path: inset(0 0 100% 0); transition: clip-path 1.05s var(--ease), opacity .7s var(--ease), transform .7s var(--ease); }
.image-reveal.is-visible { clip-path: inset(0); }

@keyframes hero-settle { from { opacity: 0; transform: scale(1.08); } to { opacity: 1; transform: scale(1.02); } }
@keyframes scroll-line { 0% { transform: translateY(-25px); } 50%,100% { transform: translateY(56px); } }

@media (max-width: 1180px) {
  :root { --shell: min(calc(100% - 48px), 1180px); }
  .desktop-nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto auto; }
  .menu-toggle { display: block; }
  .hero-panel { max-width: 700px; }
  .intro-grid { grid-template-columns: minmax(0, 1fr) minmax(320px, .92fr); gap: 42px; }
  .services-heading { grid-template-columns: .65fr 1.35fr; }
  .services-heading > p:last-child { grid-column: 2; }
  .project-content { grid-template-columns: .4fr 1.35fr .8fr; gap: 42px; }
  .process-track { grid-template-columns: repeat(3, 1fr); row-gap: 46px; }
  .process-track::before { display: none; }
  .process-step { padding-top: 38px; }
  .process-step::before { top: 0; }
  .statement-grid { grid-template-columns: 1.15fr .85fr; gap: 40px 48px; }
  .contact-grid { gap: 70px; }
}

@media (max-width: 900px) {
  :root { --shell: calc(100% - 40px); }
  .section { padding: 104px 0; }
  .button-header { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .hero-content { min-height: 100svh; padding-top: calc(var(--header-height) + 56px); padding-bottom: 9vh; }
  .hero-panel { max-width: 100%; }
  .hero h1 { font-size: clamp(60px, 10vw, 92px); }
  .hero-copy { max-width: 520px; }
  .hero-meta { flex-direction: column; align-items: flex-start; }
  .scroll-cue { display: none; }
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-copy { max-width: 100%; }
  .intro-image { justify-self: start; max-width: 620px; min-height: 520px; }
  .intro-image img { min-height: 520px; }
  .split-heading { grid-template-columns: 1fr; gap: 24px; }
  .principle { grid-template-columns: 55px 1fr; }
  .principle p { grid-column: 2; }
  .services-heading { grid-template-columns: 1fr; gap: 24px; }
  .services-heading > p:last-child { grid-column: auto; max-width: 620px; }
  .service-card:nth-child(n) { grid-column: span 6; min-height: 520px; }
  .service-card:nth-child(1) { grid-column: span 12; min-height: 640px; }
  .project-feature { min-height: 850px; }
  .project-content { grid-template-columns: 1fr 1fr; }
  .project-content > .eyebrow { grid-column: 1 / -1; }
  .project-content dl { align-self: end; }
  .gallery-heading { grid-template-columns: 1fr; }
  .gallery-filters { justify-content: flex-start; }
  .gallery-grid { column-count: 2; }
  .testimonial-layout { grid-template-columns: 1fr; gap: 60px; }
  .testimonial-stage { min-height: 380px; }
  .statement-grid { grid-template-columns: 1fr; }
  .statement-copy-block { max-width: 100%; padding-top: 0; }
  .statement-grid ul { grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); }
  .faq-layout { grid-template-columns: 1fr; gap: 55px; }
  .faq-intro { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 32px); --header-height: 74px; }
  .section { padding: 84px 0; }
  h2 { font-size: 49px; line-height: .98; }
  .wordmark-main { font-size: 23px; }
  .hero { min-height: 92svh; }
  .hero-media { background-position: 63% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(15,15,14,.86), rgba(15,15,14,.4)), linear-gradient(0deg, rgba(8,8,8,.58), transparent 48%); }
  .hero-content { min-height: 92svh; padding-top: calc(var(--header-height) + 34px); padding-bottom: 5vh; }
  .hero-panel { padding: 24px 22px; margin-right: 8px; }
  .hero h1 { font-size: clamp(50px, 15vw, 72px); line-height: .94; }
  .hero-copy { margin: 20px 0 24px; font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { width: fit-content; }
  .hero-meta { margin-top: 28px; gap: 18px; }
  .hero-trust { line-height: 1.8; }
  .hero-trust span { margin-inline: 5px; }
  .hero-list { gap: 8px; }
  .hero-list li { font-size: 10px; }
  .intro-grid { grid-template-columns: 1fr; gap: 34px; }
  .intro.section { padding: 84px 0 84px; }
  .intro-copy h2 { font-size: 48px; }
  .intro-copy p { margin-top: 20px; font-size: 16px; }
  .intro-points { gap: 12px; }
  .intro-image { width: 100%; max-width: 100%; min-height: 360px; margin-left: 0; }
  .intro-image img { min-height: 360px; }
  .intro-image::after { inset: 10px -10px -10px 10px; }
  .section-heading { margin-bottom: 50px; }
  .split-heading h2 { font-size: 52px; }
  .principle { grid-template-columns: 38px 1fr; gap: 12px; padding: 26px 0; }
  .principle h3 { font-size: 34px; }
  .principle p { font-size: 14px; }
  .section-cta { align-items: stretch; flex-direction: column; }
  .section-cta .button { width: 100%; }
  .services-heading h2 { font-size: 56px; }
  .service-card:nth-child(n) { grid-column: span 12; min-height: 500px; }
  .service-card:nth-child(1) { min-height: 560px; }
  .service-card figcaption { inset: auto 24px 25px; }
  .services-more { grid-template-columns: 1fr; gap: 18px; }
  .services-more ul { display: block; }
  .services-more li { padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 25px; }
  .services-more li::after { display: none; }
  .project-feature { min-height: 820px; }
  .project-content { grid-template-columns: 1fr; gap: 32px; padding-bottom: 44px; }
  .project-content h2 { font-size: 62px; }
  .project-content dl { margin-top: 12px; }
  .gallery-heading h2 { font-size: 57px; }
  .gallery-filters { gap: 8px 15px; }
  .gallery-grid { column-count: 1; }
  .gallery-item figcaption { inset: auto 18px 17px; }
  .gallery-footer { align-items: stretch; flex-direction: column; gap: 24px; }
  .gallery-footer .button { width: 100%; }
  .process-track { grid-template-columns: 1fr; gap: 0; border-left: 1px solid var(--line); }
  .process-step { padding: 0 0 34px 34px; }
  .process-step::before { left: -6px; top: 2px; }
  .process-step h3 { margin-top: 10px; }
  .testimonial-intro h2 { font-size: 51px; }
  .testimonial-stage { min-height: 420px; padding: 34px 25px; }
  .testimonial-quote { font-size: 34px; }
  .testimonial-meta { flex-direction: column; gap: 4px; }
  .statement-grid { grid-template-columns: 1fr; gap: 24px; }
  .statement-heading-block h2 { font-size: 52px; }
  .statement-grid ul { grid-template-columns: 1fr; gap: 12px; margin-top: 12px; }
  .statement-grid li { min-height: auto; padding: 18px 16px; }
  .faq-intro h2 { font-size: 51px; }
  .accordion-button { grid-template-columns: 32px 1fr 24px; }
  .accordion-button .question { font-size: 24px; }
  .accordion-panel p { padding-left: 48px; padding-right: 20px; }
  .final-cta { min-height: 760px; }
  .final-cta-media { background-position: 63% center; }
  .final-cta-content h2 { font-size: 59px; }
  .cta-group { flex-direction: column; }
  .cta-group .button { width: 100%; }
  .contact-intro h2 { font-size: 59px; }
  .quote-form { padding: 30px 20px; margin-inline: -8px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px 30px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom div { flex-wrap: wrap; }
  .floating-whatsapp { right: 14px; bottom: 14px; width: 49px; height: 49px; justify-content: center; padding: 0; }
  .floating-whatsapp span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .image-reveal { clip-path: inset(0); }
}

/* WordPress integration */
.desktop-nav .desktop-menu,
.mobile-menu .mobile-menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.desktop-nav .desktop-menu {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
}
.desktop-nav .desktop-menu li,
.mobile-menu .mobile-menu-list li { margin: 0; padding: 0; }
.desktop-nav .desktop-menu a,
.mobile-menu .mobile-menu-list a { display: block; }
.mobile-menu .mobile-menu-list { display: grid; }
.forme-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.has-fallback-image { background-color: #d8d3ca; background-size: cover; }
.admin-bar .site-header { top: 32px; }
.admin-bar .mobile-menu { inset: calc(var(--header-height) + 32px) 0 0; }
body:not(.home) .site-header {
  background: rgba(247,245,240,.98);
  color: var(--charcoal);
  box-shadow: 0 8px 36px rgba(23,23,23,.06);
}
body:not(.home) .site-header::after { background: rgba(23,23,23,.09); }
body:not(.home) .button-header { background: var(--charcoal); border-color: var(--charcoal); color: #fff; }
.page-shell { min-height: 72vh; padding: 170px 0 110px; }
.basic-page { max-width: 860px; }
.basic-page h1 { margin-bottom: 42px; font-size: clamp(58px, 7vw, 100px); }
.entry-content { color: #514d47; font-size: 18px; line-height: 1.8; }
.entry-content > * { max-width: 760px; }
.entry-content img { height: auto; }

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
  .admin-bar .mobile-menu { inset: calc(var(--header-height) + 46px) 0 0; }
}

@media (max-width: 640px) {
  .page-shell { padding: 130px 0 80px; }
  .basic-page h1 { font-size: 52px; }
  .entry-content { font-size: 16px; }
}
section[id] { scroll-margin-top: 82px; }
