/* =========================================
   PINE RIVER CONSTRUCTION — Main Stylesheet
   ========================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Nature Distilled × Luxury Premium — UI/UX Pro Max */
  --navy:        #1C1917;   /* warm near-black (wood grain dark) */
  --navy-mid:    #292524;   /* mid dark for sections */
  --brown:       #7a5c3e;
  --gold:        #A0742A;   /* aged amber — deeper, richer */
  --gold-light:  #B8860B;   /* aged amber hover */
  --forest:      #2D4A3E;   /* forest slate — from logo's pine trees */
  --terracotta:  #C67B5C;   /* Nature Distilled accent */
  --sand:        #D4C4A8;   /* Nature Distilled secondary */
  --cream:       #F5F0E8;   /* warm cream */
  --warm-white:  #FAFAF9;   /* warm page background */
  --white:       #ffffff;
  --gray:        #57534e;   /* warm gray */
  --light:       #f1ece4;
  --font-head: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --max-w:     1240px;
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1); /* natural spring ease */
  --grain-opacity: 0.04;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--warm-white);
  line-height: 1.6;
  font-size: 16px;
}

/* Grain texture overlay (Nature Distilled signature) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: var(--grain-opacity);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: multiply;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.btn-outline-white {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); }

.btn-solid {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.btn-solid:hover { background: var(--brown); border-color: var(--brown); }

.btn-outline-dark {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-dark:hover { background: var(--white); color: var(--navy); }

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(28, 25, 23, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
}
.nav__logo span { color: var(--gold); }
.nav__logo img { height: 120px; width: auto; display: block; margin-left: -38px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }

.nav__cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 11px 22px 12px;
  font-weight: 600 !important;
  line-height: 1;
  transition: background 0.2s !important;
}
.nav__cta:hover { background: var(--brown) !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  position: relative;
  z-index: 160;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.25s ease;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Nav overlay removed — no dark backdrop on mobile drawer */

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

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
  overflow: hidden;
}

.hero__bg img,
.hero__bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

/* Placeholder bg for when no image is provided */
.hero__bg--placeholder {
  background: linear-gradient(135deg, #1c1917 0%, #292524 50%, #3d2f1f 100%);
}
.hero__bg--placeholder::after {
  content: '[ HERO PHOTO: staircase shot or mountain-view living room ]';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28,25,23,0.72) 0%, rgba(28,25,23,0.3) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 72px;
}

.hero__eyebrow {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__title {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  max-width: 680px;
  margin-bottom: 28px;
}

.hero__title em {
  font-style: normal;
  color: var(--gold);
}

.hero__sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.7;
}

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

/* =========================================
   TRUST BAR
   ========================================= */
.trust-bar {
  background: var(--cream);
  border-bottom: 1px solid #e8dfd3;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 20px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 28px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  border-right: 1px solid #d4c8ba;
}
.trust-bar__item:last-child { border-right: none; }

.trust-bar__item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
}

/* =========================================
   INTRO SECTION
   ========================================= */
.intro {
  padding: 88px 0 72px;
  text-align: center;
  background: var(--white);
}

.intro h2 {
  color: var(--navy);
  max-width: 720px;
  margin: 16px auto 20px;
}

.intro p {
  color: var(--gray);
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* =========================================
   SERVICES GRID
   ========================================= */
.services {
  padding: 0 0 96px;
  background: var(--white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.service-card {
  position: relative;
  height: 380px;
  overflow: hidden;
  cursor: pointer;
}

.service-card__img {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__img { transform: scale(1.05); }

/* Placeholder for service cards */
.service-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 48px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,25,23,0.85) 0%, rgba(28,25,23,0.1) 60%);
  transition: background 0.3s ease;
}
.service-card:hover .service-card__overlay {
  background: linear-gradient(to top, rgba(28,25,23,0.92) 0%, rgba(28,25,23,0.25) 60%);
}

.service-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
  z-index: 2;
}

.service-card__title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 8px;
}

.service-card__link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
}
.service-card:hover .service-card__link { opacity: 1; transform: translateY(0); }

/* Additional services text */
.services__more {
  text-align: center;
  padding: 36px 24px 0;
  color: var(--gray);
  font-size: 0.95rem;
}
.services__more a {
  color: var(--brown);
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}
.services__more a:hover { color: var(--gold); }

/* =========================================
   FAMILY / ABOUT SECTION
   ========================================= */
.family {
  background: var(--cream);
  padding: 96px 0;
}

.family__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.family__img {
  position: relative;
  height: 520px;
  border-radius: 2px;
  overflow: hidden;
  background: #d4c8ba;
}

