/* ═══════════════════════════════════════════════════════════
   Reform Construction — Consolidated Stylesheet
   ═══════════════════════════════════════════════════════════ */

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

/* ─── VARIABLES ─────────────────────────────────────────── */
:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --steel: #545454;
  --mid: #696969;
  --light: #c8c0b4;
  --cream: #e8e0d4;
  --white: #f5f0eb;
  --gold: #56c3de;
  --gold2: #45adc7;
  --rust: #a84b2a;
}

/* ─── BASE ──────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Barlow", sans-serif;
  background: var(--black);
  color: var(--cream);
  overflow-x: hidden;
}

/* ─── NAV ───────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  height: 72px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 147, 42, 0.15);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.12em;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span {
  color: var(--gold);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}
nav ul a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light);
  text-decoration: none;
  transition: color 0.2s;
}
nav ul a:hover {
  color: var(--gold2);
}
nav ul a.nav-active {
  color: var(--gold);
}

.nav-cta {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black) !important;
  background: var(--gold);
  padding: 0.6rem 1.4rem;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
}
.nav-cta:hover {
  background: var(--gold2);
  transform: translateY(-1px);
}

/* ─── HAMBURGER TOGGLE ──────────────────────────────────── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  margin: 5px 0;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn-primary {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 1rem 2.4rem;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
}

.btn-outline {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(201, 147, 42, 0.5);
  color: var(--cream);
  padding: 1rem 2.4rem;
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s,
    transform 0.15s;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-dark {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--gold);
  padding: 1rem 2.4rem;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}
.btn-dark:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
}

/* ─── SECTION BASE ──────────────────────────────────────── */
section {
  padding: 7rem 6rem;
}

.section-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.section-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
  display: block;
}

.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

/* ─── HOME HERO ─────────────────────────────────────────── */
#home {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(10, 10, 10, 0.2) 0%,
      rgba(10, 10, 10, 0.7) 60%,
      rgba(10, 10, 10, 1) 100%
    ),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1800&q=80")
      center/cover no-repeat;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 80px,
    rgba(201, 147, 42, 0.03) 80px,
    rgba(201, 147, 42, 0.03) 81px
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 6rem 2rem;
  max-width: 900px;
  animation: heroFadeUp 1s ease both;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-label::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(5rem, 11vw, 10rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-title span {
  color: var(--gold);
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--light);
  max-width: 480px;
  margin-bottom: 2.5rem;
}

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

/* ─── PAGE HERO (contact / gallery) ─────────────────────── */
.page-hero {
  padding-top: 72px;
  position: relative;
  height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(10, 10, 10, 0.3) 0%,
      rgba(10, 10, 10, 0.75) 70%,
      rgba(10, 10, 10, 1) 100%
    ),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80")
      center/cover no-repeat;
}

.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 80px,
    rgba(201, 147, 42, 0.03) 80px,
    rgba(201, 147, 42, 0.03) 81px
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 6rem 3.5rem;
  animation: fadeUp 0.8s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
}
.page-label::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.page-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
  color: var(--white);
}
.page-title span {
  color: var(--gold);
}

/* ─── SERVICES ──────────────────────────────────────────── */
#services {
  background: var(--dark);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 5rem;
}
.services-header p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--light);
  align-self: end;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 147, 42, 0.1);
}

.service-card {
  background: var(--dark2);
  padding: 2.8rem 2.4rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}
.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.service-card:hover {
  background: #1e1e1e;
}
.service-card:hover::before {
  width: 100%;
}

.service-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  color: rgba(201, 147, 42, 0.12);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}
.service-card:hover .service-num {
  color: rgba(201, 147, 42, 0.25);
}

.service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.2rem;
  color: var(--gold);
}

.service-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.service-desc {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--mid);
  transition: color 0.3s;
}
.service-card:hover .service-desc {
  color: var(--light);
}

/* ─── ABOUT ─────────────────────────────────────────────── */
#about {
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-img-stack {
  position: relative;
  height: 560px;
}
.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 85%;
  object-fit: cover;
  filter: grayscale(20%);
}
.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 50%;
  object-fit: cover;
  border: 4px solid var(--black);
  filter: grayscale(10%);
}

.about-text p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--light);
  margin-bottom: 1.2rem;
}

