/* ══════════════════════════════════════════
   Scott Chaney Construction: Main Stylesheet
   Brand-Forward with Editorial Refinement
   ══════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

/* ── Brand Variables ── */
:root {
  --deep-brown:  #4A2C0A;
  --med-brown:   #7A4F2E;
  --gold:        #8B6B14;
  --gold-light:  #C4961A;
  --cream:       #FDFBF7;
  --warm-tan:    #F8F4EC;
  --lt-gold-bg:  #FAF7EF;
  --taupe:       #5C3D22;
  --dk-text:     #2C1608;
  --rule:        #E3DACB;
  --header-h:    80px;
  --font-serif:  'Fraunces', Georgia, serif;
  --font-sans:   'Manrope', 'Helvetica Neue', Arial, sans-serif;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--dk-text);
  line-height: 1.7;
  font-weight: 300;
}

/* ── Utility ── */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 5.5rem 0; }

.section-header { margin-bottom: 2.75rem; }

.section-eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--deep-brown);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.section-sub {
  font-size: 1rem;
  color: var(--taupe);
  max-width: 560px;
  line-height: 1.75;
  font-weight: 300;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.9rem 2.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.15s;
}

.btn-gold {
  background: var(--gold-light);
  color: var(--cream);
  border-color: var(--gold-light);
}

.btn-gold:hover {
  background: var(--deep-brown);
  border-color: var(--deep-brown);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(253, 248, 240, 0.5);
}

.btn-outline:hover {
  background: rgba(253, 248, 240, 0.12);
  border-color: var(--cream);
  transform: translateY(-2px);
}


/* ══════════════ HEADER ══════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(253, 248, 240, 0.97);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(74, 44, 10, 0.10);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo { height: 52px; width: auto; display: block; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}

.main-nav a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: color 0.2s;
  white-space: nowrap;
}

.main-nav a:hover { color: var(--deep-brown); }

.nav-active {
  background: var(--lt-gold-bg) !important;
  color: var(--deep-brown) !important;
}

/* Dropdown nav groups (About Us / Why Choose Us) */
.nav-dropdown {
  position: relative;
  display: flex;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.dropdown-trigger::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.6;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: var(--cream);
  border: 1px solid var(--rule);
  box-shadow: 0 16px 34px rgba(74, 44, 10, 0.14);
  padding: 0.4rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 220;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.7rem 1.25rem !important;
  font-size: 0.68rem !important;
  white-space: nowrap;
}

.nav-ctr-link {
  color: #6B8C74 !important;
  border-left: 1px solid var(--rule);
  margin-left: 0.5rem;
  padding-left: 1.25rem !important;
}

.nav-ctr-link:hover { color: #2C3A30 !important; }

.header-phone {
  display: inline-block;
  color: var(--deep-brown);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  padding: 0.6rem 1.25rem;
  border: 1.5px solid var(--gold-light);
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.header-phone:hover {
  background: var(--gold-light);
  color: var(--cream);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--deep-brown);
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ══════════════ HERO ══════════════ */
.hero {
  position: relative;
  min-height: 600px;
  background: url('images/project-exterior-garage.jpg') center 42% / cover no-repeat;
  display: flex;
  align-items: flex-end;
  background-color: var(--deep-brown);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 14, 3, 0.88) 0%,
    rgba(30, 14, 3, 0.45) 55%,
    rgba(30, 14, 3, 0.18) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
  width: 100%;
}

.hero-eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 9vw, 6.5rem);
  color: var(--cream);
  line-height: 1.0;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.hero-desc {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: rgba(242, 232, 213, 0.85);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

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


/* ══════════════ PAGE HERO (compact banner, used on all sub-pages) ══════════════ */
.page-hero {
  position: relative;
  background: var(--deep-brown) center / cover no-repeat;
  border-bottom: 4px solid var(--gold-light);
  padding: 6.5rem 1.5rem 4.5rem;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(28, 13, 3, 0.82) 0%,
    rgba(28, 13, 3, 0.62) 55%,
    rgba(28, 13, 3, 0.4) 100%
  );
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

.page-hero .hero-eyebrow {
  font-size: 0.78rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  color: var(--cream);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(242, 232, 213, 0.88);
  max-width: 580px;
  line-height: 1.65;
}


/* ══════════════ PROMISE STRIP ══════════════ */
.promise-strip {
  background: var(--deep-brown);
  border-bottom: 1px solid rgba(212, 196, 160, 0.2);
  padding: 2rem 0;
}

.promise-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.promise-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem 3rem;
}

