/* ===========================================================
   DIAMANT CONSULT — Design System
   Shared across all pages
   =========================================================== */

:root {
  --bg: #FFFFFF;
  --bg-soft: #F4F2ED;
  --bg-darker: #ECEAE4;
  --ink: #0A0A0A;
  --ink-2: #1A1A1A;
  --mute: #6B6B66;
  --mute-2: #9A968D;
  --line: rgba(10, 10, 10, 0.08);
  --line-2: rgba(10, 10, 10, 0.12);

  --dark-bg: #0A0A0A;
  --dark-fg: #FAFAF7;

  --success: #22C55E;

  --display: "Bricolage Grotesque", "Inter Tight", ui-sans-serif, system-ui, sans-serif;
  --sans: "Inter Tight", ui-sans-serif, system-ui, sans-serif;

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 40px;

  --maxw: 1360px;
  --pad-x: clamp(1.25rem, 3.5vw, 2.5rem);
  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }
::selection { background: var(--ink); color: var(--bg); }

/* Typography */
.display {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.95;
  font-variation-settings: "wdth" 100, "opsz" 96;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}

h1 { font-size: clamp(2.75rem, 7vw, 5.75rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(2.25rem, 5vw, 4rem); letter-spacing: -0.035em; line-height: 1.02; }
h3 { font-size: clamp(1.35rem, 2vw, 1.85rem); line-height: 1.15; }
h4 { font-size: 1.1rem; line-height: 1.3; letter-spacing: -0.02em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mute);
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--ink);
  border-radius: 50%;
}
.eyebrow.light { color: rgba(250,250,247,0.7); }
.eyebrow.light::before { background: var(--dark-fg); }

p.lead { font-size: clamp(1.05rem, 1.25vw, 1.2rem); color: var(--ink-2); max-width: 60ch; line-height: 1.55; }

/* Layout */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }

/* ===========================================================
   NAV
   =========================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1rem 0;
  transition: all 0.4s var(--ease);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.5rem 1rem 0.5rem 1.5rem;
  margin-left: var(--pad-x);
  margin-right: var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid var(--line);
  border-radius: 100px;
  transition: all 0.4s var(--ease);
}
.nav.solid .nav-inner {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 28px rgba(10, 10, 10, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.brand-mark { width: 22px; height: 22px; flex-shrink: 0; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-menu a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  transition: color 0.3s var(--ease);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--ink); }
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 4px; height: 4px;
  background: var(--ink);
  border-radius: 50%;
  transform: translateX(-50%) scale(0);
  transition: transform 0.3s var(--ease);
}
.nav-menu a:hover::after, .nav-menu a.active::after { transform: translateX(-50%) scale(1); }

.nav-right { display: flex; align-items: center; gap: 1rem; }

.lang {
  display: inline-flex;
  gap: 0.15rem;
  background: var(--bg-soft);
  border-radius: 100px;
  padding: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
}
.lang button {
  padding: 0.35rem 0.7rem;
  border-radius: 100px;
  color: var(--mute);
  transition: all 0.3s var(--ease);
}
.lang button:hover { color: var(--ink); }
.lang button.active { background: var(--ink); color: var(--bg); }

.nav-cta {
  padding: 0.7rem 1.1rem;
  background: var(--ink);
  color: var(--bg);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-cta:hover {
  background: var(--ink-2);
  transform: translateY(-1px);
}
.nav-cta .arr {
  width: 14px; height: 14px;
  transition: transform 0.3s var(--ease);
}
.nav-cta:hover .arr { transform: translate(2px, -2px); }

.burger {
  display: none;
  width: 38px; height: 38px;
  border-radius: 100px;
  background: var(--bg-soft);
  align-items: center;
  justify-content: center;
  position: relative;
}
.burger span {
  position: absolute;
  width: 16px; height: 1.5px;
  background: var(--ink);
  left: 11px;
}
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 22px; }

/* ===========================================================
   BUTTONS (shared)
   =========================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.4rem 1rem 1.5rem;
  background: var(--ink);
  color: var(--bg);
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s var(--ease);
}
.btn-primary:hover { background: var(--ink-2); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.btn-primary .arr-circle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease);
}
.btn-primary:hover .arr-circle { transform: rotate(-45deg); }
.btn-primary .arr-circle svg { width: 12px; height: 12px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.4rem;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-2);
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: all 0.3s var(--ease);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* ===========================================================
   HERO (home)
   =========================================================== */
