/* =====================================================================
   Allure Pools Service & Repair — Editorial Luxury Design System
   Hairline gold accents · Cormorant display · off-white canvas
   ===================================================================== */

:root {
  --navy: #0D1B3E;
  --royal: #1A2F6A;
  --gold: #C9A84C;
  --gold-deep: #b2913c;
  --gold-light: #E8D5A3;
  --white: #FFFFFF;
  --off-white: #F8F6F1;
  --paper: #FBFAF6;
  --text: #2A3450;
  --text-muted: #6B7A99;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', Arial, sans-serif;

  /* hairlines */
  --line: rgba(13, 27, 62, 0.12);
  --line-soft: rgba(13, 27, 62, 0.08);
  --line-gold: rgba(201, 168, 76, 0.55);

  --radius: 2px;
  --radius-lg: 3px;
  --shadow: 0 18px 50px -28px rgba(13, 27, 62, 0.28);
  --shadow-hover: 0 30px 70px -30px rgba(13, 27, 62, 0.40);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.45s var(--ease);
  --header-h: 84px;
  --maxw: 1200px;
  --measure: 760px;
}

/* ----------------------------- Reset ------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.7;
  font-size: 16px;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  color: var(--navy);
  letter-spacing: -0.005em;
}

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

::selection { background: var(--gold); color: var(--navy); }

/* ----------------------------- Layout ------------------------------ */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: clamp(72px, 10vw, 128px) 0; }
.section--tight { padding: clamp(56px, 7vw, 84px) 0; }
.section--alt { background: var(--white); }
.section--paper { background: var(--paper); }
.section--navy { background: var(--navy); color: rgba(255,255,255,0.85); }

/* Editorial eyebrow: hairline dash + spaced caps */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}
.section-head { max-width: 720px; margin: 0 auto clamp(48px, 6vw, 72px); text-align: center; }
.section-head .eyebrow { justify-content: center; }

.section-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.04;
  margin-bottom: 22px;
}
.section-title em { font-style: italic; color: var(--royal); }

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 56ch;
  margin-inline: auto;
}

.gold-rule { width: 54px; height: 1px; background: var(--gold); margin: 26px auto 0; }

/* ----------------------------- Buttons ----------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 17px 34px;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
  position: relative;
}

.btn-primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-primary:hover { background: var(--navy); color: var(--gold-light); border-color: var(--navy); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }

.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

.btn-lg { padding: 19px 40px; font-size: 0.74rem; }

/* Text link with animated rule */
.card-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap var(--transition), color var(--transition);
}
.card-link::after { content: "\2192"; color: var(--gold-deep); transition: transform var(--transition); }
.card-link:hover { color: var(--gold-deep); }
.card-link:hover::after { transform: translateX(6px); }

/* ----------------------------- Header ------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248, 246, 241, 0.86);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
.site-header.scrolled {
  border-bottom-color: var(--line-gold);
  background: rgba(248, 246, 241, 0.95);
}

.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.logo-link { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo-link svg, .logo-link .logo-img { height: 60px; width: auto; display: block; }

.main-nav ul { display: flex; align-items: center; gap: 38px; }
.main-nav a {
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--gold);
  transition: width var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--gold-deep); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.header-phone {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 0.82rem; letter-spacing: 0.08em;
  color: var(--navy); flex-shrink: 0;
  padding: 10px 18px; border: 1px solid var(--line); border-radius: var(--radius);
  transition: var(--transition);
}
.header-phone:hover { border-color: var(--gold); color: var(--gold-deep); }
.header-phone svg { width: 15px; height: 15px; color: var(--gold-deep); }
.header-right { display: flex; align-items: center; gap: 22px; }

/* Hamburger */
.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 6px; z-index: 120; }
.nav-toggle span { display: block; width: 26px; height: 1.5px; background: var(--navy); transition: var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-backdrop { position: fixed; inset: 0; background: rgba(13, 27, 62, 0.55); opacity: 0; visibility: hidden; transition: var(--transition); z-index: 105; }
.nav-backdrop.show { opacity: 1; visibility: visible; }

/* ----------------------------- Hero -------------------------------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  background: var(--navy);
  color: var(--white);
  padding: 110px 0 90px;
  overflow: hidden;
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(13,27,62,0.30) 0%, rgba(13,27,62,0.55) 55%, rgba(13,27,62,0.78) 100%),
    radial-gradient(120% 80% at 50% 40%, rgba(13,27,62,0.15), rgba(13,27,62,0.55));
}
/* thin inset frame for an editorial, art-directed feel */
.hero::after {
  content: ""; position: absolute; z-index: 2; inset: 22px;
  border: 1px solid rgba(232, 213, 163, 0.28);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 3; max-width: 900px; margin: 0 auto; text-align: center; padding: 0 8px; }
.hero .eyebrow { color: var(--gold-light); justify-content: center; }
.hero .eyebrow::before, .hero .eyebrow::after { background: var(--gold-light); }
.hero .eyebrow { gap: 14px; }
.hero .eyebrow::after { content: ""; width: 34px; height: 1px; }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.9rem, 7vw, 5.6rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-bottom: 26px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero .subhead {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255, 255, 255, 0.86);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.scroll-arrow { position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%); z-index: 3; color: rgba(255,255,255,0.7); animation: bounce 2.4s infinite; }
.scroll-arrow svg { width: 26px; height: 26px; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(9px);} }

