/*
 * Hursh Family Coatings — Stylesheet
 *
 * Preserves Kevin's original design verbatim. Structural changes only:
 *   1. Nav restructured so the "Contact Us" CTA lives outside the .nav-links <ul>,
 *      keeping it visible in the bar on every breakpoint.
 *   2. Mobile media query rebuilt — the original hid About/Services via
 *      `.nav-links li:not(:last-child) { display: none }`, with no replacement.
 *      Now powered by a hamburger drawer (.nav-toggle + scripts/nav.js).
 *
 * Colors, fonts, spacing, animations: untouched.
 */

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

:root {
  --steel: #0D1F28;
  --steel-mid: #152535;
  --steel-edge: #1E3A4A;
  --teal: #1F5068;
  --teal-bright: #2A7090;
  --rust: #C07830;
  --rust-light: #D99448;
  --cream: #D8CFC2;
  --cream-dim: #A89F94;
  --white: #EDE8E0;
  --scratch: rgba(255,255,255,0.04);
}

html { scroll-behavior: smooth; }

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

/* Subtle film-grain overlay across the whole page */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none; opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat; background-size: 200px 200px;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px; height: 64px;
  background: var(--steel);
  border-bottom: 2px solid var(--teal);
}
nav::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--rust);
}
.nav-logo img { height: 46px; width: auto; padding-left: 8px; }

/* Right-hand cluster: toggle + links + CTA. Keeps the CTA outside .nav-links so it stays in the bar at every breakpoint. */
.nav-right {
  display: flex; align-items: stretch; height: 64px;
  position: relative;
}

/* Hamburger: hidden on desktop, visible in mobile media query */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  cursor: pointer;
  padding: 0;
  align-self: center;
}
.nav-toggle-bars { position: relative; display: block; }
.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  width: 20px; height: 2px;
  background: var(--cream);
  transition: transform 0.2s, opacity 0.2s, background 0.2s, top 0.2s;
}
.nav-toggle-bars::before { content: ''; position: absolute; top: -6px; left: 0; }
.nav-toggle-bars::after  { content: ''; position: absolute; top:  6px; left: 0; }
/* Open state: collapse middle bar, rotate top/bottom into an X */
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after  { top: 0; transform: rotate(-45deg); }

.nav-links { display: flex; gap: 0; list-style: none; align-items: stretch; height: 64px; }
.nav-links li { display: flex; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cream-dim); text-decoration: none; font-weight: 600;
  padding: 0 22px; display: flex; align-items: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--white); background: var(--scratch); }

.nav-cta {
  margin-left: 20px;
  background: var(--rust); color: var(--steel);
  padding: 0 26px; height: 38px; border-radius: 2px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; text-decoration: none;
  display: flex; align-items: center;
  transition: background 0.15s, transform 0.1s;
  align-self: center;
}
.nav-cta:hover { background: var(--rust-light); transform: translateY(-1px); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 64px 0 0;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("images/metallic-epoxy.jpg");
  background-size: cover; background-position: center 35%;
  filter: brightness(0.15) saturate(0.4) contrast(1.1);
  transform: scale(1.03);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg,
    rgba(13,31,40,0.97) 0%,
    rgba(13,31,40,0.92) 45%,
    rgba(13,31,40,0.65) 100%);
}
.hero-diagonal {
  position: absolute; z-index: 2;
  top: 0; right: 38%; bottom: 0; width: 3px;
  background: linear-gradient(180deg, transparent 0%, var(--teal) 20%, var(--teal) 80%, transparent 100%);
  transform: skewX(-6deg);
}
.hero-inner {
  position: relative; z-index: 3;
  max-width: 1200px; margin: 0 auto; padding: 0 52px;
  display: grid; grid-template-columns: 1fr 420px; gap: 0;
  align-items: center; min-height: calc(100vh - 64px);
}
.hero-content { padding-right: 60px; padding-top: 80px; padding-bottom: 80px; }
.hero-rule { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.hero-rule-bar { width: 48px; height: 3px; background: var(--rust); flex-shrink: 0; }
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--rust); font-weight: 700;
}
h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.4rem, 5.5vw, 5.2rem);
  line-height: 0.95; color: var(--white);
  margin-bottom: 10px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.01em;
}
h1 .accent { color: var(--rust); }
h1 .outline { -webkit-text-stroke: 2px var(--teal-bright); color: transparent; }
.hero-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal-bright); font-weight: 600; margin-bottom: 28px;
  border-left: 4px solid var(--teal-bright); padding-left: 16px;
}
.hero-sub {
  font-size: 1rem; line-height: 1.75; color: var(--cream-dim);
  max-width: 500px; margin-bottom: 44px; font-weight: 300;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--rust); color: var(--steel);
  padding: 14px 36px; border-radius: 2px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; text-decoration: none;
  transition: background 0.15s, transform 0.12s;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-primary::after { content: '→'; font-size: 1rem; }
