:root {
  --ink: #141311;
  --charcoal: #1c1a17;
  --wood: #8d623d;
  --wood-deep: #6e4a2d;
  --wood-light: #c4a07a;
  --cream: #f4f0e8;
  --paper: #faf8f4;
  --sage: #7d8c78;
  --sage-deep: #5c6b58;
  --muted: #6b6560;
  --line: rgba(20, 19, 17, 0.1);
  --line-light: rgba(244, 240, 232, 0.14);
  --shadow: 0 18px 50px rgba(20, 19, 17, 0.12);
  --radius: 14px;
  --nav: 84px;
  --max: 1180px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Syne", "Outfit", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav) + 12px);
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(2.35rem, 4.6vw, 3.7rem);
  font-weight: 800;
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 3.1rem);
  font-weight: 700;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.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;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}

.eyebrow {
  display: inline-block;
  color: var(--wood);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.eyebrow.light,
.section-head.light .eyebrow {
  color: var(--wood-light);
}

.section-head {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-head.light h2,
.section-head.light p {
  color: var(--cream);
}

.lede {
  font-size: 1.08rem;
  max-width: 52ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.35s var(--ease),
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.btn .icon {
  width: 18px;
  height: 18px;
}

.nav-toggle .icon {
  width: 22px;
  height: 22px;
}

.btn-lg {
  min-height: 54px;
  padding: 0 1.4rem;
}

.btn-wood {
  background: var(--wood);
  color: #fff;
  box-shadow: 0 8px 22px rgba(141, 98, 61, 0.22);
}

.btn-wood::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.22) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
  pointer-events: none;
}

.btn-wood:hover {
  background: var(--wood-deep);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 28px rgba(141, 98, 61, 0.32);
}

.btn-wood:hover::after {
  transform: translateX(120%);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(244, 240, 232, 0.28);
  color: var(--cream);
}

.btn-ghost:hover {
  border-color: var(--wood-light);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(20, 19, 17, 0.16);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.85rem 0 1.55rem;
}

/* NAV */
[hidden] {
  display: none !important;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 80;
  background: transparent;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--wood);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--nav);
  background: rgba(20, 19, 17, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  animation: navIn 0.8s var(--ease) both;
  transition:
    height 0.4s var(--ease),
    background 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease);
}

.nav.is-scrolled {
  height: 68px;
  background: rgba(20, 19, 17, 0.94);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom-color: var(--line-light);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.nav-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--cream);
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(196, 160, 122, 0.35);
}

.brand span {
  display: flex;
  flex-direction: column;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-size: 1.05rem;
}

.brand small {
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wood-light);
}

.nav-links {
  display: flex;
  gap: 1.15rem;
  margin-left: auto;
}

.nav-links a {
  position: relative;
  color: rgba(244, 240, 232, 0.78);
  font-size: 0.94rem;
  font-weight: 500;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--wood-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #fff;
  transform: translateY(-1px);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  color: var(--cream);
  width: 44px;
  height: 44px;
}

.mobile-menu {
  display: none;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 0.9fr 1.12fr;
  min-height: calc(100svh - var(--nav));
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero-copy {
  padding: clamp(3rem, 7vw, 6.75rem) clamp(1.6rem, 5.2vw, 5.25rem) clamp(3.2rem, 7vw, 6.75rem) clamp(1.6rem, 6vw, 6.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(196, 160, 122, 0.08) 0.7px, transparent 0.7px);
  background-size: 18px 18px;
  mask-image: linear-gradient(180deg, #000, transparent 80%);
  pointer-events: none;
  animation: grainDrift 28s linear infinite;
}

.hero-copy::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -80px;
  top: 18%;
  background: radial-gradient(circle, rgba(141, 98, 61, 0.22), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
  animation: orbFloat 14s var(--ease) infinite alternate;
}

.hero h1,
.hero .lede,
.hero .eyebrow,
.hero-actions,
.trust-row,
.hero-phone {
  position: relative;
}

.hero h1 {
  display: flex;
  flex-direction: column;
  gap: 0.12em;
  margin-bottom: 0.7em;
}

.hero h1 .line {
  display: block;
}

.hero .lede {
  color: rgba(244, 240, 232, 0.78);
  max-width: 38ch;
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}

.hero-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 118%;
  object-fit: cover;
  object-position: 68% 76%;
  transform: scale(1.06);
  will-change: transform;
  animation: kenBurns 24s var(--ease) infinite alternate;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--ink) 0%, rgba(20, 19, 17, 0.78) 16%, rgba(20, 19, 17, 0.28) 38%, transparent 58%),
    linear-gradient(180deg, rgba(20, 19, 17, 0.22), transparent 32%, rgba(20, 19, 17, 0.38));
  background-size: 140% 100%, 100% 140%;
  background-position: 0% 50%, 50% 0%;
  pointer-events: none;
  z-index: 1;
  animation: overlayShift 18s var(--ease) infinite alternate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 80px rgba(20, 19, 17, 0.35);
  z-index: 1;
  pointer-events: none;
}