.hero {
  padding-top: 7rem;
  padding-bottom: 3rem;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1000px) {
  .hero-inner {
    grid-template-columns: 1.05fr 1fr;
    gap: 3rem;
    min-height: calc(100vh - 8rem);
    min-height: calc(100svh - 8rem);
  }
}

.hero-copy { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 0.9rem 0.5rem 0.5rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 2rem;
}
.hero-badge .pill {
  background: var(--ink);
  color: var(--bg);
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 7.5vw, 6.25rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  font-weight: 500;
  max-width: 14ch;
  margin-bottom: 1.75rem;
}
.hero h1 .highlight {
  position: relative;
  display: inline-block;
  padding: 0 0.1em;
}
.hero h1 .highlight::before {
  content: "";
  position: absolute;
  inset: 8% -2%;
  background: var(--ink);
  border-radius: 12px;
  z-index: -1;
  transform: skewY(-1.5deg);
}
.hero h1 .highlight span {
  color: var(--bg);
  position: relative;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.25vw, 1.15rem);
  color: var(--ink-2);
  max-width: 46ch;
  line-height: 1.55;
  margin-bottom: 2.5rem;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  max-width: 480px;
}
.hero-stat .num {
  font-family: var(--display);
  font-size: clamp(1.85rem, 2.5vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.hero-stat .num sup { font-size: 0.55em; font-weight: 500; margin-left: 0.1em; vertical-align: top; top: 0.4em; position: relative; color: var(--mute); }
.hero-stat .lbl { font-size: 0.78rem; color: var(--mute); font-weight: 500; }

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 620px;
  justify-self: center;
}
.hero-main-img {
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-soft);
}
.hero-main-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.hero-main-img:hover img { transform: scale(1.03); }

.img-label {
  position: absolute;
  top: 1.25rem; left: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem 0.5rem 0.65rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink);
  z-index: 2;
}
.img-label::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.2); } 50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); } }

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.1rem 1.25rem;
  box-shadow: 0 20px 50px rgba(10,10,10,0.12);
  z-index: 3;
  transition: transform 0.6s var(--ease);
}
.float-card.price { bottom: 1.5rem; left: 1.5rem; max-width: 240px; }
.float-card.price:hover { transform: translateY(-4px); }
.float-card.price .pc-label { font-size: 0.72rem; color: var(--mute); font-weight: 500; margin-bottom: 0.25rem; text-transform: uppercase; letter-spacing: 0.06em; }
.float-card.price .pc-val {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.float-card.price .pc-sub { font-size: 0.78rem; color: var(--ink-2); }

.float-card.mini {
  top: -1.5rem;
  right: -1rem;
  padding: 0.85rem 1rem 0.85rem 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  animation: gentleFloat 6s ease-in-out infinite;
}
@keyframes gentleFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.float-card.mini .mini-ico {
  width: 40px; height: 40px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 12px;
  display: grid;
  place-items: center;
}
.float-card.mini .mini-ico svg { width: 20px; height: 20px; }
.float-card.mini .mini-txt strong { display: block; font-size: 0.95rem; font-weight: 600; line-height: 1.1; font-family: var(--display); letter-spacing: -0.02em; }
.float-card.mini .mini-txt span { font-size: 0.75rem; color: var(--mute); }

/* ===========================================================
   STRIP / MARQUEE
   =========================================================== */
.strip {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg);
}
.strip-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.25vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--mute);
}
.strip-inner .dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--ink);
  border-radius: 50%;
  flex-shrink: 0;
}
.strip-inner em { font-style: normal; color: var(--ink); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===========================================================
   DUAL OFFERS
   =========================================================== */
.offers { padding: clamp(4rem, 8vw, 7rem) 0; }

.offers-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 3rem;
}
@media (min-width: 900px) { .offers-head { grid-template-columns: 1.4fr 1fr; gap: 4rem; } }

