/* ============================================================
   BUILD DSS — BRAND DESIGN SYSTEM (shared across all pages)
   Palette: teal / blue / light blue / cream / dark
   Font: Poppins
   Feel: warm, playful, custom — not corporate
   ============================================================ */

:root {
  /* Brand palette */
  --teal: #004e64;
  --teal-deep: #002a38;
  --blue: #104c81;
  --light-blue: #d5e9f5;
  --cream: #fef3e4;
  --cream-warm: #fff8ed;
  --ink: #242424;
  --ink-soft: #4a4a4a;
  --white: #ffffff;
  --neutral-100: #f8f6f1;
  --neutral-200: #eae3d6;

  /* Radii */
  --r-xs: 6px;
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 20px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --pill: 999px;

  /* Shadows (warm-tinted) */
  --shadow-sm: 0 1px 2px rgba(36, 36, 36, 0.04), 0 2px 8px rgba(0, 78, 100, 0.04);
  --shadow-md: 0 2px 4px rgba(36, 36, 36, 0.04), 0 12px 28px rgba(0, 78, 100, 0.08);
  --shadow-lg: 0 4px 8px rgba(36, 36, 36, 0.06), 0 24px 48px rgba(0, 78, 100, 0.12);
  --shadow-sticker: 0 4px 12px rgba(0, 78, 100, 0.15), 0 2px 4px rgba(36, 36, 36, 0.08);

  /* Motion */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  /* Layout */
  --max-w: 1200px;
  --gutter: 24px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

a { color: inherit; text-decoration: none; transition: color .2s ease; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--teal);
  text-wrap: balance;
}

h1 {
  font-size: clamp(1.875rem, 3.4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--teal);
  max-width: 22ch;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

p { text-wrap: pretty; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(16, 76, 129, 0.08);
  padding: 6px 14px;
  border-radius: var(--pill);
}
.eyebrow--cream {
  background: rgba(254, 243, 228, 0.15);
  color: var(--cream);
}

.subhead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 52ch;
}

/* ============================================================
   BUTTONS (pill)
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 32px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--pill);
  transition: transform .15s var(--ease-out), background .2s ease, color .2s ease, box-shadow .2s ease;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
  white-space: nowrap;
}
.btn:active { transform: scale(0.96); }

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

.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--cream);
}

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

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(254, 243, 228, 0.4);
}
.btn-ghost:hover {
  border-color: var(--cream);
  background: rgba(254, 243, 228, 0.08);
}

.btn svg { width: 16px; height: 16px; transition: transform .2s var(--ease-out); }
.btn:hover svg { transform: translateX(2px); }

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  transition: box-shadow .25s ease, background .25s ease;
  padding: 16px 0;
}
.nav.scrolled {
  box-shadow: 0 4px 24px rgba(0, 78, 100, 0.06);
  background: rgba(255, 255, 255, 0.96);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  height: 44px;
}
.nav-logo .logo-mark {
  height: 100%;
  width: 200px;
  background-color: var(--teal);
  mask-image: url(logo/build-logo-full.svg);
  mask-repeat: no-repeat;
  mask-position: left center;
  mask-size: contain;
  -webkit-mask-image: url(logo/build-logo-full.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: left center;
  -webkit-mask-size: contain;
  transition: background-color .2s ease;
}
.nav-logo:hover .logo-mark {
  background-color: var(--teal-deep);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width .25s var(--ease-out);
}
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.btn::after { display: none; }
.nav-links a.nav-cta, .nav-links a.active-page {
  color: var(--teal);
}
.nav-links a.active-page::after { width: 100%; background: var(--teal); }

.nav-links a.nav-cta {
  padding: 14px 24px;
  font-size: 0.875rem;
  color: var(--white);
  line-height: 1;
  background: var(--teal);
}
.nav-links a.nav-cta:hover { color: var(--white); background: var(--teal-deep); }
.nav-links a.nav-cta::after { display: none; }

.mobile-toggle {
  display: none;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform .2s ease;
}

/* ============================================================
   SECTION PRIMITIVES
   ============================================================ */

.section {
  padding: 96px 0;
  position: relative;
}
.section--hero { padding: 80px 0 112px; }
.section--tight { padding: 72px 0; }

.bg-cream { background: var(--cream); }
.bg-light-blue { background: var(--light-blue); }
.bg-teal { background: var(--teal); color: var(--cream); }
.bg-teal-deep { background: var(--teal-deep); color: var(--cream); }
.bg-white { background: var(--white); }

