/* ==========================================================================
   Presley Roofing — Design tokens
   ========================================================================== */
:root {
  --red: #ED2E38;
  --red-dark: #C81F28;
  --red-darker: #A5171E;
  --charcoal: #201F20;
  --charcoal-soft: #373435;
  --ink: #232223;
  --body-text: #4B4A4D;
  --muted: #78767A;
  --bg: #FFFFFF;
  --bg-soft: #F7F6F5;
  --bg-soft-2: #F1EFEE;
  --border: #E6E4E2;
  --white: #FFFFFF;

  --font-display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --container: 1220px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(32,31,32,0.08), 0 1px 2px rgba(32,31,32,0.06);
  --shadow-md: 0 8px 24px rgba(32,31,32,0.10);
  --shadow-lg: 0 20px 48px rgba(32,31,32,0.16);

  --header-h: 76px;
  --mobile-bar-h: 58px;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  color-scheme: light only;
  background: #FFFFFF;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body-text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--mobile-bar-h);
}

img { max-width: 100%; display: block; height: auto; }
main { background: #FFFFFF; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 5.5vw, 3.4rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
.lede { font-size: 1.15rem; color: var(--body-text); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.9em;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}

.section { padding: 64px 0; background: #FFFFFF; }
.section-head { max-width: 680px; margin: 0 0 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--charcoal); color: #D8D6D5; }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .eyebrow { color: var(--red); }
.section-dark p { color: #C7C4C3; }

@media (min-width: 720px) {
  .section { padding: 92px 0; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color .15s ease;
}
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--charcoal); }
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn-dark:hover { background: #0e0d0e; }
.btn-block { width: 100%; }
.btn:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo { height: 56px; width: auto; }

.main-nav {
  display: none;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--ink);
  padding: 8px 2px;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.main-nav a[aria-current="page"] { color: var(--red); }

.header-actions { display: none; align-items: center; gap: 18px; flex-shrink: 0; }
.header-phone {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--ink);
  white-space: nowrap;
}
.header-phone:hover { color: var(--red); }
.fb-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  color: var(--muted);
  border: 1px solid var(--border);
  transition: color .15s ease, border-color .15s ease;
}
.fb-link:hover { color: var(--red); border-color: var(--red); }
.fb-link svg { width: 16px; height: 16px; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 19px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav-panel {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--white);
  z-index: 490;
  overflow-y: auto;
  padding: 8px 20px 40px;
}
.mobile-nav-panel.is-open { display: block; }
.mobile-nav-panel a {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  padding: 16px 4px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-panel a[aria-current="page"] { color: var(--red); }
.mobile-nav-panel .btn { margin-top: 22px; }
.mobile-nav-fb { display: flex; align-items: center; gap: 10px; padding: 18px 4px 4px; color: var(--muted); font-weight: 600; font-size: 0.95rem; }
.mobile-nav-fb svg { width: 18px; height: 18px; }

@media (min-width: 1000px) {
  .main-nav { display: flex; align-items: center; gap: 26px; }
  .header-actions { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav-panel { display: none !important; }
}

/* ==========================================================================
   Mobile sticky call bar
   ========================================================================== */
.mobile-call-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 600;
  height: var(--mobile-bar-h);
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
  box-shadow: 0 -6px 18px rgba(32,31,32,0.18);
}
.mobile-call-bar svg { width: 19px; height: 19px; }
.mobile-call-bar:active { background: var(--red-dark); }
@media (min-width: 1000px) {
  .mobile-call-bar { display: none; }
  body { padding-bottom: 0; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  color: var(--white);
  display: flex;
  align-items: flex-end;
  min-height: 78vh;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,19,20,0.55) 0%, rgba(20,19,20,0.35) 32%, rgba(20,19,20,0.78) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 130px;
  padding-bottom: 78px;
  width: 100%;
}
.hero h1 { color: var(--white); max-width: 780px; margin-bottom: 0.4em; }
.hero-sub { font-size: 1.15rem; max-width: 560px; color: #F1F0EF; margin-bottom: 1.7em; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.hero-phone-line {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-phone-line a { color: var(--white); border-bottom: 2px solid var(--red); }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 0.92rem;
  color: #E7E5E4;
  font-weight: 500;
}
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; }
.hero-trust-mobile { display: none; }
.btn-label-short { display: none; }

/* Mobile: size the hero to the photo's exact aspect ratio (no cropping),
   compact the overlay text to fit, move the trust line into its own bar below.
   Desktop (min-width: 1000px) is untouched. */
@media (max-width: 999px) {
  .hero {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
  .hero-inner {
    padding-top: 16px;
    padding-bottom: 18px;
    text-align: center;
  }
  .hero h1 {
    font-size: 1.5rem;
    line-height: 1.2;
    margin: 0 auto 0.35em;
    max-width: 300px;
  }
  .hero-sub {
    font-size: 0.85rem;
    line-height: 1.45;
    margin: 0 auto 0.9em;
    max-width: 300px;
  }
  .hero-ctas {
    justify-content: center;
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 0;
  }
  .hero-ctas .btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 11px 6px;
    font-size: 0.76rem;
    gap: 5px;
  }
  .hero-ctas .btn svg {
    width: 15px;
    height: 15px;
  }
  .btn-label-full {
    display: none;
  }
  .btn-label-short {
    display: inline;
  }
  .hero .hero-trust {
    display: none;
  }
  .hero-trust-mobile {
    display: block;
    background: var(--charcoal);
    padding: 16px 0 18px;
  }
  .hero-trust-mobile .hero-trust {
    justify-content: center;
    text-align: left;
    gap: 8px 18px;
    font-size: 0.85rem;
  }
}


.page-banner {
  position: relative;
  color: var(--white);
  background: var(--charcoal);
  padding: 150px 0 64px;
}
.page-banner .eyebrow { color: #FF6A63; }
.page-banner h1 { color: var(--white); max-width: 760px; }
.page-banner p { color: #C7C4C3; max-width: 620px; font-size: 1.08rem; }
.page-banner-media {
  position: absolute; inset: 0; z-index: 0;
}
.page-banner-media img { width: 100%; height: 100%; object-fit: cover; }
.page-banner-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,19,20,0.82), rgba(20,19,20,0.90));
}
.page-banner > .container { position: relative; z-index: 1; }

