:root {
  --navy: #002244;
  --navy-2: #01305f;
  --orange: #ff4f00;
  --orange-dark: #d94300;
  --white: #ffffff;
  --off-white: #f4f6f9;
  --gray: #6b7787;
  --line: rgba(0, 34, 68, 0.1);
  --shadow: 0 12px 30px rgba(0, 34, 68, 0.12);
  --shadow-sm: 0 4px 14px rgba(0, 34, 68, 0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Roboto", "Segoe UI", sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, .brand span {
  font-family: "Fjalla One", "Arial Narrow", sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.12;
}

.container { width: min(1160px, 92vw); margin: 0 auto; }

/* ---------- header ---------- */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
}
.site-header .container { width: 100%; max-width: 100%; padding: 0 24px; }
.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { height: 58px; width: auto; display: block; }
.brand { flex-shrink: 0; }
.brand span {
  text-transform: uppercase;
  font-size: 1.05rem;
  color: var(--navy);
  white-space: nowrap;
}
.nav {
  display: flex;
  gap: 2px;
  font-size: 0.94rem;
  margin: 0 auto;
  align-items: center;
}
.nav-item { position: relative; }
.nav > a, .nav-item > a {
  display: inline-block;
  padding: 8px 10px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
}
.nav a.active, .nav a:hover { background: rgba(255, 79, 0, 0.1); color: var(--orange-dark); }
.header-right { display: flex; align-items: center; gap: 14px; white-space: nowrap; }
.header-phone { font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 6px; }
.btn.contact-cta {
  background: var(--orange);
  color: var(--white);
  border-radius: 8px;
  padding: 11px 18px;
  border: 1px solid var(--orange);
  box-shadow: var(--shadow-sm);
}
.btn.contact-cta:hover { background: var(--orange-dark); border-color: var(--orange-dark); }

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  display: none;
  min-width: 230px;
  box-shadow: var(--shadow);
  z-index: 40;
}
.dropdown a { display: block; padding: 9px 12px; border-radius: 8px; white-space: nowrap; font-weight: 500; }
@media (min-width: 981px) {
  .nav-item:hover .dropdown, .nav-item:focus-within .dropdown { display: grid; gap: 2px; }
}

/* hamburger toggle (hidden on desktop) */
.nav-toggle { display: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 8px;
  border: 2px solid transparent;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn.primary { background: var(--orange); color: var(--white); box-shadow: var(--shadow-sm); }
.btn.primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn.secondary { border-color: var(--white); color: var(--white); background: transparent; }
.btn.secondary:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-2px); }
.button-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }

