/* ============================================
   Stud & Beam Constructions — Stylesheet
   ============================================ */

:root {
  --dark-1: #1c1a18;
  --dark-2: #242220;
  --dark-3: #2f2c29;
  --dark-border: #3d3a36;
  --dark-border-2: #322f2b;

  --orange: #cc6b3c;
  --orange-hover: #b25a30;
  --orange-light: #e08a5f;

  --text-onDark-1: #ffffff;
  --text-onDark-2: #b8b2a8;
  --text-onDark-3: #9a958e;
  --text-onDark-4: #7a746c;
  --text-onDark-5: #6b665f;

  --bg-cream: #fbf9f6;
  --bg-tan: #f4ede1;
  --bg-tan-border: #e7e0d4;
  --bg-tan-border-2: #e2d9c8;
  --bg-tan-placeholder: #ece5d8;

  --text-dark-1: #211f1d;
  --text-dark-2: #3a3733;
  --text-dark-3: #6b6660;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  background: var(--bg-cream);
  color: var(--text-dark-1);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { text-decoration: none; color: var(--orange); }
a:hover { color: var(--orange-hover); }

button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 15px 26px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}
.btn:hover { background: var(--orange-hover); color: #fff; }

.btn-outline-dark {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 1px solid #55514c;
  padding: 15px 26px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
}
.btn-outline-dark:hover { border-color: var(--orange); color: var(--orange); }

.btn-outline-light {
  display: inline-block;
  background: none;
  border: 1px solid var(--text-dark-1);
  color: var(--text-dark-1);
  padding: 12px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
}
.btn-outline-light:hover { background: var(--text-dark-1); color: #fff; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark-2);
  border-bottom: 1px solid var(--dark-border);
}
.nav-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.logo-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 8px);
  grid-template-rows: repeat(3, 8px);
  gap: 3px;
}
.logo-grid span { background: #8a8580; display: block; }
.logo-grid span:nth-child(3) { background: var(--orange); }
.logo-grid span:nth-child(5) { background: #55514c; }
.logo-text { text-align: left; }
.logo-title {
  font-weight: 800; font-size: 16px; color: #fff;
  letter-spacing: 0.3px; line-height: 1.1;
}
.logo-title .amp { color: var(--orange); }
.logo-sub {
  font-size: 9px; font-weight: 600; color: var(--text-onDark-3);
  letter-spacing: 1.2px; line-height: 1.2;
}

.nav-links { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.nav-link {
  background: none; border: none; padding: 10px 14px; border-radius: 6px;
  font-size: 14px; font-weight: 600; color: var(--text-onDark-2);
}
.nav-link:hover { background: var(--dark-3); color: var(--text-onDark-2); }
.nav-link.active { background: var(--dark-border); color: #fff; font-weight: 700; }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0; padding-top: 10px;
  margin-top: 0;
  display: none;
  z-index: 50;
}
.nav-dropdown-menu-inner {
  background: var(--dark-3); border: 1px solid var(--dark-border);
  border-radius: 8px; min-width: 210px; padding: 6px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.35);
}
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-item {
  display: block; width: 100%; text-align: left; background: none; border: none;
  padding: 10px 12px; border-radius: 6px; font-size: 13.5px; font-weight: 600;
  color: #e9e4da;
}
.nav-dropdown-item:hover { background: var(--dark-border); color: #fff; }

.btn-quote {
  background: var(--orange); color: #fff; border: none; padding: 11px 20px;
  border-radius: 6px; font-size: 14px; font-weight: 700; white-space: nowrap;
}
.btn-quote:hover { background: var(--orange-hover); color: #fff; }

/* ===== PAGE HERO (dark banner used on every inner page) ===== */
.page-hero {
  background: var(--dark-2);
  padding: 72px 32px 56px;
}
.page-hero h1 {
  font-size: 44px; font-weight: 900; color: #fff;
  margin: 0 0 18px; letter-spacing: -0.5px;
}
.page-hero p {
  font-size: 17px; line-height: 1.6; color: var(--text-onDark-2);
  margin: 0; max-width: 640px;
}

/* ===== HOME HERO ===== */
.hero {
  background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark-1) 100%);
  padding: 96px 32px 80px;
}
.hero-inner {
  display: flex; gap: 56px; align-items: center; flex-wrap: wrap;
}
.hero-copy { flex: 1 1 480px; min-width: 320px; }
.hero-copy h1 {
  font-size: 52px; line-height: 1.08; font-weight: 900; color: #fff;
  margin: 0 0 22px; letter-spacing: -0.5px;
}
.hero-copy h1 span { color: var(--orange); }
.hero-copy p {
  font-size: 17px; line-height: 1.6; color: var(--text-onDark-2);
  max-width: 480px; margin: 0 0 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image {
  flex: 1 1 380px; min-width: 300px; height: 460px; border-radius: 10px;
  overflow: hidden; border: 1px solid var(--dark-border); position: relative;
  box-shadow: 0 24px 48px -12px rgba(0,0,0,0.55), 0 8px 20px rgba(0,0,0,0.4);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--dark-3); padding: 40px 32px; }
.stats-grid {
  max-width: 1240px; margin: 0 auto; display: grid;
  grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.stat { text-align: center; }
.stat.bordered { border-left: 1px solid var(--dark-border); border-right: 1px solid var(--dark-border); }
.stat-num { font-size: 40px; font-weight: 900; color: var(--orange); }
.stat-label { color: var(--text-onDark-2); font-size: 14px; font-weight: 600; margin-top: 4px; }

/* ===== QUOTE ===== */
.quote-section { background: var(--bg-cream); padding: 72px 32px; }
.quote-section .container-narrow { text-align: center; }
.quote-section blockquote {
  font-size: 26px; line-height: 1.5; font-weight: 700; color: var(--text-dark-1);
  margin: 0 0 20px; font-style: italic;
}
.quote-section .attribution {
  font-size: 15px; line-height: 1.7; color: var(--text-dark-3); margin: 0;
}

/* ===== SECTION WRAPPERS ===== */
.section-white { background: #fff; padding: 80px 32px; }
.section-white.bordered-top { border-top: 1px solid var(--bg-tan-border); }
.section-tan { background: var(--bg-tan); padding: 80px 32px; }
.section-dark { background: var(--dark-2); padding: 80px 32px; }
h2.section-title {
  font-size: 36px; font-weight: 900; margin: 0 0 40px; letter-spacing: -0.5px;
}
.section-dark h2.section-title { color: #fff; }

/* ===== SERVICE CARDS (home) ===== */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px;
}
.service-card {
  background: var(--dark-2); border-radius: 10px; padding: 30px;
  border-top: 3px solid var(--orange);
}
.service-card .num { color: var(--orange); font-weight: 900; font-size: 22px; margin-bottom: 14px; }
.service-card h3 { color: #fff; font-size: 20px; font-weight: 800; margin: 0 0 10px; }
.service-card p { color: var(--text-onDark-2); font-size: 14.5px; line-height: 1.6; margin: 0 0 16px; }
.service-card .bullets { margin-bottom: 18px; }
.service-card .bullets div {
  color: #d8d3c9; font-size: 13.5px; padding: 5px 0; border-top: 1px solid var(--dark-border);
}
.service-card .learn-more { background: none; border: none; color: var(--orange); font-weight: 700; font-size: 14px; padding: 0; }
.service-card .learn-more:hover { color: var(--orange-light); }

/* ===== PROJECT CARDS ===== */
.projects-header-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 40px; flex-wrap: wrap; gap: 16px;
}
.projects-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
}
.projects-grid.wide { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1000px) {
  .projects-grid.wide { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .projects-grid.wide { grid-template-columns: 1fr; }
}
.project-card { background: #fff; border-radius: 10px; overflow: hidden; border: 1px solid var(--bg-tan-border); }
.project-card.on-tan { background: var(--bg-tan); border: none; }
.project-photo { height: 160px; overflow: hidden; background: var(--bg-tan-placeholder); }
.project-photo.tall { height: 170px; }
.project-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.project-photo.placeholder {
  background: repeating-linear-gradient(45deg, var(--bg-tan-placeholder), var(--bg-tan-placeholder) 10px, var(--bg-tan-border-2) 10px, var(--bg-tan-border-2) 20px);
  display: flex; align-items: center; justify-content: center;
}
.project-photo.placeholder span { font-family: monospace; color: #9a9285; font-size: 11.5px; }

/* Building exterior <-> worksite photo crossfade on hover */
.photo-swap { position: relative; width: 100%; height: 100%; overflow: hidden; }
.photo-swap img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: opacity 450ms ease; }
.photo-swap img.building-photo { opacity: 1; z-index: 2; }
.photo-swap img.work-photo { opacity: 0; z-index: 1; }
.photo-swap:hover img.building-photo { opacity: 0; }
.photo-swap:hover img.work-photo { opacity: 1; }
.photo-swap-label {
  position: absolute; bottom: 8px; left: 8px; z-index: 3;
  background: rgba(33,31,29,0.65); color: #fff; font-size: 10.5px; font-weight: 700;
  padding: 3px 8px; border-radius: 4px; letter-spacing: 0.3px;
  opacity: 1; transition: opacity 300ms ease; pointer-events: none;
}
.photo-swap:hover .photo-swap-label { opacity: 0; }
.project-body { padding: 18px; }
.project-body.wide { padding: 22px; }
.project-tag-row { display: flex; gap: 8px; align-items: center; margin-bottom: 10px; flex-wrap: wrap; }
.project-tag {
  background: var(--orange); color: #fff; font-size: 10.5px; font-weight: 800;
  letter-spacing: 0.5px; text-transform: uppercase; padding: 3px 8px; border-radius: 4px;
}
.project-status { color: #9a9285; font-size: 12px; font-weight: 600; }
.project-body h4 { font-size: 16.5px; font-weight: 800; margin: 0 0 6px; }
.project-body .location { font-size: 13px; color: var(--text-dark-3); margin: 0; line-height: 1.5; }
.project-body .location.wide { font-size: 12.5px; margin: 0 0 12px; }
.project-body .blurb { font-size: 13.5px; color: var(--text-dark-2); line-height: 1.6; margin: 0; }

/* project filter tabs */
.filter-row {
  display: flex; gap: 10px; flex-wrap: wrap; border-bottom: 1px solid var(--bg-tan-border);
  padding-bottom: 24px; margin-bottom: 0;
}
.filter-btn {
  background: none; color: var(--text-dark-3); border: 1px solid var(--bg-tan-border);
  padding: 10px 18px; border-radius: 6px; font-size: 13.5px; font-weight: 700;
}
.filter-btn.active { background: var(--text-dark-1); color: #fff; border-color: var(--text-dark-1); }

/* ===== PROCESS ===== */
.process-step {
  display: flex; gap: 26px; padding: 24px 0; border-top: 1px solid var(--dark-border);
}
.process-step .num { font-size: 32px; font-weight: 900; color: var(--orange); min-width: 64px; }
.process-step h4 { color: #fff; font-size: 18px; font-weight: 800; margin: 0 0 8px; }
.process-step p { color: var(--text-onDark-2); font-size: 14.5px; line-height: 1.6; margin: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px;
}
.testimonial-card {
  background: var(--bg-tan); border-radius: 10px; padding: 28px; border-left: 3px solid var(--orange);
}
.testimonial-card p.quote { font-size: 14.5px; line-height: 1.65; color: var(--text-dark-2); margin: 0 0 20px; }
.testimonial-card .name { font-weight: 800; font-size: 14px; color: var(--text-dark-1); }
.testimonial-card .role { font-size: 13px; color: var(--text-dark-3); }

/* ===== WHY US ===== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.why-card { background: #fff; border-radius: 10px; padding: 28px; border: 1px solid var(--bg-tan-border); }
.why-card .num { color: var(--orange); font-weight: 900; font-size: 22px; margin-bottom: 14px; }
.why-card h4 { font-size: 17px; font-weight: 800; margin: 0 0 10px; }
.why-card p { font-size: 14px; line-height: 1.6; color: var(--text-dark-3); margin: 0; }

/* ===== LICENSING CALLOUT ===== */
.licensing-bar { background: var(--bg-tan); padding: 30px 32px; }
.licensing-inner {
  max-width: 1240px; margin: 0 auto; display: flex; gap: 40px; flex-wrap: wrap; align-items: center;
}
.licensing-label {
  font-weight: 800; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dark-3);
}
.licensing-item .k {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.5px; color: #9a9285; text-transform: uppercase;
}
.licensing-item .v { font-size: 16px; font-weight: 800; color: var(--text-dark-1); }

/* ===== FINAL CTA ===== */
.final-cta { background: var(--dark-2); padding: 64px 32px; text-align: center; }
.final-cta h2 { color: #fff; font-size: 30px; font-weight: 900; margin: 0 0 12px; }
.final-cta p { color: var(--text-onDark-2); font-size: 15px; margin: 0 0 28px; }

/* ===== OUR STORY page ===== */
.story-flex { display: flex; gap: 48px; flex-wrap: wrap; }
.story-copy { flex: 1 1 420px; }
.story-copy p { font-size: 16px; line-height: 1.75; color: var(--text-dark-2); margin: 0 0 20px; }
.story-side { flex: 1 1 260px; min-width: 220px; }
.story-carousel {
  height: 300px; border-radius: 10px; overflow: hidden; margin-bottom: 10px;
  position: relative; background: var(--dark-1);
}
.story-carousel img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; transition: opacity 250ms ease;
}
.story-nav-btn {
  position: absolute; top: 50%; transform: translateY(-50%); width: 34px; height: 34px;
  border-radius: 50%; background: rgba(33,31,29,0.55); border: none; color: #fff;
  font-size: 16px; display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.story-nav-btn:hover { background: rgba(204,107,60,0.85); }
.story-nav-btn.prev { left: 8px; }
.story-nav-btn.next { right: 8px; }
.story-caption {
  font-size: 12.5px; color: var(--text-dark-3); text-align: center; margin: 0 0 10px;
  line-height: 1.5; min-height: 32px;
}
.story-dots { display: flex; justify-content: center; gap: 8px; margin-bottom: 16px; }
.story-dot {
  width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0; cursor: pointer;
  background: #d8cfc0;
}
.story-dot.active { background: var(--orange); }
.story-side .big-num { text-align: center; font-size: 34px; font-weight: 900; color: var(--orange); }
.story-side .big-label { text-align: center; font-size: 13.5px; font-weight: 600; color: var(--text-dark-3); }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.value-card { background: var(--dark-2); border-radius: 10px; padding: 26px; }
.value-card .num { color: var(--orange); font-weight: 900; font-size: 20px; margin-bottom: 12px; }
.value-card h4 { color: #fff; font-size: 16.5px; font-weight: 800; margin: 0 0 8px; }
.value-card p { color: var(--text-onDark-2); font-size: 13.5px; line-height: 1.6; margin: 0; }

.center-cta { background: #fff; padding: 64px 32px; text-align: center; }
.center-cta h2 { font-size: 28px; font-weight: 900; margin: 0 0 12px; }

/* ===== OUR PEOPLE page ===== */
.person-block { display: flex; gap: 36px; flex-wrap: wrap; margin-bottom: 56px; }
.person-photo { width: 220px; height: 260px; flex-shrink: 0; border-radius: 10px; overflow: hidden; }
.person-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.person-info { flex: 1 1 380px; min-width: 280px; }
.person-info h3 { font-size: 24px; font-weight: 900; margin: 0 0 4px; }
.person-info .role {
  color: var(--orange); font-weight: 700; font-size: 13px; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 16px;
}
.person-info p { font-size: 15px; line-height: 1.7; color: var(--text-dark-2); margin: 0 0 16px; }
.cred-list { display: flex; flex-direction: column; gap: 6px; }
.cred-list div, .dash-list div {
  font-size: 14px; color: var(--text-dark-2); display: flex; gap: 10px;
}
.dash-list div { padding: 9px 0; border-top: 1px solid var(--bg-tan-border); }
.dash-list.tan div { border-top-color: var(--bg-tan-border-2); }
.cred-list span, .dash-list span { color: var(--orange); }

.prior-experience-box { background: var(--bg-tan); border-radius: 10px; padding: 30px 34px; margin-bottom: 56px; }
.prior-experience-box h4 {
  font-size: 13px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-dark-1); margin: 0 0 6px;
}
.prior-experience-box > p { font-size: 14.5px; line-height: 1.7; color: var(--text-dark-2); margin: 0 0 18px; }
.prior-experience-box .dash-list div { font-size: 14.5px; }

.two-col-values {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px;
  border-top: 1px solid var(--bg-tan-border); padding-top: 40px;
}
.two-col-values h4 {
  font-size: 13px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-dark-1); margin: 0 0 18px;
}

.onsite-block { background: var(--bg-tan); padding: 64px 32px; }
.onsite-block h2 { font-size: 28px; font-weight: 900; margin: 0 0 16px; }
.onsite-block > .container-narrow > p { font-size: 15.5px; line-height: 1.7; color: var(--text-dark-2); max-width: 640px; margin: 0 0 22px; }
.site-team-points { display: flex; gap: 30px; flex-wrap: wrap; }
.site-team-points div { font-size: 14px; font-weight: 700; color: var(--text-dark-1); display: flex; gap: 8px; align-items: center; }
.dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; display: inline-block; }

.contact-strip { background: var(--dark-2); padding: 40px 32px; }
.contact-strip-inner {
  max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 24px;
}
.contact-strip h3 { color: #fff; font-size: 24px; font-weight: 800; margin: 0; }
.contact-strip .who { text-align: right; }
.contact-strip .who .name { color: #fff; font-weight: 800; font-size: 15px; }
.contact-strip .who .role { color: var(--text-onDark-3); font-size: 12.5px; margin-bottom: 6px; }
.contact-strip .who .detail { color: var(--orange); font-weight: 700; font-size: 13.5px; }

/* ===== SERVICES OVERVIEW ===== */
.services-list-item {
  background: var(--bg-tan); border-radius: 12px; padding: 36px; display: flex;
  gap: 32px; flex-wrap: wrap; align-items: center; margin-bottom: 24px;
}
.services-list-item .num { color: var(--orange); font-weight: 900; font-size: 38px; min-width: 64px; }
.services-list-item .content { flex: 1 1 320px; }
.services-list-item h3 { font-size: 24px; font-weight: 900; margin: 0 0 10px; }
.services-list-item p { font-size: 15px; line-height: 1.65; color: var(--text-dark-2); margin: 0 0 16px; }
.services-list-item .tags { display: flex; gap: 10px 24px; flex-wrap: wrap; }
.services-list-item .tags span { font-size: 13px; color: var(--text-dark-3); font-weight: 600; }
.btn-view-service {
  background: var(--text-dark-1); color: #fff; border: none; padding: 13px 24px;
  border-radius: 6px; font-size: 14px; font-weight: 700; white-space: nowrap;
}
.btn-view-service:hover { background: var(--orange); color: #fff; }

/* ===== SERVICE DETAIL ===== */
.service-eyebrow-num { color: var(--orange); font-weight: 700; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.service-detail-copy p { font-size: 16px; line-height: 1.75; color: var(--text-dark-2); margin: 0 0 20px; }
.two-col-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; margin-top: 36px; }
.two-col-grid h4 { font-size: 13px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; margin: 0 0 16px; }
.related-services-bar { background: var(--bg-tan); padding: 40px 32px; }
.related-services-bar .label { font-size: 12.5px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dark-3); margin-bottom: 12px; }
.related-services-links { display: flex; gap: 18px; flex-wrap: wrap; }
.related-link {
  background: #fff; border: 1px solid var(--bg-tan-border); padding: 12px 20px; border-radius: 6px;
  font-size: 14px; font-weight: 700; color: var(--text-dark-1);
}
.related-link:hover { border-color: var(--orange); color: var(--orange); }
.service-cta { background: var(--dark-2); padding: 56px 32px; text-align: center; }
.service-cta h2 { color: #fff; font-size: 26px; font-weight: 900; margin: 0 0 24px; }

/* ===== CONTACT PAGE ===== */
.contact-layout { display: flex; gap: 56px; flex-wrap: wrap; }
.contact-details { flex: 1 1 300px; min-width: 260px; }
.contact-details h4 { font-size: 13px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; margin: 0 0 20px; }
.contact-info-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.contact-info-list .k { font-size: 11.5px; color: #9a9285; font-weight: 700; text-transform: uppercase; margin-bottom: 3px; }
.contact-info-list .v { font-size: 15px; font-weight: 700; }
.contact-info-list .v.accent { color: var(--orange); }
.response-box { background: var(--bg-tan); border-radius: 8px; padding: 18px 20px; }
.response-box .title { font-size: 13px; font-weight: 800; margin-bottom: 4px; }
.response-box p { font-size: 13.5px; color: var(--text-dark-2); line-height: 1.6; margin: 0; }

.contact-form-wrap { flex: 2 1 420px; min-width: 300px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input, .contact-form select, .contact-form textarea {
  padding: 13px 14px; border: 1px solid #e0d9cc; border-radius: 6px; font-size: 14.5px; background: var(--bg-cream);
}
.contact-form select { color: var(--text-dark-3); }
.contact-form textarea { resize: vertical; }
.contact-form button { align-self: flex-start; }
.form-success {
  background: var(--bg-tan); border-radius: 10px; padding: 40px; text-align: center;
}
.form-success h3 { font-size: 22px; font-weight: 800; margin: 0 0 10px; }
.form-success p { font-size: 14.5px; color: var(--text-dark-2); margin: 0 0 20px; }
.btn-dark-sm {
  background: var(--text-dark-1); color: #fff; border: none; padding: 12px 22px;
  border-radius: 6px; font-size: 14px; font-weight: 700;
}
.btn-dark-sm:hover { background: var(--orange); }

.faq-section { background: var(--bg-tan); padding: 64px 32px; }
.faq-section h4 { font-size: 13px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; margin: 0 0 24px; }
.faq-item { border-top: 1px solid var(--bg-tan-border-2); padding: 18px 0; }
.faq-question {
  background: none; border: none; width: 100%; display: flex; justify-content: space-between;
  align-items: center; padding: 0; text-align: left;
}
.faq-question span.q { font-size: 15.5px; font-weight: 700; color: var(--text-dark-1); }
.faq-question span.icon { color: var(--orange); font-size: 18px; font-weight: 700; }
.faq-answer { font-size: 14.5px; color: var(--text-dark-2); line-height: 1.65; margin: 14px 0 0; display: none; }
.faq-item.open .faq-answer { display: block; }

/* ===== FOOTER ===== */
.site-footer { background: var(--dark-1); padding: 56px 32px 28px; margin-top: auto; }
.footer-top {
  max-width: 1240px; margin: 0 auto; display: flex; gap: 48px; flex-wrap: wrap;
  justify-content: space-between; padding-bottom: 32px; border-bottom: 1px solid var(--dark-border-2);
}
.footer-brand { flex: 2 1 260px; min-width: 220px; }
.footer-brand .title { font-weight: 800; font-size: 16px; color: #fff; margin-bottom: 8px; }
.footer-brand .title .amp { color: var(--orange); }
.footer-brand .desc { color: var(--text-onDark-4); font-size: 13.5px; line-height: 1.6; }
.footer-col { flex: 1 1 160px; }
.footer-col.contact { flex: 1 1 200px; }
.footer-col .heading {
  color: var(--text-onDark-3); font-size: 12px; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 14px;
}
.footer-col .links { display: flex; flex-direction: column; gap: 10px; }
.footer-col .links a, .footer-col .links button {
  background: none; border: none; color: var(--text-onDark-2); font-size: 14px;
  text-align: left; padding: 0;
}
.footer-col .links a:hover, .footer-col .links button:hover { color: var(--orange); }
.footer-col .links span { color: var(--text-onDark-2); font-size: 14px; }
.footer-col .links .enquire { color: var(--orange); font-weight: 700; }
.footer-bottom {
  max-width: 1240px; margin: 0 auto; padding-top: 22px; color: #6b665f; font-size: 12.5px;
}

/* ===== MOBILE ===== */
@media (max-width: 860px) {
  .hero-copy h1 { font-size: 38px; }
  .page-hero h1 { font-size: 32px; }
  .stats-grid { grid-template-columns: 1fr; gap: 12px; }
  .stat.bordered { border-left: none; border-right: none; border-top: 1px solid var(--dark-border); border-bottom: 1px solid var(--dark-border); padding: 16px 0; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-links.mobile-open { display: flex; flex-direction: column; width: 100%; }
  .mobile-menu-btn { display: block; background: none; border: 1px solid var(--dark-border); color: #fff; padding: 8px 12px; border-radius: 6px; }
}
@media (min-width: 861px) {
  .mobile-menu-btn { display: none; }
}
