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

:root {
  --teal: #0f7699;
  --teal-dark: #073b4c;
  --teal-deep: #042231;
  --teal-light: #1a5f7e;
  --cyan: #4bd6e8;
  --orange: #f2a23a;
  --orange-dark: #d98615;
  --red: #c0392b;
  --red-dark: #a82e21;
  --red-bright: #e0463a;
  --white: #ffffff;
  --off-white: #f4f8fa;
  --gray-light: #dbe8ed;
  --gray-mid: #8a98a3;
  --gray-text: #5d6b76;
  --ink: #14212b;

  --font-head: "Oswald", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  font-size: 17px;
  line-height: 1.65;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 840px; }

/* ---------- Header ---------- */
.site-header {
  background: var(--teal-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,.22);
}
.nav-wrap {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  font-family: var(--font-head);
  text-transform: uppercase;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-top {
  display: inline-block;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: .04em;
  color: var(--orange); /* fallback if gradient-clip unsupported */
  background: linear-gradient(to bottom, #ffd989 0%, var(--orange) 50%, var(--orange-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.5));
}
.brand-bottom {
  font-weight: 600;
  font-size: .76rem;
  letter-spacing: .2em;
  color: var(--white);
  margin-top: 4px;
  text-shadow: 0 1px 2px rgba(0,0,0,.4);
}
.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}
.site-nav { justify-self: center; display: flex; gap: 2px; align-items: center; flex-wrap: wrap; }
.site-nav a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 4px;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.site-nav a:hover { background: rgba(255,255,255,.1); color: var(--white); }

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(to bottom, #ffd989 0%, var(--orange) 50%, var(--orange-dark) 100%);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(217,134,21,.45), inset 0 1px 0 rgba(255,255,255,.3);
  text-shadow: 1px 1px 2px rgba(0,0,0,.4);
  transition: all .2s ease;
  white-space: nowrap;
}
.header-phone:hover {
  background: linear-gradient(to bottom, #ffe3a3 0%, #f7ad48 50%, var(--orange) 100%);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;            /* hidden on desktop */
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  background: transparent; border: 0; cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--white); border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Type scale ---------- */
h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--teal-dark);
  line-height: 1.1;
  letter-spacing: .02em;
  margin-bottom: 14px;
  text-shadow: 2px 2px 4px rgba(0,0,0,.08), 0 0 1px rgba(0,0,0,.05);
}
h1 { font-size: clamp(1.9rem, 4.2vw, 3rem); line-height: 1.12; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.05rem; letter-spacing: .03em; }
p { font-size: 1.2rem; }

.section-label {
  display: block;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0,0,0,.06);
}
.section-label.alt { color: var(--teal); }
.section-label.dark { color: var(--cyan); text-shadow: 1px 1px 2px rgba(0,0,0,.4); }

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(circle at top right, rgba(15,118,153,.35), var(--teal-deep) 55%), linear-gradient(180deg, var(--teal-deep) 0%, var(--teal-dark) 100%);
  color: var(--white);
  display: flex;
  align-items: stretch;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 48px;
  padding: 64px 0;
}
.hero-copy {}
.hero h1 {
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0,0,0,.45), 0 0 1px rgba(0,0,0,.25);
}
.hero-lead {
  font-size: 1.25rem;
  color: #e5f4f9;
  margin-bottom: 22px;
  line-height: 1.72;
  text-shadow: 1px 1px 2px rgba(0,0,0,.35);
  max-width: 540px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }

.page-hero-grid {
display: grid;
grid-template-columns: 1.1fr .9fr;
align-items: center;
gap: 48px;
}

.page-hero-image img {
width: 100%;
display: block;
border-radius: 18px;
box-shadow: 0 18px 40px rgba(0,0,0,.15);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}

.page-hero-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  border: 4px solid var(--white);
  box-shadow: 0 14px 32px rgba(0,0,0,.16);
}

/* ---------- Callouts ---------- */
.callout-dark {
  border-left: 3px solid var(--orange);
  background: rgba(255,255,255,.06);
  border-radius: 4px;
  padding: 14px 20px;
  margin-bottom: 24px;
  max-width: 540px;
}
.callout-dark p {
  color: rgba(255,255,255,.92);
  font-size: 1.06rem;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0,0,0,.3);
}
.callout-dark strong { color: var(--orange); }