/* ---------- hero ---------- */
.hero { padding: 64px 0 56px; }
.hero.has-bg {
  background:
    linear-gradient(120deg, rgba(0, 34, 68, 0.9), rgba(0, 34, 68, 0.66)),
    url("assets/photos/hero.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
}
.hero.has-bg h1, .hero.has-bg p { color: var(--white); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero h1 { font-size: clamp(2.3rem, 4vw, 3.6rem); margin: 10px 0 14px; }
.hero p { font-size: 1.08rem; }
.hero-trust { margin-top: 18px; font-size: 0.92rem; opacity: 0.92; }
.hero .btn.primary { background: var(--orange); }
.hero .btn.secondary { border-color: rgba(255,255,255,0.85); }
/* centered hero (no inline form) */
.hero-centered { padding: 92px 0 84px; text-align: center; }
.hero-centered .hero-inner { max-width: 760px; margin: 0 auto; }
.hero-centered .button-row { justify-content: center; }
.hero-centered .hero-trust { opacity: 0.95; }

/* ---------- page hero (interior pages) ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--navy), var(--navy-2));
  color: var(--white);
  padding: 56px 0;
}
.page-hero h1 { font-size: clamp(2rem, 3.4vw, 3rem); margin: 8px 0 10px; color: var(--white); }
.page-hero p { max-width: 640px; color: rgba(255,255,255,0.9); }
.page-hero .hero-grid { align-items: center; }
.page-hero .btn.secondary { border-color: rgba(255,255,255,0.85); }

/* ---------- sections ---------- */
.section { padding: 64px 0; }
.section.band { background: var(--off-white); }
.section-title { margin-bottom: 30px; }
.section-title.center { text-align: center; }
.section-title h2 { margin: 0; font-size: clamp(1.7rem, 2.6vw, 2.3rem); color: var(--navy); }
.center { text-align: center; }
.muted { color: var(--gray); margin-top: 16px; }
.lead { font-size: 1.2rem; }

/* ---------- cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.card-grid.three { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card {
  background: var(--white);
  padding: 26px;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.card h3 { margin: 0 0 10px; color: var(--navy); font-size: 1.3rem; }
.card p:last-child { margin-bottom: 0; }
.card p { color: var(--gray); }

/* service cards (linked) */
.service-card {
  background: var(--white);
  padding: 24px;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card h3 { margin: 0; color: var(--navy); font-size: 1.3rem; }
.service-card p { color: var(--gray); margin: 0; font-size: 0.96rem; }
.service-card .arrow { color: var(--orange-dark); font-weight: 700; margin-top: auto; }

/* ---------- steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.step {
  text-align: center;
  padding: 28px 22px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.step-num {
  display: inline-grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: "Fjalla One", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 14px;
}
.step h3 { margin: 0 0 8px; color: var(--navy); }
.step p { color: var(--gray); margin: 0; }

/* ---------- reviews ---------- */
.review {
  background: var(--white);
  padding: 26px;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review p { margin: 0; color: var(--navy); font-style: italic; }
.review .stars { color: var(--orange); letter-spacing: 2px; font-size: 1.1rem; }
.review strong { color: var(--gray); font-family: "Fjalla One", sans-serif; letter-spacing: 0.5px; }
.reviews-widget-placeholder { margin-top: 24px; text-align: center; color: var(--gray); border-style: dashed; }

/* ---------- notice ---------- */
.notice {
  background: var(--white);
  border-left: 5px solid var(--orange);
  padding: 24px 26px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.notice h3 { margin: 0 0 6px; color: var(--navy); }
.notice p { margin: 0; color: var(--gray); }

/* ---------- images ---------- */
.service-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* ---------- carousel ---------- */
.carousel { position: relative; }
.carousel-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 6vw 20px;
}
.carousel-track::-webkit-scrollbar { height: 8px; }
.carousel-track::-webkit-scrollbar-thumb { background: rgba(0,34,68,0.2); border-radius: 999px; }
.carousel-slide {
  min-width: min(680px, 86vw);
  scroll-snap-align: center;
  opacity: 0.45;
  filter: blur(1.5px);
  transform: scale(0.96);
  transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}
.carousel-slide img { border-radius: 16px; height: 440px; width: 100%; object-fit: cover; background: var(--navy); }
.carousel-slide.is-active { opacity: 1; filter: blur(0); transform: scale(1); }
.carousel-controls {
  position: absolute; top: 50%; left: 0; right: 0;
  display: flex; justify-content: space-between;
  transform: translateY(-50%); pointer-events: none;
}
.carousel-btn {
  pointer-events: auto; border: none;
  background: var(--white); color: var(--navy);
  width: 44px; height: 44px; border-radius: 50%;
  box-shadow: var(--shadow); font-size: 1.5rem;
  display: grid; place-items: center; cursor: pointer;
}
.carousel-btn:hover { background: var(--orange); color: var(--white); }

/* ---------- before / after compare ---------- */
.ba-compare {
  --pos: 50%;
  position: relative;
  width: min(680px, 100%);
  margin: 0 auto;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  touch-action: pan-y;
  cursor: ew-resize;
  background: var(--off-white);
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.ba-compare *, .ba-compare *::selection { -webkit-user-select: none; user-select: none; }
.ba-compare img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  user-select: none;
  pointer-events: none;
}
.ba-compare .ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-before {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
  -webkit-clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}
.ba-label {
  position: absolute;
  top: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: "Fjalla One", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.6px;
  color: var(--white);
  background: rgba(0, 34, 68, 0.72);
  pointer-events: none;
}
.ba-label-before { left: 14px; }
.ba-label-after { right: 14px; background: rgba(255, 79, 0, 0.9); }
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 4px;
  transform: translateX(-50%);
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(0, 34, 68, 0.15);
  display: grid;
  place-items: center;
  cursor: ew-resize;
}
.ba-handle:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
.ba-grip {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow);
}
.ba-grip::before,
.ba-grip::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.ba-grip::before { border-right: 8px solid var(--orange); }
.ba-grip::after { border-left: 8px solid var(--orange); }

/* ---------- banner ---------- */
.banner { background: var(--navy); color: var(--white); padding: 48px 0; }
.banner-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.banner h2 { margin: 0 0 6px; color: var(--white); max-width: 640px; }
.banner p { margin: 0; color: rgba(255,255,255,0.85); }

/* ---------- forms ---------- */
.form { display: grid; gap: 14px; position: relative; z-index: 1; }
.form-card {
  position: relative;
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  backdrop-filter: blur(22px) saturate(180%);
  padding: 28px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 20px 50px rgba(0, 34, 68, 0.28),
              inset 0 1px 0 rgba(255, 255, 255, 0.85),
              inset 0 -1px 0 rgba(255, 255, 255, 0.25);
  color: var(--navy);
  overflow: hidden;
}
/* glossy specular sheen */
.form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.12) 34%,
    rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
  z-index: 0;
}
.form-card h3 { position: relative; z-index: 1; margin: 0 0 14px; color: var(--navy); font-size: 1.5rem; }
.input { display: flex; flex-direction: column; gap: 6px; font-weight: 500; font-size: 0.92rem; }
.input input, .input select, .input textarea {
  padding: 12px 14px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 2px rgba(0, 34, 68, 0.06);
  font-family: inherit;
  font-size: 1rem;
  color: var(--navy);
}
.input input::placeholder, .input textarea::placeholder { color: rgba(0, 34, 68, 0.45); }
.input input:focus, .input select:focus, .input textarea:focus {
  outline: 2px solid var(--orange); border-color: var(--orange);
  background: rgba(255, 255, 255, 0.9);
}
.input textarea { min-height: 120px; resize: vertical; }
.form-note { margin: 12px 0 0; font-size: 0.88rem; color: var(--gray); }

