/* ============================================================
   AJRENTAL V3 — Design System
   Direction : notarial contemporain, premium accessible
   Palette : Ink/Gold/Bone/Ash/Paper
   Fonts  : Fraunces (display) + Manrope (body)
   ============================================================ */

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Unified with site.css: cool ink + snow + committed blue accent */
  --ink:      #14181a;
  --ink-90:   rgba(20, 24, 26, 0.92);
  --ink-70:   rgba(20, 24, 26, 0.70);
  --ink-40:   rgba(20, 24, 26, 0.40);
  --ink-12:   rgba(20, 24, 26, 0.12);
  --bone:     #eef1f4;   /* cool tint (was warm beige) */
  --bone-d:   #dfe5ec;
  --gold:     #1b4d78;   /* accent = trust blue (mapped from old gold) */
  --gold-s:   #5fa0d6;   /* accent on dark bg */
  --gold-deep:#1b4d78;   /* accent for small text on light (AA) */
  --gold-10:  rgba(27, 77, 120, 0.10);
  --ash:      #525a57;   /* cool secondary text */
  --paper:    #f5f6f5;   /* snow */
  --white:    #FFFFFF;
  --hairline: rgba(20, 24, 26, 0.12);
  --hairline-l: rgba(245, 246, 245, 0.16);

  --font-d: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-b: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;

  --container: 1240px;
  --gap-d: 48px;
  --gap-m: 24px;
  --section-d: 140px;
  --section-m: 80px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --radius: 12px;
  --shadow-card: 0 4px 24px -6px rgba(20, 24, 26, 0.12);
  --shadow-hover: 0 16px 48px -12px rgba(20, 24, 26, 0.22);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
  overscroll-behavior-x: none;
}
body {
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
::selection { background: var(--gold); color: var(--paper); }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius);
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 24px;
  background: var(--gold);
  color: var(--ink);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  border-radius: var(--radius);
  transition: top 0.2s ease;
}
.skip-link:focus { top: 8px; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap-m);
}
@media (min-width: 768px) {
  .container { padding: 0 var(--gap-d); }
}

.section {
  padding: var(--section-m) 0;
}
@media (min-width: 768px) {
  .section { padding: var(--section-d) 0; }
}

.section--bone   { background: var(--bone); }
.section--ink    { background: var(--ink); color: var(--paper); }
.section--paper  { background: var(--paper); }
.section--white  { background: var(--white); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow {
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  flex-shrink: 0;
}
.eyebrow--light { color: var(--gold-s); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: '';
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-d);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--ink);
}
.section--ink h1,
.section--ink h2,
.section--ink h3 { color: var(--paper); }

.display-1 {
  font-size: clamp(2.2rem, 5.5vw, 4.8rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.03em;
  overflow-wrap: break-word;
}
.display-2 {
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.025em;
  overflow-wrap: break-word;
}
.display-3 {
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
}

em.gold    { font-style: normal; font-weight: 700; color: var(--gold); }
em.gold-s  { font-style: normal; font-weight: 700; color: var(--gold-s); }

h1 em, h2 em, h3 em {
  font-style: normal;
  font-weight: 800;
  color: var(--gold);
}
.section--ink h1 em,
.section--ink h2 em,
.section--ink h3 em { color: var(--gold-s); }

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.6;
  color: var(--ash);
  max-width: 60ch;
}
.section--ink .lead { color: rgba(251,249,244,.72); }

.body-s {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ash);
}
.section--ink .body-s { color: rgba(251,249,244,.65); }

.meta-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash);
}

