/* =========================================================
   PIA PAINTING LLC — Website Stylesheet
   Brand: Coral Red #E5393F | Navy Blue #132C57 | Sky Blue #A8D6F2
          Warm White #F9F7F2 | Soft Beige #E8D8C7
   Fonts: Poppins (headings) / Inter (body)
   ========================================================= */

:root {
  --coral: #E5393F;
  --coral-dark: #C82E33;
  --navy: #132C57;
  --navy-soft: #1D3F79;
  --sky: #A8D6F2;
  --warm-white: #F9F7F2;
  --beige: #E8D8C7;
  --white: #FFFFFF;
  --ink: #1B2430;
  --muted: #5C6470;

  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;

  --shadow-soft: 0 10px 30px rgba(19, 44, 87, 0.10);
  --shadow-card: 0 6px 18px rgba(19, 44, 87, 0.08);
  --shadow-btn: 0 8px 20px rgba(229, 57, 63, 0.35);

  --font-head: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--warm-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 .5em;
}

h2.section-title {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 700;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--coral);
  background: rgba(229,57,63,0.08);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

section { padding: 88px 0; }
@media (max-width: 640px) {
  section { padding: 56px 0; }
}

.bg-white { background: var(--white); }
.bg-warm { background: var(--warm-white); }
.bg-navy { background: var(--navy); color: var(--warm-white); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-beige { background: var(--beige); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover { background: var(--coral-dark); box-shadow: 0 10px 26px rgba(229,57,63,0.45); }

.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-outline-light:hover { background: var(--white); color: var(--navy); }

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { background: var(--sky); }

.btn-sm { padding: 10px 20px; font-size: .9rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  /* Note: intentionally not using backdrop-filter here — it would create a
     new containing block for descendant position:fixed elements (the mobile
     nav panel), breaking full-viewport coverage on mobile. */
  background: rgba(249,247,242,0.98);
  border-bottom: 1px solid rgba(19,44,87,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 24px;
  max-width: 1360px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 52px; width: auto; }
.brand-word {
  font-family: var(--font-head);
  line-height: 1.1;
}
.brand-word strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: .01em;
}
.brand-word span {
  display: block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--coral);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 19px;
  flex-shrink: 1;
  min-width: 0;
}
.main-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .88rem;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--coral); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  font-size: .88rem;
  white-space: nowrap;
}
.phone-link svg { flex-shrink: 0; }
.brand { flex-shrink: 0; }

.nav-toggle {
  display: none;
  position: relative;
  z-index: 160;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 3px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1080px) {
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 150;
    background: var(--warm-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 96px 28px 28px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform .25s ease;
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 1.15rem; }
  .nav-toggle { display: block; }
}

@media (max-width: 640px) {
  .phone-link span { display: none; }
  /* Free Estimate CTA already lives in the fixed bottom bar on mobile */
  .header-actions > a.btn-primary { display: none; }
  .header-inner { padding: 10px 18px; }
  .brand img { height: 42px; }
  .brand-word strong { font-size: .92rem; }
  .brand-word span { font-size: .6rem; }
}

/* ---------- Seasonal Banner ---------- */
.season-banner {
  background: var(--navy);
  color: var(--warm-white);
}
.season-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 12px 24px;
  text-align: center;
  font-size: .92rem;
}
.season-banner strong { color: var(--sky); }
.season-banner .btn { padding: 8px 18px; font-size: .85rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 90px;
  background:
    radial-gradient(circle at 85% 10%, rgba(168,214,242,0.5), transparent 55%),
    linear-gradient(180deg, #FFFFFF 0%, var(--warm-white) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding: 40px 0 60px; }
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 800;
}
.hero h1 .accent { color: var(--coral); }
.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 30px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid rgba(19,44,87,0.1);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-card);
}
.trust-pill svg { color: var(--coral); flex-shrink: 0; }

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.hero-card {
  position: relative;
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 30px;
  width: 100%;
  max-width: 520px;
}
.house-illustration { width: 100%; height: auto; display: block; border-radius: 12px; }