.about-mission {
  margin: 2rem 0;
  padding: 1.8rem 2rem;
  border-left: 3px solid var(--gold);
  background: rgba(201, 147, 42, 0.05);
}
.about-mission p {
  font-style: italic;
  color: var(--cream);
  font-size: 1.05rem;
  margin: 0;
}

.about-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1rem;
  margin-top: 1.5rem;
}
.about-checklist li {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.about-checklist li::before {
  content: "";
  width: 18px;
  height: 18px;
  background: var(--gold);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  flex-shrink: 0;
}

/* ─── GALLERY (shared) ──────────────────────────────────── */
#gallery {
  background: var(--dark);
}

.gallery-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  margin-bottom: 3.5rem;
}
.gallery-header p {
  font-size: 1rem;
  color: var(--light);
  font-weight: 300;
  line-height: 1.7;
}

.gallery-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-btn {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.55rem 1.3rem;
  border: 1px solid rgba(201, 147, 42, 0.25);
  background: transparent;
  color: var(--mid);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 147, 42, 0.08);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  transition: opacity 0.4s;
}
.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}
.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: 1/2;
}
.gallery-item.hidden {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.6s ease,
    filter 0.4s;
  filter: grayscale(20%) brightness(0.82);
}
.gallery-item:hover img {
  transform: scale(1.07);
  filter: grayscale(0%) brightness(1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.75) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── GALLERY PAGE ──────────────────────────────────────── */
.gallery-main {
  padding: 4rem 6rem 7rem;
  background: var(--black);
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(201, 147, 42, 0.1);
}

.gallery-count {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
}
.gallery-count span {
  color: var(--gold);
}

.zoom-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 34px;
  height: 34px;
  background: rgba(201, 147, 42, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .zoom-icon {
  opacity: 1;
}
.zoom-icon svg {
  width: 16px;
  height: 16px;
  color: var(--black);
}

/* ─── LIGHTBOX ──────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.96);
  z-index: 999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox.open {
  display: flex;
}
.lightbox-img-wrap {
  position: relative;
  max-width: 88vw;
  max-height: 82vh;
}
.lightbox img {
  max-width: 88vw;
  max-height: 82vh;
  object-fit: contain;
  display: block;
}
.lightbox-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 2rem;
}
.lightbox-caption {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.lightbox-close {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--light);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.lightbox-close:hover {
  color: var(--gold);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(201, 147, 42, 0.15);
  border: 1px solid rgba(201, 147, 42, 0.3);
  color: var(--gold);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.4rem;
  transition: background 0.2s;
}
.lightbox-nav:hover {
  background: rgba(201, 147, 42, 0.3);
}
.lightbox-prev {
  left: -70px;
}
.lightbox-next {
  right: -70px;
}

/* ─── CTA STRIP ─────────────────────────────────────────── */
.cta-strip {
  background: var(--gold);
  padding: 3.5rem 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-strip h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.8rem;
  color: var(--black);
  letter-spacing: 0.04em;
  line-height: 1;
}
.cta-strip p {
  color: rgba(10, 10, 10, 0.65);
  font-size: 0.95rem;
  font-weight: 300;
  margin-top: 0.4rem;
}

/* ─── CONTACT SECTION (index) ───────────────────────────── */
#contact {
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6rem;
  align-items: start;
}

.contact-info {
  padding-top: 0.5rem;
}
.contact-info > p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--light);
  margin-bottom: 3rem;
}

.contact-form-wrap {
  background: var(--dark2);
  padding: 3.5rem;
  border-top: 3px solid var(--gold);
}

/* ─── CONTACT PAGE ──────────────────────────────────────── */
.contact-body {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0;
  min-height: 600px;
}

.contact-left {
  background: var(--dark2);
  padding: 5rem 4rem;
  border-right: 1px solid rgba(201, 147, 42, 0.08);
}
.contact-left .section-title {
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.contact-intro {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--light);
  margin-bottom: 3rem;
}

.contact-right {
  background: var(--black);
  padding: 5rem;
}

/* ─── OWNER CARDS ───────────────────────────────────────── */
.owners {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.owner-card {
  padding: 1.8rem 2rem;
  border: 1px solid rgba(201, 147, 42, 0.15);
  background: rgba(201, 147, 42, 0.03);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.owner-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--gold);
  transition: width 0.3s;
}
.owner-card:hover {
  border-color: rgba(201, 147, 42, 0.4);
}
.owner-card:hover::before {
  width: 3px;
}

