/* ===========================================================
   Parliament Pro Wash — styles.css
   Single-page marketing site. Vanilla CSS, no preprocessor.
   ----------------------------------------------------------- */

:root {
  /* Brand palette — navy base with cyan-aqua accents (water-themed) */
  --navy:   #0d1b3d;
  --navy-2: #13234d;
  --royal:  #163e6e;
  --blue:   #1a93b8;
  --sky:    #5dc6d9;
  --mist:   #e6f4f3;
  --ink:    #0b1220;
  --paper:  #ffffff;
  --gold:   #f4b942;
  --alert:  #e63946;
  --shadow: 0 18px 40px -18px rgba(13, 27, 61, .28);
  --shadow-lift: 0 30px 60px -25px rgba(13, 27, 61, .45);

  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  --nav-h: 70px;
  --container: 1180px;

  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: var(--blue);
  text-decoration: none;
  transition: color .2s var(--ease);
}
a:hover, a:focus-visible { color: var(--royal); }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 2px;
  border-radius: 6px;
}

/* Particle canvas — full-viewport, behind content */
#ppw-particles {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  padding: 10px 16px;
  background: var(--navy);
  color: #fff;
  z-index: 1000;
  border-radius: var(--radius-sm);
}
.skip-link:focus { left: 8px; }

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s var(--ease);
}
.site-nav[data-state="transparent"] {
  background: linear-gradient(to bottom, rgba(13, 27, 61, .35), rgba(13, 27, 61, 0));
  backdrop-filter: blur(2px);
}
.site-nav[data-state="solid"] {
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px -12px rgba(13, 27, 61, .25);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-weight: 800;
}
.nav-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}
.nav-brand-text { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.nav-brand-line1 {
  font-size: 16px;
  letter-spacing: .04em;
  color: var(--navy);
}
.nav-brand-line2 {
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--blue);
  text-transform: uppercase;
}
.nav-brand-line2 .accent { color: var(--navy); }