.callout {
  background: var(--white);
  border-left: 4px solid var(--orange);
  border-radius: 4px;
  padding: 20px 26px;
  margin: 24px 0;
  box-shadow: 0 2px 10px rgba(7,59,76,.08);
}
.callout p {
  color: var(--ink);
  font-size: 1.1rem;
  margin: 0;
}
.callout strong { color: var(--teal-dark); }

/* ---------- Hero portrait ---------- */
.hero-portrait {}
.hero-portrait img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  border-radius: 22px;
  border: 4px solid var(--white);
  box-shadow: 0 18px 40px rgba(0,0,0,.4);
}
.hero-portrait-tag {
  margin-top: 12px;
  display: flex;
  align-items: center;
}
.hero-portrait-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--orange);
  text-shadow: 1px 1px 2px rgba(0,0,0,.3);
  margin-right: 4px;
}
.hero-portrait-role {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

/* ---------- Buttons ---------- */
.button {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  text-shadow: 1px 1px 2px rgba(0,0,0,.45);
  transition: all .2s ease;
  white-space: nowrap;
  border: none;
}
.button.primary {
  background: linear-gradient(to bottom, var(--red-bright) 0%, var(--red-dark) 100%);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(192,57,43,.45), inset 0 1px 0 rgba(255,255,255,.22);
}
.button.primary:hover {
  background: linear-gradient(to bottom, #eb5a4f 0%, #b8392b 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(192,57,43,.5), inset 0 1px 0 rgba(255,255,255,.22);
}
.button.secondary {
  background: linear-gradient(to bottom, var(--teal-light) 0%, var(--teal-dark) 100%);
  color: var(--white);
  border: 2px solid var(--orange);
  box-shadow: 0 8px 20px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.15);
}
.button.secondary:hover {
  background: linear-gradient(to bottom, #2a7ba0 0%, var(--teal-light) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.15);
}

/* ---------- Why Call / Wondering strip ---------- */
.trust-strip {
  background: var(--teal-dark);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid var(--orange);
  padding: 56px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 48px;
}
.trust-divider { background: rgba(255,255,255,.1); }
.trust-col h3 {
  font-family: var(--font-head);
  font-size: .96rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0,0,0,.2);
}
.trust-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .01em;
  color: rgba(255,255,255,.92);
  text-shadow: 1px 1px 2px rgba(0,0,0,.2);
}
.trust-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(242,162,58,.14);
  border: 1px solid rgba(242,162,58,.4);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 800;
  margin-top: 1px;
}
.wonder-item { margin-bottom: 22px; }
.wonder-item:last-child { margin-bottom: 0; }
.wonder-item h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  text-transform: none;
  letter-spacing: .01em;
  color: var(--white);
  margin-bottom: 6px;
  text-shadow: 1px 1px 2px rgba(0,0,0,.25);
}
.wonder-item p {
  color: rgba(255,255,255,.68);
  font-size: .95rem;
  line-height: 1.65;
  margin: 0;
}

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.muted { background: var(--off-white); }
.section.dark {
  background: radial-gradient(circle at top right, rgba(15,118,153,.35), var(--teal-deep) 55%), linear-gradient(180deg, var(--teal-deep) 0%, var(--teal-dark) 100%);
  color: var(--white);
}
.section.dark-alt {
  background: var(--teal-dark);
  color: var(--white);
}
.section.dark h2, .section.dark-alt h2 {
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0,0,0,.45), 0 0 1px rgba(0,0,0,.25);
}
.section.dark .section-header p, .section.dark-alt .section-header p {
  color: #cfe6ee;
}
.section-header { text-align: center; max-width: 780px; margin: 0 auto 44px; }
.section-header .section-label { display: inline-block; }
.section-header p, .muted-text { color: var(--gray-text); font-size: 1.40rem; line-height: 1.7; }