.hero-in {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
}

.hero.is-ready .hero-in {
  animation: fadeUp 0.9s var(--ease) both;
  animation-delay: calc(var(--i) * 90ms + 120ms);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  list-style: none;
}

.trust-row li {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: rgba(244, 240, 232, 0.72);
  border: 1px solid var(--line-light);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
}

.hero-phone {
  margin-top: 1.2rem;
  color: var(--wood-light);
  font-weight: 600;
  letter-spacing: 0.04em;
  width: fit-content;
}

/* SERVICES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem 1.3rem 1.5rem;
  box-shadow: 0 10px 30px rgba(20, 19, 17, 0.04);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease),
    background 0.4s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(141, 98, 61, 0.42);
  box-shadow: 0 18px 40px rgba(20, 19, 17, 0.1);
  background: #fffdf9;
}

.service-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(125, 140, 120, 0.14);
  color: var(--sage-deep);
  margin-bottom: 1rem;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}

.service-card:hover .service-icon {
  transform: translateY(-2px) scale(1.06);
  background: rgba(141, 98, 61, 0.16);
  color: var(--wood-deep);
}

.service-icon .icon {
  width: 22px;
  height: 22px;
}

.service-card p {
  margin: 0;
}

/* WHY */
.why {
  position: relative;
  background: var(--charcoal);
  color: var(--cream);
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  overflow: hidden;
}

.why-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(141, 98, 61, 0.22), transparent 28%),
    url("../assets/images/project-deck-frame.jpg") center/cover;
  opacity: 0.18;
  animation: slowPan 30s linear infinite alternate;
}

.why-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #1c1a17, rgba(28, 26, 23, 0.92) 40%, #1c1a17);
}

.why-inner {
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.why-card {
  position: relative;
  padding: 1.6rem 1.4rem;
  border: 1px solid var(--line-light);
  border-radius: 18px;
  background: rgba(20, 19, 17, 0.45);
  backdrop-filter: blur(8px);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 160, 122, 0.4);
  background: rgba(20, 19, 17, 0.62);
}

.why-num {
  position: absolute;
  right: 1.1rem;
  top: 1.1rem;
  font-family: var(--display);
  color: rgba(196, 160, 122, 0.35);
  font-size: 1.6rem;
}

.why-card h3 {
  color: #fff;
}

.why-card p {
  color: rgba(244, 240, 232, 0.72);
  margin: 0;
}

/* PROJECTS */
.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.project-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
  min-height: 280px;
  background: var(--charcoal);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.project-card img.crop-brace {
  object-position: 78% 88%;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(20, 19, 17, 0.88));
  opacity: 0.92;
  transition: opacity 0.45s var(--ease);
}

.project-meta {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 1;
  text-align: left;
  color: #fff;
  transform: translateY(8px);
  transition: transform 0.45s var(--ease);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(20, 19, 17, 0.22);
}

.project-card:hover img {
  transform: scale(1.07);
}

.project-card:hover::after {
  opacity: 1;
}

.project-card:hover .project-meta,
.project-card:focus-visible .project-meta {
  transform: translateY(0);
}

.project-card:focus-visible {
  outline: 2px solid var(--wood);
  outline-offset: 3px;
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(20, 19, 17, 0.22);
}

.project-card:focus-visible img {
  transform: scale(1.07);
}

