:root {
  --navy: #061328;
  --navy-2: #030914;
  --ink: #0a1a33;
  --blue: #1277dc;
  --sky: #58b8ff;
  --green: #8dc63f;
  --lime: #b7e85b;
  --white: #fff;
  --muted: #667085;
  --line: #d9e2ef;
  --shadow: 0 22px 70px rgba(18, 119, 220, .24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--navy);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 12px clamp(16px, 4vw, 48px);
  background: rgba(6,19,40,.94);
  backdrop-filter: blur(14px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  position: relative;
  display: grid;
  width: 74px;
  height: 56px;
  place-items: end center;
  color: white;
  flex: 0 0 auto;
}
.logo-mark::before, .logo-mark::after {
  content: "";
  position: absolute;
  top: 8px;
  height: 8px;
  background: currentColor;
}
.logo-mark::before { left: 8px; right: 8px; transform: skewY(-28deg); transform-origin: left center; }
.logo-mark::after { left: 28px; right: 2px; transform: skewY(24deg); transform-origin: right center; }
.logo-mark span { font-size: 2.45rem; font-weight: 1000; line-height: 1; }
.logo-mark b { color: var(--blue); }
.logo-copy strong, .logo-copy small { display: block; text-transform: uppercase; }
.logo-copy strong { font-size: 1.4rem; font-weight: 1000; line-height: 1; }
.logo-copy small { margin-top: 4px; color: #cbd5e1; font-size: .67rem; font-weight: 900; letter-spacing: .18em; }
.compact .logo-copy { display: none; }

.desktop-nav, .header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.desktop-nav a, .header-actions a { font-size: .88rem; font-weight: 950; text-transform: uppercase; }
.desktop-nav a:hover, .header-actions a:hover { color: var(--sky); }

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0 20px;
  font-size: .9rem;
  font-weight: 1000;
  text-align: center;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-green { color: var(--navy); background: var(--green); box-shadow: var(--shadow); }
.btn-green:hover { background: var(--lime); }
.btn:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}
.btn-outline { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.08); }
.btn-outline:hover { border-color: var(--sky); background: rgba(18,119,220,.22); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 7px;
  background: transparent;
  color: white;
}
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: currentColor; }
.mobile-nav {
  position: fixed;
  top: 81px;
  left: 0;
  right: 0;
  z-index: 49;
  display: none;
  padding: 10px 16px 16px;
  background: var(--navy);
  box-shadow: 0 20px 40px rgba(0,0,0,.24);
}
.mobile-nav.open { display: grid; }
.mobile-nav a { border-bottom: 1px solid rgba(255,255,255,.1); padding: 13px 8px; font-weight: 950; text-transform: uppercase; }