.bg-teal h1, .bg-teal h2, .bg-teal h3,
.bg-teal-deep h1, .bg-teal-deep h2, .bg-teal-deep h3 { color: var(--cream); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head--left { text-align: left; margin: 0 0 56px; max-width: none; }
.section-head h2 { margin-top: 16px; }
.section-head .subhead { margin: 16px auto 0; }
.section-head--left .subhead { margin: 16px 0 0; }

/* ============================================================
   DECORATIVE SHAPES
   ============================================================ */

.shape {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ============================================================
   PAGE HERO (sub-pages)
   ============================================================ */

.page-hero {
  background: var(--cream);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  margin-bottom: 20px;
  max-width: 18ch;
}
.page-hero .subhead {
  font-size: 1.1875rem;
  max-width: 58ch;
}

/* Split variant — copy left, visual right (e.g. team page carousel card) */
.page-hero--split .container {
  max-width: var(--max-w);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: 64px;
  align-items: center;
}
.page-hero--split .page-hero-copy h1 { max-width: 14ch; }
.page-hero-visual {
  position: relative;
}
.page-hero--split .team-banner-wrap {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
  background: var(--teal-deep);
  transform: rotate(-1.5deg);
  transition: transform .4s var(--ease-out);
}
.page-hero--split .team-banner-wrap:hover { transform: rotate(0); }
@media (max-width: 880px) {
  .page-hero--split .container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .page-hero--split .team-banner-wrap {
    max-width: 360px;
    margin: 0 auto;
    transform: rotate(0);
  }
}

.page-hero-shape {
  position: absolute;
  top: -80px;
  right: -100px;
  width: 320px;
  opacity: 0.35;
  z-index: 1;
}
@media (max-width: 1024px) {
  .page-hero-shape { display: none; }
}

/* ============================================================
   HOME HERO
   ============================================================ */

.hero {
  background: var(--cream);
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy > * + * {
  margin-top: 28px;
}
.hero-copy .hero-buttons {
  margin-top: 36px;
}
.hero-copy .eyebrow { margin: 0; }
.hero-copy .subhead { max-width: 44ch; }

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 8px;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.trust-dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: var(--pill);
}

.hero-visual {
  position: relative;
  padding: 40px 20px;
}
.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--teal) 100%);
  transform: rotate(-2deg);
  box-shadow: var(--shadow-lg);
  transition: transform .4s var(--ease-out);
}
.hero-photo img,
.about-photo img,
.service-photo img,
.location-visual img,
.team-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-photo:hover { transform: rotate(-1deg) translateY(-4px); }

.hero-photo-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 24px;
  text-align: center;
}

.hero-sticker {
  position: absolute;
  bottom: 20px;
  left: -12px;
  background: var(--white);
  color: var(--teal);
  padding: 12px 20px;
  border-radius: var(--pill);
  font-size: 0.875rem;
  font-weight: 600;
  transform: rotate(-6deg);
  box-shadow: var(--shadow-sticker);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}
.hero-sticker .dot {
  width: 8px;
  height: 8px;
  border-radius: var(--pill);
  background: var(--teal);
}

.hero-shape-a {
  top: -40px;
  right: -80px;
  width: 360px;
  opacity: 0.35;
  z-index: 1;
}
.hero-shape-b {
  bottom: 40px;
  left: -60px;
  width: 200px;
  opacity: 0.25;
  z-index: 1;
}

@media (max-width: 1024px) {
  .hero-shape-a { display: none; }
  .hero-shape-b { display: none; }
}

/* ============================================================
   HOW IT WORKS (home)
   ============================================================ */

.how-it-works {
  background: var(--light-blue);
  position: relative;
  overflow: hidden;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.step-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
  position: relative;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--teal);
  color: var(--cream);
  border-radius: var(--pill);
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.step-card h3 {
  margin-bottom: 10px;
  color: var(--teal);
}

