/* ===== Tokens ===== */
:root {
  --ink: #211F20;
  --ink-soft: #6B6866;
  --paper: #FAFAF9;
  --fill: #EDEBE7;
  --red: #E8323D;
  --dark: #141314;

  --font: 'Inter', sans-serif;

  --container: 1240px;
  --pad: clamp(20px, 4vw, 64px);
  /* nav visual height (~110px: 16 wrapper pad + 1 border + 12 inner pad + 52 logo + 12 inner pad + 1 border + 16 wrapper pad)
     plus ~40px breathing room before hero content starts */
  --nav-clearance: 150px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

/* ===== Navbar: rounded/floating on load, full-bleed on scroll ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px var(--pad);
  transition: padding .4s cubic-bezier(.4,0,.2,1);
}

.nav__shell {
  max-width: var(--container);
  margin: 0 auto;
  overflow: hidden;
  background: rgba(250, 250, 249, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(33,31,32,0.08);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(33,31,32,0.07);
  transition: max-width .45s cubic-bezier(.4,0,.2,1),
              border-radius .45s cubic-bezier(.4,0,.2,1),
              background .35s ease,
              box-shadow .35s ease,
              border-color .35s ease;
}

.nav.is-scrolled { padding: 0; }
.nav.is-scrolled .nav__shell {
  max-width: 100%;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
  background: rgba(250, 250, 249, 0.96);
  box-shadow: 0 1px 0 rgba(33,31,32,0.08);
}

.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 12px 28px;
}

.nav__brand { display: flex; align-items: center; }
.nav__logo { height: 52px; width: auto; display: block; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-self: center;
}

.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  padding: 9px 16px;
  border-radius: 999px;
  transition: background .2s ease;
}
.nav__links a:hover { background: rgba(33,31,32,0.06); }

.nav__cta {
  justify-self: end;
  font-size: 14px;
  font-weight: 600;
  background: var(--ink);
  color: var(--paper);
  padding: 11px 22px;
  border-radius: 999px;
  transition: background .25s ease, transform .25s ease;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--red); transform: translateY(-1px); }

/* ===== Hero ===== */
.hero {
  padding: var(--nav-clearance) 0 clamp(48px, 6vw, 80px);
}

.hero__inner {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
}

.hero__copy { max-width: 560px; }

.hero__eyebrow {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.hero__sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 999px;
  transition: background .25s ease, color .25s ease, transform .25s ease, border-color .25s ease;
}

.btn--primary {
  background: var(--red);
  color: #fff;
}
.btn--primary:hover { background: #cf2830; transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(33,31,32,0.2);
  padding: 13px 25px;
}
.btn--ghost:hover { border-color: var(--ink); }

.hero__visual {
  position: relative;
  height: min(600px, 70vh);
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(33,31,32,0.08);
  background: var(--fill);
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(250,250,249,0.15) 0%, rgba(250,250,249,0) 18%, rgba(250,250,249,0) 78%, rgba(250,250,249,0.35) 100%),
    linear-gradient(90deg, rgba(250,250,249,0.25) 0%, rgba(250,250,249,0) 14%, rgba(250,250,249,0) 100%);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  :root { --nav-clearance: 128px; }

  .nav__inner { grid-template-columns: auto auto; }
  .nav__links { display: none; }
  .nav__cta { justify-self: end; padding: 9px 16px; font-size: 13px; }
  .nav__logo { height: 40px; }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .hero__visual { height: 300px; order: -1; }
  .hero__copy { max-width: 100%; }
}

@media (max-width: 480px) {
  :root { --nav-clearance: 108px; }
  .nav { padding: 12px 14px; }
  .nav__inner { padding: 8px 14px; gap: 10px; }
  .nav__logo { height: 32px; }
  .nav__cta { padding: 8px 13px; font-size: 12px; }
}

@media (max-width: 360px) {
  .nav__inner { padding: 6px 10px; gap: 8px; }
  .nav__logo { height: 28px; }
  .nav__cta { padding: 7px 11px; font-size: 11.5px; }
}

