/* ============================================
   Kim's Painting — Custom styles
   ============================================ */

:root {
  --bone: #F4EFE6;
  --paper: #FBF7EE;
  --white: #FFFFFF;
  --ink: #1A1714;
  --ink-soft: #3D362F;
  --noir: #0A0A0A;
  --ember: #B7472A;
  --ember-deep: #8E3520;
  --crimson: #E53935;
  --crimson-deep: #B71C1C;
  --ash: #8C8478;
  --ash-soft: #C8C0B3;
  --moss: #4A5240;
}

html { scroll-behavior: smooth; }
body {
  font-feature-settings: "ss01", "ss02", "cv01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection { background: var(--crimson); color: white; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bone); }
::-webkit-scrollbar-thumb { background: var(--ash); }
::-webkit-scrollbar-thumb:hover { background: var(--ink); }

/* ====== Typography ====== */
.font-display em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
}
.tracking-tightest { letter-spacing: -0.045em; }
.text-balance { text-wrap: balance; }

/* ====== Grain overlay ====== */
.grain-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  z-index: 1;
}

/* ====== Hero video ====== */
.hero-video {
  filter: brightness(0.8) contrast(1.05) saturate(0.9);
}

/* Rainbow gradient text — Why Choose */
.text-rainbow > span:nth-child(1) { color: #FFB997; }
.text-rainbow > span:nth-child(2) { color: #F3A0A8; }
.text-rainbow > span:nth-child(3) { color: #FFFFFF; }
.text-rainbow > span:nth-child(4) { color: #9DD8C8; }
.text-rainbow > span:nth-child(5) { color: #FFFFFF; }
.text-rainbow > span:nth-child(6) { color: #C9B6E4; }

/* Hero headline accent words */
.headline-orange { color: #F97316; }
.headline-cyan   { color: #38BDF8; }
.headline-amber  { color: #FBBF24; }

/* ====== Buttons ====== */
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  background: var(--crimson);
  color: white;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border-radius: 9999px;
}
@media (min-width: 640px) {
  .btn-red { padding: 1rem 1.75rem; font-size: 0.8125rem; letter-spacing: 0.1em; gap: 0.625rem; }
}
.header-quote-btn { padding: 0.7rem 1.1rem; font-size: 0.72rem; }
@media (min-width: 768px) {
  .header-quote-btn { padding: 0.95rem 1.6rem; font-size: 0.8125rem; }
}

.btn-red::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--crimson-deep);
  transform: translateY(101%);
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 0;
}
.btn-red:hover::before { transform: translateY(0); }
.btn-red > * { position: relative; z-index: 1; }

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border: 2px solid white;
  color: white;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  transition: all 0.4s ease;
  border-radius: 9999px;
}
@media (min-width: 640px) {
  .btn-outline-light { padding: 1rem 1.75rem; font-size: 0.8125rem; letter-spacing: 0.1em; gap: 0.625rem; }
}
.btn-outline-light:hover {
  background: white;
  color: var(--ink);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.95rem 1.5rem;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ember);
  transform: translateY(101%);
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 0;
}
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary > * { position: relative; z-index: 1; }
.btn-sm { padding: 0.625rem 1.1rem; font-size: 0.8125rem; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.95rem 1.25rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  background: transparent;
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

/* ====== Header — light state (over video hero) ====== */
.site-header .logo-mark,
.site-header .phone-num { color: white; }
.site-header .nav-link { color: white; }
.site-header .logo-tagline { color: rgba(255,255,255,0.65); }
.site-header .menu-line { background-color: white; }
.site-header .header-cta {
  background: var(--crimson);
  color: white;
}
.site-header .header-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--crimson-deep);
  transform: translateY(101%);
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 0;
}
.site-header .header-cta:hover::before { transform: translateY(0); }

/* Header scrolled state — white bg, dark text */
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px -8px rgba(0, 0, 0, 0.08);
}
.site-header.is-scrolled .py-4 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.site-header.is-scrolled .logo-mark { color: var(--ink); }
.site-header.is-scrolled .nav-link { color: var(--ink); }
.site-header.is-scrolled .logo-tagline { color: var(--ash); }
.site-header.is-scrolled .menu-line { background-color: var(--ink); }

/* Smooth state transition */
.site-header .logo-mark,
.site-header .nav-link,
.site-header .logo-tagline,
.site-header .menu-line { transition: color 0.4s ease, background-color 0.4s ease; }

/* ====== Navigation underline ====== */
.nav-link {
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-link.is-active { color: var(--crimson) !important; }
.site-header.is-scrolled .nav-link.is-active { color: var(--crimson) !important; }

[data-menu-drawer].is-open { transform: translateX(0); }

/* ====== Hero scroll-down indicator (mouse) ====== */
.scroll-indicator {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-top: 3rem;
  align-self: center;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease, transform 0.3s ease;
}
@media (min-width: 640px) {
  .scroll-indicator { margin-top: 3.5rem; }
}
.scroll-indicator:hover { color: #fff; transform: translateY(2px); }
.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 1.8px solid currentColor;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
  position: relative;
}
.scroll-wheel {
  width: 3px;
  height: 7px;
  background: currentColor;
  border-radius: 9999px;
  animation: scroll-wheel 1.6s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@keyframes scroll-wheel {
  0%   { transform: translateY(0); opacity: 1; }
  60%  { transform: translateY(14px); opacity: 0; }
  61%  { transform: translateY(0); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.scroll-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
@media (prefers-reduced-motion: reduce) {
  .scroll-wheel { animation: none; }
}

/* ====== Reveal animation ====== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: var(--d, 0ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ====== Service card ====== */
.service-card {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}
.service-card .card-img { overflow: hidden; position: relative; }
.service-card .card-img img {
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover .card-img img { transform: scale(1.06); }
.service-card .card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.5), transparent 50%);
  z-index: 1;
}
.service-card .card-arrow { transition: transform 0.4s ease; }
.service-card:hover .card-arrow { transform: translateX(8px); }

/* Big service card (3-up grid) */
.service-bigcard {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 3/4;
}
.service-bigcard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-bigcard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.2) 50%, transparent 100%);
  z-index: 1;
  transition: opacity 0.5s ease;
}
.service-bigcard:hover img { transform: scale(1.06); }
.service-bigcard .label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.5rem 1.75rem 1.75rem;
  color: white;
}