.promise-item strong {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
}

.promise-item span {
  font-size: 0.7rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

.promise-divider {
  width: 1px;
  height: 30px;
  background: rgba(212, 196, 160, 0.25);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .promise-divider { display: none; }
  .promise-item { padding: 0.4rem 1.25rem; }
}


/* ══════════════ SERVICES ══════════════ */
.services { background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.service-card {
  background: var(--cream);
  padding: 2.75rem 2.25rem;
  transition: background 0.25s;
}

.service-card:hover { background: var(--warm-tan); }

.service-icon {
  width: 36px;
  height: 36px;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--deep-brown);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--taupe);
  line-height: 1.8;
  font-weight: 300;
}


/* ══════════════ STANDARD STATEMENT ══════════════ */
.standard-section {
  background: var(--deep-brown);
  padding: 5.5rem 0;
  text-align: center;
}

.standard-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  color: var(--warm-tan);
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  max-width: 820px;
  margin: 0 auto;
  border: none;
  padding: 0;
}

.standard-cite {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}


/* ══════════════ TEAM GLIMPSE (Home page) ══════════════ */
.team-glimpse { background: var(--cream); }

.team-glimpse-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.team-glimpse-card { text-align: center; }

.team-glimpse-photo {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin-bottom: 1.1rem;
}

.team-glimpse-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.team-glimpse-names {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--deep-brown);
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.team-glimpse-roles {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.6;
}

.team-glimpse-cta { text-align: center; }


/* ══════════════ BOOK A CALL (Home page) ══════════════ */
.book-call {
  background: var(--warm-tan);
  padding: 5rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.book-call-inner {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 4rem;
  align-items: center;
}

.book-call-photo {
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.book-call-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.book-call-text p {
  font-size: 1rem;
  color: var(--taupe);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.book-call-contacts {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.book-call-btn { margin-top: 0.25rem; }


/* ══════════════ EXPLORE / QUICK LINKS (Home page) ══════════════ */
.explore { background: var(--warm-tan); }

.explore-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.explore-card {
  background: var(--cream);
  padding: 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-decoration: none;
  transition: background 0.25s;
}

.explore-card:hover { background: var(--lt-gold-bg); }

.explore-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.explore-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--deep-brown);
  font-weight: 400;
}

.explore-card p {
  font-size: 0.9rem;
  color: var(--taupe);
  line-height: 1.75;
  font-weight: 300;
  flex: 1;
}

.explore-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-top: 0.25rem;
}

.explore-card-accent { background: var(--deep-brown); }
.explore-card-accent:hover { background: #3a2208; }
.explore-card-accent .explore-eyebrow { color: var(--cream); }
.explore-card-accent h3 { color: var(--cream); }
.explore-card-accent p { color: var(--cream); }
.explore-card-accent .explore-link { color: var(--cream); }


/* ══════════════ BUILD WITH CONFIDENCE COMMITMENT ══════════════ */
.commitment { background: var(--cream); }

.section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
}

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

.commitment .section-title {
  color: var(--deep-brown);
}

.center-sub {
  margin-left: auto;
  margin-right: auto;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.commitment-item {
  background: var(--cream);
  padding: 2.5rem 2.25rem;
}

.commitment-icon {
  width: 34px;
  height: 34px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.commitment-icon svg { width: 100%; height: 100%; }

.commitment-item h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--deep-brown);
  margin-bottom: 0.65rem;
  font-weight: 400;
}

.commitment-item p {
  font-size: 0.9rem;
  color: var(--taupe);
  line-height: 1.8;
  font-weight: 300;
}

.commitment-item-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--warm-tan);
  grid-column: 1 / -1;
  padding: 2.75rem 2.25rem;
}

