/* =========================================================
   Auburn Oak Ltd — Global Stylesheet
   ========================================================= */

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

:root {
  --oak: #f9b233;
  --oak-dark: #d9941a;
  --charcoal: #1C1C1C;
  --stone: #2E2A25;
  --cream: #F9F5EF;
  --mid: #6B6560;
  --border: #E2D9CC;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--charcoal);
  background: #fff;
  font-weight: 300;
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  height: 80px;
  padding: 10px 0 14px;
  flex-shrink: 0;
}

.nav-logo img {
  height: 100%;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color .2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--oak);
}

.nav-cta {
  background: var(--oak);
  color: #fff;
  padding: 0.65rem 1.6rem;
  border: none;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  transition: background .2s;
}

.nav-cta:hover {
  background: var(--oak-dark);
}

/* ── BURGER ── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease, width 0.25s ease;
  transform-origin: center;
}

.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE MENU ── */
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 140;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  pointer-events: none;
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--charcoal);
  z-index: 150;
  display: flex;
  flex-direction: column;
  padding: 100px 2.5rem 3rem;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.4);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.38s;
}

.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 0;
  border-bottom: 1px solid #333;
  transition: color 0.2s;
  text-align: right;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--oak);
}

.mobile-menu .menu-cta {
  margin-top: 2rem;
  background: var(--oak);
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  border-bottom: none !important;
}

.mobile-menu .menu-cta:hover {
  background: var(--oak-dark);
  color: #fff;
}

.menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-close span {
  position: absolute;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: background 0.2s;
}

.menu-close span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-close span:nth-child(2) {
  transform: rotate(-45deg);
}

.menu-close:hover span {
  background: var(--oak);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  margin-top: 80px;
  /* offset for fixed nav */
  padding: 5rem 5vw 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 28, 0.62);
  z-index: 0;
}

.page-hero>* {
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oak);
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color .2s;
}

.breadcrumb a:hover {
  color: var(--oak);
}

.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.35);
}

.breadcrumb .current {
  color: var(--oak);
}

/* ── SECTION UTILITIES ── */
section {
  padding: 5rem 5vw;
}

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oak);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
  max-width: 680px;
}

.section-body {
  color: var(--mid);
  font-size: 1rem;
  max-width: 600px;
  margin-top: 1.2rem;
  line-height: 1.8;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--charcoal);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.stat {
  padding: 2rem 3.5rem;
  text-align: center;
  border-right: 1px solid #333;
}

.stat:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.4rem;
  color: var(--oak);
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #999;
  margin-top: 0.4rem;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--oak);
  color: #fff;
  padding: 0.9rem 2.2rem;
  text-decoration: none;
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  transition: background .2s;
}

.btn-primary:hover {
  background: var(--oak-dark);
}

.btn-dk {
  display: inline-block;
  background: var(--charcoal);
  color: #fff;
  padding: 0.85rem 2rem;
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  transition: background .2s;
}

.btn-dk:hover {
  background: var(--stone);
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--stone);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem 8vw;
}

.cta-band h2 {
  font-family: 'DM Sans', sans-serif;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  max-width: 560px;
  font-weight: 600;
}

.cta-band-right {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-line {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-line a {
  color: var(--oak);
  text-decoration: none;
  font-weight: 700;
}

.contact-line a:hover {
  text-decoration: underline;
}

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  color: #888;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem 5vw;
  font-size: 0.82rem;
}

.footer-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
}

footer a {
  color: #888;
  text-decoration: none;
}

footer a:hover {
  color: var(--oak);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none !important;
  }

  .burger {
    display: flex !important;
  }

  .menu-overlay {
    display: block;
  }

  .stat {
    padding: 1.5rem 2rem;
  }
}

@media (max-width: 580px) {
  .stats-bar {
    flex-direction: column;
  }

  .stat {
    border-right: none;
    border-bottom: 1px solid #333;
  }
}

@media (min-width: 769px) {
  .mobile-menu {
    display: none;
  }
}

/* Homepage specific */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.48);
  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.04)
  }

  to {
    transform: scale(1)
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .1) 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-left: 0;
  animation: fadeUp .9s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

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