.site-nav[data-state="transparent"] .nav-brand-line1,
.site-nav[data-state="transparent"] .nav-brand-line2 .accent { color: #fff; }
.site-nav[data-state="transparent"] .nav-brand-line2 { color: var(--sky); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  position: relative;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  border-radius: var(--radius-pill);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.site-nav[data-state="transparent"] .nav-links a { color: #fff; }
.nav-links a:hover { background: rgba(78, 166, 255, .15); color: var(--blue); }
.nav-links a.is-active {
  background: rgba(26, 147, 184, .12);
  color: var(--blue);
}
.site-nav[data-state="transparent"] .nav-links a.is-active {
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px !important;
  background: var(--blue);
  color: #fff !important;
  font-weight: 700 !important;
  box-shadow: var(--shadow);
}
.nav-cta:hover {
  background: var(--royal) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 10px;
}
.nav-toggle .bar {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.site-nav[data-state="transparent"] .nav-toggle .bar { background: #fff; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav-h) + 24px) 22px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(93, 198, 217, .35), transparent 70%),
    radial-gradient(80% 60% at 50% 100%, rgba(26, 147, 184, .35), transparent 70%),
    linear-gradient(165deg, #07122c 0%, #0d1b3d 35%, #15265a 70%, #163e6e 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,.6), transparent 60%),
    radial-gradient(2px 2px at 70% 40%, rgba(255,255,255,.5), transparent 60%),
    radial-gradient(2px 2px at 40% 70%, rgba(255,255,255,.55), transparent 60%),
    radial-gradient(2px 2px at 85% 80%, rgba(255,255,255,.5), transparent 60%),
    radial-gradient(2px 2px at 15% 85%, rgba(255,255,255,.4), transparent 60%);
  opacity: .7;
  pointer-events: none;
}

.hero-water {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
/* Realistic falling water droplets — each one is a tiny refracting lens.
   Layers per drop:
     • Transparent body with backdrop-filter blur → lenses the background
     • Inset highlights → bright bottom edge (refracted-light concentration)
       plus a faint top rim and a thin outer rim glint
     • ::before pseudo → specular highlight (light source upper-left)
     • ::after  pseudo → small secondary catchlight near the base */
.hero-water .bubble {
  position: absolute;
  top: -60px;
  border-radius: 50% 50% 50% 50% / 62% 62% 38% 38%;
  background:
    radial-gradient(ellipse at 50% 72%,
      rgba(255, 255, 255, 0.16) 0%,
      rgba(255, 255, 255, 0.05) 45%,
      rgba(255, 255, 255, 0.0) 100%);
  backdrop-filter: blur(1.6px) brightness(1.18) contrast(1.05);
  -webkit-backdrop-filter: blur(1.6px) brightness(1.18) contrast(1.05);
  box-shadow:
    inset 0 -3px 5px -1px rgba(255, 255, 255, 0.78),     /* bright refracted base */
    inset 0  1px 1.5px rgba(255, 255, 255, 0.30),         /* faint top rim */
    inset -1px 0 2px rgba(255, 255, 255, 0.15),           /* right-edge glint */
    0 0 0 0.5px rgba(255, 255, 255, 0.30),                /* hairline rim outline */
    0 5px 10px -3px rgba(7, 18, 44, 0.55);                /* soft drop-shadow */
  animation: drip linear infinite;
  opacity: 0;
  will-change: transform, opacity;
  isolation: isolate;
  overflow: visible;
}
.hero-water .bubble::before {
  /* primary specular highlight — light from upper-left */
  content: "";
  position: absolute;
  top: 14%;
  left: 24%;
  width: 36%;
  height: 24%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 40% 40%,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.55) 45%,
    rgba(255, 255, 255, 0) 100%);
  filter: blur(0.4px);
  pointer-events: none;
}
.hero-water .bubble::after {
  /* tiny secondary catchlight near base — sells the refracted-light feel */
  content: "";
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: 22%;
  height: 8%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  filter: blur(0.7px);
  pointer-events: none;
}
.hero-water .b1  { left:  6%; width: 14px; height: 21px; animation-duration:  7.0s; animation-delay: 0.0s; }
.hero-water .b2  { left: 17%; width: 10px; height: 15px; animation-duration:  5.2s; animation-delay: 1.8s; }
.hero-water .b3  { left: 28%; width: 18px; height: 28px; animation-duration:  8.4s; animation-delay: 3.2s; }
.hero-water .b4  { left: 40%; width: 12px; height: 18px; animation-duration:  6.0s; animation-delay: 0.9s; }
.hero-water .b5  { left: 51%; width: 16px; height: 24px; animation-duration:  9.0s; animation-delay: 5.1s; }
.hero-water .b6  { left: 62%; width:  9px; height: 13px; animation-duration:  4.6s; animation-delay: 2.6s; }
.hero-water .b7  { left: 73%; width: 13px; height: 20px; animation-duration:  7.5s; animation-delay: 1.3s; }
.hero-water .b8  { left: 83%; width: 19px; height: 29px; animation-duration:  8.8s; animation-delay: 4.4s; }
.hero-water .b9  { left: 91%; width: 11px; height: 16px; animation-duration:  5.8s; animation-delay: 3.7s; }
.hero-water .b10 { left: 96%; width:  8px; height: 12px; animation-duration:  5.0s; animation-delay: 0.5s; }

@keyframes drip {
  0%   { transform: translate3d(0, -10vh,    0) scale(.85); opacity: 0; }
  8%   { opacity: .85; }
  35%  { transform: translate3d(6px, 30vh,   0) scale(1); }
  65%  { transform: translate3d(-4px, 60vh,  0) scale(1.02); }
  92%  { opacity: .65; }
  100% { transform: translate3d(2px, 115vh,  0) scale(1.05); opacity: 0; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.grand-opening {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244, 185, 66, .15);
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
  padding: 8px 18px;
  border: 1px solid rgba(244, 185, 66, .45);
  border-radius: var(--radius-pill);
}
.grand-opening .dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(244, 185, 66, .8);
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0   rgba(244, 185, 66, .9); }
  70%  { box-shadow: 0 0 0 12px rgba(244, 185, 66, 0); }
  100% { box-shadow: 0 0 0 0   rgba(244, 185, 66, 0); }
}

.hero-logo {
  width: min(440px, 78vw);
  height: auto;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, .35));
  border-radius: 22px;
}

.hero-title {
  margin: 4px 0 0;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.02em;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--sky) 0%, #fff 50%, var(--sky) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.hero-tagline {
  margin: 0;
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255, 255, 255, .85);
  max-width: 640px;
}
.hero-tagline strong { color: #fff; }

.hero-sub {
  margin: 0;
  font-size: 12px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--sky);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.hero-ribbon {
  margin-top: 22px;
  font-size: 14px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  background: rgba(244, 185, 66, .08);
  border: 1px dashed rgba(244, 185, 66, .4);
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, .55);
  border-radius: 14px;
  z-index: 2;
}
.scroll-hint span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: #fff;
  border-radius: 2px;
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0);    opacity: 1; }
  70%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--radius-pill);
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .25s var(--ease);
  text-decoration: none;
  letter-spacing: .01em;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--royal));
  color: #fff;
  box-shadow: 0 14px 28px -14px rgba(26, 147, 184, .8);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px -16px rgba(26, 147, 184, .95);
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .55);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, .16);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-block { width: 100%; }

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section {
  position: relative;
  padding: 110px 22px;
  z-index: 2;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: .32em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue);
  text-align: center;
}
.section-title {
  margin: 0 auto 14px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  text-align: center;
  max-width: 780px;
  letter-spacing: -.01em;
}
.section-lede {
  margin: 0 auto 56px;
  max-width: 640px;
  color: rgba(11, 18, 32, .7);
  font-size: 17px;
  text-align: center;
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--delay, 0) * 80ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   WHY US
   ============================================================ */
