:root {
  --chalk: #fffaf2;
  --stone: #f1eee7;
  --stone-deep: #ded8cd;
  --graphite: #171918;
  --graphite-soft: #222521;
  --ink: #24231f;
  --muted: #746f66;
  --gold: #bba160;
  --gold-strong: #c9ad68;
  --olive: #777d6f;
  --taupe: #a59684;
  --line: rgba(36, 35, 31, 0.16);
  --line-dark: rgba(255, 250, 242, 0.18);
  --shadow: 0 22px 70px rgba(20, 20, 16, 0.18);
  --serif: "Bodoni 72", "Cormorant Garamond", "Georgia", serif;
  --sans: "Aptos", "Segoe UI", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--stone);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

img,
picture {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

button,
a,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--gold-strong);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 14px 44px;
  color: var(--chalk);
  border-bottom: 1px solid rgba(255, 250, 242, 0.14);
  transition: background 180ms ease, border-color 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 68px;
  background: rgba(23, 25, 24, 0.94);
  border-color: rgba(255, 250, 242, 0.2);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 168px;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  text-transform: uppercase;
  color: rgba(255, 250, 242, 0.78);
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.site-nav a:hover {
  color: var(--gold-strong);
}

.header-cta,
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 13px 22px;
  font-size: 13px;
  font-weight: 650;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.header-cta {
  color: var(--graphite);
  background: var(--gold-strong);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.button-primary {
  color: var(--graphite);
  background: var(--gold-strong);
}

.button-dark {
  color: var(--chalk);
  background: var(--graphite);
  border-color: var(--graphite);
  margin-top: 22px;
}

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

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 250, 242, 0.24);
  border-radius: 4px;
  background: rgba(255, 250, 242, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 22px;
  height: 1px;
  background: var(--chalk);
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-7px);
}

.menu-toggle span:last-child {
  transform: translateY(7px);
}

.site-header.is-open .menu-toggle span:first-child {
  transform: rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 88svh;
  color: var(--chalk);
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 8, 7, 0.82) 0%, rgba(7, 8, 7, 0.58) 42%, rgba(7, 8, 7, 0.28) 100%),
    linear-gradient(180deg, rgba(7, 8, 7, 0.68) 0%, rgba(7, 8, 7, 0.12) 38%, rgba(7, 8, 7, 0.78) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1260px, calc(100% - 80px));
  margin: 0 auto;
  padding: 150px 0 58px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 890px;
  font-size: 4.25rem;
  text-wrap: balance;
}

.hero-lead {
  max-width: 710px;
  margin: 24px 0 0;
  color: rgba(255, 250, 242, 0.88);
  font-size: 1.18rem;
}

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

.text-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 250, 242, 0.9);
  font-size: 13px;
  font-weight: 650;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 250, 242, 0.48);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  min-height: 72px;
  padding: 15px 0 0;
  border-top: 1px solid rgba(255, 250, 242, 0.36);
  color: rgba(255, 250, 242, 0.78);
  font-size: 14px;
}

.section {
  padding: 108px 44px;
}

.section-copy h2,
.section-head h2,
.pillars-heading h2,
.objects-copy h2,
.timing-inner h2,
.consultation-copy h2 {
  font-size: 3.1rem;
}

.section-copy p,
.section-head p,
.pillars-heading p,
.timing-inner p,
.consultation-copy p,
.faq-layout p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.thesis-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 1.05rem;
}

.thesis-list li {
  position: relative;
  padding-left: 22px;
}

.thesis-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.intro-section {
  background: var(--stone);
  padding-top: 82px;
}

.intro-grid {
  width: min(1260px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 70px;
}

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

.principles article,
.included-list article {
  background: rgba(255, 250, 242, 0.62);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px;
}

.principles span,
.included-list span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 750;
  margin-bottom: 24px;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.25;
}

.principles p,
.included-list p,
.pillar p,
.process-list p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.included-section,
.portfolio-section,
.faq-section {
  background: var(--chalk);
}

.section-head,
.pillars-heading {
  width: min(960px, 100%);
  margin: 0 auto 50px;
  text-align: center;
}