.hero-eyebrow {
  color: var(--oak);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  color: #fff;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 1.4rem;
}

.hero p {
  color: rgba(255, 255, 255, .82);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 2.4rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, .6);
  color: #fff;
  padding: .9rem 2.2rem;
  text-decoration: none;
  font-size: .84rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 400;
  transition: border-color .2s, color .2s;
}

.btn-outline:hover {
  border-color: var(--oak);
  color: var(--oak);
}

.intro {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 12px 16px 0 var(--oak);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  border: 1px solid var(--border);
}

.why-item {
  padding: 2.2rem 1.8rem;
  border-right: 1px solid var(--border);
}

.why-item:last-child {
  border-right: none;
}

.why-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.2rem;
  background: var(--oak);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
}

.why-item h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: .4rem;
}

.why-item p {
  font-size: .88rem;
  color: var(--mid);
}

.services {
  background: var(--charcoal);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: default;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
  filter: brightness(.6);
}

.service-card:hover img {
  transform: scale(1.05);
  filter: brightness(.45);
}

.service-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, .7) 0%, transparent 60%);
}

.service-info h3 {
  font-family: 'DM Sans', sans-serif;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: .4rem;
}

.service-info p {
  color: rgba(255, 255, 255, .75);
  font-size: .85rem;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s;
}

.service-card:hover .service-info p {
  max-height: 80px;
}

.service-tag {
  display: inline-block;
  background: var(--oak);
  color: #fff;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  margin-bottom: .6rem;
  font-weight: 700;
}

.process {
  background: var(--cream);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.step {
  padding: 2rem;
  background: #fff;
  border-bottom: 3px solid var(--oak);
}

.step-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 3rem;
  color: var(--border);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
}

.step h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  margin-bottom: .6rem;
}

.step p {
  font-size: .88rem;
  color: var(--mid);
}

@media(max-width:900px) {
  .intro {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
  }

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

  .why-item {
    border-bottom: 1px solid var(--border);
  }
}

@media(max-width:580px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

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

@media (prefers-reduced-motion: reduce) {
  .hero-bg video {
    animation: none;
    transform: scale(1);
  }

  @keyframes heroZoom {
    from {
      transform: scale(1)
    }

    to {
      transform: scale(1)
    }
  }
}

.about-intro {
  background: var(--cream);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-intro-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 12px 16px 0 var(--oak);
}

.about-intro-content .section-title {
  margin-bottom: 1.5rem;
}

.about-intro-content p {
  color: var(--mid);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.values {
  background: #fff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3rem;
  border: 1px solid var(--border);
}

.value-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
}

.value-item:last-child {
  border-right: none;
}

.value-icon {
  width: 52px;
  height: 52px;
  background: var(--oak);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.value-icon svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

.value-item h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.value-item p {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.7;
}

.timeline-section {
  background: var(--cream);
}

.timeline {
  position: relative;
  max-width: 820px;
  margin: 3rem auto 0;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 2rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.4rem;
  top: 4px;
  width: 12px;
  height: 12px;
  background: var(--oak);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--oak);
}

.timeline-year {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--oak);
  margin-bottom: 0.3rem;
}

.timeline-item h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}

.timeline-item p {
  font-size: 0.86rem;
  color: var(--mid);
}

.stats-section {
  background: var(--charcoal);
  padding: 5rem 5vw;
  text-align: center;
}

.stats-section .section-title {
  color: #fff;
  margin: 0 auto 3rem;
  text-align: center;
}

.stats-section .section-eyebrow {
  color: var(--oak);
}

.stats-section .stats-bar {
  background: transparent;
}

.stats-section .stat-label {
  color: #666;
}

@media(max-width:900px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
  }

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

  .value-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .value-item:last-child {
    border-bottom: none;
  }
}


.services-intro {
  background: var(--cream);
}

.services-intro-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.amber-strip {
  background: var(--oak);
  padding: 1.4rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.amber-strip p {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--charcoal);
}

.amber-strip a {
  background: var(--charcoal);
  color: #fff;
  padding: 0.65rem 1.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
}