.family__img--placeholder::after {
  content: '[ TEAM PHOTO: Bob, Wes, Jay & Derek Price ]';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(122,92,62,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
}

.family__text .eyebrow { margin-bottom: 16px; }

.family__text h2 {
  color: var(--navy);
  margin-bottom: 24px;
}

.family__text p {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 1rem;
}

.family__team {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.family__badge {
  background: var(--white);
  border: 1px solid #d4c8ba;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
}

/* =========================================
   GALLERY / PORTFOLIO
   ========================================= */
.gallery {
  padding: 96px 0;
  background: var(--white);
  text-align: center;
}

.gallery h2 {
  margin: 16px auto 16px;
  color: var(--navy);
  max-width: 620px;
}

.gallery p {
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: 1rem;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 6px;
  max-width: var(--max-w);
  margin: 0 auto 40px;
  padding: 0 24px;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  background: #d4c8ba;
}

.gallery__item--large {
  grid-row: span 2;
}

.gallery__item img {
  transition: transform 0.5s ease;
}
.gallery__item:hover img { transform: scale(1.04); }

.gallery__item--placeholder::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(122,92,62,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
}

/* =========================================
   REVIEWS
   ========================================= */
.reviews {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.reviews__bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}

.reviews__bg img { opacity: 0.12; }

.reviews__bg--placeholder {
  background: var(--navy);
}

.reviews__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.reviews__inner .eyebrow { color: var(--gold); margin-bottom: 16px; }

.reviews__inner h2 {
  color: var(--white);
  margin-bottom: 56px;
}

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

.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 32px 28px;
  text-align: left;
  backdrop-filter: blur(8px);
}

.review-card__stars {
  color: #f5a623;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-card__text {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brown);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--white);
}

.review-card__name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.9rem;
}
.review-card__source {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.reviews__link {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.reviews__link:hover { color: var(--white); border-color: var(--white); }

/* =========================================
   FAQ
   ========================================= */
.faq {
  padding: 96px 0;
  background: var(--white);
}

.faq__header {
  text-align: center;
  margin-bottom: 56px;
}

.faq__header h2 {
  color: var(--navy);
  margin: 16px auto 0;
  max-width: 680px;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.faq__item {
  border-bottom: 1px solid #e8dfd3;
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  transition: transform 0.3s;
}

.faq__item.open .faq__icon { transform: rotate(45deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq__item.open .faq__answer { max-height: 200px; }

.faq__answer p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.75;
  padding-bottom: 20px;
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
  background: var(--navy);
  padding: 96px 24px;
  text-align: center;
}

.cta-section .eyebrow { margin-bottom: 16px; }

.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  max-width: 700px;
  margin: 0 auto 20px;
}

.cta-section p {
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 0 auto 40px;
  font-size: 1rem;
  line-height: 1.75;
}

.cta-section__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-section__phone {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin: 36px auto 0 !important;
  letter-spacing: 0.04em;
}
.cta-section__phone a {
  color: var(--gold);
  font-weight: 600;
  font-size: 1.1rem;
}

/* =========================================
   SERVICE AREAS
   ========================================= */
.areas {
  background: var(--cream);
  padding: 80px 0;
}

.areas__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.areas__header {
  margin-bottom: 48px;
}

.areas__header h2 {
  color: var(--navy);
  margin-top: 16px;
}

.areas__grid {
  display: grid;
  grid-template-rows: repeat(4, auto);
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 8px 16px;
}

.areas__city {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
  padding: 6px 0;
}

.areas__city svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--gold);
  padding: 64px 0 32px;
  color: rgba(255,255,255,0.7);
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand .nav__logo {
  font-size: 1.2rem;
  margin-bottom: 16px;
  display: block;
}
.footer__brand .nav__logo img { height: 200px; margin: -25px 0 -30px -64px; }

.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 260px;
  margin-bottom: 20px;
}

.footer__nap {
  font-size: 0.85rem;
  line-height: 2;
}
.footer__nap a { color: var(--gold); }
.footer__nap a:hover { color: var(--white); }

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__col ul li {
  margin-bottom: 10px;
}

.footer__col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer__col ul a:hover { color: var(--gold); }

.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer__bottom a {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}
.footer__bottom a:hover { color: var(--gold); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-rows: 220px 220px; }
  .reviews__track { grid-template-columns: 1fr 1fr; }
  .reviews__track .review-card:nth-child(3) { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .areas__grid { grid-template-rows: repeat(6, auto); }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    padding: 96px 28px 48px;
    gap: 6px;
    z-index: 150;
    overflow-y: auto;
    box-shadow: -8px 0 40px rgba(0,0,0,0.35);
    transition: right 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav__links.open { right: 0; }
  .nav__hamburger { display: flex; }
  /* Logo left-offset handled in base styles */
  /* Drawer link sizing */
  .nav__links > li > a:not(.nav__cta) {
    display: block;
    padding: 14px 4px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    width: 100%;
  }
  .nav__links > li:last-child > a { border-bottom: none; }
  .nav__links > li:has(.nav__cta) { margin-top: 20px; }
  .nav__cta { margin-top: 0; text-align: center; padding: 14px 24px !important; }
  /* Services sub-links hidden by default in drawer — tap to expand */
  .nav__drop {
    display: none !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 4px 0 8px 12px !important;
    min-width: 0 !important;
    border-left: 2px solid rgba(255,255,255,0.12) !important;
    margin-top: 4px !important;
    transition: none !important;
  }
  .nav__has-drop.drop-open .nav__drop { display: block !important; }
  .nav__drop li a {
    color: rgba(255,255,255,0.65) !important;
    font-size: 0.85rem !important;
    padding: 7px 12px !important;
  }
  .nav__drop li a:hover { color: var(--gold) !important; background: transparent !important; }
  .family__inner { grid-template-columns: 1fr; }
  .family__img { height: 320px; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery__item--large { grid-row: span 1; }
  .reviews__track { grid-template-columns: 1fr; }
  .reviews__track .review-card:nth-child(3) { display: block; }
  .faq__grid { grid-template-columns: 1fr; }
  .areas__grid { grid-template-rows: repeat(8, auto); }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .trust-bar__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 12px 16px; }
  .trust-bar__item { border-right: none; border-bottom: 1px solid #d4c8ba; padding: 10px 12px; justify-content: flex-start; font-size: 0.8rem; }
  .trust-bar__item:nth-child(odd) { border-right: 1px solid #d4c8ba; }
  .trust-bar__item:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 480px) {
  .services__grid { grid-template-columns: 1fr; }
  .service-card { height: 300px; }
  .service-card__link { opacity: 1; transform: none; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .gallery__grid { grid-template-columns: 1fr; }
  .areas__grid { grid-template-rows: repeat(8, auto); }
  .hero { align-items: center; padding-top: 80px; padding-bottom: 80px; }
  .hero__content { padding-top: 0; padding-bottom: 0; }
}

/* =========================================
   INNER PAGES — Shared Styles
   ========================================= */

/* Visually hidden (accessibility) */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* --- Page Header (inner hero) --- */
.page-header {
  background: var(--navy);
  padding: 168px 24px 72px;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--gold), var(--brown));
}

.page-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.8rem;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.breadcrumb strong { color: rgba(255,255,255,0.7); font-weight: 500; }

.page-header h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  max-width: 780px;
  margin-bottom: 20px;
  line-height: 1.15;
}

.page-header__sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.page-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.page-header__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.page-header__badge svg {
  width: 14px; height: 14px;
}

/* --- Service Content Layout --- */
.service-content {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 72px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px 24px 96px;
  align-items: start;
}

.service-body h2 {
  color: var(--navy);
  margin: 48px 0 16px;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

.service-body h2:first-child { margin-top: 0; }

.service-body p {
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: 0.97rem;
}

.service-body strong { color: var(--navy); }

/* Checklist */
.checklist {
  list-style: none;
  margin: 8px 0 24px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f0ebe3;
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.5;
}

.checklist li::before {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}

/* Process steps */
.process-steps {
  counter-reset: step;
  list-style: none;
  margin: 8px 0 24px;
}

.process-steps li {
  counter-increment: step;
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #f0ebe3;
}

.process-steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 40px;
  line-height: 1;
  padding-top: 2px;
}

.process-steps li > div > strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.process-steps li > div > span {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

/* Options grid (species, types etc) */
.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 16px 0 24px;
}

.option-card {
  background: var(--cream);
  border: 1px solid #e8dfd3;
  padding: 20px 16px;
  border-radius: 2px;
}

.option-card strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.option-card span {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.5;
}

/* --- Sidebar --- */
.service-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-cta {
  background: var(--navy);
  padding: 32px 28px;
  color: var(--white);
}

.sidebar-cta h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--white);
}