.about-copy { max-width: 720px; margin: 0 auto 48px; text-align: left; }
.about-copy p { color: var(--gray-text); font-size: 1.03rem; margin-bottom: 16px; line-height: 1.75; }
.about-copy p:last-child { margin-bottom: 0; }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: linear-gradient(160deg, #e8f4f8 0%, #d6ecf3 100%);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.7);
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.card:first-child { border-top: 3px solid var(--red); }
.card:hover { box-shadow: 0 16px 40px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.7); transform: translateY(-3px); }
.card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card-body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: 8px; color: var(--teal-dark); }
.card:first-child h3 { color: var(--red); }
.card-body p { color: var(--teal-dark); margin-bottom: 16px; font-size: 1.06rem; flex: 1; line-height: 1.62; opacity: .8; }
.card-link {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(to bottom, var(--teal-light) 0%, var(--teal-dark) 100%);
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.15);
  text-shadow: 1px 1px 2px rgba(0,0,0,.35);
  transition: all .2s ease;
}
.card-link:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,0,0,.35); }
.card:first-child .card-link {
  background: linear-gradient(to bottom, var(--red-bright) 0%, var(--red-dark) 100%);
  box-shadow: 0 4px 12px rgba(192,57,43,.4), inset 0 1px 0 rgba(255,255,255,.2);
}
.card:first-child .card-link:hover { box-shadow: 0 6px 18px rgba(192,57,43,.5); }

.card-body h3 {
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 1.4rem;
}

/* ---------- Split grid / contact ---------- */
.split-grid, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  border: 4px solid var(--white);
  box-shadow: 0 14px 32px rgba(0,0,0,.16);
}

/* Two stacked images in the how-to-tell section */
.split-grid .image-stack {
  display: flex;
  flex-direction: column;
  gap: 72px;
}
.split-grid .image-stack img {
  aspect-ratio: 16 / 10;
}

.check-list { list-style: none; margin-top: 18px; }
.check-list li {
  position: relative;
  padding-left: 30px;
  margin: 11px 0;
  color: var(--gray-text);
  font-size: 1.2rem;
  line-height: 1.6;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(to bottom, var(--orange) 0%, var(--orange-dark) 100%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3 5-6' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"), linear-gradient(to bottom, var(--orange) 0%, var(--orange-dark) 100%);
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 2px 6px rgba(217,134,21,.4);
}

/* ---------- Problem grid ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gray-light);
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  overflow: hidden;
}
.problem-item {
  background: var(--white);
  padding: 24px 28px 24px 56px;
  position: relative;
}
.problem-item::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 26px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(to bottom, var(--orange) 0%, var(--orange-dark) 100%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3 5-6' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"), linear-gradient(to bottom, var(--orange) 0%, var(--orange-dark) 100%);
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 2px 6px rgba(217,134,21,.4);
}
.problem-item h3 { font-size: .96rem; margin-bottom: 6px; color: var(--teal-dark); }
.problem-item p { color: var(--gray-text); font-size: 1.1rem; margin: 0; line-height: 1.6; }

/* ---------- Owner panel (From the Owner) ---------- */
.owner-section {
  padding: 72px 0;
  background: var(--teal-deep);
  color: var(--white);
}
.owner-panel {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}
.owner-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 40px;
  align-items: center;
}
.owner-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: .90rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}
.owner-kicker .owner-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(192,57,43,.18);
}
.owner-panel h2 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0,0,0,.45), 0 0 1px rgba(0,0,0,.25);
}
.owner-copy {
  font-size: 1.02rem;
  line-height: 1.75;
  color: #cfe6ee;
  margin-bottom: 14px;
}
.owner-copy:last-of-type { margin-bottom: 0; }
.owner-signoff {
  margin-top: 18px;
  font-size: .98rem;
  color: rgba(255,255,255,.85);
}
.owner-signoff strong { font-weight: 800; color: var(--orange); }

.owner-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 14px;
}
.owner-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.owner-meta {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

/* ---------- Case Studies ---------- */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(150deg, #ffffff 0%, #eaf5fa 55%, #d6ecf4 100%);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(7,59,76,.12), inset 0 1px 0 rgba(255,255,255,.7);
}
.case-media { position: relative; }
.case-media img { width: 100%; height: 200px; object-fit: cover; display: block; }
.case-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(to bottom, var(--red-bright), var(--red-dark));
  color: #fff;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
}
.case-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 10px; }
.case-meta {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gray-text);
}
.case-body h3 {
  font-family: var(--font-head);
  font-size: 1.18rem;
  line-height: 1.25;
  color: var(--teal-dark);
  margin: 0;
}
.case-body p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--gray-text);
  margin: 0;
}
.case-outcome {
  background: rgba(15,118,153,.07);
  border-left: 3px solid var(--orange);
  border-radius: 0;
  padding: 10px 14px;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--ink);
}
.case-outcome strong { color: var(--teal-dark); }

