/* ============================================================
   ALL CLEAN by Nicole LLC — brand stylesheet (cyan & navy)
   Edit colors, fonts, and spacing here. Plain CSS, no build.
   The whole site recolors from the variables below.
   ============================================================ */

:root {
  --cream: #ffffff;      /* clean white background     */
  --sand: #eaf6fc;       /* soft cyan surface tint     */
  --ink: #183a52;        /* deep navy (headings/dark)  */
  --stone: #5a6b78;      /* muted blue-gray body text  */
  --brass: #00aeef;      /* bright brand cyan accent   */
  --brass-deep: #0086c3; /* darker cyan for hover      */
  --line: #dbe7ef;       /* light blue hairlines       */
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;

  /* Depth system — soft, layered, cool-toned. This is what reads as "premium". */
  --shadow-sm: 0 1px 2px rgba(24,58,82,.04), 0 2px 8px rgba(24,58,82,.05);
  --shadow-md: 0 6px 16px rgba(24,58,82,.06), 0 14px 36px rgba(24,58,82,.07);
  --shadow-lg: 0 12px 28px rgba(24,58,82,.08), 0 30px 64px rgba(24,58,82,.12);
  --shadow-brand: 0 10px 26px rgba(0,174,239,.30);
  --ring: 0 0 0 4px rgba(0,174,239,.18);
  --ease: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.1; letter-spacing: -0.01em; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brass);
}

.muted { color: var(--stone); }
.serif { font-family: var(--serif); }
.center { text-align: center; }

::selection { background: var(--brass); color: var(--cream); }

/* ---- Buttons ---------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 32px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              background 0.25s, color 0.25s, border-color 0.25s;
  will-change: transform;
}
.btn:active { transform: translateY(0) scale(0.99); }
.btn-primary, .btn-brass {
  background: linear-gradient(135deg, #18c0ff 0%, var(--brass) 45%, var(--brass-deep) 100%);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover, .btn-brass:hover {
  background: linear-gradient(135deg, #18c0ff 0%, var(--brass-deep) 100%);
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0,174,239,.40);
}
.btn-outline {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255,255,255,0.6);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover {
  border-color: var(--brass);
  color: var(--brass-deep);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; }

/* ---- Header ----------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(219, 231, 239, 0.7);
  transition: box-shadow 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
}
/* Lifts off the page once you start scrolling (class toggled in main.js) */
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.88);
  border-bottom-color: transparent;
  box-shadow: 0 6px 24px rgba(24,58,82,.08);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 46px; height: 46px; border-radius: 11px; flex-shrink: 0; box-shadow: 0 2px 10px rgba(26,22,19,0.08); }
.brand-text { display: flex; flex-direction: column; }
.brand-name { font-family: var(--serif); font-size: 1.5rem; line-height: 1; }
.brand-name span { color: var(--brass); }
.brand-sub {
  display: block;
  margin-top: 5px;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
}
.nav { display: flex; align-items: center; gap: 34px; }
.nav a { position: relative; font-size: 0.92rem; color: var(--stone); transition: color 0.2s; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 100%;
  background: var(--brass); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }
.header-right { display: flex; align-items: center; gap: 18px; }
.header-phone { font-size: 0.92rem; font-weight: 500; transition: color 0.2s; }
.header-phone:hover { color: var(--brass-deep); }
.nav-book {
  background: linear-gradient(135deg, #18c0ff, var(--brass-deep)); color: #fff;
  padding: 11px 22px; border-radius: 999px; font-size: 0.9rem; font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(0,174,239,.28);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.nav-book:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0,174,239,.40); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--ink); }

.mobile-nav { display: none; border-top: 1px solid var(--line); background: var(--cream); }
.mobile-nav.open { display: block; }
.mobile-nav .wrap { display: flex; flex-direction: column; gap: 14px; padding-top: 18px; padding-bottom: 18px; }
.mobile-nav a { color: var(--stone); }