.included-list {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.included-list article:last-child {
  grid-column: 2 / 3;
}

.pillars-section {
  color: var(--chalk);
  background: var(--graphite);
}

.pillars-heading p {
  color: rgba(255, 250, 242, 0.7);
}

.pillars-section h2,
.pillars-section h3 {
  color: var(--chalk);
}

.pillar-grid {
  width: min(1260px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pillar {
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255, 250, 242, 0.04);
}

.pillar picture {
  aspect-ratio: 1.14 / 1;
  background: #111;
}

.pillar img,
.portfolio-item img,
.objects-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pillar div {
  padding: 26px;
}

.pillar p {
  color: rgba(255, 250, 242, 0.7);
}

.portfolio-grid {
  width: min(1260px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 12px;
}

.portfolio-item {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--stone-deep);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.portfolio-item picture {
  width: 100%;
  height: 100%;
}

.portfolio-item img {
  transition: transform 380ms ease;
}

.portfolio-item:hover img {
  transform: scale(1.045);
}

.portfolio-item figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 10px 12px;
  color: var(--chalk);
  background: rgba(23, 25, 24, 0.74);
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 4px;
  font-size: 12px;
  text-transform: uppercase;
}

.item-wide {
  grid-column: span 2;
}

.item-tall {
  grid-row: span 2;
}

.process-section {
  background: var(--stone);
}

.process-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 80px;
}

.process-list {
  margin: 0;
  padding: 0;
  counter-reset: process;
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 112px;
  padding: 0 0 30px 78px;
  border-left: 1px solid rgba(36, 35, 31, 0.22);
}

.process-list li::before {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  position: absolute;
  left: -1px;
  top: 0;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--graphite);
  background: var(--gold-strong);
  border-radius: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 800;
}

.process-list li:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}

.objects-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0;
  padding: 0;
  color: var(--chalk);
  background: var(--graphite);
}

.objects-media {
  min-height: 720px;
}

.objects-media picture {
  height: 100%;
}

.objects-copy {
  padding: 96px 64px;
  align-self: center;
}

.objects-copy p,
.objects-copy li {
  color: rgba(255, 250, 242, 0.74);
}

.objects-copy h2 {
  color: var(--chalk);
}

.object-list {
  display: grid;
  gap: 16px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.object-list li {
  position: relative;
  padding-left: 26px;
}

.object-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 10px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.timing-section {
  background: var(--stone);
}

.timing-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 70px;
  align-items: start;
  padding: 42px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.consultation-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.62fr);
  gap: 70px;
  align-items: start;
  background: var(--graphite-soft);
  color: var(--chalk);
}

.consultation-copy {
  max-width: 720px;
  justify-self: end;
}

.consultation-copy h2 {
  color: var(--chalk);
}

.consultation-copy p {
  color: rgba(255, 250, 242, 0.74);
}

.nowrap {
  white-space: nowrap;
}

.privacy-note {
  margin-top: 34px;
  padding: 22px;
  border-left: 2px solid var(--gold);
  background: rgba(255, 250, 242, 0.06);
  color: rgba(255, 250, 242, 0.78);
}

.privacy-note strong {
  color: var(--chalk);
}

.lead-form {
  width: min(520px, 100%);
  padding: 30px;
  background: var(--chalk);
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 6px;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: block;
}

.lead-form label + label,
.lead-form button {
  margin-top: 18px;
}

.lead-form span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.lead-form input[type="text"],
.lead-form input[type="tel"] {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(36, 35, 31, 0.22);
  border-radius: 4px;
}

.lead-form input:invalid.is-touched {
  border-color: #9f4a3d;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 20px;
}

.consent input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--gold);
}

.consent span {
  margin: 0;
  font-weight: 500;
  line-height: 1.45;
}

.consent a {
  color: var(--ink);
  border-bottom: 1px solid rgba(36, 35, 31, 0.32);
}

.form-submit {
  width: 100%;
}

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.76;
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.form-status.is-success {
  color: #486842;
}

.form-status.is-error {
  color: #9f4a3d;
}

.faq-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 70px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(241, 238, 231, 0.48);
}

summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 750;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--gold);
  font-size: 22px;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  font-size: 0.96rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 42px;
  align-items: start;
  padding: 54px 44px 84px;
  color: rgba(255, 250, 242, 0.72);
  background: #111311;
}

.site-footer img {
  width: 160px;
  height: auto;
}

.site-footer p {
  margin: 14px 0 0;
}

.site-footer address {
  font-style: normal;
}