.amber-strip a:hover {
  background: #000;
}

/* service blocks */
.service-block {
  padding: 5rem 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  border-bottom: 1px solid var(--border);
}

.service-block:last-of-type {
  border-bottom: none;
}

.service-block.reverse {
  direction: rtl;
}

.service-block.reverse>* {
  direction: ltr;
}

.service-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oak);
  margin-bottom: 0.6rem;
}

.service-content h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.service-content p {
  color: var(--mid);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.service-features {
  list-style: none;
  margin: 1.5rem 0 2rem;
}

.service-features li {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--oak);
  flex-shrink: 0;
}

.service-gallery-main {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.service-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.service-gallery-main:hover img {
  transform: scale(1.04);
}

.svc-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--oak);
  color: var(--charcoal);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
}

.service-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 6px;
}

.service-thumbs img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  opacity: .8;
  transition: opacity .3s, transform .4s;
}

.service-thumbs img:hover {
  opacity: 1;
  transform: scale(1.05);
}

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

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  padding: 2rem;
  background: #fff;
  border-bottom: 3px solid var(--oak);
}

.step-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 3rem;
  color: var(--border);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
}

.step h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.step p {
  font-size: 0.88rem;
  color: var(--mid);
}

@media(max-width:900px) {
  .service-block {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .service-block.reverse {
    direction: ltr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
}


.gallery-section {
  padding: 3.5rem 2rem 5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.masonry-grid {
  columns: 4;
  column-gap: 10px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.img-block {
  position: relative;
  overflow: hidden;
}

.img-block img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s ease;
}

.gallery-item:hover .img-block img {
  transform: scale(1.05);
}

.item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity .3s;
}

.gallery-item:hover .item-overlay {
  opacity: 1;
}

.item-overlay h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.zoom-icon {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 34px;
  height: 34px;
  background: var(--oak);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}

.gallery-item:hover .zoom-icon {
  opacity: 1;
}

.zoom-icon svg {
  width: 15px;
  height: 15px;
  color: var(--charcoal);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .96);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-inner {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

#lbImg {
  max-width: 88vw;
  max-height: 78vh;
  object-fit: contain;
  display: block;
}

.lightbox-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 4px;
}

#lbTitle {
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

#lbCount {
  font-size: 0.75rem;
  color: #777;
}

.lb-close {
  position: fixed;
  top: 1.5rem;
  right: 1.75rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  opacity: .7;
  transition: opacity .2s;
}

.lb-close:hover {
  opacity: 1;
}

.lb-prev,
.lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  color: #fff;
  font-size: 1.4rem;
  padding: 1rem 1.2rem;
  cursor: pointer;
  transition: background .2s;
  line-height: 1;
}

.lb-prev {
  left: 1.2rem;
}

.lb-next {
  right: 1.2rem;
}

.lb-prev:hover,
.lb-next:hover {
  background: var(--oak);
  color: var(--charcoal);
  border-color: var(--oak);
}

@media(max-width:1100px) {
  .masonry-grid {
    columns: 3;
  }
}

@media(max-width:768px) {
  .gallery-section {
    padding: 2rem 0.75rem 3.5rem;
  }

  .masonry-grid {
    columns: 2;
    column-gap: 6px;
  }

  .gallery-item {
    margin-bottom: 6px;
  }

  .lb-prev {
    left: .5rem;
    padding: .75rem .9rem;
  }

  .lb-next {
    right: .5rem;
    padding: .75rem .9rem;
  }
}

@media(max-width:480px) {
  .masonry-grid {
    columns: 1;
  }
}

.filter-bar {
  background: var(--cream);
  padding: 1.5rem 5vw;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
}

.filter-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  margin-right: 0.5rem;
}

.filter-btn {
  padding: 0.55rem 1.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--mid);
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}

.filter-btn:hover {
  border-color: var(--oak);
  color: var(--charcoal);
}

.filter-btn.active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: #fff;
}

.featured-wrap {
  padding: 4rem 5vw 0;
}

.featured-wrap .section-eyebrow {
  color: var(--oak);
}

