/* Complice Digital — design tokens */
:root {
  --teal: #1F5C66;
  --teal-dark: #134048;
  --teal-10: rgba(31, 92, 102, 0.10);
  --teal-20: rgba(31, 92, 102, 0.20);

  --accent: #E8843A;
  --accent-dark: #C96B23;
  --accent-15: rgba(232, 132, 58, 0.15);

  --cream: #FAF6EE;
  --cream-warm: #F4EEDF;
  --paper: #FFFFFF;

  --ink: #14333A;
  --ink-80: #2B4A52;
  --ink-60: #5A7178;
  --ink-30: #B0BEC2;
  --ink-20: #CCD6D9;
  --ink-10: #E5ECEE;

  --shadow-sm: 0 2px 8px rgba(20, 51, 58, 0.06);
  --shadow-md: 0 8px 24px rgba(20, 51, 58, 0.08);
  --shadow-lg: 0 24px 48px rgba(20, 51, 58, 0.10);

  --display: 'Bricolage Grotesque', 'Manrope', system-ui, sans-serif;
  --body: 'Manrope', system-ui, -apple-system, sans-serif;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --density-y: 96px;
  --btn-radius: 12px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
}

/* ——— Buttons ———————————————————————— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--btn-radius);
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--full { width: 100%; justify-content: center; }
.btn--solid {
  background: var(--accent);
  color: white;
  box-shadow: 0 6px 14px rgba(232, 132, 58, 0.28);
}
.btn--solid:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal-20);
}
.btn--ghost:hover { background: var(--teal-10); border-color: var(--teal); }

/* ——— Nav ———————————————————————— */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 238, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav--scrolled {
  border-bottom-color: var(--ink-10);
  background: rgba(250, 246, 238, 0.95);
}
.nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 20px;
  color: var(--teal);
  letter-spacing: -0.01em;
}
.brand img { width: 53px; height: 53px; }
.brand strong { font-weight: 700; }
.nav__links {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
  font-size: 19px;
  font-weight: 500;
  color: var(--ink-80);
}
.nav__links a:hover { color: var(--teal); }
.nav__cta { font-size: 14px; padding: 10px 16px; }
.nav__burger {
  display: none;
  background: none;
  border: 0;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  padding: 0;
}
.nav__burger span {
  width: 22px;
  height: 2px;
  background: var(--teal);
  margin-left: auto;
  margin-right: auto;
}
.nav__mobile {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 32px 28px;
  border-top: 1px solid var(--ink-10);
  background: var(--cream);
}
.nav__mobile a:not(.btn) { font-weight: 500; color: var(--ink-80); }

@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; margin-left: auto; }
  .nav__inner { padding: 12px 20px; gap: 16px; }
  .nav__mobile { padding: 16px 20px 24px; }
}

/* ——— Hero ———————————————————————— */
.hero {
  position: relative;
  padding: 56px 0 0;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__photo {
  position: absolute;
  right: -2%;
  top: 40px;
  width: 52%;
  height: 78%;
  overflow: hidden;
}
.hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, rgba(250, 246, 238, 0) 20%);
  pointer-events: none;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__shapes { position: absolute; inset: 0; }