.owner-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--white);
}
.owner-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.owner-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.owner-contact a {
  font-size: 0.92rem;
  color: var(--light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: color 0.2s;
}
.owner-contact a:hover {
  color: var(--gold2);
}
.owner-contact a svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ─── TRUST BADGES ──────────────────────────────────────── */
.trust-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
}
.trust-item::before {
  content: "";
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: var(--gold);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

/* ─── FORM ──────────────────────────────────────────────── */
.form-header {
  margin-bottom: 2.5rem;
}
.form-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.8rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.form-subtitle {
  font-size: 0.88rem;
  color: var(--mid);
  font-weight: 300;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.4rem;
}
.form-group.full {
  grid-column: span 2;
}

.form-group label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.55rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 147, 42, 0.18);
  border-bottom: 2px solid rgba(201, 147, 42, 0.25);
  color: var(--cream);
  padding: 0.95rem 1.1rem;
  font-family: "Barlow", sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
  resize: vertical;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  border-bottom-color: var(--gold2);
  background: rgba(201, 147, 42, 0.04);
}
.form-group select option {
  background: var(--dark2);
}
.form-group textarea {
  min-height: 140px;
}

/* radio group */
.radio-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.55rem;
  display: block;
}
.radio-group {
  display: flex;
  gap: 0;
  margin-bottom: 1.4rem;
}
.radio-option {
  flex: 1;
}
.radio-option input[type="radio"] {
  display: none;
}
.radio-option label {
  display: block;
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.85rem;
  border: 1px solid rgba(201, 147, 42, 0.2);
  color: var(--mid);
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 0;
}
.radio-option input[type="radio"]:checked + label {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.radio-option:not(:last-child) label {
  border-right: none;
}

.form-submit {
  width: 100%;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 1.2rem;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.form-submit:hover {
  background: var(--gold2);
  transform: translateY(-2px);
}
.form-submit svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
}
.form-submit:hover svg {
  transform: translateX(4px);
}

.form-success {
  display: none;
  padding: 3rem 2rem;
  text-align: center;
}
.form-success .check-icon {
  width: 64px;
  height: 64px;
  background: rgba(201, 147, 42, 0.15);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.form-success .check-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}
.form-success h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.form-success p {
  font-size: 0.95rem;
  color: var(--light);
  font-weight: 300;
  line-height: 1.7;
}

/* ─── SERVICE AREA / MAP ────────────────────────────────── */
.service-area {
  background: var(--dark);
  padding: 5rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.service-area-text .section-label {
  margin-bottom: 0.8rem;
}
.service-area-text .section-title {
  margin-bottom: 1.2rem;
}
.service-area-text p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--light);
  margin-bottom: 1rem;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.area-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(201, 147, 42, 0.25);
  color: var(--mid);
  transition: all 0.2s;
}
.area-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.map-placeholder {
  position: relative;
  height: 320px;
  background: var(--dark2);
  border: 1px solid rgba(201, 147, 42, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  overflow: hidden;
}
.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(201, 147, 42, 0.06) 0%,
    transparent 70%
  );
}

.map-pin {
  color: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-6px);
    opacity: 0.7;
  }
}
.map-pin svg {
  width: 48px;
  height: 48px;
}
.map-text {
  text-align: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: var(--light);
}
.map-sub {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
}

/* ─── DIVIDER ───────────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 6rem;
  background: var(--black);
}
.divider-line {
  flex: 1;
  height: 1px;
  background: rgba(201, 147, 42, 0.1);
}
.divider-icon {
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: rgba(201, 147, 42, 0.3);
}

/* ─── FOOTER ────────────────────────────────────────────── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(201, 147, 42, 0.12);
  padding: 3rem 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: var(--white);
}
.footer-logo span {
  color: var(--gold);
}
.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.footer-links a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--steel);
  font-weight: 300;
}

/* ─── FADE-IN ON SCROLL ─────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── TEASER PANELS (index) ─────────────────────────────── */
.teaser-section {
  background: var(--dark);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.teaser-panel {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  cursor: pointer;
}
.teaser-panel-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition:
    transform 0.6s,
    filter 0.4s;
}
.teaser-panel-bg.gallery-bg {
  filter: grayscale(30%) brightness(0.45);
}
.teaser-panel-bg.contact-bg {
  filter: grayscale(30%) brightness(0.35);
}
.teaser-panel:hover .teaser-panel-bg.gallery-bg {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(0.55);
}
.teaser-panel:hover .teaser-panel-bg.contact-bg {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(0.45);
}
.teaser-panel-content {
  position: relative;
  z-index: 2;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: 420px;
}
.teaser-heading {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.4rem;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 1rem;
}
.teaser-panel-content .section-label {
  margin-bottom: 0.8rem;
}
.teaser-panel-content p {
  color: var(--light);
  font-weight: 300;
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
  max-width: 340px;
}