.texture {
  background-image:
    radial-gradient(circle at 15% 20%, rgba(18,119,220,.22), transparent 28%),
    radial-gradient(circle at 85% 0%, rgba(141,198,63,.18), transparent 26%),
    linear-gradient(135deg, rgba(255,255,255,.07) 0 1px, transparent 1px);
  background-size: auto, auto, 22px 22px;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding-top: 82px;
}
.hero > img {
  position: absolute;
  inset: 0 0 0 auto;
  width: 54%;
  height: 100%;
  object-fit: cover;
  opacity: .42;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(18,119,220,.24), transparent 28%),
    linear-gradient(110deg, rgba(6,19,40,1) 0%, rgba(6,19,40,.97) 48%, rgba(6,19,40,.72) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 1240px;
  grid-template-columns: 1.03fr .97fr;
  gap: 46px;
  align-items: center;
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) 20px;
}
.logo-panel {
  max-width: 440px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  margin-bottom: 34px;
  padding: 16px;
  background: rgba(255,255,255,.06);
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 1000;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow.green { color: var(--green); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 850px;
  margin-bottom: 20px;
  font-size: clamp(3.1rem, 7vw, 6.8rem);
  font-weight: 1000;
  line-height: .94;
  text-transform: uppercase;
}
h1 span { color: var(--sky); }
h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4vw, 4rem);
  font-weight: 1000;
  line-height: 1.02;
  text-transform: uppercase;
}
h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
  font-weight: 1000;
  text-transform: uppercase;
}
.lead { max-width: 680px; color: #e2e8f0; font-size: clamp(1.08rem, 2vw, 1.35rem); font-weight: 760; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.flyer-card {
  border: 1px solid rgba(88,184,255,.24);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035)), rgba(6,19,40,.92);
  box-shadow: 0 20px 55px rgba(0,0,0,.24);
}
.hero-card { padding: clamp(22px, 4vw, 32px); }
.brush {
  position: relative;
  z-index: 0;
  display: inline-block;
  margin: 0 0 22px;
  padding: 8px 16px;
  font-size: 1.08rem;
  font-weight: 1000;
  text-transform: uppercase;
}
.brush::before {
  content: "";
  position: absolute;
  inset: 16% -4% 10%;
  z-index: -1;
  background: var(--blue);
  transform: rotate(-1.1deg);
  clip-path: polygon(0 17%, 6% 8%, 21% 14%, 38% 3%, 56% 12%, 78% 4%, 100% 16%, 96% 86%, 73% 78%, 55% 94%, 31% 84%, 12% 93%, 2% 80%);
}
.mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.mini-grid div, .feature-list span {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 7px;
  padding: 15px;
  background: rgba(255,255,255,.08);
}
.mini-grid strong, .mini-grid span { display: block; }
.mini-grid strong { font-weight: 1000; text-transform: uppercase; }
.mini-grid span { margin-top: 4px; color: #cbd5e1; font-size: .82rem; font-weight: 700; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; border-top: 1px solid rgba(255,255,255,.1); margin-top: 30px; padding-top: 24px; }
.stats b { display: block; color: var(--green); font-size: 1.7rem; line-height: 1; }
.stats span { color: #cbd5e1; font-size: .78rem; font-weight: 800; }

.section { padding: clamp(64px, 9vw, 108px) 20px; }
.light { color: var(--ink); background: white; }
.section-head, .split-head, .quote-section, .mailbox {
  max-width: 1240px;
  margin: 0 auto;
}
.section-head { margin-bottom: 34px; }
.section-head h2 { max-width: 820px; }
.split-head {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 36px;
  align-items: end;
  margin-bottom: 38px;
}
.split-head > p { max-width: 680px; color: #cbd5e1; font-size: 1.08rem; font-weight: 730; }
.split-head.dark > p { color: var(--muted); }

.card-grid, .package-grid, .gallery-grid, .results-gallery, .why-grid {
  display: grid;
  max-width: 1240px;
  gap: 16px;
  margin: 0 auto;
}
.services-grid { grid-template-columns: repeat(3, 1fr); }
.services-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #f8fafc;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.services-grid article:hover { transform: translateY(-4px); border-color: var(--blue); box-shadow: 0 18px 40px rgba(15, 23, 42, .12); }
.services-grid i {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 20px;
  color: white;
  background: var(--blue);
  font-style: normal;
  font-weight: 1000;
  box-shadow: var(--shadow);
}
.services-grid h3 { color: var(--navy); }
.services-grid p, .gallery-grid p, .quote-copy p { color: var(--muted); font-weight: 650; }

.owner-spotlight {
  position: relative;
  overflow: hidden;
}

.owner-spotlight::before {
  content: "";
  position: absolute;
  inset: auto -12% -34% auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18,119,220,.16), transparent 68%);
  pointer-events: none;
}

.owner-layout {
  position: relative;
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.owner-photo-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(18,119,220,.22);
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.02)),
    var(--navy);
  box-shadow: 0 24px 60px rgba(15,23,42,.16);
}

.owner-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 7px;
  object-fit: cover;
  object-position: center top;
}

.owner-photo-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 7px;
  padding: 16px;
  color: white;
  background: linear-gradient(90deg, rgba(6,19,40,.94), rgba(18,119,220,.72));
  box-shadow: 0 18px 40px rgba(0,0,0,.24);
}

.owner-photo-caption strong,
.owner-photo-caption small {
  display: block;
}