.sidebar-cta p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 24px;
}

.sidebar-cta .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
}

.sidebar-phone {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.sidebar-phone a {
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
}

.sidebar-box {
  background: var(--cream);
  border: 1px solid #e8dfd3;
  padding: 24px;
}

.sidebar-box h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e8dfd3;
}

.sidebar-box ul li {
  margin-bottom: 8px;
}

.sidebar-box ul a {
  font-size: 0.88rem;
  color: var(--brown);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.sidebar-box ul a:hover { color: var(--navy); }

.sidebar-box ul a::before {
  content: '→';
  color: var(--gold);
  font-size: 0.8rem;
}

/* Service FAQ (on inner pages) */
.service-faq {
  background: var(--cream);
  padding: 80px 0;
}

.service-faq .container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.service-faq h2 {
  color: var(--navy);
  margin: 12px 0 40px;
}

.service-faq .faq__grid {
  grid-template-columns: 1fr;
  max-width: 800px;
}

/* Related services strip */
.related-services {
  padding: 72px 0;
  background: var(--white);
  border-top: 1px solid #f0ebe3;
}

.related-services .container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.related-services h2 {
  color: var(--navy);
  margin: 12px 0 36px;
  font-size: 1.6rem;
}

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

.related-card {
  position: relative;
  height: 200px;
  overflow: hidden;
  display: block;
}

.related-card__bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
  transition: transform 0.4s ease;
}