/* ─── RESPONSIVE ────────────────────────────────────────── */

/* ── Tablet / small desktop ── */
@media (max-width: 1100px) {
  /* nav */
  nav {
    padding: 0 2rem;
  }
  .nav-toggle {
    display: block;
  }
  nav ul {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1rem 2rem 2rem;
    gap: 0;
    border-bottom: 1px solid rgba(201, 147, 42, 0.15);
    z-index: 99;
  }
  nav ul.open {
    display: flex;
  }
  nav ul li a {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(201, 147, 42, 0.08);
    font-size: 1rem;
  }
  .nav-cta {
    display: none;
  }

  /* sections */
  section {
    padding: 5rem 2.5rem;
  }

  /* hero */
  #home {
    min-height: 600px;
  }
  .hero-content {
    padding: 0 2.5rem 5rem;
  }
  .hero-stats {
    position: static;
    margin: 0 2.5rem 2rem;
    flex-wrap: wrap;
  }

  /* page hero */
  .page-hero-content {
    padding: 0 2.5rem 3rem;
  }

  /* services */
  .services-header {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* about */
  #about {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-img-stack {
    height: 400px;
  }

  /* gallery */
  .gallery-header {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item.wide {
    grid-column: span 2;
    aspect-ratio: 2/1;
  }
  .gallery-item.tall {
    grid-row: span 1;
    aspect-ratio: 1;
  }
  .gallery-main {
    padding: 3rem 2.5rem 5rem;
  }

  /* lightbox */
  .lightbox-prev {
    left: 0.5rem;
  }
  .lightbox-next {
    right: 0.5rem;
  }

  /* contact (index) */
  #contact {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-form-wrap {
    padding: 2.5rem;
  }

  /* contact page */
  .contact-body {
    grid-template-columns: 1fr;
  }
  .contact-left {
    padding: 4rem 2.5rem;
  }
  .contact-right {
    padding: 4rem 2.5rem;
  }

  /* service area */
  .service-area {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 2.5rem;
  }

  /* form */
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-group.full {
    grid-column: span 1;
  }

  /* teaser */
  .teaser-section {
    grid-template-columns: 1fr;
  }

  /* cta strip */
  .cta-strip {
    padding: 3rem 2.5rem;
    flex-direction: column;
    text-align: center;
  }

  /* footer */
  footer {
    padding: 2rem 2.5rem;
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }

  /* divider */
  .divider {
    padding: 0 2.5rem;
  }
}