/* ====== Process timeline ====== */
.process-row {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.4s ease;
}
.process-row:hover { background: rgba(229, 57, 53, 0.05); }
.process-row:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.process-row .step-num {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--crimson);
  line-height: 1;
}
.process-row .step-title {
  font-family: 'Fraunces', serif;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .process-row { grid-template-columns: 100px 320px 1fr; align-items: baseline; }
}

/* ====== Pull quote ====== */
.pull-quote {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  line-height: 1.3;
  letter-spacing: -0.015em;
}
.pull-quote::before {
  content: "“";
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--crimson);
  font-size: 1.5em;
  line-height: 0;
  margin-right: 0.05em;
  vertical-align: -0.25em;
}

/* ====== Section label ====== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: ui-monospace, "JetBrains Mono", monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ash);
}
.section-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--crimson);
}

/* ====== Decorative cross ====== */
.deco-cross {
  position: relative;
  width: 14px;
  height: 14px;
  display: inline-block;
}
.deco-cross::before,
.deco-cross::after {
  content: "";
  position: absolute;
  background: currentColor;
}
.deco-cross::before { width: 100%; height: 1px; top: 50%; transform: translateY(-50%); }
.deco-cross::after  { width: 1px; height: 100%; left: 50%; transform: translateX(-50%); }

/* ====== Gradient circle icons (Why Choose) ====== */
.icon-orb {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, var(--noir) 0%, var(--noir) 60%, transparent 60%),
    conic-gradient(from 0deg,
      #FFB997 0%, #F3A0A8 14%, #C9B6E4 28%,
      #9DD8C8 42%, #FBBF24 56%, #38BDF8 70%,
      #F97316 84%, #FFB997 100%);
  padding: 2px;
  transition: transform 0.4s ease;
}
.icon-orb::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--noir);
  z-index: 0;
}
.icon-orb svg {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  stroke: white;
}
.feature-card:hover .icon-orb { transform: scale(1.05) rotate(8deg); }

/* ====== Small badge circle (light section) ====== */
.icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--noir);
  position: relative;
  flex-shrink: 0;
}
.icon-badge::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(from 200deg,
    #FFB997, #F3A0A8, #C9B6E4, #9DD8C8, #38BDF8, #FBBF24, #F97316, #FFB997);
  z-index: -1;
  filter: blur(3px);
  opacity: 0.85;
}
.icon-badge svg { width: 24px; height: 24px; stroke: white; }

/* ====== Form ====== */
.form-input {
  width: 100%;
  background: white;
  border: 1px solid rgba(26, 23, 20, 0.12);
  padding: 0.95rem 1rem;
  color: var(--ink);
  font-size: 0.9375rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}
.form-input::placeholder { color: var(--ash); }
.form-input:focus { outline: none; border-color: var(--crimson); }

.form-input-dark {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(251, 247, 238, 0.25);
  padding: 0.875rem 0;
  color: var(--paper);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}
.form-input-dark::placeholder { color: rgba(251, 247, 238, 0.4); }
.form-input-dark:focus { outline: none; border-color: var(--crimson); }