/* Prose styles (blog articles) */
.prose h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); margin: 2.5rem 0 1rem; }
.prose h3 { font-size: clamp(1.15rem, 1.8vw, 1.5rem); margin: 2rem 0 0.75rem; }
.prose p  { margin-bottom: 1.25rem; line-height: 1.75; }
.prose ul, .prose ol { margin: 1rem 0 1.25rem 1.5rem; }
.prose li { margin-bottom: 0.5rem; line-height: 1.7; }
.prose ul li::before { content: '—'; color: var(--gold); display: inline-block; width: 1.5rem; margin-left: -1.5rem; }
.prose strong { font-weight: 600; color: var(--ink); }
.prose a { color: var(--gold); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.prose a:hover { color: var(--ink); }
.prose blockquote {
  border-left: 2px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--bone);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.prose blockquote p { margin: 0; color: var(--ink); font-style: italic; }
.prose table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
.prose th { background: var(--ink); color: var(--paper); padding: 12px 16px; font-family: var(--font-b); font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-align: left; }
.prose td { padding: 12px 16px; border-bottom: 1px solid var(--hairline); font-size: 15px; }
.prose tr:last-child td { border-bottom: none; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 24px;
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  border-radius: 999px;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  line-height: 1.3;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .btn { padding: 16px 30px; }
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.25s var(--ease);
}
.btn:hover .arrow { transform: translateX(5px); }

.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -10px rgba(22,24,29,.45);
  background: #1e2129;
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-s);
  border-color: var(--gold-s);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -10px rgba(184,146,74,.5);
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(251,249,244,.45);
}
.btn-ghost:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.btn-ghost-ink {
  background: transparent;
  color: var(--ink);
  border-color: rgba(22,24,29,.35);
}
.btn-ghost-ink:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.btn-sm { padding: 10px 18px; font-size: 12px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(22, 24, 29, 0.45);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  transition: background 0.3s var(--ease), padding 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(22,24,29,.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  border-bottom-color: var(--hairline-l);
}
.nav--light {
  background: rgba(251,249,244,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--hairline);
}
.nav--light .nav__logo { color: var(--ink); }
.nav--light .nav__links a { color: var(--ink); opacity: 0.75; }
.nav--light .nav__links a:hover { color: var(--gold); opacity: 1; }
.nav--light .nav__cta { color: var(--ink); border-color: rgba(22,24,29,.35); }
.nav--light .nav__cta:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.nav--light .nav__burger span { background: var(--ink); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 400;
  color: var(--paper);
  letter-spacing: -0.01em;
  line-height: 1;
  flex-shrink: 0;
}
.nav__logo em { font-style: italic; color: var(--gold); font-weight: 300; }

.nav__links {
  display: none;
  gap: 32px;
}
@media (min-width: 1024px) { .nav__links { display: flex; align-items: center; } }
.nav__links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--paper);
  opacity: 0.80;
  transition: opacity 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.nav__links a:hover { opacity: 1; color: var(--gold-s); }

.nav__cta {
  display: none;
  padding: 11px 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
  border: 1px solid rgba(251,249,244,.45);
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.nav__cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
@media (min-width: 768px) { .nav__cta { display: inline-flex; align-items: center; } }

.nav__burger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(22,24,29,.55);
  border: 1px solid rgba(251,249,244,.2);
  border-radius: var(--radius);
  transition: all 0.2s ease;
  position: relative;
  z-index: 210;
}
.nav__burger:hover { background: rgba(22,24,29,.85); border-color: var(--gold); }
.nav__burger.is-open { background: var(--ink); border-color: var(--gold); }
.nav__burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--paper);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (min-width: 1024px) { .nav__burger { display: none; } }