/* ---------- Jobber embed card ---------- */
.embed-card {
  background: var(--white);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
  min-height: 220px;
}
.embed-card iframe { width: 100% !important; border: 0; }

/* ---------- contact block ---------- */
.contact-block h3 { margin: 20px 0 4px; color: var(--navy); }
.contact-block h3:first-child { margin-top: 0; }
.contact-block .big { font-size: 1.6rem; font-family: "Fjalla One", sans-serif; }
.contact-block .big a { color: var(--orange-dark); }
.socials { display: flex; gap: 14px; }
.socials a { color: var(--orange-dark); font-weight: 700; }

/* contact page — dark photo backdrop so the glass form reads */
.contact-section {
  background:
    linear-gradient(120deg, rgba(0, 34, 68, 0.92), rgba(0, 34, 68, 0.7)),
    url("assets/photos/hero.jpg");
  background-size: cover;
  background-position: center;
}
.contact-section .contact-block { color: rgba(255, 255, 255, 0.92); }
.contact-section .contact-block h3 { color: #fff; }
.contact-section .contact-block a { color: #ffb38a; }
.contact-section .contact-block .notice {
  background: rgba(255, 255, 255, 0.1);
  border-left-color: var(--orange);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.contact-section .contact-block .notice p { color: #fff; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.85); padding: 48px 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
}
.footer-logo {
  width: 168px;
  height: auto;
  margin-bottom: 14px;
  background: var(--white);
  padding: 12px 16px;
  border-radius: 12px;
}
.footer-tag { max-width: 300px; }
.footer-grid h4 { margin: 0 0 12px; color: var(--white); font-size: 1.2rem; }
.footer-link { display: block; padding: 4px 0; color: rgba(255,255,255,0.82); }
.footer-link:hover { color: var(--orange); }
.site-footer a:hover { color: var(--orange); }
.footer-grid .btn.secondary { margin-top: 12px; border-color: rgba(255,255,255,0.6); }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 32px; padding-top: 18px;
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
}
.footer-legal p { margin: 0; }

/* ---------- roofing page: system layers, OC badge, photo grid ---------- */
.system-list { display: grid; gap: 14px; align-content: center; }
.tp-diagram {
  aspect-ratio: auto;
  object-fit: contain;
  background: var(--white);
  padding: 16px;
  border: 1px solid var(--line);
}
.oc-badge {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 30px;
  box-shadow: var(--shadow-sm);
}
.oc-badge img { width: 128px; height: auto; flex-shrink: 0; }
.oc-badge h3 { margin: 0 0 6px; color: var(--navy); font-size: 1.4rem; }
.oc-badge p { margin: 0; color: var(--gray); max-width: 640px; }
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.photo-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.warranty-chart { margin-top: 28px; text-align: center; }
.warranty-chart img {
  display: block;
  margin: 0 auto;
  max-width: 940px;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  box-shadow: var(--shadow-sm);
}

/* ---------- card icons ---------- */
.card-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 16px;
  background: var(--navy);
  color: var(--orange);
  box-shadow: 0 6px 16px rgba(0, 34, 68, 0.18);
}
.card-icon svg { width: 26px; height: 26px; }

/* ---------- shingle color swatches ---------- */
.swatch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 16px;
}
.swatch {
  text-align: center;
  font-weight: 500;
  color: var(--navy);
  font-size: 0.9rem;
}
.swatch span {
  display: block;
  height: 74px;
  border-radius: 12px;
  margin-bottom: 8px;
  border: 1px solid rgba(0, 34, 68, 0.12);
  box-shadow: var(--shadow-sm);
}