/* ---- Hero ------------------------------------------------- */
.hero { position: relative; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute; top: -130px; right: -130px;
  width: 520px; height: 520px; border-radius: 50%;
  background: var(--sand); filter: blur(80px); opacity: 0.6;
}
.hero .wrap {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; padding-top: 72px; padding-bottom: 80px;
}
.hero h1 { font-size: clamp(2.6rem, 5vw, 3.8rem); margin-top: 22px; }
.hero h1 em { font-style: italic; color: var(--brass); }
.hero .lede { font-size: 1.12rem; color: var(--stone); margin-top: 26px; max-width: 540px; }
.confidence { display: flex; flex-wrap: wrap; gap: 8px 24px; margin-top: 34px; font-size: 0.9rem; color: var(--stone); }

.hero-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(135deg, var(--sand), var(--cream), var(--line));
  padding: 40px;
}
.hero-card h3 { font-size: 1.7rem; }
.hero-card p { color: var(--stone); margin-top: 14px; }
.hero-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 30px; padding-top: 30px; border-top: 1px solid rgba(219,231,239,0.7); }
.hero-stats .num { font-family: var(--serif); font-size: 1.5rem; }
.hero-stats small { color: var(--stone); font-size: 0.72rem; }

/* Hero photo (homepage right column). Drop images/hero-home.jpg to fill it. */
.hero-photo {
  position: relative; min-height: 460px; border-radius: 26px; overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--sand), var(--cream), var(--line));
}
.hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-badge {
  position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 1;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 10px;
  background: rgba(255,255,255,0.88); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 16px; padding: 18px; text-align: center;
}
.hero-badge .num { font-family: var(--serif); font-size: 1.45rem; color: var(--ink); }
.hero-badge small { display: block; color: var(--stone); font-size: 0.68rem; margin-top: 2px; }

/* ---- Generic section heads -------------------------------- */
.kicker { max-width: 620px; }
.kicker h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); margin-top: 16px; }

.band { background: var(--sand); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band-soft { background: rgba(234,246,252,0.4); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.two-col h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); margin-top: 16px; }
.two-col p { color: var(--stone); margin-bottom: 14px; }

/* ---- Cards ------------------------------------------------ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }

.card {
  position: relative;
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 20px;
  padding: 32px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
/* Accent bar that wipes in along the top edge on hover */
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--brass), #18c0ff);
  border-radius: 20px 20px 0 0;
  transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card .num { font-family: var(--serif); font-size: 2.3rem; color: var(--brass); }
.card h3 { font-size: 1.45rem; margin-top: 18px; }
.card p { color: var(--stone); margin-top: 12px; flex: 1; }
.card strong { margin-top: 22px; font-size: 1.1rem; }

.card.featured { background: var(--ink); color: var(--cream); border-color: var(--brass); box-shadow: var(--shadow-md); }
.card.featured p { color: rgba(255,255,255,0.78); }
.card.featured:hover { box-shadow: 0 24px 50px rgba(24,58,82,.28); }

.check { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 12px; font-size: 0.92rem; color: var(--stone); }
.check li::before { content: "✓"; color: var(--brass); margin-right: 10px; }
.card.featured .check { color: rgba(255,255,255,0.82); }

/* ---- Process ---------------------------------------------- */
.process { background: var(--ink); color: var(--cream); }
.process .kicker h2 { color: var(--cream); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; margin-top: 48px; }
.step { border-top: 1px solid rgba(255,255,255,0.2); padding-top: 24px; }
.step .n { font-family: var(--serif); font-size: 2.2rem; color: var(--brass); }
.step h3 { font-size: 1.25rem; margin-top: 14px; color: var(--cream); }
.step p { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-top: 8px; }

