/* =================================================================
   VG Glass — Architectural Luxury
   Warm off-white, near-black, single brass accent.
   Georgia display + system UI body. Hairline rules over borders.
   ================================================================= */

:root {
  --bg: #f7f5f2;
  --bg-cream: #efeae2;
  --bg-light: #fbfaf8;
  --bg-dark: #1a1a1a;
  --bg-dark-2: #232323;
  --ink: #111111;
  --ink-soft: #2a2a2a;
  --ink-muted: #5e5b56;
  --rule: #e5e1da;
  --rule-dark: #38332d;
  --accent: #a38659;            /* brushed brass */
  --accent-deep: #836a44;
  --accent-light: #c0a578;
  --on-dark: #f7f5f2;
  --on-dark-muted: #b8b1a5;
  --shadow-soft: 0 1px 0 rgba(26, 26, 26, 0.04);

  --display: Georgia, 'Times New Roman', serif;
  --sans: system-ui, -apple-system, 'Segoe UI', sans-serif;

  --max: 1240px;
  --pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.accent {
  color: var(--accent);
}

.accent-serif {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.01em;
}

/* ---------- TOPBAR ---------- */
.topbar {
  background: #111;
  color: var(--on-dark);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 16px;
}

.topbar-text {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--on-dark-muted);
}

.topbar-loc {
  color: var(--on-dark);
  font-weight: 500;
}

.topbar-divider {
  color: var(--rule-dark);
}

.topbar-phone {
  color: var(--accent-light);
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: 13px;
}

.topbar-phone:hover {
  color: #fff;
}

/* ---------- NAV ---------- */
.nav {
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(163, 134, 89, 0.28);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(26, 26, 26, 0.96);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: clamp(164px, 15vw, 196px);
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--on-dark-muted);
  letter-spacing: 0.01em;
  position: relative;
  padding: 4px 0;
}

.nav-links a:hover { color: var(--on-dark); }
.nav-links a.active { color: var(--accent-light); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent-light);
}

.nav-cta {
  background: var(--accent);
  color: var(--bg-dark) !important;
  padding: 11px 22px !important;
  border-radius: 2px;
  font-size: 13px !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-cta:hover {
  background: var(--on-dark) !important;
  color: var(--bg-dark) !important;
}

/* ---------- HERO ---------- */
.hero {
  background: var(--bg);
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(48px, 6vw, 80px);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

.hero-copy {
  max-width: 540px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-muted);
}

.hero-eyebrow-rule {
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0 0 24px;
  color: var(--ink);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 0 32px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  list-style: none;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hero-trust li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-num {
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.trust-num small {
  font-size: 0.6em;
  font-weight: 400;
  color: var(--ink-muted);
  margin-left: 2px;
}

.trust-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.hero-photo {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--bg-cream);
  overflow: hidden;
}

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

.hero-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(26,26,26,0.65), transparent);
}

.hero-photo-meta {
  color: var(--on-dark);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 2px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--bg-dark);
  color: var(--bg);
  border-color: var(--bg-dark);
}

.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}

.btn-ghost:hover {
  border-color: var(--ink);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--bg);
}

.btn-outline-light {
  background: transparent;
  color: var(--on-dark);
  border-color: var(--on-dark-muted);
}

.btn-outline-light:hover {
  background: var(--on-dark);
  color: var(--bg-dark);
}

/* ---------- TRUST STRIP ---------- */
.trust-strip {
  background: var(--bg-dark);
  color: var(--on-dark);
  padding: 18px 0;
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 32px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--on-dark-muted);
}

.trust-item {
  white-space: nowrap;
}

/* ---------- SECTIONS ---------- */
.section {
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(56px, 7vw, 96px);
}

.section-light { background: var(--bg); }
.section-cream { background: var(--bg-cream); }
.section-dark {
  background: var(--bg-dark);
  color: var(--on-dark);
}
.section-dark .kicker { color: var(--accent-light); }
.section-dark .section-sub { color: var(--on-dark-muted); }

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}

.kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}

.section-head h2,
.section h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.018em;
  margin: 0 0 20px;
  color: inherit;
}

.section-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 0;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.section-cta {
  margin-top: clamp(32px, 4vw, 48px);
  text-align: center;
}