.site-footer a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 250, 242, 0.82);
}

.site-footer nav {
  display: grid;
  gap: 6px;
}

.mobile-sticky-cta {
  display: none;
}

.legal-page {
  min-height: 100vh;
  background: var(--stone);
}

.legal-shell {
  width: min(840px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.legal-logo {
  display: inline-block;
  width: 220px;
  margin-bottom: 64px;
}

.legal-shell h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.08;
}

.legal-shell p {
  color: var(--muted);
  font-size: 1.05rem;
}

@media (max-width: 1100px) {
  .site-header {
    padding: 12px 24px;
    grid-template-columns: auto auto 1fr;
  }

  .brand {
    width: 146px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    grid-column: 3;
  }

  .site-nav {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: rgba(23, 25, 24, 0.98);
    border: 1px solid var(--line-dark);
    border-radius: 6px;
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    border-bottom: 1px solid rgba(255, 250, 242, 0.1);
  }

  .header-cta {
    display: none;
  }

  .hero-inner {
    width: min(calc(100% - 48px), 900px);
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .section-copy h2,
  .section-head h2,
  .pillars-heading h2,
  .objects-copy h2,
  .timing-inner h2,
  .consultation-copy h2 {
    font-size: 2.55rem;
  }

  .intro-grid,
  .process-layout,
  .faq-layout,
  .timing-inner,
  .consultation-section {
    grid-template-columns: 1fr;
  }

  .consultation-copy {
    justify-self: start;
  }

  .pillar-grid,
  .included-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .included-list article:last-child {
    grid-column: auto;
  }

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

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

  .objects-media {
    min-height: 520px;
  }

  .objects-copy {
    padding: 72px 44px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
    padding-bottom: 76px;
  }

  .site-header {
    min-height: 66px;
    padding: 10px 16px;
  }

  .brand {
    width: 132px;
  }

  .site-nav {
    left: 16px;
    right: 16px;
    top: 66px;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 8, 7, 0.8) 0%, rgba(7, 8, 7, 0.56) 100%),
      linear-gradient(180deg, rgba(7, 8, 7, 0.62) 0%, rgba(7, 8, 7, 0.22) 34%, rgba(7, 8, 7, 0.86) 100%);
  }

  .hero-inner {
    width: calc(100% - 32px);
    padding: 108px 0 34px;
  }

  .hero h1 {
    font-size: 2.35rem;
    line-height: 1.06;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .text-link {
    justify-content: center;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 26px;
  }

  .hero-proof li {
    min-height: auto;
    padding-top: 10px;
  }

  .section {
    padding: 76px 16px;
  }

  .section-copy h2,
  .section-head h2,
  .pillars-heading h2,
  .objects-copy h2,
  .timing-inner h2,
  .consultation-copy h2 {
    font-size: 2.05rem;
  }

  .principles,
  .pillar-grid,
  .included-list {
    grid-template-columns: 1fr;
  }

  .principles article,
  .included-list article,
  .lead-form {
    padding: 22px;
  }

  .portfolio-section {
    padding-left: 0;
    padding-right: 0;
  }

  .portfolio-section .section-kicker,
  .portfolio-section .section-head {
    padding-left: 16px;
    padding-right: 16px;
  }

  .portfolio-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    grid-template-columns: none;
    grid-auto-rows: 390px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 0 16px 12px;
    scroll-snap-type: inline mandatory;
  }

  .portfolio-item,
  .item-wide,
  .item-tall {
    grid-column: auto;
    grid-row: auto;
    scroll-snap-align: start;
  }

  .process-list li {
    padding-left: 54px;
  }

  .process-list li::before {
    width: 42px;
    height: 42px;
  }

  .objects-media {
    min-height: 390px;
  }

  .objects-copy {
    padding: 64px 16px;
  }

  .timing-inner {
    gap: 26px;
    padding: 0;
    border: 0;
  }

  .consultation-section {
    gap: 34px;
  }

  .lead-form {
    width: 100%;
  }

  .faq-layout {
    gap: 34px;
  }

  summary {
    padding: 16px;
  }

  details p {
    padding: 0 16px 16px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 46px 16px 96px;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 40;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--graphite);
    background: var(--gold-strong);
    border-radius: 4px;
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.22);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 18px));
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .show-mobile-sticky-cta .mobile-sticky-cta {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

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