.section-why {
  background: linear-gradient(180deg, var(--paper) 0%, var(--mist) 100%);
}

.why-grid {
  list-style: none;
  margin: 0 0 48px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.why-card {
  background: var(--paper);
  padding: 28px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 147, 184, .08);
  text-align: left;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.why-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  color: #fff;
  margin-bottom: 16px;
}
.why-icon svg { width: 26px; height: 26px; }
.why-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}
.why-card p {
  margin: 0;
  color: rgba(11, 18, 32, .7);
  font-size: 15px;
}

.why-stamp {
  text-align: center;
  margin: 0;
  font-size: 13px;
  letter-spacing: .42em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue);
}

/* ============================================================
   SERVICES
   ============================================================ */
.section-services {
  background: var(--paper);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  text-align: left;
  padding: 32px 26px 26px;
  background: linear-gradient(180deg, var(--paper) 0%, var(--mist) 100%);
  border: 1px solid rgba(26, 147, 184, .12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  width: 100%;
  font: inherit;
  color: inherit;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(93, 198, 217, .14) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s var(--ease);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(26, 147, 184, .35);
}
.service-card:hover::after { transform: translateX(100%); }

.service-icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--royal), var(--blue));
  color: #fff;
  box-shadow: 0 14px 30px -14px rgba(26, 147, 184, .9);
}
.service-icon svg { width: 34px; height: 34px; }

.service-card h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
}
.service-card h3 small {
  display: block;
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  margin-top: 4px;
}
.service-card p {
  margin: 0;
  color: rgba(11, 18, 32, .72);
  font-size: 15px;
  flex: 1;
}
.service-cta {
  margin-top: 6px;
  font-weight: 700;
  color: var(--blue);
  font-size: 15px;
}

/* ============================================================
   PRICING
   ============================================================ */
.section-pricing {
  background: linear-gradient(180deg, var(--mist) 0%, var(--paper) 100%);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}
.price-card {
  background: var(--paper);
  border: 1.5px solid rgba(26, 147, 184, .18);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.price-card:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  box-shadow: var(--shadow-lift);
}
.price-name {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--royal), var(--blue));
  padding: 8px 12px;
  border-radius: 10px;
}
.price-name small {
  display: inline;
  font-size: 10px;
  letter-spacing: .14em;
  margin-left: 4px;
  opacity: .9;
}
.price-amount {
  margin: 14px 0 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}
.price-amount .from {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(11, 18, 32, .55);
  font-weight: 600;
}
.price-amount strong {
  font-size: 42px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
}
.price-note {
  margin: 0;
  font-size: 12px;
  color: rgba(11, 18, 32, .55);
  min-height: 18px;
}

