:root {
  --teal: #0d7180;
  --teal-dark: #07505b;
  --orange: #ef7d22;
  --orange-dark: #c95e0d;
  --charcoal: #1f2528;
  --black: #111416;
  --gray: #667076;
  --light: #eef1f1;
  --white: #ffffff;
  --line: #d6dcde;
  --shadow: 0 16px 40px rgba(12, 22, 27, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

#estimate-form { scroll-margin-top: 96px; }

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body.menu-open { overflow: hidden; }

a { color: inherit; }

img { max-width: 100%; }

.container {
  width: min(1160px, calc(100% - 36px));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0 0 16px;
  color: var(--black);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.06;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.55rem, 8vw, 5.7rem); }
h2 { font-size: clamp(2rem, 5vw, 3.6rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 20px; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(31, 37, 40, 0.97);
  color: var(--white);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 210px;
  height: auto;
  max-height: 70px;
  padding: 0;
  background: transparent;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,.35));
  object-fit: contain;
  object-position: left center;
}

.site-nav { display: flex; align-items: center; gap: 4px; }

.site-nav a {
  padding: 12px 11px;
  border-bottom: 2px solid transparent;
  color: #e9eeee;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover, .site-nav a.active { border-color: var(--orange); color: var(--white); }
.site-nav .nav-cta { margin-left: 10px; border: 0; background: var(--orange); color: var(--black); }
.site-nav .nav-cta:hover { background: #ff963f; color: var(--black); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid #657074;
  background: transparent;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 11vw, 150px) 0 86px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11,15,17,.98) 0%, rgba(17,22,24,.88) 48%, rgba(17,22,24,.4) 100%),
    repeating-linear-gradient(115deg, transparent 0 44px, rgba(239,125,34,.07) 45px 46px),
    linear-gradient(135deg, #273236, #526166);
}

.hero::after {
  content: "EQUIPMENT / JOBSITE PHOTO";
  position: absolute;
  right: 4%;
  bottom: 8%;
  color: rgba(255,255,255,.2);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.hero-copy { position: relative; z-index: 2; max-width: 880px; }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr); align-items: center; gap: clamp(42px, 7vw, 92px); }
