/* ============================================================
   Strong Insurance Services — ARTISANAL (improved v1)
   Cumberland Plateau character: fieldstone, timber, plateau greens.
   Palette = Strong's own brand + Erie blue (co-brand badge only).
   Hand-crafted editorial soul, tightened polish, real human warmth.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500;1,9..144,600;1,9..144,700&family=Source+Sans+3:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root {
  /* Brand palette (Strong's own) */
  --navy:        #1f2a52;
  --navy-deep:   #151c38;
  --navy-soft:   #2c3a6b;
  --maroon:      #7e300c;
  --maroon-lt:   #9a4116;
  --brick:       #7d0b0b;
  --tan:         #d3c075;
  --tan-soft:    #e6d9a8;
  --gold-line:   #c2a85a;

  /* Plateau / place */
  --plateau:     #44623f;
  --plateau-lt:  #6f8a5e;
  --plateau-dk:  #324a2e;
  --stone:       #b9b0a2;

  /* Erie co-brand — used ONLY on the Erie badge */
  --erie:        #005fac;

  /* Paper / surfaces */
  --paper:       #faf6ee;   /* warm cream, not pure white */
  --paper-2:     #f3ecdd;
  --paper-3:     #efe6d3;
  --ink:         #211c16;   /* warm near-black */
  --ink-soft:    #4a4338;
  --ink-mute:    #6c6256;
  --line:        #e2d6bf;
  --line-soft:   #ece2cf;

  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:  'Source Sans 3', system-ui, -apple-system, sans-serif;

  --maxw: 1200px;
  --radius: 5px;
  --radius-lg: 12px;
  --shadow-soft: 0 16px 44px -26px rgba(31,42,82,.42);
  --shadow-card: 0 26px 64px -34px rgba(33,28,22,.55);
  --shadow-photo: 0 34px 70px -32px rgba(21,28,56,.55);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --ease-out: cubic-bezier(.2,.7,.3,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.72;
  color: var(--ink);
  background: var(--paper);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--maroon); text-decoration: none; }
a:hover { color: var(--brick); }
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 600; color: var(--navy); line-height: 1.07; margin: 0 0 .4em; letter-spacing: -.012em; }
p { margin: 0 0 1.1em; }
:focus-visible { outline: 3px solid var(--tan); outline-offset: 2px; border-radius: 3px; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.eyebrow {
  font-family: var(--sans); font-weight: 700; font-size: .76rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--maroon);
  display: inline-flex; align-items: center; gap: .65rem; margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--gold-line); display: inline-block; flex: none; }
.eyebrow.center { display: flex; justify-content: center; }
.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 500; }

/* ============================================================ Buttons ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans); font-weight: 700; font-size: .98rem;
  letter-spacing: .01em; padding: .88rem 1.6rem; border-radius: var(--radius);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .35s var(--ease-spring), box-shadow .35s ease, background .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--maroon); color: #fff; box-shadow: 0 12px 28px -14px rgba(126,48,12,.85); }
.btn-primary:hover { background: var(--brick); color: #fff; box-shadow: 0 20px 38px -14px rgba(125,11,11,.9); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); color: #fff; }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost-light:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn svg { width: 18px; height: 18px; transition: transform .3s var(--ease-spring); }
.btn:hover svg { transform: translateX(3px); }
.btn-ghost:hover svg, .btn .ph-call { transform: none; }

/* ============================================================ Topbar / header / nav ============================================================ */
.topbar { background: var(--navy-deep); color: #d9def0; font-size: .85rem; font-family: var(--sans); }
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 42px; flex-wrap: wrap; }
.topbar a { color: #e7ebf7; }
.topbar a:hover { color: var(--tan); }
.topbar .tb-left { display: flex; gap: 1.6rem; flex-wrap: wrap; align-items: center; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: .45rem; }
.topbar .tb-item svg { width: 14px; height: 14px; opacity: .8; color: var(--tan); }
.topbar .tb-right { color: #c8cfe6; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,246,238,.9);
  backdrop-filter: saturate(170%) blur(10px);
  -webkit-backdrop-filter: saturate(170%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 80px; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .9rem; }
.brand img { height: 50px; width: auto; }
.brand .erie-tag {
  font-family: var(--sans); font-size: .6rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--erie); border-left: 2px solid var(--erie);
  padding-left: .65rem; line-height: 1.3;
}
.nav { display: flex; align-items: center; gap: .3rem; }
.nav a.navlink {
  font-family: var(--sans); font-weight: 600; font-size: 1rem; color: var(--navy);
  padding: .5rem .9rem; border-radius: var(--radius); position: relative;
}
.nav a.navlink::after {
  content: ""; position: absolute; left: .9rem; right: .9rem; bottom: .28rem; height: 2px;
  background: var(--maroon); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease-spring);
}
.nav a.navlink:hover::after, .nav a.navlink.active::after { transform: scaleX(1); }
.nav a.navlink.active { color: var(--maroon); }
.nav .btn { margin-left: .7rem; }