.price-disclaimer {
  margin: 0 0 64px;
  text-align: center;
  font-size: 13px;
  color: rgba(11, 18, 32, .55);
  font-style: italic;
}

.packages-heading {
  margin: 0 0 32px;
  text-align: center;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--navy);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  align-items: stretch;
}

.package-card {
  position: relative;
  background: var(--paper);
  border: 2px solid rgba(26, 147, 184, .18);
  border-radius: 20px;
  padding: 32px 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: var(--blue);
}

.package-card.is-featured {
  background: linear-gradient(180deg, #102246 0%, #163e6e 100%);
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-12px);
  box-shadow: 0 30px 60px -20px rgba(13, 27, 61, .55);
}
.package-card.is-featured:hover { transform: translateY(-16px); }
.package-card.is-featured .package-tier { color: var(--gold); }
.package-card.is-featured .package-blurb { color: rgba(255,255,255,.8); }
.package-card.is-featured .package-includes { color: rgba(255,255,255,.92); }
.package-card.is-featured .package-includes li::before { color: var(--gold); }
.package-card.is-featured .package-price .only { color: rgba(255,255,255,.6); }
.package-card.is-featured .package-price strong { color: #fff; }
.package-card.is-featured .package-save {
  background: var(--gold);
  color: var(--navy);
}

.package-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 24px -10px rgba(244, 185, 66, .9);
  white-space: nowrap;
}

.package-card header {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(26, 147, 184, .15);
}
.package-card.is-featured header {
  border-bottom-color: rgba(255, 255, 255, .15);
}
.package-tier {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: .02em;
}
.package-blurb {
  margin: 0;
  font-size: 13px;
  color: rgba(11, 18, 32, .65);
  font-style: italic;
}

.package-includes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
  flex: 1;
}
.package-includes li {
  position: relative;
  padding-left: 24px;
}
.package-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  color: var(--blue);
}
.package-includes small {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .7;
}

.package-price {
  margin: 6px 0 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}
.package-price .only {
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(11, 18, 32, .55);
  font-weight: 700;
}
.package-price strong {
  font-size: 48px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
}

.package-save {
  align-self: flex-start;
  background: var(--alert);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
}

/* ============================================================
   TRUST
   ============================================================ */
.section-trust {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.section-trust::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 60% at 10% 0%, rgba(93, 198, 217, .25), transparent 60%),
    radial-gradient(50% 60% at 90% 100%, rgba(26, 147, 184, .25), transparent 60%);
  pointer-events: none;
}
.section-trust .eyebrow { color: var(--sky); }
.section-trust .section-title { color: #fff; }
.section-trust .section-lede { color: rgba(255, 255, 255, .75); }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.trust-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 28px 24px;
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.trust-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(93, 198, 217, .4);
}
.trust-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  color: #fff;
  margin-bottom: 16px;
  box-shadow: 0 14px 30px -14px rgba(93, 198, 217, .9);
}
.trust-icon svg { width: 28px; height: 28px; }
.trust-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
}
.trust-card p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
}

.trust-stripe {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, .15);
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  text-align: center;
}
.trust-stripe > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust-stripe strong {
  font-size: 16px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sky);
}
.trust-stripe span {
  font-size: 14px;
  color: rgba(255, 255, 255, .72);
}

/* ============================================================
   CONTACT
   ============================================================ */
.section-contact {
  background: linear-gradient(180deg, var(--paper) 0%, var(--mist) 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info { text-align: left; }
.contact-info .eyebrow { text-align: left; }
.contact-info .section-title { text-align: left; margin-left: 0; }
.contact-info .section-lede { text-align: left; margin-left: 0; margin-bottom: 36px; }

.phone-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px 26px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--royal), var(--blue));
  color: #fff !important;
  margin-bottom: 22px;
  box-shadow: 0 18px 40px -16px rgba(26, 147, 184, .8);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.phone-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 50px -18px rgba(26, 147, 184, .95);
  color: #fff !important;
}
.phone-label {
  font-size: 12px;
  letter-spacing: .32em;
  text-transform: uppercase;
  opacity: .85;
}
.phone-number {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: .02em;
}