/* Roofline divider */
.roofline-divider {
  height: 46px;
  width: 100%;
  background: var(--bg);
  clip-path: polygon(0 100%, 8% 0, 16% 100%, 24% 0, 32% 100%, 40% 0, 48% 100%, 56% 0, 64% 100%, 72% 0, 80% 100%, 88% 0, 96% 100%, 100% 40%, 100% 100%);
}
.section-dark + .roofline-divider { background: var(--charcoal); }

/* ==========================================================================
   Services grid (cards)
   ========================================================================== */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 680px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .card-grid.cols-5 { grid-template-columns: repeat(5, 1fr); } }
@media (min-width: 1040px) { .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: #FDECEA;
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 25px; height: 25px; }
.service-card h3 { margin-bottom: 0.45em; font-size: 1.12rem; }
.service-card p { font-size: 0.96rem; margin-bottom: 0.9em; }
.card-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-link svg { width: 15px; height: 15px; transition: transform .15s ease; }
.card-link:hover svg { transform: translateX(3px); }

/* Why choose us */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 760px) { .trust-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .trust-grid.cols-5 { grid-template-columns: repeat(5, 1fr); } }
.trust-item { display: flex; gap: 16px; align-items: flex-start; }
.trust-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--red);
  border: 2px solid var(--red);
  border-radius: 50%;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-item h3 { font-size: 1.02rem; margin-bottom: 0.35em; }
.trust-item p { font-size: 0.93rem; margin: 0; }
.section-dark .trust-item p { color: #C7C4C3; }

/* ==========================================================================
   Photo gallery / grid
   ========================================================================== */
.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (min-width: 720px) { .photo-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
.photo-grid figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--bg-soft-2);
  aspect-ratio: 4 / 3;
}
.photo-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.photo-grid figure:hover img { transform: scale(1.045); }
.photo-tag {
  position: absolute;
  left: 12px; bottom: 12px;
  background: rgba(32,31,32,0.78);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  padding: 5px 11px;
  border-radius: 999px;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 40px;
}
@media (min-width: 640px) { .before-after { gap: 22px; } }
.ba-item { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; }
.ba-item img { width: 100%; height: 100%; object-fit: cover; }
.ba-label {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 999px;
  color: var(--white);
}
.ba-label.before { background: var(--charcoal-soft); }
.ba-label.after { background: var(--red); }

/* ==========================================================================
   About / Meet Kenny
   ========================================================================== */