/* Page hero (interior) — editorial centered */
.page-hero {
  position: relative; background: var(--navy); color: var(--white);
  text-align: center; padding: clamp(110px, 16vw, 170px) 0 clamp(72px, 9vw, 104px);
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 120% at 50% 0%, rgba(26,47,106,0.55), transparent 70%);
}
.page-hero .eyebrow { color: var(--gold-light); justify-content: center; position: relative; }
.page-hero h1 { color: var(--white); font-size: clamp(2.6rem, 6vw, 4.4rem); margin-bottom: 18px; position: relative; }
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p { color: rgba(232, 213, 163, 0.9); font-size: 1.05rem; letter-spacing: 0.02em; position: relative; max-width: 60ch; margin-inline: auto; }
.page-hero::after { content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 70px; height: 1px; background: var(--gold); }

/* ----------------------------- Trust Bar --------------------------- */
.trust-bar { background: var(--navy); color: var(--white); padding: clamp(40px, 5vw, 56px) 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 6px 26px; text-align: center; position: relative; }
.trust-item + .trust-item::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 56px; background: rgba(232, 213, 163, 0.22);
}
.trust-item .icon { color: var(--gold); margin-bottom: 14px; }
.trust-item .icon svg { width: 26px; height: 26px; margin: 0 auto; }
.trust-item .num {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 600;
  color: var(--gold-light); line-height: 1;
}
.trust-item .label {
  font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65); margin-top: 12px;
}

/* ----------------------------- Editorial service index ------------- */
.index-list { border-top: 1px solid var(--line); }
.index-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 34px 8px;
  border-bottom: 1px solid var(--line);
  transition: background var(--transition), padding var(--transition);
}
.index-item:hover { background: var(--white); padding-left: 20px; padding-right: 20px; }
.index-num {
  font-family: var(--font-display); font-size: 1.9rem; font-weight: 600;
  color: var(--gold-deep); line-height: 1;
}
.index-body h3 { font-size: 1.85rem; font-weight: 600; margin-bottom: 6px; }
.index-body p { color: var(--text-muted); font-size: 0.96rem; max-width: 60ch; }
.index-price {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  color: var(--navy); white-space: nowrap;
}
.index-price small { display: block; font-family: var(--font-body); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); margin-top: 2px; }

/* ----------------------------- Cards (refined) --------------------- */
.grid { display: grid; gap: 14px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* hairline-joined editorial cards (no chunky shadows) */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(30px, 3vw, 44px) clamp(26px, 2.4vw, 36px);
  transition: var(--transition);
  display: flex; flex-direction: column;
  position: relative;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 2px; width: 0;
  background: var(--gold); transition: width var(--transition);
}
.card:hover { background: var(--paper); }
.card:hover::before { width: 100%; }
.card .card-icon { color: var(--gold-deep); margin-bottom: 22px; }
.card .card-icon svg { width: 34px; height: 34px; }
.card h3 { font-size: 1.6rem; font-weight: 600; margin-bottom: 12px; }
.card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 24px; flex-grow: 1; }

