/* ============================================================
   6L Power Washing — design tokens
   ============================================================ */
:root {
  --ink: #0b1416;
  --ink-2: #121d20;
  --ink-3: #1a2629;
  --paper: #faf7f2;
  --paper-soft: #f1ece2;
  --paper-line: #e2dbcb;
  --muted: #6b6259;
  --muted-on-dark: #a9b3ae;

  --accent: #0f6e66;
  --accent-2: #0b5750;
  --accent-bright: #5fc9ba;
  --accent-ink: #0c2e2b;

  --brass: #b08a4e;
  --brass-soft: #d9bd8c;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 10px;
  --radius-sm: 6px;
  --shadow-soft: 0 10px 28px -18px rgba(10, 16, 18, 0.35);
  --shadow-lift: 0 24px 48px -20px rgba(10, 16, 18, 0.4);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* Unify mismatched jobsite photography with a single quiet color grade */
.ba-slider-after,
.ba-slider-before,
.ba-half-full img,
.about-media img {
  filter: saturate(0.88) contrast(1.05) brightness(0.98) sepia(0.05);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.05;
}

p { margin: 0; }

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

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  background: var(--brass);
  margin-bottom: 16px;
}
.eyebrow-light { color: var(--accent-bright); }
.eyebrow-light::before { background: var(--brass-soft); }

.services .eyebrow::before,
.gallery .eyebrow::before,
.why-us .eyebrow::before,
.contact .eyebrow::before {
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  color: var(--ink);
  margin-bottom: 8px;
}
.section-title-light { color: var(--paper); }

.section-sub {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 42ch;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}
.section-sub + * { margin-top: 46px; }

/* ============================================================
   Scroll progress bar
   ============================================================ */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--brass);
  z-index: 999;
  transition: width 0.1s linear;
}

/* ============================================================
   Header / nav
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 26px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11, 20, 22, 0.94);
  backdrop-filter: blur(10px);
  padding: 16px 0;
  border-bottom-color: rgba(176, 138, 78, 0.25);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  color: var(--paper);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.brand-mark {
  background: var(--paper);
  border: 1px solid rgba(250,247,242,0.5);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 4px;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-mark-sm { width: 36px; height: 36px; padding: 3px; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-desktop a {
  color: var(--paper);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.8;
  position: relative;
  transition: opacity 0.25s;
}
.nav-desktop a:not(.nav-cta):after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0%;
  height: 1px;
  background: var(--brass-soft);
  transition: width 0.3s var(--ease);
}
.nav-desktop a:not(.nav-cta):hover { opacity: 1; }
.nav-desktop a:not(.nav-cta):hover:after { width: 100%; }

.nav-cta {
  background: transparent;
  color: var(--paper) !important;
  border: 1px solid rgba(250, 247, 242, 0.45);
  padding: 10px 22px;
  border-radius: 3px;
  font-weight: 500 !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  opacity: 1 !important;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.nav-cta:hover { border-color: var(--accent-bright); background: rgba(95, 201, 186, 0.1); color: var(--accent-bright) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 1.5px;
  background: var(--paper);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 2px;
  background: rgba(11, 20, 22, 0.98);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.nav-mobile.open { max-height: 400px; }
.nav-mobile a {
  color: var(--paper);
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-weight: 500;
  font-family: var(--font-body);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--paper);
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-2); border-color: var(--accent-2); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { border-color: var(--brass-soft); color: var(--brass-soft); }
.btn-icon { width: 16px; height: 16px; fill: currentColor; }
.btn-block { width: 100%; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  padding: 152px 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.hero-glow-1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: -220px; right: -160px;
  opacity: 0.3;
}
.hero-glow-2 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, var(--brass) 0%, transparent 70%);
  bottom: -200px; left: -140px;
  opacity: 0.16;
}
.hero-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-text { min-width: 0; }
.hero-eyebrow {
  color: var(--brass-soft);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.15s forwards;
}
.drip {
  width: 7px; height: 7px;
  background: var(--accent-bright);
  border-radius: 50% 50% 50% 0;
  transform: rotate(45deg);
  box-shadow: 0 0 0 4px rgba(95,201,186,0.2);
}
.hero-title {
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  color: var(--paper);
  font-weight: 400;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line span,
.hero-title .line {
  opacity: 0;
  transform: translateY(100%);
  animation: fadeUp 0.9s var(--ease) forwards;
}
.hero-title .line:nth-child(1) { animation-delay: 0.3s; font-weight: 500; }
.hero-title .line-accent {
  color: var(--brass-soft);
  font-style: italic;
  font-weight: 400;
  animation-delay: 0.45s !important;
}
.hero-tagline {
  color: rgba(250,247,242,0.82);
  font-size: clamp(1.02rem, 1.8vw, 1.28rem);
  max-width: 38ch;
  margin: 26px 0 42px;
  font-weight: 300;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.6s forwards;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.75s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.scroll-cue {
  position: relative;
  z-index: 1;
  margin-top: 60px;
  width: 24px;
  height: 38px;
  border: 1px solid rgba(250,247,242,0.4);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

/* ============================================================
   Hero visual — before/after slider centerpiece
   ============================================================ */
