/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --oak:       #8B6914;
  --oak-light: #C49A35;
  --ink:       #1A1410;
  --charcoal:  #2C2420;
  --stone:     #6B6259;
  --cream:     #F7F3EE;
  --warm-white:#FDFAF6;
  --rule:      rgba(26,20,16,0.10);

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Source Serif 4', Georgia, serif;
  --ff-ui:      'DM Sans', system-ui, sans-serif;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 72px;
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 60px);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--ff-body);
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.7;
  color: var(--ink);
  background: var(--warm-white);
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-label {
  display: inline-block;
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oak);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--ink);
  margin-bottom: 20px;
}

.section-intro {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--stone);
  max-width: 580px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-ui);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: 4px;
  transition: all 0.22s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--oak);
  color: #fff;
  border: 2px solid var(--oak);
}
.btn--primary:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,20,16,0.18);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn--outline:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn--full { width: 100%; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.nav.scrolled {
  background: rgba(253,250,246,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--rule);
}

.nav__inner {
  height: var(--nav-h);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav__logo-mark {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--oak);
  letter-spacing: 0.04em;
  padding: 6px 10px;
  border: 1.5px solid var(--oak);
}

.nav__logo-text {
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.nav__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.nav__links a {
  font-family: var(--ff-ui);
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--oak); }

.nav__cta { margin-left: 16px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 6px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all 0.25s var(--ease);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile-menu {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--warm-white);
  border-top: 1px solid var(--rule);
  padding: 24px var(--gutter) 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.nav__mobile-menu.open { display: block; }
.nav__mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.nav__mobile-menu a {
  display: block;
  padding: 12px 0;
  font-family: var(--ff-ui);
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--rule);
}
.nav__mobile-menu li:last-child a {
  margin-top: 20px;
  border: none;
  width: 100%;
}

/* Hero: nav is transparent over dark image */
.nav:not(.scrolled) .nav__logo-text,
.nav:not(.scrolled) .nav__links a,
.nav:not(.scrolled) .nav__burger span {
  color: rgba(255,255,255,0.92);
}
.nav:not(.scrolled) .nav__logo-mark {
  color: var(--oak-light);
  border-color: var(--oak-light);
}
.nav:not(.scrolled) .nav__cta {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}
.nav:not(.scrolled) .nav__cta:hover {
  background: #fff;
  color: var(--ink);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20,14,8,0.72) 0%,
    rgba(20,14,8,0.45) 60%,
    rgba(20,14,8,0.30) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 40px) var(--gutter) 80px;
  width: 100%;
}

.hero__eyebrow {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oak-light);
  margin-bottom: 20px;
}

.hero__headline {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 10ch;
}

.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.65;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-family: var(--ff-ui);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.35);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(0.5); opacity: 1; }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker-wrap {
  overflow: hidden;
  background: var(--ink);
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.ticker-item {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0 20px;
  white-space: nowrap;
}
.ticker-sep {
  color: var(--oak-light);
  font-size: 0.9rem;
  line-height: 1;
  align-self: center;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--cream);
  padding: clamp(48px, 6vw, 80px) 0;
  border-bottom: 1px solid var(--rule);
}
.stats-strip__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.stat-item { text-align: center; }
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--oak);
  line-height: 1;
}
.stat-unit {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: var(--oak);
}
.stat-label {
  font-family: var(--ff-ui);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 6px;
}

.stat-sep {
  width: 1px;
  height: 60px;
  background: var(--rule);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: clamp(72px, 10vw, 128px) 0;
}

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

a.svc-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.svc-card {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  cursor: pointer;
  transition: box-shadow 0.3s var(--ease);
}
.svc-card:hover { box-shadow: 0 12px 48px rgba(26,20,16,0.14); z-index: 1; }

.svc-card__img {
  height: 260px;
  overflow: hidden;
}
.svc-card__img img {
  transition: transform 0.55s var(--ease);
}
.svc-card:hover .svc-card__img img {
  transform: scale(1.06);
}