.btn-primary:hover { background: var(--rust-light); transform: translateY(-2px); }
.btn-ghost {
  border: 2px solid var(--teal-bright); color: var(--teal-bright);
  padding: 12px 30px; border-radius: 2px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.15s;
}
.btn-ghost:hover { background: var(--teal-bright); color: var(--steel); }

.hero-panel {
  position: relative; height: 100%; min-height: calc(100vh - 64px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 80px 0;
}
.hero-logo-plate {
  background: rgba(21,37,53,0.7);
  border: 1px solid var(--teal); border-top: 3px solid var(--rust);
  padding: 52px 36px;
  display: flex; flex-direction: column; align-items: center;
  width: 100%;
}
.hero-logo-plate img {
  /* Bumped from 230px per Kevin's "I wish it was bigger" feedback (2026-05-12). */
  width: 320px; height: 320px; object-fit: contain;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,0.7));
}
.plate-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--cream-dim); margin-top: 18px; font-weight: 600;
}

/* ── PHOTO BANDS ── */
.photo-band { display: grid; height: 240px; overflow: hidden; }
.photo-band-3 { grid-template-columns: repeat(3, 1fr); }
.photo-band-4 { grid-template-columns: repeat(4, 1fr); }
.band-panel {
  position: relative; overflow: hidden;
  border-right: 2px solid var(--steel);
}
.band-panel:last-child { border-right: none; }
.band-panel img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.62) saturate(0.75) contrast(1.05);
  transform: scale(1.05);
  transition: filter 0.5s ease, transform 0.6s ease;
}
.band-panel:hover img {
  filter: brightness(0.85) saturate(0.95);
  transform: scale(1.0);
}
.band-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(237,232,224,0.0); font-weight: 700;
  background: rgba(13,31,40,0.0);
  transition: color 0.3s, background 0.3s;
}
.band-panel:hover .band-label {
  color: var(--rust-light);
  background: rgba(13,31,40,0.65);
}
.band-top-rule { border-top: 2px solid var(--teal); }
.band-bottom-rule { border-bottom: 2px solid var(--teal); }

/* ── ABOUT ── */
#about {
  background: var(--steel-mid);
  padding: 90px 52px;
  position: relative;
}
#about::before {
  content: 'HFC';
  position: absolute; right: 52px; top: 50%; transform: translateY(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14rem; font-weight: 900; letter-spacing: -0.04em;
  color: rgba(255,255,255,0.025); pointer-events: none; line-height: 1;
}
.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--rust); font-weight: 700; margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before { content: ''; display: block; width: 28px; height: 2px; background: var(--rust); flex-shrink: 0; }
h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em;
  color: var(--white); line-height: 1.05; margin-bottom: 22px;
}
h2 .teal { color: var(--teal-bright); }
.about-text p {
  font-size: 1rem; line-height: 1.8; color: var(--cream-dim);
  margin-bottom: 16px; font-weight: 300;
}
.value-list {
  display: flex; flex-direction: column; gap: 0; margin-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.value-row {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.value-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem; font-weight: 900; color: var(--teal-bright);
  width: 36px; flex-shrink: 0; letter-spacing: -0.02em;
}
.value-row h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.98rem; font-weight: 700; color: var(--white);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px;
}
.value-row p { font-size: 0.88rem; color: var(--cream-dim); margin: 0; font-weight: 300; line-height: 1.5; }
.about-image-wrap {
  position: relative;
  border: 1px solid var(--teal); border-top: 3px solid var(--rust);
}
.about-image-wrap img {
  width: 100%; height: 440px; object-fit: cover; display: block;
  filter: brightness(0.78) saturate(0.75) contrast(1.05);
  transition: filter 0.4s;
}
.about-image-wrap:hover img { filter: brightness(0.92) saturate(0.9) contrast(1.0); }
.about-img-tag {
  position: absolute; top: 0; right: 0;
  background: var(--rust); color: var(--steel);
  padding: 6px 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
}
.about-img-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(13,31,40,0.75); padding: 14px 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream-dim); font-weight: 600;
  border-top: 1px solid var(--teal);
}