/* ---- Guarantee -------------------------------------------- */
.guarantee-list { list-style: none; margin-top: 30px; display: flex; flex-direction: column; gap: 22px; }
.guarantee-list li { display: flex; gap: 16px; }
.guarantee-list .bar { width: 24px; height: 1px; background: var(--brass); margin-top: 12px; flex-shrink: 0; }
.guarantee-list strong { display: block; }
.guarantee-list span { font-size: 0.9rem; color: var(--stone); }
.guarantee-card {
  border: 1px solid var(--brass);
  background: rgba(234,246,252,0.5);
  border-radius: 26px; padding: 40px; text-align: center;
  display: flex; flex-direction: column; justify-content: center;
}
.guarantee-card .big { font-family: var(--serif); font-size: 3.6rem; color: var(--brass); }
.guarantee-card h3 { font-size: 1.5rem; margin-top: 10px; }
.guarantee-card p { color: var(--stone); margin: 14px 0 26px; }

/* ---- Pricing list ----------------------------------------- */
.price-list { border: 1px solid var(--line); border-radius: 18px; background: var(--cream); overflow: hidden; }
.price-list div { display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; border-bottom: 1px solid var(--line); }
.price-list div:last-child { border-bottom: none; }
.price-list span { color: var(--stone); }

.pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0; }
.pill { border: 1px solid var(--line); background: var(--cream); border-radius: 999px; padding: 8px 16px; font-size: 0.88rem; color: var(--stone); }

/* ---- Reviews ---------------------------------------------- */
.review { border: 1px solid var(--line); background: var(--cream); border-radius: 18px; padding: 32px; }
.review .stars { color: var(--brass); }
.review blockquote { font-family: var(--serif); font-size: 1.25rem; line-height: 1.35; margin-top: 16px; }
.review figcaption { margin-top: 18px; font-size: 0.9rem; }
.review figcaption span { display: block; color: var(--stone); }

/* ---- About ------------------------------------------------ */
.about-photo { aspect-ratio: 4/5; border-radius: 26px; overflow: hidden; background: linear-gradient(135deg, var(--line), var(--sand), var(--cream)); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-float { display: inline-block; margin-top: -50px; margin-left: 24px; background: var(--ink); color: var(--cream); padding: 18px 24px; border-radius: 18px; }
.about-float .big { font-family: var(--serif); font-size: 1.8rem; color: var(--brass); }
.about-float small { color: rgba(255,255,255,0.7); font-size: 0.72rem; }
.sig { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--brass); margin-top: 20px; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.trust-badges span { display: inline-flex; align-items: center; gap: 7px; font-size: 0.85rem; font-weight: 500; color: var(--ink); background: var(--sand); border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; }

/* ---- FAQ -------------------------------------------------- */
.faq { max-width: 760px; margin: 0 auto; border-top: 1px solid var(--line); margin-top: 48px; }
.faq details { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq summary { font-family: var(--serif); font-size: 1.12rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brass); font-size: 1.4rem; }
.faq details[open] summary::after { content: "–"; }
.faq p { color: var(--stone); margin-top: 12px; }

/* ---- Portfolio -------------------------------------------- */
.portfolio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.portfolio article { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: var(--cream); }
.portfolio .img { position: relative; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--sand), var(--cream), var(--line)); }
/* Drop a real photo into images/ with the matching name and it fills this slot
   automatically. Until then, the broken <img> removes itself and the soft
   gradient above shows instead. */
.portfolio .img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.portfolio .body { padding: 26px; }
.portfolio h3 { font-size: 1.2rem; }
.portfolio p { color: var(--stone); font-size: 0.9rem; margin-top: 8px; }

.before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.before-after div { position: relative; overflow: hidden; aspect-ratio: 1; border-radius: 18px; display: flex; align-items: flex-end; padding: 18px; font-size: 0.85rem; }
.before-after div img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.before-after div span { position: relative; z-index: 1; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; text-shadow: 0 1px 8px rgba(0,0,0,0.45); }
.before-after .before { border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.6); }
.before-after .after { background: linear-gradient(135deg, rgba(0,174,239,0.32), rgba(255,255,255,0.1)); color: #fff; }

/* ---- Forms ------------------------------------------------ */
.form { border: 1px solid var(--line); background: var(--cream); border-radius: 18px; padding: 32px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.88rem; color: var(--stone); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line);
  border-radius: 12px; background: var(--cream); font: inherit; color: var(--ink);
  transition: border-color 0.2s; outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brass); }