.hero h1 { max-width: 900px; color: var(--white); }
.hero h1 span { color: var(--orange); }
.hero .lead { max-width: 760px; color: #dce2e4; font-size: clamp(1rem, 2.1vw, 1.22rem); }
.hero .eyebrow { margin: 0; color: #d8dfe1; font-size: 1.1rem; line-height: 1.6; }

.page-saying {
  max-width: 720px;
  margin: 0 0 22px;
  padding-left: 15px;
  border-left: 4px solid var(--orange);
  color: #a9e0e5;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 800;
}

.hero-logo-panel {
  padding: 20px;
  border: 1px solid rgba(239,125,34,.55);
  background: #f5f2eb;
  box-shadow: 18px 18px 0 rgba(13,113,128,.42), 0 24px 60px rgba(0,0,0,.32);
  transform: rotate(1.2deg);
}

.hero-logo-panel img { display: block; width: 100%; height: auto; }

.script-line {
  display: inline-block;
  margin: 2px 0 14px;
  color: #8fd3db;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  transform: rotate(-2deg);
}

.button-row { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 2px solid var(--orange);
  background: var(--orange);
  color: var(--black);
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .18s ease, background .18s ease;
}

.btn:hover { background: #ff963f; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-dark { border-color: var(--black); background: var(--black); color: var(--white); }
.btn-dark:hover { background: #30383b; }
.btn-light { border-color: var(--teal); background: var(--white); color: var(--black); }
.btn-light:hover { background: #e8f3f4; }

.cta-icon {
  display: block;
  width: 32px;
  height: 22px;
  margin-right: 9px;
  object-fit: contain;
  flex: 0 0 auto;
}

.trust-strip { background: var(--teal); color: var(--white); }
.trust-list { display: grid; grid-template-columns: repeat(6, 1fr); margin: 0; padding: 0; list-style: none; }
.trust-list li { padding: 18px 10px; border-right: 1px solid rgba(255,255,255,.2); font-size: .74rem; font-weight: 900; letter-spacing: .06em; text-align: center; text-transform: uppercase; }
.trust-list li:first-child { border-left: 1px solid rgba(255,255,255,.2); }

.section { padding: clamp(66px, 9vw, 112px) 0; }
.section-muted { background: var(--light); }
.section-dark { background: var(--charcoal); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 38px; }
.section-heading > div { max-width: 720px; }
.section-heading p:last-child { margin-bottom: 0; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.service-card {
  position: relative;
  min-height: 196px;
  padding: 29px 26px 24px;
  border-top: 5px solid var(--teal);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(20,30,34,.08);
}

.service-card::before {
  content: attr(data-number);
  display: block;
  margin-bottom: 15px;
  color: var(--orange);
  font-family: Impact, sans-serif;
  font-size: .9rem;
  letter-spacing: .12em;
}

.service-card p { margin: 0; color: var(--gray); font-size: .95rem; }
.service-card:hover { border-color: var(--orange); transform: translateY(-3px); transition: .2s ease; }
.services-six .service-card { min-height: 255px; }

.split { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(38px, 7vw, 86px); }

.photo-placeholder {
  position: relative;
  display: grid;
  min-height: 410px;
  place-items: center;
  overflow: hidden;
  border: 10px solid var(--white);
  background:
    linear-gradient(145deg, rgba(13,113,128,.8), rgba(17,20,22,.92)),
    repeating-linear-gradient(35deg, transparent 0 30px, rgba(255,255,255,.05) 31px 32px);
  box-shadow: var(--shadow);
  color: rgba(255,255,255,.55);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-align: center;
  text-transform: uppercase;
}

.photo-placeholder img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-page-photo { background: #111416; }
.home-page-photo img {
  object-fit: contain;
  object-position: center;
}

.photo-placeholder::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -38px;
  bottom: -48px;
  width: 190px;
  height: 190px;
  border: 30px solid rgba(239,125,34,.42);
  border-radius: 50%;
}

.check-list { display: grid; gap: 12px; margin: 24px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; font-weight: 800; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 900; }

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  background: var(--orange);
  color: var(--black);
}

.cta-band::after { content: ""; position: absolute; inset: 0 0 0 62%; background: repeating-linear-gradient(120deg, transparent 0 20px, rgba(0,0,0,.06) 21px 23px); }
.cta-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; text-align: center; }
.cta-inner h2 { max-width: 920px; margin: 0; font-size: clamp(1.65rem, 3.5vw, 2.65rem); }

.page-hero {
  padding: 78px 0 68px;
  background: linear-gradient(105deg, #111416, #263237);
  color: var(--white);
}

.page-hero h1 { color: var(--white); font-size: clamp(2.7rem, 7vw, 5rem); }
.page-hero p { max-width: 730px; margin-bottom: 0; color: #d8dfe1; font-size: 1.1rem; }
.page-hero .page-saying { margin-bottom: 22px; color: #a9e0e5; font-size: clamp(1.05rem, 2.2vw, 1.35rem); }

.service-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.service-row { padding: 23px; border-left: 4px solid var(--orange); background: var(--white); box-shadow: 0 5px 18px rgba(22,30,33,.07); }
.service-row h3 { margin-bottom: 6px; font-size: 1.15rem; }
.service-row p { margin: 0; color: var(--gray); font-size: .93rem; }

.testimonials-section[hidden] { display: none; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--orange);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(20,30,34,.08);
}
.review-meta { display: flex; align-items: start; justify-content: space-between; gap: 15px; margin-bottom: 24px; }
.review-person strong { display: block; color: var(--black); }
.review-person span, .review-source { color: var(--gray); font-size: .8rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.review-source { color: var(--teal-dark); }
.review-placeholder { color: var(--gray); font-style: italic; }
.review-rating { margin-top: 22px; color: var(--orange-dark); font-size: .78rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }

.service-map {
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 0;
  border: 8px solid var(--white);
  background: var(--charcoal);
  box-shadow: var(--shadow);
}
.service-map img { display: block; width: 100%; height: auto; object-fit: contain; }

.region-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.region-card { padding: 27px; border-top: 5px solid var(--teal); background: var(--white); box-shadow: 0 8px 24px rgba(20,30,34,.08); }
.region-card:nth-child(even) { border-color: var(--orange); }
.region-card h3 { margin-bottom: 9px; }
.region-card p { margin: 0; color: var(--gray); }
.region-note { margin: 28px 0 0; padding: 18px 20px; border-left: 4px solid var(--orange); background: #f2f5f5; font-weight: 700; }
.service-area-callout {
  max-width: 1100px;
  margin: 48px auto 0;
  padding: 32px 40px;
  text-align: center;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.5;
  background: #eef1f1;
  border-left: 6px solid var(--orange);
}

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 32px; align-items: start; }
.contact-card { margin-bottom: 16px; padding: 27px; background: var(--charcoal); color: var(--white); }
.contact-card h3 { color: var(--white); }
.contact-card a { display: block; margin-top: 7px; color: #cfeff3; font-weight: 800; text-decoration: none; }
.contact-card a:hover { color: var(--orange); }

.form-panel { padding: clamp(25px, 5vw, 42px); background: var(--white); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
label { font-size: .78rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
input, select, textarea { width: 100%; min-height: 48px; padding: 12px; border: 1px solid #bbc4c7; border-radius: 0; background: #fafafa; color: var(--black); font: inherit; }
textarea { min-height: 130px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(13,113,128,.18); border-color: var(--teal); }
.form-note { margin-top: 14px; color: var(--gray); font-size: .86rem; }
.form-status { display: none; margin-top: 16px; padding: 13px; border-left: 4px solid var(--orange); background: #fff4e9; font-weight: 700; }
.form-status.show { display: block; }
.thank-you-panel {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 46px);
  border-top: 5px solid var(--orange);
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}
.thank-you-panel p {
  margin: 0 auto;
  color: var(--gray);
  font-size: clamp(1.08rem, 2.2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.5;
}
.thank-you-panel a:not(.btn) { color: var(--teal); font-weight: 900; text-decoration: none; }

.site-footer { padding: 58px 0 28px; background: #111416; color: #cbd2d4; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1.25fr .8fr 1fr; gap: 38px; }
.footer-grid h3 { margin-bottom: 14px; color: var(--white); font-family: Arial, sans-serif; font-size: .82rem; letter-spacing: .12em; }
.footer-grid ul { margin: 0; padding: 0; list-style: none; }
.footer-grid li { margin: 7px 0; }
.footer-grid a { color: #cbd2d4; text-decoration: none; }
.footer-grid a:hover { color: var(--orange); }
.footer-brand p {
  width: min(250px, 100%);
  margin-bottom: 0;
  color: #f0f3f3;
  font-family: "SignPainter", "Brush Script MT", "Marker Felt", cursive;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.12;
  text-align: center;
  text-shadow: 0 2px 0 rgba(0,0,0,.45);
}
.footer-logo { display: block; width: min(250px, 100%); height: auto; margin-bottom: 18px; padding: 0; background: transparent; filter: drop-shadow(0 1px 0 rgba(255,255,255,.35)); }
.footer-bottom { margin-top: 42px; padding-top: 20px; border-top: 1px solid #343b3e; font-size: .78rem; }

.mobile-call { display: none; }

@media (max-width: 900px) {
  .menu-toggle { display: inline-grid; place-items: center; }
  .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    padding: 15px 20px 24px;
    background: var(--charcoal);
    box-shadow: 0 20px 30px rgba(0,0,0,.25);
  }
  .site-nav.open { display: grid; }
  .site-nav a { padding: 14px 7px; }
  .site-nav .nav-cta { margin: 8px 0 0; text-align: center; }
  .trust-list { grid-template-columns: repeat(3, 1fr); }
  .trust-list li:nth-child(4) { border-left: 1px solid rgba(255,255,255,.2); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-logo-panel { width: min(520px, 90%); margin: 0 auto; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .photo-placeholder { min-height: 320px; order: -1; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  body { font-size: 0.98rem; }
  .container { width: min(100% - 30px, 1160px); }
  .nav-wrap { min-height: 64px; gap: 14px; }
  .brand-logo { width: 165px; max-height: 54px; }
  .menu-toggle { width: 42px; height: 38px; font-size: 1.25rem; }
  .site-nav {
    inset: 64px 0 auto;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    padding: 10px 18px 18px;
  }
  .site-nav a {
    padding: 13px 8px;
    font-size: .8rem;
  }
  .site-nav .nav-cta {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  h1 { font-size: clamp(2.25rem, 11vw, 3.4rem); }
  h2 { font-size: clamp(1.85rem, 9vw, 2.75rem); }
  h3 { font-size: 1.18rem; }
  p { margin-bottom: 16px; }
  .eyebrow { margin-bottom: 9px; font-size: .72rem; letter-spacing: .15em; }

  .hero {
    padding: 46px 0 50px;
  }
  .hero-inner { gap: 30px; }
  .hero h1 { font-size: clamp(2.35rem, 12vw, 3.45rem); }
  .hero .lead {
    font-size: 1rem;
    line-height: 1.55;
  }
  .hero .eyebrow {
    font-size: .92rem;
    line-height: 1.3;
  }
  .page-saying {
    margin-bottom: 16px;
    padding-left: 11px;
    font-size: 1rem;
    line-height: 1.45;
  }
  .hero-logo-panel {
    width: min(440px, 100%);
    padding: 10px;
    box-shadow: 8px 8px 0 rgba(13,113,128,.38);
    transform: rotate(.5deg);
  }

  .page-hero {
    padding: 46px 0 42px;
  }
  .page-hero h1 {
    font-size: clamp(2.15rem, 10.5vw, 3.35rem);
  }
  .page-hero p {
    font-size: 1rem;
    line-height: 1.55;
  }
  .page-hero .page-saying {
    margin-bottom: 16px;
    font-size: 1rem;
  }

  .section { padding: 46px 0; }
  .section-heading { margin-bottom: 26px; }
  .section-heading p:last-child { line-height: 1.55; }
  .button-row {
    display: grid;
    gap: 11px;
    margin-top: 22px;
  }
  .btn {
    width: 100%;
    min-height: 50px;
    padding: 12px 18px;
  }
  .cta-icon { width: 28px; height: 20px; }

  .trust-list li {
    padding: 14px 8px;
    font-size: .68rem;
    line-height: 1.25;
  }

  .card-grid, .service-list, .review-grid, .region-grid, .form-grid {
    grid-template-columns: 1fr;
  }
  .field-full { grid-column: auto; }
  .service-card,
  .services-six .service-card,
  .review-card,
  .region-card {
    min-height: 0;
    padding: 22px;
  }
  .service-card::before { margin-bottom: 11px; }

  .split, .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .photo-placeholder {
    min-height: clamp(280px, 78vw, 390px);
    border-width: 7px;
    order: -1;
  }
  .home-page-photo img {
    object-fit: contain;
  }

  .service-map {
    padding: 0;
    border-width: 6px;
  }
  .service-map img {
    width: 100%;
    height: auto;
  }
  .service-area-callout {
    max-width: 100%;
    margin-top: 30px;
    padding: 24px 20px;
    font-size: 1.08rem;
  }

  .contact-card,
  .form-panel,
  .thank-you-panel {
    padding: 22px;
  }
  input, select, textarea {
    min-height: 52px;
    font-size: 1rem;
  }
  textarea { min-height: 150px; }

  .cta-band { padding: 28px 0; }
  .cta-inner { gap: 13px; }
  .cta-inner h2 {
    font-size: clamp(1.45rem, 7vw, 2.1rem);
    line-height: 1.08;
  }
  .cta-band::after { inset: 0 0 0 50%; opacity: .55; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .site-footer { padding: 42px 0 24px; }
  .footer-logo,
  .footer-brand p {
    width: min(220px, 100%);
    margin-inline: auto;
  }
  .footer-brand { text-align: center; }
  .footer-grid h3 { margin-bottom: 10px; }
  .footer-grid li { margin: 6px 0; }
  .footer-bottom { margin-top: 28px; }
}

@media (max-width: 620px) {
  body { padding-bottom: 62px; }
  .container { width: min(100% - 28px, 1160px); }
  .nav-wrap { min-height: 58px; }
  .brand-logo { width: 142px; height: auto; max-height: 48px; }
  .site-nav { inset: 58px 0 auto; max-height: calc(100vh - 58px); }
  .hero { padding-top: 40px; }
  .hero h1 { font-size: clamp(2.15rem, 12vw, 2.95rem); }
  .hero::after { display: none; }
  .hero-logo-panel { width: 100%; padding: 11px; box-shadow: 10px 10px 0 rgba(13,113,128,.42); }
  .button-row { display: grid; }
  .btn { width: 100%; }
  .trust-list { grid-template-columns: repeat(2, 1fr); }
  .trust-list li:nth-child(odd) { border-left: 1px solid rgba(255,255,255,.2); }
  .section-heading { display: block; }
  .section-heading .btn { margin-top: 15px; }
  .card-grid, .service-list, .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .service-card { min-height: 0; }
  .region-grid { grid-template-columns: 1fr; }
  .service-area-callout { margin-top: 32px; padding: 24px 20px; font-size: 1.1rem; }
  .service-map { min-height: 0; padding: 0; }
  .cta-band { padding: 28px 0; }
  .cta-inner { gap: 14px; }
  .cta-inner .btn { margin-top: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .mobile-call {
    position: fixed;
    z-index: 100;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    background: var(--orange);
    color: var(--black);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: .04em;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 -8px 25px rgba(0,0,0,.23);
  }
}

@media (max-width: 420px) {
  .container { width: min(100% - 24px, 1160px); }
  .brand-logo { width: 132px; }
  .menu-toggle { width: 40px; height: 36px; }
  .hero { padding: 34px 0 42px; }
  .hero h1 { font-size: clamp(2rem, 11.5vw, 2.65rem); }
  .page-hero { padding: 38px 0 36px; }
  .page-hero h1 { font-size: clamp(1.95rem, 10vw, 2.75rem); }
  h2 { font-size: clamp(1.65rem, 8.5vw, 2.35rem); }
  .section { padding: 38px 0; }
  .service-card,
  .services-six .service-card,
  .review-card,
  .region-card,
  .contact-card,
  .form-panel,
  .thank-you-panel {
    padding: 19px;
  }
  .photo-placeholder { min-height: 290px; border-width: 6px; }
  .cta-inner h2 { font-size: clamp(1.32rem, 6.8vw, 1.85rem); }
  .footer-logo,
  .footer-brand p { width: min(200px, 100%); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