/* ===== 05. Explore by Service (directory grid) — open section, no card frame ===== */
.svc-panel {
  border: 1px solid rgba(33,31,32,0.12);
  /* border-radius: 24px; */
  background: #fff;
  box-shadow: 0 30px 70px -32px rgba(33,31,32,0.16);
  padding: clamp(28px, 4vw, 44px);
}

.svc-panel__head { margin-bottom: 28px; }
.svc-panel__head .section__intro { margin-top: 10px; }

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

.svc-tile {
  border: 1px solid rgba(33,31,32,0.1);
  border-radius: 0;
  padding: 24px;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.svc-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -18px rgba(33,31,32,0.2);
  border-color: rgba(232,50,61,0.22);
}

.svc-tile__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 0;
  background: var(--fill);
  margin-bottom: 18px;
}
.svc-tile__icon svg {
  width: 28px;
  height: 28px;
  color: var(--ink);
}

.svc-tile h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.35;
}
.svc-tile p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.svc-panel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(33,31,32,0.12);
}
.svc-panel__footer p {
  font-size: 15px;
  color: var(--ink-soft);
}
.svc-panel__footer .btn { flex-shrink: 0; }

@media (max-width: 800px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-panel__footer { flex-direction: column; align-items: flex-start; }
  .svc-panel__footer .btn { width: 100%; justify-content: center; }
}

/* ===== 06. Real Work (Swiper slider + Fancybox gallery) ===== */
.work-panel {
  border: 1px solid rgba(33,31,32,0.1);
  border-radius: 0;
  background: #fff;
  box-shadow: 0 12px 32px -22px rgba(33,31,32,0.14);
  padding: clamp(28px, 4vw, 44px);
}

.work-panel__head { margin-bottom: 20px; }
.work-panel__head .section__intro { margin-top: 10px; }

.work-slider { overflow: hidden; }

.work-slide__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.chip {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--fill);
  padding: 5px 12px;
  border-radius: 999px;
}
.chip__label {
  font-weight: 500;
  color: var(--ink-soft);
  opacity: 0.7;
  margin-right: 2px;
}

.work-slide__title {
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}

.work-slide__body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* Image mosaic: 1 large + up to 3 small thumbnails */
.work-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: repeat(3, 84px);
  gap: 8px;
}
.work-mosaic__main {
  grid-row: 1 / -1;
  grid-column: 1;
}
.work-mosaic__main,
.work-mosaic__thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  background: var(--fill);
}
.work-mosaic__main img,
.work-mosaic__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.work-mosaic__main:hover img,
.work-mosaic__thumb:hover img {
  transform: scale(1.05);
}
.work-mosaic__thumb--more::after {
  content: attr(data-count);
  position: absolute;
  inset: 0;
  background: rgba(33,31,32,0.55);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-mosaic__hidden { display: none; }

.work-slide__label {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-bottom: 12px;
}

.work-scope {
  list-style: none;
  margin-bottom: 20px;
}
.work-scope li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.work-scope li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 0;
  background: var(--red);
}

.work-outcome {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink);
  border-left: 3px solid var(--red);
  padding-left: 14px;
}
.work-outcome strong { font-weight: 700; }

/* Control bar: counter + progress + arrows, placed right under the header
   so it's visible immediately — not lost below a long, media-heavy slide */
.work-control {
  margin: 0 0 26px;
}
.work-control__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
}

.work-counter {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.work-counter__sep {
  color: var(--ink-soft);
  margin: 0 3px;
  font-weight: 500;
}
.work-counter__total {
  color: var(--ink-soft);
  font-weight: 500;
}

.work-control__arrows {
  display: flex;
  align-items: center;
  gap: 12px;
}
.work-slider__arrow {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(33,31,32,0.14);
  background: var(--fill);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  box-shadow: 0 2px 6px rgba(33,31,32,0.08);
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
  flex-shrink: 0;
}
.work-slider__arrow svg { width: 18px; height: 18px; }
.work-slider__arrow:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px -6px rgba(232,50,61,0.45);
}

