/* ============================================================
   Westmoreland Plumbing Inc. — modern static site styles
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --navy-950: #07182a;
  --navy-900: #0a1e33;
  --navy-800: #0f2a45;
  --navy-700: #16385c;
  --blue-600: #1e6fd9;
  --blue-500: #2f86f0;
  --sky-400: #4db4f7;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --ink: #16283c;
  --muted: #5b6e82;
  --line: #e3eaf2;
  --bg-soft: #f4f8fc;
  --white: #ffffff;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-sm: 0 1px 2px rgba(10, 30, 51, 0.06), 0 4px 14px rgba(10, 30, 51, 0.05);
  --shadow-md: 0 10px 30px rgba(10, 30, 51, 0.10);
  --font-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--navy-950);
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

svg {
  flex-shrink: 0;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--navy-900);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 10px 0;
}
.skip-link:focus {
  left: 0;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  padding: 15px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn svg {
  width: 18px;
  height: 18px;
}
.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--blue-600);
  color: #fff;
}
.btn-primary:hover {
  background: var(--blue-500);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(30, 111, 217, 0.35);
}

.btn-cta {
  background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
  color: var(--navy-950);
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.4);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.btn-outline {
  border-color: var(--blue-600);
  color: var(--blue-600);
}
.btn-outline:hover {
  background: var(--blue-600);
  color: #fff;
}

.btn-block {
  width: 100%;
}

/* ---------- Section scaffolding ---------- */
.section {
  padding: 96px 0;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
}
.section-head p:last-child {
  color: var(--muted);
  font-size: 17px;
  margin: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--amber-500);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 14px 0;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line), 0 8px 24px rgba(10, 30, 51, 0.06);
  padding: 8px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo {
  width: auto;
  height: 46px;
  background: #fff;
  padding: 6px 12px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease;
}
.brand:hover .brand-logo {
  transform: scale(1.03);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-list a {
  font-weight: 600;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.18s ease;
  position: relative;
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: var(--amber-400);
  transition: right 0.22s ease;
}
.nav-list a:hover {
  color: #fff;
}
.nav-list a:hover::after {
  right: 0;
}

.site-header.scrolled .nav-list a {
  color: var(--navy-800);
}
.site-header.scrolled .nav-list a:hover {
  color: var(--blue-600);
}

.nav-cta {
  padding: 12px 20px;
  font-size: 14px;
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-toggle svg {
  width: 24px;
  height: 24px;
}
.menu-toggle .icon-close {
  display: none;
}
.menu-toggle[aria-expanded="true"] .icon-open {
  display: none;
}
.menu-toggle[aria-expanded="true"] .icon-close {
  display: block;
}
.site-header.scrolled .menu-toggle {
  color: var(--navy-900);
  border-color: var(--line);
  background: #fff;
}
.site-header .menu-toggle[aria-expanded="true"] {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  background: var(--navy-900);
  overflow: hidden;
  padding: 170px 0 110px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(47, 134, 240, 0.35), transparent 60%),
    radial-gradient(700px 420px at -10% 100%, rgba(77, 180, 247, 0.18), transparent 60%),
    linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 90% 80% at 60% 20%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 60% 20%, #000 30%, transparent 75%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--sky-400);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 9px 18px;
  margin-bottom: 26px;
}
.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber-400);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.25);
}

.hero-title {
  color: #fff;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.grad-text {
  background: linear-gradient(92deg, var(--sky-400) 0%, var(--blue-500) 60%, var(--amber-400) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  max-width: 540px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}
.hero-trust svg {
  width: 18px;
  height: 18px;
  color: var(--amber-400);
}
.hero-trust strong {
  color: #fff;
}

.hero-visual {
  position: relative;
}
.hero-photo-wrap {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 60px rgba(2, 10, 20, 0.5);
}
.hero-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(10, 30, 51, 0.05), rgba(7, 24, 42, 0.35));
}
.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 4.4;
}

.float-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border-radius: 16px;
  padding: 13px 18px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
}
.float-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1.25;
}
.float-card span {
  font-size: 12.5px;
  color: var(--muted);
}
.float-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(30, 111, 217, 0.12);
  color: var(--blue-600);
}
.float-icon svg {
  width: 20px;
  height: 20px;
}
.float-card-top {
  top: 22px;
  right: -24px;
  animation: floaty 5s ease-in-out infinite;
}
.float-card-bottom {
  bottom: 26px;
  left: -26px;
  animation: floaty 6s ease-in-out infinite 0.8s;
}
.float-card-bottom .float-icon {
  background: rgba(245, 158, 11, 0.16);
  color: var(--amber-500);
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px 22px;
  border-left: 1px solid var(--line);
}
.trust-item:first-child {
  border-left: 0;
  padding-left: 0;
}
.trust-item svg {
  width: 30px;
  height: 30px;
  color: var(--blue-600);
}
.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15.5px;
  line-height: 1.3;
  color: var(--navy-900);
}
.trust-item span {
  font-size: 13.5px;
  color: var(--muted);
}