.commitment-pledge {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.7;
  color: var(--deep-brown);
  text-align: center;
  font-weight: 300;
  max-width: 640px;
}


/* ══════════════ WHY ══════════════ */
.why { background: var(--warm-tan); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 3.5rem;
}

.why-item { border-top: 1px solid var(--rule); padding-top: 2rem; }

.why-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--gold-light);
  opacity: 0.3;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.why-item h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--deep-brown);
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.why-item p {
  font-size: 0.92rem;
  color: var(--taupe);
  line-height: 1.85;
  font-weight: 300;
}


/* ══════════════ PORTFOLIO ══════════════ */
.portfolio { background: var(--lt-gold-bg); }

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

/* First photo spans 2 cols as a wide banner tile (keeps the 20-photo grid gap-free) */
.gallery-item:first-child {
  grid-column: span 2;
  aspect-ratio: auto;
}

.gallery-item {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--rule);
  cursor: pointer;
}

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

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

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(20, 8, 2, 0.93);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}

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


/* ══════════════ OUR STORY ══════════════ */
.story {
  background: var(--cream);
  border-top: 1px solid var(--rule);
}

.story-inner {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 4.5rem;
  align-items: start;
}

.story-image {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-text p {
  font-size: 1rem;
  color: var(--taupe);
  margin-bottom: 1.1rem;
  line-height: 1.85;
  font-weight: 300;
}

.story-sign {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}

.story-sign strong {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--deep-brown);
  font-weight: 500;
}

.story-sign span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.75rem;
}

.badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border: 1px solid var(--rule);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--taupe);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* ══════════════ PHOTO STRIP (reusable, 2-up band) ══════════════ */
.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.photo-strip img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

@media (max-width: 700px) {
  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip img { height: 260px; }
}


/* ══════════════ MEET THE TEAM ══════════════ */
.team { background: var(--cream); border-top: 1px solid var(--rule); }

.team-duo {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 3.5rem;
  align-items: start;
  margin-bottom: 4.5rem;
}

.team-duo:last-of-type { margin-bottom: 0; }

.team-duo.reverse { grid-template-columns: 1fr 0.8fr; }
.team-duo.reverse .team-duo-image { order: 2; }

.team-duo-image {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

.team-duo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-duo-bios {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.team-duo-bio + .team-duo-bio {
  border-top: 1px solid var(--rule);
  padding-top: 2.25rem;
}

.team-duo-bio h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--deep-brown);
  font-weight: 400;
  margin-bottom: 0.2rem;
}

.team-duo-role {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.team-duo-bio p {
  font-size: 0.92rem;
  color: var(--taupe);
  line-height: 1.8;
  font-weight: 300;
}

.team-solo {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--rule);
}

.team-solo-photo {
  width: 160px;
  flex-shrink: 0;
}

.team-photo-placeholder {
  aspect-ratio: 4 / 5;
  background: var(--warm-tan);
  border: 1px dashed var(--rule);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem;
  text-align: center;
  color: var(--gold-light);
}

.team-photo-placeholder svg { width: 30px; height: 30px; }

.team-photo-placeholder span {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--taupe);
}

.team-solo-bio h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--deep-brown);
  font-weight: 400;
  margin-bottom: 0.2rem;
}

.team-solo-bio p {
  font-size: 0.92rem;
  color: var(--taupe);
  line-height: 1.8;
  font-weight: 300;
  margin-top: 0.6rem;
}


/* ══════════════ TESTIMONIALS ══════════════ */
.testimonials { background: var(--cream); }

.testimonials .section-title {
  font-family: var(--font-serif);
  color: var(--deep-brown);
  font-weight: 300;
}

.testimonials .section-eyebrow { color: var(--gold); }
.testimonials .section-sub { color: var(--taupe); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.testimonial-card {
  background: var(--cream);
  padding: 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold-light);
  line-height: 0.6;
  opacity: 0.6;
}

.testimonial-card p {
  font-size: 0.97rem;
  color: var(--dk-text);
  line-height: 1.8;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 0.9rem;
}