/* ── Mobile ── */
@media (max-width: 650px) {
  section {
    padding: 3.5rem 1.5rem;
  }

  /* hero */
  #home {
    min-height: 0;
  }
  .hero-content {
    padding: 0 1.5rem 3rem;
  }
  .hero-title {
    font-size: 4.5rem;
  }
  .hero-sub {
    font-size: 1rem;
  }
  .hero-btns {
    flex-direction: column;
    gap: 0.8rem;
  }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline {
    text-align: center;
  }
  .hero-stats {
    margin: 0 1.5rem 1.5rem;
    flex-direction: column;
  }
  .stat {
    padding: 1rem 1.5rem;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-right: none;
    border-bottom: 1px solid rgba(201, 147, 42, 0.1);
  }
  .stat:last-child {
    border-bottom: none;
  }
  .stat-num {
    font-size: 2rem;
    min-width: 70px;
  }

  /* page hero */
  .page-hero {
    height: 280px;
  }
  .page-hero-content {
    padding: 0 1.5rem 2.5rem;
  }

  /* section titles */
  .section-title {
    font-size: 2.8rem;
  }

  /* services */
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services-header {
    margin-bottom: 3rem;
  }

  /* about */
  .about-img-stack {
    height: 300px;
  }
  .about-img-main {
    width: 75%;
    height: 80%;
  }
  .about-img-accent {
    width: 50%;
    height: 45%;
  }
  .about-checklist {
    grid-template-columns: 1fr;
  }

  /* gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item.wide {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }
  .gallery-main {
    padding: 2rem 1.5rem 4rem;
  }
  .gallery-controls {
    flex-direction: column;
    align-items: flex-start;
  }

  /* lightbox */
  .lightbox-img-wrap {
    max-width: 96vw;
  }
  .lightbox img {
    max-width: 96vw;
  }
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  .lightbox-prev {
    left: 0.25rem;
  }
  .lightbox-next {
    right: 0.25rem;
  }
  .lightbox-bar {
    padding: 0.8rem 1rem;
  }

  /* teaser */
  .teaser-panel {
    min-height: 340px;
  }
  .teaser-panel-content {
    padding: 2.5rem 1.5rem;
    min-height: 340px;
  }
  .teaser-heading {
    font-size: 2.8rem;
  }

  /* cta strip */
  .cta-strip {
    padding: 2.5rem 1.5rem;
  }
  .cta-strip h2 {
    font-size: 2.2rem;
  }

  /* contact page */
  .contact-left {
    padding: 3rem 1.5rem;
  }
  .contact-right {
    padding: 3rem 1.5rem;
  }
  .trust-items {
    grid-template-columns: 1fr;
  }
  .form-title {
    font-size: 2.2rem;
  }
  .radio-group {
    flex-direction: column;
  }
  .radio-option:not(:last-child) label {
    border-right: 1px solid rgba(201, 147, 42, 0.2);
    border-bottom: none;
  }

  /* service area */
  .service-area {
    padding: 3rem 1.5rem;
  }
  .map-placeholder {
    height: 240px;
  }

  /* footer */
  footer {
    padding: 2rem 1.5rem;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  .footer-copy {
    font-size: 0.72rem;
  }

  /* divider */
  .divider {
    padding: 0 1.5rem;
  }

  /* buttons */
  .btn-primary,
  .btn-outline,
  .btn-dark {
    padding: 0.9rem 1.8rem;
    font-size: 0.8rem;
  }
}

/* ─── HERO TAG (veteran-owned chip) ─────────────────────── */
.hero-tag {
  display: inline-block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(86, 195, 222, 0.45);
  background: rgba(86, 195, 222, 0.08);
  padding: 0.45rem 1rem;
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

/* ─── FACILITY MAINTENANCE SECTION ──────────────────────── */
.facility-section {
  padding: 6rem 4rem;
  background: linear-gradient(180deg, var(--dark) 0%, var(--black) 100%);
  border-top: 1px solid rgba(86, 195, 222, 0.12);
  border-bottom: 1px solid rgba(86, 195, 222, 0.12);
}

.facility-header {
  max-width: 900px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.facility-header .section-title {
  margin: 0.5rem 0 1.5rem;
}

.facility-lede {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--cream);
  opacity: 0.9;
}

.facility-models {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.facility-model {
  background: var(--dark2);
  border: 1px solid rgba(86, 195, 222, 0.18);
  border-left: 3px solid var(--gold);
  padding: 1.75rem 1.5rem;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.facility-model:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.facility-model-label {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.facility-model p {
  color: var(--cream);
  opacity: 0.85;
  font-size: 0.95rem;
  line-height: 1.5;
}

.facility-why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.facility-why-card {
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem 1.75rem;
}

.facility-why-card h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.facility-why-card p {
  color: var(--cream);
  opacity: 0.8;
  font-size: 0.95rem;
  line-height: 1.6;
}

.facility-cta {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--dark2);
  border-left: 4px solid var(--gold);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.facility-cta h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.facility-cta p {
  color: var(--cream);
  opacity: 0.85;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .facility-section {
    padding: 4rem 1.5rem;
  }
  .facility-models,
  .facility-why {
    grid-template-columns: 1fr;
  }
  .facility-cta {
    padding: 1.75rem;
  }
}

/* ─── PAGE HERO (residential, commercial, gallery, team) ─── */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8rem 4rem 5rem;
  background-size: cover;
  background-position: center;
  background-color: var(--black);
  color: var(--white);
}
.page-hero-content { max-width: 700px; }
.page-hero h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin: 1rem 0 1.5rem;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--cream);
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 560px;
}
.team-hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--dark2) 50%, var(--black) 100%);
  border-bottom: 1px solid rgba(86,195,222,0.15);
}