.featured-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  overflow: hidden;
  background: var(--charcoal);
  margin-top: 2rem;
}

.featured-img {
  position: relative;
  overflow: hidden;
}

.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 340px;
}

.featured-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: var(--oak);
  color: var(--charcoal);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
}

.featured-info {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-info .badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--oak);
  margin-bottom: 1rem;
}

.featured-info h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.featured-info p {
  font-size: 0.88rem;
  color: #999;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.feat-meta {
  list-style: none;
  margin-bottom: 2rem;
}

.feat-meta li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.84rem;
  color: #aaa;
  padding: 0.5rem 0;
  border-bottom: 1px solid #333;
}

.feat-meta li strong {
  color: #ddd;
  font-weight: 500;
}

.feat-meta .dot {
  width: 5px;
  height: 5px;
  background: var(--oak);
  flex-shrink: 0;
}

.projects-wrap {
  padding: 4rem 5vw 5rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 2rem;
}

.project-card {
  background: #222;
  overflow: hidden;
  cursor: default;
}

.project-card .card-img {
  position: relative;
  overflow: hidden;
}

.project-card .card-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: brightness(.75);
  transition: filter .4s, transform .5s;
}

*.project-card:hover .card-img img {
  filter: brightness(0.75);
  transform: scale(1);
}

* .card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, .8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}

.project-card:hover .card-overlay {
  opacity: 0;
}

.card-overlay .cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--oak);
  margin-bottom: 0.3rem;
}

.card-overlay h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.card-info {
  padding: 1.1rem 1.2rem;
  background: #fff;
}

.card-info .cat-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--oak);
  margin-bottom: 0.2rem;
}

.card-info h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--charcoal);
}

.card-info p {
  font-size: 0.8rem;
  color: var(--mid);
  margin-top: 0.15rem;
}

.testimonial-block {
  background: var(--cream);
  padding: 5rem 5vw;
  text-align: center;
}

.testimonial-block blockquote {
  max-width: 700px;
  margin: 0 auto;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.7;
  font-style: italic;
  position: relative;
  padding: 0 2rem;
}

.testimonial-block blockquote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -1rem;
  font-size: 5rem;
  color: var(--oak);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.testimonial-block cite {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  font-style: normal;
}

.testimonial-block cite span {
  color: var(--oak);
}

@media(max-width:900px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }

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

@media(max-width:600px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

.contact-section {
  padding: 5rem 5vw;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 5rem;
  align-items: start;
}

/* Form */
.form-wrap {
  background: #fff;
  padding: 2.5rem;
}

.form-wrap h2 {
  font-family: "DM Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.form-wrap p.sub {
  color: var(--mid);
  font-size: 0.88rem;
  margin-bottom: 2rem;
}

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

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  background: #fafafa;
  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color .2s;
  appearance: none;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--oak);
  background: #fff;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6560' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.radio-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--charcoal);
}

.radio-option input {
  width: auto;
  margin: 0;
  accent-color: var(--oak);
  cursor: pointer;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1rem 0 1.8rem;
}

.consent-row input {
  width: auto;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--oak);
  cursor: pointer;
}

.consent-row label {
  font-size: 0.78rem;
  color: var(--mid);
  line-height: 1.6;
}

.submit-btn {
  width: 100%;
  background: var(--oak);
  color: #fff;
  border: none;
  padding: 1rem;
  font-family: "Lato", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}