.nav-toggle { display: none; background: none; border: 1.5px solid var(--navy); border-radius: var(--radius); padding: .45rem .55rem; cursor: pointer; color: var(--navy); }
.nav-toggle svg { width: 22px; height: 22px; display: block; }
#nav-check { display: none; }

/* ============================================================ Hero (photographic plateau) ============================================================ */
.hero { position: relative; overflow: hidden; background: var(--navy-deep); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(21,28,56,.42) 0%, rgba(21,28,56,.28) 38%, rgba(21,28,56,.74) 100%),
    linear-gradient(100deg, rgba(21,28,56,.82) 0%, rgba(21,28,56,.5) 40%, rgba(21,28,56,.05) 72%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; padding: 5.2rem 0 5.6rem; }
.hero-copy { color: #fff; max-width: 36rem; }
.hero h1 { color: #fff; font-size: clamp(2.7rem, 5.4vw, 4.5rem); font-weight: 600; text-shadow: 0 2px 24px rgba(0,0,0,.3); }
.hero h1 .accent { color: var(--tan); font-style: italic; }
.hero .lede { font-size: 1.24rem; color: rgba(255,255,255,.92); max-width: 34ch; margin-top: .6rem; text-shadow: 0 1px 14px rgba(0,0,0,.35); }
.hero-cta { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-proof { display: flex; align-items: center; gap: .9rem; margin-top: 2.3rem; }
.stars { color: var(--tan); font-size: 1.15rem; letter-spacing: .08em; }
.hero-proof .pp { font-family: var(--sans); font-size: .95rem; color: rgba(255,255,255,.9); }
.hero-proof .pp strong { color: #fff; font-weight: 700; }

/* hero card: the agent who answers */
.hero-card {
  justify-self: end; max-width: 360px; width: 100%;
  background: rgba(250,246,238,.97); border-radius: var(--radius-lg);
  padding: 1.7rem 1.7rem 1.5rem; box-shadow: var(--shadow-photo);
  border: 1px solid rgba(255,255,255,.4); transform: rotate(.6deg);
}
.hero-card .who { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.1rem; }
.hero-card .who .avatar { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; flex: none; border: 3px solid #fff; box-shadow: var(--shadow-soft); }
.hero-card .who .avatar img { width: 100%; height: 100%; object-fit: cover; }
.hero-card .who .nm { font-family: var(--serif); font-weight: 600; font-size: 1.25rem; color: var(--navy); line-height: 1.1; }
.hero-card .who .rl { font-family: var(--sans); font-weight: 700; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--maroon); margin-top: .15rem; }
.hero-card .q { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 1.08rem; color: var(--ink); line-height: 1.45; margin: 0 0 1.1rem; }
.hero-card .erie-badge { margin: 0; }

/* Erie ribbon badge */
.erie-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: #fff; border: 1px solid #d4e1ef; border-left: 4px solid var(--erie);
  border-radius: var(--radius); padding: .55rem .9rem; box-shadow: var(--shadow-soft);
}
.erie-badge .dot { width: 26px; height: 26px; border-radius: 50%; background: var(--erie); display: grid; place-items: center; color: #fff; font-family: var(--serif); font-weight: 700; font-style: italic; font-size: .95rem; flex: none; }
.erie-badge .txt { font-family: var(--sans); font-weight: 600; font-size: .82rem; color: var(--navy); line-height: 1.2; }
.erie-badge .txt small { display: block; font-weight: 700; color: var(--erie); font-size: .7rem; letter-spacing: .04em; }

/* ============================================================ Section scaffolding (unequal weights) ============================================================ */
section { position: relative; }
.section { padding: 5.2rem 0; }
.section-tight { padding: 3.4rem 0; }
.section-lg { padding: 6.6rem 0; }
.bg-paper2 { background: var(--paper-2); }
.bg-navy { background: var(--navy-deep); color: #e9ecf6; }
.bg-navy h1,.bg-navy h2,.bg-navy h3 { color: #fff; }
.bg-navy .eyebrow { color: var(--tan); }
.bg-navy .eyebrow::before { background: var(--tan); }
.bg-navy a { color: var(--tan); }
.bg-plateau { background: var(--plateau); color: #eef3e9; }
.bg-plateau h2,.bg-plateau h3 { color: #fff; }
.bg-plateau .eyebrow { color: var(--tan-soft); }
.bg-plateau .eyebrow::before { background: var(--tan-soft); }

.section-head { max-width: 58ch; margin-bottom: 2.8rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2.05rem, 3.7vw, 2.95rem); }
.section-head p { font-size: 1.13rem; color: var(--ink-soft); }
.bg-navy .section-head p, .bg-plateau .section-head p { color: rgba(255,255,255,.84); }

/* ============================================================ Value props ============================================================ */
.props { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; }
.prop { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2.1rem 1.8rem; position: relative; transition: transform .4s var(--ease-spring), box-shadow .4s ease, border-color .3s ease; }
.prop:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--tan); }
.prop .ic { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; background: var(--paper-2); border: 1px solid var(--line); margin-bottom: 1.1rem; color: var(--maroon); }
.prop .ic svg { width: 26px; height: 26px; }
.prop h3 { font-size: 1.34rem; }
.prop p { font-size: 1rem; color: var(--ink-soft); margin: 0; }

/* ============================================================ Coverage / line cards ============================================================ */
.lines { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.3rem; }
.line-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem 1.7rem; position: relative; overflow: hidden; transition: transform .4s var(--ease-spring), box-shadow .4s ease, border-color .3s; }
.line-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--tan); transform: scaleY(0); transform-origin: top; transition: transform .4s ease; }
.line-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: var(--tan); }
.line-card:hover::before { transform: scaleY(1); }
.line-card .ic { width: 46px; height: 46px; color: var(--maroon); margin-bottom: .9rem; }
.line-card .ic svg { width: 38px; height: 38px; }
.line-card h3 { font-size: 1.26rem; margin-bottom: .35rem; }
.line-card p { font-size: .98rem; color: var(--ink-soft); margin: 0; }
.line-card .tag { display:inline-block; margin-top: .9rem; font-family: var(--sans); font-weight:700; font-size:.7rem; letter-spacing:.08em; text-transform:uppercase; color: var(--plateau); }
a.line-card { color: var(--ink); }

/* ============================================================ Carriers strip ============================================================ */
.carriers { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }
.carrier-chip { font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 1.14rem; color: var(--navy); background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: .58rem 1.5rem; transition: transform .3s var(--ease-spring), border-color .25s, box-shadow .3s; }
.carrier-chip:hover { transform: translateY(-2px); border-color: var(--tan); box-shadow: var(--shadow-soft); }
.carrier-chip.erie { color: var(--erie); border-color: #bcd6ee; }

/* ============================================================ Big quote / proof split ============================================================ */
.quote-block { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3.2rem; align-items: center; }
.bigquote { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(1.6rem,3vw,2.3rem); line-height: 1.34; color: #fff; }
.bigquote .mark { color: var(--tan); font-size: 1.4em; line-height: 0; vertical-align: -.3em; }
.quote-by { margin-top: 1.3rem; font-family: var(--sans); }
.quote-by strong { color: var(--tan); }
.review-card { background: var(--paper); color: var(--ink); border-radius: var(--radius-lg); padding: 2rem 1.9rem; box-shadow: var(--shadow-card); }
.review-card .stars { font-size: 1.3rem; }
.review-card .score { font-family: var(--serif); font-weight: 700; font-size: 3rem; color: var(--navy); line-height: 1; margin: .3rem 0; }
.review-card .score small { font-size: 1.1rem; color: var(--maroon); }
.review-card p { font-size: 1rem; color: var(--ink-soft); margin: .8rem 0 0; }

/* a quote with the agent's real face */
.amy-quote { display:flex; align-items:center; gap: 1rem; margin-top: 1.5rem; }
.amy-quote .avatar { width: 58px; height: 58px; border-radius: 50%; overflow: hidden; border: 3px solid var(--tan); flex: none; }
.amy-quote .avatar img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================ Reviews row ============================================================ */
.review-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.rv { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.7rem 1.6rem; box-shadow: var(--shadow-soft); }
.rv .stars { color: var(--tan); font-size: 1.05rem; letter-spacing: .06em; }
.rv blockquote { margin: .7rem 0 1.1rem; font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 1.12rem; color: var(--ink); line-height: 1.5; }
.rv .by { font-family: var(--sans); font-weight: 700; font-size: .9rem; color: var(--navy); }
.rv .by span { display:block; font-weight: 600; font-size: .8rem; color: var(--ink-mute); }

/* ============================================================ Team (real portraits, not monograms) ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.member { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .4s var(--ease-spring), box-shadow .4s; }
.member:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.member .ph { position: relative; aspect-ratio: 4 / 3.2; overflow: hidden; background: linear-gradient(135deg, var(--navy), var(--navy-soft)); }
.member .ph img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; transition: transform .6s var(--ease-out); }
.member:hover .ph img { transform: scale(1.04); }
.member .ph::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(21,28,56,.28) 100%); }
.member.lead .ph::before { content:"Most requested"; position:absolute; top:.8rem; left:.8rem; z-index:2; background: var(--maroon); color:#fff; font-family:var(--sans); font-weight:700; font-size:.64rem; letter-spacing:.08em; text-transform:uppercase; padding:.28rem .6rem; border-radius:3px; box-shadow: var(--shadow-soft); }
.member .body { padding: 1.3rem 1.4rem 1.5rem; }
.member h3 { font-size: 1.3rem; margin-bottom: .1rem; }
.member .role { font-family: var(--sans); font-weight: 700; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--maroon); }
.member p { font-size: .96rem; color: var(--ink-soft); margin: .7rem 0 .9rem; }
.member .contact { display:flex; flex-direction:column; gap:.3rem; }
.member .contact a { display:inline-flex; align-items:center; gap:.4rem; font-family:var(--sans); font-weight:600; font-size:.9rem; }
.member.cta-tile { display:grid; place-items:center; text-align:center; background:linear-gradient(150deg,var(--paper),var(--paper-3)); border-style:dashed; }
.member.cta-tile .body { padding: 2rem 1.6rem; }

/* ============================================================ Locations ============================================================ */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; }
.loc-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.loc-card .photo { position: relative; height: 220px; overflow: hidden; }
.loc-card .photo img { width:100%; height:100%; object-fit: cover; }
.loc-card .photo .loc-tag { position:absolute; top:1rem; left:1rem; }
.loc-card .map { width: 100%; height: 230px; border: 0; display: block; filter: saturate(.95); }
.loc-card .lbody { padding: 1.6rem 1.7rem 1.8rem; }
.loc-card h3 { font-size: 1.55rem; }
.loc-meta { list-style: none; padding: 0; margin: .9rem 0 1.2rem; font-family: var(--sans); }
.loc-meta li { display: flex; gap: .7rem; align-items: flex-start; padding: .35rem 0; color: var(--ink-soft); }
.loc-meta li svg { width: 18px; height: 18px; color: var(--maroon); flex: none; margin-top: .25rem; }
.loc-meta a { font-weight: 600; }
.loc-tag { display:inline-block; font-family: var(--sans); font-weight:700; font-size:.68rem; letter-spacing:.1em; text-transform:uppercase; color:#fff; background: var(--maroon); padding:.28rem .7rem; border-radius:3px; box-shadow: var(--shadow-soft); }
.loc-tag.alt { background: var(--plateau); }

/* ============================================================ Form ============================================================ */
.form-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 3rem; align-items: start; }
.qform { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2.3rem; box-shadow: var(--shadow-card); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--sans); font-weight: 600; font-size: .9rem; color: var(--navy); margin-bottom: .35rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); padding: .75rem .9rem;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--maroon); box-shadow: 0 0 0 3px rgba(126,48,12,.14); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: .85rem; color: var(--ink-soft); margin-top: .6rem; }