.hero-visual {
  min-width: 0;
}
.hero-visual-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-soft);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.5s forwards;
}
.hero-visual-label::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--accent-bright);
  border-radius: 50% 50% 50% 0;
  transform: rotate(45deg);
  box-shadow: 0 0 0 4px rgba(95,201,186,0.2);
  flex-shrink: 0;
}
.ba-slider-hero {
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.65s forwards;
}
.ba-slider-hero .ba-slider-frame {
  aspect-ratio: 4 / 3.15;
  border: 1px solid rgba(217, 189, 140, 0.3);
  box-shadow: 0 34px 64px -28px rgba(0,0,0,0.6);
}
.ba-label-dark {
  color: var(--paper);
  margin-top: 18px;
}
.scroll-cue span {
  width: 3px; height: 7px;
  background: var(--brass-soft);
  border-radius: 999px;
  animation: scrollCue 1.8s ease-in-out infinite;
}
@keyframes scrollCue {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(11px); opacity: 0; }
  100% { opacity: 0; }
}

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Services
   ============================================================ */
.services {
  padding: 140px 0 110px;
  background: var(--paper);
  text-align: center;
}
.services .eyebrow, .services .section-title { text-align: center; }
.services .section-title { margin-bottom: 60px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--paper-line);
  border-left: 1px solid var(--paper-line);
}
.service-card {
  padding: 44px 18px 38px;
  border-right: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
  transition: background 0.35s var(--ease);
}
.service-card:hover { background: var(--paper-soft); }
.service-icon {
  width: 54px; height: 54px;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 1px solid var(--paper-line);
  display: grid;
  place-items: center;
  color: var(--accent);
  transition: border-color 0.35s var(--ease), color 0.35s var(--ease);
}
.service-card:hover .service-icon { border-color: var(--accent); }
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  letter-spacing: 0.01em;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.service-card h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--brass);
  transition: width 0.35s var(--ease), left 0.35s var(--ease);
}
.service-card:hover h3::after { width: 100%; left: 0; }

/* ============================================================
   Gallery / Before-After
   ============================================================ */
.gallery {
  padding: 130px 0;
  background: var(--ink);
  position: relative;
}
.gallery .section-title,
.gallery .eyebrow,
.gallery .section-sub { text-align: center; }
.gallery .section-inner { text-align: center; }
.gallery .section-sub { margin-left: auto; margin-right: auto; color: var(--muted-on-dark); }

/* Flagship interactive before/after sliders */
.sliders-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 30px;
  text-align: left;
}
.sliders-row-single {
  grid-template-columns: minmax(0, 560px);
  justify-content: center;
}
.ba-slider-frame {
  position: relative;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(250,247,242,0.1);
  box-shadow: var(--shadow-lift);
  cursor: ew-resize;
  touch-action: pan-y;
  --pos: 50%;
}
.ba-slider-after,
.ba-slider-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}
.ba-slider-before {
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}
.ba-slider-frame.is-hinting .ba-slider-before,
.ba-slider-frame.is-hinting .ba-slider-handle {
  transition: left 0.9s var(--ease), clip-path 0.9s var(--ease);
}
.ba-slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 0;
  z-index: 2;
  pointer-events: none;
}
.ba-slider-handle::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: -1px;
  width: 2px;
  background: var(--paper);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
}
.ba-slider-grip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
}
.ba-slider-grip svg { width: 20px; height: 20px; }
.ba-slider-frame:hover .ba-slider-grip { background: var(--brass-soft); }

.ba-slider .ba-tag {
  z-index: 3;
  top: 14px;
}
.ba-slider .ba-tag-before { left: 14px; }
.ba-slider .ba-tag-after { right: 14px; }

.ba-slider-hint {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: rgba(11,20,22,0.7);
  color: var(--paper);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.ba-slider-frame.is-interacted .ba-slider-hint { opacity: 0; }

.ba-slider-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}
.ba-slider-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 100%;
  height: 100%;
}
.ba-slider .ba-label { padding-left: 2px; padding-right: 2px; color: var(--paper); }

