/* ============================================================
   D and D Drain — style.css
   Palette: Deep Navy / Steel Blue / Copper / Off-White
   Type: Barlow Condensed (display) / Source Sans 3 (body)
   ============================================================ */

/* ── Fonts ── */
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/barlow-condensed-600.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/barlow-condensed-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/source-sans-3-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/source-sans-3-600.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── Tokens ── */
:root {
  --navy:        #0D1B2A;
  --navy-mid:    #172D46;
  --steel:       #2E6DA4;
  --steel-light: #4A8FC2;
  --copper:      #C8651C;
  --copper-lt:   #E07830;
  --off-white:   #F2F0EC;
  --text-main:   #1A1A1A;
  --text-muted:  #5A6470;
  --text-light:  #8A96A3;
  --border:      #D8D4CE;

  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Source Sans 3', 'Segoe UI', sans-serif;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;

  --shadow-card: 0 2px 12px rgba(13,27,42,0.10), 0 1px 3px rgba(13,27,42,0.06);
  --shadow-deep: 0 8px 32px rgba(13,27,42,0.18);

  --max-w: 1160px;
  --pad-x: clamp(20px, 5vw, 60px);
  --section-gap: clamp(64px, 10vw, 120px);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-main);
  background: var(--off-white);
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  min-height: 48px;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--copper);
  color: #fff;
  box-shadow: 0 2px 8px rgba(200,101,28,0.35);
}
.btn--primary:hover {
  background: var(--copper-lt);
  box-shadow: 0 4px 16px rgba(200,101,28,0.45);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.85);
}

.btn--header {
  background: var(--copper);
  color: #fff;
  padding: 10px 20px;
  font-size: 0.9rem;
  box-shadow: 0 2px 6px rgba(200,101,28,0.3);
}
.btn--header:hover {
  background: var(--copper-lt);
}

/* ── Section shared ── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
}
.section-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.section-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 48px;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 2px solid var(--steel);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-block: 14px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  display: block;
  width: 32px;
  height: 32px;
  background: var(--copper);
  border-radius: 50%;
  position: relative;
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 3px solid var(--navy);
  border-radius: 50%;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  color: #fff;
  line-height: 1;
}
.logo-sub {
  color: var(--copper);
}
.header-nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
}
.header-nav a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.03em;
  transition: color 0.15s;
}
.header-nav a:hover { color: #fff; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: clamp(520px, 80vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,27,42,0.88) 0%,
    rgba(13,27,42,0.72) 55%,
    rgba(13,27,42,0.30) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(60px, 10vh, 100px);
  max-width: 680px;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.2rem, 8vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.trust-sep { opacity: 0.4; }

/* Pipe-bend signature mark */
.pipe-mark {
  position: absolute;
  bottom: 32px;
  right: 5%;
  width: clamp(80px, 10vw, 140px);
  opacity: 0.55;
  pointer-events: none;
}

/* ── Services ── */
.services {
  padding-block: var(--section-gap);
  background: var(--off-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 28px 32px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-deep);
}
.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--steel);
}
.service-icon svg { width: 44px; height: 44px; }
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* JS reveal animation */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.js .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; }
}

/* ── Photo band ── */
.photo-band {
  background: var(--navy-mid);
  overflow: hidden;
}
.photo-band-inner {
  display: flex;
  height: clamp(220px, 28vw, 380px);
}
.photo-band-item {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.photo-band-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.photo-band-item:hover img {
  transform: scale(1.05);
}

/* ── Why Us ── */
.why-us {
  padding-block: var(--section-gap);
  background: var(--navy);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.why-us .section-label { color: var(--copper); }
.why-us .section-heading { color: #fff; }
.why-points {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-point-num {
  flex-shrink: 0;
  color: var(--copper);
  font-size: 1.2rem;
  margin-top: 2px;
  line-height: 1.4;
}
.why-point strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 4px;
}
.why-point p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}
.why-photo {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}
.why-photo img {
  width: 100%;
  height: clamp(320px, 45vw, 540px);
  object-fit: cover;
}
.why-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(13,27,42,0.85));
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
}

/* ── Reviews ── */
.reviews {
  padding-block: var(--section-gap);
  background: #fff;
}
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.reviews-header .section-heading { margin-bottom: 0; }
.reviews-score {
  text-align: right;
  flex-shrink: 0;
}
.score-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.8rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.score-stars svg { width: 84px; height: 18px; }
.score-count {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 4px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px;
  border-top: 3px solid var(--copper);
}
.review-stars {
  color: var(--copper);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-card blockquote p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 16px;
}
.review-card cite {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  font-style: normal;
}

/* ── Visit ── */
.visit {
  padding-block: var(--section-gap);
  background: var(--off-white);
}
.visit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.visit-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
  margin-bottom: 36px;
}
.detail-label {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 6px;
}
.detail-val {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.55;
}
.detail-val a {
  color: var(--steel);
  font-weight: 600;
}
.detail-val a:hover { color: var(--copper); }
.detail-note {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.visit-photo {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}
.visit-photo img {
  width: 100%;
  height: clamp(280px, 38vw, 460px);
  object-fit: cover;
}

/* ── Contact ── */
.contact {
  padding-block: var(--section-gap);
  background: var(--navy);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact .section-label { color: var(--copper); }
.contact .section-heading { color: #fff; }
.contact .section-heading + p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin-bottom: 32px;
}
.contact-direct {
  margin-top: 4px;
}
.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--copper);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  transition: color 0.15s;
}
.contact-phone:hover { color: var(--copper-lt); }
.contact-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  padding: clamp(24px, 4vw, 40px);
}
.form-row {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.required { color: var(--copper); }
.form-input {
  display: block;
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: var(--r-sm);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 0.15s, background 0.15s;
  min-height: 48px;
}
.form-input::placeholder { color: rgba(255,255,255,0.35); }
.form-input:focus {
  outline: none;
  border-color: var(--copper);
  background: rgba(255,255,255,0.12);
}
.form-textarea {
  resize: vertical;
  min-height: 110px;
}
.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.form-status {
  margin-top: 12px;
  font-size: 0.9rem;
  min-height: 24px;
  color: rgba(255,255,255,0.75);
}
.form-status.success { color: #6fcf97; }
.form-status.error { color: #ff6b6b; }

/* ── Footer ── */
.site-footer {
  background: #060f18;
  padding-block: 40px;
  border-top: 2px solid var(--steel);
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 8px;
}
.footer-address {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.footer-address a { color: var(--copper); }
.footer-address a:hover { color: var(--copper-lt); }
.footer-hours {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}
.footer-links a:hover { color: #fff; }
.footer-sig {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}
.footer-sig a { color: rgba(255,255,255,0.35); }
.footer-sig a:hover { color: rgba(255,255,255,0.6); }

/* ── Mobile call bar ── */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--copper);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.25);
}
.mobile-call-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  min-height: 56px;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .why-inner,
  .visit-inner,
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .why-photo,
  .visit-photo {
    order: -1;
  }
  .why-photo img,
  .visit-photo img {
    height: 260px;
  }
  .reviews-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .reviews-score { text-align: left; }
  .visit-details {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .header-nav { display: none; }
  .photo-band-item:nth-child(n+4) { display: none; }
  .photo-band-inner { height: 200px; }
  .mobile-call-bar { display: block; }
  body { padding-bottom: 56px; }
  .hero-ctas .btn--ghost { display: none; }
  .hero-headline { font-size: clamp(2.8rem, 11vw, 3.8rem); }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 390px) {
  :root { --pad-x: 16px; }
  .hero-headline { font-size: 2.6rem; }
}