/* Service detail rows (services.html) — numbered editorial */
.service-list { counter-reset: svc; border-top: 1px solid var(--line); }
.service-card {
  counter-increment: svc;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: start;
  padding: clamp(40px, 5vw, 64px) 0;
  border-bottom: 1px solid var(--line);
  transition: var(--transition);
}
.service-card::before {
  content: counter(svc, decimal-leading-zero);
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 600;
  color: var(--gold-deep); line-height: 0.9;
  padding-top: 6px;
}
.service-card .service-icon { display: none; }
.service-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 600; margin-bottom: 14px;
  display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap;
}
.service-card p { color: var(--text-muted); margin-bottom: 26px; max-width: 62ch; font-size: 1.02rem; }

.price-pill {
  display: inline-block;
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-deep);
  padding: 6px 14px; border: 1px solid var(--line-gold); border-radius: 999px;
}

/* ----------------------------- Reviews (editorial quotes) ---------- */
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(34px, 3vw, 46px) clamp(30px, 2.6vw, 40px);
  transition: var(--transition);
  display: flex; flex-direction: column;
  position: relative;
}
.review-card::before {
  content: "\201C";
  font-family: var(--font-display); font-size: 4.5rem; line-height: 0.7;
  color: var(--gold); opacity: 0.5; margin-bottom: 8px;
}
.review-card:hover { background: var(--paper); }
.stars { color: var(--gold); font-size: 0.82rem; letter-spacing: 4px; margin-bottom: 16px; }
.review-text {
  font-family: var(--font-display); font-size: 1.45rem; font-weight: 500; font-style: italic;
  color: var(--navy); line-height: 1.4; margin-bottom: 22px; flex-grow: 1;
}
.review-author {
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep);
}

/* ----------------------------- Gallery (Our Work) ------------------ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  margin: 0;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(13,27,62,0.72));
  opacity: 0.85; transition: opacity var(--transition);
}
.gallery-item figcaption {
  position: absolute; left: 22px; bottom: 18px; z-index: 2;
  color: var(--white); font-family: var(--font-body);
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; opacity: 0.92;
  display: flex; align-items: center; gap: 10px;
}
.gallery-item figcaption::before { content: ""; width: 20px; height: 1px; background: var(--gold); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }

@media (max-width: 760px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; gap: 10px; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 2; }
}

/* ----------------------------- Split / About ----------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.split .media { position: relative; }
.split .media::after {
  content: ""; position: absolute; inset: 0; border: 1px solid var(--line-gold);
  transform: translate(18px, 18px); z-index: -1;
}
.split .media img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; border-radius: var(--radius); }
.split h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; margin-bottom: 22px; }
.split p { color: var(--text-muted); margin-bottom: 18px; font-size: 1.04rem; }

.bio-copy p { margin-bottom: 22px; color: var(--text); font-size: 1.12rem; line-height: 1.85; }
.bio-copy p:first-of-type::first-letter {
  font-family: var(--font-display); font-size: 3.6rem; font-weight: 600;
  float: left; line-height: 0.8; padding: 6px 14px 0 0; color: var(--gold-deep);
}

/* ----------------------------- Feature row ------------------------- */
.feature { text-align: center; padding: 10px clamp(8px, 2vw, 28px); position: relative; }
.feature .feature-icon { color: var(--gold-deep); margin-bottom: 18px; }
.feature .feature-icon svg { width: 34px; height: 34px; margin: 0 auto; }
.feature h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 12px; }
.feature p { color: var(--text-muted); font-size: 0.96rem; line-height: 1.7; }
.section--navy .feature h3 { color: var(--white); }
.section--navy .feature p { color: rgba(255,255,255,0.7); }
.section--navy .eyebrow { color: var(--gold-light); }
.section--navy .section-title { color: var(--white); }
.section--navy .section-title em { color: var(--gold-light); }

/* ----------------------------- Contact ----------------------------- */
.contact-layout { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.form-wrap { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(30px, 4vw, 48px); }
.form-wrap h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label {
  display: block; font-family: var(--font-body); font-weight: 600;
  font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 9px; color: var(--navy);
}
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 0.96rem;
  padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); color: var(--navy); transition: var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.14);
}
.field textarea { resize: vertical; min-height: 132px; }