/* Swiper auto-toggles this class at the first/last slide (e.g. 1/10, 10/10) */
.work-slider__arrow.swiper-button-disabled {
  cursor: not-allowed;
  opacity: 0.45;
}
.work-slider__arrow.swiper-button-disabled:hover {
  background: var(--fill);
  border-color: rgba(33,31,32,0.14);
  color: var(--ink);
  transform: none;
  box-shadow: 0 2px 6px rgba(33,31,32,0.08);
  cursor: not-allowed;
}

.work-progress {
  height: 4px;
  border-radius: 0;
  background: rgba(33,31,32,0.1);
  overflow: hidden;
}
.work-progress__fill {
  height: 100%;
  width: 10%;
  background: var(--red);
  border-radius: 0;
  transition: width .35s ease;
}

@media (max-width: 800px) {
  .work-slide__body { grid-template-columns: 1fr; }
  .work-mosaic { grid-template-rows: repeat(3, 72px); max-width: 420px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
}

/* ===== Shared section scaffolding ===== */
.section {
  padding: clamp(24px, 3.5vw, 44px) 0;
}

.section__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ===== Propservia Difference block ===== */
.diff-block {
  border: 1px solid rgba(33,31,32,0.12);
  background: #fff;
}

.diff-block__head {
  background: #fff;
  padding: clamp(20px, 2.6vw, 28px) clamp(24px, 5vw, 64px);
  text-align: center;
  border-bottom: 1px solid rgba(33,31,32,0.12);
}
.diff-block__head p {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.25;
  max-width: 780px;
  margin: 0 auto;
}

.diff-block__grid {
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.diff-block__cell {
  padding: clamp(30px, 4.2vw, 44px);
  position: relative;
  transition: background .25s ease;
}
.diff-block__cell:hover {
  background: rgba(232,50,61,0.025);
}

.diff-block__icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: var(--fill);
  margin-bottom: 20px;
  transition: background .25s ease, transform .25s ease;
}
.diff-block__cell:hover .diff-block__icon-chip {
  background: rgba(232,50,61,0.09);
  transform: translateY(-2px);
}

.diff-block__icon {
  width: 26px;
  height: 26px;
  color: var(--ink);
  display: block;
}

.diff-block__cell p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* plus-shaped rule dividers across the 3-row x 2-col grid (4 bullets + statement/CTA row) */
.diff-block__cell:nth-child(1),
.diff-block__cell:nth-child(2),
.diff-block__cell:nth-child(3),
.diff-block__cell:nth-child(4) {
  border-bottom: 1px solid rgba(33,31,32,0.12);
}
.diff-block__cell:nth-child(odd) {
  border-right: 1px solid rgba(33,31,32,0.12);
}

.diff-block__cell--statement {
  display: flex;
  align-items: center;
}
.diff-block__cell--statement p {
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
}

.diff-block__cell--cta {
  display: flex;
  align-items: center;
}

@media (max-width: 700px) {
  .diff-block__grid { grid-template-columns: 1fr; }
  .diff-block__cell:nth-child(1),
  .diff-block__cell:nth-child(2),
  .diff-block__cell:nth-child(3),
  .diff-block__cell--statement {
    border-right: none;
    border-bottom: 1px solid rgba(33,31,32,0.12);
  }
  .diff-block__cell--cta .btn { width: 100%; justify-content: center; }
}

/* ===== Shared section header (index + title) ===== */
.section__index {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.section__title {
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

/* ===== 03. How It Works — open section===== */
.how-block {
  border: 1px solid rgba(33,31,32,0.12);
  background: #fff;
  box-shadow: 0 30px 70px -32px rgba(33,31,32,0.16);
}

.how-block__head {
  background: #fff;
  padding: clamp(24px, 3.4vw, 36px) clamp(24px, 5vw, 48px);
  border-bottom: 1px solid rgba(33,31,32,0.12);
}

.how-block__body {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
}

.how-block__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px;
  background: #fff;
  background-image: radial-gradient(rgba(33,31,32,0.14) 1px, transparent 1px);
  background-size: 18px 18px;
  border-right: 1px solid rgba(33,31,32,0.12);
}

.how-visual {
  position: relative;
  width: 290px;
  height: 270px;
}

.how-visual__frame {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity .45s ease, transform .45s ease;
  pointer-events: none;
}
.how-visual__frame.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.how-card {
  position: relative;
  width: 280px;
  background: #fff;
  border-radius: 0;
  padding: 28px 26px;
  box-shadow: 0 28px 54px -18px rgba(33,31,32,0.3);
  transform: rotate(-7deg);
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.how-card__badge {
  position: absolute;
  top: -17px;
  left: -17px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(232,50,61,0.35);
}
.how-card__badge svg { width: 20px; height: 20px; }

.how-card__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 4px;
}

.how-card__line {
  display: block;
  height: 10px;
  border-radius: 0;
  background: var(--fill);
  width: 100%;
}
.how-card__line--wide { width: 100%; height: 38px; border-radius: 0; }
.how-card__line--short { width: 60%; }

.how-card__photo {
  display: block;
  height: 88px;
  width: 100%;
  border-radius: 0;
  background: linear-gradient(135deg, var(--fill) 25%, #fff 25%, #fff 50%, var(--fill) 50%, var(--fill) 75%, #fff 75%);
  background-size: 16px 16px;
}

.how-card__cta {
  display: block;
  height: 14px;
  width: 70%;
  border-radius: 0;
  background: var(--ink);
  margin-top: 4px;
}

.how-block__steps {
  display: flex;
  flex-direction: column;
}

.how-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: clamp(22px, 3vw, 30px) clamp(24px, 4vw, 40px);
  border-top: 1px solid rgba(33,31,32,0.12);
  background: #fff;
  cursor: pointer;
  transition: background .3s ease;
}
.how-block__steps .how-step:first-child { border-top: none; }

.how-step__num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(33,31,32,0.08);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  transition: background .3s ease, color .3s ease;
}

.how-step h3 {
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 6px;
}
.how-step p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.how-step.is-active {
  background: #fff;
}
.how-step.is-active .how-step__num {
  background: var(--red);
  color: #fff;
}

@media (max-width: 800px) {
  .how-block__body { grid-template-columns: 1fr; }
  .how-block__visual { border-right: none; border-bottom: 1px solid rgba(33,31,32,0.12); }
}

/* ===== Shared section intro text ===== */
.section__intro {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 58ch;
  line-height: 1.6;
}

/* ===== 04. Explore by Situation (bento grid) ===== */
.sit-panel {
  border: 1px solid rgba(33,31,32,0.1);
  border-radius: 0;
  background: #fff;
  box-shadow: 0 12px 32px -22px rgba(33,31,32,0.14);
  padding: clamp(28px, 4vw, 44px);
}

.sit-panel__head { margin-bottom: 28px; }
.sit-panel__head .section__intro { margin-top: 10px; }

.sit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(176px, auto);
  gap: 18px;
  grid-template-areas:
    "feat feat wide wide"
    "feat feat b c"
    "d e f g"
    "closer closer closer closer";
}