/* Mobile Menu */
.nav__mobile {
  position: fixed;
  inset: 0;
  background: #0E1015;
  z-index: 200;
  padding: 84px 28px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  visibility: hidden;
}
.nav__mobile.is-open { transform: translateX(0); visibility: visible; }
.nav__mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(251,249,244,.2);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nav__mobile-close:hover { border-color: var(--gold); background: rgba(251,249,244,.06); }
.nav__mobile-close::before,
.nav__mobile-close::after {
  content: '';
  position: absolute;
  width: 17px;
  height: 1.5px;
  background: var(--paper);
}
.nav__mobile-close::before { transform: rotate(45deg); }
.nav__mobile-close::after { transform: rotate(-45deg); }
.nav__mobile ul { display: flex; flex-direction: column; gap: 0; }
.nav__mobile ul a {
  font-family: var(--font-b);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--paper);
  opacity: 0.9;
  display: block;
  padding: 17px 0;
  border-bottom: 1px solid rgba(251,249,244,.1);
  transition: opacity 0.2s ease, color 0.2s ease;
}
.nav__mobile ul a:hover { opacity: 1; color: var(--gold-s); }
.nav__mobile-foot {
  font-size: 13px;
  color: rgba(251,249,244,.5);
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nav__mobile-foot a { font-family: var(--font-b); font-size: 14px; font-weight: 400; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--ash);
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 0;
}
.breadcrumb a { transition: color 0.2s ease; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb__sep { opacity: 0.45; user-select: none; }
.breadcrumb [aria-current="page"] { color: var(--ink); font-weight: 500; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  isolation: isolate;
}
.hero--short { min-height: 60vh; }
.hero--medium { min-height: 75vh; }

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22,24,29,.38) 0%, rgba(22,24,29,.52) 55%, rgba(22,24,29,.78) 100%),
    linear-gradient(90deg, rgba(22,24,29,.52) 0%, rgba(22,24,29,.15) 65%);
}

.hero__inner {
  width: 100%;
  padding: 120px 0 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero__inner--center {
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) { .hero__inner { padding: 140px 0 100px; } }

.hero__eyebrow { color: var(--gold-s); margin-bottom: 28px; }
.hero__eyebrow::before, .hero__eyebrow::after { background: var(--gold-s); }

.hero__title {
  color: var(--paper);
  max-width: 18ch;
}
.hero__inner--center .hero__title { margin: 0 auto; }
.hero__title em { color: var(--gold-s); font-style: italic; }

.hero__sub {
  margin-top: 28px;
  max-width: 50ch;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.6;
  color: rgba(251,249,244,.82);
  font-weight: 300;
}

.hero__ctas {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__inner--center .hero__ctas { justify-content: center; }
@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
}

.hero__stats {
  margin-top: 64px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.hero__stat-num {
  font-family: var(--font-d);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--gold-s);
  line-height: 1;
  display: block;
}
.hero__stat-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(251,249,244,.6);
  display: block;
  margin-top: 6px;
}

.hero__meta {
  position: absolute;
  bottom: 28px;
  left: 0; right: 0;
  display: none;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251,249,244,.45);
  pointer-events: none;
}
@media (min-width: 768px) { .hero__meta { display: flex; bottom: 36px; } }
.hero__meta-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, transparent, var(--gold-s));
}

/* Hero inner-page (no image) */
.hero--page {
  background: var(--ink);
  min-height: auto;
  padding: 120px 0 80px;
}
.hero--page .hero__inner { padding: 0; }

/* ============================================================
   STEPS / HOW IT WORKS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 860px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 56px; }
}
.step {
  position: relative;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
}
.step::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 56px;
  height: 2px;
  background: var(--gold);
}
.step__num {
  font-family: var(--font-d);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(3.2rem, 5vw, 5rem);
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 24px;
}
.step__title {
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 400;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.step__body { color: var(--ash); font-size: 15px; line-height: 1.7; max-width: 36ch; }

/* ============================================================
   FEATURE CARDS / WHY GRID
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px 80px;
  border-top: 1px solid var(--hairline-l);
  padding-top: 64px;
}
@media (min-width: 860px) {
  .why-grid { grid-template-columns: 1fr 1fr; gap: 80px 100px; }
}

.why-item {
  position: relative;
  padding-top: 28px;
  border-top: 1px solid var(--hairline-l);
}
.why-item__idx {
  position: absolute;
  top: 28px; right: 0;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--gold-s);
  opacity: 0.7;
}
.why-item__idx::before {
  content: '\2014\00a0'; /* em dash + nbsp, decorative */
}
.why-item__title {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  max-width: 22ch;
}
.why-item__body {
  color: rgba(251,249,244,.70);
  font-size: 16px;
  line-height: 1.7;
  max-width: 42ch;
}