.related-card:hover .related-card__bg { transform: scale(1.04); }

.related-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,25,23,0.88) 0%, rgba(28,25,23,0.2) 70%);
}

.related-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  z-index: 2;
}

.related-card__title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

.related-card__link {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Service page photo strip */
.service-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 280px;
  gap: 4px;
  margin: 32px 0;
}

.service-photos__item {
  background: #d4c8ba;
  position: relative;
  overflow: hidden;
}

.service-photos__item--placeholder::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: rgba(122,92,62,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px;
}

/* Inner page responsive */
@media (max-width: 1024px) {
  .service-content { grid-template-columns: 1fr; gap: 48px; }
  .service-sidebar { position: static; }
  .options-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .page-header { padding: 120px 24px 56px; }
  .options-grid { grid-template-columns: 1fr 1fr; }
  .service-photos { grid-template-columns: 1fr; height: auto; }
  .service-photos__item { height: 160px; }
  .related-grid { grid-template-columns: 1fr; }
}

/* =========================================
   SERVICE PAGE V2 — Full-Width Layout
   ========================================= */

/* --- Stats Bar --- */
.stats-bar {
  background: var(--cream);
  border-bottom: 1px solid #e8dfd3;
  padding: 0;
}

.stats-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  divide-x: 1px solid #e8dfd3;
}

.stat-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid #e8dfd3;
}
.stat-item:last-child { border-right: none; }

.stat-item__num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item__num em {
  font-style: normal;
  color: var(--gold);
}

.stat-item__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

/* --- Split Section (alternating text/image) --- */
.split-section {
  padding: 80px 0;
}

.split-section--cream { background: var(--cream); }
.split-section--white { background: var(--white); }
.split-section--navy  { background: var(--navy); }

.split-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.split-section__inner--reverse { direction: rtl; }
.split-section__inner--reverse > * { direction: ltr; }

.split-section__img {
  position: relative;
  height: 480px;
  overflow: hidden;
  background: #d4c8ba;
}

.split-section__img--placeholder::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: rgba(122,92,62,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
}

.split-section__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-section__text .eyebrow { margin-bottom: 16px; }

.split-section__text h2 {
  color: var(--navy);
  margin-bottom: 20px;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
}

.split-section--navy .split-section__text h2 { color: var(--white); }

.split-section__text p {
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: 0.97rem;
}

.split-section--navy .split-section__text p { color: rgba(255,255,255,0.7); }

.split-section__text .checklist { margin-bottom: 28px; }

.split-section--navy .checklist li { color: rgba(255,255,255,0.85); }

/* --- Icon Features Grid --- */
.icon-features {
  padding: 72px 0;
  background: var(--white);
}

.icon-features .container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.icon-features__header {
  text-align: center;
  margin-bottom: 48px;
}

.icon-features__header h2 {
  color: var(--navy);
  margin-top: 12px;
}

.icon-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: #e8dfd3;
}

.icon-feature {
  background: var(--white);
  padding: 36px 28px;
  text-align: center;
}

.icon-feature__icon {
  width: 52px;
  height: 52px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.icon-feature__icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.icon-feature h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-weight: 700;
}

.icon-feature p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
}

/* --- Type Cards (species, options) --- */
.type-cards {
  padding: 72px 0;
  background: var(--cream);
}

.type-cards .container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.type-cards__header {
  text-align: center;
  margin-bottom: 40px;
}

.type-cards__header h2 { color: var(--navy); margin-top: 12px; }
.type-cards__header p { color: var(--gray); max-width: 540px; margin: 12px auto 0; font-size: 0.95rem; }

.type-cards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
}

.type-card {
  position: relative;
  height: 280px;
  overflow: hidden;
  cursor: default;
}