/* ---------- centered service grids (symmetrical last row) ---------- */
.svc-grid { display: flex; flex-wrap: wrap; justify-content: center; }
.svc-grid .service-card { flex: 1 1 240px; max-width: 300px; }

/* ---------- warning signs ---------- */
.signs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.signs li {
  flex: 1 1 260px;
  max-width: 340px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 12px;
  padding: 14px 16px;
  font-weight: 500;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.signs li:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.signs .sign-ico {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 79, 0, 0.12);
  color: var(--orange);
  display: grid;
  place-items: center;
}
.signs .sign-ico svg { width: 20px; height: 20px; }

/* ---------- feature list (areas served) ---------- */
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}
.feature-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 500;
  color: var(--navy);
}

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 2px 20px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  cursor: pointer;
  font-family: "Fjalla One", sans-serif;
  font-size: 1.12rem;
  color: var(--navy);
  padding: 15px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--orange); font-size: 1.5rem; line-height: 1; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin: 0 0 16px; color: var(--gray); }

/* ---------- wide dropdown (service area) ---------- */
.dropdown-wide { min-width: 320px; }
@media (min-width: 981px) {
  .nav-item:hover .dropdown-wide,
  .nav-item:focus-within .dropdown-wide { grid-template-columns: 1fr 1fr; }
}

/* ---------- floating call button ---------- */
.phone-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(0, 34, 68, 0.4);
  z-index: 80;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.phone-fab svg { width: 28px; height: 28px; }
.phone-fab:hover {
  background: var(--orange-dark);
  box-shadow: 0 14px 32px rgba(0, 34, 68, 0.5);
  animation: phone-shake 0.6s ease-in-out infinite;
}
.phone-fab:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; }
@keyframes phone-shake {
  0%, 100% { transform: rotate(0deg); }
  15% { transform: rotate(-18deg) scale(1.05); }
  30% { transform: rotate(14deg) scale(1.05); }
  45% { transform: rotate(-12deg) scale(1.05); }
  60% { transform: rotate(9deg) scale(1.05); }
  75% { transform: rotate(-6deg) scale(1.05); }
}
@media (prefers-reduced-motion: reduce) {
  .phone-fab:hover { animation: none; transform: scale(1.08); }
}

/* ---------- tag ---------- */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 79, 0, 0.14);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.page-hero .tag, .hero.has-bg .tag { background: rgba(255,79,0,0.25); color: #ffd9c7; }

/* ---------- centered lite hero (overview pages) ---------- */
.hero-lite { padding: 46px 0; }
.hero-lite .container { text-align: center; }
.hero-lite p { max-width: 620px; margin-left: auto; margin-right: auto; }

/* ---------- responsive: mobile hamburger nav ---------- */
@media (max-width: 980px) {
  .header-inner { flex-wrap: wrap; align-items: center; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    margin-left: auto;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
  }
  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav, .header-right { display: none; width: 100%; }
  .site-header.nav-open .nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin: 10px 0 0;
    gap: 2px;
  }
  .site-header.nav-open .header-right {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }
  .header-right .header-phone { justify-content: center; }
  .header-right .contact-cta { text-align: center; justify-content: center; }
  .nav > a, .nav-item > a { padding: 12px 12px; border-radius: 8px; }
  .nav-item > a { display: flex; justify-content: space-between; align-items: center; }
  .nav-item > a::after { content: "\25be"; opacity: 0.6; }
  .nav-item.open > a::after { content: "\25b4"; }
  .dropdown {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 8px 16px;
    min-width: auto;
  }
  .nav-item.open .dropdown { display: grid; gap: 2px; }
  .dropdown-wide { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr; }
  .notice { flex-direction: column; align-items: flex-start; }
}