.hero-card-brand {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: 999px;
  padding: 5px 12px 5px 5px;
  box-shadow: var(--shadow-card);
}
.hero-card-brand img { width: 34px; height: 34px; }
.hero-card-brand span { display: flex; flex-direction: column; line-height: 1.15; }
.hero-card-brand strong { font-family: var(--font-head); font-size: .74rem; font-weight: 800; color: var(--navy); }
.hero-card-brand em { font-style: normal; font-size: .66rem; font-weight: 700; color: var(--coral); }
.hero-card-brand b { font-family: var(--font-head); font-size: .52rem; font-weight: 700; letter-spacing: .04em; color: var(--muted); }
@media (max-width: 480px) {
  .hero-card-brand img { width: 28px; height: 28px; }
  .hero-card-brand strong { font-size: .66rem; }
  .hero-card-brand em, .hero-card-brand b { font-size: .58rem; }
}

.hero-tag {
  position: absolute;
  bottom: 42px;
  padding: 5px 14px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--white);
  z-index: 2;
}
.hero-tag.before-tag { left: 46px; background: rgba(19,44,87,0.85); }
.hero-tag.after-tag { right: 46px; background: var(--coral); }

.hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  margin-left: 8px;
  background: var(--coral);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 13px 20px;
  box-shadow: var(--shadow-btn);
  font-family: var(--font-head);
}
.hero-badge svg { flex-shrink: 0; }
.hero-badge strong { display: block; font-size: 1.3rem; line-height: 1; }
.hero-badge span { font-size: .68rem; text-transform: uppercase; letter-spacing: .07em; }

.hero-services-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  max-width: 460px;
}
.hero-service-pill {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid rgba(19,44,87,0.08);
  box-shadow: var(--shadow-card);
  border-radius: 999px;
  padding: 8px 14px 8px 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .74rem;
  color: var(--navy);
  white-space: nowrap;
}
.hero-service-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-service-icon.navy { background: var(--navy); color: var(--white); }
.hero-service-icon.coral { background: var(--coral); color: var(--white); }
.hero-service-icon.sky { background: var(--sky); color: var(--navy); }
@media (max-width: 560px) {
  .hero-services-row { justify-content: center; }
  .hero-service-pill { font-size: .68rem; }
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(19,44,87,0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(229,57,63,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--coral);
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: .95rem; margin-bottom: 16px; }
.service-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .88rem;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card:hover .service-link { color: var(--coral); }

/* ---------- Why Us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; gap: 36px; } }

.why-list {
  display: grid;
  gap: 20px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-check {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-item h4 { margin: 0 0 4px; font-size: 1.05rem; }
.why-item p { margin: 0; color: var(--muted); font-size: .93rem; }

.why-visual {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.why-visual img { width: 150px; margin: 0 auto 18px; }
.why-visual h3 { color: var(--white); font-size: 1.5rem; }
.why-visual p { color: var(--sky); margin-bottom: 22px; }

/* ---------- Before / After ---------- */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
@media (max-width: 780px) { .ba-grid { grid-template-columns: 1fr; } }

.ba-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-card);
}
.ba-card-label {
  display: block;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 5/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  user-select: none;
  touch-action: pan-y;
}
.ba-slider .ba-after,
.ba-slider .ba-before {
  position: absolute;
  inset: 0;
  overflow: hidden;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
}
.ba-slider .ba-after img,
.ba-slider .ba-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-slider .ba-after {
  background: linear-gradient(135deg, var(--sky), #DCEEFA);
  color: var(--navy);
}
.ba-slider .ba-before {
  background: linear-gradient(135deg, #C9CDD3, #9AA1AC);
  color: var(--navy);
  clip-path: inset(0 50% 0 0);
}
/* Fallback styling for placeholder text content (used before real photos exist) */
.ba-slider .ba-after span:not(.ba-tag),
.ba-slider .ba-before span:not(.ba-tag) {
  display: block;
  padding: 20px 9%;
}

.eyebrow-mascot {
  display: inline-block;
  height: 18px;
  width: auto;
  vertical-align: -4px;
  margin-right: 6px;
}

/* Crew in action */
.crew-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 780px) { .crew-grid { grid-template-columns: 1fr; } }
.crew-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
  background: var(--navy);
}
.crew-photo img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  opacity: .96;
}
.crew-photo figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(19,44,87,0.85), transparent);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .88rem;
}
.ba-slider .ba-before span.small,
.ba-slider .ba-after span.small { font-size: .85rem; font-weight: 500; opacity: .75; max-width: 260px;}
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--white);
  transform: translateX(-50%);
  cursor: ew-resize;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.5);
}
.ba-handle::after {
  content: '⟷';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 46px;
  height: 46px;
  background: var(--coral);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-btn);
}
.ba-tag {
  position: absolute;
  top: 16px;
  padding: 5px 14px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  background: rgba(19,44,87,0.85);
  color: var(--white);
  z-index: 2;
}
.ba-tag.before-tag { left: 16px; }
.ba-tag.after-tag { right: 16px; }

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  counter-reset: step;
}
@media (max-width: 980px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

.process-step {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  box-shadow: var(--shadow-card);
  text-align: left;
}
.process-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.6rem;
  color: rgba(229,57,63,0.25);
  margin-bottom: 10px;
}
.process-step h4 { font-size: 1rem; margin-bottom: 6px; }
.process-step p { font-size: .87rem; color: var(--muted); margin: 0; }

