:root {
  color-scheme: light;
  --paper: #f7f9fc;
  --paper-strong: #ffffff;
  --paper-blue: #eaf2fa;
  --ink: #102238;
  --muted: #52657a;
  --navy: #0b2d50;
  --navy-deep: #071f38;
  --accent: #1478d4;
  --accent-dark: #0b5da8;
  --accent-soft: #dcecfb;
  --line: #cbd7e3;
  --line-soft: #e2e9f0;
  --white: #fdfefe;
  --danger: #a6192e;
  --pad: clamp(1.1rem, 4.2vw, 4.75rem);
  --section: clamp(5rem, 9vw, 8.5rem);
  --radius: 0;
  --shadow: 0 24px 60px -35px rgba(11, 45, 80, .55);
  --hard-shadow: 13px 13px 0 rgba(20, 120, 212, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 80;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
}
@supports (animation-timeline: scroll()) {
  .scroll-progress { animation: page-progress linear both; animation-timeline: scroll(); }
  @keyframes page-progress { to { transform: scaleX(1); } }
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  height: 76px;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  color: #f7fbff;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
  background: linear-gradient(180deg, rgba(5, 25, 45, .46), transparent);
}
.brand { display: flex; align-items: center; gap: .7rem; min-width: max-content; }
.brand img { width: 47px; height: 47px; object-fit: cover; border: 1px solid rgba(255, 255, 255, .55); }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy b {
  font-family: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1.3rem;
  line-height: .9;
  text-transform: uppercase;
  letter-spacing: -.02em;
}
.brand-copy small { margin-top: .28rem; font-size: .57rem; text-transform: uppercase; letter-spacing: .19em; }
nav { justify-self: center; display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.5rem); font-weight: 650; font-size: .88rem; }
nav a { position: relative; padding: .7rem 0; }
nav a::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: #fff; transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
nav a:hover::after { transform: scaleX(1); }
.header-call { display: flex; flex-direction: column; align-items: flex-end; line-height: 1; }
.header-call small { font-size: .64rem; text-transform: uppercase; letter-spacing: .15em; opacity: .74; }
.header-call strong { margin-top: .38rem; font-size: 1rem; letter-spacing: .02em; }
.menu-button { display: none; width: 44px; min-height: 44px; padding: .65rem; border: 0; background: transparent; color: inherit; }
.menu-button span { display: block; width: 24px; height: 2px; margin: 5px 0 5px auto; background: currentColor; }

