/* ============================================================
   SB CLEANING TEAM LLC — Premium One-Pager Stylesheet
   Architecture:
     1.  Design tokens (custom properties)
     2.  Base + reset
     3.  Typography helpers (eyebrow, accent, section heads)
     4.  Buttons
     5.  Navigation
     6.  Hero
     7.  Trust bar
     8.  Features
     9.  About / Photo frame
    10.  Services (dark cards)
    11.  Testimonials
    12.  Secondary CTA band
    13.  FAQ accordion
    14.  Contact + form
    15.  Footer
    16.  Reveal animations
    17.  Responsive
    18.  prefers-reduced-motion
   ============================================================ */


/* ============================================================
   1. DESIGN TOKENS
   Palette pulled from the SB Cleaning Team LLC logo:
     · Lavender / periwinkle primary
     · Buttery-yellow accent
     · Warm cream backgrounds + deep charcoal-ink for type
   ============================================================ */
:root {
  /* Brand colors */
  --primary:        #5a5ab8;   /* logo lavender */
  --primary-deep:   #3f3f8c;   /* hover / deep band */
  --primary-darker: #25255a;   /* footer / dark sections */
  --accent:         #f3da5e;   /* buttery yellow from logo */
  --accent-hover:   #ffe676;   /* brighter on hover */
  --accent-deep:    #d4b829;

  /* Neutrals */
  --white:    #ffffff;
  --cream:    #faf6ef;   /* warm off-white page background */
  --cream-2:  #f3ecdf;   /* slightly deeper section */
  --ink:      #1d1e2c;   /* deep charcoal for text */
  --ink-soft: #4a4c5e;   /* muted text */
  --ink-mute: #8a8c9c;   /* tertiary text */

  /* Borders / dividers */
  --hairline:        rgba(90, 90, 184, 0.12);
  --hairline-strong: rgba(90, 90, 184, 0.28);
  --hairline-dark:   rgba(255, 255, 255, 0.08);

  /* Fonts */
  --font-serif: 'Playfair Display', 'Times New Roman', serif;
  --font-sans:  'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(20, 20, 60, 0.06), 0 2px 6px rgba(20, 20, 60, 0.04);
  --shadow-md: 0 6px 18px rgba(20, 20, 60, 0.08), 0 2px 6px rgba(20, 20, 60, 0.06);
  --shadow-lg: 0 24px 60px rgba(20, 20, 60, 0.18), 0 8px 24px rgba(20, 20, 60, 0.10);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur:  0.45s;

  /* Shape */
  --radius:    14px;
  --radius-sm: 8px;
  --radius-lg: 22px;

  /* Layout */
  --max:    1240px;
  --max-narrow: 880px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}


/* ============================================================
   2. BASE + RESET
   ============================================================ */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 84px; /* offset for sticky nav */
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.6vw + 0.85rem, 1.0625rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
a:hover { color: var(--primary-deep); }

button { font-family: inherit; cursor: pointer; }

/* Selection */
::selection { background: var(--accent); color: var(--ink); }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  z-index: 9999;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* Focus ring — consistent across interactive elements */
:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--max-narrow); }