.offers-head h2 { max-width: 18ch; }
.offers-head .aside { color: var(--ink-2); font-size: 1.05rem; max-width: 46ch; }

.offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 900px) { .offer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }

.offer-card {
  position: relative;
  border-radius: var(--r-lg);
  padding: clamp(2rem, 3.5vw, 3rem);
  transition: transform 0.5s var(--ease-out);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 520px;
}
.offer-card:hover { transform: translateY(-6px); }

.offer-card.primary { background: var(--ink); color: var(--dark-fg); }
.offer-card.secondary { background: var(--bg-soft); color: var(--ink); border: 1px solid var(--line); }

.offer-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 100%;
  height: 150%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 140'><path d='M50 8 L90 40 L50 132 L10 40 Z M10 40 L90 40 M50 8 L30 40 L50 132 L70 40' stroke='currentColor' stroke-width='0.4' fill='none' opacity='0.3'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center right;
  pointer-events: none;
  opacity: 0.5;
}

.offer-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  align-self: flex-start;
  position: relative;
  z-index: 2;
}
.offer-card.secondary .offer-tag {
  background: var(--bg);
  border-color: var(--line);
  color: var(--ink-2);
}

.offer-title {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.offer-desc {
  font-size: 1rem;
  line-height: 1.55;
  max-width: 34ch;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}
.offer-card.primary .offer-desc { color: rgba(250,250,247,0.75); }
.offer-card.secondary .offer-desc { color: var(--ink-2); }

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid;
  position: relative;
  z-index: 2;
}
.offer-card.primary .offer-price { border-color: rgba(255,255,255,0.15); }
.offer-card.secondary .offer-price { border-color: var(--line-2); }

.offer-price .big {
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.9;
}
.offer-price .unit {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--mute);
}
.offer-card.primary .offer-price .unit { color: rgba(250,250,247,0.6); }

.offer-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}
.offer-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  line-height: 1.4;
}
.offer-features li svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.offer-card.primary .offer-features li { color: rgba(250,250,247,0.85); }
.offer-card.primary .offer-features li svg { color: var(--dark-fg); }

.offer-cta {
  margin-top: auto;
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.1rem 0.95rem 1.5rem;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 500;
  align-self: flex-start;
  transition: all 0.3s var(--ease);
}
.offer-card.primary .offer-cta { background: var(--dark-fg); color: var(--ink); }
.offer-card.primary .offer-cta:hover { background: var(--bg); transform: translateX(4px); }
.offer-card.secondary .offer-cta { background: var(--ink); color: var(--bg); }
.offer-card.secondary .offer-cta:hover { background: var(--ink-2); transform: translateX(4px); }
.offer-cta .arr-circle {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.offer-card.primary .offer-cta .arr-circle { background: var(--ink); color: var(--dark-fg); }
.offer-card.secondary .offer-cta .arr-circle { background: var(--dark-fg); color: var(--ink); }
.offer-cta .arr-circle svg { width: 11px; height: 11px; }

/* ===========================================================
   PROCESS STEPS
   =========================================================== */
.process {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg-soft);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  margin-top: 1rem;
}

.process-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 3.5rem;
}
@media (min-width: 900px) { .process-head { grid-template-columns: 1.4fr 1fr; gap: 4rem; } }
.process-head h2 { max-width: 14ch; }
.process-head h2 .slash { color: var(--mute); }

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }

.step {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.75rem;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.step:hover {
  background: var(--ink);
  color: var(--dark-fg);
  transform: translateY(-4px);
  border-color: var(--ink);
}
.step:hover .step-num { background: var(--dark-fg); color: var(--ink); }
.step:hover .step-desc { color: rgba(250,250,247,0.7); }
.step:hover .step-arrow { opacity: 1; transform: translate(0, 0); }

.step-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.step-num {
  width: 36px; height: 36px;
  border-radius: 100px;
  background: var(--ink);
  color: var(--bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.4s var(--ease);
}

.step-arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.35;
  transform: translate(-4px, 4px);
  transition: all 0.4s var(--ease);
}
.step-arrow svg { width: 11px; height: 11px; }

.step h4 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.step-desc {
  font-size: 0.88rem;
  color: var(--mute);
  line-height: 1.5;
  transition: color 0.4s var(--ease);
}

/* ===========================================================
   REPORT SPOTLIGHT (new)
   =========================================================== */
.report-spotlight {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--bg);
}