.step-card p {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============================================================
   ICON (mask-based)
   ============================================================ */

.icon {
  display: inline-block;
  background-color: var(--blue);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: contain;
  -webkit-mask-size: contain;
  transition: transform .25s var(--ease-out), background-color .2s ease;
}
.icon-48 { width: 48px; height: 48px; }
.icon-32 { width: 32px; height: 32px; }
.icon-24 { width: 24px; height: 24px; }
.icon--teal { background-color: var(--teal); }
.icon--cream { background-color: var(--cream); }
.icon--white { background-color: var(--white); }

/* ============================================================
   SERVICES GRID (home)
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-md);
}
.service-card:hover .icon {
  transform: scale(1.08) rotate(-4deg);
}
.service-card h3 { color: var(--teal); }
.service-card p {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.service-card .learn-more {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 8px;
  transition: color .2s ease, gap .2s var(--ease-out);
}
.service-card:hover .learn-more { color: var(--teal); gap: 10px; }
.service-card .learn-more::after { content: '→'; }

/* ============================================================
   WHY GRID (home)
   ============================================================ */

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why-card {
  border-radius: var(--r-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-card:hover .icon { transform: scale(1.08) rotate(-4deg); }
.why-card h3 { font-size: 1.375rem; }
.why-card p { font-size: 0.9375rem; line-height: 1.65; }

.why-card--teal {
  background: var(--teal);
  color: var(--cream);
}
.why-card--teal h3 { color: var(--cream); }
.why-card--teal p { color: rgba(254, 243, 228, 0.85); }
.why-card--teal .icon { background-color: var(--cream); }

.why-card--white {
  background: var(--white);
}
.why-card--white h3 { color: var(--teal); }
.why-card--white p { color: var(--ink-soft); }
.why-card--white .icon { background-color: var(--teal); }

.why-card--lightblue {
  background: var(--light-blue);
}
.why-card--lightblue h3 { color: var(--teal); }
.why-card--lightblue p { color: var(--ink-soft); }
.why-card--lightblue .icon { background-color: var(--blue); }

/* ============================================================
   ABOUT SPLIT (home + about)
   ============================================================ */

.about-preview {
  background: var(--white);
  position: relative;
  overflow: hidden;
  padding: 56px 0;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.about-preview .about-split { align-items: start; }
.about-split--reversed { direction: rtl; }
.about-split--reversed > * { direction: ltr; }

.about-photo-wrap {
  position: relative;
  padding: 32px 20px;
}
.about-preview .about-photo-wrap { padding: 12px 12px; }
.about-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--cream) 0%, var(--light-blue) 100%);
  transform: rotate(2deg);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.about-photo--left-tilt { transform: rotate(-2deg); }
.about-photo-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 78, 100, 0.4);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 24px;
  text-align: center;
}
.about-shape {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 140px;
  opacity: 0.6;
  z-index: -1;
}

.about-content > * + * { margin-top: 20px; }
.about-content h2 { margin-top: 16px; }
.about-content p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ============================================================
   PARTNERS (home)
   ============================================================ */

.partners {
  background: var(--teal);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.partners h2 { color: var(--cream); }
.partners .subhead { color: rgba(254, 243, 228, 0.75); }

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

.partner-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--ease-out), background .2s ease;
}
.partner-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
}

.partner-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  background: var(--teal-deep);
  overflow: hidden;
}
.partner-photo-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.partner-photo-wrap img.active { opacity: 1; }

/* Partner logo treatment (logo now sits in the header area) */
.partner-logo-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 40px;
  overflow: hidden;
}
.partner-logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
/* Visually matches logos with different internal padding */
.partner-logo-wrap--boost img { transform: scale(1.4); }

.partner-card-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.partner-card-content h3 {
  color: var(--cream);
  font-size: 1.375rem;
  letter-spacing: -0.02em;
}
.partner-card p {
  color: rgba(254, 243, 228, 0.85);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.partners-shape {
  position: absolute;
  top: -40px;
  right: -60px;
  width: 240px;
  opacity: 0.08;
  z-index: 1;
}

/* ============================================================
   TESTIMONIALS (home + services)
   ============================================================ */

.testimonials {
  background: var(--light-blue);
  position: relative;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}
.testimonials-grid--2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
  position: relative;
}
.testimonials-grid .testimonial-card:nth-child(1) { transform: rotate(-1.5deg); }
.testimonials-grid .testimonial-card:nth-child(2) { transform: rotate(0.8deg); }
.testimonials-grid .testimonial-card:nth-child(3) { transform: rotate(-0.8deg); }

.testimonial-card:hover {
  transform: rotate(0) translateY(-6px);
  box-shadow: var(--shadow-md);
}