/* Section base */
.section {
  padding-block: clamp(4rem, 7vw, 7.5rem);
}
.section--dark   { background: var(--primary-darker); color: var(--white); }
.section--darker { background: #15162b; color: var(--white); }
.section--cream  { background: var(--cream-2); }


/* ============================================================
   3. TYPOGRAPHY HELPERS
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: inherit;
}

p { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
  display: inline-block;
}
.eyebrow--light { color: var(--accent); }
.eyebrow--dark  { color: var(--primary-darker); }

.accent {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--primary);
  font-weight: 500;
}
.section--dark .accent,
.section--darker .accent { color: var(--accent); }

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 4vw, 4rem);
}
.section__title {
  font-size: clamp(2rem, 3.6vw + 0.5rem, 3.5rem);
}
.section__title--light { color: var(--white); }
.section__lead {
  font-size: clamp(1.05rem, 0.4vw + 0.95rem, 1.2rem);
  color: var(--ink-soft);
  margin: 0;
}
.section__lead--light { color: rgba(255, 255, 255, 0.78); }


/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform var(--dur) var(--ease),
    background-color var(--dur) var(--ease),
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--lg   { padding: 1.05rem 2rem; font-size: 1rem; }
.btn--block{ width: 100%; }

.btn--primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover { background: var(--primary-deep); color: var(--white); box-shadow: var(--shadow-lg); }

.btn--accent {
  background: var(--accent);
  color: var(--ink);
  box-shadow: var(--shadow-md);
}
.btn--accent:hover { background: var(--accent-hover); color: var(--ink); box-shadow: var(--shadow-lg); }

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

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


/* ============================================================
   5. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              backdrop-filter var(--dur) var(--ease);
  padding-block: clamp(0.6rem, 1.2vw, 1rem);
  background: linear-gradient(180deg, rgba(20, 20, 50, 0.45), rgba(20, 20, 50, 0));
}
.nav__inner {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Solid + blur when scrolled */
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--hairline), var(--shadow-sm);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-right: auto;
  color: var(--white);
  transition: color var(--dur) var(--ease);
}
.nav__logo img {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  padding: 4px;
  transition: background-color var(--dur) var(--ease);
}
.nav__brand { display: flex; flex-direction: column; line-height: 1.1; }
.nav__brand-name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}
.nav__brand-tag {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
}

.nav.is-scrolled .nav__logo       { color: var(--ink); }
.nav.is-scrolled .nav__logo img   { background: var(--cream); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav__links a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.25rem 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur) var(--ease);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav.is-scrolled .nav__links a { color: var(--ink); }

.nav__actions { display: flex; align-items: center; gap: 1rem; }
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--white);
  font-weight: 500;
  font-size: 0.92rem;
}
.nav__phone:hover { color: var(--accent); }
.nav.is-scrolled .nav__phone { color: var(--ink); }
.nav.is-scrolled .nav__phone:hover { color: var(--primary); }

.nav__cta { padding: 0.7rem 1.25rem; font-size: 0.9rem; }

/* Mobile hamburger */
.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  padding: 8px;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease), background var(--dur) var(--ease);
  transform-origin: center;
}
.nav.is-scrolled .nav__toggle span { background: var(--ink); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }


/* ============================================================
   6. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(640px, 92svh, 880px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding-block: clamp(7rem, 12vw, 9rem) clamp(4rem, 7vw, 6rem);
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  will-change: transform;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* Premium CSS treatment + darken so white text reads cleanly */
  filter: saturate(1.05) contrast(1.06) brightness(0.6);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    /* primary brand wash — dark, asymmetric for visual interest */
    linear-gradient(115deg, rgba(15, 15, 40, 0.92) 0%, rgba(25, 25, 70, 0.78) 45%, rgba(37, 37, 90, 0.65) 100%),
    /* full-bleed darkening floor so any bright spot in the image stays readable */
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.55) 100%);
}
.hero__content {
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
  padding-inline: var(--gutter);
  /* Subtle text-shadow safety net — readability on any underlying image */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45), 0 2px 24px rgba(0, 0, 0, 0.35);
}
.hero .eyebrow { color: var(--accent); }
.hero .eyebrow::before { background: var(--accent); }

.hero__title {
  font-size: clamp(2.5rem, 5vw + 1rem, 5.25rem);
  font-weight: 600;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
}
.hero__title .accent { color: var(--accent); }
.hero__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 0.5vw + 1.05rem, 1.5rem);
  color: rgba(255, 255, 255, 0.96);
  margin: 0 0 1rem;
}
.hero__desc {
  font-size: clamp(1rem, 0.3vw + 0.95rem, 1.1rem);
  max-width: 640px;
  color: rgba(255, 255, 255, 0.94);
  margin: 0 0 2rem;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.hero__ctas .btn { text-shadow: none; }
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2.5vw, 2rem);
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 1.5rem;
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.02em;
}
.hero__trust svg {
  width: 18px; height: 18px;
  color: var(--accent);
}