.type-card__bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
  transition: transform 0.4s ease;
}

.type-card:hover .type-card__bg { transform: scale(1.05); }

.type-card__bg--placeholder::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 56px;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.type-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,25,23,0.85) 0%, rgba(28,25,23,0.15) 60%);
}

.type-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px;
  z-index: 2;
}

.type-card__name {
  display: block;
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 4px;
}

.type-card__desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

/* --- Process Strip (horizontal) --- */
.process-strip {
  padding: 72px 0;
  background: var(--navy);
}

.process-strip .container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.process-strip__header {
  text-align: center;
  margin-bottom: 48px;
}

.process-strip__header h2 { color: var(--white); margin-top: 12px; }

.process-strip__steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}

.process-strip__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 1px;
  background: rgba(184,147,90,0.3);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.process-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.process-step h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.process-step p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* --- Section Divider --- */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 24px;
  background: var(--navy);
}
.section-divider__line {
  display: block;
  width: 500px;
  height: 1px;
  background: rgba(255,255,255,0.15);
}
.section-divider__mark {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* --- Mid-page CTA Band --- */
.cta-band {
  background: var(--gold);
  padding: 28px 24px;
}

.cta-band__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-band__text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--white);
}

.cta-band__text span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
}

.cta-band .btn {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  white-space: nowrap;
}

.cta-band .btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.cta-band__phone {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

/* --- Responsive V2 --- */
@media (max-width: 1024px) {
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .icon-features__grid { grid-template-columns: repeat(2, 1fr); }
  .type-cards__grid { grid-template-columns: repeat(2, 1fr); }
  .process-strip__steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .process-strip__steps::before { display: none; }
}

@media (max-width: 768px) {
  .split-section { padding: 48px 0; }
  .split-section__inner { grid-template-columns: 1fr; gap: 28px; }
  .split-section__inner--reverse { direction: ltr; }
  .split-section__img { height: 300px; }
  .stats-bar__inner { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(2) { border-right: 1px solid #e8dfd3; }
  .icon-features__grid { grid-template-columns: repeat(2, 1fr); }
  .type-cards__grid { grid-template-columns: repeat(2, 1fr); }
  .process-strip__steps { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .cta-band__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .stats-bar__inner { grid-template-columns: repeat(3, 1fr); padding: 0 8px; }
  .stat-item { padding: 20px 4px; border-right: 1px solid #e8dfd3; }
  .stat-item:last-child { border-right: none; }
  .stat-item__num { font-size: 1.5rem; }
  .stat-item__label { font-size: 0.6rem; letter-spacing: 0.03em; }
  .type-cards__grid { grid-template-columns: 1fr 1fr; }
  .type-card__content { top: 0; bottom: auto; }
  .process-strip__steps { grid-template-columns: 1fr 1fr; }
  .icon-features__grid { grid-template-columns: 1fr 1fr; }
}

/* =========================================
   HOMEPAGE V2 COMPONENTS
   ========================================= */

/* --- Nav Dropdown --- */
.nav__has-drop { position: relative; }

.nav__drop {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid #e8dfd3;
  border-radius: 4px;
  min-width: 220px;
  padding: 8px 0;
  padding-top: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  z-index: 200;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
}

.nav__has-drop:hover .nav__drop,
.nav__has-drop:focus-within .nav__drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s;
}

.nav__drop li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}

.nav__drop li a:hover {
  background: var(--cream);
  color: var(--gold);
}

/* --- Hero Scroll Indicator --- */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
}

.hero__scroll span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scroll-bounce 1.6s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  80% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

/* --- Homepage Services Grid --- */
.home-services { padding: 80px 0; background: var(--navy); }

.home-services__header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 24px;
}

.home-services__header h2 { color: var(--white); margin-top: 12px; }
.home-services__header p { color: rgba(255,255,255,0.6); max-width: 540px; margin: 12px auto 0; font-size: 0.95rem; }

/* Homepage Before/After feature */
.home-ba {
  background: var(--navy);
  padding: 80px 24px;
}
.home-ba__inner {
  max-width: 900px;
  margin: 0 auto;
}
.home-ba__header {
  text-align: center;
  margin-bottom: 40px;
}
.home-ba__header .eyebrow { color: var(--gold); }
.home-ba__header h2 { color: var(--white); margin-top: 10px; }
.home-ba__header p { color: rgba(255,255,255,0.6); margin-top: 10px; font-size: 0.95rem; }
.home-ba .ba-slider { aspect-ratio: 16/9; }
.home-ba__cta { text-align: center; margin-top: 32px; }
.home-ba__cta a { color: var(--gold); font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em; text-decoration: none; }
.home-ba__cta a:hover { text-decoration: underline; }

.home-services__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 2px;
}