.ba-card {
  background: var(--ink-2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(250,247,242,0.08);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.ba-card:hover { transform: translateY(-5px); border-color: rgba(176,138,78,0.4); }

.ba-images-single { aspect-ratio: 5 / 4; }

.ba-half-full {
  position: relative;
  margin: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.ba-half-full img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.ba-card:hover .ba-half-full img { transform: scale(1.05); }

.ba-tag {
  position: absolute;
  top: 12px;
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  color: var(--paper);
}
.ba-tag-before { left: 12px; background: rgba(11,20,22,0.8); }
.ba-tag-after { right: 12px; background: var(--accent-2); }
.ba-tag-mid { left: 12px; background: var(--brass); color: var(--ink); }

.ba-label {
  padding: 18px 20px 20px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--paper);
  font-size: 1.05rem;
}
.ba-label em {
  font-style: normal;
  font-family: var(--font-body);
  color: var(--muted-on-dark);
  font-weight: 400;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  display: block;
  margin-top: 4px;
}

/* ============================================================
   Why choose us — editorial numbered list
   ============================================================ */
.why-us {
  padding: 130px 0;
  background: var(--paper-soft);
}
.why-us .eyebrow, .why-us .section-title { text-align: center; }
.why-us .section-inner { text-align: center; }
.why-us .section-title { margin-bottom: 64px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 60px;
  text-align: left;
  counter-reset: whynum;
}
.why-card {
  counter-increment: whynum;
  display: flex;
  align-items: baseline;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--paper-line);
  transition: padding-left 0.35s var(--ease);
}
.why-card:hover { padding-left: 8px; }
.why-card::before {
  content: counter(whynum, decimal-leading-zero);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--brass);
  flex-shrink: 0;
  width: 42px;
}
.why-card .why-icon { display: none; }
.why-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0;
  display: inline;
}
.why-card p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
  display: block;
  margin-top: 4px;
}

/* ============================================================
   About
   ============================================================ */
.about { padding: 130px 0; background: var(--paper); }
.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.about-media {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.about-media::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--brass);
  border-radius: var(--radius-sm);
  transform: translate(14px, 14px);
  z-index: -1;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-text p {
  display: block;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-top: 20px;
  max-width: 46ch;
}
.about-text p:first-of-type { margin-top: 22px; }

/* ============================================================
   Contact
   ============================================================ */
.contact {
  padding: 130px 0 110px;
  background: var(--ink);
  position: relative;
}
.contact .eyebrow, .contact .section-title, .contact .section-sub { text-align: center; }
.contact .section-inner { text-align: center; }
.contact .section-sub { margin-left: auto; margin-right: auto; margin-bottom: 64px; color: var(--muted-on-dark); }

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  text-align: left;
}

.contact-info {
  background: var(--ink-2);
  border: 1px solid rgba(250,247,242,0.08);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 4px;
  border-bottom: 1px solid rgba(250,247,242,0.08);
  color: var(--paper);
  transition: transform 0.25s var(--ease), color 0.25s var(--ease);
}
a.contact-row:hover { transform: translateX(4px); color: var(--brass-soft); }
.contact-row-static { cursor: default; }
.contact-row-static:hover { transform: none; color: var(--paper); }
.contact-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--brass); }
.contact-row span { display: flex; flex-direction: column; font-size: 0.98rem; }
.contact-row strong { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.09em; color: var(--muted-on-dark); font-weight: 600; margin-bottom: 3px; }
.contact-info .btn { margin-top: 26px; }

.contact-form {
  background: var(--ink-2);
  border: 1px solid rgba(250,247,242,0.08);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.form-row { display: flex; flex-direction: column; gap: 8px; text-align: left; }
.form-row label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}
.form-row input,
.form-row select,
.form-row textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(250,247,242,0.2);
  padding: 10px 2px;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.25s;
  resize: vertical;
}
.form-row select option { background: var(--ink-2); }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent-bright);
}
.form-note {
  font-size: 0.76rem;
  color: var(--muted-on-dark);
  text-align: center;
}
.form-note.is-success { color: var(--brass-soft); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(250,247,242,0.08);
  padding: 30px 0;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted-on-dark);
  font-size: 0.84rem;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-media { max-width: 480px; }
  .contact-grid { grid-template-columns: 1fr; }

  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-text { text-align: center; }
  .hero-eyebrow, .hero-visual-label { justify-content: center; }
  .hero-tagline { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { max-width: 460px; margin: 0 auto; width: 100%; }
}

@media (max-width: 720px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: flex; }

  .hero { padding: 126px 0 50px; }

  .services { padding: 110px 0 70px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .gallery { padding: 100px 0; }
  .sliders-row { grid-template-columns: 1fr; gap: 20px; }
  .ba-slider-frame { aspect-ratio: 4/3; }

  .why-us { padding: 100px 0; }

  .about { padding: 100px 0; }

  .contact { padding: 100px 0 80px; }
  .contact-info, .contact-form { padding: 28px; }
}

@media (max-width: 460px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
}