/* ---------- SERVICE GRID ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 2vw, 28px);
}

.service {
  background: var(--bg-light);
  border: 1px solid var(--rule);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.service:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.service-photo-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-cream);
  overflow: hidden;
}

.service-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(26, 26, 26, 0.86);
  color: var(--on-dark);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 1px;
  font-weight: 500;
}

.service-body {
  padding: 24px 26px 28px;
}

.service-body h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 10px;
  color: var(--ink);
}

.service-body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

/* ---------- PROCESS LIST ---------- */
.section-process { background: var(--bg-cream); }

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
}

.process-list li {
  position: relative;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}

.process-n {
  position: absolute;
  top: -2px;
  left: 0;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 500;
}

.process-list h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--ink);
}

.process-list p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ---------- GALLERY STRIP (home) ---------- */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(12px, 1.5vw, 20px);
}

.gallery-tile {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-cream);
}

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

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

.gallery-zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(247,245,242,0.92);
  color: var(--ink);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  opacity: 0;
  transition: opacity 0.18s ease;
}

.gallery-tile:hover .gallery-zoom { opacity: 1; }

/* ---------- WALKTHROUGH PROOF (home) ---------- */
.proof-section {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.proof-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.proof-copy {
  max-width: 500px;
}

.proof-copy h2 {
  margin: 0 0 18px;
}

.proof-copy p {
  margin: 0 0 28px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
}

.proof-video {
  margin: 0;
  background: var(--bg-dark);
  color: var(--on-dark);
  border: 1px solid rgba(26, 26, 26, 0.12);
}

.proof-video video {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  background: #000;
}

.proof-video figcaption {
  padding: 14px 18px 16px;
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}

/* ---------- GALLERY PAGE ---------- */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-chip {
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--ink-soft);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.16s ease;
}

.filter-chip:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.filter-chip.active {
  background: var(--bg-dark);
  color: var(--bg);
  border-color: var(--bg-dark);
}

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

.gallery-grid .gallery-tile {
  aspect-ratio: 4/5;
}

.gallery-grid .gallery-tile.hidden {
  display: none;
}

/* ---------- VIDEO GRID (gallery page) ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 2.5vw, 28px);
}

.video-card {
  margin: 0;
  background: var(--bg-light);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
}

.video-card video {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: #000;
  display: block;
}

.video-card figcaption {
  padding: 18px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.video-card figcaption strong {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
}

.video-card figcaption span {
  font-size: 13px;
  letter-spacing: 0;
  color: var(--ink-muted);
}

/* ---------- QUOTES (home reviews preview) ---------- */
.quotes-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
  max-width: 920px;
  margin: 0 auto;
}

.quote {
  background: var(--bg-dark-2);
  padding: 32px 30px;
  margin: 0;
  border-left: 2px solid var(--accent);
}

.quote p {
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.5;
  margin: 0 0 18px;
  color: var(--on-dark);
  font-style: italic;
}

.quote footer {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
}

/* ---------- CTA STRIP ---------- */
.cta-strip-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}

.cta-strip h2 {
  margin: 0 0 14px;
}

.cta-strip p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.55;
}

.cta-strip-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.cta-strip-actions .btn {
  justify-content: center;
}

/* ---------- PAGE HEROES ---------- */
.page-hero {
  background: var(--bg);
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--rule);
}

.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 16px 0 18px;
  color: var(--ink);
  max-width: 760px;
}

.page-hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0;
}

/* ---------- SERVICES DEEP (services page) ---------- */
.service-deep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(32px, 4vw, 56px);
}

.service-deep h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin: 0 0 24px;
}

.glass-list,
.hardware-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.glass-list li,
.hardware-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}

.hardware-list li {
  align-items: center;
}

.hw-swatch {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid var(--rule);
}