/* ====== Area card ====== */
.area-card {
  position: relative;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(26, 23, 20, 0.12);
  background: var(--paper);
  transition: all 0.4s ease;
  overflow: hidden;
}
.area-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--noir);
  transform: translateY(101%);
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 0;
}
.area-card > * { position: relative; z-index: 1; transition: color 0.4s ease; }
.area-card:hover::after { transform: translateY(0); }
.area-card:hover * { color: white; }
.area-card:hover .area-accent { color: var(--crimson) !important; }

/* ====== Footer ====== */
.footer-link { color: rgba(251, 247, 238, 0.75); transition: color 0.3s ease; }
.footer-link:hover { color: var(--ember); }
.footer-eyebrow {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(251, 247, 238, 0.4);
}
.footer-cta {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  border-bottom: 2px solid rgba(251, 247, 238, 0.35);
  padding-bottom: 0.5rem;
  transition: color 0.3s ease, border-color 0.3s ease, gap 0.3s ease;
}
.footer-cta:hover {
  color: var(--ember);
  border-bottom-color: var(--ember);
  gap: 1.25rem;
}
.social-icon {
  width: 38px; height: 38px;
  border-radius: 9999px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(251, 247, 238, 0.18);
  color: rgba(251, 247, 238, 0.7);
  transition: all 0.3s ease;
}
.social-icon:hover { border-color: var(--ember); color: var(--ember); transform: translateY(-2px); }

/* ====== Top-rated badge ====== */
.top-rated-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1rem;
  background: white;
  border-radius: 999px;
  box-shadow: 0 4px 20px -6px rgba(0,0,0,0.25);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
}

/* ====== Partner logo strip ====== */
.partner-logos {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.partner-logo {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  font-size: 1.125rem;
  padding: 0.5rem 1rem;
  background: white;
  border-radius: 6px;
}
.partner-logo.invert { background: rgba(255,255,255,0.95); }

/* ====== Marquee — canonical 2-copy CSS pattern ======
   Each .marquee-list has min-width:100% so it always fills the viewport.
   Animation translates by exactly -100% of one list's own width per cycle —
   when copy A exits left, copy B occupies the same screen position. Seamless. */
.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  width: 100%;
}
.marquee-list {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  animation: marquee-scroll 40s linear infinite;
  will-change: transform;
}
.marquee-item {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: clamp(2rem, 6vw, 5rem);
  line-height: 1;
  color: #fff;
  white-space: nowrap;
  padding: 0 1.5rem;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .marquee-item { padding: 0 3rem; }
}
.marquee-dot {
  color: var(--crimson);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
.marquee:hover .marquee-list { animation-play-state: paused; }

/* ====== Service Areas — pill buttons on dark ====== */
/* ====== Areas pills container (mobile = horizontal scroll, desktop = wrap) ====== */
.areas-pills {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.25rem 1.25rem;
  margin: 0 -1.25rem;
}
.areas-pills::-webkit-scrollbar { display: none; }
.areas-pills > .area-pill {
  flex: 0 0 auto;
  scroll-snap-align: start;
}
@media (min-width: 768px) {
  .areas-pills {
    display: grid;
    grid-template-columns: repeat(16, minmax(0, 1fr));
    overflow: visible;
    padding: 0;
    margin: 0 auto;
    gap: 1rem;
    max-width: 1100px;
  }
  /* Row 1: 3 pills × span 4, centered — leaves 2 cols on each side empty */
  .areas-pills > .area-pill:nth-child(1) { grid-column: 3 / span 4; }
  .areas-pills > .area-pill:nth-child(2) { grid-column: span 4; }
  .areas-pills > .area-pill:nth-child(3) { grid-column: span 4; }
  /* Row 2: 4 pills × span 4 = full 16 cols */
  .areas-pills > .area-pill:nth-child(n+4) { grid-column: span 4; }
}

.area-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  border-radius: 9999px;
  background: white;
  color: var(--ink);
  font-size: 0.82rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  text-align: center;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
  cursor: default;
}
@media (min-width: 768px) {
  .area-pill { padding: 1.25rem 1.75rem; font-size: 1.05rem; }
}
.area-pill:hover {
  background: var(--crimson);
  color: white;
  transform: translateY(-2px);
}

/* ====== FAQ accordion ====== */
.faq-item { padding: 0; }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  cursor: pointer;
  list-style: none;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .faq-item summary { font-size: 1.2rem; padding: 1.75rem 0; }
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--crimson); }
.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-icon::before {
  width: 18px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 2px;
  height: 18px;
  transform: translate(-50%, -50%);
}
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-answer {
  padding: 0 0 1.75rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 760px;
}

/* ====== Contact CTA + form ====== */
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}
.contact-icon svg { width: 18px; height: 18px; }