.project-card:focus-visible::after {
  opacity: 1;
}

.project-card.feature {
  grid-column: span 8;
  min-height: 560px;
}

.project-card.side {
  grid-column: span 4;
  min-height: 560px;
}

.project-card.wide,
.project-card.tall {
  grid-column: span 4;
  min-height: 360px;
}

.project-meta em {
  display: block;
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wood-light);
  margin-bottom: 0.25rem;
}

.project-meta strong {
  display: block;
  font-family: var(--display);
  font-size: 1.25rem;
}

.project-meta span {
  display: block;
  color: rgba(244, 240, 232, 0.78);
  font-size: 0.92rem;
  margin-top: 0.2rem;
}

.center-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(10, 9, 8, 0);
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s, background 0.4s var(--ease);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  background: rgba(10, 9, 8, 0.92);
}

.lb-panel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
  width: min(1100px, 100%);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.45s var(--ease);
}

.lightbox.is-open .lb-panel {
  transform: none;
}

.lb-figure {
  margin: 0 auto;
  max-width: min(920px, 100%);
}

.lb-figure img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 12px;
  background: #000;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.4s var(--ease), transform 0.45s var(--ease);
}

.lightbox.is-open .lb-figure img.is-shown {
  opacity: 1;
  transform: none;
}

.lb-figure figcaption {
  color: var(--cream);
  margin-top: 1rem;
}

.lb-figure span {
  color: var(--wood-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.lb-close,
.lb-nav {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.lb-close:hover,
.lb-nav:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: scale(1.05);
}

.lb-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
}

.lb-nav {
  font-size: 1.6rem;
}

/* ABOUT */
.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  border-radius: 22px;
  transform: scale(1.03);
  transition: transform 1.1s var(--ease);
}

.about-media.is-visible img {
  transform: none;
}

.about-badge {
  position: absolute;
  right: -18px;
  bottom: 32px;
  background: var(--ink);
  color: var(--cream);
  padding: 1.1rem 1.2rem;
  border-radius: 16px;
  max-width: 240px;
  box-shadow: var(--shadow);
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.7s var(--ease) 0.2s, opacity 0.7s var(--ease) 0.2s;
}

.about-media.is-visible .about-badge {
  transform: none;
  opacity: 1;
}

.about-badge strong,
.about-badge span {
  display: block;
}

.about-badge span {
  color: rgba(244, 240, 232, 0.7);
  font-size: 0.88rem;
  margin-top: 0.25rem;
}

.about-copy h2 {
  max-width: 14ch;
}

.about-list {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.about-list li {
  padding: 0.7rem 0;
  border-top: 1px solid var(--line);
  padding-left: 1.4rem;
  position: relative;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.about-copy.is-visible .about-list li {
  opacity: 1;
  transform: none;
}

.about-copy.is-visible .about-list li:nth-child(1) { transition-delay: 0.12s; }
.about-copy.is-visible .about-list li:nth-child(2) { transition-delay: 0.22s; }
.about-copy.is-visible .about-list li:nth-child(3) { transition-delay: 0.32s; }

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
}

/* AREAS */
.areas {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  background:
    linear-gradient(180deg, rgba(244, 240, 232, 0.92), rgba(244, 240, 232, 0.92)),
    url("../assets/images/project-fencing.jpg") center/cover;
}

.areas-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}

.area-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.7rem;
}

.area-list li,
.areas-address {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem 1rem;
}

.area-list strong,
.area-list span {
  display: block;
}

.area-list span {
  color: var(--muted);
  font-size: 0.88rem;
}

.area-list .icon,
.areas-address .icon {
  width: 22px;
  color: var(--wood);
}

.map-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  filter: saturate(0.75) contrast(1.05);
}

.map-link {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--ink);
  color: #fff;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.86rem;
}

.map-link .icon {
  width: 16px;
}

/* REVIEWS */
.review-score {
  max-width: 58ch;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.review-card {
  grid-column: span 2;
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(141, 98, 61, 0.32);
  box-shadow: 0 16px 36px rgba(20, 19, 17, 0.08);
}

.review-card:nth-child(1),
.review-card:nth-child(2) {
  grid-column: span 3;
}

.review-card p {
  color: var(--ink);
}

.review-card footer {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.88rem;
}

/* CTA */
.cta-band {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--cream);
  text-align: center;
}