.about-flex {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: stretch;
  gap: 36px;
  align-items: center;
}
@media (min-width: 860px) { .about-flex { grid-template-columns: 0.85fr 1.15fr; gap: 56px; } }
.about-photo { width: 100%; min-width: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.about-photo img { width: 100%; display: block; }
.about-photo.small { max-width: 340px; margin: 0 auto; }
.signature-line { font-family: 'Caveat', cursive; }

.stat-row { display: flex; flex-wrap: wrap; gap: 28px 40px; margin: 26px 0; }
.stat-row .stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.stat-row .stat span { font-size: 0.85rem; color: var(--muted); font-weight: 600; }

/* ==========================================================================
   Reviews
   ========================================================================== */
.stars { display: inline-flex; gap: 3px; color: var(--red); margin-bottom: 14px; }
.stars svg { width: 18px; height: 18px; }
.review-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 860px) { .review-grid { grid-template-columns: 1.3fr 1fr; grid-template-rows: auto auto; } }
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 28px;
}
.review-card.featured {
  background: var(--charcoal);
  color: #E7E5E4;
  grid-row: 1 / 3;
}
.review-card.featured .stars { color: #FF6A63; }
.review-card.featured p { color: #E7E5E4; font-size: 1.08rem; }
.review-card p { font-size: 0.97rem; }
.review-name { font-family: var(--font-display); font-weight: 800; font-size: 0.95rem; color: var(--ink); margin-top: 16px; }
.review-card.featured .review-name { color: var(--white); }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.03rem;
  color: var(--ink);
  cursor: pointer;
}
.faq-q svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--red); transition: transform .2s ease; }
.faq-q[aria-expanded="true"] svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.faq-a-inner { padding: 0 4px 22px; font-size: 0.98rem; }
.faq-q:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }

/* ==========================================================================
   Service area
   ========================================================================== */
.city-chip-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0; }
.city-chip {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.86rem;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--ink);
}
.section-dark .city-chip { border-color: rgba(255,255,255,0.18); color: #E7E5E4; }

/* ==========================================================================
   Contact / Forms
   ========================================================================== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 940px) { .contact-wrap { grid-template-columns: 0.85fr 1.15fr; } }
.contact-card {
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
}
.contact-card h3 { color: var(--white); }
.contact-card p { color: #C7C4C3; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.contact-method:first-of-type { border-top: none; margin-top: 8px; }
.contact-method svg { width: 22px; height: 22px; color: var(--red); flex-shrink: 0; }
.contact-method a, .contact-method span { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--white); }
.contact-method small { display: block; color: #A19E9D; font-weight: 500; font-size: 0.8rem; margin-top: 2px; font-family: var(--font-body); }

.form-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
}
@media (min-width: 640px) { .form-card { padding: 40px; } }
.form-row { display: grid; grid-template-columns: 1fr; gap: 18px; margin-bottom: 18px; }
@media (min-width: 560px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(237,46,56,0.14);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 16px;
}
.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  display: none;
}
.form-status.show { display: block; }
.form-status.info { background: #FDECEA; color: var(--red-darker); border: 1px solid #F7C6C4; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--charcoal); color: #B9B6B5; padding: 56px 0 26px; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (min-width: 760px) { .footer-top { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer-logo { height: 50px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-tagline { font-family: var(--font-display); font-weight: 700; font-size: 0.86rem; letter-spacing: 0.02em; color: #E7E5E4; }
.footer-col h4 { color: var(--white); font-family: var(--font-display); font-size: 0.86rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; color: #B9B6B5; font-size: 0.94rem; margin-bottom: 12px; }
.footer-col a:hover { color: var(--white); }
.footer-fb { display: inline-flex; align-items: center; gap: 9px; }
.footer-fb svg { width: 18px; height: 18px; }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  padding-top: 22px; font-size: 0.82rem; color: #85817F;
}

/* ==========================================================================
   Utility / reveal animation
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 860px) { .two-col { grid-template-columns: 1fr 1fr; gap: 56px; } }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.rounded-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }

.pill-list li { display: flex; gap: 10px; align-items: flex-start; padding: 9px 0; font-size: 0.98rem; }
.pill-list svg { width: 19px; height: 19px; color: var(--red); flex-shrink: 0; margin-top: 3px; }

.process-steps { display: grid; grid-template-columns: 1fr; gap: 22px; counter-reset: step; }
@media (min-width: 720px) { .process-steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .process-steps.cols-6 { grid-template-columns: repeat(3, 1fr); } }
.process-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  position: relative;
}
.process-step .step-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--white);
  background: var(--red);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.process-step h3 { font-size: 1.05rem; }
.process-step p { font-size: 0.94rem; margin: 0; }

.callout-banner {
  background: #FDECEA;
  border: 1px solid #F7C6C4;
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: 8px 0 40px;
}
.callout-banner svg { width: 26px; height: 26px; color: var(--red); flex-shrink: 0; }
.callout-banner p { margin: 0; color: var(--red-darker); font-weight: 600; font-size: 0.98rem; }

.disclaimer-box {
  background: var(--bg-soft);
  border-left: 3px solid var(--charcoal-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 22px;
  font-size: 0.9rem;
  color: var(--muted);
}

.cta-band {
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.3em; }
.cta-band p { color: #FDE4E2; margin-bottom: 26px; }
.cta-band .btn-primary { background: var(--white); color: var(--red); }
.cta-band .btn-primary:hover { background: var(--charcoal); color: var(--white); }
.cta-band .btn-secondary { border-color: rgba(255,255,255,0.6); }

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--red);
  color: var(--white);
  padding: 12px 18px;
  z-index: 999;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; top: 0; }