/* ---------- Testimonials ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px dashed rgba(19,44,87,0.25);
  position: relative;
}
.review-stars { color: var(--coral); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-card p.quote {
  font-style: italic;
  color: var(--navy);
  margin-bottom: 16px;
}
.review-name { font-family: var(--font-head); font-weight: 700; font-size: .9rem; }
.review-placeholder-tag {
  position: absolute;
  top: -12px;
  right: 18px;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.reviews-cta {
  margin-top: 40px;
  text-align: center;
}

/* ---------- Service Area ---------- */
.area-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 900px) { .area-wrap { grid-template-columns: 1fr; gap: 30px; } }

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.area-chip {
  background: var(--white);
  border: 1px solid rgba(19,44,87,0.12);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
}
.area-visual {
  max-width: 420px;
  margin: 0 auto;
}
.area-map {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  display: block;
}

/* ---------- Contact ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 50px;
}
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; } }

.contact-info-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 34px;
}
.contact-info-card .info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.contact-info-card .info-row svg { color: var(--sky); flex-shrink: 0; margin-top: 3px; }
.contact-info-card .info-row strong { display: block; font-family: var(--font-head); font-size: .95rem; }
.contact-info-card .info-row span, .contact-info-card .info-row a { color: rgba(255,255,255,0.8); font-size: .92rem; }
.social-row { display: flex; gap: 12px; margin-top: 26px; }
.social-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.social-btn:hover { background: var(--coral); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-soft);
  color: var(--ink);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: 6px;
  color: var(--navy);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(19,44,87,0.15);
  font-family: var(--font-body);
  font-size: .95rem;
  background: var(--warm-white);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--coral);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 10px; text-align: center; }
.form-success {
  display: none;
  background: rgba(168,214,242,0.35);
  border: 1px solid var(--sky);
  color: var(--navy);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  margin-bottom: 16px;
  font-weight: 600;
}
.form-success.show { display: block; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
.footer-brand img { height: 46px; }
.footer-brand strong { color: var(--white); font-family: var(--font-head); font-size: 1.05rem; }
.footer-col h5 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; font-size: .9rem; }
.footer-col ul li a:hover { color: var(--sky); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  font-size: .82rem;
}
.footer-bottom a:hover { color: var(--sky); }

.crew-mascot-note {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: left;
}
.crew-mascot-note p {
  max-width: 360px;
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  margin: 0;
}

/* ---------- Mascot illustrations ---------- */
.mascot-img { display: block; }
.mascot-standing-lg { width: 190px; margin: 0 auto 18px; }
.mascot-inline-sm { width: 46px; }
.mascot-seal { width: 84px; margin: 0 auto 14px; }

/* ---------- Misc ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease;
  z-index: 90;
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

.sticky-call {
  display: none;
}
@media (max-width: 640px) {
  .sticky-call {
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 95;
    background: var(--white);
    border-top: 1px solid rgba(19,44,87,0.1);
    padding: 10px 14px;
    gap: 10px;
    box-shadow: 0 -6px 18px rgba(19,44,87,0.12);
  }
  .sticky-call .btn { flex: 1; }
  body { padding-bottom: 68px; }
}