.sit-grid > .sit-card:nth-child(1) { grid-area: feat; }
.sit-grid > .sit-card:nth-child(2) { grid-area: wide; }
.sit-grid > .sit-card:nth-child(3) { grid-area: b; }
.sit-grid > .sit-card:nth-child(4) { grid-area: c; }
.sit-grid > .sit-card:nth-child(5) { grid-area: d; }
.sit-grid > .sit-card:nth-child(6) { grid-area: e; }
.sit-grid > .sit-card:nth-child(7) { grid-area: f; }
.sit-grid > .sit-card:nth-child(8) { grid-area: g; }
.sit-grid > .sit-card:nth-child(9) { grid-area: closer; }

/* Base card: column layout — content on top, icon chip pinned bottom-right */
.sit-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 26px;
  background: linear-gradient(155deg, #fff 55%, rgba(232,50,61,0.07) 100%);
  border: 1px solid rgba(33,31,32,0.1);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}
.sit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px -18px rgba(33,31,32,0.2);
  border-color: rgba(33,31,32,0.16);
}

.sit-card__content { max-width: 72%; }
.sit-card__content h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.sit-card__content p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* Fixed-size icon chip — consistent scale regardless of card size */
.sit-card__img-wrap {
  align-self: flex-end;
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 12px;
  background: rgba(33,31,32,0.035);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.sit-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sit-card--feat {
  border-color: rgba(232,50,61,0.18);
}
.sit-card--feat .sit-card__content { max-width: 100%; }
.sit-card--feat h3 {
  font-size: clamp(19px, 2vw, 24px);
  margin-bottom: 12px;
}
.sit-card__arrow {
  display: inline-block;
  margin-top: 16px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--red);
}
.sit-card__img-wrap--feat {
  width: 170px;
  height: 170px;
  border-radius: 0;
  padding: 22px;
}