/* ══════════════ PARTNERS STRIP (Reviews page) ══════════════ */
.partners-strip {
  background: var(--warm-tan);
  border-top: 1px solid var(--rule);
  padding: 4rem 0;
  text-align: center;
}

.partners-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.partners-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.partner-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.partner-item strong {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--deep-brown);
  font-weight: 500;
}

.partner-item span {
  font-size: 0.75rem;
  color: var(--taupe);
}


/* ══════════════ SITE FOOTER ══════════════ */
.site-footer {
  background: var(--deep-brown);
  padding: 3.5rem 0 2.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  text-align: center;
}

.footer-logo {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.75rem;
}

.footer-links a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253, 248, 240, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-legal {
  font-size: 0.75rem;
  color: rgba(253, 248, 240, 0.5);
  letter-spacing: 0.02em;
}


/* ══════════════ MOBILE CTA BAR (visible below 768px only) ══════════════ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--cream);
  border-top: 1px solid var(--rule);
  box-shadow: 0 -4px 20px rgba(74, 44, 10, 0.12);
}

.mobile-call-btn,
.mobile-estimate-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.mobile-call-btn {
  color: var(--deep-brown);
  background: var(--cream);
}

.mobile-call-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
}

.mobile-estimate-btn {
  color: var(--cream);
  background: var(--gold-light);
}


/* ══════════════ CONTACT PAGE ══════════════ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--taupe);
}

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

.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--dk-text);
  background: var(--cream);
  border: 1.5px solid var(--rule);
  padding: 0.8rem 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-light);
}

.form-group textarea { resize: vertical; }

.contact-form .btn { align-self: flex-start; margin-top: 0.5rem; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  background: var(--warm-tan);
  padding: 2.5rem 2.25rem;
  border: 1px solid var(--rule);
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-value {
  font-size: 1rem;
  color: var(--deep-brown);
  text-decoration: none;
  line-height: 1.6;
}

a.contact-value:hover { color: var(--gold-light); }


/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 900px) {
  .commitment-grid,
  .explore-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-inner,
  .contact-wrap,
  .book-call-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .book-call-photo {
    aspect-ratio: 16 / 10;
    max-width: 520px;
    margin: 0 auto;
  }

  .book-call-photo img { object-position: center 10%; }

  .story-image {
    position: static;
    aspect-ratio: 16 / 10;
  }

  .team-duo,
  .team-duo.reverse {
    grid-template-columns: 1fr;
  }

  .team-duo.reverse .team-duo-image { order: 0; }

  .team-duo-image {
    position: static;
    aspect-ratio: 16 / 10;
  }

  .team-solo {
    flex-direction: column;
    align-items: flex-start;
  }

  .team-solo-photo { width: 140px; }
}

@media (max-width: 768px) {
  .section { padding: 4.5rem 0; }

  .header-inner { gap: 1rem; }

  .main-nav,
  .header-phone {
    display: none;
  }

  .nav-toggle { display: flex; }

  .main-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 16px 30px rgba(74, 44, 10, 0.12);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-left: 0;
  }

  .main-nav.open {
    display: flex;
    max-height: 80vh;
    overflow-y: auto;
  }

  .main-nav a {
    padding: 0.9rem 1.5rem;
    width: 100%;
  }

  .nav-dropdown {
    flex-direction: column;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    border: none;
    box-shadow: none;
    padding: 0;
    background: var(--warm-tan);
  }

  .nav-dropdown:focus-within .dropdown-menu,
  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .nav-ctr-link {
    border-left: none;
    border-top: 1px solid var(--rule);
    margin-left: 0;
    padding-left: 1.5rem !important;
  }

  .hero { min-height: 480px; }

  .hero-content h1 { max-width: 100%; }

  .services-grid,
  .commitment-grid,
  .explore-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:first-child {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 4 / 3;
  }

  .why-grid { gap: 2.5rem; }

  .partners-row { gap: 2rem; }

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

  .mobile-cta-bar { display: flex; }

  body { padding-bottom: 62px; }
}

@media (max-width: 480px) {
  .page-hero { padding: 5.5rem 1.25rem 3.5rem; }

  .team-glimpse-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    gap: 2rem;
  }
}