.hero__shapes .shape { position: absolute; border-radius: 50%; filter: blur(2px); }
.shape--teal { width: 360px; height: 360px; background: var(--teal-10); top: 60px; right: 8%; }
.shape--orange { width: 240px; height: 240px; background: var(--accent-15); top: 220px; right: 24%; }
.shape--cream { width: 480px; height: 480px; background: var(--cream-warm); bottom: -120px; right: -80px; opacity: 0.5; }
.hero__plain { position: absolute; inset: 0; background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%); }

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 64px 32px 96px;
  max-width: 720px;
  margin-left: max(32px, calc((100vw - 1240px) / 2 + 32px));
}
@media (max-width: 1240px) {
  .hero__inner { margin-left: 32px; }
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  border: 1px solid var(--ink-10);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-80);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.hero__badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2EAF4A;
  box-shadow: 0 0 0 4px rgba(46, 175, 74, 0.18);
}
.hero__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--teal);
  margin: 0 0 24px;
  text-wrap: balance;
}
.hero__title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}
.hero__sub {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.55;
  color: var(--ink-80);
  max-width: 560px;
  margin: 0 0 36px;
  text-wrap: pretty;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero__assurances {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--ink-80);
}
.hero__assurances li {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero__assurances svg { color: var(--accent); }

.hero__strip {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink-10);
  border-top: 1px solid var(--ink-10);
  border-bottom: 1px solid var(--ink-10);
}
.strip__item {
  background: var(--cream);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-80);
}
.strip__item svg { color: var(--accent); flex-shrink: 0; }
@media (max-width: 720px) {
  .hero__strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .hero__photo, .hero__shapes { display: none; }
  .hero__inner { padding: 40px 20px 64px; margin-left: 0; }
  .hero__title { font-size: clamp(32px, 9vw, 48px); }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .strip__item { padding: 16px 18px; font-size: 13px; }
}

/* ——— Section base ———————————————————————— */
.section {
  padding: var(--density-y) 0;
}
.section__head {
  max-width: 720px;
  margin-bottom: 56px;
}
.section__head--row {
  max-width: none;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: end;
}
@media (max-width: 880px) {
  .section__head--row { grid-template-columns: 1fr; }
}
.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.kicker--light { color: rgba(255,255,255,0.85); }
.section__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--teal);
  margin: 0 0 20px;
  text-wrap: balance;
}
.section__title--sm { font-size: clamp(28px, 3vw, 40px); }
.section__title--light { color: var(--cream); }
.section__lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-80);
  margin: 0;
  text-wrap: pretty;
}

/* ——— Services ———————————————————————— */
.services { background: var(--paper); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink-10);
  border: 1px solid var(--ink-10);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 980px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .services__grid { grid-template-columns: 1fr; } }
.service {
  background: var(--paper);
  padding: 32px 28px;
  transition: background .2s ease;
}
.service:hover { background: var(--cream); }
.service__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--accent-15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 19px;
  margin: 0 0 8px;
  color: var(--teal);
  letter-spacing: -0.01em;
}
.service p { margin: 0; font-size: 14.5px; color: var(--ink-80); line-height: 1.55; }

/* ——— Zones ———————————————————————— */
.zones { background: var(--cream); }
.zones__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 980px) { .zones__grid { grid-template-columns: 1fr; gap: 40px; } }
.zones__map {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 6px;
  border: 1px solid var(--ink-10);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 96px;
  overflow: hidden;
}
.zones__map img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-md);
}
@media (max-width: 980px) {
  .zones__map { position: static; }
}
.zones__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.zone {
  background: var(--paper);
  border: 1px solid var(--ink-10);
  border-radius: var(--r-md);
  padding: 24px 28px;
}
.zone__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
}
.zone__num {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.zone h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  margin: 0;
  color: var(--teal);
  letter-spacing: -0.01em;
}
.zone ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 20px;
  font-size: 14px;
  color: var(--ink-80);
}
.zone li {
  display: flex;
  align-items: center;
  gap: 6px;
}
.zone li svg { color: var(--ink-30); flex-shrink: 0; }

/* ——— Process ———————————————————————— */
.process { background: var(--teal); }
.process .kicker { color: var(--accent); }
.process .section__title { color: var(--cream); }
.process__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
@media (max-width: 880px) { .process__steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .process__steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  padding: 28px 24px;
  border: 1px solid var(--ink-10);
  border-radius: var(--r-md);
  background: var(--cream);
}
.step__num {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  display: block;
}
.step h3 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  color: var(--teal);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.step p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-80);
  line-height: 1.55;
}

/* ——— Pricing ———————————————————————— */
.pricing { background: var(--cream); }