.owner-photo-caption strong {
  font-size: 1.2rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.owner-photo-caption small {
  margin-top: 3px;
  color: #dbeafe;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.owner-copy h2 {
  color: var(--navy);
}

.owner-title {
  border-left: 5px solid var(--green);
  margin: 24px 0;
  padding: 8px 0 8px 18px;
}

.owner-title h3 {
  margin-bottom: 2px;
  color: var(--blue);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.owner-title p {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 950;
  text-transform: uppercase;
}

.owner-bio {
  display: grid;
  gap: 16px;
}

.owner-bio p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.75;
}

.owner-quote {
  position: relative;
  max-width: 1240px;
  border: 1px solid rgba(88,184,255,.24);
  border-radius: 8px;
  margin: clamp(34px, 5vw, 58px) auto 0;
  padding: clamp(24px, 4vw, 34px);
  color: white;
  background:
    linear-gradient(90deg, rgba(18,119,220,.24), rgba(141,198,63,.12)),
    var(--navy);
  box-shadow: var(--shadow);
}

.owner-quote::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  width: 88px;
  height: 5px;
  background: var(--green);
}

.owner-quote p {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  font-weight: 1000;
  line-height: 1.12;
  text-transform: uppercase;
}

.owner-quote cite {
  color: var(--sky);
  font-style: normal;
  font-weight: 1000;
}

.owner-quote cite::before {
  content: "- ";
}

.package-grid { grid-template-columns: repeat(4, 1fr); }
.package-grid article { padding: 22px; transition: transform .2s ease, border-color .2s ease; }
.package-grid article:hover { transform: translateY(-4px); border-color: var(--sky); }
.package-grid h3 { color: var(--sky); }
.package-grid small, .mailbox-options small {
  display: block;
  margin-top: 22px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 1000;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.package-grid strong {
  display: block;
  margin: 2px 0 14px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 1000;
}
.package-grid p { color: #cbd5e1; font-size: .92rem; font-weight: 650; }

.mailbox {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 30px;
  background: var(--navy-2);
}
.mailbox-card { padding: clamp(24px, 4vw, 36px); }
.mailbox-card p:not(.eyebrow) { color: #cbd5e1; font-size: 1.1rem; font-weight: 700; }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; }
.feature-list span { font-weight: 1000; text-transform: uppercase; }
.mailbox-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.mailbox-options article {
  border: 1px solid rgba(18,119,220,.42);
  border-radius: 8px;
  padding: 24px;
  color: var(--ink);
  background: white;
}
.mailbox-options article > b {
  display: inline-block;
  border-radius: 5px;
  padding: 5px 10px;
  color: white;
  background: var(--blue);
  text-transform: uppercase;
}
.mailbox-options h3 { margin-top: 22px; color: var(--navy); font-size: 1.55rem; }
.mailbox-options p { color: var(--muted); font-weight: 700; }
.mailbox-options strong { display: block; color: var(--blue); font-size: 4rem; font-weight: 1000; line-height: 1; }
.mailbox-options .premium { color: white; background: var(--navy); border-color: rgba(141,198,63,.7); }
.mailbox-options .premium > b { color: var(--navy); background: var(--green); }
.mailbox-options .premium h3, .mailbox-options .premium strong { color: var(--green); }
.mailbox-options .premium p { color: #cbd5e1; }

.gallery-grid { grid-template-columns: repeat(3, 1fr); }
.gallery-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}
.gallery-grid article > div {
  display: grid;
  min-height: 280px;
  place-items: center;
  text-align: center;
  color: white;
  background-color: var(--navy);
  background-image:
    linear-gradient(45deg, rgba(255,255,255,.06) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,.06) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255,255,255,.06) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,.06) 75%);
  background-position: 0 0, 0 12px, 12px -12px, -12px 0;
  background-size: 24px 24px;
}
.gallery-grid small { display: block; color: #cbd5e1; font-weight: 800; }
.gallery-grid h3, .gallery-grid p { margin-inline: 20px; }
.gallery-grid h3 { margin-top: 20px; color: var(--navy); }
.gallery-grid p { margin-bottom: 22px; }

.results-gallery {
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.result-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--navy);
  box-shadow: 0 18px 46px rgba(15, 23, 42, .14);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.result-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: 0 26px 70px rgba(18, 119, 220, .24);
}

.result-card img {
  width: 100%;
  aspect-ratio: 4 / 3.15;
  object-fit: cover;
  transition: transform .32s ease, opacity .32s ease;
}

.result-card:hover img {
  transform: scale(1.04);
  opacity: .9;
}

.result-card-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 56px 20px 20px;
  color: white;
  background: linear-gradient(0deg, rgba(3,9,20,.96), rgba(3,9,20,.72) 58%, transparent);
}