.cta-media,
.cta-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-media img {
  transform: scale(1.06);
  animation: kenBurns 28s var(--ease) infinite alternate;
}

.cta-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 19, 17, 0.55), rgba(20, 19, 17, 0.78));
}

.cta-inner {
  position: relative;
  padding: 5rem 0;
}

.cta-inner h2,
.cta-inner p {
  color: #fff;
}

.cta-inner p {
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-inner .hero-actions {
  justify-content: center;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
}

.contact-facts {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: grid;
  gap: 1rem;
}

.contact-facts li {
  display: flex;
  gap: 0.85rem;
}

.contact-facts .icon {
  width: 22px;
  color: var(--wood);
  margin-top: 0.2rem;
}

.contact-facts span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-facts a,
.contact-facts strong {
  font-weight: 600;
}

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

form {
  display: grid;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.3s var(--ease);
}

label:focus-within {
  color: var(--wood-deep);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  background: var(--paper);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(141, 98, 61, 0.35);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--wood);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(141, 98, 61, 0.14);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #9a3b2a;
  box-shadow: 0 0 0 4px rgba(154, 59, 42, 0.12);
}

label em {
  color: #9a3b2a;
  font-style: normal;
  font-weight: 500;
  font-size: 0.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.form-submit {
  width: 100%;
}

.form-note {
  margin: 0;
  font-size: 0.85rem;
}

.form-success {
  text-align: center;
  padding: 2rem 0.5rem;
}

.form-success.is-shown {
  animation: fadeUp 0.6s var(--ease) both;
}

.form-success.is-shown .success-mark {
  animation: popIn 0.5s var(--ease) 0.08s both;
}

.success-mark {
  width: 58px;
  height: 58px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(125, 140, 120, 0.18);
  color: var(--sage-deep);
}

/* FOOTER */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer p,
.footer span {
  color: rgba(244, 240, 232, 0.72);
}

.footer a {
  color: rgba(244, 240, 232, 0.72);
  transition: color 0.3s var(--ease);
}

.footer a:hover {
  color: #fff;
}

.footer h3 {
  color: #fff;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer nav {
  display: grid;
  gap: 0.45rem;
}

.footer-brand p {
  margin-top: 1rem;
  max-width: 36ch;
}

.footer-bottom {
  border-top: 1px solid var(--line-light);
  padding: 1.15rem 0 1.4rem;
  text-align: center;
  font-size: 0.88rem;
  display: grid;
  gap: 0.35rem;
  justify-items: center;
}

.footer-bottom p {
  margin: 0;
}

.built-by {
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: rgba(244, 240, 232, 0.42);
}

.built-by a {
  color: rgba(196, 160, 122, 0.88);
  position: relative;
  display: inline-block;
}

.built-by a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.built-by a:hover {
  color: var(--wood-light);
}

.built-by a:hover::after {
  transform: scaleX(1);
}

/* REVEAL */
[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--d, 0ms);
}

[data-reveal="right"] {
  transform: translate3d(28px, 0, 0);
}

[data-reveal="left"] {
  transform: translate3d(-28px, 0, 0);
}