/* ---------- FAQ Accordion ---------- */
.accordion {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(145deg, #ffffff 0%, #d9eef6 45%, #aedcef 100%);
  border: 1px solid rgba(255,255,255,.6);
  border-top: 3px solid var(--orange);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.8);
}
.accordion-item { border-bottom: 1px solid rgba(7,59,76,.1); }
.accordion-item:last-child { border-bottom: none; }
.accordion-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  background: transparent;
  transition: background .15s;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary:hover { background: rgba(255,255,255,.35); }
.accordion-item[open] summary { background: rgba(255,255,255,.45); }

.accordion-item summary {
  font-family: var(--font-head);
  font-size: .98rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--teal-dark);
  line-height: 1.3;
  text-shadow: 0 1px 2px rgba(255,255,255,.5);
}

.accordion-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--teal-dark);
  position: relative;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='2' viewBox='0 0 12 2'%3E%3Crect width='12' height='2' rx='1' fill='white'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='2' height='12' viewBox='0 0 2 12'%3E%3Crect width='2' height='12' rx='1' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  transition: background .15s;
}
.accordion-item[open] summary::after {
  background-color: var(--orange);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='2' viewBox='0 0 12 2'%3E%3Crect width='12' height='2' rx='1' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.accordion-body { padding: 0 22px 20px; background: rgba(255,255,255,.25); }
.accordion-body p { font-size: 1.1rem; color: var(--teal-dark); line-height: 1.7; margin: 0; text-shadow: 0 1px 2px rgba(255,255,255,.5); }

/* ---------- Reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card {
  background: linear-gradient(145deg, #ffffff 0%, #cfe9f4 45%, #9fd3e8 100%);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 10px;
  padding: 28px 26px;
  border-top: 3px solid var(--orange);
  box-shadow: 0 10px 30px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.8);
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.review-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.8); transform: translateY(-3px); }
.review-card::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  right: 22px;
  font-family: Georgia, serif;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(15,118,153,.18);
  z-index: 0;
}
.stars {
  color: var(--orange);
  font-size: 1.4rem;
  letter-spacing: 4px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(7,59,76,.3);
}
.review-card p {
  font-size: 1.06rem;
  color: var(--teal-dark);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(255,255,255,.5);
}
.review-card strong {
  font-family: var(--font-head);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--teal-dark);
  text-shadow: 0 1px 2px rgba(255,255,255,.5);
  position: relative;
  z-index: 1;
}

.review-card a:hover {
  text-decoration: underline;
}

.review-card a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
}

.snippet-footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(7,59,76,.12);
}

.snippet-name {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #073b4c;
  margin-bottom: 12px;
}

.snippet-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #0f7699;
  text-decoration: none;
  transition: color .2s;
}

.snippet-cta:hover { color: #073b4c; }

.snippet-arrow {
  color: #f2a23a;
  font-size: 1.05rem;
  line-height: 1;
  transition: transform .2s;
}

.snippet-cta:hover .snippet-arrow { transform: translateX(4px); }



/* ---------- Bottom CTA ---------- */
.cta {
  background: radial-gradient(circle at top right, rgba(15,118,153,.35), var(--teal-deep) 55%), linear-gradient(180deg, var(--teal-deep) 0%, var(--teal-dark) 100%);
  color: var(--white);
  padding: 72px 0;
}
.cta h2 {
  color: var(--white);
  max-width: 720px;
  text-shadow: 2px 2px 4px rgba(0,0,0,.45), 0 0 1px rgba(0,0,0,.25);
  margin-bottom: 32px;
}
.cta-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 50px;
  align-items: center;
}
.cta-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
  border: 4px solid rgba(255,255,255,.15);
  box-shadow: 0 18px 40px rgba(0,0,0,.4);
}
.cta-content p {
  font-size: 1.4rem;
  color: #e5f4f9;
  line-height: 1.78;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0,0,0,.3);
}
.expect-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 20px 26px;
  margin-bottom: 24px;
}
.expect-title {
  display: block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
  text-shadow: 1px 1px 2px rgba(0,0,0,.3);
}
.expect-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.expect-list li {
  font-size: .92rem;
  color: rgba(255,255,255,.84);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
  text-shadow: 1px 1px 2px rgba(0,0,0,.25);
}
.expect-list li::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(to bottom, var(--red-bright), var(--red-dark));
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3 5-6' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"), linear-gradient(to bottom, var(--red-bright), var(--red-dark));
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 2px 6px rgba(192,57,43,.4);
}
.cta-phone {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--cyan);
  text-decoration: none;
  letter-spacing: .03em;
  margin-bottom: 10px;
  transition: color .15s;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.cta-phone:hover { color: var(--white); }