/* ── SERVICES ── */
#services {
  background: var(--steel);
  border-top: 2px solid rgba(255,255,255,0.06);
  padding: 90px 52px;
  position: relative; overflow: hidden;
}
#services::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: url("images/epoxy-flake-floor.jpg");
  background-size: cover; background-position: center;
  filter: brightness(0.1) saturate(0.25) contrast(1.3);
  transform: scale(1.04);
}
.services-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
}
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 52px; gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 28px;
}
.section-header h2 { margin-bottom: 0; }
.section-header p {
  font-size: 0.95rem; color: var(--cream-dim); max-width: 340px;
  text-align: right; line-height: 1.7; font-weight: 300;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.service-card {
  background: rgba(21,37,53,0.6);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 34px 26px;
  transition: background 0.2s, border-color 0.2s;
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--teal);
  transition: background 0.2s;
}
.service-card:hover { background: rgba(31,80,104,0.2); border-color: rgba(42,112,144,0.4); }
.service-card:hover::before { background: var(--rust); }
.service-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem; font-weight: 900; color: rgba(255,255,255,0.08);
  line-height: 1; margin-bottom: 14px; letter-spacing: -0.02em;
}
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem; color: var(--white); margin-bottom: 10px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
}
.service-card p { font-size: 0.9rem; color: var(--cream-dim); line-height: 1.7; font-weight: 300; }

/* ── CONTACT ── */
#contact {
  background: var(--steel-mid);
  border-top: 2px solid var(--teal);
  padding: 90px 52px;
  position: relative; overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: url("images/finished-garage-floor.jpg");
  background-size: cover; background-position: center;
  filter: brightness(0.08) saturate(0.2);
  transform: scale(1.04);
}
.contact-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.contact-text h2 { margin-bottom: 16px; }
.contact-text p {
  font-size: 1rem; line-height: 1.78; color: var(--cream-dim); font-weight: 300; margin-bottom: 40px;
}
.contact-methods {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.contact-method {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact-icon {
  width: 44px; height: 44px; background: var(--teal); border-radius: 2px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-method h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rust); font-weight: 700; margin-bottom: 3px;
}
.contact-method p { font-size: 1rem; color: var(--white); font-weight: 400; margin: 0; }
.contact-phone-link { color: inherit; text-decoration: none; transition: color 0.15s; }
.contact-phone-link:hover { color: var(--rust-light); }
.trust-list {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08); margin-top: 32px;
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem; color: var(--cream-dim); font-weight: 400;
}
.trust-check {
  width: 20px; height: 20px; background: var(--teal); border-radius: 2px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 0.65rem; color: var(--white); font-weight: 900;
}
.contact-cta-panel {
  background: var(--steel-edge);
  border: 1px solid rgba(255,255,255,0.1); border-top: 3px solid var(--rust);
  padding: 52px 44px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 24px;
}
.contact-cta-panel h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--white); line-height: 1.1;
}
.contact-cta-panel p {
  font-size: 0.95rem; color: var(--cream-dim); line-height: 1.7; font-weight: 300;
}
.cta-divider { width: 48px; height: 2px; background: var(--rust); margin: 4px auto; }
.cta-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.6rem; font-weight: 900; color: var(--rust-light);
  letter-spacing: 0.04em; text-decoration: none; line-height: 1;
  transition: color 0.15s;
}
.cta-phone:hover { color: var(--white); }
.cta-email {
  font-size: 0.95rem; color: var(--teal-bright); text-decoration: none;
  letter-spacing: 0.05em; transition: color 0.15s; font-weight: 400;
}
.cta-email:hover { color: var(--white); }
.cta-note { font-size: 0.78rem; color: var(--cream-dim); font-weight: 300; font-style: italic; }