.info-stack { display: flex; flex-direction: column; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.info-card { background: var(--navy); color: var(--white); padding: 24px 26px; display: flex; gap: 18px; align-items: flex-start; }
.info-card .info-icon { color: var(--gold); flex-shrink: 0; }
.info-card .info-icon svg { width: 22px; height: 22px; }
.info-card .info-label { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 6px; }
.info-card .info-value { font-weight: 500; font-size: 1rem; color: var(--white); line-height: 1.5; }
.info-card a.info-value:hover { color: var(--gold-light); }

.map-wrap { margin-top: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; filter: grayscale(0.25) contrast(1.02); }

.form-note { font-size: 0.84rem; color: var(--text-muted); margin-top: 16px; text-align: center; line-height: 1.6; }

/* Referral callout box (contact) */
.referral-box { background: var(--navy); color: var(--white); border-radius: var(--radius); padding: clamp(30px, 4vw, 44px); text-align: center; position: relative; overflow: hidden; }
.referral-box::before { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(232,213,163,0.25); pointer-events: none; }
.referral-box h3 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 14px; position: relative; }
.referral-box p { color: rgba(255,255,255,0.78); margin: 0 auto; max-width: 56ch; position: relative; }
.referral-box strong { color: var(--gold-light); }

/* ----------------------------- Footer ------------------------------ */
.site-footer { background: var(--navy); color: rgba(255, 255, 255, 0.72); padding: clamp(56px, 7vw, 88px) 0 0; border-top: 2px solid var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.1fr 1fr; gap: clamp(32px, 4vw, 52px); padding-bottom: clamp(40px, 5vw, 60px); }
.footer-brand .logo-badge { display: inline-block; background: var(--white); padding: 14px 18px; border-radius: var(--radius); margin-bottom: 22px; }
.footer-brand .logo-badge img { height: 80px; width: auto; display: block; }
.footer-brand p { font-size: 0.92rem; color: rgba(255, 255, 255, 0.6); max-width: 280px; line-height: 1.75; }
.footer-col h4 { color: var(--gold); font-family: var(--font-body); font-weight: 600; font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 22px; }
.footer-col ul li { margin-bottom: 13px; }
.footer-col a, .footer-col .fitem { font-size: 0.92rem; color: rgba(255, 255, 255, 0.72); transition: color var(--transition); line-height: 1.6; }
.footer-col a:hover { color: var(--gold); }
.footer-col .fitem strong { color: var(--white); font-weight: 600; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); padding: 26px 0; text-align: center; font-size: 0.74rem; letter-spacing: 0.06em; color: rgba(255, 255, 255, 0.5); }
.footer-bottom .gold { color: var(--gold); }

/* ----------------------------- Animations -------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-arrow { animation: none; }
}

/* ----------------------------- Responsive -------------------------- */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1px 0; }
  .trust-item { padding: 24px; }
  .trust-item + .trust-item::before { display: none; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split .media { order: -1; }
  .split .media::after { transform: translate(12px, 12px); }
  .contact-layout { grid-template-columns: 1fr; }
  .index-item { grid-template-columns: 56px 1fr; row-gap: 6px; }
  .index-price { grid-column: 2; text-align: left; }

  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; top: 0; right: 0; height: 100dvh; width: min(84vw, 340px);
    background: var(--off-white); box-shadow: -20px 0 60px rgba(13,27,62,0.2);
    transform: translateX(100%); transition: transform 0.5s var(--ease);
    padding: calc(var(--header-h) + 28px) 36px 36px; z-index: 110;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 0; }
  .main-nav li { width: 100%; border-bottom: 1px solid var(--line-soft); }
  .main-nav a { display: block; width: 100%; padding: 20px 0; font-size: 0.86rem; }
  .main-nav a::after { display: none; }
}