.contact-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}
.contact-list svg { color: var(--blue); flex-shrink: 0; }
.contact-list a {
  color: var(--navy);
  font-weight: 600;
  word-break: break-all;
}
.contact-list a:hover { color: var(--blue); }

.contact-foot {
  margin: 0;
  font-size: 14px;
  color: rgba(11, 18, 32, .6);
  font-style: italic;
}

.contact-form {
  background: var(--paper);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 147, 184, .12);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form h3 {
  margin: 0;
  font-size: 22px;
  color: var(--navy);
}
.form-lede {
  margin: 0 0 6px;
  font-size: 14px;
  color: rgba(11, 18, 32, .65);
}
.contact-form label,
.modal-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.contact-form label small,
.modal-form label small {
  font-size: 11px;
  font-weight: 500;
  color: rgba(11, 18, 32, .5);
  text-transform: none;
  letter-spacing: 0;
}
.contact-form input,
.contact-form select,
.contact-form textarea,
.modal-form input,
.modal-form select,
.modal-form textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(26, 147, 184, .18);
  background: var(--paper);
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 147, 184, .2);
}
.contact-form textarea,
.modal-form textarea { resize: vertical; min-height: 80px; }

.form-fineprint {
  margin: 4px 0 0;
  font-size: 12px;
  color: rgba(11, 18, 32, .55);
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: #fff;
  padding: 48px 22px 32px;
  position: relative;
  z-index: 2;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
}
.footer-brand img { height: 38px; border-radius: 8px; }
.footer-tag {
  margin: 0;
  font-size: 13px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--sky);
}
.footer-meta {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
}
.footer-meta a { color: rgba(255, 255, 255, .85); }
.footer-meta a:hover { color: var(--sky); }

/* ============================================================
   MODAL
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}
.modal[hidden] { display: none; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 18, 44, .65);
  backdrop-filter: blur(6px);
  animation: fadeIn .25s var(--ease);
}
.modal-panel {
  position: relative;
  background: var(--paper);
  border-radius: 22px;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .5);
  width: min(520px, 100%);
  max-height: calc(100vh - 44px);
  overflow-y: auto;
  padding: 36px 32px 28px;
  animation: panelIn .35s var(--ease);
}
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
  to   { opacity: 1; transform: none; }
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 24px;
  color: var(--navy);
  background: var(--mist);
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.modal-close:hover {
  background: rgba(26, 147, 184, .15);
  transform: rotate(90deg);
}
.modal-header { margin-bottom: 18px; }
.modal-header h2 {
  margin: 0 0 6px;
  font-size: 24px;
  color: var(--navy);
}
.modal-header p {
  margin: 0;
  font-size: 14px;
  color: rgba(11, 18, 32, .65);
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* lock body scroll while modal open */
body.has-modal {
  overflow: hidden;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 820px) {
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 22px 28px;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 36px -14px rgba(13, 27, 61, .25);
    transform: translateY(-110%);
    transition: transform .35s var(--ease);
    pointer-events: none;
  }
  .nav-links a {
    width: 100%;
    text-align: left;
    padding: 14px 16px;
    border-radius: 10px;
    color: var(--navy) !important;
  }
  .nav-links a:hover { background: var(--mist); }
  .nav-links.is-open {
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-cta { margin-top: 6px; }
  .nav-toggle { display: flex; }
  .site-nav[data-state="solid"] .nav-brand-line1,
  .site-nav[data-state="transparent"] .nav-brand-line1 { color: var(--navy); }
  .site-nav[data-state="transparent"] .nav-brand-line2 { color: var(--blue); }
  .site-nav[data-state="transparent"] .nav-brand-line2 .accent { color: var(--navy); }
  .site-nav[data-state="transparent"] {
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px -12px rgba(13, 27, 61, .25);
  }
  .site-nav[data-state="transparent"] .nav-toggle .bar { background: var(--navy); }
}