/* Wide cards: row layout — content left, icon chip vertically centered right */
.sit-card--wide,
.sit-card--closer {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.sit-card--wide .sit-card__content,
.sit-card--closer .sit-card__content {
  max-width: 60%;
}
.sit-card--wide .sit-card__img-wrap,
.sit-card--closer .sit-card__img-wrap {
  align-self: center;
  width: 124px;
  height: 124px;
}

.sit-card--closer {
  border: 1px solid rgba(232,50,61,0.18);
}
.sit-card--closer .sit-card__content { max-width: 480px; }
.sit-card--closer .sit-card__arrow { color: var(--red); }

@media (max-width: 900px) {
  .sit-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "feat feat"
      "wide wide"
      "b c"
      "d e"
      "f g"
      "closer closer";
  }
}

@media (max-width: 560px) {
  .sit-grid { grid-template-columns: 1fr; grid-template-areas: none; }
  .sit-grid > .sit-card { grid-area: auto !important; }
  .sit-card--wide,
  .sit-card--closer {
    flex-direction: column;
    align-items: stretch;
  }
  .sit-card__content,
  .sit-card--wide .sit-card__content,
  .sit-card--closer .sit-card__content {
    max-width: 100%;
  }
  .sit-card--wide .sit-card__img-wrap,
  .sit-card--closer .sit-card__img-wrap {
    align-self: flex-end;
  }
}

/* ===== 07. Service Areas ===== */
.areas {
  --area-fill: #cfe9d3;
  --area-fill-hi: #9dd5a8;
  --area-line: #4a9a5e;
}

.areas-panel {
  border: 1px solid rgba(33,31,32,0.12);
  background: #fff;
  box-shadow: 0 30px 70px -32px rgba(33,31,32,0.16);
}

.areas-panel__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* -- Left: copy, regions, expansion + CTA -- */
.areas-copy {
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.areas-copy__head .section__intro { margin-top: 10px; }

.areas-list {
  list-style: none;
  border-top: 1px solid rgba(33,31,32,0.12);
}

.areas-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(33,31,32,0.12);
  cursor: default;
}