.submit-btn:hover {
  background: var(--oak-dark);
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.form-success .tick {
  width: 64px;
  height: 64px;
  background: var(--oak);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success .tick svg {
  width: 34px;
  height: 34px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
}

.form-success h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}

.form-success p {
  color: var(--mid);
  font-size: 0.9rem;
}

/* Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  background: #fff;
  padding: 2rem;
}

.sidebar-card h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}

.contact-detail:last-child {
  border-bottom: none;
}

.contact-detail .icon {
  width: 36px;
  height: 36px;
  background: var(--oak);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-detail div {
  flex: 1;
}

.contact-detail strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.15rem;
}

.contact-detail a {
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 500;
}

.contact-detail a:hover {
  color: var(--oak);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3rem 1rem;
  font-size: 0.84rem;
  color: var(--mid);
}

.hours-grid .day {
  font-weight: 500;
  color: var(--charcoal);
}

.service-area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.area-tag {
  background: var(--cream);
  border: 1px solid var(--border);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 0.3rem 0.7rem;
}

@media(max-width:900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .radio-group {
    grid-template-columns: 1fr;
  }
}

.contact-section { padding: 5rem 5vw; background: var(--cream); }
  .contact-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 5rem; align-items: start; }
  
  /* Form */
  .form-wrap { background: #fff; padding: 2.5rem; }
  .form-wrap h2 { font-family: "DM Sans", sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.4rem; }
  .form-wrap p.sub { color: var(--mid); font-size: 0.88rem; margin-bottom: 2rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .form-group { margin-bottom: 1.4rem; }
  .form-group label { display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 0.5rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--border); background: #fafafa; font-family: "Lato", sans-serif; font-size: 0.9rem; color: var(--charcoal); outline: none; transition: border-color .2s; appearance: none; }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--oak); background: #fff; }
  .form-group textarea { min-height: 120px; resize: vertical; }
  .form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6560' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
  
  
.radio-group { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem 2rem; }
.radio-option { display: flex; align-items: center; gap: 0.65rem; cursor: pointer; font-size: 0.85rem; color: var(--charcoal); line-height: 1; }
.radio-option input[type="radio"] {
  -webkit-appearance: none; appearance: none;
  box-sizing: border-box;
  width: 10px; height: 10px; min-width: 10px;
  border: 2px solid var(--border);
  background: #fafafa;
  margin: 0; padding: 0;
  cursor: pointer; flex-shrink: 0; display: inline-block;
}
.radio-option input[type="radio"]:checked { background: var(--oak); border-color: var(--oak); }


  .consent-row { display: flex; align-items: flex-start; gap: 0.75rem; margin: 1rem 0 1.8rem; }
  .consent-row input { width: auto; margin-top: 3px; flex-shrink: 0; accent-color: var(--oak); cursor: pointer; }
  .consent-row label { font-size: 0.78rem; color: var(--mid); line-height: 1.6; }
  .submit-btn { width: 100%; background: var(--oak); color: #fff; border: none; padding: 1rem; font-family: "Lato", sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: background .2s; }
  .submit-btn:hover { background: var(--oak-dark); }
  .form-success { display: none; text-align: center; padding: 3rem 2rem; }
  .form-success .tick { width: 64px; height: 64px; background: var(--oak); margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; }
  .form-success .tick svg { width: 34px; height: 34px; stroke: #fff; fill: none; stroke-width: 2.5; }
  .form-success h3 { font-family: "DM Sans", sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.6rem; }
  .form-success p { color: var(--mid); font-size: 0.9rem; }

  /* Sidebar */
  .contact-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
  .sidebar-card { background: #fff; padding: 2rem; }
  .sidebar-card h3 { font-family: "DM Sans", sans-serif; font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 1.2rem; }
  .contact-detail { display: flex; align-items: flex-start; gap: 1rem; padding: 0.8rem 0; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
  .contact-detail:last-child { border-bottom: none; }
  .contact-detail .icon { width: 36px; height: 36px; background: var(--oak); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
  .contact-detail div { flex: 1; }
  .contact-detail strong { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); margin-bottom: 0.15rem; }
  .contact-detail a { color: var(--charcoal); text-decoration: none; font-weight: 500; }
  .contact-detail a:hover { color: var(--oak); }
  .hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.3rem 1rem; font-size: 0.84rem; color: var(--mid); }
  .hours-grid .day { font-weight: 500; color: var(--charcoal); }
  .service-area-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
  .area-tag { background: var(--cream); border: 1px solid var(--border); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mid); padding: 0.3rem 0.7rem; }

  @media(max-width:900px){ .contact-grid{ grid-template-columns:1fr; } .form-row{ grid-template-columns:1fr; } .radio-group{ grid-template-columns:1fr; } }