.form .btn { width: 100%; }
.field.consent { display: flex; gap: 10px; align-items: flex-start; }
.field.consent input { width: auto; margin-top: 4px; flex-shrink: 0; }
.field.consent label { margin: 0; font-size: 0.85rem; line-height: 1.4; }

.contact-aside ol { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.contact-aside ol li { display: flex; gap: 16px; color: var(--stone); }
.contact-aside ol .n { font-family: var(--serif); font-size: 1.3rem; color: var(--brass); }
.contact-box { margin-top: 36px; border: 1px solid var(--line); background: rgba(234,246,252,0.4); border-radius: 18px; padding: 24px; }
.contact-box div { margin-bottom: 14px; }
.contact-box .lbl { text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.68rem; color: var(--stone); }

/* ---- Page hero (inner pages) ------------------------------ */
.page-hero { padding-top: 80px; padding-bottom: 40px; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); margin-top: 16px; max-width: 760px; }
.page-hero p { font-size: 1.1rem; color: var(--stone); margin-top: 22px; max-width: 600px; }

/* ---- City landing hero (text + photo) --------------------- */
.area-hero .wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.area-hero h1 { margin-top: 12px; }
.area-hero p { margin-top: 18px; }
.area-hero-photo { position: relative; aspect-ratio: 4/3; border-radius: 26px; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(135deg, var(--sand), var(--cream), var(--line)); }
.area-hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) { .area-hero .wrap { grid-template-columns: 1fr; } }

