/* =========================================================
   Villégia — Conciergerie Airbnb haut de gamme
   Palette premium real estate · Fraunces + Inter
   ========================================================= */

:root {
  --bg: #FFFFFF;
  --bg-soft: #F8F7F4;
  --primary: #0F2B4A;
  --primary-hover: #143863;
  --accent: #C9A57B;
  --accent-hover: #b99269;
  --text: #1A1A1A;
  --text-muted: #6B7280;
  --border: #E8E4DD;
  --shadow-sm: 0 1px 2px rgba(15, 43, 74, 0.04), 0 1px 3px rgba(15, 43, 74, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 43, 74, 0.06), 0 2px 6px rgba(15, 43, 74, 0.04);
  --shadow-lg: 0 24px 60px -20px rgba(15, 43, 74, 0.25), 0 10px 30px -15px rgba(15, 43, 74, 0.15);

  --radius: 6px;
  --radius-lg: 12px;
  --radius-xl: 18px;

  --serif: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --container: 1200px;
  --container-narrow: 820px;
}

/* ================ Reset ================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }
input, select, textarea { font: inherit; color: inherit; }

/* ================ Container ================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: var(--container-narrow); }

/* ================ Typography helpers ================ */
.display {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(1.9rem, 4.2vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--primary);
  margin-bottom: 1.25rem;
  text-wrap: balance;
}
.h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--primary);
}
.h2--light { color: #fff; }
h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.015em;
  color: var(--primary);
}
.lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 48ch;
  margin-bottom: 2rem;
}
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* ================ Buttons ================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--border);
}
.btn--ghost:hover {
  background: var(--bg-soft);
  border-color: var(--primary);
}
.btn--gold {
  background: var(--accent);
  color: var(--primary);
}
.btn--gold:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px rgba(201, 165, 123, 0.5);
}
.btn--sm { padding: 0.65rem 1.2rem; font-size: 0.875rem; }
.btn--block { width: 100%; }

/* ================ Offer Bar ================ */
.offer-bar {
  position: sticky; top: 0;
  z-index: 200;
  background: #0F2B4A;
}
.offer-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem var(--container-pad, 24px);
  max-width: 1440px;
  margin-inline: auto;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  min-height: 2.25rem;
  overflow: hidden;
}
.offer-bar__badge {
  flex-shrink: 0;
  padding: 0.1rem 0.55rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0F2B4A;
  background: #C9A57B;
  border-radius: 9999px;
}
.offer-bar__text strong { color: #C9A57B; }
.offer-bar__cta {
  flex-shrink: 0;
  font-weight: 700;
  color: #FFFFFF;
}
.offer-bar__arrow {
  display: inline-block;
  transition: transform 150ms ease;
}
.offer-bar__inner:hover .offer-bar__arrow { transform: translateX(3px); }
@media (max-width: 48rem) {
  .offer-bar__text { display: none; }
  .offer-bar__inner { gap: 0.75rem; }
}

/* ================ Header ================ */
.header {
  position: sticky;
  top: 2.25rem;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 rgba(15, 43, 74, 0.02);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 2rem;
}
.brand { display: flex; align-items: baseline; gap: 0.5rem; }
.brand__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.55rem;
  color: var(--primary);
  letter-spacing: -0.01em;
}
.brand__sub {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.nav {
  display: flex;
  gap: 2.2rem;
  font-size: 0.92rem;
  font-weight: 500;
}
.nav a {
  color: var(--text);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.2s ease;
}
.nav a:hover { color: var(--primary); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav a:hover::after { transform: scaleX(1); }

.burger {
  display: none;
  width: 40px; height: 40px;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--primary);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 24px 1.75rem;
  background: #fff;
  border-top: 1px solid var(--border);
}
.mobile-menu[hidden] { display: none !important; }
.mobile-menu a { font-weight: 500; padding: 0.4rem 0; }
.mobile-menu .btn { margin-top: 0.5rem; }
@media (max-width: 768px) {
  .mobile-menu:not([hidden]) { display: flex; }
}

/* ================ Hero ================ */
.hero {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3rem, 8vw, 6rem);
  background:
    radial-gradient(1000px 600px at 85% -10%, rgba(201, 165, 123, 0.10), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.hero__ctas {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}
.hero__trust li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.hero__trust svg { color: var(--accent); }

.hero__visual {
  position: relative;
}
.hero__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  background-image: url("images/hero.webp");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.hero__card {
  position: absolute;
  left: -24px;
  bottom: 40px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  min-width: 220px;
}
.hero__card-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.hero__card-value {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hero__card-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ================ Sections ================ */
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.section--muted { background: var(--bg-soft); }
.section__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}
.section__sub {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ================ Grid helpers ================ */
.grid {
  display: grid;
  gap: 2rem;
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ================ Value cards ================ */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 165, 123, 0.4);
}
.card__icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 165, 123, 0.12);
  color: var(--accent);
  margin-bottom: 1.4rem;
}
.card h3 { margin-bottom: 0.6rem; }
.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ================ Services detailed ================ */
.service {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}
.service:hover { box-shadow: var(--shadow-md); }
.service__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.service h3 { margin-bottom: 0.5rem; }
.service > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}
.ticks {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.ticks li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.5;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 8px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg) translateY(-2px);
}

