/* ================================================================
   FULLBLAST PRESSURE WASHING
   Mobile-first. Tested: 375 / 768 / 1280px
================================================================ */

/* ----------------------------------------------------------------
   DESIGN TOKENS
---------------------------------------------------------------- */
:root {
  --blue:        #1565C0;
  --blue-light:  #1976D2;
  --blue-dark:   #0D47A1;
  --blue-glow:   rgba(21, 101, 192, 0.22);
  --blue-border: rgba(21, 101, 192, 0.35);

  --yellow:      #FDD835;
  --yellow-hi:   #FFEE58;
  --yellow-dim:  rgba(253, 216, 53, 0.12);
  --yellow-rim:  rgba(253, 216, 53, 0.22);

  --bg:          #0A0A0A;
  --surface:     #111827;
  --surface-2:   #0f1623;
  --surface-hi:  #1a2236;

  --text:        #F9FAFB;
  --text-mid:    #D1D5DB;
  --text-muted:  #9CA3AF;
  --text-dim:    #6B7280;

  --border:      rgba(255, 255, 255, 0.07);
  --border-hi:   rgba(255, 255, 255, 0.14);

  --font-display: 'Antonio', sans-serif;
  --font-body:    'Outfit', sans-serif;

  --max-w:     1200px;
  --pad-x:     clamp(1rem, 4vw, 1.5rem);
  --section-y: clamp(5rem, 10vw, 8rem);

  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-pill: 999px;

  --ease-snap: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
address { font-style: normal; }

/* ----------------------------------------------------------------
   SKIP LINK
---------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--yellow);
  color: #000;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: var(--r-sm);
  z-index: 200;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ----------------------------------------------------------------
   TYPOGRAPHY
---------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.section-title {
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.05;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  background: var(--yellow-dim);
  border: 1px solid var(--yellow-rim);
  padding: 0.28rem 0.85rem 0.28rem 0.65rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.25rem;
}

/* ----------------------------------------------------------------
   BUTTONS
---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.18s var(--ease-snap), background 0.18s;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--yellow);
  color: #0A0A0A;
}
.btn--primary:hover { background: var(--yellow-hi); }

.btn__pill {
  width: 28px;
  height: 28px;
  background: rgba(0, 0, 0, 0.14);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: transform 0.2s var(--ease-snap);
  flex-shrink: 0;
}
.btn--primary:hover .btn__pill { transform: translateX(3px); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-hi);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn--submit {
  width: 100%;
  justify-content: center;
  padding: 1rem 1.6rem;
}

/* ----------------------------------------------------------------
   LOGO
---------------------------------------------------------------- */
.nav__logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-img--footer {
  height: 36px;
}

/* ----------------------------------------------------------------
   NAV
---------------------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 0.9rem var(--pad-x);
  pointer-events: none;
}

.nav__pill {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 0.6rem 0.6rem 0.6rem 1.25rem;
  pointer-events: all;
  transition: box-shadow 0.35s var(--ease-snap);
}

.nav.scrolled .nav__pill {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
  border-color: var(--border-hi);
}

.nav__links {
  display: none;
  align-items: center;
  gap: 0.2rem;
}

.nav__link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.45rem 0.85rem;
  border-radius: var(--r-pill);
  transition: color 0.2s, background 0.2s;
}
.nav__link:hover { color: var(--text); background: rgba(255, 255, 255, 0.07); }

.nav__link--cta {
  background: var(--yellow);
  color: #0A0A0A;
  font-weight: 700;
  padding: 0.55rem 1.2rem;
}
.nav__link--cta:hover { background: var(--yellow-hi); color: #0A0A0A; }

/* Hamburger */
.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 50%;
  padding: 0;
  transition: background 0.2s;
}
.nav__toggle:hover { background: rgba(255, 255, 255, 0.1); }

.toggle__bar {
  display: block;
  width: 17px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s var(--ease-snap), opacity 0.3s;
}

.nav--open .toggle__bar--1 { transform: translateY(3.25px) rotate(45deg); }
.nav--open .toggle__bar--2 { transform: translateY(-3.25px) rotate(-45deg); }

/* Mobile overlay */
.nav__mobile {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-snap);
}

.nav--open .nav__mobile {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.mobile-link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8vw, 3.8rem);
  font-weight: 700;
  color: var(--text-mid);
  padding: 0.35rem 1rem;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.35s var(--ease-out), transform 0.4s var(--ease-out), color 0.2s;
}
.mobile-link:hover { color: var(--text); }
.mobile-link--cta { color: var(--yellow); }
.mobile-link--cta:hover { color: var(--yellow-hi); }