@media (max-width: 640px) {
  .section { padding: 80px 18px; }
  .hero { padding-top: calc(var(--nav-h) + 18px); padding-bottom: 60px; }
  .hero-ctas { flex-direction: column; align-items: stretch; width: 100%; max-width: 360px; }
  .hero-ribbon { font-size: 12px; padding: 8px 16px; }
  .package-card.is-featured { transform: none; }
  .package-card.is-featured:hover { transform: translateY(-6px); }
  .modal-panel { padding: 28px 22px 22px; border-radius: 18px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero-water .bubble,
  .scroll-hint span,
  .grand-opening .dot { animation: none; }
}

/* ============================================================
   PHOTO UPLOAD + FORM RESULT (additions for quote-form backend)
   ============================================================ */
.photo-field { display: flex; flex-direction: column; gap: 6px; }
.photo-field__label {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.photo-field__label small {
  font-weight: 400;
  color: rgba(11, 18, 32, .55);
  margin-left: 4px;
}

.dropzone {
  position: relative;
  border: 1.5px dashed rgba(13, 27, 61, .25);
  border-radius: var(--radius-sm);
  background: var(--mist);
  padding: 12px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
  cursor: pointer;
}
.dropzone:hover,
.dropzone:focus-visible,
.dropzone.is-drag {
  border-color: var(--blue);
  background: rgba(26, 147, 184, .08);
  outline: none;
}
.dropzone__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  padding: 18px 12px;
  color: rgba(11, 18, 32, .65);
}
.dropzone__inner[data-empty="false"] { display: none; }
.dropzone__inner svg { color: var(--blue); }
.dropzone__inner p { margin: 0; }
.dropzone__inner p strong { color: var(--navy); font-weight: 700; }
.dropzone__inner small { font-size: 12.5px; color: rgba(11, 18, 32, .55); }

.thumbs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(86px, 1fr));
  gap: 8px;
}
.thumbs li {
  position: relative;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow);
}
.thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumbs button {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(13, 27, 61, .82);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
}
.thumbs button:hover { background: var(--navy); }

.form-result {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.5;
}
.form-result[data-tone="ok"] {
  background: rgba(26, 147, 184, .12);
  border: 1px solid rgba(26, 147, 184, .35);
  color: var(--royal);
}
.form-result[data-tone="err"] {
  background: rgba(230, 57, 70, .08);
  border: 1px solid rgba(230, 57, 70, .35);
  color: #991b1b;
}

/* ============================================================
   EDITORIAL LAYOUT — split hero, zig-zag rows, asymmetric flow
   Activates at ≥900px; collapses to centered stack on mobile.
   ============================================================ */

/* ------- HERO: split text left / logo right ------- */
@media (min-width: 900px) {
  .hero { text-align: left; }
  .hero-inner {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(40px, 6vw, 84px);
    align-items: center;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
  }
  .hero-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .hero-visual-col {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
  }
  .hero-visual-col::before {
    content: "";
    position: absolute;
    inset: 8%;
    background: radial-gradient(circle, rgba(93, 198, 217, 0.22), transparent 65%);
    border-radius: 50%;
    z-index: 0;
    animation: hero-glow 6s ease-in-out infinite;
  }
  .hero-visual-col .hero-logo {
    position: relative;
    z-index: 1;
    max-width: min(420px, 92%);
    height: auto;
    filter: drop-shadow(0 30px 56px rgba(0, 0, 0, 0.45));
  }
  .hero-title,
  .hero-tagline,
  .hero-sub,
  .hero-ribbon { text-align: left; }
  .hero-ctas { justify-content: flex-start; }
}
@keyframes hero-glow {
  0%, 100% { transform: scale(1);    opacity: 0.85; }
  50%      { transform: scale(1.08); opacity: 1; }
}

/* On mobile, keep the logo visible above the text */
@media (max-width: 899px) {
  .hero-inner { display: flex; flex-direction: column; align-items: center; }
  .hero-visual-col { order: -1; margin-bottom: 12px; }
  .hero-visual-col .hero-logo { max-width: 160px; }
}

