/* EavesandGutters.ca — public site.
   Mobile first. Navy + copper, high contrast, no framework. */

:root {
  --navy: #0a2c54;
  --navy-700: #0f3a6b;
  --navy-300: #4b6b92;
  --copper: #c2571d;
  --copper-600: #a74713;
  --copper-hot: #e4671f;
  --ink: #16232f;
  --body: #46596b;
  --line: #dfe6ee;
  --bg: #ffffff;
  --bg-soft: #f4f7fa;
  --bg-navy: #0a2c54;
  --green: #147a4a;
  --amber: #8a5a00;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(10, 44, 84, .06), 0 8px 24px rgba(10, 44, 84, .08);
  --shadow-lg: 0 2px 4px rgba(10, 44, 84, .08), 0 18px 48px rgba(10, 44, 84, .14);
  --wrap: 1140px;
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 { color: var(--navy); line-height: 1.2; margin: 0 0 .5em; font-weight: 750; letter-spacing: -.02em; }
h1 { font-size: clamp(2rem, 6vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }
a { color: var(--navy-700); }

.container { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

/* ---------- header ---------- */

.topbar {
  background: var(--navy);
  color: #cfe0f2;
  font-size: .82rem;
  padding: 7px 0;
}
.topbar .container { display: flex; gap: 14px; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.topbar a { color: #fff; text-decoration: none; font-weight: 650; }

.nav { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.nav .container { display: flex; align-items: center; gap: 16px; min-height: 68px; }
.brand { display: flex; align-items: center; gap: 9px; text-decoration: none; margin-right: auto; }
.brand img { height: 34px; width: 34px; flex: 0 0 auto; }
.brand strong {
  color: var(--navy); font-size: 1.14rem; letter-spacing: -.03em;
  font-weight: 800; white-space: nowrap;
}
.brand strong span { color: var(--copper); }

.navlinks { display: none; gap: 20px; align-items: center; }

.nav-est {
  display: none; align-items: center; text-decoration: none; white-space: nowrap;
  color: var(--navy); font-weight: 750; font-size: .95rem;
  border: 2px solid var(--line); padding: 9px 16px; border-radius: 999px;
}
.nav-est:hover { border-color: var(--copper); color: var(--copper); }
@media (min-width: 1040px) { .nav-est { display: inline-flex; } }
.navlinks a { color: var(--navy); text-decoration: none; font-weight: 600; font-size: .95rem; }
.navlinks a:hover { color: var(--copper); }

.nav-call {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--copper); color: #fff; text-decoration: none;
  font-weight: 750; padding: 11px 16px; border-radius: 999px; font-size: .95rem;
  white-space: nowrap; border: 0; cursor: pointer; font-family: inherit; line-height: 1.2;
  transition: background .15s ease, box-shadow .2s ease, transform .12s ease;
}
.nav-call:hover { background: var(--copper-hot); box-shadow: 0 6px 18px rgba(194,87,29,.3); }
.nav-call:active { transform: translateY(1px); }

/* ---------- contact chooser sheet ---------- */

.sheet { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 18px; }
.sheet[hidden] { display: none; }
.sheet-backdrop { position: absolute; inset: 0; background: rgba(8, 26, 46, .55); backdrop-filter: blur(2px); }
.sheet-panel {
  position: relative; background: #fff; border-radius: 20px; padding: 26px 22px 22px;
  width: 100%; max-width: 420px; box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
  animation: sheetIn .26s cubic-bezier(.2,.8,.3,1) both; max-height: 88vh; overflow-y: auto;
}
@keyframes sheetIn { from { opacity: 0; transform: translateY(16px) scale(.97); } to { opacity: 1; transform: none; } }
.sheet-panel h3 { margin: 0 0 4px; font-size: 1.3rem; }
.sheet-panel .hint { margin-bottom: 16px; }
.sheet-x {
  position: absolute; top: 12px; right: 14px; background: none; border: 0;
  font-size: 1.8rem; line-height: 1; color: var(--navy-300); cursor: pointer; padding: 4px 8px;
}
.sheet-x:hover { color: var(--navy); }
.sheet-opt {
  display: flex; align-items: center; gap: 13px; width: 100%; text-align: left;
  padding: 14px 15px; margin-bottom: 9px; border-radius: 13px;
  border: 1.5px solid var(--line); background: #fff; text-decoration: none;
  color: var(--ink); font-family: inherit; font-size: 1rem; cursor: pointer;
  transition: border-color .16s ease, transform .16s ease, background .16s ease;
}
.sheet-opt:hover { border-color: var(--copper); transform: translateX(3px); background: #fffaf6; }
.sheet-opt .ico { font-size: 1.3rem; line-height: 1; flex: 0 0 auto; }
.sheet-opt strong { display: block; color: var(--navy); font-weight: 750; }
.sheet-opt small { color: var(--navy-300); font-size: .82rem; }

.menu-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: 1px solid var(--line); background: #fff;
  border-radius: 10px; cursor: pointer; color: var(--navy);
}
.mobile-menu { display: none; border-top: 1px solid var(--line); background: #fff; }
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 14px 20px; color: var(--navy);
  text-decoration: none; font-weight: 650; border-bottom: 1px solid var(--bg-soft);
}

@media (min-width: 900px) {
  .navlinks { display: flex; }
  .menu-btn { display: none; }
  .mobile-menu { display: none !important; }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--copper); color: #fff; text-decoration: none;
  font-weight: 750; font-size: 1rem; padding: 15px 26px;
  border-radius: 999px; border: 2px solid transparent; cursor: pointer;
  font-family: inherit; line-height: 1.2; text-align: center;
  transition: background .15s ease, transform .1s ease;
}
.btn:hover { background: var(--copper-hot); }
.btn:active { transform: translateY(1px); }
.btn.navy { background: var(--navy); }
.btn.navy:hover { background: var(--navy-700); }
.btn.ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn.ghost:hover { background: var(--navy); color: #fff; }
.btn.light { background: #fff; color: var(--navy); }
.btn.light:hover { background: #eef3f8; }
.btn.block { width: 100%; }
.btn.sm { padding: 10px 18px; font-size: .92rem; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 0; }

/* ---------- hero ---------- */

.hero {
  background: linear-gradient(160deg, #0a2c54 0%, #123f72 60%, #16406f 100%);
  color: #e8f0f8; padding: 56px 0 64px; position: relative; overflow: hidden;
}
.hero h1 { color: #fff; }
.hero p { color: #cddced; font-size: 1.1rem; max-width: 46ch; }
.hero-inner { display: grid; gap: 34px; }
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: .1em;
  font-size: .74rem; font-weight: 800; color: #ffc89b;
  background: rgba(226, 122, 45, .16); border: 1px solid rgba(226, 122, 45, .35);
  padding: 6px 13px; border-radius: 999px; margin-bottom: 18px;
}
.trust { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.tag {
  font-size: .82rem; font-weight: 650; color: #d8e6f5;
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .18);
  padding: 7px 13px; border-radius: 999px;
}
.hero-card {
  background: #fff; color: var(--body); border-radius: 18px;
  padding: 26px; box-shadow: var(--shadow-lg);
}
.hero-card h3 { margin-top: 0; }
.hero-media { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* The supplied AI placeholder photos have an OFF-BRAND wordmark ("Eaves &
   Gutters.ca") baked into the trucks, caps and shirts. These crops frame in
   on the actual work — gutter, guard, downspout, hands — and keep the wrong
   logo out of frame. Replace with real job photos as soon as there are some;
   that is better for trust and SEO than any placeholder. */
.photo {
  display: block; width: 100%; border-radius: var(--radius);
  background-repeat: no-repeat;
  background-size: var(--z, 200%) auto;
  background-position: var(--px, 96%) var(--py, 50%);
  background-color: #dde6ef;
  aspect-ratio: var(--ar, 4 / 3);
  box-shadow: var(--shadow);
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease;
}
.photo.tall { --ar: 3 / 4; }
.gallery .photo:hover { transform: scale(1.025); box-shadow: var(--shadow-lg); }
.hero-media { position: relative; }
.hero-media .photo { border-radius: 18px; box-shadow: none; aspect-ratio: 4 / 3; }
.herovid {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; border-radius: 18px; z-index: 1; background: #0a2c54;
}
.herovid[hidden] { display: none; }

@media (min-width: 960px) {
  .hero { padding: 76px 0 88px; }
  .hero-inner { grid-template-columns: 1.05fr .95fr; align-items: center; gap: 56px; }
}

.nav-book {
  display: none; align-items: center; text-decoration: none; white-space: nowrap;
  background: var(--navy); color: #fff; font-weight: 750; font-size: .95rem;
  padding: 11px 18px; border-radius: 999px;
  transition: background .15s ease, box-shadow .2s ease;
}
.nav-book:hover { background: var(--navy-700); box-shadow: 0 6px 18px rgba(10,44,84,.28); }
@media (min-width: 760px) { .nav-book { display: inline-flex; } }

.btn.lg { padding: 17px 30px; font-size: 1.06rem; }

/* ---------- live booking band ---------- */

.bookband { background: linear-gradient(150deg, #f6f9fc 0%, #eef4fa 100%); border-block: 1px solid var(--line); }
.bookband-inner { display: grid; gap: 28px; align-items: center; }
@media (min-width: 940px) { .bookband-inner { grid-template-columns: 1fr 1fr; gap: 48px; } }

.bookslots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (min-width: 520px) { .bookslots { grid-template-columns: repeat(3, 1fr); } }

.liveslot {
  display: flex; flex-direction: column; gap: 2px; align-items: center; justify-content: center;
  background: #fff; border: 1.5px solid var(--line); border-radius: 14px;
  padding: 16px 8px; text-decoration: none; min-height: 84px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .2s ease;
}
.liveslot:hover { transform: translateY(-3px); border-color: var(--copper); box-shadow: var(--shadow); }
.liveslot .d { font-size: .76rem; font-weight: 750; color: var(--navy-300); text-transform: uppercase; letter-spacing: .05em; }
.liveslot .t { font-size: 1.22rem; font-weight: 850; color: var(--navy); letter-spacing: -.02em; }
.liveslot.more { background: var(--navy); border-color: var(--navy); }
.liveslot.more .d { color: #a9c6e4; }
.liveslot.more .t { color: #fff; }

.slotskel { display: contents; }
.slotskel span {
  display: block; min-height: 84px; border-radius: 14px;
  background: linear-gradient(90deg, #eef2f7 25%, #e3eaf2 50%, #eef2f7 75%);
  background-size: 200% 100%; animation: shimmer 1.4s infinite linear;
}
@keyframes shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }

/* ---------- sections ---------- */

.section { padding: 62px 0; }
.section.alt { background: var(--bg-soft); }
.section.navy { background: var(--bg-navy); color: #cddced; }
.section.navy h2, .section.navy h3 { color: #fff; }
.section-head { max-width: 62ch; margin-bottom: 36px; }
.lead { font-size: 1.1rem; color: var(--body); }
.section.navy .lead { color: #bed1e6; }

.badge {
  display: inline-block; font-size: .74rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--copper); margin-bottom: 12px;
}

/* Explicit column counts, not auto-fit. auto-fit leaves orphans on the last
   row (6 items became 4 + 2 with a dead gap) and stretches them to a
   different width than the row above. Fixed counts keep every row balanced. */
.cards { display: grid; gap: 18px; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 620px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .cards { grid-template-columns: repeat(3, 1fr); } }

/* For counts that divide better by two or four. */
@media (min-width: 620px) { .cards.c2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .cards.c2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 620px) { .cards.c4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .cards.c4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform .22s cubic-bezier(.2,.7,.3,1), box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #c9d8e8; }
.card h3 { margin-top: 0; }
.card p { margin-bottom: .8rem; }
.card p:last-child { margin-bottom: 0; }
/* Pushes the price + link to the bottom so every card in a row lines up. */
.card .price { font-weight: 800; color: var(--copper); font-size: 1.05rem; margin-top: auto; padding-top: 6px; }
.card .price + p { margin-top: 6px; }
.card a.more { font-weight: 700; text-decoration: none; color: var(--navy-700); }
.card a.more:hover { color: var(--copper); }
.card .badge { margin-bottom: 8px; }

/* Plain "what you get" bullet cards — tighter, no hover lift needed. */
.card.flat { padding: 18px 20px; }
.card.flat:hover { transform: none; }

/* Always balanced whatever the item count — no orphan cards. */
.checklist {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 2px; grid-template-columns: 1fr;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
@media (min-width: 720px) { .checklist { grid-template-columns: 1fr 1fr; } }
.checklist li {
  position: relative; background: #fff; padding: 18px 20px 18px 54px;
  font-weight: 600; color: var(--ink); font-size: .98rem;
  transition: background .18s ease;
}
.checklist li:hover { background: #fbfdff; }
.checklist li::before {
  content: ''; position: absolute; left: 20px; top: 21px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/13px no-repeat;
}

.gallery { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.gallery img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow); }

.steps { counter-reset: s; display: grid; gap: 16px; padding: 0; margin: 0; list-style: none; }
.steps li {
  counter-increment: s; position: relative; padding-left: 56px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 20px 20px 62px;
}
.steps li::before {
  content: counter(s); position: absolute; left: 18px; top: 18px;
  width: 30px; height: 30px; border-radius: 50%; background: var(--navy); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: .9rem;
}
.steps li strong { color: var(--navy); display: block; }

.pricetable { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.pricetable th, .pricetable td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: .96rem; }
.pricetable th { background: var(--navy); color: #fff; font-weight: 700; }
.pricetable td:last-child { font-weight: 800; color: var(--copper); white-space: nowrap; }
.pricetable tr:last-child td { border-bottom: 0; }

.arealinks { display: flex; flex-wrap: wrap; gap: 9px; }
.arealinks a {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 16px; text-decoration: none; color: var(--navy); font-weight: 650; font-size: .92rem;
}
.arealinks a:hover { border-color: var(--copper); color: var(--copper); }
.section.navy .arealinks a { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); color: #fff; }

details.faq {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 20px; margin-bottom: 12px;
}
details.faq summary { font-weight: 750; color: var(--navy); cursor: pointer; list-style: none; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: '+'; float: right; font-size: 1.3rem; line-height: 1; color: var(--copper); }
details.faq[open] summary::after { content: '\2212'; }
details.faq p { margin: 12px 0 0; }

/* ---------- forms ---------- */

.contactgrid { display: grid; gap: 22px; align-items: start; }
@media (min-width: 900px) { .contactgrid { grid-template-columns: 1.35fr .85fr; gap: 30px; } }
.contactgrid .formcard { max-width: none; }
.contactgrid aside .card { margin-bottom: 14px; }
.contactgrid aside .card:last-child { margin-bottom: 0; }

.formcard {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 26px; box-shadow: var(--shadow); max-width: 640px;
}
.formgrid { display: grid; gap: 16px; }
@media (min-width: 640px) { .formgrid.two { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
label { font-weight: 700; color: var(--navy); font-size: .9rem; }
.hint { font-size: .82rem; color: var(--navy-300); font-weight: 500; }
input, select, textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 13px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  background: #fff; width: 100%; min-height: 48px;
}
input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(194, 87, 29, .22); border-color: var(--copper);
}
textarea { min-height: 110px; resize: vertical; }
/* show/hide password */
.pwwrap { position: relative; display: block; }
.pwwrap input { padding-right: 52px; }
.pweye {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border: 0; background: none; cursor: pointer;
  color: var(--navy-300); display: grid; place-items: center; border-radius: 8px; padding: 0;
}
.pweye:hover { color: var(--navy); background: var(--bg-soft); }
.pweye:focus-visible { outline: 2px solid var(--copper); }

.checkline { display: flex; align-items: flex-start; gap: 10px; font-weight: 600; color: var(--ink); }
.checkline input { width: 22px; height: 22px; min-height: 22px; flex: 0 0 auto; margin-top: 2px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.notice, .warning, .success {
  border-radius: 12px; padding: 15px 17px; margin: 16px 0 0; font-size: .96rem; border: 1px solid;
}
.notice { background: #eef4fb; border-color: #c3d8ef; color: #12395f; }
.warning { background: #fff5e8; border-color: #f0d0a4; color: var(--amber); }
.success { background: #eaf7f0; border-color: #b6e0c9; color: var(--green); }
.notice strong, .success strong { color: inherit; }

/* slot picker */
.slotgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(88px, 1fr)); gap: 8px; }
.slot {
  padding: 12px 6px; border: 1.5px solid var(--line); background: #fff; border-radius: 10px;
  font-weight: 700; color: var(--navy); cursor: pointer; font-family: inherit; font-size: .95rem;
}
.slot:hover:not([disabled]) { border-color: var(--copper); color: var(--copper); }
.slot[aria-pressed="true"] { background: var(--navy); color: #fff; border-color: var(--navy); }
.slot[disabled] { opacity: .32; cursor: not-allowed; text-decoration: line-through; }

/* ---------- tables ---------- */

.tablewrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.data { width: 100%; border-collapse: collapse; font-size: .92rem; background: #fff; min-width: 560px; }
table.data th, table.data td { padding: 11px 13px; border-bottom: 1px solid var(--line); text-align: left; white-space: nowrap; }
table.data th { background: var(--bg-soft); color: var(--navy); font-weight: 750; }

.pill { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: .76rem; font-weight: 750; }
.pill.ok { background: #e4f4ec; color: var(--green); }
.pill.warn { background: #fdf1de; color: var(--amber); }
.pill.off { background: #eef1f5; color: var(--navy-300); }

.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.tab {
  padding: 10px 17px; border-radius: 999px; border: 1.5px solid var(--line);
  background: #fff; color: var(--navy); font-weight: 700; cursor: pointer; font-family: inherit; font-size: .93rem;
}
.tab[aria-selected="true"] { background: var(--navy); color: #fff; border-color: var(--navy); }

.statgrid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); margin-bottom: 26px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; }
.stat .n { font-size: 1.9rem; font-weight: 800; color: var(--navy); line-height: 1.1; }
.stat .l { font-size: .82rem; font-weight: 700; color: var(--navy-300); text-transform: uppercase; letter-spacing: .05em; }

/* ---------- footer ---------- */

.footer { background: var(--navy); color: #a9c3dd; padding: 52px 0 28px; font-size: .94rem; }
.footer h4 { color: #fff; font-size: .95rem; margin-bottom: 12px; }
.footer a { color: #cfe0f2; text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid { display: grid; gap: 30px; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 7px; }
.footer-bottom {
  margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .13);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; font-size: .85rem;
}
.social { display: flex; gap: 10px; margin-top: 14px; }
.social a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, .1);
  display: grid; place-items: center; color: #fff;
}
.social a:hover { background: var(--copper); }

/* sticky mobile action bar */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: #fff; border-top: 1px solid var(--line);
  padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
  display: flex; gap: 8px; box-shadow: 0 -4px 18px rgba(10, 44, 84, .1);
}
.callbar .btn { flex: 1; padding: 13px 8px; font-size: .92rem; gap: 6px; }
.callbar .btn svg { flex: 0 0 auto; }
body.has-callbar { padding-bottom: 78px; }
@media (min-width: 900px) { .callbar { display: none; } body.has-callbar { padding-bottom: 0; } }

/* ---------- share ---------- */

.share {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  margin: 30px 0 0; padding: 22px; border-radius: var(--radius);
  background: var(--bg-soft); border: 1px solid var(--line);
}
.share .lbl {
  font-weight: 800; color: var(--navy); font-size: 1rem;
  width: 100%; margin-bottom: 4px; display: block;
}
.share .lbl small { display: block; font-weight: 500; color: var(--navy-300); font-size: .86rem; margin-top: 2px; }
.share a, .share button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 18px; min-height: 48px; border-radius: 999px;
  background: #fff; border: 2px solid var(--line); color: var(--navy);
  text-decoration: none; cursor: pointer; font-family: inherit;
  font-weight: 750; font-size: .94rem; white-space: nowrap;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .2s ease;
}
.share a:hover, .share button:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
/* Each network keeps its own colour so the row reads instantly. */
.share a.fb:hover { background: #1877f2; border-color: #1877f2; color: #fff; }
.share a.x:hover { background: #0f1419; border-color: #0f1419; color: #fff; }
.share a.wa:hover { background: #25d366; border-color: #25d366; color: #fff; }
.share a.em:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.share button.copy:hover { background: var(--copper); border-color: var(--copper); color: #fff; }
.share button.copy.done { background: var(--green); border-color: var(--green); color: #fff; }

.section.navy .share { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); }
.section.navy .share .lbl { color: #fff; }
.section.navy .share .lbl small { color: #bed1e6; }
.section.navy .share a, .section.navy .share button {
  background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.26); color: #fff;
}

/* ---------- motion ---------- */

.reveal { opacity: 0; transform: translateY(18px); }
.reveal.in { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1); }
/* Stagger children so a row of cards arrives in sequence, not as a slab. */
.reveal.in.d1 { transition-delay: .07s; }
.reveal.in.d2 { transition-delay: .14s; }
.reveal.in.d3 { transition-delay: .21s; }
.reveal.in.d4 { transition-delay: .28s; }
.reveal.in.d5 { transition-delay: .35s; }

.hero h1, .hero p, .hero .cta-row, .hero .trust, .hero .eyebrow { animation: riseIn .7s cubic-bezier(.2,.7,.3,1) both; }
.hero .eyebrow { animation-delay: .04s; }
.hero h1 { animation-delay: .1s; }
.hero p { animation-delay: .18s; }
.hero .cta-row { animation-delay: .26s; }
.hero .trust { animation-delay: .34s; }
.hero-media, .hero-card { animation: riseIn .8s cubic-bezier(.2,.7,.3,1) .2s both; }

@keyframes riseIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

.btn { transition: background .15s ease, transform .12s ease, box-shadow .2s ease, color .15s ease, border-color .15s ease; }
.btn:hover { box-shadow: 0 6px 18px rgba(194, 87, 29, .26); }
.btn.navy:hover { box-shadow: 0 6px 18px rgba(10, 44, 84, .28); }
.btn.ghost:hover, .btn.light:hover { box-shadow: 0 6px 18px rgba(10, 44, 84, .16); }

.steps li { transition: transform .2s ease, box-shadow .2s ease; }
.steps li:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.gallery img { transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease; }
.gallery img:hover { transform: scale(1.025); box-shadow: var(--shadow-lg); }
.arealinks a { transition: transform .18s ease, border-color .18s ease, color .18s ease; }
.arealinks a:hover { transform: translateY(-2px); }
details.faq { transition: border-color .2s ease, box-shadow .2s ease; }
details.faq[open] { border-color: #c9d8e8; box-shadow: var(--shadow); }

/* ---------- long-form article body ---------- */

.articlebody { font-size: 1.06rem; line-height: 1.75; }
.articlebody > p:first-child { font-size: 1.15rem; color: var(--ink); }
.articlebody h2 {
  margin-top: 2.1em; margin-bottom: .55em; font-size: 1.55rem;
  padding-top: .6em; border-top: 2px solid var(--line);
}
.articlebody h3 { margin-top: 1.7em; margin-bottom: .4em; font-size: 1.12rem; color: var(--navy-700); }
.articlebody ul, .articlebody ol { padding-left: 24px; margin: 0 0 1.2rem; }
.articlebody li { margin-bottom: .55em; }
.articlebody strong { color: var(--ink); }
.articlebody em { color: var(--navy-300); }
.articlebody p + ul, .articlebody p + ol { margin-top: -.4rem; }

/* ---------- printable brochure ---------- */

.printsheet { max-width: 900px; margin: 0 auto 60px; padding: 0 20px; display: grid; gap: 22px; }
.flyer {
  border: 2px solid var(--navy); border-radius: 14px; padding: 26px 28px;
  background: #fff; color: var(--ink); break-inside: avoid; page-break-inside: avoid;
}
.flyer-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-bottom: 2px solid var(--line); padding-bottom: 14px; margin-bottom: 16px; }
.flyer-logo { max-width: 270px; height: auto; }
.flyer-tag { margin: 0; font-weight: 750; color: var(--copper); font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; }
.flyer-h { font-size: 1.6rem; line-height: 1.18; margin: 0 0 14px; }
.flyer-list { columns: 2; column-gap: 26px; margin: 0 0 14px; padding-left: 20px; font-size: .96rem; }
.flyer-list li { margin-bottom: 5px; break-inside: avoid; }
.flyer-art { margin: 0 0 14px; }
.flyer-art svg { width: 100%; height: auto; max-height: 110px; display: block; }
.flyer-promise { background: var(--bg-soft); border-left: 4px solid var(--copper); padding: 10px 14px; font-size: .9rem; font-weight: 600; margin-bottom: 14px; }
.flyer-price { display: flex; gap: 18px; flex-wrap: wrap; font-size: .92rem; margin-bottom: 16px; }
.flyer-price strong { color: var(--copper); }
.flyer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; border-top: 2px solid var(--line); padding-top: 16px; }
.flyer-qr { display: flex; align-items: center; gap: 12px; font-size: .82rem; font-weight: 700; color: var(--navy); }
.flyer-qr img { width: 104px; height: 104px; }
.flyer-contact { display: flex; flex-direction: column; text-align: right; font-size: .88rem; gap: 1px; }
.flyer-contact .big { font-size: 1.65rem; font-weight: 850; color: var(--navy); letter-spacing: -.02em; line-height: 1.1; }
.flyer-contact .url { font-weight: 800; color: var(--copper); font-size: 1rem; }

@media print {
  .topbar, .nav, .footer, .callbar, .noprint, .sheet, .skip { display: none !important; }
  body { padding: 0 !important; background: #fff; font-size: 11pt; }
  .printsheet { max-width: none; margin: 0; padding: 0; gap: 12mm; }
  .flyer { border-width: 1.5pt; padding: 10mm; }
  .flyer-h { font-size: 17pt; }
  a { color: inherit; text-decoration: none; }
  @page { margin: 10mm; }
}

.skip {
  position: absolute; left: -9999px; background: #fff; color: var(--navy);
  padding: 12px 18px; z-index: 100; font-weight: 700;
}
.skip:focus { left: 12px; top: 12px; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