.testimonial-quote-mark {
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  line-height: 0.8;
  color: var(--teal);
  opacity: 0.18;
  font-weight: 700;
  margin-bottom: -24px;
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  font-weight: 600;
  color: var(--teal);
}
.testimonial-role {
  font-size: 0.8125rem;
  color: var(--blue);
  margin-top: 2px;
}

/* Single testimonial (team page — Sara) */
.testimonial-solo {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 32px;
}
.testimonial-solo .testimonial-quote {
  font-size: 1.25rem;
  line-height: 1.7;
  text-align: center;
}
.testimonial-solo .testimonial-quote-mark {
  text-align: center;
  margin-bottom: 0;
}

/* ============================================================
   FINAL CTA (home + every page)
   ============================================================ */

.final-cta {
  background: var(--teal);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.final-cta h2 { color: var(--cream); }

.cta-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-copy > * + * { margin-top: 16px; }
.cta-copy h2 { max-width: 14ch; }
.cta-copy p { color: rgba(254, 243, 228, 0.8); font-size: 1.0625rem; max-width: 48ch; }
.cta-copy .btn { margin-top: 24px; }

.cta-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cta-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cta-detail-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: rgba(254, 243, 228, 0.5);
}
.cta-detail-value {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--cream);
}
.cta-detail-value a { color: var(--cream); }
.cta-detail-value a:hover { color: var(--white); }

.cta-hands {
  position: absolute;
  top: 50%;
  right: -120px;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  opacity: 0.08;
  mask-image: url(logo/hands-symbol.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url(logo/hands-symbol.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background: var(--cream);
  z-index: 1;
}

/* ============================================================
   BUILD VALUES (about page — letter cards)
   ============================================================ */

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
}

.value-card {
  border-radius: var(--r-xl);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.values-grid .value-card:nth-child(1) { transform: rotate(-0.8deg); }
.values-grid .value-card:nth-child(2) { transform: rotate(0.6deg); }
.values-grid .value-card:nth-child(3) { transform: rotate(-0.4deg); }
.values-grid .value-card:nth-child(4) { transform: rotate(0.8deg); }
.values-grid .value-card:nth-child(5) { transform: rotate(-0.6deg); }
.values-grid .value-card:hover { transform: rotate(0) translateY(-4px); }

.value-letter {
  width: 64px;
  height: 64px;
  border-radius: var(--pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.value-card h3 { color: var(--teal); font-size: 1.125rem; }
.value-card p { font-size: 0.875rem; line-height: 1.55; color: var(--ink-soft); }

.value-card--teal { background: var(--teal); color: var(--cream); }
.value-card--teal h3 { color: var(--cream); }
.value-card--teal p { color: rgba(254, 243, 228, 0.85); }
.value-card--teal .value-letter { background: var(--cream); color: var(--teal); }

.value-card--white { background: var(--white); }
.value-card--white .value-letter { background: var(--teal); color: var(--cream); }

.value-card--lightblue { background: var(--light-blue); }
.value-card--lightblue .value-letter { background: var(--teal); color: var(--cream); }

.value-card--cream { background: var(--cream-warm); }
.value-card--cream .value-letter { background: var(--teal); color: var(--cream); }

/* ============================================================
   SERVICE SECTION (services page — alternating splits)
   ============================================================ */

.service-section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.service-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.service-split--reversed { direction: rtl; }
.service-split--reversed > * { direction: ltr; }

.service-visual {
  position: relative;
  padding: 32px 20px;
}
.service-photo {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--teal) 100%);
  transform: rotate(-2deg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease-out);
}
.service-split--reversed .service-photo { transform: rotate(2deg); }
.service-photo:hover { transform: rotate(0) translateY(-4px); }
.service-photo-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 24px;
  text-align: center;
}

.service-content { display: flex; flex-direction: column; gap: 20px; }
.service-content .icon { margin-bottom: 4px; }
.service-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0;
}
.service-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.service-content .service-meta {
  font-size: 0.875rem;
  color: var(--blue);
  font-weight: 500;
  padding: 12px 16px;
  background: rgba(16, 76, 129, 0.06);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--teal);
}
.service-content .btn { margin-top: 8px; align-self: flex-start; }

.service-shape {
  position: absolute;
  opacity: 0.25;
  width: 220px;
  z-index: 0;
}

/* ============================================================
   TEAM BANNER (team page hero image — supports carousel)
   ============================================================ */