.report-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--ink);
  color: var(--dark-fg);
  border-radius: var(--r-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
@media (min-width: 900px) { .report-inner { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.report-copy { position: relative; z-index: 2; }
.report-copy h2 { color: var(--dark-fg); max-width: 14ch; margin-bottom: 1.25rem; }
.report-copy h2 .hl-light {
  background: var(--dark-fg);
  color: var(--ink);
  padding: 0 0.15em;
  border-radius: 8px;
  display: inline-block;
  line-height: 0.95;
}
.report-copy p { font-size: 1.05rem; color: rgba(250,250,247,0.7); line-height: 1.55; margin-bottom: 2rem; max-width: 42ch; }

.report-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.report-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(250,250,247,0.85);
}
.report-features li svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--dark-fg);
}

/* Mockup d'un rapport */
.report-mock {
  background: var(--dark-fg);
  color: var(--ink);
  border-radius: var(--r-md);
  padding: 1.75rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  transform: rotate(2deg);
  transition: transform 0.6s var(--ease);
}
.report-mock:hover { transform: rotate(0deg) scale(1.02); }

.report-mock-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--line-2);
}
.report-mock-head h5 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.report-mock-head .mock-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
  padding: 0.3rem 0.6rem;
  background: var(--bg-soft);
  border-radius: 100px;
}

.report-mock-rows { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.25rem; }
.report-mock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0.85rem;
  background: var(--bg-soft);
  border-radius: 10px;
  font-size: 0.85rem;
}
.report-mock-row span:first-child { color: var(--mute); }
.report-mock-row span:last-child { font-weight: 600; font-family: var(--display); }

.report-mock-chart {
  height: 80px;
  display: flex;
  align-items: end;
  gap: 6px;
  padding: 0.5rem 0.85rem;
  background: var(--bg-soft);
  border-radius: 10px;
}
.report-mock-chart .bar {
  flex: 1;
  background: var(--ink);
  border-radius: 4px 4px 0 0;
  animation: barGrow 1.5s var(--ease-out) forwards;
  transform-origin: bottom;
  transform: scaleY(0);
}
@keyframes barGrow { to { transform: scaleY(1); } }

/* ===========================================================
   STATS BIG
   =========================================================== */
.stats-big { padding: clamp(5rem, 9vw, 8rem) 0; background: var(--bg-soft); }

.stats-big-head { margin-bottom: 3rem; max-width: 600px; }

.stats-big-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 700px) { .stats-big-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .stats-big-grid { grid-template-columns: repeat(4, 1fr); } }

.big-stat {
  background: var(--bg);
  border-radius: var(--r-md);
  padding: 2rem 1.75rem;
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease);
}
.big-stat:hover { transform: translateY(-4px); border-color: var(--ink); }

.big-stat-num {
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.9;
  margin-bottom: 1rem;
  display: inline-block;
}
.big-stat-num sup { font-size: 0.45em; font-weight: 500; vertical-align: top; top: 0.4em; position: relative; color: var(--mute); }
.big-stat-num .sm { font-size: 0.5em; font-weight: 500; color: var(--mute); margin-left: 0.15em; }

.big-stat-lbl {
  font-size: 0.88rem;
  color: var(--mute);
  font-weight: 500;
  line-height: 1.4;
}

/* ===========================================================
   ZONE
   =========================================================== */
.zone { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--bg); }

.zone-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 2rem;
}
@media (min-width: 900px) { .zone-head { grid-template-columns: 1.4fr 1fr; gap: 4rem; } }
.zone-head h2 { max-width: 14ch; }