/* ─── HOMEPAGE TWO-PATH SPLIT ─── */
.paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(86,195,222,0.1);
  border-bottom: 1px solid rgba(86,195,222,0.1);
}
.path-card {
  position: relative;
  min-height: 480px;
  padding: 4rem 3rem;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  transition: transform 0.3s ease;
  overflow: hidden;
}
.path-card:hover { transform: scale(1.01); }
.path-card .path-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 480px;
}
.path-card h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  letter-spacing: 0.03em;
  line-height: 1;
  margin: 0.5rem 0 1rem;
}
.path-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--cream);
  margin-bottom: 1.5rem;
  opacity: 0.95;
}
@media (max-width: 900px) {
  .paths { grid-template-columns: 1fr; }
  .path-card { min-height: 380px; padding: 3rem 1.5rem; }
}

/* ─── WORK STRIP ─── */
.work-strip { padding: 6rem 4rem; }
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
}
.work-tile {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark2);
}
.work-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.3s ease;
  filter: saturate(0.95);
}
.work-tile:hover img { transform: scale(1.06); filter: saturate(1.1) brightness(1.05); }
@media (max-width: 1000px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .work-strip { padding: 4rem 1.5rem; } }

/* ─── BOTTOM CTA ─── */
.bottom-cta {
  background: linear-gradient(135deg, var(--dark2) 0%, var(--black) 100%);
  padding: 5rem 2rem;
  border-top: 1px solid rgba(86,195,222,0.15);
}
.bottom-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.bottom-cta-inner h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.bottom-cta-inner p {
  color: var(--cream);
  opacity: 0.85;
  font-size: 1rem;
  margin-bottom: 2rem;
}
.bottom-cta-inner .btn-primary { display: inline-flex; }

/* ─── TEAM SECTION ─── */
.team-section { padding: 6rem 4rem; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.team-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 3px solid var(--gold);
  display: grid;
  grid-template-columns: 280px 1fr;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.team-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.team-photo {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-photo-placeholder {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(86,195,222,0.15);
}
.placeholder-content { text-align: center; padding: 2rem; }
.placeholder-initial {
  font-family: "Bebas Neue", sans-serif;
  font-size: 6rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.6;
}
.placeholder-text {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
}
.team-info { padding: 2rem; }
.team-info h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}
.team-role {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.team-info p { color: var(--cream); opacity: 0.85; line-height: 1.6; font-size: 0.95rem; }
.team-contact { margin-top: 1rem; }
.team-contact a {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.9rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.team-contact a:hover { border-color: var(--gold); }

@media (max-width: 1000px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: 220px 1fr; }
}
@media (max-width: 600px) {
  .team-section { padding: 4rem 1.5rem; }
  .team-card { grid-template-columns: 1fr; }
  .team-photo { height: 280px; }
  .team-photo-placeholder { border-right: none; border-bottom: 1px solid rgba(86,195,222,0.15); }
}

/* ─── FOOTER TAG ─── */
.footer-tag {
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0.5rem 0 1.5rem;
}

/* ─── PAGE-HERO mobile ─── */
@media (max-width: 700px) {
  .page-hero { padding: 6rem 1.5rem 3rem; min-height: 50vh; }
}

/* Picture element passthrough — let inner img inherit parent sizing */
.gallery-item picture,
.work-tile picture,
.team-photo picture,
.recent-work-item picture {
  display: block;
  width: 100%;
  height: 100%;
}
/* For absolutely-positioned images (.about-img-main etc), the class is on
   the img itself; wrap picture so it doesn't break absolute positioning. */
.about-img-main,
.about-img-accent {
  /* These classes are on the inner <img>, but their picture wrapper needs
     to not interfere. Reset picture display in this context. */
}
picture:has(> .about-img-main),
picture:has(> .about-img-accent) {
  display: contents;
}