.team-banner {
  padding: 32px 0 0;
  background: var(--cream);
  position: relative;
}
.team-banner-wrap {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-lg);
  max-width: var(--max-w);
  margin: 0 auto;
  background: var(--teal-deep);
}
.team-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 0;
  transition: opacity .25s ease-out;
}
.team-banner-img.active {
  opacity: 1;
  z-index: 1;
}
.team-banner-img.leaving {
  opacity: 0;
  z-index: 2;
  transform: translateY(-12%) rotate(-3deg);
  transition: opacity .45s cubic-bezier(0.4, 0, 0.2, 1), transform .55s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (prefers-reduced-motion: reduce) {
  .team-banner-img,
  .team-banner-img.leaving {
    transition: opacity .15s linear !important;
    transform: none !important;
  }
}
@media (max-width: 720px) {
  .team-banner { padding: 24px 0 0; }
  .team-banner-wrap { border-radius: var(--r-lg); }
}

/* ============================================================
   TEAM LEAD BLOCK (full-width feature per lead)
   ============================================================ */

.team-lead {
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.team-lead--featured {
  padding: 96px 0 72px;
}
.team-lead-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.team-lead-split--reversed { direction: rtl; }
.team-lead-split--reversed > * { direction: ltr; }

.team-lead-visual {
  position: relative;
  padding: 24px;
}
.team-lead-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--cream) 0%, var(--light-blue) 100%);
  transform: rotate(-2deg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease-out);
}
.team-lead-split--reversed .team-lead-photo { transform: rotate(2deg); }
.team-lead-photo-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 78, 100, 0.4);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 24px;
  text-align: center;
}
.team-lead-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.team-lead-photo .photo-candid {
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.team-lead-photo:hover .photo-candid { opacity: 1; }
@media (hover: none) {
  /* On touch devices, gently fade between the two so it still has life */
  .team-lead-photo .photo-candid { animation: candidPulse 8s ease-in-out infinite alternate; }
  @keyframes candidPulse {
    0%, 60% { opacity: 0; }
    80%, 100% { opacity: 1; }
  }
}
.team-lead-shape {
  position: absolute;
  z-index: 0;
  opacity: 0.35;
  width: 180px;
  pointer-events: none;
}

.team-lead-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.team-lead-content .eyebrow { align-self: flex-start; }
.team-lead-name {
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 4px 0 0;
}
.team-lead-role {
  font-size: 1rem;
  color: var(--blue);
  font-weight: 500;
  margin: 0 0 8px;
}
.team-lead-bio {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.team-lead-bio + .team-lead-bio { margin-top: 4px; }

@media (max-width: 1024px) {
  .team-lead-split,
  .team-lead-split--reversed { grid-template-columns: 1fr; gap: 32px; direction: ltr; }
  .team-lead { padding: 64px 0; }
}

/* ============================================================
   TEAM GRID (team page)
   ============================================================ */

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}
.team-grid--leads { grid-template-columns: repeat(4, 1fr); }

.team-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-photo-wrap {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-md);
  background: var(--cream);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-photo-wrap .hands-icon {
  width: 40%;
  height: 40%;
  background-color: rgba(0, 78, 100, 0.15);
  mask-image: url(logo/hands-symbol.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url(logo/hands-symbol.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}
.team-photo-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Lead photo hover swap — posed → candid (clean snap, no fade) */
.team-lead-photo .lead-photo-pair {
  position: relative;
  width: 100%;
  height: 100%;
}
.team-lead-photo .lead-photo-pair img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.team-lead-photo .lead-photo-pair .lead-candid {
  visibility: hidden;
}
.team-lead-photo:hover .lead-photo-pair .lead-posed { visibility: hidden; }
.team-lead-photo:hover .lead-photo-pair .lead-candid { visibility: visible; }

.team-card h3 {
  font-size: 1.0625rem;
  color: var(--teal);
  margin-top: 4px;
  padding: 0 8px;
}
.team-card .role {
  font-size: 0.8125rem;
  color: var(--blue);
  padding: 0 8px 8px;
  font-weight: 500;
}

/* Featured Jett card */
.team-card--featured {
  grid-column: span 1;
  background: var(--teal);
  color: var(--cream);
}
.team-card--featured h3 { color: var(--cream); }
.team-card--featured .role { color: rgba(254, 243, 228, 0.75); }
.team-card--featured .team-photo-wrap { background: rgba(254, 243, 228, 0.1); }
.team-card--featured .team-photo-wrap .hands-icon {
  background-color: rgba(254, 243, 228, 0.4);
}

/* ============================================================
   FORMS (contact page)
   ============================================================ */

.form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-card--cream { background: var(--cream); }

.form-intro {
  margin-bottom: 28px;
}
.form-intro h3 { margin-bottom: 6px; }
.form-intro p { font-size: 0.9375rem; color: var(--ink-soft); }

.form-group {
  margin-bottom: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9375rem;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid rgba(16, 76, 129, 0.15);
  border-radius: var(--r-sm);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-card--cream .form-input,
.form-card--cream .form-select,
.form-card--cream .form-textarea {
  background: var(--white);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 78, 100, 0.08);
}
.form-textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}
.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23004e64'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px;
  padding-right: 42px;
}
.form-submit {
  width: 100%;
  margin-top: 8px;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */

.faq {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.faq-item {
  background: var(--white);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease;
}
.faq-item[open] {
  box-shadow: var(--shadow-md);
}
.faq-item summary {
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--teal);
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--teal-deep); }

.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: var(--pill);
  background: rgba(0, 78, 100, 0.08);
  position: relative;
  transition: transform .25s var(--ease-out), background .2s ease;
}
.faq-item summary::before {
  content: '';
  position: absolute;
  right: 30px;
  top: 50%;
  width: 14px;
  height: 2px;
  background: var(--teal);
  transform: translateY(-50%);
  transition: transform .2s ease;
  z-index: 1;
}
.faq-item summary span.faq-plus {
  position: absolute;
  right: 30px;
  top: 50%;
  width: 2px;
  height: 14px;
  background: var(--teal);
  transform: translateY(-50%);
  transition: transform .2s ease;
  z-index: 1;
}
.faq-item[open] summary span.faq-plus {
  transform: translateY(-50%) rotate(90deg);
  opacity: 0;
}
.faq-item[open] summary::after {
  background: var(--teal);
  transform: rotate(180deg);
}
.faq-item[open] summary::before {
  background: var(--cream);
}