/* Scroll hint */
.hero__scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}
.hero__scroll span {
  width: 4px; height: 8px;
  background: var(--accent);
  border-radius: 4px;
  display: block;
  animation: scrollDot 2.1s var(--ease) infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0);    opacity: 1; }
  70%  { transform: translateY(18px); opacity: 0; }
  71%  { transform: translateY(0);    opacity: 0; }
  100% { transform: translateY(0);    opacity: 1; }
}


/* ============================================================
   7. TRUST BAR
   ============================================================ */
.trustbar {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 0.95rem var(--gutter);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}
.trustbar a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.trustbar a:hover { color: var(--accent-hover); }
.trustbar__sep { opacity: 0.5; margin: 0 0.5rem; }


/* ============================================================
   8. FEATURES
   ============================================================ */
.feature-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.75rem);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.feature {
  background: var(--white);
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  border-radius: var(--radius);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--hairline-strong);
}
.feature__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(90, 90, 184, 0.10);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.feature__icon svg { width: 26px; height: 26px; }
.feature:hover .feature__icon {
  background: var(--primary);
  color: var(--accent);
}
.feature h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}
.feature p {
  color: var(--ink-soft);
  font-size: 0.97rem;
  margin: 0;
}


/* ============================================================
   9. ABOUT / PHOTO FRAME
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about__copy h2 { font-size: clamp(1.9rem, 2.6vw + 0.6rem, 3rem); }
.about__copy strong { color: var(--primary-deep); }

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: 0.7rem;
}
.checklist li {
  position: relative;
  padding-left: 2rem;
  font-weight: 500;
  color: var(--ink);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.1em;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--primary);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z' fill='white'/></svg>") center / 70% no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z' fill='white'/></svg>") center / 70% no-repeat;
  box-shadow: 0 0 0 4px rgba(90, 90, 184, 0.12);
}

/* Photo frame — accent gold corners + gradient + italic quote badge */
.photo-frame {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: visible;
  isolation: isolate;
}
.photo-frame > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  /* Premium treatment for client photos — slight saturation + contrast lift */
  filter: saturate(1.08) contrast(1.05);
}
.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(37, 37, 90, 0) 55%, rgba(37, 37, 90, 0.55) 100%);
  pointer-events: none;
}
.photo-frame__corner {
  position: absolute;
  width: 48px; height: 48px;
  border-color: var(--accent);
  border-style: solid;
  border-width: 0;
  pointer-events: none;
  z-index: 2;
}
.photo-frame__corner--tl { top: -14px; left: -14px;  border-top-width: 3px; border-left-width: 3px;  border-top-left-radius: 8px; }
.photo-frame__corner--tr { top: -14px; right: -14px; border-top-width: 3px; border-right-width: 3px; border-top-right-radius: 8px; }
.photo-frame__corner--bl { bottom: -14px; left: -14px;  border-bottom-width: 3px; border-left-width: 3px;  border-bottom-left-radius: 8px; }
.photo-frame__corner--br { bottom: -14px; right: -14px; border-bottom-width: 3px; border-right-width: 3px; border-bottom-right-radius: 8px; }

.photo-frame__quote {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  font-family: var(--font-serif);
  color: var(--white);
  background: rgba(37, 37, 90, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
}


/* ============================================================
   10. SERVICES (dark cards, numbered, hover-lift)
   ============================================================ */
.service-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.service {
  position: relative;
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--hairline-dark);
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              background-color var(--dur) var(--ease);
}
.service::before {
  /* Subtle accent gradient wash on hover */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 100% 0%, rgba(243, 218, 94, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  z-index: -1;
}
.service:hover {
  transform: translateY(-6px);
  border-color: rgba(243, 218, 94, 0.4);
}
.service:hover::before { opacity: 1; }

.service__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--accent);
  letter-spacing: 0.15em;
}
.service__img {
  margin: 1rem 0 1.25rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  position: relative;
}
.service__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04) brightness(0.92);
  transition: transform 0.8s var(--ease), filter var(--dur) var(--ease);
}
.service:hover .service__img img {
  transform: scale(1.06);
  filter: saturate(1.12) contrast(1.06) brightness(0.96);
}
.service h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.service p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.97rem;
  margin: 0;
}