@media (max-width: 640px) {
  .container { padding: 0 22px; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .service-card { grid-template-columns: 1fr; gap: 10px; }
  .service-card::before { font-size: 2rem; }
  .index-item { grid-template-columns: 44px 1fr; padding: 26px 4px; }
  .index-body h3 { font-size: 1.45rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .hero::after { inset: 12px; }
  .header-phone .ph-text { display: none; }
  .header-phone { padding: 11px; }
  .logo-link svg, .logo-link .logo-img { height: 50px; }
}

/* ===================================================================
   Interactivity layer — parallax, statement, magnetic, counters
   =================================================================== */
.reveal, .hero-content, .hero-video, .gallery-item img { will-change: transform; }

/* header hide-on-scroll-down */
.site-header.nav-hidden { transform: translateY(-100%); }

/* magnetic buttons: snappy transform, keep colour transitions */
.motion-ok .btn { transition: transform 0.3s var(--ease), background var(--transition), color var(--transition), border-color var(--transition); }
.motion-ok .btn:hover { transform: none; }

/* ---- Statement moment ---- */
.statement {
  position: relative; background: var(--navy); color: #fff;
  text-align: center; padding: clamp(110px, 18vw, 220px) 0; overflow: hidden;
}
.statement::before {
  content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 70vw; height: 70vw; max-width: 900px; max-height: 900px;
  background: radial-gradient(circle, rgba(201,168,76,0.16), transparent 62%);
  pointer-events: none;
}
.statement .eyebrow { justify-content: center; color: var(--gold-light); margin-bottom: 30px; position: relative; }
.statement-line {
  position: relative;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.1rem, 6.4vw, 5.2rem); line-height: 1.08;
  letter-spacing: -0.01em; max-width: 18ch; margin: 0 auto; color: #fff;
}
.statement-line em { font-style: italic; color: var(--gold-light); }
.statement-line .word {
  display: inline-block; opacity: 0;
  transform: translateY(0.55em) rotate(1.5deg);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.statement-line.visible .word { opacity: 1; transform: none; }
.statement .statement-cta { margin-top: 44px; position: relative; }

@media (prefers-reduced-motion: reduce) {
  .site-header.nav-hidden { transform: none; }
  .hero-content, .hero-video { transform: none !important; opacity: 1 !important; }
  .statement-line .word { opacity: 1; transform: none; transition: none; }
}

/* ---- FAQ (native accordion) ---- */
.faq { max-width: 840px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 28px 48px 28px 0; position: relative;
  font-family: var(--font-display); font-size: clamp(1.25rem, 2.2vw, 1.5rem); font-weight: 600;
  color: var(--navy); transition: color var(--transition);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-body); font-weight: 300; font-size: 1.7rem; color: var(--gold-deep);
  transition: transform var(--transition);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq summary:hover { color: var(--gold-deep); }
.faq .faq-a { padding: 0 48px 30px 0; color: var(--text-muted); font-size: 1.02rem; line-height: 1.8; }

/* ===================================================================
   Quote pop-up modal
   =================================================================== */
.quote-modal {
  position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility .5s;
}
.quote-modal.open { opacity: 1; visibility: visible; }
.quote-modal__backdrop { position: absolute; inset: 0; background: rgba(13,27,62,0.62); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); }
.quote-modal__card {
  position: relative; z-index: 1; width: min(880px, 100%); background: var(--white);
  border-radius: var(--radius-lg); overflow: hidden; display: grid; grid-template-columns: 0.82fr 1fr;
  box-shadow: 0 50px 120px -40px rgba(13,27,62,0.7);
  transform: translateY(26px) scale(0.96); transition: transform .6s var(--ease); max-height: 92vh;
}
.quote-modal.open .quote-modal__card { transform: none; }
.quote-modal__media { background: url('assets/work-3.jpg') center/cover no-repeat; position: relative; min-height: 240px; }
.quote-modal__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(155deg, rgba(13,27,62,0.18), rgba(13,27,62,0.55)); }
.quote-modal__body { padding: clamp(30px, 4vw, 46px); overflow-y: auto; }
.quote-modal__body h3 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 10px; }
.quote-modal__body p { color: var(--text-muted); margin-bottom: 22px; font-size: 0.98rem; }
.quote-modal__form { display: flex; flex-direction: column; gap: 12px; }
.quote-modal__form input, .quote-modal__form select {
  font-family: var(--font-body); font-size: 0.96rem; padding: 14px 16px; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--paper); color: var(--navy); transition: var(--transition);
}
.quote-modal__form input:focus, .quote-modal__form select:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(201,168,76,0.14); }
.quote-modal__form .btn { margin-top: 4px; }
.quote-modal__close {
  position: absolute; top: 14px; right: 16px; z-index: 3; font-size: 1.6rem; line-height: 1; color: #fff;
  width: 40px; height: 40px; border-radius: 50%; background: rgba(13,27,62,0.4); transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.quote-modal__close:hover { background: var(--navy); transform: rotate(90deg); }
.quote-modal__call { display: inline-block; margin-top: 18px; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }
.quote-modal__call:hover { color: var(--navy); }
@media (max-width: 720px) { .quote-modal__card { grid-template-columns: 1fr; } .quote-modal__media { display: none; } }

/* ===================================================================
   Multi-step contact wizard
   =================================================================== */
.wizard__progress { height: 3px; background: var(--line); border-radius: 2px; overflow: hidden; margin-bottom: 30px; }
.wizard__bar { display: block; height: 100%; background: var(--gold); width: 33%; transition: width .55s var(--ease); }
.wizard__steps { position: relative; }
.wizard__step { display: none; }
.wizard__step.is-active { display: block; animation: wizIn .55s var(--ease); }
@keyframes wizIn { from { opacity: 0; transform: translateX(26px); } to { opacity: 1; transform: none; } }
.wizard__count { font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }
.wizard__step h2 { font-size: clamp(1.55rem, 3vw, 2.1rem); margin: 10px 0 24px; }
.optgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 30px; }
.opt {
  text-align: left; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); font-family: var(--font-body); font-weight: 600; font-size: 0.92rem;
  color: var(--navy); cursor: pointer; transition: var(--transition); position: relative;
}
.opt:hover { border-color: var(--gold); transform: translateY(-2px); }
.opt.selected { border-color: var(--gold); background: #fff; box-shadow: inset 0 0 0 1.5px var(--gold); }
.opt.selected::after { content: "\2713"; position: absolute; right: 15px; top: 50%; transform: translateY(-50%); color: var(--gold-deep); font-weight: 700; }
.wizard__nav { display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.wizard__nav .btn[disabled] { opacity: 0.4; pointer-events: none; }
@media (max-width: 520px) { .optgrid { grid-template-columns: 1fr; } }

/* ===================================================================
   Custom cursor (desktop, pointer:fine only)
   =================================================================== */
.cursor-on { cursor: none; }
.cursor-on a, .cursor-on button, .cursor-on .opt, .cursor-on input,
.cursor-on select, .cursor-on textarea, .cursor-on summary, .cursor-on label { cursor: none; }
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; border-radius: 50%; opacity: 0; }
.cursor-dot { width: 7px; height: 7px; background: var(--gold); }
.cursor-ring {
  width: 38px; height: 38px; border: 1.5px solid rgba(201,168,76,0.75); background: rgba(201,168,76,0);
  transition: width .3s var(--ease), height .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), opacity .35s;
}
.cursor-ring.cursor-grow { width: 64px; height: 64px; background: rgba(201,168,76,0.12); border-color: var(--gold); }
@media (prefers-reduced-motion: reduce) { .cursor-dot, .cursor-ring { display: none !important; } .cursor-on { cursor: auto; } }