.areas-item__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--fill);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  transition: background .25s ease, color .25s ease;
}
.areas-item.is-active .areas-item__num { background: var(--ink); color: #fff; }

.areas-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1.35;
  transition: color .25s ease;
}
.areas-item.is-active h3 { color: var(--red); }
.areas-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.areas-copy__footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.areas-copy__footer p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* -- Right: accurate county-based California map -- */
.areas-map {
  position: relative;
  border-left: 1px solid rgba(33,31,32,0.12);
  background: var(--paper);
  padding: clamp(24px, 3.4vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.areas-map__svg {
  display: block;
  width: 100%;
  max-width: 520px;
  max-height: 640px;
  height: auto;
  overflow: visible;
}

.areas-map__base { fill: var(--fill); }

.areas-region {
  fill: var(--area-fill);
  stroke: var(--area-line);
  stroke-width: 1.25;
  stroke-linejoin: round;
  transition: fill .3s ease;
  cursor: pointer;
}
.areas-region.is-active { fill: var(--area-fill-hi); }

.areas-map__counties {
  fill: none;
  stroke: rgba(33,31,32,0.16);
  stroke-width: 0.45;
  pointer-events: none;
}
.areas-map__state {
  fill: none;
  stroke: var(--ink);
  stroke-width: 1;
  stroke-linejoin: round;
  pointer-events: none;
}

.areas-pin { cursor: pointer; }
.areas-pin circle {
  fill: var(--ink);
  stroke: #fff;
  stroke-width: 2;
  transition: fill .25s ease;
}
.areas-pin text {
  fill: #fff;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  pointer-events: none;
}
.areas-pin.is-active circle { fill: var(--red); }

.areas-map__legend {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  font-size: 12.5px;
  color: var(--ink-soft);
}
.areas-map__legend li { display: flex; align-items: center; gap: 8px; }
.areas-map__swatch {
  width: 14px;
  height: 14px;
  background: var(--fill);
  border: 1px solid rgba(33,31,32,0.25);
}
.areas-map__swatch--on {
  background: var(--area-fill);
  border-color: var(--area-line);
}

@media (max-width: 800px) {
  .areas-panel__body { grid-template-columns: 1fr; }
  .areas-map {
    border-left: none;
    border-top: 1px solid rgba(33,31,32,0.12);
  }
}
@media (max-width: 560px) {
  .areas-item { grid-template-columns: 28px 1fr; gap: 14px; }
  .areas-item__num { width: 28px; height: 28px; }
  .areas-copy__footer .btn { width: 100%; justify-content: center; }
}

/* ===== 08. FAQ ===== */
.faq-panel {
  border: 1px solid rgba(33,31,32,0.12);
  background: #fff;
  box-shadow: 0 30px 70px -32px rgba(33,31,32,0.16);
}

.faq-panel__head {
  padding: clamp(24px, 3.4vw, 36px) clamp(24px, 5vw, 48px);
  border-bottom: 1px solid rgba(33,31,32,0.12);
}
.faq-panel__head .section__intro { margin-top: 10px; }

.faq-panel__body {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
}

/* -- Aside: reassurance + CTA, mirrors the how-block visual column -- */
.faq-aside {
  padding: clamp(28px, 4vw, 44px);
  border-right: 1px solid rgba(33,31,32,0.12);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.faq-aside__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: var(--fill);
  margin-bottom: 20px;
}
.faq-aside__icon svg { width: 26px; height: 26px; }

.faq-aside__top h3 {
  font-size: clamp(19px, 2vw, 22px);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.faq-aside__top p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 34ch;
}

.faq-aside__cta { align-self: flex-start; }

/* -- List: single-open accordion -- */
.faq-list {
  padding: clamp(10px, 2vw, 14px) clamp(24px, 5vw, 44px);
}

.faq-item {
  border-bottom: 1px solid rgba(33,31,32,0.12);
}
.faq-item:last-child { border-bottom: none; }

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: color .2s ease;
}
.faq-item__q:hover { color: var(--red); }

.faq-item__icon {
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--fill);
  transition: background .25s ease;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--ink);
  transition: transform .3s ease, background .25s ease;
}
.faq-item__icon::before { width: 10px; height: 1.6px; transform: translate(-50%, -50%); }
.faq-item__icon::after { width: 1.6px; height: 10px; transform: translate(-50%, -50%); }

.faq-item.is-open .faq-item__icon { background: rgba(232,50,61,0.12); }
.faq-item.is-open .faq-item__icon::before,
.faq-item.is-open .faq-item__icon::after { background: var(--red); }
.faq-item.is-open .faq-item__icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-item.is-open .faq-item__q { color: var(--red); }

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s cubic-bezier(.4,0,.2,1);
}
.faq-item.is-open .faq-item__answer { grid-template-rows: 1fr; }