/* Service Cards */
.svc-card {
  position: relative;
  height: 280px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.svc-card--large {
  grid-column: span 2;
  height: 340px;
}

/* Arrange large cards: row 1 = large + small, row 2 = small + large, row 3 = small + large */
.svc-card:nth-child(1) { grid-column: 1 / 3; }
.svc-card:nth-child(2) { grid-column: 3 / 4; height: 340px; }
.svc-card:nth-child(3) { grid-column: 1 / 2; height: 340px; }
.svc-card:nth-child(4) { grid-column: 2 / 4; }
.svc-card:nth-child(5) { grid-column: 1 / 2; }
.svc-card:nth-child(6) { grid-column: 2 / 4; }

.svc-card__bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}

.svc-card:hover .svc-card__bg { transform: scale(1.06); }

.svc-card__bg--placeholder::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 24px;
}

.svc-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,25,23,0.92) 0%, rgba(28,25,23,0.2) 55%);
  transition: background 0.3s;
  z-index: 1;
}

.svc-card:hover .svc-card__overlay { background: linear-gradient(to top, rgba(28,25,23,0.95) 0%, rgba(28,25,23,0.35) 55%); }

.svc-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 28px;
  z-index: 2;
}

.svc-card__eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.svc-card__title {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.svc-card__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  margin-bottom: 12px;
  max-width: 380px;
}

.svc-card--large .svc-card__desc { display: block; }
.svc-card:not(.svc-card--large) .svc-card__desc { display: none; }

.svc-card__link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-transform: uppercase;
  transition: color 0.2s;
}

.svc-card:hover .svc-card__link { color: var(--white); }

/* --- Family Badges --- */
.family-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.family-badge {
  display: inline-block;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid #d4c8ba;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

/* --- Homepage Gallery --- */
.home-gallery { padding: 80px 0 0; background: var(--white); }

.home-gallery__header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 24px;
}

.home-gallery__header h2 { color: var(--navy); margin-top: 12px; }
.home-gallery__header p { color: var(--gray); max-width: 540px; margin: 12px auto 0; font-size: 0.95rem; }

.home-gallery__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 260px);
  gap: 4px;
}

.gallery-tile {
  overflow: hidden;
  position: relative;
  background: #d4c8ba;
  cursor: pointer;
}

.gallery-tile--tall { grid-row: span 2; }

.gallery-tile--placeholder::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: rgba(122,92,62,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.home-gallery__cta {
  text-align: center;
  padding: 40px 24px;
}

/* --- Responsive Homepage --- */
@media (max-width: 1024px) {
  .home-services__grid { grid-template-columns: 1fr 1fr; }
  .svc-card:nth-child(1) { grid-column: 1 / 3; }
  .svc-card:nth-child(2) { grid-column: 1 / 2; }
  .svc-card:nth-child(3) { grid-column: 2 / 3; }
  .svc-card:nth-child(4) { grid-column: 1 / 3; }
  .svc-card:nth-child(5) { grid-column: 1 / 2; }
  .svc-card:nth-child(6) { grid-column: 2 / 3; }
  .svc-card:nth-child(7) { grid-column: 1 / 2; }
  .svc-card:nth-child(8) { grid-column: 2 / 3; }
  .home-gallery__grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .gallery-tile--tall { grid-row: span 2; }
}

@media (max-width: 768px) {
  .home-services__grid { grid-template-columns: 1fr; gap: 2px; }
  .svc-card, .svc-card--large { grid-column: 1 / 2 !important; height: 240px; }
  .svc-card--large .svc-card__desc { display: block; }
  .home-gallery__grid { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 180px; }
  .gallery-tile--tall { grid-row: span 2; }
  .family-badge { font-size: 0.75rem; padding: 6px 10px; }
  .nav__drop { position: fixed; top: 60px; left: 16px; right: 16px; }
}

/* =========================================
   UI/UX PRO MAX — Design System Upgrades
   Nature Distilled × Luxury Premium
   ========================================= */

/* --- Font: Cormorant Garamond (editorial luxury upgrade) --- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }

.hero__title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

/* --- Natural easing on all transitions (ease-out) --- */
.btn,
.nav__links a,
.svc-card__bg,
.svc-card__overlay,
.gallery-tile img,
.type-card__bg,
.nav__drop li a,
.split-section__img img,
.icon-feature,
.faq__question {
  transition-timing-function: var(--ease-out) !important;
}

/* --- Warm background override --- */
.split-section--white { background: var(--warm-white); }

/* --- Gold color refinements --- */
.btn-solid {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.btn-solid:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.cta-band { background: var(--gold); }

.eyebrow { color: var(--gold); }

.stat-item__num em,
.svc-card__eyebrow,
.svc-card__link { color: var(--gold); }

/* --- Active nav state --- */
.nav__links a.active:not(.nav__cta),
.nav__links a[aria-current="page"]:not(.nav__cta) {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

/* --- Navy sections use warm near-black --- */
.home-services,
.process-strip,
.reviews { background: var(--navy); }

.page-header { background: var(--navy); }

/* --- Terracotta accent — use on hover states and dividers --- */
.trust-bar__item svg { color: var(--terracotta); }

.areas__city svg { color: var(--terracotta); }

/* --- Sand color for subtle borders --- */
.stat-item { border-right-color: var(--sand); }
.stats-bar { border-bottom-color: var(--sand); }
.footer__col h4::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin-top: 8px;
}

/* --- Hero grain enhancement --- */
.hero { position: relative; }
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.06;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: overlay;
}

/* --- Scroll-triggered fade-in (storytelling animation) --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Refined trust bar --- */
.trust-bar {
  background: var(--navy);
  border-bottom: none;
}
.trust-bar__item { color: rgba(255,255,255,0.75); font-size: 0.82rem; }
.trust-bar__item svg { color: var(--gold); }

/* --- Review cards refinement --- */
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}

