/* ================================================================
   Plumber Windsor — Shared Stylesheet
   Brand: #1a5fa8 | Template: tradie/tradie2
   ================================================================ */

:root {
  --brand: #1a5fa8;
  --brand-dk: #14478a;
  --brand-soft: #e8f0fb;
  --ink: #0a0f1c;
  --ink-soft: #1e2a3a;
  --mute: #5e6e88;
  --hair: rgba(10,15,28,.08);
  --hair-md: rgba(10,15,28,.12);
  --tint: #f6f8fc;
  --shadow-soft: 0 1px 2px rgba(10,15,28,.04), 0 4px 16px rgba(10,15,28,.08);
  --shadow-md: 0 8px 24px -8px rgba(10,15,28,.12), 0 20px 40px -16px rgba(10,15,28,.10);
  --r: 16px;
  --r-lg: 24px;
  --f-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { background: #fff; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { background: #fff; color: var(--ink); font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dk); }
a:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; border-radius: 2px; }
/* Underline links in body paragraph text (accessibility — non-colour differentiator) */
p > a[href]:not(.btn):not(.nav-cta):not(.drawer-cta):not(.footer-phone):not(.nav-brand),
.info-value a[href] { text-decoration: underline; text-underline-offset: 3px; }
h1,h2,h3,h4 { line-height: 1.1; letter-spacing: -.02em; color: var(--ink); }
ul { list-style: none; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ===== NAV (G17, G20, G36) ===== */
.nav-wrap {
  position: fixed; top: 16px; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: center;
  pointer-events: none;
}
.nav-pill {
  display: inline-flex; align-items: center; gap: 24px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 9999px;
  box-shadow: 0 1px 0 rgba(255,255,255,.8) inset,
              0 0 0 1px rgba(10,15,28,.06),
              0 8px 24px -8px rgba(10,15,28,.14);
  padding: 8px 8px 8px 20px;
  pointer-events: auto;
  width: fit-content;
}
.nav-brand {
  font-weight: 800; font-size: 15px; color: var(--ink);
  letter-spacing: -.02em; white-space: nowrap; flex-shrink: 0;
}
.nav-brand span { color: var(--brand); }
.nav-links {
  display: none; gap: 20px; margin: 0;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink);
  padding: 6px 2px; white-space: nowrap; transition: color .15s;
}
.nav-links a:hover { color: var(--brand); }
.nav-cta {
  display: none; align-items: center;
  background: var(--brand); color: #fff;
  padding: 9px 18px; border-radius: 9999px;
  font-size: 14px; font-weight: 600; white-space: nowrap;
  transition: background .15s;
}
.nav-cta:hover { background: var(--brand-dk); color: #fff; }
.mobile-menu-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border: 0;
  background: transparent; cursor: pointer; color: var(--ink);
  border-radius: 9999px; transition: background .15s;
}
.mobile-menu-toggle:hover { background: rgba(10,15,28,.06); }
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .mobile-menu-toggle { display: none !important; }
}

/* Mobile drawer */
.drawer-overlay {
  display: none; position: fixed; inset: 0; z-index: 98;
  background: rgba(10,15,28,.3); backdrop-filter: blur(2px);
}
.drawer-overlay.open { display: block; }
.mobile-drawer {
  display: none; flex-direction: column; gap: 0;
  position: fixed; top: 76px; left: 16px; right: 16px; bottom: 80px;
  background: #fff; border-radius: 24px;
  border: 1px solid var(--hair); box-shadow: var(--shadow-md);
  z-index: 99; overflow-y: auto; padding: 28px 24px 24px;
}
.mobile-drawer.open { display: flex; }
.mobile-drawer .close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px; border: 0;
  background: var(--tint); border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.mobile-drawer ul { display: flex; flex-direction: column; gap: 0; margin-bottom: 24px; }
.mobile-drawer ul li a {
  display: block; font-size: 22px; font-weight: 700;
  color: var(--ink); padding: 14px 0;
  border-bottom: 1px solid var(--hair);
}
.drawer-phone {
  display: flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 700; color: var(--brand);
  margin-bottom: 16px;
}
.drawer-cta {
  display: flex; align-items: center; justify-content: center;
  background: var(--brand); color: #fff; border-radius: 14px;
  padding: 14px; font-size: 16px; font-weight: 700;
  margin-top: auto;
}

