/* Xterior Specs — Xterior Specialists LLC
   Brand: black / white / muted mustard-gold #C59D5F */

:root {
  --black: #0a0a0a;
  --black-soft: #141414;
  --black-card: #1a1a1a;
  --white: #ffffff;
  --off-white: #f5f3ef;
  --muted: #a8a29a;
  --muted-dark: #6b6560;
  --gold: #c59d5f;
  --gold-hover: #d4b07a;
  --gold-dim: rgba(197, 157, 95, 0.15);
  --gold-line: rgba(197, 157, 95, 0.35);
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(0, 0, 0, 0.08);
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --max: 1120px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: var(--font);
  background: var(--black);
  color: var(--off-white);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gold-hover);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding-block: 0.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  flex-shrink: 0;
}

.logo-link:hover {
  color: var(--white);
}

.logo-img {
  height: 48px;
  width: auto;
  border-radius: 6px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text strong {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo-text span {
  font-size: 0.72rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.65rem;
  border-radius: 6px;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--white);
}

.main-nav a[aria-current="page"] {
  color: var(--gold);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.5rem;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
  font-family: inherit;
  line-height: 1.2;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-hover);
  color: var(--black);
  border-color: var(--gold-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold-line);
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.btn-ghost:hover {
  background: var(--gold-dim);
  color: var(--gold-hover);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  padding: 4rem 0 5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(197, 157, 95, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(197, 157, 95, 0.08), transparent 50%),
    linear-gradient(180deg, var(--black) 0%, var(--black-soft) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-dim);
}

.hero h1 {
  font-size: clamp(1.85rem, 4.5vw, 2.85rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1rem;
  max-width: 18ch;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 38ch;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-proof {
  font-size: 0.9rem;
  color: var(--muted-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-proof span::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
}

.hero-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-card h2 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.hero-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat {
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.stat strong {
  display: block;
  font-size: 1.35rem;
  color: var(--gold);
  font-weight: 800;
  line-height: 1.2;
}

.stat span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ——— Sections ——— */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--black-soft);
  border-block: 1px solid var(--border);
}

.section-light {
  background: var(--off-white);
  color: var(--black);
}

.section-light h2,
.section-light h3 {
  color: var(--black);
}

.section-light p,
.section-light li {
  color: #3d3a36;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-header .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.section-light .section-header h2 {
  color: var(--black);
}

.section-header p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-light .section-header p {
  color: var(--muted-dark);
}

/* ——— Service cards ——— */
.services-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s, transform 0.2s;
  height: 100%;
}

.service-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-3px);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 800;
}

.service-card h3 {
  font-size: 1.15rem;
  color: var(--white);
}

.service-card p {
  color: var(--muted);
  font-size: 0.92rem;
  flex-grow: 1;
}

.service-card .card-link {
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.service-card .card-link::after {
  content: "→";
  transition: transform 0.2s;
}

.service-card:hover .card-link::after {
  transform: translateX(3px);
}

/* ——— About teaser ——— */
.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 800px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.split-visual {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, var(--gold-dim) 0%, transparent 50%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 12px,
      rgba(197, 157, 95, 0.06) 12px,
      rgba(197, 157, 95, 0.06) 13px
    ),
    var(--black-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.split-visual::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.2;
  top: 15%;
  right: 18%;
}

.split-visual-inner {
  text-align: center;
  z-index: 1;
  padding: 2rem;
}

.split-visual-inner .big-mark {
  font-size: 3rem;
  color: var(--gold);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.split-visual-inner p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 22ch;
  margin: 0 auto;
}

.split-content .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.split-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.split-content p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.check-list {
  margin: 1.25rem 0 1.5rem;
  display: grid;
  gap: 0.55rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--off-white);
  font-size: 0.95rem;
}

.check-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 800;
  flex-shrink: 0;
}

/* ——— Gallery ——— */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.gallery-filter {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.gallery-filter:hover {
  border-color: var(--gold-line);
  color: var(--gold);
}

.gallery-filter.is-active {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold);
}

.gallery-section {
  margin-bottom: 2.5rem;
}

.gallery-section.is-hidden {
  display: none;
}

.gallery-section-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gold-line);
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--black-card);
  overflow: hidden;
  display: block;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}

.gallery-item:hover {
  border-color: var(--gold-line);
  transform: translateY(-2px);
  color: inherit;
}

.gallery-grid img,
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

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

.gallery-item figcaption {
  padding: 0.75rem 0.9rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}

.gallery-teaser .gallery-item {
  position: relative;
}

.sidebar-photos {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
}

.sidebar-photos img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
}

/* ——— Reviews ——— */
.reviews-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.review-stars {
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.review-card p {
  color: var(--muted);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.review-card cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 600;
}

.review-card .review-meta {
  display: block;
  font-size: 0.75rem;
  color: var(--muted-dark);
  font-weight: 400;
  margin-top: 0.15rem;
}

/* ——— FAQ ——— */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--white);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 400;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item .faq-body {
  padding: 0 1.25rem 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ——— CTA band ——— */
.cta-band {
  padding: 3.5rem 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(197, 157, 95, 0.2), transparent 65%),
    var(--black);
  border-block: 1px solid var(--gold-line);
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.65rem;
}