.svc-card__body {
  padding: 28px 28px 32px;
  position: relative;
}
.svc-num {
  font-family: var(--ff-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--oak);
  margin-bottom: 10px;
  display: block;
}
.svc-card__body h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--ink);
}
.svc-card__body p {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.6;
  margin-bottom: 18px;
}
.svc-cta {
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--oak);
  letter-spacing: 0.02em;
  transition: letter-spacing 0.2s;
}
.svc-card:hover .svc-cta { letter-spacing: 0.06em; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: clamp(72px, 10vw, 128px) 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.about__bg-label {
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--ff-display);
  font-size: clamp(5rem, 12vw, 14rem);
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.about__photos {
  position: relative;
  min-height: 560px;
}

.about__photo-main {
  width: 88%;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.about__photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about__photo-accent {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 52%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 4px solid var(--ink);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.about__photo-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__content .section-label { color: var(--oak-light); }
.about__content .section-title { color: #fff; }
.about__content p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 20px;
  line-height: 1.75;
}

.about__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}
.about__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-ui);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 14px;
  border-radius: 100px;
}
.about__badge svg { color: var(--oak-light); flex-shrink: 0; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
  padding: clamp(72px, 10vw, 128px) 0 0;
}

.gallery-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 320px 320px;
  gap: 3px;
}

.g-col--tall { grid-row: span 2; }
.g-col--stack { display: flex; flex-direction: column; gap: 3px; }
.g-col--stack .g-item { flex: 1; }
.g-col--wide { grid-column: span 2; }

.g-item {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  height: 100%;
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.g-item:hover img { transform: scale(1.06); }

.g-item__hover {
  position: absolute;
  inset: 0;
  background: rgba(20,14,8,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.g-item:hover .g-item__hover { opacity: 1; }
.g-item__hover span {
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.6);
  padding-bottom: 2px;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,6,4,0.92);
  backdrop-filter: blur(8px);
}

.lightbox__img {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 1200px);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  transform: scale(0.94);
  transition: transform 0.35s var(--ease);
}
.lightbox.open .lightbox__img { transform: scale(1); }

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  z-index: 2;
  color: rgba(255,255,255,0.8);
  font-size: 1.4rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  transition: all 0.2s;
  cursor: pointer;
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

.lightbox__close { top: 20px; right: 20px; font-size: 1.6rem; }
.lightbox__prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 20px; top: 50%; transform: translateY(-50%); }

.lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--ff-ui);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-section {
  padding: clamp(72px, 10vw, 128px) 0;
  background: var(--cream);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.process-step {
  flex: 1;
  padding: 0 clamp(16px, 3vw, 40px);
  text-align: center;
}
.process-step:first-child { padding-left: 0; }
.process-step:last-child  { padding-right: 0; }

.process-step__num {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--oak);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
}

.process-step h3 {
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.6;
}

.process-arrow {
  font-size: 1.5rem;
  color: var(--oak);
  opacity: 0.35;
  flex-shrink: 0;
  padding-top: 28px;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section {
  padding: clamp(72px, 10vw, 128px) 0;
}

.reviews-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 8px;
}
.reviews-stars svg {
  width: 20px;
  height: 20px;
  color: var(--oak);
}
.reviews-stars span {
  font-family: var(--ff-ui);
  font-size: 0.8rem;
  color: var(--stone);
  margin-left: 8px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--cream);
  padding: 32px;
  border-radius: 2px;
  border: 1px solid var(--rule);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.review-card:hover {
  box-shadow: 0 8px 32px rgba(26,20,16,0.08);
  transform: translateY(-4px);
}

.review-card__stars {
  color: var(--oak);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-card blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 24px;
  font-style: italic;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--oak);
  color: #fff;
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-card__author strong {
  display: block;
  font-family: var(--ff-ui);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}
.review-card__author span {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  color: var(--stone);
}

/* ============================================================
   SERVICE AREA
   ============================================================ */
.area-section {
  padding: clamp(72px, 10vw, 128px) 0;
  background: var(--cream);
}

.area-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: center;
}

.area-content .section-title { margin-bottom: 16px; }
.area-content p { color: var(--stone); margin-bottom: 24px; }

.area-list {
  list-style: none;
  margin-bottom: 24px;
}
.area-list li {
  font-family: var(--ff-ui);
  font-size: 0.9rem;
  color: var(--charcoal);
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 10px;
}
.area-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--oak);
  flex-shrink: 0;
}

.area-note {
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  color: var(--stone);
  font-style: italic;
}

.area-map {
  height: 480px;
  overflow: hidden;
  border-radius: 2px;
}
.area-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  padding: clamp(72px, 10vw, 128px) 0;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 22px 0;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--oak); }

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }

.faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}
.faq-answer-wrap.open { grid-template-rows: 1fr; }