/* ===== STICKY CTA (G8) ===== */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  display: flex; height: 56px;
}
.sticky-half {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 8px;
  font-size: 16px; font-weight: 700; color: #fff;
  letter-spacing: .02em;
}
.sticky-half svg { flex-shrink: 0; }
.sticky-half.call { background: var(--brand); }
.sticky-half.message { background: #0a0a0a; }
@media (min-width: 1024px) { .sticky-cta { display: none; } }

/* ===== HERO (G10, G16, G18) — full-bleed backdrop image ===== */
.hero {
  background: var(--brand);
  padding: 128px 0 96px;
  position: relative; overflow: hidden;
  min-height: 640px;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  display: block;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 75% center;
  display: block;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8,20,42,.88) 0%, rgba(8,20,42,.62) 38%, rgba(8,20,42,.18) 70%, rgba(8,20,42,0) 100%),
    linear-gradient(180deg, rgba(8,20,42,.35) 0%, rgba(8,20,42,0) 30%, rgba(8,20,42,0) 60%, rgba(8,20,42,.45) 100%);
}
@media (max-width: 720px) {
  .hero { min-height: 560px; padding: 112px 0 80px; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(8,20,42,.45) 0%, rgba(8,20,42,.55) 40%, rgba(8,20,42,.75) 100%);
  }
  .hero-bg img { object-position: 38% 30%; }
}