.pricing__base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  background: var(--paper);
  border: 1px solid var(--ink-10);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: 32px 40px;
  margin-bottom: 48px;
}
.pricing__baseMain { flex: 1; min-width: 260px; }
.pricing__baseAmount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 6px 0 10px;
  flex-wrap: wrap;
}
.pricing__baseUnit {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-60);
}
.pricing__baseDesc {
  font-size: 15px;
  color: var(--ink-80);
  line-height: 1.55;
  margin: 0;
  max-width: 56ch;
}
.pricing__baseCta { flex-shrink: 0; }
@media (max-width: 720px) {
  .pricing__base { padding: 28px 24px; }
  .pricing__baseCta { width: 100%; justify-content: center; }
}

.pricing__packsHead {
  text-align: center;
  margin-bottom: 28px;
}
.pricing__packsHead p {
  font-size: 15px;
  color: var(--ink-60);
  margin: 8px 0 0;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .pricing__grid { grid-template-columns: 1fr; } }
.price {
  background: var(--paper);
  border: 1px solid var(--ink-10);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price--featured {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--cream);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.price--featured .price__label,
.price--featured .price__currency,
.price--featured .price__num,
.price--featured .price__unit,
.price--featured .price__desc { color: var(--cream); }
.price--featured .price__features li svg { color: var(--accent); }
.price--featured .price__features li { color: rgba(250, 246, 238, 0.92); }
.price__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.price__head { margin-bottom: 24px; }
.price__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.price__hours {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.price--featured .price__hours { color: var(--cream); }
.price__amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.price__currency {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink-60);
}
.price__num {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.03em;
}
.price__free {
  font-family: var(--display);
  font-size: 44px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: -0.02em;
}
.price__unit {
  font-size: 14px;
  color: var(--ink-60);
  font-weight: 500;
}
.price__desc {
  font-size: 14.5px;
  color: var(--ink-80);
  line-height: 1.55;
  margin: 0 0 24px;
}
.price__features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.price__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-80);
}
.price__features li svg { color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.pricing__note {
  margin: 32px auto 0;
  text-align: center;
  font-size: 14px;
  color: var(--ink-60);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ——— About ———————————————————————— */
.about { background: var(--paper); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) { .about__grid { grid-template-columns: 1fr; gap: 40px; } }
.about__photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  background:
    repeating-linear-gradient(135deg, rgba(31,92,102,0.06) 0 12px, transparent 12px 24px),
    linear-gradient(160deg, var(--cream-warm) 0%, #DCC9A8 100%);
  overflow: hidden;
}
.about__photoInner {
  position: absolute;
  inset: 16px;
  border: 1.5px dashed rgba(31,92,102,0.3);
  border-radius: calc(var(--r-lg) - 8px);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.about__photoInner span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.about__sticker {
  position: absolute;
  bottom: 24px;
  right: -16px;
  background: var(--accent);
  color: white;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
  transform: rotate(-3deg);
}
.about__copy p {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-80);
  margin: 0 0 16px;
}
.about__copy strong { color: var(--teal); font-weight: 600; }
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
  padding: 28px 0;
  border-top: 1px solid var(--ink-10);
  border-bottom: 1px solid var(--ink-10);
}
.stat__num {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
  display: block;
  line-height: 1;
}
.stat__num small { font-size: 18px; color: var(--ink-60); }
.stat__label {
  font-size: 13px;
  color: var(--ink-60);
  margin-top: 6px;
  display: block;
}

/* ——— Testimonials ———————————————————————— */
.testimonials { background: var(--cream); }
.testi__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 720px) {
  .testi__grid {
    grid-template-columns: none;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    margin: 0 -20px;
    padding: 4px 20px;
  }
  .testi__grid::-webkit-scrollbar { display: none; }
  .testi__grid .testi {
    flex: 0 0 86%;
    scroll-snap-align: center;
  }
}
.testi__dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
@media (max-width: 720px) { .testi__dots { display: flex; } }
.testi__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: var(--ink-20);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.testi__dot.is-active {
  background: var(--accent);
  transform: scale(1.25);
}
.testi {
  background: var(--paper);
  border: 1px solid var(--ink-10);
  border-radius: var(--r-md);
  padding: 28px 32px;
  margin: 0;
}
.testi__stars {
  display: flex;
  gap: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}