.cta-meta { font-size: .85rem; color: rgba(255,255,255,.42); letter-spacing: .02em; margin-top: 16px; }

/* ---------- CTA simple variant (service pages) ---------- */
.cta-grid.cta-grid-simple { grid-template-columns: 1.4fr 1fr; }
.cta-grid.cta-grid-simple h2 { margin-bottom: 16px; }
.cta-grid.cta-grid-simple p {
  font-size: 1.2rem;
  color: #e5f4f9;
  line-height: 1.78;
  margin-bottom: 24px;
  text-shadow: 1px 1px 2px rgba(0,0,0,.3);
  max-width: 480px;
}

.cta-phone-btn {
  font-size: clamp(16px, 2.2vw, 22px);
  padding: 18px 40px;
  margin-top: 8px;
}

.cta-address {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 26px;
}
.cta-address-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
  text-shadow: 1px 1px 2px rgba(0,0,0,.3);
}
.cta-address-line {
  color: rgba(255,255,255,.84);
  font-size: .98rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,.25);
}

.hours-card {
  margin: 28px 0;
  padding: 22px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(226,239,252,0.97), rgba(255,255,255,0.92));
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 20px 50px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.8);
}

.hours-card span {
  display: block;
}

.hours-title {
  font-weight: 800;
  font-size: 1.05rem;
  color: #10233f;
  margin-bottom: 6px;
}

.hours-time {
  font-size: 1.45rem;
  font-weight: 900;
  color: #0c274a;
  margin-bottom: 6px;
}

.hours-area {
  color: #43556e;
  font-weight: 600;
}

/* ---------- Page hero (sub-pages) ---------- */
.page-hero {
  padding: 64px 0;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-light);
}
.page-hero p { color: var(--gray-text); font-size: 1.2rem; margin-bottom: 8px; max-width: 720px; line-height: 1.7; }
.page-hero .hero-actions { margin-top: 26px; }

/* ---------- Service detail ---------- */
.service-detail p { color: var(--gray-text); margin-bottom: 18px; font-size: 1.2rem; line-height: 1.75; }

/* ---------- Contact card ---------- */
.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  padding: 30px;
  border-top: 3px solid var(--teal-dark);
}
.contact-card h2 { font-size: 1.3rem; }
.contact-card p { color: var(--gray-text); margin-bottom: 16px; font-size: 1.2rem; line-height: 1.7; }
.contact-card a { color: var(--teal-dark); font-weight: 700; }

/* ---------- Footer ---------- */
.site-footer { background: #061f29; color: var(--white); padding-top: 56px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.4fr; gap: 40px; align-items: start; }
.footer-grid > div:nth-child(2) { padding-left: 40px; }
.site-footer strong {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  display: block;
  margin-bottom: 14px;
  color: var(--white);
}
.site-footer p, .site-footer a {
  color: rgba(255,255,255,.62);
  font-size: .94rem;
  line-height: 1.9;
}
.footer-address { color: rgba(255,255,255,.48); margin-top: 14px; }
.site-footer a { text-decoration: none; transition: color .15s ease; }
.site-footer a:hover { color: var(--orange); }
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 22px 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  color: rgba(255,255,255,.45);
  font-size: .85rem;
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 240px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

/* ============================================
   OPENER INSTALLATION PAGE
   Add/replace this block at the end of styles.css.
   (If you already pasted the earlier opener-grid CSS,
    DELETE that and use this version instead.)
   ============================================ */

.opener-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Each opener as a horizontal row card */
.opener-row {
  position: relative;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(150deg, #ffffff 0%, #eaf5fa 55%, #d6ecf4 100%);
  border-radius: 16px;
  padding: 24px 28px 24px 32px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(7,59,76,.14), inset 0 1px 0 rgba(255,255,255,.8);
  transition: transform .2s, box-shadow .2s;
}

.opener-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(7,59,76,.2), inset 0 1px 0 rgba(255,255,255,.8);
}

/* Left accent bar */
.opener-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 7px;
  background: linear-gradient(to bottom, var(--orange), var(--orange-dark));
}
.opener-accent.accent-teal { background: linear-gradient(to bottom, var(--teal), var(--teal-dark)); }
.opener-accent.accent-cyan { background: linear-gradient(to bottom, var(--cyan), var(--teal)); }