.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
}
.hero-copy { max-width: 600px; text-align: left; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 9999px; padding: 6px 14px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.95);
  margin-bottom: 24px; letter-spacing: .02em;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #4ade80;
  flex-shrink: 0; position: relative;
  box-shadow: 0 0 0 0 rgba(74,222,128,.7);
  animation: badge-pulse 2s cubic-bezier(.4,0,.6,1) infinite;
}
@keyframes badge-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,.7); }
  70%  { box-shadow: 0 0 0 10px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
.hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 900; color: #fff;
  line-height: 1.05; letter-spacing: -.035em;
  margin-bottom: 20px;
}
.hero h1 .muted-head { color: rgba(255,255,255,.72); font-weight: 400; }
.hero h1 .head-accent {
  position: relative; display: inline-block;
  color: #fff;
}
.hero h1 .head-accent::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 6px;
  height: 12px; background: #4ade80; opacity: .9;
  z-index: -1; transform: skewX(-8deg);
  border-radius: 2px;
}
.hero-lead {
  font-size: 18px; color: rgba(255,255,255,.85);
  line-height: 1.6; margin-bottom: 32px; max-width: 560px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 26px; border-radius: 9999px;
  font-weight: 700; font-size: 15px; transition: all .15s; cursor: pointer;
  border: 2px solid transparent; white-space: nowrap; text-decoration: none;
}
.btn-primary { background: #fff; color: var(--brand); }
.btn-primary:hover { background: var(--brand-soft); color: var(--brand-dk); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); color: #fff; }
.btn-brand { background: var(--brand); color: #fff; }
.btn-brand:hover { background: var(--brand-dk); color: #fff; transform: translateY(-1px); }
.btn-outline { background: #fff; color: var(--ink); border-color: var(--hair-md); }
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }

/* Hero stats */
.hero-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border-top: 1px solid rgba(255,255,255,.2); padding-top: 32px;
}
.hero-stat {
  padding: 0 24px 0 0; border-right: 1px solid rgba(255,255,255,.2);
}
.hero-stat:last-child { border-right: 0; padding-right: 0; padding-left: 24px; }
.hero-stat:nth-child(2) { padding-left: 24px; }
.hero-stat .num { font-size: 36px; font-weight: 900; color: #fff; line-height: 1; letter-spacing: -.03em; display: block; }
.hero-stat .lab { font-size: 13px; color: rgba(255,255,255,.8); margin-top: 6px; line-height: 1.4; }
@media (min-width: 640px) {
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
  .hero-stat:nth-child(3) { padding-left: 24px; border-right: 1px solid rgba(255,255,255,.2); }
  .hero-stat:nth-child(4) { padding-left: 24px; border-right: 0; padding-right: 0; }
}
@media (min-width: 1024px) { .hero { padding: 160px 0 96px; } }

/* ===== SECTIONS ===== */
.section { padding: 88px 0; background: #fff; }
.section.tinted { background: var(--tint); }
.section.dark { background: var(--ink); color: #fff; }
.section-head { margin-bottom: 56px; max-width: 680px; }
.section-head.centered { text-align: center; margin-left: auto; margin-right: auto; }
.eyebrow {
  font-family: var(--f-mono); font-size: 11.5px; font-weight: 500;
  color: var(--mute); text-transform: uppercase; letter-spacing: .09em;
  display: block; margin-bottom: 14px;
}
.dark .eyebrow { color: rgba(255,255,255,.7); }
.section-head h2 {
  font-size: clamp(32px, 4.5vw, 52px); font-weight: 800;
  letter-spacing: -.025em;
}
.section-head h2 .thin { font-weight: 300; color: #9aa3b3; }
.dark .section-head h2 { color: #fff; }
.dark .section-head h2 .thin { color: rgba(255,255,255,.65); }
.section-lead {
  font-size: 17px; color: var(--mute); line-height: 1.65;
  margin-top: 16px; max-width: 580px;
}
.dark .section-lead { color: rgba(255,255,255,.78); }

/* ===== SERVICES LIST ===== */
.services-list { border-top: 1px solid var(--hair); }
.service-row {
  display: grid; grid-template-columns: 48px 1fr 28px;
  gap: 16px; padding: 26px 16px;
  border-bottom: 1px solid var(--hair);
  align-items: start; text-decoration: none; color: inherit;
  transition: background .2s ease, transform .2s ease, padding .2s ease, box-shadow .2s ease;
  position: relative; margin: 0 -16px;
  border-radius: 12px;
}
.service-row::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 3px; height: 0; background: var(--brand);
  transform: translateY(-50%); border-radius: 0 3px 3px 0;
  transition: height .25s ease;
}
.service-row:hover {
  background: linear-gradient(90deg, rgba(26,95,168,.05) 0%, rgba(26,95,168,0) 100%);
  transform: translateX(6px);
}
.service-row:hover::before { height: 50%; }
.svc-num { font-family: var(--f-mono); font-size: 13px; color: var(--brand); padding-top: 3px; font-weight: 600; }
.svc-body {}
.svc-name { font-size: clamp(18px, 2.6vw, 24px); font-weight: 700; color: var(--ink); letter-spacing: -.015em; transition: color .15s; }
.service-row:hover .svc-name { color: var(--brand); }
.svc-blurb { font-size: 14.5px; color: var(--mute); line-height: 1.6; margin-top: 6px; }
.svc-arrow { align-self: center; color: var(--mute); transition: transform .2s, color .2s; }
.service-row:hover .svc-arrow { color: var(--brand); transform: translateX(6px); }

/* ===== GOOGLE REVIEWS (G4 — copied verbatim from template1) ===== */
.gr-summary{display:flex;align-items:center;justify-content:space-between;gap:32px;padding:24px 28px;background:#fff;border:1px solid var(--hair);border-radius:18px;margin-bottom:40px;flex-wrap:wrap;box-shadow:var(--shadow-soft)}
.gr-sum-left{display:flex;align-items:center;gap:20px}
.gr-logo{width:48px;height:48px;border-radius:999px;background:#f8f9fa;border:1px solid var(--hair);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.gr-meta-top{display:flex;align-items:baseline;gap:10px}
.gr-score{font-size:28px;font-weight:600;letter-spacing:-.03em;color:var(--ink)}
.gr-stars{display:inline-flex;gap:1px;color:#fbbc05;font-size:17px;letter-spacing:-1px}
.gr-sub{font-size:13px;color:var(--mute);margin-top:2px}
.gr-sub strong{color:var(--ink);font-weight:600}
.gr-cta{display:inline-flex;align-items:center;gap:8px;padding:11px 18px;border-radius:999px;font-size:13px;font-weight:500;color:var(--ink);border:1px solid var(--hair);background:#fff;transition:background .25s,transform .25s,border-color .25s;letter-spacing:-.005em}
.gr-cta:hover{background:var(--ink);color:#fff;border-color:var(--ink);transform:translateY(-1px)}
.gr-cta svg{width:12px;height:12px}
.gr-marquee{position:relative;overflow:hidden;margin:0 -32px 16px;padding:8px 0;min-height:180px;isolation:isolate;contain:layout}
.gr-marquee::before,.gr-marquee::after{content:'';position:absolute;top:0;bottom:0;width:60px;z-index:2;pointer-events:none}
.gr-marquee::before{left:0;background:linear-gradient(90deg,#fff,transparent)}
.gr-marquee::after{right:0;background:linear-gradient(-90deg,#fff,transparent)}
.gr-marquee:last-child{margin-bottom:0}
.gr-track{display:flex;gap:20px;width:max-content;will-change:transform;animation:gr-scroll 48s linear infinite}
.gr-marquee-reverse .gr-track{animation-name:gr-scroll-rev}
.gr-marquee:hover .gr-track{animation-play-state:paused}
@keyframes gr-scroll{from{transform:translate3d(0,0,0)}to{transform:translate3d(-50%,0,0)}}
@keyframes gr-scroll-rev{from{transform:translate3d(-50%,0,0)}to{transform:translate3d(0,0,0)}}
@media(prefers-reduced-motion:reduce){.gr-track{animation:none}}
.gr-card{flex:0 0 360px;background:#fff;border:1px solid var(--hair);border-radius:16px;padding:20px 22px;display:flex;flex-direction:column;gap:12px;box-shadow:var(--shadow-soft);transition:transform .3s,box-shadow .3s,border-color .3s}
.gr-card:hover{transform:translateY(-2px);border-color:rgba(10,10,10,.14);box-shadow:0 1px 2px rgba(10,10,10,.04),0 18px 40px -14px rgba(10,10,10,.14)}
.gr-card-head{display:flex;align-items:center;gap:12px}
.gr-avatar{width:40px;height:40px;border-radius:999px;color:#fff;font-weight:600;font-size:14px;display:flex;align-items:center;justify-content:center;flex-shrink:0;letter-spacing:-.015em}
.gr-who{flex:1;min-width:0}
.gr-name{font-size:14px;font-weight:600;letter-spacing:-.01em;color:var(--ink);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.gr-date{font-size:11.5px;color:var(--mute);margin-top:2px;font-family:var(--f-mono);letter-spacing:0}
.gr-g-mark{flex-shrink:0}
.gr-stars-row{display:flex;gap:2px}
.gr-s{width:15px;height:15px;fill:#e7e7e7}
.gr-s.on{fill:#fbbc05}
.gr-text{font-size:13.5px;line-height:1.55;color:var(--ink-soft);letter-spacing:-.005em;display:-webkit-box;-webkit-line-clamp:5;-webkit-box-orient:vertical;overflow:hidden}
@media(max-width:768px){
  .gr-card{flex:0 0 280px;padding:18px 18px}
  .gr-summary{padding:18px 20px}
  .gr-score{font-size:24px}
  .gr-marquee-reverse{display:none}
  .gr-marquee{margin:0 -20px 16px}
}

/* ===== FAQ / ACCORDION ===== */
.faq-list { border-top: 1px solid var(--hair); }
details {
  border-bottom: 1px solid var(--hair);
  padding: 0;
}
summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 0; cursor: pointer;
  font-size: 17px; font-weight: 600; color: var(--ink);
  letter-spacing: -.01em; list-style: none;
}
summary::-webkit-details-marker { display: none; }
.faq-icon { flex-shrink: 0; transition: transform .2s; color: var(--brand); }
details[open] .faq-icon { transform: rotate(45deg); }
.faq-body {
  padding: 0 0 20px 0; font-size: 15.5px;
  color: var(--mute); line-height: 1.65;
}

/* ===== AREA CHIPS ===== */
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.area-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--brand-soft); color: var(--brand-dk);
  border-radius: 9999px; padding: 7px 14px;
  font-size: 13.5px; font-weight: 500; letter-spacing: -.01em;
}

/* ===== CONTACT FORM (G19) ===== */
.contact-grid {
  display: grid; gap: 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.form-card {
  background: #fff; border: 1px solid var(--hair);
  border-radius: var(--r-lg); padding: 40px 36px;
  box-shadow: var(--shadow-soft);
}
.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 8px; letter-spacing: .01em; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--hair-md); border-radius: 10px;
  font-size: 15px; font-family: inherit; color: var(--ink);
  background: #fff; outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.form-row input:focus, .form-row textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(26,95,168,.12);
}
.form-row textarea { height: 120px; resize: vertical; }
.form-submit {
  width: 100%; padding: 14px; border: 0; border-radius: 10px;
  background: var(--brand); color: #fff;
  font-size: 16px; font-weight: 700; cursor: pointer;
  transition: background .15s, transform .15s;
}
.form-submit:hover { background: var(--brand-dk); transform: translateY(-1px); }
.form-message { display: none; padding: 12px 16px; border-radius: 10px; font-size: 14px; font-weight: 500; margin-top: 16px; }
.form-message.success { display: block; background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.form-message.error { display: block; background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

/* ===== INFO CARD ===== */
.info-card {
  background: var(--tint); border: 1px solid var(--hair);
  border-radius: var(--r-lg); padding: 36px 32px;
}
.info-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 24px; }
.info-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--hair);
}
.info-item:last-child { border-bottom: 0; }
.info-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--brand-soft); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-label { font-size: 11.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--mute); font-weight: 600; margin-bottom: 4px; }
.info-value { font-size: 15px; font-weight: 600; color: var(--ink); }

/* ===== NAP BLOCK (G30) ===== */
.nap-block { display: flex; flex-wrap: wrap; gap: 24px 48px; font-size: 14.5px; color: var(--mute); }
.nap-item { display: flex; align-items: center; gap: 8px; }
.nap-item strong { color: var(--ink); font-weight: 600; }

/* ===== LOCATION CARD ===== */
.location-card {
  background: var(--brand); border-radius: var(--r-lg);
  padding: 40px 36px; color: #fff;
  display: flex; flex-direction: column; gap: 12px;
}
.location-card h3 { font-size: 28px; font-weight: 900; color: #fff; }
.location-card p { color: rgba(255,255,255,.8); font-size: 15px; line-height: 1.6; }

/* ===== FOOTER (G5, G23, G28, G30) ===== */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,.7);
  padding: 64px 0 88px;
}
@media (min-width: 1024px) { .site-footer { padding-bottom: 64px; } }
.footer-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; } }
.footer-brand { font-size: 18px; font-weight: 900; color: #fff; letter-spacing: -.02em; margin-bottom: 12px; }
.footer-brand span { color: var(--brand-soft); }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.6; max-width: 280px; margin-bottom: 20px; }
.footer-phone { font-size: 22px; font-weight: 800; color: #fff; display: block; margin-bottom: 6px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14.5px; color: rgba(255,255,255,.78); transition: color .15s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,.55);
}
.footer-credit a { color: rgba(255,255,255,.65); }
.footer-credit a:hover { color: rgba(255,255,255,.85); }

/* ===== BREADCRUMBS (under hero) ===== */
.breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
  font-size: 13px; color: var(--mute); padding: 20px 24px 0;
}
.breadcrumb a { color: var(--mute); }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb-sep { color: var(--hair-md); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--brand); padding: 140px 0 72px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg,rgba(0,0,0,.2) 0%,transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 900; color: #fff; margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,.8); max-width: 560px; line-height: 1.6; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid; gap: 56px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.owner-card {
  background: var(--brand-soft); border-radius: var(--r-lg);
  padding: 40px 36px; display: flex; flex-direction: column; gap: 20px;
}
.owner-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--brand); color: #fff;
  font-size: 32px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: -.03em;
}
.owner-name { font-size: 26px; font-weight: 900; color: var(--ink); }
.owner-title { font-size: 14px; color: var(--mute); font-weight: 500; }
.owner-bio { font-size: 15.5px; color: var(--ink-soft); line-height: 1.7; }

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

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