/* ===================================================================
   Mobile / touch interactions (iOS + Android)
   =================================================================== */
/* remove 300ms tap delay on controls */
a, button, .opt, summary, label, input, select, textarea { touch-action: manipulation; }

/* tap-press feedback (fires on touch where there's no hover) */
.btn:active { transform: scale(0.96) !important; }
.opt:active { transform: scale(0.97); }
.card:active, .review-card:active, .index-item:active, .service-card:active { transform: scale(0.99); }
.gallery-item:active img { transform: scale(1.05); }
.header-phone:active, .card-link:active { opacity: 0.7; }

/* gallery: captions + scrim always visible on touch (no hover) */
@media (hover: none) {
  .gallery-item::after { opacity: 1; }
  .gallery-item figcaption { opacity: 1; }
}

/* staggered slide-in of mobile nav links */
@media (max-width: 900px) {
  .main-nav li { opacity: 0; transform: translateX(26px); transition: opacity .45s var(--ease), transform .45s var(--ease); }
  .main-nav.open li { opacity: 1; transform: none; }
  .main-nav.open li:nth-child(1) { transition-delay: .10s; }
  .main-nav.open li:nth-child(2) { transition-delay: .16s; }
  .main-nav.open li:nth-child(3) { transition-delay: .22s; }
  .main-nav.open li:nth-child(4) { transition-delay: .28s; }
  .main-nav.open li:nth-child(5) { transition-delay: .34s; }
}

/* sticky mobile call / quote bar */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150; display: none;
  gap: 1px; background: var(--line);
  transform: translateY(115%); transition: transform .5s var(--ease);
  box-shadow: 0 -10px 30px -16px rgba(13,27,62,0.4);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar.show { transform: none; }