.zone-group { margin-bottom: 2rem; }
.zone-group:last-child { margin-bottom: 0; }
.zone-group-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.zone-group-label::before { content: ""; width: 6px; height: 6px; background: var(--ink); border-radius: 50%; }
.zone-group-label.dashed::before { background: transparent; border: 1.5px dashed var(--ink); }

.zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
}
.zone-list li {
  padding: 0.65rem 1.15rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s var(--ease);
  cursor: default;
}
.zone-list li:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  transform: translateY(-2px);
}
.zone-list.dashed li { border-style: dashed; background: transparent; }
.zone-note {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--mute);
  font-style: italic;
}

/* ===========================================================
   TESTIMONIAL
   =========================================================== */
.testi { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--bg); }

.testi-card {
  background: var(--ink);
  color: var(--dark-fg);
  border-radius: var(--r-lg);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}
.testi-card::before {
  content: "";
  position: absolute;
  top: -30%; right: -15%;
  width: 60%; height: 160%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 140'><path d='M50 8 L90 40 L50 132 L10 40 Z M10 40 L90 40 M50 8 L30 40 L50 132 L70 40' stroke='%23FAFAF7' stroke-width='0.3' fill='none' opacity='0.3'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center right;
  pointer-events: none;
  opacity: 0.4;
}

.testi-card .quote-mark {
  font-family: var(--display);
  font-size: 5rem;
  line-height: 0.4;
  color: var(--dark-fg);
  opacity: 0.3;
  margin-bottom: 1rem;
  display: block;
}

.testi-card blockquote {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.2;
  max-width: 22ch;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.testi-meta { display: flex; align-items: center; gap: 1rem; position: relative; z-index: 2; }
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4C9AA 0%, #8A7B5C 100%);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 500;
  color: var(--ink);
  font-size: 1.1rem;
}
.testi-who strong { display: block; font-weight: 600; font-size: 0.95rem; }
.testi-who span { font-size: 0.82rem; color: rgba(250,250,247,0.6); }

/* ===========================================================
   JOURNAL / ARTICLES
   =========================================================== */
.journal { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--bg-soft); }

.journal-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 3rem;
}
@media (min-width: 900px) { .journal-head { grid-template-columns: 1.4fr auto; gap: 4rem; } }
.journal-head h2 { max-width: 12ch; }

.all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.1rem 0.75rem 1.25rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.3s var(--ease);
  justify-self: start;
}
@media (min-width: 900px) { .all-link { justify-self: end; } }
.all-link:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.all-link .arr { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.all-link:hover .arr { transform: translate(2px, -2px); }

.articles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 700px) { .articles { grid-template-columns: repeat(3, 1fr); } }

.article {
  background: var(--bg);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
}
.article:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: 0 20px 40px rgba(10,10,10,0.06); }

.article-img {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  position: relative;
  background: var(--bg-darker);
}
.article-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.article:hover .article-img img { transform: scale(1.05); }

.article-body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-meta { display: flex; gap: 0.5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.article-meta span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mute);
  padding: 0.3rem 0.65rem;
  background: var(--bg-soft);
  border-radius: 100px;
}

.article h3 {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  max-width: 22ch;
  color: var(--ink);
}
.article p {
  font-size: 0.88rem;
  color: var(--mute);
  line-height: 1.5;
  max-width: 38ch;
  flex: 1;
}

.article-readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
}
.article-readmore .arr { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.article:hover .article-readmore .arr { transform: translate(3px, -3px); }

/* ===========================================================
   CTA FINAL
   =========================================================== */
.cta-final { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--bg); }

.cta-box {
  background: var(--ink);
  color: var(--dark-fg);
  border-radius: var(--r-xl);
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) { .cta-box { grid-template-columns: 1.5fr 1fr; gap: 3rem; } }

.cta-box::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 60%;
  height: 180%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 140'><path d='M50 8 L90 40 L50 132 L10 40 Z M10 40 L90 40 M50 8 L30 40 L50 132 L70 40' stroke='%23FAFAF7' stroke-width='0.3' fill='none' opacity='0.4'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center right;
  pointer-events: none;
}