.hero {
  position: relative;
  min-height: 100dvh;
  max-height: 960px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 6rem var(--pad) 3.5rem;
  background: var(--navy);
  color: #f7fbff;
}
.hero-image, .hero-wash { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center; }
.hero-wash {
  background:
    linear-gradient(90deg, rgba(6, 31, 55, .95) 0%, rgba(7, 39, 70, .86) 32%, rgba(8, 48, 85, .26) 62%, rgba(5, 28, 50, .1) 100%),
    linear-gradient(0deg, rgba(5, 26, 46, .56), transparent 54%);
}
.hero-inner { position: relative; width: 100%; display: grid; grid-template-columns: minmax(0, 760px) minmax(240px, 330px); justify-content: space-between; gap: clamp(2rem, 7vw, 7rem); align-items: end; }
.hero-copy { align-self: center; }
.eyebrow { margin: 0 0 1.2rem; color: var(--accent); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; }
.hero .eyebrow { color: #a9d6fa; }
h1, h2, h3 { font-family: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", Helvetica, Arial, sans-serif; }
h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.2rem, 6.2vw, 6.5rem);
  line-height: .86;
  letter-spacing: -.035em;
  text-transform: uppercase;
  font-weight: 800;
}
h1 em { display: block; color: #8dcaf5; font-style: normal; }
.hero-lede { max-width: 510px; margin: 1.65rem 0 2rem; font-size: clamp(1rem, 1.5vw, 1.2rem); color: #d7e6f3; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  padding: .92rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0) scale(.98); }
.button-primary { background: var(--accent); color: #fff; box-shadow: 0 13px 32px -16px rgba(20, 120, 212, .9); }
.button-primary:hover { background: #0d69b9; box-shadow: 0 18px 38px -16px rgba(20, 120, 212, 1); }
.button-secondary { border-color: rgba(255, 255, 255, .65); background: rgba(6, 31, 55, .38); color: #fff; }
.button-secondary:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }
.hero-card {
  align-self: end;
  padding: 1.45rem;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: var(--radius);
  background: rgba(7, 35, 62, .82);
  box-shadow: 10px 10px 0 rgba(75, 157, 225, .19);
  backdrop-filter: blur(9px);
}
.hero-card span { font-size: .68rem; text-transform: uppercase; letter-spacing: .16em; color: #a9d6fa; }
.hero-card strong { display: block; margin: .6rem 0 .7rem; font-size: clamp(1.3rem, 2vw, 1.8rem); line-height: 1.1; }
.hero-card p { margin: 0; color: #c7d8e7; font-size: .88rem; }

.proof-bar {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: -1.5rem auto 0;
  padding: 1.1rem clamp(1rem, 3vw, 2.3rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.proof-bar p { min-width: 0; margin: 0; padding-left: 1rem; border-left: 2px solid var(--accent); }
.proof-bar strong, .proof-bar span { display: block; }
.proof-bar strong { font-size: .9rem; }
.proof-bar span { margin-top: .15rem; color: var(--muted); font-size: .75rem; }

.section { padding: var(--section) var(--pad); }
.section-heading { max-width: 770px; margin-bottom: clamp(2.8rem, 6vw, 5.25rem); }
.section-heading h2, .about-copy h2, .area-copy h2, .quote-intro h2, .emergency-panel h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5.7vw, 5.8rem);
  line-height: .92;
  letter-spacing: -.025em;
  text-transform: uppercase;
}
.section-heading p, .area-copy > p:not(.eyebrow), .quote-intro > p:not(.eyebrow) { max-width: 590px; margin: 1.35rem 0 0; color: var(--muted); font-size: 1.05rem; line-height: 1.65; }

.services { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: 1.25fr .75fr 1fr; grid-template-rows: repeat(2, minmax(260px, auto)); gap: 1rem; }
.service-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 45px -38px rgba(11, 45, 80, .7);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.service-card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: var(--shadow); }
.service-rule { position: absolute; inset: 0 auto auto 0; width: 58px; height: 4px; background: var(--accent); transition: width .3s ease; }
.service-card:hover .service-rule { width: 100%; }
.service-card h3 { max-width: 340px; margin: 0; font-size: clamp(1.65rem, 2.7vw, 2.5rem); line-height: 1; text-transform: uppercase; letter-spacing: -.01em; }
.service-card p { max-width: 350px; margin: .8rem 0 1.5rem; color: var(--muted); font-size: .9rem; }
.service-card a { width: fit-content; color: var(--accent-dark); font-size: .82rem; font-weight: 800; border-bottom: 1px solid currentColor; padding-bottom: .2rem; }
.service-main { grid-row: 1 / 3; background: linear-gradient(180deg, transparent 45%, rgba(6, 31, 55, .94) 86%), url('/images/tap-installation.jpg') 36% center / cover; color: #fff; }
.service-main p { color: #d3e1ed; }
.service-main a { color: #9ed2f7; }
.service-blue { background: var(--accent); color: #fff; border-color: var(--accent); }
.service-blue p { color: #eaf5ff; }
.service-blue a { color: #fff; }
.service-photo { background: linear-gradient(rgba(7, 31, 55, .28), rgba(7, 31, 55, .86)), url('/images/kitchen-tap.jpg') center / cover; color: #fff; }
.service-photo p { color: #dce8f2; }
.service-photo a { color: #a8d8fa; }
.service-dark { background: var(--navy); color: #fff; border-color: var(--navy); }
.service-dark p { color: #bfd0df; }
.service-dark a { color: #98cdf4; }
.service-line { background: var(--paper-blue); }

.emergency-band { position: relative; min-height: 610px; padding: clamp(3rem, 7vw, 6rem) var(--pad); display: flex; align-items: center; justify-content: flex-end; overflow: hidden; }
.emergency-photo { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5, 29, 52, .2), rgba(5, 29, 52, .82)), url('/images/hero-plumber.jpg') center / cover; }
.emergency-panel { position: relative; width: min(100%, 660px); padding: clamp(2rem, 5vw, 4.5rem); background: rgba(7, 31, 55, .93); color: #fff; border: 1px solid rgba(255, 255, 255, .23); box-shadow: -14px 14px 0 rgba(87, 173, 235, .22); }
.emergency-panel > p { margin: 0 0 1rem; color: #9ed2f7; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.emergency-panel h2 { max-width: 580px; font-size: clamp(2.4rem, 4.8vw, 4.8rem); }
.emergency-panel .button { margin-top: 2rem; }

.about { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.about-media { position: relative; }
.work-photo { margin: 0; border: 5px solid var(--paper-strong); outline: 1px solid var(--line); box-shadow: var(--hard-shadow), var(--shadow); }
.work-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.about-copy > p { margin: 1.5rem 0 0; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.about-copy blockquote { margin: 2rem 0; padding: 1.2rem 0 1.2rem 1.3rem; border-left: 4px solid var(--accent); font: 800 clamp(1.35rem, 2.3vw, 2rem)/1.15 "Aptos Display", "Segoe UI Variable Display", "Segoe UI", Helvetica, Arial, sans-serif; text-transform: uppercase; }
.about-points { display: grid; gap: 1rem; }
.about-points p { margin: 0; padding-top: 1rem; border-top: 1px solid var(--line); display: grid; grid-template-columns: 140px 1fr; gap: 1rem; }
.about-points b { font-size: .9rem; }
.about-points span { color: var(--muted); font-size: .88rem; }

.testimonials { background: var(--paper-strong); }
.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; align-items: start; }
.review-grid blockquote { min-width: 0; margin: 0; padding: clamp(1.5rem, 2.6vw, 2.25rem); background: var(--paper); border: 1px solid var(--line); box-shadow: 9px 9px 0 rgba(20, 120, 212, .11), var(--shadow); }
.reviewer { display: flex; align-items: center; gap: .85rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line-soft); }
.reviewer-initials { width: 46px; height: 46px; flex: none; display: grid; place-items: center; background: var(--navy); color: #fff; font-size: .76rem; font-weight: 800; letter-spacing: .06em; }
.reviewer > div { min-width: 0; display: flex; flex-direction: column; }
.reviewer strong { color: var(--ink); font-size: .92rem; }
.reviewer time { margin-top: .12rem; color: var(--muted); font-size: .7rem; }
.review-stars { margin: 1.35rem 0 .8rem; color: var(--accent); font-size: 1.55rem; line-height: 1; letter-spacing: .09em; }
.review-grid h3 { margin: 0 0 .9rem; color: var(--ink); font-size: clamp(1.25rem, 1.65vw, 1.55rem); line-height: 1.12; letter-spacing: -.014em; }
.review-grid blockquote > p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.65; }
.review-grid footer { margin-top: 1.5rem; padding: 1rem 0 0; display: block; background: transparent; color: inherit; border-top: 1px solid var(--line-soft); }
.review-grid footer span { color: var(--muted); font-size: .69rem; font-weight: 650; }

.process { background: var(--paper-blue); }
.process-track { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.process-track article { position: relative; padding: 2rem clamp(1rem, 2.6vw, 2.4rem) 1rem 0; }
.process-track article + article { padding-left: clamp(1rem, 2.6vw, 2.4rem); border-left: 1px solid var(--line); }
.process-track article::before { content: ""; position: absolute; left: 0; top: -5px; width: 9px; height: 9px; background: var(--accent); }
.process-track article + article::before { left: clamp(1rem, 2.6vw, 2.4rem); }
.process-track b { font: 800 clamp(1.4rem, 2.4vw, 2rem)/1.05 "Aptos Display", "Segoe UI Variable Display", "Segoe UI", Helvetica, Arial, sans-serif; text-transform: uppercase; }
.process-track p { max-width: 280px; margin: .75rem 0 0; color: var(--muted); }

.area { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(3rem, 7vw, 7rem); align-items: stretch; background: var(--paper); }
.area-copy { align-self: center; }
.area-copy ul { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; margin: 2rem 0; padding: 0; }
.area-copy li { padding: .55rem .78rem; background: var(--paper-strong); border: 1px solid var(--line); border-radius: 0; font-size: .8rem; font-weight: 700; }
.text-link { display: inline-flex; gap: .7rem; align-items: center; color: var(--accent-dark); font-weight: 800; border-bottom: 1px solid currentColor; padding-bottom: .2rem; }
.map-frame { min-height: 490px; padding: 5px; border: 1px solid var(--line); background: var(--paper-strong); box-shadow: var(--hard-shadow), var(--shadow); }
.map-canvas { position: relative; min-height: 450px; overflow: hidden; background: #dce7ee; }
.map-canvas iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; pointer-events: none; }
.map-note { margin: .55rem .35rem .25rem; color: var(--muted); font-size: .7rem; line-height: 1.45; }

.quote { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 7vw, 7rem); background: var(--navy-deep); color: #fff; }
.quote-intro .eyebrow { color: #9ed2f7; }
.quote-intro > p:not(.eyebrow) { color: #bdcedd; }
.quote-phone { display: inline-block; margin-top: 2rem; color: #9ed2f7; font: 800 clamp(1.8rem, 3.6vw, 2.9rem)/1 "Aptos Display", "Segoe UI Variable Display", "Segoe UI", Helvetica, Arial, sans-serif; border-bottom: 2px solid currentColor; }
.quote-form { align-self: start; display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; padding: clamp(1.5rem, 3.5vw, 2.8rem); background: #102f4e; border: 1px solid rgba(255, 255, 255, .18); box-shadow: 13px 13px 0 rgba(91, 176, 239, .18); }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field.full, .button.full, .form-status.full { grid-column: 1 / -1; }
label { font-size: .78rem; font-weight: 800; color: #eef6fc; }
input, select, textarea { width: 100%; border: 1px solid #6f88a1; border-radius: var(--radius); background: #f7fbff; color: #102238; padding: .8rem .9rem; outline: none; }
textarea { resize: vertical; min-height: 112px; }
input:focus, select:focus, textarea:focus { border-color: #8dccfb; box-shadow: 0 0 0 3px rgba(94, 177, 238, .24); }
.error { min-height: 1em; color: #ffc2cb; font-size: .72rem; }
.form-status { margin: 0; color: #bed0e0; font-size: .76rem; }

footer { padding: 3.2rem var(--pad) 2rem; display: grid; grid-template-columns: 1.1fr .7fr 1fr; gap: 2rem; align-items: start; background: #06192c; color: #eef6fc; border-top: 1px solid #244663; }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-brand img { width: 62px; height: 62px; object-fit: cover; border: 1px solid #47647d; }
.footer-brand div { display: flex; flex-direction: column; }
.footer-brand strong { font: 800 1.2rem/1 "Aptos Display", "Segoe UI Variable Display", "Segoe UI", Helvetica, Arial, sans-serif; text-transform: uppercase; }
.footer-brand span, .footer-contact span { margin-top: .4rem; color: #9eb2c5; font-size: .77rem; }
.footer-links { display: grid; gap: .55rem; font-size: .84rem; }
.footer-contact { justify-self: end; display: flex; flex-direction: column; align-items: flex-end; text-align: right; }
.footer-contact a { color: #9ed2f7; font: 800 1.4rem/1 "Aptos Display", "Segoe UI Variable Display", "Segoe UI", Helvetica, Arial, sans-serif; }
.copyright { grid-column: 1 / -1; margin: 1.5rem 0 0; padding-top: 1rem; border-top: 1px solid #244663; color: #829aaf; font-size: .72rem; }
.mobile-call { display: none; }

.load-in { animation: enter .85s cubic-bezier(.16, 1, .3, 1) both; }
.hero-card.load-in { animation-delay: .14s; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .72s cubic-bezier(.16, 1, .3, 1), transform .72s cubic-bezier(.16, 1, .3, 1); }
.reveal.visible { opacity: 1; transform: none; }
@keyframes enter { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

@media (max-width: 1040px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  nav { gap: 1rem; }
  .header-call { display: none; }
  .hero-inner { grid-template-columns: minmax(0, 670px) minmax(220px, 290px); }
  .service-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .service-main { grid-row: span 2; }
  .service-card { min-height: 260px; }
  .about { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 760px) {
  body { padding-bottom: 67px; }
  .site-header { height: 68px; padding: 0 1rem; grid-template-columns: 1fr auto; }
  .brand img { width: 43px; height: 43px; }
  nav { display: none; position: absolute; inset: 68px 0 auto; padding: 1rem; flex-direction: column; align-items: stretch; gap: .2rem; background: #092846; border-bottom: 1px solid rgba(255, 255, 255, .2); }
  nav.open { display: flex; }
  nav a { min-height: 46px; display: flex; align-items: center; padding: .6rem .4rem; border-bottom: 1px solid rgba(255, 255, 255, .12); }
  nav a::after { display: none; }
  .menu-button { display: block; }
  .hero { min-height: 760px; max-height: none; align-items: flex-end; padding: 6.5rem 1.1rem 3.2rem; }
  .hero-image { object-position: 60% center; }
  .hero-wash { background: linear-gradient(90deg, rgba(5, 30, 53, .94), rgba(5, 32, 58, .61)), linear-gradient(0deg, rgba(5, 26, 46, .88) 10%, transparent 72%); }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  h1 { font-size: clamp(3.15rem, 14.5vw, 5rem); }
  .hero-lede { max-width: 350px; }
  .hero-card { display: none; }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { flex: 1 1 150px; }
  .proof-bar { width: calc(100% - 2rem); grid-template-columns: 1fr 1fr; margin-top: -1rem; }
  .section { padding: 4.7rem 1.1rem; }
  .section-heading { margin-bottom: 2.7rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-main { grid-row: auto; min-height: 390px; }
  .service-card { min-height: 230px; }
  .emergency-band { min-height: 590px; padding: 2.5rem 1.1rem; align-items: flex-end; }
  .emergency-photo { background-position: 61% center; }
  .emergency-panel { padding: 2rem 1.3rem; box-shadow: 8px 8px 0 rgba(87, 173, 235, .22); }
  .about { grid-template-columns: 1fr; gap: 4rem; }
  .about-media { padding-right: .5rem; }
  .about-copy h2, .area-copy h2, .quote-intro h2 { font-size: clamp(2.6rem, 13vw, 4rem); }
  .about-points p { grid-template-columns: 1fr; gap: .35rem; }
  .review-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .review-grid blockquote { padding: 1.5rem; box-shadow: 7px 7px 0 rgba(20, 120, 212, .11), var(--shadow); }
  .process-track { grid-template-columns: 1fr; border-top: 0; }
  .process-track article, .process-track article + article { padding: 1.4rem 0 1.4rem 1.5rem; border-left: 1px solid var(--line); border-top: 0; }
  .process-track article::before, .process-track article + article::before { left: -5px; top: 1.65rem; }
  .area { grid-template-columns: 1fr; }
  .map-frame { min-height: 390px; box-shadow: 8px 8px 0 rgba(20, 120, 212, .14); }
  .map-canvas { min-height: 345px; }
  .quote { grid-template-columns: 1fr; }
  .quote-form { grid-template-columns: 1fr; padding: 1.3rem; box-shadow: 8px 8px 0 rgba(91, 176, 239, .18); }
  .field { grid-column: 1 / -1; }
  footer { grid-template-columns: 1fr; padding: 2.5rem 1.1rem 2rem; }
  .footer-contact { justify-self: start; align-items: flex-start; text-align: left; }
  .copyright { grid-column: auto; }
  .mobile-call { position: fixed; inset: auto 0 0; z-index: 70; min-height: 67px; padding: .7rem 1.1rem; display: flex; align-items: center; justify-content: space-between; background: var(--accent); color: #fff; border-top: 1px solid rgba(255, 255, 255, .3); box-shadow: 0 -10px 28px -15px rgba(3, 24, 43, .8); }
  .mobile-call span { font-size: .7rem; text-transform: uppercase; letter-spacing: .15em; font-weight: 800; }
  .mobile-call strong { font-size: 1rem; }
}

@media (max-width: 390px) {
  .brand-copy b { font-size: 1.12rem; }
  .brand-copy small { letter-spacing: .13em; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { flex-basis: auto; width: 100%; }
  .proof-bar { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .load-in, .reveal { opacity: 1; transform: none; }
}

@media (prefers-reduced-transparency: reduce) {
  .hero-card { background: #0b2d50; backdrop-filter: none; }
}