.result-card-copy span {
  display: inline-flex;
  border-radius: 999px;
  margin-bottom: 8px;
  padding: 5px 10px;
  color: var(--navy);
  background: var(--green);
  font-size: .72rem;
  font-weight: 1000;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.result-card-copy h3 {
  margin: 0;
  color: white;
  font-size: 1.25rem;
}

.why-grid { grid-template-columns: repeat(3, 1fr); }
.why-grid div {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(88,184,255,.24);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255,255,255,.07);
  font-size: 1.06rem;
  font-weight: 1000;
  text-transform: uppercase;
}
.why-grid b {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--green);
  flex: 0 0 auto;
}

.quote-section {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 34px;
}
.contact-block {
  display: block;
  border-radius: 8px;
  margin-top: 12px;
  padding: 18px;
  color: white;
  background: var(--navy);
  font-size: 1.08rem;
  font-weight: 1000;
}
.contact-block:hover { background: var(--blue); }
.contact-block.email { color: var(--blue); background: white; border: 1px solid var(--line); overflow-wrap: anywhere; }
.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 30px);
  background: #f8fafc;
  box-shadow: 0 20px 50px rgba(15,23,42,.12);
}
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: .86rem;
  font-weight: 1000;
  text-transform: uppercase;
}
input, select, textarea {
  min-height: 48px;
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
  padding: 12px 13px;
  color: var(--ink);
  background: white;
  outline-color: var(--blue);
  text-transform: none;
}
textarea { min-height: 126px; resize: vertical; }
.full { grid-column: 1 / -1; }
.form-status { min-height: 20px; margin: 0; color: var(--blue); font-weight: 900; }

footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  padding: 44px clamp(20px, 5vw, 70px);
  background: var(--navy-2);
}
footer p { max-width: 630px; color: #94a3b8; font-weight: 650; }
.footer-links { display: grid; gap: 9px; font-weight: 950; }
.footer-links span { color: #94a3b8; }
.footer-links div { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.footer-links div a { border: 1px solid rgba(255,255,255,.16); border-radius: 7px; padding: 8px 10px; color: #cbd5e1; font-size: .8rem; }

.sticky-mobile {
  position: fixed;
  inset: auto 0 0;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  background: rgba(6,19,40,.96);
}
.sticky-mobile a {
  border-radius: 7px;
  padding: 12px;
  text-align: center;
  font-weight: 1000;
  text-transform: uppercase;
}
.sticky-mobile a:first-child { color: var(--navy); background: var(--green); }
.sticky-mobile a:last-child { background: var(--blue); }

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
}

.thank-you-card {
  width: min(860px, 100%);
  padding: clamp(28px, 6vw, 54px);
}

.thank-you-card .eyebrow {
  margin-top: 36px;
}

.thank-you-card h1 {
  font-size: clamp(2.5rem, 7vw, 5.4rem);
}

@media (max-width: 1050px) {
  .desktop-nav, .header-actions { display: none; }
  .menu-toggle { display: block; }
  .hero-inner, .split-head, .owner-layout, .mailbox, .quote-section { grid-template-columns: 1fr; }
  .hero > img { width: 100%; opacity: .18; }
  .services-grid, .package-grid, .results-gallery, .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  body { padding-bottom: 68px; }
  .sticky-mobile { display: grid; }
  .site-header { padding-inline: 14px; }
  .hero { min-height: auto; }
  .logo-copy strong { font-size: 1.05rem; }
  .logo-copy small { font-size: .58rem; }
  .logo-panel .logo-copy { display: block; }
  .logo-panel { padding: 12px; }
  h1 { font-size: clamp(2.7rem, 16vw, 4.3rem); }
  .mini-grid, .stats, .services-grid, .package-grid, .feature-list, .mailbox-options, .gallery-grid, .results-gallery, .why-grid, .quote-form, footer {
    grid-template-columns: 1fr;
  }
  .owner-photo-card { border-radius: 10px; }
  .owner-photo-caption { left: 24px; right: 24px; bottom: 24px; }
  .owner-title p { font-size: .86rem; }
  .owner-bio p { font-size: .96rem; }
  .mailbox { padding-inline: 20px; }
  .section { padding-inline: 16px; }
}