/* Featured card gets a subtle outer ring */
.opener-row.featured {
  box-shadow: 0 14px 34px rgba(7,59,76,.2), inset 0 1px 0 rgba(255,255,255,.8), 0 0 0 2px var(--orange);
}
.opener-row.featured:hover {
  box-shadow: 0 20px 44px rgba(7,59,76,.24), inset 0 1px 0 rgba(255,255,255,.8), 0 0 0 2px var(--orange);
}

/* Image */
.opener-row-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(7,59,76,.22);
}
.opener-row-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.opener-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(to bottom, var(--orange), var(--orange-dark));
  color: #fff;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,.3);
  z-index: 2;
}

/* Body */
.opener-row-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.opener-row-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}

.opener-row-head h3 {
  font-family: var(--font-head);
  font-size: 1.45rem;
  line-height: 1.15;
  color: var(--teal-dark);
  margin: 0;
}

.opener-model {
  display: block;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .03em;
  color: var(--gray-text);
  margin-top: 3px;
}

.opener-price {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--orange-dark);
  line-height: 1;
  white-space: nowrap;
}

.opener-price-note {
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-text);
  letter-spacing: .02em;
}

.opener-row-body p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--gray-text);
  margin: 0;
}

/* Spec chips */
.opener-specs {
  list-style: none;
  margin: 2px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.opener-specs li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(15,118,153,.08);
  border: 1px solid rgba(15,118,153,.16);
  border-radius: 50px;
  padding: 5px 13px 5px 10px;
  font-size: .86rem;
  color: var(--teal-dark);
  font-weight: 500;
}

.opener-specs li::before {
  content: "\2713";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
}

.opener-grid-note {
  margin-top: 24px;
  text-align: center;
  font-size: .95rem;
  color: var(--gray-text);
  font-style: italic;
}

/* Centered lead paragraph (customer-provided install section) */
.centered-lead {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--gray-text);
  max-width: 720px;
  margin: 0 auto;
}

/* Single image stretches to match a taller text column */
.split-grid.split-grid-fill { align-items: stretch; }
.split-grid.split-grid-fill > img { height: 100%; aspect-ratio: auto; object-position: center; }

/* Inline text links in body copy — underline warms to orange on hover */
.page-hero-copy a,
.callout a,
.container.narrow p a,
.problem-item a {
  text-decoration: underline;
  text-decoration-color: rgba(7, 59, 76, .4);
  text-underline-offset: 3px;
  transition: text-decoration-color .15s ease;
}
.page-hero-copy a:hover,
.callout a:hover,
.container.narrow p a:hover,
.problem-item a:hover {
  text-decoration-color: var(--orange);
}


/* ============ CONTACT PAGE ============ */
.contact-grid { align-items: start; }
.contact-hero .contact-grid { align-items: center; }

/* Lead column */
.contact-lead h1 { font-size: 2.4rem; line-height: 1.12; margin-bottom: 16px; }
.contact-lead h2 { margin-bottom: 8px; }
.contact-lead > p { color: var(--gray-text); font-size: 1.12rem; line-height: 1.7; }
.section.dark .contact-lead h1 { color: var(--white); text-shadow: 0 2px 6px rgba(0,0,0,.3); }
.section.dark .contact-lead > p { color: rgba(255,255,255,.82); }