.testi blockquote {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 20px;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}
.testi figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 14px;
}
.testi figcaption strong { color: var(--teal); font-weight: 600; }
.testi figcaption span {
  color: var(--ink-60);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ——— FAQ ———————————————————————— */
.faq { background: var(--paper); }
.faq__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.faq__item {
  border-bottom: 1px solid var(--ink-10);
}
.faq__item:first-child { border-top: 1px solid var(--ink-10); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: -0.01em;
  font-feature-settings: "ss01";
}
.faq__q svg { color: var(--accent); flex-shrink: 0; transition: transform .2s ease; }
.faq__a {
  padding: 0 0 24px;
  font-size: 16px;
  color: var(--ink-80);
  line-height: 1.6;
  max-width: 720px;
}

/* ——— Contact ———————————————————————— */
.contact {
  background: var(--teal);
  color: var(--cream);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 880px) { .contact__grid { grid-template-columns: 1fr; gap: 48px; } }
.contact__lede {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(250, 246, 238, 0.85);
  margin: 0 0 36px;
  max-width: 480px;
}
.contact__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(250, 246, 238, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact__label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.6);
  display: block;
  margin-bottom: 2px;
}
.contact__list a, .contact__list span:not(.contact__label):not(.contact__icon) {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.contact__list a:hover { color: var(--accent); }

.contact__form {
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contact__form h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  color: var(--teal);
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; gap: 0; } }
.field-row .field { margin-bottom: 18px; }
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-80);
  letter-spacing: 0.01em;
}
.field input, .field select, .field textarea {
  font-family: var(--body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid var(--ink-20);
  border-radius: var(--r-sm);
  background: var(--paper);
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
  resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-15);
}
.form__note {
  font-size: 12px;
  color: var(--ink-60);
  margin: 12px 0 0;
  text-align: center;
}
.contact__sent {
  text-align: center;
  padding: 32px 16px;
}
.contact__sentIcon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.contact__sent h3 { font-size: 22px; }
.contact__sent p { color: var(--ink-80); }
.contact__sent a { color: var(--accent); font-weight: 600; }

/* ——— Footer ———————————————————————— */
.footer {
  background: var(--ink);
  color: rgba(250, 246, 238, 0.7);
  padding: 64px 0 24px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  margin-bottom: 48px;
}
@media (max-width: 880px) { .footer__inner { grid-template-columns: 1fr; gap: 40px; } }
.footer__brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.footer__brand img { width: 61px; height: 61px; }
.footer__brand strong {
  font-family: var(--display);
  font-size: 18px;
  color: var(--cream);
  display: block;
  margin-bottom: 4px;
}
.footer__brand span { font-size: 14px; line-height: 1.5; }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 540px) { .footer__cols { grid-template-columns: 1fr 1fr; } }
.footer__cols h4 {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.footer__cols a, .footer__cols span {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: rgba(250, 246, 238, 0.7);
}
.footer__cols a:hover { color: var(--accent); }
.footer__towns {
  padding-top: 36px;
  margin-bottom: 40px;
  border-top: 1px solid rgba(250, 246, 238, 0.1);
}
.footer__towns > h4 {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.5);
  margin: 0 0 20px;
}
.footer__townsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 720px) { .footer__townsGrid { grid-template-columns: 1fr; gap: 24px; } }
.footer__townsRegion {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}
.footer__townsCol ul {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: 16px;
}
.footer__townsCol li { margin-bottom: 8px; break-inside: avoid; }
.footer__townsCol a {
  font-size: 13.5px;
  color: rgba(250, 246, 238, 0.7);
  text-decoration: none;
}
.footer__townsCol a:hover { color: var(--accent); }

.footer__legal {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(250, 246, 238, 0.1);
  color: rgba(250, 246, 238, 0.5);
}
@media (max-width: 540px) { .footer__legal { flex-direction: column; gap: 8px; } }

/* ——— Sticky call ———————————————————————— */
.stickyCall {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 40;
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 8px 24px rgba(232, 132, 58, 0.4);
}
@media (max-width: 720px) {
  .stickyCall { display: inline-flex; }
}