.faq-answer {
  overflow: hidden;
}
.faq-answer p {
  padding-bottom: 22px;
  color: var(--stone);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  padding: clamp(72px, 10vw, 128px) 0;
  background: var(--ink);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.contact-content .section-label { color: var(--oak-light); }
.contact-content .section-title { color: #fff; }
.contact-content p { color: rgba(255,255,255,0.65); margin-bottom: 32px; }

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--ff-ui);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 16px;
}
.contact-link:hover { color: var(--oak-light); }
.contact-link svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--oak-light); }

/* FORM */
.contact-form {
  background: var(--warm-white);
  padding: clamp(28px, 4vw, 48px);
  border-radius: 2px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-field label {
  font-family: var(--ff-ui);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--ff-ui);
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--rule);
  border-radius: 3px;
  padding: 12px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--oak);
  box-shadow: 0 0 0 3px rgba(139,105,20,0.12);
}
.form-field textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(139,105,20,0.08);
  border: 1px solid rgba(139,105,20,0.25);
  padding: 16px 20px;
  border-radius: 3px;
  margin-top: 16px;
}
.form-success svg { width: 22px; height: 22px; color: var(--oak); flex-shrink: 0; }
.form-success p { font-family: var(--ff-ui); font-size: 0.9rem; color: var(--charcoal); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  padding: clamp(48px, 6vw, 80px) 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: clamp(48px, 6vw, 80px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand .nav__logo-mark { color: var(--oak-light); border-color: var(--oak-light); }
.footer__brand p {
  font-family: var(--ff-ui);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-top: 16px;
  line-height: 1.65;
}

.footer__links h4,
.footer__contact h4 {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-family: var(--ff-ui);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--oak-light); }

.footer__contact p {
  font-family: var(--ff-ui);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}
.footer__contact a { transition: color 0.2s; }
.footer__contact a:hover { color: var(--oak-light); }

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: all 0.2s;
}
.footer__social a:hover { background: var(--oak); color: #fff; }
.footer__social svg { width: 16px; height: 16px; }

.footer__bottom {
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   MOBILE STICKY BAR
   ============================================================ */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 10px var(--gutter);
  gap: 10px;
  transform: translateY(100%);
  transition: transform 0.3s var(--ease);
}
.sticky-bar.visible {
  transform: translateY(0);
}

.sticky-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  border-radius: 3px;
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
}
.sticky-bar__btn svg { width: 16px; height: 16px; }

.sticky-bar__btn--call {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.15);
}
.sticky-bar__btn--quote {
  background: var(--oak);
  color: #fff;
}
.sticky-bar__btn--whatsapp {
  background: #25D366;
  color: #fff;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---- 1100px ---- */
@media (max-width: 1100px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .g-col--tall { grid-row: auto; }
  .g-col--wide { grid-column: auto; }
  .g-col--stack { flex-direction: row; }
  .g-col--stack .g-item { height: 260px; }
  .g-col { height: 260px; }
  .g-col--stack { height: auto; }
}

/* ---- 900px ---- */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero__scroll-cue { display: none; }

  .about__inner { grid-template-columns: 1fr; }
  .about__photos { min-height: auto; }
  .about__photo-main { width: 100%; aspect-ratio: 4/3; }
  .about__photo-accent { display: none; }

  .area-inner { grid-template-columns: 1fr; }
  .area-map { height: 320px; }

  .contact-inner { grid-template-columns: 1fr; }

  .process-steps {
    flex-direction: column;
    gap: 32px;
  }
  .process-step { padding: 0; text-align: left; }
  .process-arrow { display: none; }

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

  .sticky-bar { display: flex; }
  body { padding-bottom: 72px; }
}

/* ---- 640px ---- */
@media (max-width: 640px) {
  .svc-grid { grid-template-columns: 1fr; }

  .hero__ctas {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero__ctas .btn {
    flex: 1;
    min-width: 120px;
    font-size: 0.82rem;
    padding: 13px 16px;
  }

  .stats-strip__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 0;
  }
  .stat-sep { display: none; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }
  .g-col { height: 180px; }
  .g-col--stack { flex-direction: column; height: auto; }
  .g-col--stack .g-item { height: 180px; }

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

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

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }

  .footer__bottom .container { flex-direction: column; text-align: center; }
}

/* ---- 400px ---- */
@media (max-width: 400px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .g-col { height: 240px; }
  .g-col--stack { flex-direction: column; height: auto; }
  .g-col--stack .g-item { height: 240px; }

  .hero__headline { font-size: 2.6rem; }

  .sticky-bar { gap: 6px; padding: 10px 12px; }
  .sticky-bar__btn { font-size: 0.75rem; padding: 11px 6px; }
}