.faq-item__answer-inner { overflow: hidden; }
.faq-item__answer p {
  padding-bottom: 20px;
  max-width: 62ch;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}

@media (max-width: 800px) {
  .faq-panel__body { grid-template-columns: 1fr; }
  .faq-aside {
    border-right: none;
    border-bottom: 1px solid rgba(33,31,32,0.12);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .faq-aside__top p { max-width: 40ch; }
  .faq-aside__cta { flex-shrink: 0; }
}

@media (max-width: 560px) {
  .faq-aside { flex-direction: column; align-items: flex-start; }
  .faq-aside__cta { width: 100%; justify-content: center; }
  .faq-list { padding: 4px clamp(20px, 5vw, 28px); }
}

/* ===== 09. Service Request Form (Forminit) ===== */
.request-panel {
  border: 1px solid rgba(33,31,32,0.12);
  background: #fff;
  box-shadow: 0 30px 70px -32px rgba(33,31,32,0.16);
}

.request-panel__head {
  padding: clamp(24px, 3.4vw, 36px) clamp(24px, 5vw, 48px);
  border-bottom: 1px solid rgba(33,31,32,0.12);
}
.request-panel__head .section__intro { margin-top: 10px; }

.request-panel__body {
  padding: clamp(20px, 3.2vw, 36px) clamp(24px, 5vw, 48px) clamp(24px, 3vw, 36px);
}

/* -- Fieldsets: grouped, no divider/label — kept compact -- */
.request-fieldset {
  border: none;
  padding: clamp(12px, 1.6vw, 16px) 0;
}
.request-fieldset:first-child { padding-top: 0; }
.request-fieldset:last-of-type { padding-bottom: 0; }

.request-grid {
  display: grid;
  gap: 14px 18px;
}
.request-grid--2 { grid-template-columns: 1fr 1fr; }

/* -- Fields -- */
.field-group { display: flex; flex-direction: column; }
.field-group--full { grid-column: 1 / -1; }

.field-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.field-optional {
  font-weight: 500;
  color: var(--ink-soft);
  text-transform: none;
  letter-spacing: normal;
  font-size: 12.5px;
}

.field-group input[type="text"],
.field-group input[type="email"],
.field-group input[type="tel"],
.field-group select,
.field-group textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(33,31,32,0.16);
  border-radius: 10px;
  padding: 11px 16px;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.field-group textarea { resize: vertical; min-height: 100px; line-height: 1.55; }

.field-group input::placeholder,
.field-group textarea::placeholder { color: rgba(33,31,32,0.38); }

.field-group input:hover,
.field-group select:hover,
.field-group textarea:hover { border-color: rgba(33,31,32,0.28); }

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  outline: none;
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(232,50,61,0.12);
}

.field-group select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B6866' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
}

/* Error state: red border only — the message itself surfaces via the Notyf toast on submit */
.field-group.has-error input,
.field-group.has-error select,
.field-group.has-error textarea {
  border-color: var(--red);
  background: rgba(232,50,61,0.03);
}

/* -- Photo upload dropzone -- */
.request-upload {
  border: 1.5px dashed rgba(33,31,32,0.22);
  border-radius: 14px;
  background: var(--paper);
  padding: clamp(18px, 2.6vw, 26px) 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.request-upload:hover,
.request-upload:focus-visible { border-color: rgba(232,50,61,0.4); background: rgba(232,50,61,0.03); }
.request-upload.is-dragover { border-color: var(--red); background: rgba(232,50,61,0.06); }

.request-upload__inner { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.request-upload__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--fill);
}
.request-upload__icon svg { width: 20px; height: 20px; }
.request-upload__text { font-size: 15px; color: var(--ink); }
.request-upload__text strong { color: var(--red); font-weight: 700; }
.request-upload__hint { font-size: 12.5px; color: var(--ink-soft); }