/* ---------- Services ---------- */
.services {
  background: var(--bg-soft);
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 48px;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30, 111, 217, 0.35);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(30, 111, 217, 0.12), rgba(77, 180, 247, 0.12));
  color: var(--blue-600);
  margin-bottom: 22px;
}
.card-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}
.service-card > p {
  font-size: 14.5px;
  color: var(--muted);
  flex-grow: 1;
}

.card-list {
  margin: 4px 0 18px;
  display: grid;
  gap: 8px;
}
.card-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: var(--ink);
}
.card-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber-500);
  margin-top: 8px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--blue-600);
}
.card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.18s ease;
}
.card-link:hover svg {
  transform: translateX(4px);
}

.services-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--navy-900);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 36px;
}
.services-cta p {
  margin: 0;
  font-size: 17px;
  font-family: var(--font-display);
  font-weight: 600;
}

/* ---------- Why us ---------- */
.why {
  background: var(--white);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.why-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.why-photo-frame {
  position: relative;
  display: inline-block;
}
.why-photo-frame img {
  width: min(360px, 80vw);
  height: auto;
  border-radius: var(--radius-lg);
  border: 6px solid #fff;
  box-shadow: var(--shadow-md);
}
.since-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
  color: var(--navy-950);
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
}
.since-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  line-height: 1;
}
.since-badge span:last-child {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  max-width: 130px;
  line-height: 1.3;
}

.why-content .eyebrow {
  margin-bottom: 16px;
}
.why-content h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  margin-bottom: 18px;
}
.why-content .lead {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 30px;
}

.why-list {
  display: grid;
  gap: 20px;
  margin-bottom: 34px;
}
.why-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.check {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(30, 111, 217, 0.12);
  color: var(--blue-600);
  flex-shrink: 0;
  margin-top: 2px;
}
.check svg {
  width: 16px;
  height: 16px;
}
.why-list strong {
  font-family: var(--font-display);
  font-size: 16.5px;
  display: block;
  margin-bottom: 2px;
}
.why-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
}

.why-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Gallery strip ---------- */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 76px;
}
.gallery-item {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(7, 24, 42, 0.78);
  color: #fff;
  backdrop-filter: blur(6px);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  padding: 9px 16px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

/* ---------- Process ---------- */
.process {
  background:
    radial-gradient(800px 400px at 15% 0%, rgba(47, 134, 240, 0.22), transparent 60%),
    linear-gradient(160deg, var(--navy-950), var(--navy-900) 60%, var(--navy-800));
  color: #fff;
}
.process .section-head h2 {
  color: #fff;
}
.process .section-head p:last-child {
  color: rgba(255, 255, 255, 0.7);
}
.process .eyebrow {
  color: var(--sky-400);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.process-step {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 38px 30px 32px;
  transition: transform 0.22s ease, background-color 0.22s ease;
}
.process-step:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.09);
}
.step-num {
  position: absolute;
  top: 20px;
  right: 26px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 42px;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
}
.step-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
  color: var(--navy-950);
  margin-bottom: 22px;
}
.step-icon svg {
  width: 26px;
  height: 26px;
}
.process-step h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}
.process-step p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  margin: 0;
}

/* ---------- Areas ---------- */
.areas {
  background: var(--bg-soft);
}
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto 28px;
}
.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-800);
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
  cursor: default;
}
.area-chip svg {
  width: 17px;
  height: 17px;
  color: var(--blue-600);
}
.area-chip:hover {
  transform: translateY(-3px);
  border-color: var(--blue-600);
  color: var(--blue-600);
  box-shadow: var(--shadow-sm);
}
.areas-note {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}
.areas-note a {
  color: var(--blue-600);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Reviews ---------- */
.reviews {
  background: var(--white);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
}
.stars {
  display: flex;
  gap: 4px;
  color: var(--amber-500);
  margin-bottom: 16px;
}
.stars svg {
  width: 19px;
  height: 19px;
}
.review-card blockquote {
  margin: 0 0 22px;
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.7;
  flex-grow: 1;
}
.review-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-500), var(--navy-700));
}
.review-card figcaption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14.5px;
  line-height: 1.3;
}
.review-card figcaption span span {
  font-size: 13px;
  color: var(--muted);
}

.reviews-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  margin: 34px auto 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 15px;
}
.reviews-note svg {
  width: 20px;
  height: 20px;
  color: var(--blue-600);
}

