:root {
  --ivory: #f3efe6;
  --paper: #fffdf8;
  --ink: #171713;
  --forest: #173a31;
  --stone: #b7afa1;
  --muted: #5f5d57;
  --gold: #d8b45b;
  --line: rgba(23, 23, 19, 0.16);
  --max: 1440px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 112px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
figure, blockquote { margin: 0; }
.hidden, [hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.skip-link {
  position: fixed;
  z-index: 999;
  left: 1rem;
  top: 1rem;
  transform: translateY(-180%);
  padding: 0.75rem 1rem;
  background: var(--forest);
  color: #fff;
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 5vw;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(14px);
}
.brand img { width: 88px; height: 88px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); font-size: 0.77rem; font-weight: 700; letter-spacing: 0.03em; }
.site-nav > a:not(.nav-cta) { position: relative; }
.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.35rem;
  height: 1px;
  background: var(--gold);
  transition: right 180ms ease;
}
.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after { right: 0; }
.nav-cta { padding: 0.82rem 1rem; background: var(--forest); color: #fff; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 9px; border: 1px solid var(--line); background: transparent; }
.menu-toggle span:not(.sr-only) { display: block; height: 1px; margin: 5px 0; background: var(--ink); }

.section-pad { max-width: var(--max); margin-inline: auto; padding: clamp(4.5rem, 8vw, 8rem) 5vw; }
.band-dark { background: var(--ink); color: #fff; }
.band-forest { background: var(--forest); color: #fff; }
.band-ivory { background: var(--ivory); }
.band-paper { background: var(--paper); }

.eyebrow {
  margin: 0 0 1rem;
  color: var(--forest);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.light .eyebrow, .band-dark .eyebrow { color: var(--gold); }
h1, h2, h3, blockquote { font-family: var(--serif); font-weight: 500; letter-spacing: -0.035em; }
h1 { margin: 0; max-width: 760px; font-size: clamp(4.5rem, 8.8vw, 9rem); line-height: 0.82; }
h1 em { color: var(--gold); font-weight: 400; }
h2 { margin: 0; max-width: 900px; font-size: clamp(3.2rem, 6.2vw, 6.7rem); line-height: 0.91; }
h3 { margin: 0; font-size: clamp(2rem, 3.2vw, 3.7rem); line-height: 0.98; }
p { margin-top: 0; }
.section-heading { margin-bottom: clamp(2.5rem, 5vw, 5rem); }
.section-heading > p:last-child, .heading-side p { max-width: 640px; color: var(--muted); }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr); gap: clamp(2rem, 6vw, 7rem); align-items: end; }
.heading-side { align-self: end; }
.heading-side .text-link { display: inline-block; margin-top: 0.6rem; }
.light > p:last-child { color: rgba(255, 255, 255, 0.72); }

.button-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.15rem;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 700;
}
.button-primary { background: var(--forest); color: #fff; }
.button-primary:hover, .button-primary:focus-visible { background: #0f2e27; }
.button-secondary { border-color: var(--ink); background: transparent; }
.button-secondary:hover, .button-secondary:focus-visible { background: var(--ink); color: #fff; }
.button-light { background: var(--paper); color: var(--forest); }
.text-link { font-size: 0.8rem; font-weight: 700; text-decoration: underline; text-underline-offset: 0.28rem; text-decoration-thickness: 1px; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
  min-height: calc(100vh - 88px);
  padding-top: clamp(3.5rem, 6vw, 6rem);
  padding-bottom: clamp(4rem, 7vw, 7rem);
}
.hero-lead { max-width: 650px; margin: 1.7rem 0 0; color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.28rem); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1.2rem; margin-top: 2rem; color: var(--muted); font-size: 0.72rem; font-weight: 600; }
.hero-meta span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-meta span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.hero-visual { position: relative; min-height: min(720px, 74vh); }
.hero-main-image { width: 86%; height: min(630px, 67vh); margin-left: auto; object-fit: cover; object-position: center; }
.hero-inset-image { position: absolute; left: 0; bottom: 0; width: 43%; height: 39%; object-fit: cover; border: 12px solid var(--paper); }
.hero-card {
  position: absolute;
  right: 2rem;
  bottom: 1.5rem;
  max-width: 350px;
  padding: 1rem 1.2rem;
  background: rgba(23, 23, 19, 0.88);
  color: #fff;
  backdrop-filter: blur(7px);
}
.hero-card span { display: block; margin-bottom: 0.45rem; color: var(--gold); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em; }
.hero-card strong { font-family: var(--serif); font-size: 1.55rem; font-weight: 500; line-height: 1.05; }

.statement { padding: 1.25rem 5vw; text-align: center; }
.statement p { margin: 0; color: var(--gold); font-family: var(--serif); font-size: clamp(1.45rem, 2.7vw, 2.5rem); }


.work-carousel { width: 100%; max-width: 1180px; margin-inline: auto; overflow: hidden; }
.work-carousel-shell {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  align-items: center;
  gap: 1rem;
}
.work-carousel-viewport {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}
.work-carousel-slide {
  width: 100%;
  min-width: 0;
  margin: 0;
}
.work-carousel-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(23,23,19,.08);
  background: #efe9df;
}
.work-carousel-slide figcaption {
  padding: 0.85rem 0.1rem 0.15rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}
.work-carousel-slide figcaption span { display: block; color: var(--ink); }
.work-carousel-slide figcaption small {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 500;
}
.work-carousel-slide figcaption small::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.work-carousel-arrow {
  width: 56px;
  height: 56px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.work-carousel-arrow:hover {
  background: var(--ivory);
  border-color: rgba(23,23,19,.2);
  transform: translateY(-1px);
}
.work-carousel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}
.work-carousel-dots {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem;
}
.work-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(23,23,19,.18);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.work-dot.is-active {
  background: var(--forest);
  transform: scale(1.15);
}
.work-carousel-count {
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
}
.portfolio-grid { margin-top: .35rem; }

.editorial-gallery { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(420px, 0.8fr); gap: 1rem; }
.gallery-feature { position: relative; min-height: 720px; overflow: hidden; }
.gallery-feature img { width: 100%; height: 100%; min-height: 720px; object-fit: cover; }
.gallery-feature figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  max-width: 540px;
  padding: 1.1rem 1.25rem;
  background: rgba(23, 23, 19, 0.86);
  color: #fff;
}
.gallery-feature figcaption span { display: block; margin-bottom: 0.35rem; color: var(--gold); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; }
.gallery-feature figcaption strong { display: block; font-family: var(--serif); font-size: 1.65rem; font-weight: 500; }
.gallery-feature figcaption small { display: block; margin-top: .55rem; color: rgba(255,255,255,.7); font-size: .68rem; font-weight: 600; }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.gallery-grid figure { border-bottom: 1px solid var(--line); }
.gallery-grid img { width: 100%; height: 310px; object-fit: cover; }
.gallery-grid figcaption { padding: 0.75rem 0.1rem 1rem; color: var(--muted); font-size: 0.72rem; font-weight: 600; }
.gallery-grid figcaption span { display: block; color: var(--ink); }
.gallery-grid figcaption small { display: block; margin-top: .25rem; color: var(--muted); font-size: .66rem; font-weight: 500; }
.page-gallery figcaption span { display: block; color: #fff; }
.page-gallery figcaption small { display: block; margin-top: .25rem; color: rgba(255,255,255,.72); font-size: .64rem; font-weight: 500; }

.compare-carousel { width: 100%; max-width: 1220px; margin-inline: auto; overflow: visible; }
.compare-panel { display: grid; grid-template-columns: 0.36fr 0.64fr; gap: 2rem; align-items: stretch; }
.compare-copy { display: flex; flex-direction: column; justify-content: end; padding: 2rem 0; }
.compare-copy h3 { font-size: clamp(2.3rem, 4vw, 4.5rem); }
.compare-copy p:last-child { margin: 1.3rem 0 0; color: var(--muted); }
.compare-shell {
  --position: 48%;
  position: relative;
  width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #ddd8cf;
  border: 1px solid rgba(23, 23, 19, 0.13);
}
.compare-image { position: absolute; inset: 0; }
.compare-image img { display: block; width: 100%; height: 100%; object-fit: cover; }
.compare-before { clip-path: inset(0 calc(100% - var(--position)) 0 0); z-index: 2; }
.compare-range { position: absolute; z-index: 5; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.compare-divider { position: absolute; z-index: 4; top: 0; bottom: 0; left: var(--position); width: 2px; transform: translateX(-1px); background: #fff; pointer-events: none; }
.compare-divider span { position: absolute; left: 50%; top: 50%; display: grid; place-items: center; width: 46px; height: 46px; transform: translate(-50%, -50%); border: 1px solid rgba(255,255,255,.8); border-radius: 50%; background: rgba(23,23,19,.76); color: #fff; font-size: 1rem; }
.image-label { position: absolute; z-index: 3; top: 1rem; padding: 0.45rem 0.62rem; background: rgba(23,23,19,.82); color: #fff; font-size: 0.61rem; font-weight: 700; letter-spacing: .15em; }
.before-label { left: 1rem; }
.after-label { right: 1rem; }
.floorplan-compare .compare-image img { object-fit: contain; background: #fffdf8; }
.compare-nav { display: grid; grid-template-columns: 50px 1fr 50px; gap: 0.75rem; align-items: center; margin-top: 1.4rem; }
.compare-arrow { width: 50px; height: 44px; border: 1px solid var(--line); background: transparent; color: var(--ink); }
.compare-arrow:hover, .compare-arrow:focus-visible { background: var(--forest); color: #fff; }
.compare-tabs { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.compare-tabs button { min-height: 44px; padding: 0.65rem; border: 0; border-right: 1px solid var(--line); background: transparent; color: var(--muted); font-size: 0.72rem; font-weight: 700; }
.compare-tabs button:last-child { border-right: 0; }
.compare-tabs button.is-active { background: var(--forest); color: #fff; }

.services-heading { align-items: start; }
.services-heading p:last-child { justify-self: end; max-width: 430px; margin-top: 1.25rem; }
.services-headline { max-width: 980px; font-size: clamp(3.3rem, 6vw, 5.7rem); line-height: 0.92; }
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.service-card { padding: 1.5rem; border: 1px solid var(--line); background: var(--paper); }
.service-card span { display: inline-block; margin-bottom: 1rem; color: var(--gold); font-family: var(--serif); font-size: 1.55rem; }
.service-card h3 { margin-bottom: 1rem; font-size: clamp(1.8rem, 2.4vw, 2.8rem); }
.service-card p { margin: 0; color: var(--muted); font-size: 0.94rem; }

.video-section { max-width: none; }
.video-section > * { max-width: calc(var(--max) - 10vw); margin-inline: auto; }
.video-frame { position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.18); }
.video-frame video { width: 100%; aspect-ratio: 16 / 9; background: #000; object-fit: cover; }
.video-caption { position: absolute; left: 1rem; bottom: 4.2rem; max-width: 460px; padding: 0.85rem 1rem; background: rgba(23,23,19,.82); color: #fff; pointer-events: none; }
.video-caption span { display: block; margin-bottom: .35rem; color: var(--gold); font-size: .62rem; font-weight: 700; letter-spacing: .16em; }
.video-caption strong { font-family: var(--serif); font-size: 1.45rem; font-weight: 500; line-height: 1.1; }

.pricing-grid { display: grid; gap: 1rem; }
.pricing-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
.price-card { display: grid; grid-template-rows: auto 1fr auto; gap: 1.4rem; min-height: 520px; padding: clamp(1.5rem, 3vw, 2.2rem); border: 1px solid var(--line); background: var(--paper); }
.card-label { min-height: 1.2rem; margin: 0; font-size: .67rem; letter-spacing: .16em; font-weight: 700; }
.price-card h3 { margin: 0.9rem 0 1.1rem; max-width: 520px; font-size: clamp(2.1rem, 3.3vw, 3.9rem); }
.price { margin: 0; font-size: .85rem; }
.price strong { margin-left: .35rem; font-family: var(--serif); font-size: clamp(3rem, 4.4vw, 4.7rem); font-weight: 500; }
.custom-price { color: var(--forest); font-family: var(--sans); font-size: 1rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.price-card ul { display: grid; align-content: start; gap: .62rem; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: .84rem; }
.price-card li { padding-bottom: .62rem; border-bottom: 1px solid var(--line); }
.price-card > .text-link, .price-card > .button { justify-self: start; align-self: end; }
.featured-price { background: var(--forest); color: #fff; }
.featured-price ul { color: rgba(255,255,255,.82); }
.featured-price li { border-color: rgba(255,255,255,.17); }
.addons-panel { display: grid; grid-template-columns: minmax(300px,.78fr) minmax(0,1.22fr); gap: clamp(2rem,5vw,5rem); margin-top: 1rem; padding: clamp(1.6rem,3vw,2.6rem); border: 1px solid var(--line); background: var(--ivory); }
.addons-heading h3 { max-width: 560px; font-size: clamp(2.2rem,3.5vw,4rem); }
.addons-heading > p:last-child { max-width: 520px; margin: 1rem 0 0; color: var(--muted); }
.addons-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); align-content: start; gap: .75rem 1.3rem; }
.addons-grid span { position: relative; padding: .8rem .8rem .8rem 1.8rem; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .82rem; }
.addons-grid span::before { content: "+"; position: absolute; left: .35rem; color: var(--gold); font-family: var(--serif); font-size: 1.2rem; line-height: 1; }


#about { padding-top: clamp(2.8rem, 4.8vw, 4.8rem); }

.about-section { display: grid; grid-template-columns: minmax(380px, .85fr) minmax(0, 1.15fr); gap: clamp(3rem, 8vw, 9rem); align-items: center; }
.about-image img { width: 100%; max-height: 760px; object-fit: contain; object-position: center; border: 1px solid var(--line); background: var(--ivory); box-shadow: 0 18px 40px rgba(23,23,19,0.08); }
.about-copy blockquote { margin: 1.8rem 0; padding-left: 1.2rem; border-left: 2px solid var(--gold); font-size: clamp(2rem, 3.5vw, 4.2rem); line-height: 1.02; }
.about-copy > p:not(.eyebrow) { max-width: 690px; color: var(--muted); }
.trust-band { padding: clamp(2.5rem, 5vw, 4.5rem) 5vw; text-align: center; }
.trust-band p { max-width: 1000px; margin: 0 auto; font-family: var(--serif); font-size: clamp(2.2rem, 4.4vw, 5rem); line-height: 1; }

.contact-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 7vw, 8rem); align-items: start; }
.contact-intro { position: sticky; top: 120px; }
.contact-intro > p:not(.eyebrow) { max-width: 560px; color: var(--muted); }
.contact-links { display: grid; gap: .75rem; margin-top: 1.8rem; font-size: .86rem; font-weight: 700; }
.contact-links a { overflow-wrap: anywhere; }
.assessment-form { display: grid; gap: 1.15rem; padding: clamp(1.4rem, 3vw, 2.3rem); background: var(--ivory); }
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.15rem; }
.assessment-form label, .assessment-form legend { font-size: .76rem; font-weight: 700; }
.assessment-form label span { color: #8a2e1f; }
.assessment-form small { float: right; color: var(--muted); font-size: .65rem; font-weight: 400; }
.assessment-form input:not([type="checkbox"]), .assessment-form select, .assessment-form textarea { width: 100%; margin-top: .42rem; padding: .82rem .75rem; border: 1px solid rgba(23,23,19,.24); border-radius: 0; background: var(--paper); color: var(--ink); }
.assessment-form textarea { min-height: 130px; resize: vertical; }
.assessment-form input:focus, .assessment-form select:focus, .assessment-form textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.assessment-form fieldset { margin: 0; padding: .95rem; border: 1px solid rgba(23,23,19,.18); }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .72rem; margin-top: .7rem; }
.check-grid label { font-weight: 400; }
.check-grid input { margin-right: .38rem; accent-color: var(--forest); }
.form-submit { justify-self: start; }
.form-note { margin: -.2rem 0 0; color: var(--muted); font-size: .67rem; }

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-top: 1px solid rgba(216,180,91,.46);
  background:
    radial-gradient(circle at 92% 8%, rgba(216,180,91,.12), transparent 28%),
    linear-gradient(135deg, #121512 0%, #171713 54%, #102a24 100%);
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 36%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(210px, .78fr) minmax(150px, .58fr) minmax(290px, 1fr);
  gap: clamp(1.8rem, 3.4vw, 3.8rem);
  align-items: stretch;
  max-width: var(--max);
  margin-inline: auto;
  padding: 4rem 5vw 2.6rem;
}
.footer-brand { padding-right: clamp(.5rem, 2vw, 1.6rem); }
.footer-brand img { width: 176px; height: auto; object-fit: contain; object-position: left center; }
.footer-brand > p:first-of-type { margin: .6rem 0 0; font-family: var(--serif); font-size: 1.72rem; line-height: 1.1; }
.footer-blurb { max-width: 390px; margin-top: 1rem; color: rgba(255,255,255,.64); font-family: var(--sans) !important; font-size: .86rem !important; line-height: 1.7; }
.footer-top > .footer-column {
  display: grid;
  align-content: start;
  gap: .78rem;
  padding: .25rem 0 .25rem clamp(1.1rem, 2vw, 1.7rem);
  border-left: 1px solid rgba(255,255,255,.09);
}
.footer-column a { color: rgba(255,255,255,.86); font-size: .82rem; transition: color 180ms ease, transform 180ms ease; }
.footer-column a:hover, .footer-column a:focus-visible { color: var(--gold); transform: translateX(2px); }
.footer-heading {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 .45rem;
  color: var(--gold);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.footer-heading::after { content: ""; width: 34px; height: 1px; background: rgba(216,180,91,.52); }
.footer-founder, .footer-cta-copy { margin: 0; color: rgba(255,255,255,.6); font-size: .8rem; line-height: 1.65; }
.footer-founder { margin-top: .2rem; color: rgba(255,255,255,.82); font-weight: 600; letter-spacing: .02em; }
.footer-cta-block {
  align-self: start;
  padding: 1.45rem 1.35rem !important;
  border: 1px solid rgba(216,180,91,.28) !important;
  background: linear-gradient(145deg, rgba(23,58,49,.94), rgba(14,38,32,.82));
  box-shadow: 0 18px 45px rgba(0,0,0,.16);
}
.footer-cta-block .footer-heading::after { flex: 1; }
.footer-cta-block .button { justify-self: start; margin-top: .45rem; background: var(--paper); color: var(--forest); border-color: var(--paper); }
.footer-cta-block .button:hover, .footer-cta-block .button:focus-visible { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max);
  margin-inline: auto;
  padding: 1.2rem 5vw 1.45rem;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.08);
}
.footer-meta, .copyright { margin: 0; color: rgba(255,255,255,.5); font-size: .67rem; letter-spacing: .01em; }
.copyright { text-align: right; }
.about-signoff {
  display: inline-grid;
  gap: .18rem;
  margin: 1.45rem 0 .55rem;
  padding: .9rem 1.1rem .9rem 1.2rem;
  border-left: 3px solid var(--gold);
  background: linear-gradient(90deg, rgba(216,180,91,.14), rgba(216,180,91,0));
}
.signoff-name { color: var(--forest); font-family: var(--sans); font-size: 1.12rem; font-weight: 800; letter-spacing: -.02em; }
.signoff-role { color: #9a7728; font-family: var(--sans); font-size: .7rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }

/* Secondary pages */
.privacy-wrap { max-width: 980px; margin-inline: auto; }
.privacy-wrap h1 { max-width: 860px; }
.privacy-content { display: grid; gap: 2rem; margin-top: 3rem; }
.privacy-content section { padding-top: 1.5rem; border-top: 1px solid var(--line); }
.privacy-content h2 { margin-bottom: .8rem; font-size: clamp(2rem,3.5vw,3.8rem); }
.privacy-content p, .privacy-content li { color: var(--muted); }

.page-hero { display: grid; grid-template-columns: 1fr .8fr; gap: 4rem; align-items: end; padding-top: 5rem; }
.page-hero p:last-child { max-width: 620px; color: var(--muted); }
.page-gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; }
.page-gallery figure { position: relative; overflow: hidden; border: 1px solid rgba(23,23,19,.08); background: #ece7dd; }
.page-gallery img { width: 100%; height: 100%; object-fit: cover; }
.page-gallery figcaption { position: absolute; left: .75rem; bottom: .75rem; padding: .55rem .7rem; background: rgba(23,23,19,.82); color: #fff; font-size: .68rem; }
.span-12 { grid-column: span 12; }
.span-7 { grid-column: span 7; }
.span-5 { grid-column: span 5; }
.span-4 { grid-column: span 4; }
.aspect-hero { min-height: 440px; }
.aspect-wide { min-height: 450px; }
.aspect-standard { min-height: 360px; }
.edit-comparison-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.1rem; }
.edit-comparison-grid figure { position: relative; min-height: 330px; overflow: hidden; border: 1px solid rgba(23,23,19,.08); background: #f4efe6; }
.edit-comparison-grid img { width: 100%; height: 100%; object-fit: cover; }
.edit-comparison-grid figure:nth-child(3) img,
.edit-comparison-grid figure:nth-child(4) img { object-fit: contain; background: #fffdf8; }
.edit-comparison-grid figcaption { position: absolute; left: .75rem; bottom: .75rem; padding: .55rem .7rem; background: rgba(23,23,19,.82); color: #fff; font-size: .68rem; }
.empty-state { max-width: 780px; margin-inline: auto; padding: 4rem; border: 1px solid var(--line); background: var(--ivory); text-align: center; }
.empty-state h2 { margin-inline: auto; }
.success-wrap { min-height: calc(100vh - 88px); display: grid; place-items: center; }
.success-card { max-width: 760px; padding: 4rem; text-align: center; border: 1px solid var(--line); background: var(--ivory); }
.success-card img { margin: 0 auto 1rem; }
.success-logo { display: block; width: min(180px, 58vw); height: auto !important; aspect-ratio: auto; object-fit: contain; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.js .reveal.visible, .js-fallback .reveal { opacity: 1; transform: none; }

@media (min-width: 1280px) {
  .services-headline { white-space: nowrap; }
}

@media (max-width: 1220px) {
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-card { min-height: 0; }
}

@media (max-width: 1080px) {
  .menu-toggle { display: block; }
  .site-nav { position: absolute; left: 0; right: 0; top: 96px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 1rem 5vw 1.4rem; border-bottom: 1px solid var(--line); background: var(--paper); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .78rem 0; }
  .nav-cta { margin-top: .45rem; padding: .85rem 1rem !important; text-align: center; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { max-width: 900px; }
  .hero-visual { min-height: 680px; }
  .work-carousel-shell { grid-template-columns: 48px minmax(0, 1fr) 48px; gap: .85rem; }
  .services-heading { grid-template-columns: 1fr; gap: 1.4rem; }
  .services-heading p:last-child { justify-self: start; max-width: 620px; margin-top: 0; }
  .services-headline { max-width: none; }
  .editorial-gallery { grid-template-columns: 1fr; }
  .gallery-feature, .gallery-feature img { min-height: 650px; }
  .compare-panel { grid-template-columns: 1fr; }
  .compare-copy { max-width: 800px; padding: 0; }
  .pricing-grid-three { grid-template-columns: 1fr; }
  .addons-panel { grid-template-columns: 1fr; }
  .about-section, .contact-section, .page-hero { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-top > .footer-column:nth-child(3) { border-left: 0; padding-left: 0; }
  .about-image img { max-height: 650px; object-fit: contain; background: var(--ivory); }
  .contact-intro { position: static; }
  .page-gallery .span-12, .page-gallery .span-7, .page-gallery .span-5, .page-gallery .span-4 { grid-column: span 12; }
  .edit-comparison-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header { min-height: 82px; }
  .brand img { width: 68px; height: 68px; }
  .site-nav { top: 82px; }
  .section-pad { padding: 4.2rem 1.15rem; }
  h1 { font-size: clamp(4rem, 18vw, 6rem); }
  h2 { font-size: clamp(3rem, 14vw, 5rem); }
  .split-heading { grid-template-columns: 1fr; gap: 1.6rem; align-items: start; }
  .services-headline { font-size: clamp(2.8rem, 13vw, 4.6rem); white-space: normal; }
  .hero { padding-top: 3.2rem; }
  .hero-visual { min-height: 520px; }
  .hero-main-image { width: 90%; height: 470px; }
  .hero-inset-image { width: 50%; height: 34%; border-width: 8px; }
  .hero-card { right: .65rem; bottom: .65rem; max-width: 270px; }
  .work-carousel { overflow: visible; }
  .work-carousel-shell { position: relative; display: block; width: 100%; }
  .work-carousel-viewport { width: 100%; }
  .work-carousel-slide img { aspect-ratio: 4 / 3; object-fit: cover; }
  .work-carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 8;
    width: 42px;
    height: 42px;
    transform: translateY(-50%);
    border-color: rgba(255,255,255,.8);
    background: rgba(23,23,19,.72);
    color: #fff;
    backdrop-filter: blur(5px);
  }
  .work-carousel-arrow:hover { transform: translateY(-50%); background: rgba(23,23,19,.86); }
  .work-carousel-prev { left: .65rem; }
  .work-carousel-next { right: .65rem; }
  .work-carousel-footer { margin-top: .65rem; flex-direction: row; align-items: center; }
  .hero-meta { display: grid; gap: .5rem; }
  .gallery-feature, .gallery-feature img { min-height: 460px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img { height: 320px; }
  .compare-copy h3 { font-size: 2.8rem; }
  .compare-carousel { width: 100%; overflow: visible; }
  .compare-panel { display: block; width: 100%; }
  .compare-copy { width: 100%; margin-bottom: 1.25rem; }
  .compare-shell { width: 100%; min-height: 250px; aspect-ratio: 4 / 3; overflow: hidden; }
  .compare-image { width: 100%; height: 100%; }
  .compare-divider { display: block; }
  .compare-divider span { width: 42px; height: 42px; }
  .compare-range { display: block; touch-action: none; }

  .compare-nav { grid-template-columns: 44px 1fr 44px; }
  .compare-arrow { width: 44px; }
  .compare-tabs { grid-template-columns: repeat(2, 1fr); }
  .compare-tabs button { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .compare-tabs button:nth-child(2n) { border-right: 0; }
  .compare-tabs button:nth-last-child(-n+2) { border-bottom: 0; }
  .addons-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .video-caption { left: .65rem; right: .65rem; bottom: 3.2rem; max-width: none; }
  .video-caption strong { font-size: 1.1rem; }
  .field-grid, .check-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; padding: 2.8rem 1.15rem 1.8rem; }
  .footer-top > .footer-column { border-left: 0; border-top: 1px solid rgba(255,255,255,.08); padding: 1.25rem 0 0; }
  .footer-cta-block { margin-top: .35rem; }
  .footer-bottom { padding: 1rem 1.15rem 1.5rem; }
  .copyright { text-align: left; }
  .aspect-hero { min-height: 280px; }
  .aspect-wide, .aspect-standard { min-height: 280px; }
  .edit-comparison-grid figure { min-height: 270px; }
  .empty-state, .success-card { padding: 2rem 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
}