[data-reveal="scale"] {
  transform: translate3d(0, 18px, 0) scale(1.03);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.section-head[data-reveal] .eyebrow,
.section-head[data-reveal] h2,
.section-head[data-reveal] p {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.section-head.is-visible .eyebrow,
.section-head.is-visible h2,
.section-head.is-visible p {
  opacity: 1;
  transform: none;
}

.section-head.is-visible h2 {
  transition-delay: 90ms;
}

.section-head.is-visible p {
  transition-delay: 170ms;
}

.service-card:nth-child(1) { --d: 0ms; }
.service-card:nth-child(2) { --d: 70ms; }
.service-card:nth-child(3) { --d: 140ms; }
.service-card:nth-child(4) { --d: 210ms; }
.service-card:nth-child(5) { --d: 280ms; }
.service-card:nth-child(6) { --d: 350ms; }
.service-card:nth-child(7) { --d: 420ms; }

.why-card:nth-child(1) { --d: 0ms; }
.why-card:nth-child(2) { --d: 90ms; }
.why-card:nth-child(3) { --d: 180ms; }
.why-card:nth-child(4) { --d: 270ms; }

.project-card:nth-child(1) { --d: 0ms; }
.project-card:nth-child(2) { --d: 80ms; }
.project-card:nth-child(3) { --d: 40ms; }
.project-card:nth-child(4) { --d: 120ms; }
.project-card:nth-child(5) { --d: 90ms; }
.project-card:nth-child(6) { --d: 160ms; }
.project-card:nth-child(7) { --d: 60ms; }
.project-card:nth-child(8) { --d: 140ms; }
.project-card:nth-child(9) { --d: 200ms; }

.review-card:nth-child(1) { --d: 0ms; }
.review-card:nth-child(2) { --d: 80ms; }
.review-card:nth-child(3) { --d: 160ms; }
.review-card:nth-child(4) { --d: 80ms; }
.review-card:nth-child(5) { --d: 160ms; }

.section {
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(72px, 20%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--wood), transparent);
  transform: translateX(-50%);
  opacity: 0.45;
}

#services.section::before {
  display: none;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translate3d(0, 22px, 0); }
  to { opacity: 1; transform: none; }
}

@keyframes navIn {
  from { opacity: 0; transform: translate3d(0, -12px, 0); }
  to { opacity: 1; transform: none; }
}

@keyframes kenBurns {
  from { transform: scale(1.06); }
  to { transform: scale(1.12); }
}

@keyframes grainDrift {
  from { background-position: 0 0; }
  to { background-position: 80px 40px; }
}

@keyframes orbFloat {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-18px, 24px, 0); }
}

@keyframes slowPan {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.5%, 1%, 0); }
}

@keyframes overlayShift {
  from { background-position: 0% 50%, 50% 0%; }
  to { background-position: 18% 50%, 50% 100%; }
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.7); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  [data-reveal],
  .hero-in {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-photo {
    transform: none !important;
    height: 100%;
  }
  .section-head .eyebrow,
  .section-head h2,
  .section-head p,
  .about-list li {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 980px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 61;
    background: rgba(20, 19, 17, 0.97);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    padding: 1.2rem 1.2rem 1.6rem;
    border-bottom: 1px solid var(--line-light);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  }

  .mobile-menu.is-open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .mobile-menu a {
    color: var(--cream);
    padding: 0.7rem 0;
    font-size: 1.15rem;
  }

  .hero,
  .about-grid,
  .areas-grid,
  .contact-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 58vh;
    order: -1;
  }

  .hero-photo {
    object-position: 62% 68%;
    animation: none;
    transform: scale(1.04);
    height: 100%;
    will-change: auto;
  }

  .hero-copy::before,
  .hero-copy::after,
  .why-bg,
  .cta-media img,
  .hero-visual::after {
    animation: none;
  }

  .hero-visual::after {
    background: linear-gradient(180deg, transparent 32%, rgba(20, 19, 17, 0.55) 70%, var(--ink));
  }

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

  .service-card,
  .project-card.feature,
  .project-card.side,
  .project-card.wide,
  .project-card.tall,
  .review-card,
  .review-card:nth-child(1),
  .review-card:nth-child(2) {
    grid-column: span 12;
  }

  .about-media img {
    height: 460px;
  }

  .about-badge {
    right: 12px;
    bottom: 12px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .lb-nav {
    display: grid;
    place-items: center;
    position: absolute;
    top: 42%;
    z-index: 2;
  }

  .lb-nav.prev {
    left: 6px;
  }

  .lb-nav.next {
    right: 6px;
  }

  .lightbox,
  .lb-panel {
    grid-template-columns: 1fr;
    padding-top: 4.5rem;
  }
}

@media (min-width: 981px) {
  .service-card:last-child {
    grid-column: 2;
  }
}

@media (hover: none) {
  .service-card:hover,
  .why-card:hover,
  .project-card:hover,
  .review-card:hover,
  .btn-wood:hover,
  .btn-ghost:hover,
  .btn-outline:hover {
    transform: none;
  }
  .project-meta {
    transform: none;
  }
}