/* ============================================================
   11. TESTIMONIALS
   ============================================================ */
.testimonial-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.75rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.testimonial {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--hairline-dark);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 2.5vw, 2.25rem);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.testimonial:hover {
  transform: translateY(-4px);
  border-color: rgba(243, 218, 94, 0.35);
}
.testimonial__stars {
  color: var(--accent);
  letter-spacing: 0.18em;
  font-size: 1rem;
}
.testimonial blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 0.3vw + 1rem, 1.2rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  flex-grow: 1;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.5rem;
}
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
}
.testimonial__author strong { display: block; color: var(--white); font-size: 0.97rem; }
.testimonial__author em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}


/* ============================================================
   12. SECONDARY CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  background: var(--accent);
  color: var(--ink);
  padding-block: clamp(4rem, 6vw, 6rem);
  overflow: hidden;
  isolation: isolate;
}
.cta-band__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
}
.cta-band__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.2);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, var(--accent) 30%, rgba(243, 218, 94, 0.7) 100%);
}
.cta-band__inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.cta-band__title {
  font-size: clamp(1.85rem, 3vw + 0.5rem, 3rem);
  margin: 0 0 1rem;
  color: var(--primary-darker);
  text-wrap: balance;
}
.cta-band__sub {
  font-size: 1.05rem;
  color: var(--ink);
  margin: 0 auto 2rem;
  max-width: 600px;
  opacity: 0.85;
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.cta-band .btn--accent { background: var(--primary); color: var(--white); }
.cta-band .btn--accent:hover { background: var(--primary-deep); color: var(--white); }
.cta-band .btn--outline-dark { border-color: var(--primary-deep); color: var(--primary-darker); }
.cta-band .btn--outline-dark:hover { background: var(--primary-darker); color: var(--white); border-color: var(--primary-darker); }


/* ============================================================
   13. FAQ ACCORDION
   ============================================================ */
.faq__list {
  display: grid;
  gap: 0.75rem;
}
.faq__item {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.faq__item[open] {
  border-color: var(--hairline-strong);
  box-shadow: var(--shadow-md);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.05rem, 0.3vw + 1rem, 1.2rem);
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--primary); }

.faq__icon {
  position: relative;
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--hairline-strong);
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--primary);
  border-radius: 1px;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
/* horizontal line */
.faq__icon::before {
  left: 7px; right: 7px; top: 50%;
  height: 2px;
  transform: translateY(-50%);
}
/* vertical line */
.faq__icon::after {
  top: 7px; bottom: 7px; left: 50%;
  width: 2px;
  transform: translateX(-50%);
}
.faq__item[open] .faq__icon {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(180deg);
}
.faq__item[open] .faq__icon::before,
.faq__item[open] .faq__icon::after { background: var(--ink); }
.faq__item[open] .faq__icon::after { transform: translateX(-50%) scaleY(0); }

/* Smooth max-height accordion body (JS sets max-height inline) */
.faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur) var(--ease);
}
.faq__body > p {
  padding: 0 1.4rem 1.4rem;
  color: var(--ink-soft);
  margin: 0;
}


/* ============================================================
   14. CONTACT + FORM
   ============================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.contact__copy h2 { font-size: clamp(1.9rem, 2.6vw + 0.6rem, 3rem); }

.contact__list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 1.25rem;
}
.contact__list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(90, 90, 184, 0.12);
  color: var(--primary);
  display: grid;
  place-items: center;
  flex: none;
}
.contact__icon svg { width: 22px; height: 22px; }
.contact__list strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.15rem;
  font-weight: 600;
}
.contact__list a,
.contact__list span:not(.contact__icon) {
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 500;
}
.contact__list a:hover { color: var(--primary); }

/* Honeypot — keep it out of view AND out of the layout, but reachable
   in the DOM so naive bots will fill it. aria-hidden + tabindex=-1 in
   the markup hide it from assistive tech. */
.honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* Form card */
.contact-form {
  background: var(--primary-darker);
  color: var(--white);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-form__title {
  color: var(--white);
  font-size: clamp(1.5rem, 1vw + 1.2rem, 1.95rem);
  margin: 0 0 0.35rem;
}
.contact-form__sub {
  color: rgba(255, 255, 255, 0.68);
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
}

.field { display: flex; flex-direction: column; margin-bottom: 1rem; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255, 255, 255, 0.4); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.10);
  box-shadow: 0 0 0 3px rgba(243, 218, 94, 0.18);
}
.field select option {
  background: var(--primary-darker);
  color: var(--white);
}
.field textarea { resize: vertical; min-height: 110px; }

.field.is-error input,
.field.is-error select,
.field.is-error textarea {
  border-color: #ff9a9a;
  background: rgba(255, 100, 100, 0.10);
}
.field__err {
  min-height: 1.1em;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: #ffc6c6;
}

.contact-form__status {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  min-height: 1.2em;
  text-align: center;
}
.contact-form__status.is-success { color: var(--accent); }
.contact-form__fineprint {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  line-height: 1.5;
}


/* ============================================================
   15. FOOTER
   ============================================================ */
.footer {
  background: #15162b;
  color: rgba(255, 255, 255, 0.78);
  padding-top: clamp(3rem, 5vw, 5rem);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 4vw, 4rem);
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.footer__logo img {
  background: var(--white);
  border-radius: 10px;
  padding: 4px;
}
.footer__tag {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent);
  margin: 0 0 1rem;
}
.footer__copy {
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 360px;
}
.footer__social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.6rem;
}
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.85);
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.footer__social svg { width: 16px; height: 16px; }
.footer__social a:hover {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 1.25rem;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}
.footer__col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}
.footer__col a:hover { color: var(--accent); }
.footer__cta { color: var(--accent) !important; font-weight: 600; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 1.5rem;
  font-size: 0.85rem;
}
.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer__legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer__legal a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
}
.footer__legal a:hover { color: var(--accent); }


/* ============================================================
   16. REVEAL ANIMATIONS
   IntersectionObserver toggles .is-visible
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"].is-visible { transition-delay: 0.05s; }
.reveal[data-delay="2"].is-visible { transition-delay: 0.15s; }
.reveal[data-delay="3"].is-visible { transition-delay: 0.25s; }
.reveal[data-delay="4"].is-visible { transition-delay: 0.35s; }


/* ============================================================
   17. RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .about__grid    { grid-template-columns: 1fr; }
  .contact__grid  { grid-template-columns: 1fr; }
  .footer__grid   { grid-template-columns: 1fr 1fr; }
  .footer__brand  { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(80vw, 320px);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.25rem;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--dur) var(--ease);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { color: var(--ink) !important; font-size: 1.1rem; }

  .nav__phone { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .hero__title  { font-size: clamp(2.25rem, 8vw, 3rem); }
  .hero__trust  { gap: 1rem 1.5rem; }
  .hero__trust li { font-size: 0.82rem; }

  .field-row    { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand{ grid-column: auto; }
}

@media (max-width: 480px) {
  .photo-frame__corner { width: 36px; height: 36px; }
  .photo-frame__corner--tl,
  .photo-frame__corner--tr,
  .photo-frame__corner--bl,
  .photo-frame__corner--br { top: -10px; bottom: auto; }
  .photo-frame__corner--bl,
  .photo-frame__corner--br { bottom: -10px; top: auto; }
}


/* ============================================================
   18. prefers-reduced-motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero__media { transform: none !important; }
  .hero__scroll span { animation: none; }
}