.contact-aside { font-family: var(--sans); }
.contact-aside h3 { font-size: 1.7rem; }
.contact-aside .big-call { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 1.8rem; color: var(--maroon); margin: .4rem 0 .2rem; }
.contact-aside .big-call svg { width: 26px; height: 26px; }
.contact-aside .loc-meta li svg { color: var(--plateau); }

/* ============================================================ Page hero (interior) ============================================================ */
.page-hero { background: var(--navy-deep); color: #fff; position: relative; overflow: hidden; padding: 3.8rem 0; }
.page-hero .ph-bg { position:absolute; inset:0; z-index:0; }
.page-hero .ph-bg img { width:100%; height:100%; object-fit: cover; opacity:.34; }
.page-hero .ph-bg::after { content:""; position:absolute; inset:0; background: linear-gradient(100deg, rgba(21,28,56,.92) 30%, rgba(21,28,56,.55) 100%); }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--tan); }
.page-hero .eyebrow::before { background: var(--tan); }
.page-hero h1 { color: #fff; font-size: clamp(2.3rem,4.4vw,3.5rem); }
.page-hero p { color: rgba(255,255,255,.88); font-size: 1.16rem; max-width: 60ch; margin-bottom: 0; }
.crumbs { font-family: var(--sans); font-size: .85rem; color: rgba(255,255,255,.62); margin-bottom: 1rem; }
.crumbs a { color: var(--tan); }

/* ============================================================ Story / about ============================================================ */
.story { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3.4rem; align-items: center; }
.story .photo-stack { position: relative; }
.story .photo-stack > img { border-radius: var(--radius-lg); border: 7px solid #fff; box-shadow: var(--shadow-photo); outline: 1px solid var(--line); width: 100%; }
.story .photo-stack .est { position: absolute; bottom: -22px; left: -18px; background: var(--maroon); color: #fff; width: 122px; height: 122px; border-radius: 50%; display: grid; place-items: center; text-align: center; font-family: var(--serif); box-shadow: var(--shadow-card); transform: rotate(-6deg); }
.story .photo-stack .est b { font-size: 1.95rem; font-style: italic; line-height: 1; display:block; }
.story .photo-stack .est span { font-size: .66rem; font-family: var(--sans); font-weight:700; letter-spacing: .14em; text-transform: uppercase; margin-top: .2rem; }
.story p.first::first-letter { font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 3.7rem; float: left; line-height: .78; padding: .1rem .5rem .1rem 0; color: var(--maroon); }
.pull { font-family:var(--serif); font-style:italic; font-weight:500; font-size:1.35rem; color:var(--maroon); border-left:3px solid var(--tan); padding-left:1.1rem; margin-top:1.6rem; line-height:1.45; }

/* stats */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.4rem; text-align: center; }
.stat .n { font-family: var(--serif); font-weight: 700; font-size: clamp(2.2rem,4vw,3.2rem); color: var(--tan); line-height: 1; }
.stat .l { font-family: var(--sans); font-size: .92rem; color: rgba(255,255,255,.82); margin-top: .4rem; }

/* neighbor band (scenery + warmth) */
.neighbor { position: relative; overflow: hidden; color: #fff; padding: 5.6rem 0; }
.neighbor .nb-bg { position:absolute; inset:0; z-index:0; }
.neighbor .nb-bg img { width:100%; height:100%; object-fit: cover; }
.neighbor .nb-bg::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, rgba(50,74,46,.92) 28%, rgba(50,74,46,.55) 100%); }
.neighbor .wrap { position: relative; z-index: 1; }
.neighbor h2 { color:#fff; }
.neighbor .lede2 { font-size: 1.2rem; color: rgba(255,255,255,.92); max-width: 46ch; }
.neighbor .eyebrow { color: var(--tan-soft); }
.neighbor .eyebrow::before { background: var(--tan-soft); }

/* ============================================================ Final CTA band ============================================================ */
.cta-band { background: linear-gradient(135deg, var(--maroon), var(--brick)); color: #fff; text-align: center; padding: 5.2rem 0; position: relative; overflow:hidden; }
.cta-band::after { content:""; position:absolute; inset:0; opacity:.22; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='300' fill='none'%3E%3Cg stroke='%23ffffff' stroke-opacity='0.4' stroke-width='1'%3E%3Cpath d='M0 90 C 150 40 300 140 600 70'/%3E%3Cpath d='M0 140 C 150 90 300 190 600 120'/%3E%3Cpath d='M0 190 C 150 140 300 240 600 170'/%3E%3C/g%3E%3C/svg%3E"); background-position:center; background-repeat:no-repeat; background-size:cover; }
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(2rem,4vw,3rem); }
.cta-band p { color: rgba(255,255,255,.92); font-size: 1.16rem; max-width: 52ch; margin: 0 auto 1.8rem; }
.cta-band .btn-primary { background: #fff; color: var(--maroon); }
.cta-band .btn-primary:hover { background: var(--paper); color: var(--brick); }
.cta-band .btn-ghost-light { border-color: rgba(255,255,255,.7); }

/* ============================================================ Footer ============================================================ */
.site-footer { background: var(--navy-deep); color: #c4cbe0; font-family: var(--sans); padding: 3.8rem 0 1.6rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.2rem; }
.site-footer h4 { color: #fff; font-family: var(--serif); font-size: 1.12rem; margin-bottom: 1rem; }
.site-footer a { color: #c4cbe0; }
.site-footer a:hover { color: var(--tan); }
.footer-brand img { height: 48px; opacity: .96; margin-bottom: 1rem; }
.footer-brand p { max-width: 34ch; font-size: .96rem; }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { padding: .25rem 0; }
.foot-erie { display:inline-flex; align-items:center; gap:.5rem; background: rgba(0,95,172,.18); border:1px solid rgba(0,95,172,.4); border-radius:6px; padding:.5rem .8rem; margin-top: .9rem; }
.foot-erie .dot { width:22px;height:22px;border-radius:50%;background:var(--erie);display:grid;place-items:center;color:#fff;font-family:var(--serif);font-style:italic;font-weight:700;font-size:.8rem; flex:none; }
.foot-erie span { font-size:.78rem; color:#dbe6f3; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.6rem; padding-top: 1.4rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .82rem; color: #8e97b4; }

/* ============================================================ Reveal on scroll ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  * { scroll-behavior: auto !important; }
}

/* ============================================================ Responsive ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.4rem; padding: 4rem 0 4.4rem; }
  .hero-bg img { object-position: center 45%; }
  .hero-card { justify-self: start; transform: none; max-width: 420px; }
  .props, .lines, .team-grid, .review-row { grid-template-columns: repeat(2,1fr); }
  .quote-block, .story, .form-split { grid-template-columns: 1fr; gap: 2.4rem; }
  .loc-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .story .photo-stack > img { max-width: 520px; }
}
@media (max-width: 680px) {
  body { font-size: 17px; }
  .wrap { padding: 0 20px; }
  .nav { position: fixed; inset: 80px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 1rem 1.2rem 1.6rem; gap: .2rem;
    transform: translateY(-130%); transition: transform .4s var(--ease-out); box-shadow: var(--shadow-soft); z-index: 49; }
  #nav-check:checked ~ .nav { transform: translateY(0); }
  .nav a.navlink { padding: .8rem .6rem; font-size: 1.1rem; border-bottom: 1px solid var(--line); }
  .nav a.navlink::after { display: none; }
  .nav .btn { margin: .7rem 0 0; justify-content: center; }
  .nav-toggle { display: inline-flex; }
  .props, .lines, .team-grid, .review-row, .footer-grid, .stats { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .topbar .tb-left { gap: .9rem; }
  .topbar .tb-right { display: none; }
  .hero h1 { font-size: clamp(2.2rem,9vw,3rem); }
  .story .photo-stack .est { width: 100px; height: 100px; left: 0; }
  .footer-bottom { flex-direction: column; }
}
