/* Oregon Wash — base site CSS. Loaded after tokens.css. */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ow-charcoal);
  background: var(--ow-cream);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ow-navy); }
a:hover { color: var(--ow-green-deep); }

.container { max-width: 1180px; margin-inline: auto; padding-inline: 20px; }
.container-sm { max-width: 900px; margin-inline: auto; padding-inline: 20px; }

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid rgba(15,46,95,0.08);
  position: sticky; top: 0; z-index: 40;
}
.site-header-inner {
  display: flex; align-items: center; gap: 24px;
  padding-block: 16px;
  min-height: 128px;
}
.site-header a.brand { display: flex; align-items: center; text-decoration: none; }
.site-header a.brand img { height: 108px; width: auto; }
.site-nav { margin-left: auto; display: flex; gap: 22px; align-items: center; }
.site-nav a {
  color: var(--ow-navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 4px;
}
.site-nav a:hover { color: var(--ow-green-deep); }
.site-nav a.cta {
  background: var(--ow-green);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  transition: background 0.15s ease;
}
.site-nav a.cta:hover { background: var(--ow-green-deep); }
.site-nav a.phone {
  color: var(--ow-navy);
  font-weight: 800;
  font-family: var(--font-head);
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  padding: 6px 4px;
  line-height: 1;
  margin-left: 18px;
}
.site-nav a.cta { margin-left: 12px; }
.site-nav .phone-pair { display: inline-flex; align-items: center; gap: 6px; margin-left: 18px; }
.site-nav .phone-pair .phone { margin-left: 0; padding-right: 0; }
.site-nav .phone-sms {
  color: var(--ow-green-deep);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border: 1.5px solid var(--ow-green);
  border-radius: 999px;
  line-height: 1;
  text-decoration: none;
  transition: background 0.15s;
}
.site-nav .phone-sms:hover { background: var(--ow-green); color: #fff; }
@media (max-width: 780px) { .site-nav .phone-pair { margin-left: 0; } .site-nav .phone-sms { display: none; } }
.site-nav a.phone:hover { color: var(--ow-green-deep); }
@media (max-width: 780px) { .site-nav a.phone { font-size: 1.2rem; } }

/* Services dropdown */
.site-nav .has-submenu { position: relative; }
.site-nav .submenu {
  position: absolute; top: 100%; left: 0;
  background: #fff;
  border: 1px solid rgba(15,46,95,0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 340px;
  padding: 8px;
  display: none;
  z-index: 50;
}
.site-nav .has-submenu:hover .submenu,
.site-nav .has-submenu:focus-within .submenu { display: block; }
.site-nav .submenu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.94rem;
  border-radius: 6px;
  color: var(--ow-navy);
  font-weight: 600;
  line-height: 1.35;
}
.site-nav .submenu a:hover { background: var(--ow-sky); color: var(--ow-green-deep); }
.site-nav .submenu a.submenu-all {
  border-top: 1px solid rgba(15,46,95,0.08);
  margin-top: 4px; padding-top: 12px;
  color: var(--ow-green-deep);
  font-weight: 700;
}
@media (max-width: 780px) {
  .site-nav .submenu { position: static; display: block; box-shadow: none; border: 0; padding: 0 0 0 16px; min-width: 0; }
  .site-nav .submenu a { font-size: 0.88rem; padding: 8px 4px; }
}

/* Mobile nav */
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
@media (max-width: 780px) {
  .site-nav { display: none; }
  .site-nav.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 12px 20px; box-shadow: var(--shadow);
    gap: 4px;
  }
  .site-nav.open a { padding: 12px 4px; border-bottom: 1px solid rgba(15,46,95,0.06); }
  .site-nav.open a.cta { border-bottom: 0; text-align: center; margin-top: 8px; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .site-header a.brand img { height: 68px; }
  .site-header-inner { min-height: 82px; padding-block: 10px; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 560px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background: var(--ow-navy);
}
.hero-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: right center;
  z-index: -2;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,35,75,0.75) 0%, rgba(10,35,75,0.35) 55%, rgba(10,35,75,0.15) 100%),
    linear-gradient(180deg, rgba(15,46,95,0.10) 0%, rgba(10,35,75,0.35) 100%);
  z-index: -1;
}
.hero-inner {
  padding-block: 84px 72px;
}
@media (max-width: 780px) {
  .hero-inner { padding-block: 40px 32px; }
}