/* Facts list — icon beside label+value, like Danville */
.contact-facts { list-style: none; margin: 26px 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.contact-facts li { display: flex; align-items: flex-start; gap: 14px; }
.contact-facts .fact-icon {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(242,162,58,.15);
  border: 1px solid rgba(242,162,58,.35);
}
.contact-facts .fact-icon svg { width: 19px; height: 19px; stroke: var(--orange); }
.contact-facts .fact-text { display: flex; flex-direction: column; line-height: 1.5; }
.contact-facts .fact-label {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .08em;
  font-size: .78rem; font-weight: 700; color: var(--orange); margin-bottom: 2px;
}
.section.dark .contact-facts .fact-text { color: rgba(255,255,255,.85); }
.contact-lead .button.primary { margin-top: 4px; }

/* Floating gradient cards (form + info) */
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-form-card,
.contact-card {
  background: linear-gradient(160deg, #e8f4f8 0%, #d6ecf3 100%);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.7);
}
.contact-form-card { border-top: 3px solid var(--red); padding: 34px; }
.contact-card { border-top: 3px solid var(--orange); padding: 26px 28px; }
.contact-form-card h2,
.contact-card h2 { color: var(--teal-dark); font-size: 1.5rem; margin-bottom: 6px; }
.contact-form-card .form-intro { color: var(--gray-text); font-size: 1.05rem; line-height: 1.6; margin-bottom: 22px; }
.contact-card > p { color: var(--teal-dark); font-size: 1.05rem; line-height: 1.7; margin-bottom: 16px; opacity: .85; }

/* City chips — real pills, spaced */
.city-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.city-chips span {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .04em;
  font-size: .72rem; font-weight: 600; color: var(--white);
  background: linear-gradient(to bottom, var(--teal-light) 0%, var(--teal-dark) 100%);
  padding: 7px 14px; border-radius: 999px;
  box-shadow: 0 3px 8px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.15);
}

/* Form fields */
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .form-field { margin-bottom: 16px; display: flex; flex-direction: column; }
.contact-form label {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .04em;
  font-size: .8rem; color: var(--teal-dark); margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--white); border: 1px solid rgba(7,59,76,.15);
  border-radius: 10px; padding: 12px 14px; width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--gray-mid); }
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(15,118,153,.18); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form .button.primary { width: 100%; border: none; cursor: pointer; margin-top: 6px; }
.contact-form .form-note { color: var(--gray-text); font-size: .9rem; line-height: 1.5; text-align: center; margin-top: 14px; opacity: .8; }
.contact-form .hp-field { display: none !important; }

[id] { scroll-margin-top: 30px; }

/* ---------- Thank You Page ---------- */
.thank-you-hero {
  min-height: 72vh;
  align-items: center;
  text-align: center;
}

.thank-you-box {
  max-width: 820px;
  margin: 0 auto;
  padding: 90px 0;
}

.thank-you-box h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 7vw, 5.3rem);
  margin-bottom: 24px;
}

.thank-you-box p {
  color: #e5f4f9;
  font-size: 1.55rem;
  line-height: 1.55;
  max-width: 720px;
  margin: 0 auto 34px;
  text-shadow: 1px 1px 2px rgba(0,0,0,.35);
}

.thank-you-box .hero-actions {
  justify-content: center;
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .contact-form .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* Mobile: stack image above content */
@media (max-width: 760px) {
  .opener-row {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 22px 22px 26px;
  }
  .opener-row-media img { height: 210px; }
  .opener-row-head { flex-direction: column; gap: 4px; }
}





/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; padding: 48px 0; }
  .hero-portrait { order: -1; max-width: 420px; margin: 0 auto; width: 100%; }
  .cta-grid { grid-template-columns: 1fr; }
  .owner-grid { grid-template-columns: 1fr; gap: 24px; }
  .owner-panel { padding: 24px; }
  .owner-panel h2 { font-size: 1.6rem; }
}

@media (max-width: 900px) {
  .nav-wrap { display: flex; align-items: center; flex-wrap: wrap; padding: 14px 24px; gap: 12px; min-height: auto; }
  .brand { order: 1; margin-right: auto; }
  .header-phone { order: 2; }
  .nav-toggle { display: flex; order: 3; }
  .site-nav { order: 4; width: 100%; flex-direction: column; gap: 4px; display: none; }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 14px; font-size: 14px; }
  .split-grid, .contact-grid { grid-template-columns: 1fr; }
  .split-grid > img:first-child { order: -1; }
  .cards, .review-grid, .footer-grid, .problem-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-divider { display: none; }
  .hero, .section, .page-hero, .cta { padding: 48px 0; }
  .hero-grid { padding: 40px 0; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .brand-top { font-size: 1.15rem; }
  .brand-bottom { font-size: .62rem; letter-spacing: .16em; }
  .brand img { display: none; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; text-align: center; }
  .header-phone { font-size: 12px; padding: 9px 16px; }
}

/* Narrowest phones (Galaxy S8+ = 360px): shrink the phone button so the
   wordmark + button + hamburger stay on one row */
@media (max-width: 380px) {
  .nav-wrap { gap: 8px; }
  .header-phone { font-size: 11px; padding: 8px 13px; gap: 6px; }
}

@media (max-width: 900px) {
  .case-grid { grid-template-columns: 1fr; }
  .case-media img { height: 220px; }
}

@media (max-width: 860px) {
.page-hero-grid {
grid-template-columns: 1fr;
}

.page-hero-image {
order: -1;
}
}