/* ── CONTACT FORM ── */
.contact-form {
  display: flex; flex-direction: column; gap: 14px;
  width: 100%; text-align: left;
  margin-top: 8px;
}
.form-field {
  display: flex; flex-direction: column; gap: 4px;
}
.form-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--rust); font-weight: 700;
}
.form-input {
  background: rgba(13,31,40,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 12px 14px;
  font-family: 'Barlow', sans-serif;
  /* 16px floor — anything smaller triggers iOS Safari's auto-zoom on input focus, which is jarring */
  font-size: 1rem;
  border-radius: 2px;
  transition: border-color 0.15s, background 0.15s;
}
.form-input::placeholder { color: var(--cream-dim); }
.form-input:focus {
  outline: none;
  border-color: var(--rust);
  background: rgba(13,31,40,0.85);
}
/* Honeypot — kept reachable to the DOM (bots find it) but completely hidden from real users + screen readers */
.form-honeypot {
  position: absolute; left: -9999px; top: -9999px;
  width: 1px; height: 1px; opacity: 0; pointer-events: none;
}
.form-submit {
  margin-top: 6px;
  border: none; cursor: pointer;
  width: 100%; justify-content: center;
  font: inherit;
  /* color + bg + padding inherited from .btn-primary */
}
.form-submit:disabled { opacity: 0.55; cursor: progress; transform: none; }
.form-status {
  font-size: 0.85rem; min-height: 1.2em;
  color: var(--cream-dim); font-weight: 300; margin-top: 2px;
}
.form-status.error { color: var(--rust-light); }
.form-success-message {
  font-size: 1rem; line-height: 1.6;
  color: var(--teal-bright); font-weight: 500;
  text-align: center; padding: 24px 0;
}
.cta-or-call {
  font-size: 0.85rem; color: var(--cream-dim); margin-top: 4px;
}
.cta-or-call a {
  color: var(--rust-light); text-decoration: none; font-weight: 600;
  transition: color 0.15s;
}
.cta-or-call a:hover { color: var(--white); }

/* ── FOOTER ── */
footer {
  background: var(--steel);
  border-top: 2px solid var(--teal);
  padding: 52px 52px 28px;
  position: relative;
}
footer::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--rust);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px;
  padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-tagline { font-size: 0.88rem; color: var(--cream-dim); font-weight: 300; line-height: 1.6; max-width: 220px; }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--rust); font-weight: 700; margin-bottom: 18px;
  padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.9rem; color: var(--cream-dim); text-decoration: none; transition: color 0.15s; font-weight: 300; }
.footer-col a:hover { color: var(--white); }
.footer-col p { font-size: 0.9rem; color: var(--cream-dim); line-height: 1.9; font-weight: 300; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.hero-content { animation: fadeUp 0.8s ease both; }
.hero-panel   { animation: fadeUp 0.8s ease 0.25s both; }

/* ════════════════════════════════════════
   MOBILE RESPONSIVE STYLES
   ════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Nav: tighter padding, show hamburger, convert .nav-links to a slide-down drawer */
  nav { padding: 0 16px; }

  .nav-toggle {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    margin-right: 12px;
  }

  /* Drawer: positioned below the fixed nav, collapsed by default, expands on aria-expanded="true" */
  .nav-links {
    position: absolute; top: 64px; left: 0; right: 0;
    flex-direction: column;
    height: auto;
    background: var(--steel);
    border-bottom: 2px solid var(--teal);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-toggle[aria-expanded="true"] ~ .nav-links { max-height: 200px; }
  .nav-links li { display: flex; width: 100%; }
  .nav-links a {
    padding: 18px 24px; width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-cta { margin-left: 0; font-size: 0.75rem; padding: 0 18px; }

  /* Hero */
  #hero { padding: 64px 0 0; min-height: auto; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 0;
    min-height: auto;
  }
  .hero-diagonal { display: none; }
  .hero-overlay {
    background: linear-gradient(180deg,
      rgba(13,31,40,0.97) 0%,
      rgba(13,31,40,0.92) 100%);
  }
  .hero-content {
    padding: 48px 0 36px;
    text-align: center;
  }
  .hero-rule { justify-content: center; }
  h1 { font-size: clamp(3rem, 12vw, 4rem); }
  .hero-tagline { font-size: 1.1rem; text-align: left; }
  .hero-sub { font-size: 0.95rem; max-width: 100%; }
  .hero-actions { justify-content: center; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }

  /* Hide logo panel on mobile — logo is in nav */
  .hero-panel { display: none; }

  /* Photo bands — 2 columns on mobile */
  .photo-band { height: 160px; }
  .photo-band-4 { grid-template-columns: repeat(2, 1fr); }
  .photo-band-3 { grid-template-columns: repeat(2, 1fr); }
  .photo-band-3 .band-panel:last-child { display: none; }

  /* About */
  #about { padding: 60px 24px; }
  #about::before { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap img { height: 280px; }

  /* Services */
  #services { padding: 60px 24px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .section-header p { text-align: left; max-width: 100%; }
  .services-grid { grid-template-columns: 1fr; gap: 2px; }

  /* Contact */
  #contact { padding: 60px 24px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-cta-panel { padding: 36px 24px; }
  .cta-phone { font-size: 2rem; }
  .cta-email { font-size: 0.85rem; word-break: break-all; }

  /* Footer */
  footer { padding: 40px 24px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(2.6rem, 14vw, 3.4rem); }
  .hero-tagline { font-size: 1rem; }
  .photo-band { height: 130px; }
  .cta-phone { font-size: 1.7rem; }
}