.quote-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 14px;
}
@media (min-width: 768px) {
  .quote-form { padding: 2.5rem; }
}
.quote-label {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.5rem;
}
.quote-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.quote-input::placeholder { color: rgba(255, 255, 255, 0.35); }
.quote-input:focus {
  outline: none;
  border-color: var(--crimson);
  background: rgba(0, 0, 0, 0.4);
}
select.quote-input {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='white' stroke-opacity='0.5' stroke-width='1.6'><path d='M3 5l3 3 3-3' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.5rem;
}
select.quote-input option {
  background: #1A1714;
  color: white;
}

/* ====== Customer reviews scroller ====== */
.reviews-scroller {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reviews-scroller::-webkit-scrollbar { display: none; }
.reviews-track {
  display: flex;
  gap: 0.75rem;
  width: max-content;
  padding: 0.5rem 1.25rem;
}
@media (min-width: 768px) {
  .reviews-track { gap: 1.25rem; padding: 0.5rem 0.25rem; }
}
.reviews-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(26, 23, 20, 0.15);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--ink);
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 8px 24px -10px rgba(10, 10, 10, 0.18);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.reviews-arrow:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  transform: translateY(-50%) scale(1.05);
}
.reviews-arrow svg { width: 20px; height: 20px; }
.reviews-arrow-prev { left: -10px; }
.reviews-arrow-next { right: -10px; }
@media (min-width: 768px) {
  .reviews-arrow-prev { left: -24px; }
  .reviews-arrow-next { right: -24px; }
}

/* ====== Customer review cards ====== */
.review-card {
  flex: 0 0 auto;
  width: 82vw;
  max-width: 360px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid rgba(26, 23, 20, 0.08);
  padding: 1.5rem 1.5rem 1.25rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
@media (min-width: 768px)  {
  .review-card { width: 340px; max-width: none; padding: 1.75rem 1.75rem 1.5rem; }
}
@media (min-width: 1024px) { .review-card { width: 360px; } }
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -24px rgba(10, 10, 10, 0.18);
  border-color: rgba(26, 23, 20, 0.15);
}
.review-quote {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.5rem;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(26, 23, 20, 0.08);
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.78rem;
  color: white;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.review-name {
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.2;
}
.review-role {
  font-size: 0.78rem;
  color: var(--ash);
  margin-top: 2px;
}

/* ====== Recent Transformations gallery (horizontal scroll) ====== */
.gallery-scroller {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery-scroller::-webkit-scrollbar { display: none; }
.gallery-track {
  display: flex;
  gap: 0.75rem;
  padding: 0 5vw;
  width: max-content;
}
.gallery-card {
  flex: 0 0 auto;
  width: 78vw;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111;
  scroll-snap-align: start;
  display: block;
  position: relative;
}
@media (min-width: 768px) {
  .gallery-track { gap: 1.25rem; padding: 0 6vw; }
  .gallery-card  { width: clamp(260px, 32vw, 460px); }
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-card:hover img { transform: scale(1.04); }

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.gallery-arrow:hover {
  background: rgba(10, 10, 10, 0.85);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-50%) scale(1.05);
}
.gallery-arrow svg { width: 22px; height: 22px; }
.gallery-arrow-prev { left: 1.5rem; }
.gallery-arrow-next { right: 1.5rem; }
@media (min-width: 768px) {
  .gallery-arrow-prev { left: 2.5rem; }
  .gallery-arrow-next { right: 2.5rem; }
}

/* ====== Services divider (rainbow) ====== */
.services-divider {
  background: linear-gradient(
    90deg,
    #e53935 0%,
    #fb923c 20%,
    #fbbf24 38%,
    #4ade80 56%,
    #38bdf8 74%,
    #a78bfa 92%,
    #ec4899 100%
  );
}

/* ====== Service tiles (Interior / Exterior / Commercial) ====== */
.service-tile {
  display: block;
  text-decoration: none;
  color: var(--ink);
}
.service-tile-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bone);
}
.service-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-tile:hover .service-tile-img img { transform: scale(1.05); }
.service-tile-label {
  margin-top: 0.85rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ink);
}
@media (min-width: 768px) {
  .service-tile-label { margin-top: 1.25rem; font-size: 1.5rem; }
}

/* Mobile: horizontal scroll for service tiles */
.services-tiles {
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overflow-x: auto;
  gap: 0.75rem;
  padding: 0 1.25rem;
}
.services-tiles::-webkit-scrollbar { display: none; }
.services-tiles > .service-tile {
  flex: 0 0 70%;
  scroll-snap-align: start;
}
@media (min-width: 768px) {
  .services-tiles {
    overflow: visible;
    padding: 0;
    gap: 0;
  }
  .services-tiles > .service-tile { flex: initial; }
}
.services-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 5;
  transition: color 0.3s ease, transform 0.3s ease;
}
.services-arrow:hover { color: var(--crimson); transform: translateY(-50%) scale(1.1); }
.services-arrow svg { width: 28px; height: 28px; }

/* ====== Reduce motion ====== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