/* Split-hero variant (Opt 1 — text left, team photo card right) */
.hero.opt1 .hero-photo {
  filter: brightness(0.45) saturate(0.7);
  background-position: center 30%;
}
.hero.opt1 .hero-overlay {
  background: linear-gradient(135deg, rgba(10,35,75,0.88) 0%, rgba(10,35,75,0.55) 60%, rgba(10,35,75,0.72) 100%);
}
.hero.opt1 .hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 44px;
  align-items: center;
  padding-block: 68px;
}
.hero.opt1 .hero-text { max-width: 620px; }
.hero-team-card {
  display: none;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  transform: rotate(-0.5deg);
  border: 6px solid #fff;
  background: #fff;
}
.hero.opt1 .hero-team-card { display: block; }
.hero-team-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center 35%;
}
.hero-team-card .caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(15,46,95,0.85) 0%, rgba(15,46,95,0) 100%);
  padding: 30px 18px 12px;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Opt 2 — full-bleed (original) — no team card */
.hero.opt2 .hero-team-card { display: none; }
.hero.opt2 .hero-photo { filter: none; }
.hero.opt2 .hero-inner { display: block; }

@media (max-width: 900px) {
  .hero.opt1 .hero-inner { grid-template-columns: 1fr; padding: 50px 0 40px; }
  .hero-team-card { transform: none; margin-top: 20px; }
}

/* Hero opt toggle (top-right, subtle) */
.hero-opt-toggle {
  position: absolute;
  top: 14px; right: 14px;
  display: inline-flex;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
  z-index: 5;
  font-size: 0.78rem;
}
.hero-opt-toggle button {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.75);
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.hero-opt-toggle button[aria-pressed="true"] { background: #fff; color: var(--ow-navy); }
.hero h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 0.98;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 14px rgba(0,0,0,0.35);
}
.hero p.tagline {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ow-green);
  font-size: clamp(1.1rem, 2.6vw, 1.6rem);
  margin: 0 0 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700; font-size: 16px;
  text-decoration: none;
  transition: transform 0.1s ease, background 0.15s ease;
  border: 0; cursor: pointer;
  min-height: 48px;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ow-green); color: #fff; }