.hw-black { background: #1a1a1a; }
.hw-chrome { background: linear-gradient(135deg, #c8cbcf, #f4f5f7 50%, #aeb0b4); }
.hw-nickel { background: linear-gradient(135deg, #8a8783, #c4c1ba 50%, #a09c95); }
.hw-brass { background: linear-gradient(135deg, #836a44, #c0a578 50%, #a38659); }

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.about-copy h2 {
  margin: 0 0 24px;
}

.about-copy p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 20px;
}

.about-copy a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: var(--bg-cream);
  padding: 32px 28px;
}

.about-stat-num {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.01em;
  line-height: 1;
}

.about-stat-num small {
  font-size: 0.55em;
  color: var(--ink-muted);
  margin-left: 2px;
}

.about-stat-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 8px;
  font-weight: 500;
}

/* ---------- ABOUT — VAN STRIP ---------- */
.about-van {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.about-van-copy h2 {
  margin: 12px 0 16px;
  font-size: clamp(28px, 3.4vw, 40px);
}

.about-van-copy p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

.about-van-photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-dark);
}

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

@media (max-width: 920px) {
  .about-van { grid-template-columns: 1fr; }
}

/* ---------- REVIEWS ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--bg-light);
  border: 1px solid var(--rule);
  padding: 32px 30px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-stars {
  color: var(--accent);
  font-size: 16px;
  letter-spacing: 2px;
}

.review-card p {
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  color: var(--ink);
  font-style: italic;
}

.review-card footer {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
}

.review-card-cta {
  background: var(--bg-dark);
  color: var(--on-dark);
  border-color: var(--bg-dark);
}

.review-card-cta h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  color: var(--on-dark);
}

.review-card-cta p {
  font-family: var(--sans);
  font-style: normal;
  font-size: 15px;
  line-height: 1.55;
  color: var(--on-dark-muted);
}

.review-card-cta .btn {
  align-self: flex-start;
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-line {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}

.contact-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}

.contact-value {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
}

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

.contact-value-text {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.5;
}

.contact-form {
  background: var(--bg-cream);
  padding: clamp(28px, 3.5vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form h2 {
  margin: 0 0 8px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg-light);
  border: 1px solid var(--rule);
  padding: 12px 14px;
  border-radius: 2px;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 96px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form button {
  align-self: flex-start;
  margin-top: 6px;
}

.form-note {
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  margin: 0;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-dark);
  color: var(--on-dark);
  padding: clamp(40px, 5vw, 64px) 0 clamp(28px, 3.5vw, 44px);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.brand-logo-footer {
  width: min(220px, 100%);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.footer-tag-sub {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  margin-top: 4px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--on-dark-muted);
}

.footer-contact a {
  color: var(--on-dark);
}

.footer-contact a:hover { color: var(--accent); }

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--on-dark-muted);
  text-align: right;
  align-items: flex-end;
}

.footer-credit a {
  color: var(--accent-light);
  border-bottom: 1px solid transparent;
}

.footer-credit a:hover { border-bottom-color: var(--accent-light); }

/* ---------- MOBILE ---------- */
@media (max-width: 920px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-photo { aspect-ratio: 4/3; max-height: 460px; }

  .cta-strip-inner { grid-template-columns: 1fr; }
  .cta-strip-actions { align-items: flex-start; }

  .proof-split { grid-template-columns: 1fr; }

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

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

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-meta { text-align: left; align-items: flex-start; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }

  .topbar-inner {
    flex-direction: column;
    gap: 8px;
    padding-bottom: 12px;
  }
  .topbar-text { justify-content: center; text-align: center; font-size: 11px; }
  .topbar-divider { display: none; }

  .nav-inner { gap: 12px; flex-wrap: wrap; }
  .nav-links { gap: 16px; flex-wrap: wrap; justify-content: flex-end; }
  .nav-links a:not(.nav-cta) { font-size: 13px; }
  .brand-logo { width: 156px; }

  .hero { padding-top: 36px; padding-bottom: 36px; }
  .hero-trust {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .trust-num { font-size: 21px; }
  .trust-label {
    font-size: 10px;
    letter-spacing: 0.06em;
  }
  .hero-cta .btn { flex: 1; justify-content: center; min-width: 0; }

  .section-head h2,
  .section h2 { font-size: 30px; }

  .page-hero h1 { font-size: 36px; }

  .trust-strip-inner { font-size: 11px; gap: 8px 16px; justify-content: center; text-align: center; }

  .quote p { font-size: 17px; }

  .about-stats { grid-template-columns: 1fr; gap: 18px; padding: 24px 22px; }

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

  .gallery-strip,
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

  .service-grid { grid-template-columns: 1fr; }
  .service-photo-wrap { aspect-ratio: 16/10; }
}

@media (max-width: 540px) {
  .hero h1 { font-size: 38px; }
  .nav-cta { padding: 10px 16px !important; font-size: 12px !important; }
  .nav-links { gap: 12px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-links a.nav-cta { display: inline-flex; }
}