/* ------- WHY US: vertical zig-zag with big numbers ------- */
.section-why .why-grid {
  display: flex !important;
  flex-direction: column;
  gap: clamp(20px, 3vw, 36px);
  max-width: 1080px;
  margin: 56px auto 0;
  counter-reset: why;
  list-style: none;
  padding: 0;
}
.section-why .why-card {
  position: relative;
  counter-increment: why;
  display: grid !important;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "num heading"
    "num body";
  column-gap: clamp(22px, 3vw, 40px);
  row-gap: 6px;
  align-items: start;
  padding: clamp(24px, 3vw, 36px) clamp(24px, 3vw, 40px);
  background: white;
  border: 1px solid rgba(13, 27, 61, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 760px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.section-why .why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}
.section-why .why-card::before {
  grid-area: num;
  content: counter(why, decimal-leading-zero);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 0.9;
  letter-spacing: -0.04em;
  align-self: center;
  padding-right: 6px;
  border-right: 2px solid rgba(26, 147, 184, 0.18);
}
.section-why .why-card .why-icon { display: none; }
.section-why .why-card > h3 {
  grid-area: heading;
  margin: 0 0 4px;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  color: var(--navy);
}
.section-why .why-card > p {
  grid-area: body;
  margin: 0;
  color: rgba(11, 18, 32, 0.7);
}
@media (min-width: 900px) {
  .section-why .why-card:nth-child(odd)  { align-self: flex-start; margin-left: 2%; }
  .section-why .why-card:nth-child(even) { align-self: flex-end;   margin-right: 2%; }
}

/* ------- SERVICES: zig-zag rows ------- */
.section-services .services-grid {
  display: flex !important;
  flex-direction: column;
  gap: clamp(22px, 3vw, 36px);
  max-width: 1080px;
  margin: 56px auto 0;
}
.section-services .service-card {
  position: relative;
  display: grid !important;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "icon heading"
    "icon body"
    "icon cta";
  column-gap: clamp(22px, 3vw, 36px);
  row-gap: 4px;
  align-items: center;
  text-align: left;
  padding: clamp(26px, 3vw, 40px) clamp(28px, 3vw, 46px);
  background: white;
  border: 1px solid rgba(13, 27, 61, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 820px;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.section-services .service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.section-services .service-card .service-icon {
  grid-area: icon;
  align-self: center;
  flex-shrink: 0;
  width: clamp(60px, 7vw, 84px);
  height: clamp(60px, 7vw, 84px);
  display: flex; align-items: center; justify-content: center;
  background: rgba(26, 147, 184, 0.10);
  color: var(--blue);
  border-radius: 14px;
}
.section-services .service-card .service-icon svg { width: 58%; height: 58%; }
.section-services .service-card > h3 {
  grid-area: heading;
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  color: var(--navy);
  line-height: 1.2;
}
.section-services .service-card > p {
  grid-area: body;
  margin: 6px 0 0;
  color: rgba(11, 18, 32, 0.7);
  max-width: 520px;
}
.section-services .service-card > .service-cta {
  grid-area: cta;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.95rem;
}
@media (min-width: 900px) {
  .section-services .service-card:nth-child(odd)  { align-self: flex-start; }
  .section-services .service-card:nth-child(even) {
    align-self: flex-end;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "heading icon"
      "body    icon"
      "cta     icon";
    text-align: right;
  }
  .section-services .service-card:nth-child(even) > p { margin-left: auto; }
}
@media (max-width: 899px) {
  .section-services .service-card { max-width: 100%; }
}

/* ------- CONTACT: centered (info above form) ------- */
@media (min-width: 900px) {
  .section-contact .contact-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    gap: clamp(40px, 5vw, 64px);
    max-width: 920px;
    margin-inline: auto;
  }
  .section-contact .contact-info {
    text-align: center;
    max-width: 720px;
    width: 100%;
  }
  .section-contact .contact-info .phone-block {
    max-width: 380px;
    margin: 18px auto 18px;
  }
  .section-contact .contact-info .contact-list {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 28px;
  }
  .section-contact .contact-info .contact-list li {
    justify-content: center;
  }
  .section-contact .contact-form {
    max-width: 720px;
    width: 100%;
  }
}

/* ============================================================
   A11Y FIXES — links must not rely on color alone (WCAG 1.4.1)
   ============================================================ */
.contact-list a,
.footer-meta a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(26, 147, 184, 0.5);
}
.contact-list a:hover,
.footer-meta a:hover {
  text-decoration-color: currentColor;
}