.btn-primary:hover { background: var(--ow-green-deep); color: #fff; }
.btn-outline { background: rgba(255,255,255,0.08); color: #fff; border: 2px solid rgba(255,255,255,0.9); }
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-navy { background: var(--ow-navy); color: #fff; }
.btn-navy:hover { background: var(--ow-navy-dark); color: #fff; }

/* Trust chips band (dark navy — matches old trust-strip look, but 2 rows of pill chips) */
.trust-chips {
  background: var(--ow-navy-dark);
  color: #fff;
  padding: 22px 0 24px;
}
.trust-chips .chip-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 12px;
  margin: 0 0 10px;
}
.trust-chips .chip-row:last-child { margin-bottom: 0; }
.trust-chips .chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem; line-height: 1.2;
  border: 1px solid transparent;
  color: #eaf0f8;
}
.trust-chips .chip strong { color: #fff; }
.trust-chips .chip em { font-style: normal; color: #fff; font-weight: 700; }
.trust-chips .chip-stat {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
  font-size: 0.95rem;
}
.trust-chips .chip-stat strong { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; color: #fff; margin-right: 2px; }
.trust-chips .chip-stat .chip-icon {
  width: 22px; height: 22px; color: #ecc531;
  display: inline-flex; align-items: center; justify-content: center;
}
.trust-chips .chip-stat .chip-icon svg { width: 22px; height: 22px; }
.trust-chips .chip-stat:nth-child(2) .chip-icon { color: var(--ow-green); }
.trust-chips .chip-stat:nth-child(2) .chip-icon svg { width: 20px; height: 20px; }
.trust-chips .chip-stat:nth-child(3) .chip-icon { color: #90d8ff; }
.trust-chips .chip-guarantee {
  background: transparent;
  border-color: var(--ow-green);
  color: #fff;
  padding-left: 8px;
}
.trust-chips .chip-guarantee .chip-icon-mini {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--ow-green); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
  flex: 0 0 20px;
}

/* Sheen sweep across the whole trust-chips band (Animation Playbook §8, adapted) */
.trust-chips { position: relative; overflow: hidden; isolation: isolate; }
.trust-chips::after {
  content: ''; position: absolute; top: 0; bottom: 0; left: -30%; width: 30%;
  background: linear-gradient(100deg, transparent 0%, rgba(109,179,63,0.18) 50%, transparent 100%);
  animation: chipsSheen 9s ease-in-out 2s infinite;
  pointer-events: none;
  z-index: 0;
}
.trust-chips .container { position: relative; z-index: 1; }
@keyframes chipsSheen { 0% { left: -30%; } 60%,100% { left: 130%; } }
@media (prefers-reduced-motion: reduce) { .trust-chips::after { animation: none; } }

/* Typewriter caret for hero-sub (Animation Playbook §3) */
.hero-sub.typing::after {
  content: ''; display: inline-block;
  width: 2px; height: 1em; background: var(--ow-green);
  margin-left: 3px; vertical-align: -2px;
  animation: caret 0.9s steps(1) infinite;
}
@keyframes caret { 50% { opacity: 0; } }

/* Hero proof strip (M6 — visible above fold @375px so key stats read on mobile without scroll) */
.hero-proof {
  display: inline-flex; align-items: center; flex-wrap: wrap;
  gap: 8px 10px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
  margin: 0 0 14px;
  line-height: 1;
}
.hero-proof strong { color: var(--ow-green-soft); font-weight: 800; font-family: var(--font-head); font-size: 1.05rem; letter-spacing: -0.005em; }
.hero-proof .star { color: #ecc531; font-size: 1rem; }
.hero-proof .dot { color: rgba(255,255,255,0.5); }
@media (max-width: 480px) {
  .hero-proof { font-size: 0.78rem; gap: 6px 8px; padding: 6px 12px; }
  .hero-proof strong { font-size: 0.95rem; }
}

/* Hero sub-copy tighter + bullet list (dressier — JNR consult style) */
.hero .hero-sub {
  color: #fff; font-family: var(--font-body); font-weight: 500;
  font-size: 1.15rem; line-height: 1.45; max-width: 48ch;
  margin: 0 0 18px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 6px;
}
.hero-bullets li {
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.4;
  padding-left: 30px;
  position: relative;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.hero-bullets li strong { color: var(--ow-green-soft); font-weight: 700; }
.hero-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 3px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--ow-green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  background-size: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.hero-actions .btn { min-width: 220px; justify-content: center; }
.hero-micro {
  color: rgba(255,255,255,0.85);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 10px 0 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.hero-micro strong { color: var(--ow-green-soft); }

/* Trust strip (old — retained for /home-prev) */
.trust-strip {
  background: var(--ow-navy-dark);
  color: #fff;
  padding: 22px 0;
}
.trust-strip-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  align-items: center;
}
.trust-item {
  display: flex; gap: 12px; align-items: center;
  font-size: 14px; font-weight: 600;
  line-height: 1.25;
}
.trust-item .dot {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--ow-green);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 32px;
  font-size: 16px;
}
@media (max-width: 780px) {
  .trust-strip-inner { grid-template-columns: 1fr 1fr; }
}

/* Section titles */
.section { padding: 64px 0; }
.section h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--ow-navy);
  text-transform: uppercase;
  margin: 0 0 10px;
  line-height: 1.05;
}
.section .eyebrow {
  color: var(--ow-green-deep);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  margin-bottom: 6px;
}
.section p.lead { font-size: 1.1rem; color: #3a3a48; max-width: 62ch; margin: 0 0 28px; }

/* Service grid */
.service-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 28px;
}
@media (max-width: 980px) { .service-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .service-grid { grid-template-columns: 1fr; } }
.service-card {
  background: #fff;
  border: 1px solid rgba(15,46,95,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
  color: var(--ow-charcoal);
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--ow-green);
}
.service-card-photo {
  aspect-ratio: 4 / 3;
  background-size: cover; background-position: center;
}
.service-card-body { padding: 18px 20px 22px; }
.service-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--ow-navy);
  text-transform: uppercase;
  font-size: 1.25rem;
  margin: 0 0 6px;
}
.service-card .subtitle { color: var(--ow-green-deep); font-weight: 700; font-size: 0.9rem; margin: -4px 0 8px; }
.service-card p { margin: 0; font-size: 0.95rem; color: #3a3a48; }
.service-card .more { display: inline-block; margin-top: 12px; color: var(--ow-green-deep); font-weight: 700; font-size: 0.9rem; }

/* Awards + founders */
.founders {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
}
@media (max-width: 900px) { .founders { grid-template-columns: 1fr; } }
.founders-photos { display: flex; gap: 18px; }
.founders-photos img { border-radius: var(--radius); box-shadow: var(--shadow-sm); width: 100%; height: 300px; object-fit: cover; }

.award-band {
  display: flex; gap: 24px; align-items: center;
  background: #fff;
  padding: 18px 22px;
  border: 1px solid rgba(15,46,95,0.08);
  border-radius: var(--radius);
  margin-top: 20px;
}
.award-band .medal {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--ow-green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 24px;
  flex: 0 0 56px;
}
.award-band .text strong { color: var(--ow-navy); }

/* Testimonial wall */
.testimonial-wall {
  columns: 3 240px; column-gap: 20px;
  margin-top: 28px;
}
.testimonial-card {
  break-inside: avoid;
  background: #fff;
  border: 1px solid rgba(15,46,95,0.08);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 0 0 20px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--ow-green);
}
/* Hover pop shared with founders + gallery */
.founders figure img,
.founders-photos img {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.founders figure:hover img,
.founders-photos:hover img { transform: scale(1.02); box-shadow: var(--shadow); }
.trust-chips .chip { transition: transform 0.18s ease, background 0.18s ease; }
.trust-chips .chip:hover { transform: translateY(-2px); }
.trust-chips .chip-stat:hover { background: rgba(255,255,255,0.14); }
.trust-chips .chip-guarantee:hover { background: rgba(109,179,63,0.14); }
.testimonial-card .stars { color: #ecc531; font-size: 14px; letter-spacing: 2px; margin-bottom: 6px; }
.testimonial-card blockquote { margin: 0 0 10px; font-size: 0.98rem; color: #262632; }
.testimonial-card cite { font-style: normal; font-weight: 700; color: var(--ow-navy); font-size: 0.88rem; }
.testimonial-card cite .src { color: var(--ow-green-deep); font-weight: 500; margin-left: 6px; font-size: 0.82rem; }

/* Service page */
.service-hero {
  background: linear-gradient(135deg, var(--ow-navy) 0%, var(--ow-navy-dark) 100%);
  color: #fff;
  padding: 60px 0 40px;
}
.service-hero h1 {
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 8px 0 6px;
  line-height: 1.02;
}
.service-hero .subtitle { color: var(--ow-green-soft); font-weight: 600; }
.service-hero p.lead { max-width: 62ch; color: #e6ebf4; }

.service-body { display: grid; grid-template-columns: 2fr 1fr; gap: 36px; padding-top: 40px; }
@media (max-width: 900px) { .service-body { grid-template-columns: 1fr; } }
.check-list { list-style: none; padding: 0; margin: 20px 0; }
.check-list li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 10px;
  font-size: 1.02rem;
}
.check-list li::before {
  content: '';
  position: absolute; left: 0; top: 4px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--ow-green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  background-size: 14px;
}
.callout {
  background: var(--ow-sky);
  border-left: 4px solid var(--ow-green);
  padding: 16px 20px;
  border-radius: 4px;
  margin: 22px 0;
}
.callout h3 { margin: 0 0 6px; font-family: var(--font-head); color: var(--ow-navy); font-size: 1.15rem; }
.callout p { margin: 0; color: #3a3a48; }

.side-cta {
  background: #fff;
  border: 1px solid rgba(15,46,95,0.08);
  border-radius: var(--radius);
  padding: 24px 22px;
  position: sticky; top: 96px;
}
.side-cta h3 { margin: 0 0 8px; font-family: var(--font-head); color: var(--ow-navy); text-transform: uppercase; }
.side-cta .price { color: var(--ow-green-deep); font-weight: 700; margin: 8px 0 16px; }
.side-cta .btn { width: 100%; justify-content: center; margin-bottom: 10px; }
.side-cta .fine { color: #6a6a78; font-size: 0.84rem; margin-top: 12px; }

/* Big CTA band — photo-backed so it doesn't feel like flat navy on flat navy */
.cta-band {
  position: relative;
  color: #fff;
  padding: 72px 0 84px;
  text-align: center;
  background-image:
    linear-gradient(180deg, rgba(15,46,95,0.82) 0%, rgba(10,35,75,0.96) 100%),
    url('/photos/billboard.jpg');
  background-size: cover;
  background-position: center 35%;
  isolation: isolate;
}
.cta-band::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--ow-green) 0%, var(--ow-green-deep) 100%);
}
.cta-band h2 { color: #fff; margin: 0 0 12px; text-shadow: 0 2px 12px rgba(0,0,0,0.35); }
.cta-band p { color: #dae4f2; max-width: 60ch; margin: 0 auto 22px; font-size: 1.1rem; }
.cta-band .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Footer — sits flush against the CTA band (no gap) */
.site-footer { background: var(--ow-navy-dark); color: #cbd6e6; padding: 48px 0 24px; margin-top: 0; }
.footer-cols { display: grid; grid-template-columns: 1.5fr 0.9fr 0.9fr 1.5fr; gap: 32px; }
@media (max-width: 900px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
.footer-cols h4 { color: #fff; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 12px; font-size: 0.95rem; }
.footer-cols a { color: #cbd6e6; text-decoration: none; display: block; padding: 4px 0; font-size: 0.94rem; }
.footer-cols a:hover { color: #fff; }
.footer-bottom { margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.85rem; color: #98a5b8; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-brand img { height: 92px; width: auto; margin-bottom: 14px; filter: brightness(1.05); background: #fff; padding: 6px 12px; border-radius: 8px; }
.footer-socials { display: flex; gap: 10px; margin-top: 10px; }
.footer-socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #cbd6e6;
  padding: 0; transition: background 0.15s ease, color 0.15s ease;
}
.footer-socials a:hover { background: var(--ow-green); color: #fff; }
.footer-socials svg { width: 18px; height: 18px; fill: currentColor; }

/* M1 — Mobile thumb-zone bar (Mobile Conversion Formula) */
.ow-thumb-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: #0F2E5F;
  padding: 6px 6px calc(6px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -6px 20px rgba(0,0,0,0.25);
  gap: 4px;
}
.ow-thumb-btn {
  flex: 1;
  min-height: 56px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px;
  color: #fff;
  text-decoration: none;
  font: 700 11px/1 Inter, system-ui, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 8px;
  background: transparent;
  transition: background 0.12s ease, transform 0.08s ease;
}
.ow-thumb-btn svg { width: 22px; height: 22px; }
.ow-thumb-btn:active { transform: scale(0.96); background: rgba(255,255,255,0.08); }
.ow-thumb-btn-cta {
  background: var(--ow-green);
}
.ow-thumb-btn-cta:active { background: var(--ow-green-deep); }
@media (max-width: 780px) {
  .ow-thumb-bar { display: flex; }
  body { padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px)); }
  /* Hide the feedback pill above the thumb bar when it's admin-visible */
  #ow-fb-btn { bottom: calc(78px + env(safe-area-inset-bottom, 0px) + 8px) !important; }
}

/* Utility */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }
.mt-0 { margin-top: 0; } .mt-2 { margin-top: 16px; } .mt-4 { margin-top: 32px; }

/* Owner-edit ownership markers (Phase 4) */
[data-owner]:not([data-owner=""]) {
  outline: 2px dashed #d4a600;
  outline-offset: 4px;
  border-radius: 2px;
}
body:not(.edit-mode) [data-owner] { outline: none; }
body.edit-mode [data-edit] { outline: 2px dashed rgba(15,46,95,0.35); outline-offset: 4px; cursor: text; }
body.edit-mode [data-edit]:focus { outline: 2px solid var(--ow-green); background: #fffef0; }

/* Feedback pin widget (Phase 2 approval loop) */
#ow-feedback-toggle {
  position: fixed; bottom: 20px; right: 20px;
  background: var(--ow-navy); color: #fff;
  border: 0; border-radius: 999px;
  padding: 12px 18px; font-weight: 700; font-size: 14px;
  box-shadow: var(--shadow); cursor: pointer;
  z-index: 100;
}
#ow-feedback-toggle:hover { background: var(--ow-green); }

/* ---------- Mobile layout collapses (added 2026-07-30) ----------
   Force common two-column grids to a single column at ≤780px.
   Uses !important because several 2-col grids are set via inline styles
   that would otherwise beat class-level media queries. */
@media (max-width: 780px) {
  /* Any grid marked .ow-2col collapses on mobile */
  .ow-2col { grid-template-columns: 1fr !important; gap: 20px !important; }
  /* .founders inline-style variants (about page) */
  .container.founders,
  .founders { grid-template-columns: 1fr !important; }
  /* Services parent — .service-grid (tiles) + the commercial band */
  .service-grid { grid-template-columns: 1fr !important; }
  .services-two-col { grid-template-columns: 1fr !important; }
  /* Contact map iframe pins full width on the second row */
  .container.ow-2col > * { min-width: 0; }
}