/* --- Footer warm refinement --- */
.footer { background: var(--navy); }
.footer__bottom { border-top-color: rgba(255,255,255,0.08); }

/* --- Section divider accent --- */

/* =========================================
   PAGE HERO (About, Contact, Gallery, etc.)
   ========================================= */
.page-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
}
.page-hero--top {
  align-items: flex-start;
  padding-top: 140px;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
}
.page-hero__bg--placeholder {
  background: linear-gradient(135deg, #2d1f12 0%, #1C1917 60%, #292524 100%);
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(28,25,23,0.80) 0%, rgba(28,25,23,0.45) 50%, rgba(28,25,23,0.10) 100%),
    linear-gradient(to bottom, rgba(28,25,23,0.55) 0%, rgba(28,25,23,0.05) 35%, rgba(28,25,23,0.25) 65%, rgba(28,25,23,0.85) 100%);
  z-index: 1;
}
.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.page-hero__content h1 {
  color: var(--warm-white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 12px 0 16px;
  max-width: 640px;
}
.page-hero__content h1 em {
  font-style: italic;
  color: var(--sand);
}
.page-hero__content p {
  color: rgba(250,250,249,0.75);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.65;
}

/* =========================================
   ABOUT PAGE — VALUES STRIP
   ========================================= */
.about-values {
  background: var(--warm-white);
  border-top: 1px solid rgba(28,25,23,0.08);
  border-bottom: 1px solid rgba(28,25,23,0.08);
  padding: 64px 24px;
}
.about-values__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.about-values__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-values__icon {
  width: 56px;
  height: 56px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.about-values__item h3 {
  font-size: 1.1rem;
  color: var(--navy);
}
.about-values__item p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.65;
}

/* =========================================
   ABOUT PAGE — TEAM SECTION
   ========================================= */
.about-team {
  background: var(--cream);
  padding: 88px 24px;
}
.about-team__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.about-team__header h2 { margin: 12px 0 16px; }
.about-team__header p { color: var(--gray); }
.about-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.team-card {
  background: var(--warm-white);
  overflow: hidden;
  border: 1px solid rgba(28,25,23,0.06);
}
.team-card__photo {
  aspect-ratio: 4/3;
  width: 100%;
  overflow: hidden;
}
.team-card__photo--placeholder {
  background: linear-gradient(135deg, #3a2f20, #5c4a32);
  position: relative;
}
.team-card__photo--placeholder::after {
  content: attr(data-label);
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-body);
}
.team-card__body {
  padding: 28px;
}
.team-card__body h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
  color: var(--navy);
}
.team-card__title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.team-card__body p:not(.team-card__title) {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 10px;
}

/* =========================================
   RESPONSIVE — ABOUT PAGE
   ========================================= */
@media (max-width: 900px) {
  .about-values__inner { grid-template-columns: repeat(2, 1fr); }
  .about-team__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .page-hero { min-height: 360px; padding-bottom: 48px; }
  .page-hero--top { align-items: center; padding-top: 80px; }
  .about-values__inner { grid-template-columns: 1fr; gap: 28px; }
  .about-team__grid { grid-template-columns: 1fr; }
}

/* =========================================
   BEFORE / AFTER SLIDER
   ========================================= */