.cta-box h2 { position: relative; z-index: 2; max-width: 16ch; line-height: 1; color: var(--dark-fg); }
.cta-box p {
  position: relative;
  z-index: 2;
  font-size: 1.05rem;
  color: rgba(250,250,247,0.7);
  max-width: 42ch;
  margin-top: 1.25rem;
  line-height: 1.55;
}

.cta-box-actions { display: flex; flex-direction: column; gap: 1rem; position: relative; z-index: 2; }

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1.1rem 1.35rem 1.1rem 1.5rem;
  background: var(--dark-fg);
  color: var(--ink);
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s var(--ease);
  justify-content: space-between;
}
.cta-btn:hover { transform: translateY(-2px); background: var(--bg); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.cta-btn .arr-circle {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--dark-fg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease);
}
.cta-btn:hover .arr-circle { transform: rotate(-45deg); }
.cta-btn .arr-circle svg { width: 13px; height: 13px; }

.cta-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 1.35rem;
  background: transparent;
  color: var(--dark-fg);
  border: 1px solid rgba(250,250,247,0.25);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s var(--ease);
  justify-content: space-between;
}
.cta-btn-ghost:hover { background: rgba(250,250,247,0.1); border-color: rgba(250,250,247,0.5); }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer { padding: 3rem 0 2rem; background: var(--bg); border-top: 1px solid var(--line); }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; } }

.footer-brand { max-width: 320px; }
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand p { color: var(--mute); font-size: 0.9rem; line-height: 1.55; }

.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a, .footer-col span {
  font-size: 0.9rem;
  color: var(--ink-2);
  transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--ink); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--mute);
}
.footer-bottom .legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ===========================================================
   PAGE HEADER (inner pages)
   =========================================================== */
.page-hero {
  padding-top: 10rem;
  padding-bottom: 4rem;
  position: relative;
}
.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: end;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 900px) { .page-hero-inner { grid-template-columns: 1.4fr 1fr; gap: 4rem; } }

.page-hero h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  letter-spacing: -0.05em;
  line-height: 0.95;
  max-width: 12ch;
}
.page-hero-sub { color: var(--ink-2); font-size: 1.1rem; line-height: 1.55; max-width: 48ch; }

.breadcrumb {
  font-size: 0.8rem;
  color: var(--mute);
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.breadcrumb a { color: var(--mute); transition: color 0.3s var(--ease); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { opacity: 0.5; }

/* ===========================================================
   PROJETS PAGE
   =========================================================== */
.projets-filter {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.65rem 1.15rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.filter-btn:hover { background: var(--bg-darker); }
.filter-btn.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.filter-btn .count {
  background: rgba(255,255,255,0.15);
  padding: 0.1rem 0.5rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
}
.filter-btn:not(.active) .count { background: var(--bg); color: var(--mute); }

.projets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding-bottom: 3rem;
}
@media (min-width: 700px) { .projets-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .projets-grid { grid-template-columns: repeat(3, 1fr); } }

.projet-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.projet-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-2);
  box-shadow: 0 20px 40px rgba(10,10,10,0.08);
}

.projet-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: var(--bg-darker);
}
.projet-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.projet-card:hover .projet-img img { transform: scale(1.05); }

.projet-status {
  position: absolute;
  top: 1rem; left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.8rem 0.4rem 0.6rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
  z-index: 2;
}
.projet-status::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
}
.projet-status.en-cours { color: var(--success); }
.projet-status.en-cours::before { background: var(--success); box-shadow: 0 0 0 3px rgba(34,197,94,0.2); animation: pulse 2s ease-in-out infinite; }
.projet-status.vendu { color: var(--mute); }
.projet-status.vendu::before { background: var(--mute); }

.projet-type {
  position: absolute;
  top: 1rem; right: 1rem;
  padding: 0.4rem 0.75rem;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(10px);
  color: var(--dark-fg);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  z-index: 2;
}

.projet-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }

.projet-addr {
  font-size: 0.82rem;
  color: var(--mute);
  margin-bottom: 0.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.projet-addr svg { width: 14px; height: 14px; color: var(--mute); }

.projet-title {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.projet-specs {
  display: flex;
  gap: 1.5rem;
  padding-top: 1rem;
  margin-top: auto;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--ink-2);
}
.projet-specs .spec { display: inline-flex; align-items: center; gap: 0.35rem; }
.projet-specs .spec svg { width: 14px; height: 14px; color: var(--mute); }
.projet-specs .spec strong { font-weight: 600; color: var(--ink); }

/* ===========================================================
   CONTACT PAGE
   =========================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.contact-form {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.contact-form h3 { margin-bottom: 0.5rem; font-size: 1.5rem; }
.contact-form .form-intro { color: var(--mute); font-size: 0.92rem; margin-bottom: 2rem; }

.field { margin-bottom: 1.25rem; }
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 0.5rem;
}
.field label .req { color: #E11; font-weight: 400; }

.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--ink);
  transition: all 0.3s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(10,10,10,0.05);
}
.field textarea { resize: vertical; min-height: 120px; font-family: inherit; }

.field-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 600px) { .field-row { grid-template-columns: 1fr 1fr; } }

.contact-submit {
  width: 100%;
  padding: 1.1rem 1.4rem;
  background: var(--ink);
  color: var(--bg);
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all 0.3s var(--ease);
  margin-top: 0.5rem;
}
.contact-submit:hover { background: var(--ink-2); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }

.contact-info { display: flex; flex-direction: column; gap: 1rem; }

.info-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.5rem 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all 0.3s var(--ease);
}
.info-card:hover { border-color: var(--ink); transform: translateY(-2px); }
.info-card .icon {
  width: 44px; height: 44px;
  background: var(--ink);
  color: var(--dark-fg);
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.info-card .icon svg { width: 20px; height: 20px; }
.info-card .info-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 0.3rem;
}
.info-card .info-value {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.info-card a.info-value { display: block; }
.info-card a.info-value:hover { text-decoration: underline; text-underline-offset: 3px; }

.map-embed {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  background: var(--bg-darker);
  margin-top: 0.5rem;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.9) contrast(1.05); }

/* ===========================================================
   BLOG PAGE (list)
   =========================================================== */
.blog-filter { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 3rem; }

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 700px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-featured {
  grid-column: 1 / -1;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease);
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .blog-featured { grid-template-columns: 1.2fr 1fr; } }
.blog-featured:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(10,10,10,0.06); border-color: var(--line-2); }
.blog-featured .article-img { aspect-ratio: 16 / 11; border-radius: 0; }
@media (min-width: 900px) { .blog-featured .article-img { aspect-ratio: auto; } }
.blog-featured .article-body { padding: clamp(1.5rem, 3vw, 2.5rem); }
.blog-featured h3 { font-size: clamp(1.5rem, 2.5vw, 2.25rem); max-width: 22ch; margin-bottom: 1rem; }
.blog-featured p { font-size: 1rem; max-width: 50ch; }

/* ===========================================================
   REVEAL
   =========================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 900px) {
  .nav-menu, .lang { display: none; }
  .burger { display: inline-flex; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); max-width: 100%; }
  .float-card.mini { top: 1rem; right: 1rem; }
  .float-card.price { bottom: 1rem; left: 1rem; padding: 0.9rem 1rem; }
  .float-card.price .pc-val { font-size: 1.35rem; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 2.75rem; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
  .hero-stat .num { font-size: 1.65rem; }
  .hero-stat .lbl { font-size: 0.7rem; }
}

@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;
  }
}

/* ===========================================================
   ARTICLE CONTENT (blog posts)
   =========================================================== */
.article-content {
  max-width: 72ch;
  margin: 0 auto;
  font-size: clamp(1rem, 1.05vw, 1.1rem);
  line-height: 1.75;
  color: var(--ink-2);
}
.article-content h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  color: var(--ink);
  margin-top: 3rem;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.article-content p {
  margin-bottom: 1.25rem;
}
.article-content ul,
.article-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.article-content li {
  margin-bottom: 0.5rem;
}
.article-content strong {
  color: var(--ink);
  font-weight: 600;
}
}