/* ================ Steps ================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 28px; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: left;
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--accent);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
}
.step h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.step p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ================ Compare ================ */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 980px;
  margin: 0 auto;
}
.compare__col {
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
  border: 1px solid var(--border);
}
.compare__col--plain {
  background: #fff;
}
.compare__col--hero {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.compare__col--hero::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 165, 123, 0.2), transparent 70%);
}
.compare__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
}
.compare__col--plain .compare__label { color: var(--text-muted); }
.compare__col--hero .compare__label { color: var(--accent); }
.compare__col ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
.compare__col li {
  padding-left: 2rem;
  position: relative;
  font-size: 1rem;
}
.compare__col--plain li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 14px; height: 2px;
  background: var(--text-muted);
  opacity: 0.5;
}
.compare__col--hero li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.35em;
  width: 16px; height: 10px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

/* ================ Stats ================ */
.stats {
  background: var(--primary);
  color: #fff;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(201, 165, 123, 0.12), transparent 50%);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.stat { text-align: center; }
.stat__value {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.stat__value span {
  font-size: 0.55em;
  opacity: 0.75;
}
.stat__label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.02em;
}

/* ================ Properties ================ */
.property {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.property:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.property__img {
  aspect-ratio: 4 / 3;
  position: relative;
  background-size: cover;
  background-position: center;
}
.property__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15, 43, 74, 0.35) 100%);
}
.property__img--1 {
  background-image: url("images/bien-1.webp");
}
.property__img--2 {
  background-image: url("images/bien-2.webp");
}
.property__img--3 {
  background-image: url("images/bien-3.webp");
}
.property__img--4 {
  background-image: url("images/bien-4.webp");
}
.property__tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: #fff;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.property__body {
  padding: 1.5rem;
}
.property__body h3 {
  font-size: 1.08rem;
  margin-bottom: 0.4rem;
}
.property__brief {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
}
.property__stats {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 500;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

/* ================ Testimonials ================ */
.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.stars {
  display: flex;
  gap: 3px;
}
.stars svg {
  width: 18px; height: 18px;
  fill: var(--accent);
}
.testimonial blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text);
  margin: 0;
  flex-grow: 1;
}
.testimonial figcaption {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* ================ FAQ ================ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq__item[open] {
  border-color: rgba(201, 165, 123, 0.45);
  box-shadow: var(--shadow-sm);
}
.faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.6rem;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon {
  flex-shrink: 0;
  width: 18px; height: 18px;
  position: relative;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--accent);
  transition: transform 0.25s ease;
}
.faq__icon::before {
  top: 50%; left: 0;
  width: 100%; height: 2px;
  transform: translateY(-50%);
}
.faq__icon::after {
  top: 0; left: 50%;
  width: 2px; height: 100%;
  transform: translateX(-50%);
}
.faq__item[open] .faq__icon::after { transform: translateX(-50%) scaleY(0); }
.faq__body {
  padding: 0 1.6rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ================ CTA section + Form ================ */
.cta {
  background: var(--primary);
  color: #fff;
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 165, 123, 0.15), transparent 60%);
}
.cta::after {
  content: "";
  position: absolute;
  bottom: -150px; left: -150px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 165, 123, 0.08), transparent 60%);
}
.cta__head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3rem;
  position: relative;
}
.cta__head p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.08rem;
  margin-top: 1rem;
}

.form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form label span {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}
.form input,
.form select,
.form textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: #fff;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form input::placeholder,
.form textarea::placeholder { color: rgba(255, 255, 255, 0.4); }
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.12);
}
.form select option { color: var(--text); }
.form textarea { resize: vertical; min-height: 110px; }
.form .btn { margin-top: 0.5rem; }
.form__trust {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}
.form__success {
  display: none;
  background: rgba(201, 165, 123, 0.15);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 500;
  font-size: 0.95rem;
}
.form__success:not([hidden]) { display: block; }

/* ================ Footer ================ */
.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 4rem;
  font-size: 0.92rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.brand--footer { margin-bottom: 1.2rem; }
.brand--footer .brand__name { color: #fff; }
.footer__tag {
  color: rgba(255, 255, 255, 0.6);
  max-width: 40ch;
  line-height: 1.6;
}
.footer h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer__list a { transition: color 0.2s ease; }
.footer__list a:hover { color: var(--accent); }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__bottom a { transition: color 0.2s ease; }
.footer__bottom a:hover { color: var(--accent); }

/* ================ Reveal animation ================ */
.reveal {
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================ Responsive ================ */
@media (max-width: 1024px) {
  .hero__grid { gap: 3rem; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav, .header__cta { display: none; }
  .burger { display: flex; }

  .hero { padding: 2.5rem 0 3.5rem; }
  .hero__grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero__visual { order: -1; max-width: 440px; margin: 0 auto; width: 100%; }
  .hero__image { aspect-ratio: 4 / 3.2; }
  .hero__card { left: 50%; bottom: -28px; transform: translateX(-50%); min-width: 200px; }
  .hero__trust { gap: 0.9rem 1.2rem; }

  .grid--2, .grid--3 { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; gap: 1.25rem; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }

  .card, .service, .testimonial { padding: 1.8rem; }
  .compare__col { padding: 2rem 1.6rem; }

  .form { padding: 1.75rem; }
  .form__row { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 2.25rem; padding-bottom: 2.5rem; }
  .footer__bottom-inner { flex-direction: column; text-align: center; gap: 0.5rem; }

  .hero__ctas .btn { flex: 1 1 auto; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .grid--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr; gap: 2rem; }
  .faq__item summary { padding: 1.1rem 1.25rem; font-size: 1rem; }
  .faq__body { padding: 0 1.25rem 1.25rem; }
}

/* ================ Reduced motion ================ */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