/* ============================================================
   CONTRACT / LIST ITEMS
   ============================================================ */
.contract-list {
  border-top: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 860px) {
  .contract-list { grid-template-columns: 1fr 1fr; gap: 0 80px; }
}
.contract-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 20px;
  align-items: start;
}
.contract-item__num {
  font-family: var(--font-d);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  padding-top: 2px;
}
.contract-item__title {
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.3;
}
.contract-item__body { color: var(--ash); font-size: 14px; line-height: 1.6; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--hairline);
}
.compare-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
}
.compare-table th {
  padding: 16px 24px;
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: left;
  background: var(--ink);
  color: var(--paper);
}
.compare-table th:first-child { width: 30%; }
.compare-table th.col-ajr { background: var(--gold); color: var(--ink); }

.compare-table td {
  padding: 16px 24px;
  font-size: 15px;
  line-height: 1.5;
  vertical-align: top;
  border-bottom: 1px solid var(--hairline);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(odd) td { background: var(--bone); }
.compare-table tr:nth-child(even) td { background: var(--paper); }
.compare-table td:first-child {
  font-weight: 500;
  color: var(--ink);
  font-size: 14px;
}
.compare-table td .check { color: #2E7D32; font-weight: 600; }
.compare-table td .cross { color: #C62828; }
.compare-table td .neutral { color: var(--ash); }

/* Card comparaison (mobile friendly) */
.compare-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .compare-cards { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.compare-card {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
}
.compare-card__head {
  padding: 20px 24px;
  background: var(--ink);
  color: var(--paper);
}
.compare-card--ajr .compare-card__head {
  background: var(--gold);
  color: var(--ink);
}
.compare-card__title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.compare-card__body { padding: 24px; }
.compare-card__item {
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 15px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}
.compare-card__item:last-child { border-bottom: none; }
.compare-card__item .icon { flex-shrink: 0; font-size: 16px; margin-top: 1px; }

/* ============================================================
   OBJECTIONS SECTION
   ============================================================ */
.objections {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--hairline);
}
@media (min-width: 860px) {
  .objections { grid-template-columns: 1fr 1fr; }
}
.objection {
  padding: 36px 0;
  border-bottom: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 860px) {
  .objection {
    padding: 36px 40px 36px 0;
    grid-template-columns: 1fr;
  }
  .objection:nth-child(2n) { padding: 36px 0 36px 40px; border-left: 1px solid var(--hairline); }
}
.objection__q {
  font-family: var(--font-d);
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 300;
  color: var(--ash);
  line-height: 1.35;
}
.objection__q::before { content: '« '; }
.objection__q::after  { content: ' »'; }
.objection__a {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
}

/* ============================================================
   PROPERTY PHOTOS GRID
   ============================================================ */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 32px;
}
@media (min-width: 768px) {
  .properties-grid { gap: 40px; }
}
.property {
  position: relative;
}
.property__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bone-d);
  border-radius: var(--radius);
}
.property__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
  will-change: transform;
}
.property:hover .property__media img { transform: scale(1.04); }
.property__info {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.property__city {
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.property__city em { font-style: italic; color: var(--gold); }
.property__ref { font-size: 11px; letter-spacing: 0.18em; color: var(--ash); text-transform: uppercase; }

/* ============================================================
   CITIES SECTION
   ============================================================ */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (min-width: 640px) {
  .cities-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .cities-grid { grid-template-columns: repeat(5, 1fr); }
}
.city-card {
  background: var(--paper);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.2s ease;
  text-decoration: none;
  color: inherit;
}
.city-card:hover { background: var(--bone); }
.city-card__name {
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}
.city-card:hover .city-card__name { color: var(--gold); }
.city-card__dept {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ash);
}
.city-card__arrow {
  font-size: 16px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  margin-top: 4px;
}
.city-card:hover .city-card__arrow { opacity: 1; transform: translateX(0); }

/* ============================================================
   TRUST BAR / STATS
   ============================================================ */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 60px;
  padding: 48px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.trust-stat {}
.trust-stat__num {
  font-family: var(--font-d);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--gold);
  line-height: 1;
  display: block;
  letter-spacing: -0.02em;
}
.trust-stat__label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ash);
  display: block;
  margin-top: 6px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}