.before-after-section {
  background: var(--cream);
  padding: 88px 24px;
}
.before-after-section__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}
.before-after-section__header h2 { margin: 12px 0 12px; }
.before-after-section__header p { color: var(--gray); }

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.ba-slider {
  position: relative;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  aspect-ratio: 4/3;
  background: var(--navy);
}
.ba-slider__before,
.ba-slider__after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-slider__after {
  clip-path: inset(0 0 0 50%);
}
.ba-slider__handle {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
.ba-slider__line {
  width: 2px;
  flex: 1;
  background: white;
  box-shadow: 0 0 8px rgba(0,0,0,0.4);
}
.ba-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  color: var(--navy);
}
.ba-label {
  position: absolute;
  bottom: 14px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  background: rgba(28,25,23,0.55);
  padding: 4px 10px;
  backdrop-filter: blur(4px);
}
.ba-label--before { left: 14px; }
.ba-label--after  { right: 14px; }

.split-section__img .ba-slider {
  height: 100%;
  aspect-ratio: unset;
}

/* Before/After Section */
.ba-section {
  padding: 72px 24px;
  background: var(--cream);
}
.ba-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.ba-section__header {
  text-align: center;
  margin-bottom: 40px;
}
.ba-section__header h2 {
  margin-top: 8px;
}
.ba-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ba-section__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.ba-section__caption {
  text-align: center;
  font-size: 0.8rem;
  font-family: var(--font-body);
  color: var(--brown);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 10px;
}
@media (max-width: 640px) {
  .ba-section__grid,
  .ba-section__grid--3 { grid-template-columns: 1fr; }
  .ba-slider__btn { width: 36px; height: 36px; }
  .ba-label { font-size: 0.65rem; padding: 3px 8px; }
}

@media (max-width: 640px) {
  .before-after-grid { grid-template-columns: 1fr; }
}

/* =========================================
   THANKS PAGE
   ========================================= */
.thanks-section {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: var(--cream);
}
.thanks-section__inner {
  max-width: 560px;
  text-align: center;
}
.thanks-section__icon {
  color: var(--gold);
  margin-bottom: 24px;
}
.thanks-section__inner .eyebrow { margin-bottom: 8px; }
.thanks-section__inner h1 { margin-bottom: 20px; }
.thanks-section__inner p { color: var(--gray); margin-bottom: 12px; font-size: 1rem; line-height: 1.7; }
.thanks-section__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-section {
  padding: 80px 0;
  background: var(--cream);
  scroll-margin-top: 60px;
}
.contact-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}
.contact-form-wrap h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  margin: 8px 0 12px;
}
.contact-form-wrap > p {
  color: var(--text-mid);
  margin-bottom: 36px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form__field label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}
.contact-form__field label span {
  color: var(--gold);
}
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--navy);
  background: white;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: var(--gold);
}
.contact-form__field textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form__submit {
  align-self: flex-start;
  margin-top: 4px;
}
.contact-form__note {
  font-size: 0.82rem;
  color: var(--text-mid);
  margin-top: -8px;
}
.contact-form__note a {
  color: var(--navy);
  font-weight: 600;
}

/* Contact Info Panel */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-top: 68px;
}
.contact-info__block h3 {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.contact-info__block p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.6;
}
.contact-info__phone {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.contact-info__phone:hover { color: var(--gold); }
.contact-info__hours {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-info__hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--text-mid);
  padding-bottom: 8px;
  border-bottom: 1px solid #e8e0d5;
}
.contact-info__hours li:last-child { border-bottom: none; }
.contact-info__trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: var(--navy);
  border-radius: 4px;
}
.contact-info__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.contact-info__trust-item svg {
  stroke: var(--gold);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .contact-section__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-info { padding-top: 0; }
  .contact-form__row { grid-template-columns: 1fr; }
}

/* =========================================
   GALLERY PAGE
   ========================================= */

.gallery-section {
  padding: 80px 0;
}
.gallery-section + .gallery-section {
  padding-top: 0;
}
.gallery-section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.gallery-section__header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 8px 0 16px;
}
.gallery-section__header p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
}

/* Grid */
.gallery-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 12px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.gs-tile {
  overflow: hidden;
  border-radius: 4px;
}
.gs-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out);
}
.gs-tile:hover img {
  transform: scale(1.04);
}
.gs-tile--wide {
  grid-column: span 2;
}
.gs-tile--tall {
  grid-row: span 2;
}

@media (max-width: 768px) {
  .gallery-section__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
    padding: 0 16px;
  }
  .gs-tile--wide { grid-column: span 2; }
  .gs-tile--tall { grid-row: span 1; }
}

@media (max-width: 480px) {
  .gallery-section__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .gs-tile--wide { grid-column: span 1; }
}