.mobile-bar__btn {
  flex: 1; text-align: center; padding: 17px 12px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.72rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.mobile-bar__btn svg { width: 15px; height: 15px; }
.mobile-bar__call { background: var(--navy); color: #fff; }
.mobile-bar__call:active { background: #0a1430; }
.mobile-bar__quote { background: var(--gold); color: var(--navy); }
.mobile-bar__quote:active { background: var(--gold-deep); }
@media (max-width: 760px) { .mobile-bar { display: flex; } }

@media (prefers-reduced-motion: reduce) {
  .mobile-bar { transition: none; }
  .main-nav li { opacity: 1; transform: none; transition: none; }
}

/* ===================================================================
   Services page — alternating editorial feature rows
   =================================================================== */
.page-hero--photo { background-size: cover; background-position: center; background-color: var(--navy); }
.page-hero--photo::before { background: linear-gradient(rgba(13,27,62,0.72), rgba(13,27,62,0.84)); }

.svc-list { display: flex; flex-direction: column; gap: clamp(56px, 8vw, 112px); }
.svc { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 76px); align-items: center; }
.svc__media { position: relative; }
.svc:nth-child(even) .svc__media { order: 2; }
.svc__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); display: block; }
.svc__media::after { content: ""; position: absolute; inset: 0; border: 1px solid var(--line-gold); transform: translate(18px, 18px); z-index: -1; border-radius: var(--radius); }
.svc__num {
  position: absolute; top: -26px; left: -14px; z-index: 2;
  font-family: var(--font-display); font-weight: 600; font-size: clamp(3rem, 6vw, 5.4rem); line-height: 1;
  color: var(--gold); text-shadow: 0 2px 24px rgba(13,27,62,0.3);
}
.svc__body h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 14px; line-height: 1.04; }
.svc__price { display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: 1.55rem; color: var(--gold-deep); margin-bottom: 18px; }
.svc__price small { font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); margin-left: 6px; }
.svc__body p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 24px; }
.svc__list { display: grid; gap: 12px; margin: 0 0 30px; }
.svc__list li { position: relative; padding-left: 26px; font-size: 0.96rem; color: var(--text); }
.svc__list li::before { content: ""; position: absolute; left: 0; top: 10px; width: 14px; height: 1px; background: var(--gold); }
@media (max-width: 820px) {
  .svc { grid-template-columns: 1fr; gap: 26px; }
  .svc:nth-child(even) .svc__media { order: 0; }
  .svc__media::after { transform: translate(10px, 10px); }
  .svc__num { top: -18px; left: -6px; }
}

/* ===================================================================
   Interactive images — hover affordance + click/tap lightbox
   =================================================================== */
.svc__media, .gallery-item { cursor: pointer; }
.svc__media img { transition: filter .45s var(--ease), transform .45s var(--ease); }
.svc__media:hover img { filter: brightness(0.9); }
.svc__expand {
  position: absolute; right: 16px; bottom: 16px; z-index: 3;
  width: 46px; height: 46px; border-radius: 50%; background: rgba(13,27,62,0.55);
  color: #fff; display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(8px) scale(.9); transition: var(--transition); backdrop-filter: blur(2px);
}
.svc__expand svg { width: 18px; height: 18px; }
.svc__media:hover .svc__expand, .gallery-item:hover .svc__expand { opacity: 1; transform: none; }
.gallery-item .svc__expand { right: 14px; bottom: auto; top: 14px; }
@media (hover: none) { .svc__expand { opacity: 0.85; transform: none; } }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center;
  padding: 24px; background: rgba(9, 18, 42, 0.94); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(1100px, 94vw); max-height: 86vh; border-radius: var(--radius);
  transform: scale(.92); transition: transform .55s var(--ease); box-shadow: 0 50px 120px -30px rgba(0,0,0,.7);
}
.lightbox.open img { transform: none; }
.lightbox__close {
  position: absolute; top: 20px; right: 24px; width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: #fff; font-size: 1.6rem; display: flex; align-items: center;
  justify-content: center; transition: var(--transition);
}
.lightbox__close:hover { background: var(--gold); color: var(--navy); transform: rotate(90deg); }
.lightbox__cap { position: absolute; bottom: 24px; left: 0; right: 0; text-align: center; color: var(--gold-light); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 0 24px; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.1); color: #fff; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.lightbox__nav:hover { background: var(--gold); color: var(--navy); }
.lightbox__nav.prev { left: 18px; } .lightbox__nav.next { right: 18px; }
@media (max-width: 640px) { .lightbox__nav { display: none; } }
@media (prefers-reduced-motion: reduce) { .lightbox img, .lightbox { transition: none; } .lightbox img { transform: none; } }