.cta-band p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  max-width: 42ch;
  margin-inline: auto;
}

.cta-band .hero-actions {
  justify-content: center;
  margin-bottom: 0;
}

/* ——— Page hero (inner) ——— */
.page-hero {
  padding: 3rem 0 2.5rem;
  background:
    radial-gradient(ellipse 60% 80% at 90% 0%, rgba(197, 157, 95, 0.15), transparent 50%),
    var(--black-soft);
  border-bottom: 1px solid var(--border);
}

.page-hero .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  max-width: 22ch;
}

.page-hero p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 52ch;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--muted-dark);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb span {
  margin: 0 0.4rem;
  color: var(--muted-dark);
}

/* ——— Service page content ——— */
.content-block {
  max-width: 720px;
}

.content-block h2 {
  font-size: 1.45rem;
  color: var(--white);
  margin: 2rem 0 0.75rem;
  font-weight: 800;
}

.content-block h2:first-child {
  margin-top: 0;
}

.content-block p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.content-block ul {
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.5rem;
}

.content-block ul li {
  color: var(--off-white);
  padding-left: 1.35rem;
  position: relative;
  font-size: 0.95rem;
}

.content-block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.two-col {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 800px) {
  .two-col {
    grid-template-columns: 1.4fr 0.8fr;
    align-items: start;
  }
}

.sidebar-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.sidebar-card h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.sidebar-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.sidebar-card .btn {
  margin-bottom: 0.5rem;
}

/* ——— Areas ——— */
.areas-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

.area-chip {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  text-align: center;
  font-weight: 600;
  color: var(--off-white);
  font-size: 0.92rem;
  transition: border-color 0.2s;
}

.area-chip:hover {
  border-color: var(--gold-line);
  color: var(--gold);
}

/* ——— Contact ——— */
.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

.nap-block {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.nap-block h2 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.nap-item {
  margin-bottom: 1.15rem;
}

.nap-item dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.nap-item dd {
  color: var(--off-white);
  font-size: 1rem;
}

.nap-item dd a {
  color: var(--white);
  font-weight: 600;
}

.nap-item dd a:hover {
  color: var(--gold);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin-top: 0.5rem;
}

.hours-table td {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--off-white);
  font-weight: 600;
}

.form-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.form-card h2 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.form-card > p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 0.35rem;
}

.form-group label .req {
  color: var(--gold);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:hover,
.form-group textarea:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

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

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin: 1rem 0 1.25rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

.consent input {
  margin-top: 0.2rem;
  accent-color: var(--gold);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.form-note {
  font-size: 0.8rem;
  color: var(--muted-dark);
  margin-top: 0.85rem;
}

/* ——— Footer ——— */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.footer-brand .logo-link {
  margin-bottom: 0.85rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 28ch;
  margin-bottom: 1rem;
}

.footer-col h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.85rem;
  font-weight: 700;
}

.footer-col ul {
  display: grid;
  gap: 0.45rem;
}

.footer-col a {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--muted-dark);
}

/* ——— Mobile nav ——— */
@media (max-width: 1099px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black-soft);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem 1.25rem;
    gap: 0.15rem;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 0.75rem 0.85rem;
  }

  .nav-cta {
    margin: 0.5rem 0 0;
    flex-direction: column;
    width: 100%;
  }

  .nav-cta .btn {
    width: 100%;
  }

  .logo-text {
    display: none;
  }

  .hero h1 {
    max-width: none;
  }
}

@media (min-width: 1100px) and (max-width: 1360px) {
  .logo-text {
    display: none;
  }

  .main-nav a {
    padding: 0.45rem 0.4rem;
    font-size: 0.82rem;
  }

  .nav-cta {
    gap: 0.35rem;
    margin-left: 0.25rem;
  }

  .nav-cta .btn-sm {
    padding: 0.45rem 0.7rem;
    font-size: 0.8rem;
  }
}

@media (min-width: 1100px) {
  .header-inner {
    gap: 0.5rem;
  }

  .main-nav {
    flex-wrap: nowrap;
    min-width: 0;
  }
}

/* ——— Utility ——— */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-0 {
  margin-bottom: 0;
}

.coming-soon-banner {
  background: var(--gold-dim);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--off-white);
  font-size: 0.95rem;
}

.coming-soon-banner strong {
  color: var(--gold);
}


/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--gold);
  color: var(--black);
  padding: 0.65rem 1rem;
  font-weight: 700;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}


/* Honest placeholders when a trade has no project photos yet */
.gallery-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 180px;
  padding: 1.25rem 1.5rem;
  background: var(--black-soft);
  border: 1px dashed var(--gold-line);
  border-radius: var(--radius);
  cursor: default;
}
.gallery-placeholder:hover {
  transform: none;
  box-shadow: none;
}
.gallery-placeholder .tile-label {
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 0.5rem;
  font-size: 1rem;
}
.gallery-placeholder .tile-note {
  color: var(--muted);
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  max-width: 36rem;
}