.testimonial {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 28px;
}
.testimonial__text {
  font-family: var(--font-d);
  font-style: italic;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 20px;
}
.testimonial__text::before { content: '\201C'; color: var(--gold); }
.testimonial__text::after  { content: '\201D'; color: var(--gold); }
.testimonial__author {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.testimonial__location {
  font-size: 12px;
  color: var(--ash);
  letter-spacing: 0.06em;
  margin-top: 2px;
}

/* Placeholder for testimonials */
.testimonial-placeholder {
  background: var(--bone);
  border: 1px dashed var(--bone-d);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0.6;
}
.testimonial-placeholder__line {
  height: 12px;
  background: var(--bone-d);
  border-radius: 2px;
}
.testimonial-placeholder__line:last-child { width: 60%; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .faq-layout { grid-template-columns: 0.8fr 1.5fr; gap: 100px; align-items: start; }
  .faq-layout .faq-head { position: sticky; top: 100px; }
}
.faq-head h2 { margin-bottom: 24px; }
.faq-head__note { color: var(--ash); font-size: 15px; line-height: 1.6; max-width: 28ch; }

.faq-list { border-top: 1px solid var(--hairline); }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-item__q {
  width: 100%;
  text-align: left;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-d);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.2s ease;
}
.faq-item__q:hover { color: var(--gold); }
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--ink);
  transition: transform 0.3s var(--ease), background 0.2s ease, opacity 0.3s ease;
}
.faq-icon::before { width: 14px; height: 1px; transform: translate(-50%,-50%); }
.faq-icon::after  { width: 1px; height: 14px; transform: translate(-50%,-50%); }
.faq-item.is-open .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-item.is-open .faq-icon::before { background: var(--gold); }

.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease-out);
}
.faq-item.is-open .faq-item__a { grid-template-rows: 1fr; }
.faq-item__a > .faq-item__a-inner {
  overflow: hidden;
  min-height: 0;
}
.faq-item__a-inner {
  padding: 0 0 28px;
  max-width: 65ch;
  color: var(--ash);
  font-size: 16px;
  line-height: 1.75;
}
.faq-item__a-inner a { color: var(--gold); text-decoration: underline; }

/* ============================================================
   FORM
   ============================================================ */
.form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 600px) {
  .form { grid-template-columns: 1fr 1fr; gap: 24px 32px; }
  .form__field--full { grid-column: 1 / -1; }
}

.form--light { }

.form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash);
}
.form__label .req { color: var(--gold); }

.form input,
.form select,
.form textarea {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-10);
}
.form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23B8924A' stroke-width='1.2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form select option { background: var(--white); color: var(--ink); }
.form textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
.form ::placeholder { color: rgba(22,24,29,.3); font-weight: 300; }

/* Dark form variant (defined after base to win the cascade) */
.form--dark .form__label { color: var(--gold-s); }
.form--dark input,
.form--dark select,
.form--dark textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(251,249,244,.25);
  border-radius: 0;
  padding: 12px 0;
  color: var(--paper);
}
.form--dark input:focus,
.form--dark select:focus,
.form--dark textarea:focus {
  border-bottom-color: var(--gold);
  box-shadow: none;
}
.form--dark select {
  background-position: right 4px center;
  padding-right: 24px;
}
.form--dark select option { background: var(--ink); color: var(--paper); }
.form--dark ::placeholder { color: rgba(251,249,244,.3); }