.nav--open .mobile-link { opacity: 1; transform: translateY(0); }
.nav--open .mobile-link:nth-child(1) { transition-delay: 0.08s; }
.nav--open .mobile-link:nth-child(2) { transition-delay: 0.13s; }
.nav--open .mobile-link:nth-child(3) { transition-delay: 0.18s; }
.nav--open .mobile-link:nth-child(4) { transition-delay: 0.23s; }

/* ----------------------------------------------------------------
   SECTION WRAPPER
---------------------------------------------------------------- */
.section-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-y) var(--pad-x);
}

.section-header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-header--center { text-align: center; }

/* ----------------------------------------------------------------
   HERO
---------------------------------------------------------------- */
#hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.hero__glow--1 {
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  background: var(--blue-glow);
  top: -10%;
  right: -5%;
}

.hero__glow--2 {
  width: 30vw;
  height: 30vw;
  max-width: 400px;
  max-height: 400px;
  background: rgba(253, 216, 53, 0.05);
  bottom: 10%;
  left: -5%;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(21, 101, 192, 0.045) 0px, rgba(21, 101, 192, 0.045) 1px,
      transparent 1px, transparent 64px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(21, 101, 192, 0.045) 0px, rgba(21, 101, 192, 0.045) 1px,
      transparent 1px, transparent 64px
    );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(7rem, 14vw, 10rem) var(--pad-x) 5rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-hi);
  padding: 0.3rem 0.9rem 0.3rem 0.65rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.75rem;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.8rem, 12vw, 8.5rem);
  line-height: 0.93;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.04em;
}

.title-line {
  display: block;
  overflow: hidden;
}

.word {
  display: inline-block;
}

.word--yellow { color: var(--yellow); }

.word--outline {
  -webkit-text-stroke: 2px var(--text);
  color: transparent;
}

.word--space { visibility: hidden; }

.hero__sub {
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 46ch;
  margin-bottom: 2.5rem;
}

.br-md { display: none; }

.hero__ctas {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2.25rem;
  left: var(--pad-x);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-dim);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 1;
}

.scroll-bar {
  width: 36px;
  height: 1px;
  background: var(--border-hi);
  position: relative;
  overflow: hidden;
}

.scroll-indicator {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--yellow);
  animation: scrollPulse 2.4s ease-in-out infinite 2s;
}

@keyframes scrollPulse {
  0%   { left: -100%; }
  50%  { left: 0%; }
  100% { left: 100%; }
}

/* ----------------------------------------------------------------
   SERVICES
---------------------------------------------------------------- */
#services {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.service-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  padding: 3.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.3s var(--ease-snap),
    transform 0.3s var(--ease-snap),
    box-shadow 0.3s var(--ease-snap);
}

.service-card:hover {
  border-color: var(--blue-border);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(21, 101, 192, 0.12);
}

.service-card--featured {
  padding: 3.5rem 2.25rem 2.25rem;
}

.service-card .card-inner {
  padding: 0;
}

.card-num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--yellow);
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  opacity: 0.65;
}

.card-icon { margin-bottom: 1.25rem; }

.card-title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.65rem;
  line-height: 1.05;
}

.service-card--featured .card-title {
  font-size: clamp(1.85rem, 3.5vw, 2.4rem);
}

.card-desc {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
  max-width: 40ch;
}

.card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-light);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s var(--ease-snap), color 0.2s;
  margin-top: auto;
}
.card-link:hover { color: var(--yellow); gap: 0.65rem; }

/* ----------------------------------------------------------------
   WHY US
---------------------------------------------------------------- */
#why-us { background: var(--bg); }

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

.trust-item {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}

.trust-icon { margin-bottom: 1.1rem; }

.trust-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.trust-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.68;
}

.trust-divider { display: none; }

/* ----------------------------------------------------------------
   BEFORE / AFTER
---------------------------------------------------------------- */
#gallery {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.comparison-outer {
  max-width: 900px;
  margin: 0 auto;
}

.comparison {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  user-select: none;
  border: 1px solid var(--border-hi);
  cursor: ew-resize;
}

.comp-layer {
  position: absolute;
  inset: 0;
}