.faq-answer {
  padding: 0 24px 24px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.faq-answer p + p { margin-top: 12px; }

/* ============================================================
   LOCATION CARD
   ============================================================ */

.location-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.location-visual {
  aspect-ratio: 16 / 10;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--cream) 0%, var(--light-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 78, 100, 0.4);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
}
.location-visual iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.location-info { display: flex; flex-direction: column; gap: 16px; }
.location-info h3 { color: var(--teal); }
.location-info .address {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9375rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.55;
  padding: 16px 20px;
  background: var(--cream);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--teal);
}
.location-info p { font-size: 0.9375rem; color: var(--ink-soft); line-height: 1.65; }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--teal-deep);
  color: rgba(254, 243, 228, 0.7);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  display: block;
  height: 40px;
  width: 180px;
  margin-bottom: 16px;
  background-color: var(--cream);
  mask-image: url(logo/build-logo-full.svg);
  mask-repeat: no-repeat;
  mask-position: left center;
  mask-size: contain;
  -webkit-mask-image: url(logo/build-logo-full.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: left center;
  -webkit-mask-size: contain;
  opacity: 0.95;
}
.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(254, 243, 228, 0.6);
  max-width: 28ch;
}
.footer h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.9375rem;
  color: rgba(254, 243, 228, 0.65);
  transition: color .2s ease;
}
.footer-links a:hover { color: var(--cream); }
.footer-contact {
  font-size: 0.9375rem;
  color: rgba(254, 243, 228, 0.65);
  line-height: 1.8;
}
.footer-contact a { color: rgba(254, 243, 228, 0.65); }
.footer-contact a:hover { color: var(--cream); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(254, 243, 228, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8125rem;
  color: rgba(254, 243, 228, 0.5);
}
.footer-bottom a { color: rgba(254, 243, 228, 0.6); }
.footer-bottom a:hover { color: var(--cream); }

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes enterUp {
  from { opacity: 0; transform: translateY(12px); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.enter { opacity: 0; animation: enterUp .6s var(--ease-out) forwards; }
.enter-1 { animation-delay: 0.05s; }
.enter-2 { animation-delay: 0.15s; }
.enter-3 { animation-delay: 0.25s; }
.enter-4 { animation-delay: 0.35s; }
.enter-5 { animation-delay: 0.45s; }
.enter-6 { animation-delay: 0.55s; }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .hero .container,
  .about-split,
  .service-split,
  .service-split--reversed,
  .location-split { grid-template-columns: 1fr; gap: 48px; }
  .service-split--reversed,
  .about-split--reversed { direction: ltr; }
  .services-grid,
  .steps-grid,
  .testimonials-grid,
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid--leads { grid-template-columns: repeat(2, 1fr); }
  .why-grid,
  .cta-split,
  .testimonials-grid--2 { grid-template-columns: 1fr; gap: 24px; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .values-grid { grid-template-columns: repeat(5, 1fr); gap: 12px; }
  .cta-hands { right: -200px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 820px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .values-grid .value-card:nth-child(5) { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
}

@media (max-width: 720px) {
  :root { --gutter: 20px; }
  .section { padding: 72px 0; }
  .section--hero,
  .page-hero { padding: 56px 0 72px; }
  .service-section { padding: 64px 0; }
  .hero { padding: 56px 0 80px; }
  .hero-buttons .btn { width: 100%; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .services-grid,
  .steps-grid,
  .testimonials-grid,
  .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { text-align: center; flex-direction: column; }
  .testimonial-card:nth-child(n) { transform: none; }
  .testimonials-grid .testimonial-card:nth-child(n) { transform: none; }
  .values-grid { grid-template-columns: 1fr; }
  .values-grid .value-card:nth-child(5) { max-width: 100%; }
  .values-grid .value-card:nth-child(n) { transform: none; }
  .form-card { padding: 28px 24px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-photo,
  .about-photo,
  .service-photo,
  .testimonial-card:nth-child(n),
  .value-card:nth-child(n) { transform: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   PHOTO PICKER (preview-only — Bailey's selection tool)
   ============================================================ */

.picker-photo { position: relative; }
.picker-buttons {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 4px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 4px;
  border-radius: 999px;
  z-index: 10;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.picker-buttons button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  text-transform: uppercase;
  line-height: 1;
}
.picker-buttons button:hover { color: #fff; background: rgba(255,255,255,0.12); }
.picker-buttons button.active {
  background: var(--cream);
  color: var(--teal);
}

/* Floating summary panel */
#picker-summary {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: var(--teal-deep);
  color: var(--cream);
  padding: 14px 18px;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8125rem;
  z-index: 1000;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  max-width: 280px;
  max-height: 60vh;
  overflow-y: auto;
}
#picker-summary h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream);
  margin-bottom: 10px;
}
#picker-summary ul { list-style: none; display: grid; gap: 4px; }
#picker-summary li { display: flex; justify-content: space-between; gap: 12px; }
#picker-summary li span:first-child { color: rgba(254, 243, 228, 0.7); }
#picker-summary li span:last-child {
  color: var(--cream);
  font-weight: 700;
  text-transform: uppercase;
}
#picker-summary button {
  margin-top: 10px;
  background: var(--cream);
  color: var(--teal);
  border: 0;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
}
#picker-toggle {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: var(--teal-deep);
  color: var(--cream);
  border: 0;
  padding: 10px 16px;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  display: none;
}

/* Focus rings */
a:focus-visible, button:focus-visible, .btn:focus-visible,
.form-input:focus-visible, .form-select:focus-visible, .form-textarea:focus-visible,
.faq-item summary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* Honeypot — visually hidden spam trap */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Form status messages */
.form-status {
  margin-top: 16px;
  font-size: 0.9375rem;
  line-height: 1.5;
  display: none;
}
.form-status.is-success,
.form-status.is-error {
  display: block;
  padding: 12px 16px;
  border-radius: var(--r-md);
}
.form-status.is-success {
  background: rgba(0, 78, 100, 0.08);
  color: var(--teal);
}
.form-status.is-error {
  background: rgba(197, 48, 48, 0.08);
  color: #a02020;
}
.form-status.is-error a { color: inherit; font-weight: 600; }

/* Policy pages (privacy, feedback policy) */
.policy-block {
  margin-bottom: 56px;
}
.policy-block:last-child {
  margin-bottom: 0;
}
.policy-block h2 {
  font-size: clamp(1.375rem, 2.4vw, 1.75rem);
  color: var(--teal);
  margin-bottom: 20px;
  line-height: 1.3;
}
.policy-block p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 16px;
}
.policy-block p:last-child {
  margin-bottom: 0;
}
.policy-block a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color .2s var(--ease-out);
}
.policy-block a:hover {
  color: var(--blue);
}
.policy-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.policy-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
}
.policy-list li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}