.form__submit { grid-column: 1 / -1; }
.form__note { grid-column: 1 / -1; font-size: 12px; color: var(--ash); line-height: 1.5; }
.form__honey { display: none !important; }
.form__success, .form__error { grid-column: 1 / -1; padding: 16px; border-radius: var(--radius); font-size: 14px; display: none; }
.form__success { background: #E8F5E9; color: #2E7D32; border: 1px solid #A5D6A7; }
.form__error   { background: #FFEBEE; color: #C62828; border: 1px solid #FFCDD2; }

/* ============================================================
   CONTACT (homepage, comme V1)
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 1024px) {
  .contact-layout { grid-template-columns: 1.4fr 0.9fr; gap: 100px; align-items: start; }
}
.contact-head { margin-bottom: 48px; }

.contact-info {
  border-top: 1px solid var(--hairline-l);
  padding-top: 8px;
}
.contact-info__row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 24px 0;
  border-bottom: 1px solid var(--hairline-l);
}
.contact-info__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(251,249,244,.45);
}
.contact-info__value {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.005em;
  color: var(--paper);
  transition: color 0.2s ease;
}
a.contact-info__value:hover { color: var(--gold-s); }
.contact-info__value em { font-style: italic; color: var(--gold-s); }

/* ============================================================
   BLOG FEATURED (cornerstone)
   ============================================================ */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 32px;
  background: var(--bone);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  margin-bottom: 56px;
  color: inherit;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
@media (min-width: 820px) {
  .blog-featured { grid-template-columns: 1.5fr 1fr; gap: 48px; align-items: center; padding: 44px 48px; }
}
.blog-featured:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-card); }
.blog-featured__title {
  font-family: var(--font-d);
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--ink);
  margin: 14px 0 16px;
  transition: color 0.2s ease;
}
.blog-featured:hover .blog-featured__title { color: var(--gold); }
.blog-featured__excerpt { font-size: 16px; line-height: 1.65; color: var(--ash); max-width: 52ch; }
.blog-featured__aside { display: flex; flex-direction: column; align-items: flex-start; }
@media (min-width: 820px) {
  .blog-featured__aside { border-left: 1px solid var(--hairline); padding-left: 48px; }
}

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }
}
@media (min-width: 1100px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 64px; }
}
.blog-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.blog-card a { display: contents; }
.blog-card__tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.blog-card__title {
  font-family: var(--font-d);
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--ink);
  transition: color 0.2s ease;
}
.blog-card:hover .blog-card__title { color: var(--gold); }
.blog-card__excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ash);
}
.blog-card__meta {
  font-size: 12px;
  color: var(--ash);
  letter-spacing: 0.06em;
  display: flex;
  gap: 16px;
  align-items: center;
}
.blog-card__meta::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); }
.blog-card__read-more {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
}
.blog-card:hover .blog-card__read-more { gap: 12px; }

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.article-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}
@media (min-width: 1024px) {
  .article-layout { grid-template-columns: minmax(0, 1fr) 300px; gap: 96px; align-items: start; }
  .article-sidebar { position: sticky; top: 100px; }
}

.article-header { margin-bottom: 56px; }
.article-header .eyebrow { margin-bottom: 20px; }
.article-header h1 { margin-bottom: 20px; }
.article-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 13px;
  color: var(--ash);
  letter-spacing: 0.04em;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 40px;
}
.article-header__meta span { display: flex; align-items: center; gap: 6px; }