/* AFTER — clean concrete */
.concrete--clean {
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(90deg, rgba(160, 175, 190, 0.2) 0px, rgba(160, 175, 190, 0.2) 1px, transparent 1px, transparent 52px),
    repeating-linear-gradient(0deg,  rgba(160, 175, 190, 0.2) 0px, rgba(160, 175, 190, 0.2) 1px, transparent 1px, transparent 52px),
    linear-gradient(148deg, #C0CDD8 0%, #D8E4EC 35%, #C8D6E0 65%, #B8C8D4 100%);
}

/* BEFORE — stained/dirty concrete */
.concrete--dirty {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 55% 45% at 32% 58%, rgba(55, 32, 12, 0.72) 0%, transparent 52%),
    radial-gradient(ellipse 30% 25% at 68% 28%, rgba(28, 22, 14, 0.80) 0%, transparent 42%),
    radial-gradient(ellipse 38% 28% at 52% 72%, rgba(48, 38, 22, 0.60) 0%, transparent 42%),
    repeating-linear-gradient(90deg, rgba(75, 55, 35, 0.12) 0px, rgba(75, 55, 35, 0.12) 1px, transparent 1px, transparent 52px),
    repeating-linear-gradient(0deg,  rgba(75, 55, 35, 0.12) 0px, rgba(75, 55, 35, 0.12) 1px, transparent 1px, transparent 52px),
    linear-gradient(148deg, #38281A 0%, #463A2E 38%, #2C2218 68%, #3A2E20 100%);
}

.comp-layer--before {
  clip-path: inset(0 50% 0 0);
}

.comp-badge {
  position: absolute;
  top: 0.875rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: var(--r-pill);
  pointer-events: none;
}

.comp-badge--before { left: 0.875rem; background: rgba(0,0,0,0.65); color: #fff; }
.comp-badge--after  { right: 0.875rem; background: rgba(21, 101, 192, 0.85); color: #fff; }

/* Handle */
.comp-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 2;
}

.handle-line {
  flex: 1;
  width: 2px;
  background: rgba(255, 255, 255, 0.9);
}

.handle-knob {
  width: 46px;
  height: 46px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}

/* Invisible range input */
.comp-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 3;
  -webkit-appearance: none;
}

.comp-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: var(--text-dim);
  font-size: 0.78rem;
  margin-top: 0.875rem;
}

.photo-placeholder-note {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-dim);
  font-style: italic;
  margin-top: 0.35rem;
}

.gallery-cta {
  text-align: center;
  margin-top: 3rem;
}
.gallery-cta p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

/* ----------------------------------------------------------------
   CONTACT
---------------------------------------------------------------- */
#contact { background: var(--bg); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info .section-title { margin-bottom: 0.875rem; }

.contact-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.72;
  max-width: 42ch;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: color 0.2s;
}
a.contact-row:hover { color: var(--text); }

/* Form */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.025em;
}

.req { color: var(--yellow); margin-left: 1px; }

input,
select,
textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-md);
  padding: 0.78rem 1rem;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

input::placeholder,
textarea::placeholder { color: var(--text-dim); }
textarea { resize: vertical; min-height: 108px; }

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.16);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-status {
  font-size: 0.88rem;
  min-height: 1.4em;
  text-align: center;
  transition: opacity 0.3s;
}
.form-status.success { color: #4ade80; }
.form-status.error   { color: #f87171; }

/* ----------------------------------------------------------------
   FOOTER
---------------------------------------------------------------- */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.75rem var(--pad-x) 2rem;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem;
}
.footer-nav a {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.38rem 0.85rem;
  border-radius: var(--r-pill);
  transition: color 0.2s, background 0.2s;
}
.footer-nav a:hover { color: var(--text); background: rgba(255,255,255,0.06); }

.footer-social {
  display: flex;
  gap: 0.5rem;
}
.social-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.social-btn:hover {
  color: var(--text);
  border-color: var(--border-hi);
  background: rgba(255,255,255,0.05);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.footer-copy,
.footer-credit {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ================================================================
   RESPONSIVE
================================================================ */

/* 640px — nav links show, hamburger hides */
@media (min-width: 640px) {
  .nav__links { display: flex; }
  .nav__toggle { display: none; }
  .br-md { display: block; }
}

/* 768px — services 2-col, contact 2-col, trust horizontal */
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-card--featured {
    grid-column: 1 / -1;
  }
  .service-card--featured {
    flex-direction: row;
    gap: 2.5rem;
    align-items: flex-start;
  }
  .service-card--featured .card-desc { max-width: 48ch; }

  .trust-grid {
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    align-items: stretch;
    gap: 0;
  }
  .trust-item {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 1.5rem 2rem;
  }
  .trust-divider {
    display: block;
    background: var(--border);
    width: 1px;
    margin: 1rem 0;
  }

  .form-row { grid-template-columns: 1fr 1fr; }

  .contact-layout {
    grid-template-columns: 1fr 1.25fr;
    gap: 4rem;
    align-items: start;
  }

  .footer-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* 1024px — services 3-col, featured is just 1 of 3 */
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: 1.55fr 1fr 1fr;
  }
  .service-card--featured {
    grid-column: 1;
  }
  .service-card--featured {
    flex-direction: column;
    gap: 0;
  }
}

/* Safety: never allow horizontal overflow */
@media (max-width: 374px) {
  .hero__title { font-size: 3rem; }
  .btn { font-size: 0.85rem; padding: 0.8rem 1.3rem; }
}