.request-upload__list {
  list-style: none;
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.request-upload__item {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 8px 10px 8px 8px;
  border: 1px solid rgba(33,31,32,0.12);
  border-radius: 10px;
  background: #fff;
}
.request-upload__thumb {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--fill);
}
.request-upload__meta {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.request-upload__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}
.request-upload__size { font-size: 11.5px; color: var(--ink-soft); }
.request-upload__remove {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--fill);
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, color .2s ease;
}
.request-upload__remove:hover { background: rgba(232,50,61,0.14); color: var(--red); }

/* -- Honeypot: kept in the DOM and tabbable-safe, but invisible to people -- */
.request-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* -- Submit -- */
.request-form__footer {
  margin-top: clamp(14px, 2vw, 20px);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.request-submit { border: none; }
.request-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.request-form__note { font-size: 13px; color: var(--ink-soft); }

/* -- Confirmation state (swaps in for the form on success) -- */
.request-confirmation {
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 34px) 0 clamp(6px, 2vw, 14px);
}
.request-confirmation__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(232,50,61,0.1);
  margin-bottom: 20px;
}
.request-confirmation__icon svg { width: 30px; height: 30px; }
.request-confirmation h3 {
  font-size: clamp(19px, 2vw, 22px);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.request-confirmation p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

@media (max-width: 700px) {
  .request-grid--2 { grid-template-columns: 1fr; }
  .field-group--full { grid-column: auto; }
}

@media (max-width: 480px) {
  .request-form__footer { flex-direction: column; align-items: stretch; }
  .request-submit { width: 100%; justify-content: center; }
  .request-form__note { text-align: center; }
}

/* ===== 10. Footer ===== */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: var(--paper);
  isolation: isolate;
  margin-top: clamp(24px, 3.5vw, 44px);
}

/* Oversized, near-invisible wordmark tucked behind the content — a quiet
   signature rather than a loud graphic, and purely decorative. */
.site-footer__watermark {
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: -0.34em;
  transform: translateX(-50%);
  font-size: clamp(90px, 15vw, 220px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: rgba(250,249,249,0.035);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* -- Top: brand + three link columns -- */
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(28px, 4vw, 40px) 0 clamp(20px, 2.6vw, 26px);
}

.footer-brand__logo {
  display: inline-block;
  margin-bottom: 12px;
}
.footer-brand__logo img {
  height: 52px;
  width: auto;
  display: block;
  /* filter: brightness(0) invert(1); */
}
.footer-brand__statement {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(250,249,249,0.6);
  max-width: 36ch;
}

.footer-col__title {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(250,249,249,0.4);
  margin-bottom: 12px;
}

.footer-email {
  position: relative;
  display: inline-block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 14px;
}
.footer-email::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width .25s ease;
}
.footer-email:hover { color: var(--red); }
.footer-email:hover::after { width: 100%; }

.footer-addr { margin-bottom: 10px; }
.footer-addr:last-child { margin-bottom: 0; }
.footer-addr__label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(250,249,249,0.38);
  margin-bottom: 3px;
}
.footer-addr address {
  font-style: normal;
  font-size: 13.5px;
  line-height: 1.4;
  color: rgba(250,249,249,0.78);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer-nav a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: rgba(250,249,249,0.78);
  transition: color .2s ease;
}
.footer-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width .25s ease;
}
.footer-nav a:hover { color: var(--paper); }
.footer-nav a:hover::after { width: 100%; }
.footer-nav__cta { color: var(--red); font-weight: 600; }
.footer-nav__cta:hover { color: #ff5b64; }

/* -- Bottom bar -- */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: clamp(14px, 2vw, 18px) 0 clamp(16px, 2vw, 20px);
  border-top: 1px solid rgba(250,249,249,0.12);
}
.footer-copyright {
  font-size: 12.5px;
  color: rgba(250,249,249,0.45);
}
.footer-top-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(250,249,249,0.75);
  transition: color .2s ease;
}
.footer-top-link svg { width: 13px; height: 13px; transition: transform .25s ease; }
.footer-top-link:hover { color: var(--paper); }
.footer-top-link:hover svg { transform: translateY(-3px); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .site-footer__watermark { display: none; }
}

@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
}