/* ---- Inline quote form (compact, used on city pages) ------ */
.quote-band { background: var(--sand); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---- Square booking embed --------------------------------- */
.square-embed { max-width: 920px; margin: 32px auto 0; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: #fff; box-shadow: 0 8px 30px rgba(24,58,82,0.06); }
.square-embed iframe { width: 100%; min-height: 780px; border: 0; display: block; }
.price-line { max-width: 640px; margin: 18px auto 0; font-weight: 500; color: var(--ink); }
.price-line span { color: var(--brass); }

/* ---- CTA panel -------------------------------------------- */
.cta-panel { max-width: 820px; margin: 0 auto; background: var(--ink); color: var(--cream); border-radius: 26px; padding: 60px 40px; text-align: center; border: 1px solid var(--line); }
.cta-panel h2 { font-size: clamp(1.8rem,3.5vw,2.4rem); margin: 16px auto; max-width: 560px; }
.cta-panel p { color: rgba(255,255,255,0.7); max-width: 480px; margin: 0 auto; }
.cta-panel .btn-row { justify-content: center; margin-top: 32px; }
.cta-panel a.link { color: var(--brass); }

/* ---- Footer ----------------------------------------------- */
.site-footer { background: var(--ink); color: var(--cream); border-top: 1px solid var(--line); margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding: 56px 0; }
.footer-grid .brand-name span { color: var(--brass); }
.site-footer p, .site-footer li { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.site-footer h4 { color: var(--brass); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.7rem; font-family: var(--sans); font-weight: 600; margin-bottom: 16px; }
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.site-footer ul a:hover { color: var(--cream); }
.footer-phone { color: var(--brass); font-weight: 600; display: inline-block; margin-top: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.tagline { margin-top: 12px; }

/* ---- Reveal animation ------------------------------------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---- Responsive ------------------------------------------- */
@media (max-width: 900px) {
  .nav, .header-phone { display: none; }
  .hamburger { display: flex; }
  .hero .wrap, .two-col, .grid-3, .grid-2, .steps, .portfolio, .footer-grid, .form .row { grid-template-columns: 1fr; }
  .hero .wrap { gap: 36px; }
  .steps { gap: 24px; }
  .section { padding: 60px 0; }
}

/* ============================================================
   PREMIUM POLISH LAYER  — added in the design pass
   Depth, cinematic motion, and micro-interactions. This whole
   block is additive; tweak or lift it out as one unit.
   ============================================================ */

/* --- Type refinement --------------------------------------- */
h1 { letter-spacing: -0.02em; }
.hero h1, .page-hero h1, .area-hero h1 { letter-spacing: -0.028em; }
.lede { letter-spacing: -0.005em; }

/* --- Hero: layered cyan glow + gradient accent on the word --- */
.hero {
  background:
    radial-gradient(720px 440px at 88% -10%, rgba(0,174,239,.12), transparent 70%),
    radial-gradient(560px 480px at -8% 112%, rgba(0,174,239,.08), transparent 70%),
    var(--cream);
}
.hero::after {
  content: ""; position: absolute; left: -140px; bottom: -170px;
  width: 480px; height: 480px; border-radius: 50%;
  background: rgba(0,174,239,.10); filter: blur(90px); opacity: .7; pointer-events: none;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(120deg, #18c0ff, #0a96d8);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--brass);
}
.hero-card, .hero-photo, .about-photo, .area-hero-photo { box-shadow: var(--shadow-lg); }
.about-float, .guarantee-card { box-shadow: var(--shadow-md); }

/* Floating accent on the stat badge */
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.hero-badge { animation: floaty 6s ease-in-out infinite; }

/* --- Dark sections: depth + a soft brand glow -------------- */
.process {
  background-color: var(--ink);
  background-image:
    radial-gradient(640px 380px at 14% -15%, rgba(0,174,239,.20), transparent 65%),
    radial-gradient(520px 360px at 102% 120%, rgba(0,174,239,.10), transparent 60%);
}
.cta-panel {
  background-color: var(--ink);
  background-image:
    radial-gradient(520px 320px at 0% -30%, rgba(0,174,239,.24), transparent 62%),
    radial-gradient(520px 320px at 100% 130%, rgba(0,174,239,.14), transparent 62%);
  box-shadow: var(--shadow-lg);
}
.step { transition: border-color .4s var(--ease); }
.step:hover { border-top-color: var(--brass); }

/* --- Surfaces: depth + lift on the repeating pieces -------- */
.review, .price-list, .form, .contact-box, .portfolio article {
  box-shadow: var(--shadow-sm);
}
.review, .portfolio article {
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.review:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.portfolio article { overflow: hidden; }
.portfolio article:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.portfolio .img img { transition: transform .6s var(--ease); }
.portfolio article:hover .img img { transform: scale(1.06); }
.review .stars { letter-spacing: 2px; }

/* --- Forms: glow focus ring -------------------------------- */
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--brass); box-shadow: var(--ring);
}

/* --- Pills & trust badges: tactile hover ------------------- */
.trust-badges span, .pill {
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.trust-badges span:hover, .pill:hover {
  transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--brass);
}

/* --- FAQ: smoother, more alive ----------------------------- */
.faq summary { transition: color .2s; }
.faq summary:hover { color: var(--brass-deep); }
.faq summary::after { transition: transform .25s var(--ease); }
.faq details[open] summary::after { transform: rotate(180deg); }

/* --- Footer: hairline accent + link motion ----------------- */
.site-footer { position: relative; }
.site-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent); opacity: .65;
}
.site-footer ul a { transition: color .2s, padding-left .25s var(--ease); }
.site-footer ul a:hover { padding-left: 5px; }

/* --- Soft bands get a touch more dimension ----------------- */
.band-soft { background: linear-gradient(180deg, rgba(234,246,252,.6), rgba(234,246,252,.2)); }

/* --- Cinematic scroll reveal (overrides the base) ---------- */
.reveal {
  opacity: 0; transform: translateY(28px) scale(.985);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* --- Accessible focus + custom scrollbar ------------------- */
a:focus-visible, button:focus-visible, summary:focus-visible,
.btn:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: none; box-shadow: var(--ring); border-radius: 10px;
}
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--sand); }
::-webkit-scrollbar-thumb { background: #b9d4e4; border-radius: 999px; border: 3px solid var(--sand); }
::-webkit-scrollbar-thumb:hover { background: var(--brass); }

/* --- Respect reduced-motion preferences -------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-badge { animation: none !important; }
}