.article-sidebar__card {
  background: var(--bone);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 28px;
}
.article-sidebar__card h3 {
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.article-sidebar__card p { font-size: 14px; line-height: 1.65; color: var(--ash); margin-bottom: 20px; }
.article-sidebar__card .btn { width: 100%; justify-content: center; }

/* ============================================================
   INFO BOX
   ============================================================ */
.info-box {
  background: var(--bone);
  border: 1px solid var(--hairline);
  padding: 22px 26px;
  border-radius: var(--radius);
  margin: 32px 0;
  position: relative;
}
.info-box p { font-size: 15px; line-height: 1.65; color: var(--ink); }
.info-box p::first-line { } /* hook */
.info-box strong { font-weight: 600; color: var(--gold-deep); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-head {
  max-width: 680px;
  margin-bottom: 64px;
}
.section-head--center { margin: 0 auto 64px; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 80px;
  align-items: end;
}
@media (min-width: 900px) {
  .section-head__split { grid-template-columns: 1.2fr 1fr; gap: 100px; }
}
.section-head h2 { margin-bottom: 0; }
.section-head p   { margin-top: 20px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: rgba(251,249,244,.55);
  font-size: 13px;
  letter-spacing: 0.02em;
  border-top: 1px solid var(--hairline-l);
}
.footer__main {
  padding: 72px 0 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .footer__main { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 64px; }
}
.footer__brand {}
.footer__logo {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 400;
  color: var(--paper);
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 16px;
}
.footer__logo em { font-style: italic; color: var(--gold-s); font-weight: 300; }
.footer__tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(251,249,244,.55);
  max-width: 28ch;
  margin-bottom: 20px;
}
.footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 10px;
}
.footer__contact-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(251,249,244,.35);
}
.footer__contact-value {
  font-size: 14px;
  color: rgba(251,249,244,.75);
  transition: color 0.2s ease;
}
a.footer__contact-value:hover { color: var(--gold-s); }

.footer__col h4 {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251,249,244,.4);
  margin-bottom: 20px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 14px;
  color: rgba(251,249,244,.6);
  transition: color 0.2s ease;
  line-height: 1.4;
}
.footer__links a:hover { color: var(--paper); }

.footer__bottom {
  padding: 24px 0;
  border-top: 1px solid var(--hairline-l);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: rgba(251,249,244,.35);
  letter-spacing: 0.05em;
}
.footer__siret { color: rgba(251,249,244,.35); }

/* ============================================================
   LOCAL PAGE SPECIFICS
   ============================================================ */
.local-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .local-features { grid-template-columns: repeat(3, 1fr); }
}
.local-feature {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.local-feature:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.local-feature__num {
  font-family: var(--font-d);
  font-style: italic;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.local-feature__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.local-feature__body { font-size: 14px; color: var(--ash); line-height: 1.65; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--ink);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,146,74,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: var(--paper); margin-bottom: 20px; }
.cta-section p { color: rgba(251,249,244,.7); margin-bottom: 36px; font-size: 17px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.10s; }
.reveal[data-delay="2"] { transition-delay: 0.20s; }
.reveal[data-delay="3"] { transition-delay: 0.30s; }
.reveal[data-delay="4"] { transition-delay: 0.40s; }
.reveal[data-delay="5"] { transition-delay: 0.50s; }

/* Hero fade-up */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.hero.is-loaded .fade-up,
body.is-loaded .fade-up { opacity: 1; transform: translateY(0); }
.hero.is-loaded .fade-up.d1, body.is-loaded .fade-up.d1 { transition-delay: 0.10s; }
.hero.is-loaded .fade-up.d2, body.is-loaded .fade-up.d2 { transition-delay: 0.28s; }
.hero.is-loaded .fade-up.d3, body.is-loaded .fade-up.d3 { transition-delay: 0.46s; }
.hero.is-loaded .fade-up.d4, body.is-loaded .fade-up.d4 { transition-delay: 0.64s; }
.hero.is-loaded .fade-up.d5, body.is-loaded .fade-up.d5 { transition-delay: 0.82s; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1.1fr 0.9fr; gap: 100px; }
}
.about-entity {
  background: var(--bone);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 32px;
}
.about-entity__item {
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: start;
}
.about-entity__item:last-child { border-bottom: none; }
.about-entity__label { font-size: 12px; color: var(--ash); letter-spacing: 0.08em; text-transform: uppercase; padding-top: 2px; }
.about-entity__value { font-size: 15px; color: var(--ink); line-height: 1.5; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-gold  { color: var(--gold); }
.text-ash   { color: var(--ash); }
.text-paper { color: var(--paper); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-56 { margin-top: 56px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-56 { margin-bottom: 56px; }
.mb-64 { margin-bottom: 64px; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; gap: 48px; } }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal  { opacity: 1; transform: none; }
  .fade-up { opacity: 1; transform: none; }
}