/* ---------- Contact ---------- */
.contact {
  background:
    radial-gradient(700px 380px at 90% 0%, rgba(47, 134, 240, 0.25), transparent 60%),
    linear-gradient(165deg, var(--navy-950), var(--navy-900) 55%, var(--navy-800));
  color: #fff;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 {
  color: #fff;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
}
.contact-info .lead {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  margin-bottom: 34px;
}
.contact-info .eyebrow {
  color: var(--sky-400);
}

.contact-list {
  display: grid;
  gap: 20px;
  margin-bottom: 34px;
}
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--sky-400);
  flex-shrink: 0;
}
.contact-icon svg {
  width: 20px;
  height: 20px;
}
.contact-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2px;
}
.contact-list a,
.contact-list span {
  color: #fff;
  font-size: 16.5px;
  font-weight: 600;
}
.contact-list a:hover {
  color: var(--sky-400);
}

.hours-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
}
.hours-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16.5px;
  margin-bottom: 16px;
}
.hours-head svg {
  width: 20px;
  height: 20px;
  color: var(--amber-400);
}
.hours-list {
  display: grid;
  gap: 10px;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}
.hours-val {
  font-weight: 600;
  color: #fff;
}
.hours-list .closed {
  color: rgba(255, 255, 255, 0.5);
}
.hours-list .closed .hours-val {
  color: var(--amber-400);
}
.payment-note {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
}

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px 36px;
  box-shadow: 0 30px 60px rgba(2, 10, 20, 0.4);
}
.contact-form h3 {
  font-size: 24px;
  font-weight: 800;
}
.form-sub {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 26px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  margin-bottom: 18px;
}
.form-field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--navy-900);
  margin-bottom: 7px;
}
.form-field .opt {
  font-weight: 500;
  color: var(--muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}
.form-field textarea {
  resize: vertical;
  min-height: 110px;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue-600);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(30, 111, 217, 0.14);
}
.form-field input.invalid {
  border-color: #e5484d;
}
.form-field .error-msg {
  display: none;
  font-size: 12.5px;
  color: #c1353a;
  margin-top: 6px;
}
.form-field.error .error-msg {
  display: block;
}
.form-footnote {
  margin: 16px 0 0;
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
}

.form-success {
  text-align: center;
  padding: 26px 8px;
}
.form-success .success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  background: rgba(30, 111, 217, 0.12);
  color: var(--blue-600);
}
.form-success .success-icon svg {
  width: 32px;
  height: 32px;
}
.form-success h4 {
  font-size: 20px;
  font-weight: 800;
}
.form-success p {
  color: var(--muted);
  font-size: 14.5px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.75);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr;
  gap: 44px;
  padding: 68px 24px 48px;
}
.footer-logo {
  width: auto;
  height: 48px;
  background: #fff;
  border-radius: 10px;
  padding: 7px 14px;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 14.5px;
  margin-bottom: 22px;
  max-width: 320px;
}
.footer-cta {
  padding: 13px 22px;
  font-size: 14.5px;
}
.footer-col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer-col ul {
  display: grid;
  gap: 11px;
}
.footer-col li a {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.18s ease;
}
.footer-col li a:hover {
  color: var(--sky-400);
}
.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
}
.footer-contact svg {
  width: 17px;
  height: 17px;
  color: var(--sky-400);
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom-inner p {
  margin: 0;
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--d, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .hero {
    padding: 150px 0 90px;
  }
  .hero-visual {
    max-width: 620px;
    margin: 0 auto;
    width: 100%;
  }
  .float-card-top {
    right: 12px;
  }
  .float-card-bottom {
    left: 12px;
  }
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-inner {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .why-visual {
    max-width: 560px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-flex;
  }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    background: var(--navy-950);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    padding: 40px 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }
  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-list {
    flex-direction: column;
    gap: 22px;
  }
  .nav-list a {
    font-size: 22px;
    color: #fff !important;
  }
  .nav-cta {
    font-size: 16px;
    padding: 15px 28px;
  }
  body.nav-open {
    overflow: hidden;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 72px 0;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-item {
    border-left: 0;
    padding: 20px 6px;
  }
  .trust-item:first-child {
    padding-left: 6px;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .gallery-strip {
    grid-template-columns: 1fr;
    margin-top: 56px;
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 56px 24px 40px;
  }
  .float-card-top {
    top: 12px;
    right: 8px;
  }
  .float-card-bottom {
    bottom: 14px;
    left: 8px;
  }
  .float-card {
    padding: 10px 14px;
  }
  .since-badge {
    left: 8px;
  }
  .hero-title {
    font-size: 34px;
  }
}
