/* ============================================================
   LIGNE CLAIRE — Conciergerie privée
   Aesthetic : éditorial luxe à la française
   Cormorant Garamond (display, italics) + system sans (body)
   Palette : nuit-bleu profonde, crème, or doux
   ============================================================ */

/* ---- Self-hosted Cormorant Garamond (no external dependency) ---- */
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/cormorant-garamond-400.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/cormorant-garamond-400i.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/cormorant-garamond-500.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/cormorant-garamond-600.woff2") format("woff2");
}

:root {
  /* Color system */
  --bg: #f5f1ea;            /* warm cream */
  --bg-alt: #ede7dd;        /* deeper cream */
  --bg-dark: #1a1f2c;       /* lake at dusk */
  --bg-darker: #12161f;
  --ink: #1a1f2c;           /* primary text */
  --ink-soft: #4a5161;
  --ink-muted: #8a8275;
  --line: #d9cfbf;
  --line-soft: #e6dccb;
  --gold: #b89968;          /* matching the logo */
  --gold-deep: #9a7d4f;
  --gold-glow: #d4b885;
  --paper: #ffffff;

  /* Type — system sans stack as a robust fallback */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Spacing */
  --space-section: clamp(5rem, 10vw, 9rem);
  --container: 1320px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ============================================================
   GRAIN OVERLAY — gives that printed-paper texture
   ============================================================ */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.1 0 0 0 0 0.15 0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.35;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: multiply;
}

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.section__num {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold-deep);
  letter-spacing: 0.04em;
  margin-bottom: 1.4rem;
  position: relative;
  padding-left: 2.4rem;
}
.section__num::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.section__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.section__title em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 300;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.6rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  position: relative;
}
.btn--primary {
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
}
.btn--primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -12px rgba(154, 125, 79, 0.5);
}
.btn--primary svg { transition: transform 0.4s var(--ease); }
.btn--primary:hover svg { transform: translateX(4px); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--bg);
}
.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem var(--gutter);
  transition: all 0.4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(245, 241, 234, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.85rem var(--gutter);
  border-bottom: 1px solid var(--line-soft);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__brand img {
  height: 88px;
  width: auto;
  transition: height 0.4s var(--ease);
}
.nav.is-scrolled .nav__brand img { height: 64px; }

.nav__links {
  display: flex;
  gap: 2.4rem;
  align-items: center;
}
.nav__links a {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  font-weight: 400;
  color: var(--ink);
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.3s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 0.4s var(--ease);
}
.nav__links a:hover { color: var(--gold-deep); }
.nav__links a:hover::after { right: 0; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  background: var(--ink);
  color: var(--bg);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.4s var(--ease);
}
.nav__cta:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
}
.nav__cta svg { transition: transform 0.4s var(--ease); }
.nav__cta:hover svg { transform: translateX(3px); }

.nav__burger { display: none; flex-direction: column; gap: 5px; }
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s var(--ease);
}

@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: calc(var(--space-section) + 5rem) var(--gutter) 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 70vh;
  background: radial-gradient(ellipse at top right, rgba(184, 153, 104, 0.08), transparent 50%);
  pointer-events: none;
}

.hero__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: 80vh;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  animation: fadeUp 0.9s var(--ease) 0.1s both;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 153, 104, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 1.8rem;
  animation: fadeUp 1s var(--ease) 0.25s both;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 300;
  display: inline-block;
  position: relative;
}
.hero__title em::before {
  content: "";
  position: absolute;
  left: -0.4rem;
  top: 0.2em;
  bottom: 0.15em;
  width: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero__lede {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 30rem;
  margin-bottom: 2.6rem;
  animation: fadeUp 1s var(--ease) 0.4s both;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: fadeUp 1s var(--ease) 0.55s both;
}

.hero__trust {
  display: flex;
  align-items: stretch;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  animation: fadeUp 1s var(--ease) 0.7s both;
}
.trust__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.trust__num {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  font-style: italic;
  color: var(--gold-deep);
  line-height: 1;
}
.trust__lbl {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  line-height: 1.4;
}
.trust__divider {
  width: 1px;
  background: var(--line);
  margin: 0.2rem 0;
}

/* ===== HERO VISUAL (photo de l'intérieur) ===== */
.hero__visual {
  position: relative;
  height: clamp(440px, 65vh, 640px);
  animation: fadeIn 1.4s var(--ease) 0.4s both;
}
.scene {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-dark);
  box-shadow:
    0 30px 80px -30px rgba(26, 31, 44, 0.4),
    0 0 0 1px var(--line);
}
.scene__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s var(--ease);
}
.scene:hover .scene__photo {
  transform: scale(1.04);
}
/* Subtle warm veil + vignette to harmonize with the site palette */
.scene__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 60% 50%, transparent 35%, rgba(26, 31, 44, 0.18) 100%),
    linear-gradient(180deg, rgba(184, 153, 104, 0.06) 0%, transparent 35%, rgba(26, 31, 44, 0.12) 100%);
}
.scene__frame {
  position: absolute;
  inset: 1.4rem;
  border: 1px solid rgba(245, 241, 234, 0.4);
  border-radius: 2px;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1.2rem 1.4rem;
  z-index: 2;
}
.scene__caption {
  display: flex;
  flex-direction: column;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.9);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.caption__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--gold-glow);
  text-transform: none;
  margin-bottom: 0.15rem;
}

/* Floating chips (SMS + tag) */
.chip {
  position: absolute;
  background: var(--paper);
  box-shadow: 0 20px 50px -15px rgba(26, 31, 44, 0.35);
  border-radius: 4px;
  font-size: 0.78rem;
  animation: floatChip 6s ease-in-out infinite alternate;
}
.chip--sms {
  bottom: 1.5rem;
  left: 1.5rem;
  width: 270px;
  padding: 1rem 1.1rem;
  z-index: 3;
}
.chip__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  margin-bottom: 0.55rem;
}
.chip__bubble {
  width: 8px;
  height: 8px;
  background: #25d366;
  border-radius: 50%;
}
.chip__msg {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 0.6rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--line-soft);
}
.chip__reply {
  font-size: 0.72rem;
  color: var(--gold-deep);
  letter-spacing: 0.04em;
}

.chip--tag {
  top: 1.6rem;
  right: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-transform: uppercase;
  font-weight: 500;
  animation-delay: 1s;
  z-index: 3;
}
.chip__line {
  width: 14px;
  height: 1px;
  background: var(--gold);
}

.hero__marquee {
  margin-top: 6rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.marquee__track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--ink-soft);
  animation: marquee 35s linear infinite;
  width: max-content;
}
.marquee__track span {
  flex-shrink: 0;
}
.marquee__track span:nth-child(even) {
  color: var(--gold);
  font-style: normal;
}

/* ============================================================
   STAKES
   ============================================================ */
.stakes {
  padding: var(--space-section) var(--gutter);
  background: var(--bg);
  position: relative;
}
.stakes__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.stakes__head {
  margin-bottom: 5rem;
  max-width: 50rem;
}
.stakes__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.stake {
  padding: 3rem 2rem 3rem 0;
  border-right: 1px solid var(--line);
  position: relative;
  transition: transform 0.5s var(--ease);
}
.stake:nth-child(2) { padding-left: 2rem; }
.stake:nth-child(3) { border-right: none; padding-left: 2rem; }
.stake:hover { transform: translateY(-6px); }

.stake__index {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-deep);
  margin-bottom: 1.5rem;
}
.stake h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.7rem;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: var(--ink);
}
.stake p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}

.stakes__quote {
  margin-top: 5rem;
  padding: 4rem 0;
  border-top: 1px solid var(--line);
  text-align: center;
  position: relative;
}
.quote__mark {
  font-family: var(--serif);
  font-size: 6rem;
  line-height: 0.5;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.stakes__quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3.2vw, 2.2rem);
  line-height: 1.4;
  color: var(--ink);
  font-weight: 300;
}

/* ============================================================
   GUIDE
   ============================================================ */
.guide {
  padding: var(--space-section) var(--gutter);
  background: var(--bg-alt);
  position: relative;
}
.guide__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.guide__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portrait {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
}
.portrait__frame {
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
}
.portrait__frame::before {
  content: "";
  position: absolute;
  inset: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  pointer-events: none;
  z-index: 2;
}
.portrait__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s var(--ease);
}
.portrait:hover .portrait__photo {
  transform: scale(1.04);
}
.portrait__seal {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 130px;
  height: 130px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  box-shadow: 0 12px 30px -10px rgba(154, 125, 79, 0.3);
  animation: rotateSlow 40s linear infinite;
}

.guide__content {
  position: relative;
}
.guide__lede {
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-top: 2rem;
}
.guide__lede + .guide__lede { margin-top: 1.4rem; }

.guide__list {
  list-style: none;
  margin-top: 2.6rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.guide__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.guide__list li span {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ============================================================
   METHOD
   ============================================================ */
.method {
  padding: var(--space-section) var(--gutter);
  background: var(--bg-dark);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.method::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(184, 153, 104, 0.08), transparent 60%);
  pointer-events: none;
}
.method__inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}
.method .section__num { color: var(--gold-glow); }
.method .section__num::before { background: var(--gold); }
.method__head {
  text-align: center;
  margin-bottom: 6rem;
}
.method__head .section__num {
  padding-left: 0;
  padding-right: 2.4rem;
}
.method__head .section__num::before {
  left: auto;
  right: 0;
}
.method__head .section__title {
  color: var(--bg);
  margin: 0 auto;
  max-width: 30rem;
}
.method__head .section__title em {
  color: var(--gold-glow);
}
.method__lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(245, 241, 234, 0.7);
  max-width: 36rem;
  margin: 1.6rem auto 0;
  text-align: center;
  line-height: 1.55;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  border-top: 1px solid rgba(184, 153, 104, 0.25);
  border-bottom: 1px solid rgba(184, 153, 104, 0.25);
}
.step {
  padding: 3.5rem 2.5rem;
  border-right: 1px solid rgba(184, 153, 104, 0.25);
  transition: background 0.4s var(--ease);
  position: relative;
}
.step:last-child { border-right: none; }
.step:hover { background: rgba(184, 153, 104, 0.06); }

.step__num {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(184, 153, 104, 0.25);
}
.step__num span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--gold-glow);
  font-weight: 400;
}
.step__num svg { color: var(--gold-glow); opacity: 0.7; }
.step h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.7rem;
  margin-bottom: 1rem;
  color: var(--bg);
}
.step p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(245, 241, 234, 0.7);
  margin-bottom: 1.4rem;
}
.step__time {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold-glow);
  letter-spacing: 0.02em;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: var(--space-section) var(--gutter);
  background: var(--bg);
}
.services__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.services__head {
  margin-bottom: 4rem;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service {
  background: var(--bg);
  padding: 2.6rem 2.4rem;
  transition: all 0.4s var(--ease);
  position: relative;
}
.service:hover {
  background: var(--paper);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -20px rgba(26, 31, 44, 0.15);
  z-index: 2;
}
.service--featured {
  background: var(--bg-alt);
}
.service--special {
  background: var(--ink);
  color: var(--bg);
  grid-column: span 2;
}
.service--special h3 { color: var(--bg) !important; font-weight: 400; }
.service--special .service__num { color: var(--gold-glow); }
.service--special p { color: rgba(245, 241, 234, 0.75); }
.service--special ul li { color: rgba(245, 241, 234, 0.7); }
.service--special ul li::before { background: var(--gold-glow) !important; }

.service__head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}
.service--special .service__head { border-color: rgba(184, 153, 104, 0.3); }
.service__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-deep);
  font-weight: 400;
  flex-shrink: 0;
}
.service h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.15;
  color: var(--ink);
}
.service p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.4rem;
}
.service ul {
  list-style: none;
}
.service ul li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 0.5rem;
}
.service ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: var(--space-section) var(--gutter);
  background: var(--bg-alt);
}
.pricing__inner {
  max-width: var(--container);
  margin: 0 auto;
}
.pricing__head {
  text-align: center;
  margin-bottom: 5rem;
}
.pricing__head .section__num {
  padding-left: 0;
  padding-right: 2.4rem;
}
.pricing__head .section__num::before {
  left: auto;
  right: 0;
}
.pricing__lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 36rem;
  margin: 1.4rem auto 0;
  line-height: 1.55;
}

.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.plan {
  background: var(--bg);
  padding: 3rem 2.6rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.plan:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -25px rgba(26, 31, 44, 0.25);
}
.plan--featured {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.plan__ribbon {
  position: absolute;
  top: -12px;
  right: 2rem;
  background: var(--gold);
  color: var(--ink);
  padding: 0.5rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
}
.plan__head { margin-bottom: 2rem; }
.plan__tag {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-deep);
  margin-bottom: 0.6rem;
}
.plan--featured .plan__tag { color: var(--gold-glow); }
.plan h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.15;
}
.plan__price {
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
}
.plan--featured .plan__price {
  border-color: rgba(184, 153, 104, 0.3);
}
.price__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.4rem 0;
  gap: 1rem;
}
.price__label {
  font-size: 0.85rem;
  color: var(--ink-soft);
  flex: 1 1 auto;
  min-width: 0;
}
.price__value {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  flex: 0 0 auto;
}
.plan--featured .price__label { color: rgba(245, 241, 234, 0.65); }
.plan--featured .price__value { color: var(--bg); }
.price__value span {
  font-size: 0.9rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink-soft);
  margin-left: 0.2rem;
}
.plan--featured .price__value span { color: rgba(245, 241, 234, 0.5); }

.price__row--accent .price__label {
  color: var(--gold-deep);
  font-weight: 500;
}
.plan--featured .price__row--accent .price__label { color: var(--gold-glow); }
.price__row--accent .price__value {
  color: var(--gold-deep);
  font-size: 2.2rem;
}
.plan--featured .price__row--accent .price__value { color: var(--gold-glow); }

.plan__list {
  list-style: none;
  margin-bottom: 2rem;
}
.plan__list li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.6rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-soft);
}
.plan--featured .plan__list li {
  color: rgba(245, 241, 234, 0.75);
  border-color: rgba(184, 153, 104, 0.15);
}
.plan__list li:last-child { border-bottom: none; }
.plan__list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 500;
}
.plan--featured .btn--primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.plan--featured .btn--primary:hover {
  background: var(--gold-glow);
  border-color: var(--gold-glow);
}
.pricing__note {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
  font-style: italic;
}

/* ============================================================
   FISCAL
   ============================================================ */
.fiscal {
  padding: var(--space-section) var(--gutter);
  background: var(--bg);
  overflow: hidden;
}
.fiscal__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.fiscal__left p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-top: 1.4rem;
}
.fiscal__left p strong {
  color: var(--gold-deep);
  font-weight: 600;
}
.fiscal__steps {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.fiscal__step {
  display: flex;
  gap: 1.4rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.fiscal__step:last-child { border-bottom: none; }
.fiscal__step span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
}
.fiscal__step p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.fiscal__step strong { color: var(--ink); font-weight: 500; }

.fiscal__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.medal {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.medal__inner {
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-glow), var(--gold), var(--gold-deep));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  box-shadow:
    inset 0 0 20px rgba(255,255,255,0.2),
    0 20px 50px -15px rgba(154, 125, 79, 0.5);
  position: relative;
}
.medal__inner::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
}
.medal__pct {
  font-family: var(--serif);
  font-size: 3.8rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1;
}
.medal__pct sup {
  font-size: 1.2rem;
  vertical-align: super;
  font-style: normal;
  margin-left: 0.1rem;
}
.medal__lbl {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 0.4rem;
  font-weight: 500;
}
.medal__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  margin-top: 0.3rem;
  opacity: 0.85;
}
.medal__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--ink);
  animation: rotateSlow 40s linear infinite;
}

.fiscal__compute {
  width: 100%;
  max-width: 360px;
  background: var(--paper);
  padding: 1.8rem 2rem;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.compute__row {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  border-bottom: 1px dashed var(--line-soft);
}
.compute__row:last-child { border-bottom: none; padding-bottom: 0; }
.compute__strike {
  text-decoration: line-through;
  color: var(--ink-muted);
}
.compute__row--minus { color: var(--gold-deep); font-weight: 500; }
.compute__row--total {
  margin-top: 0.5rem;
  padding-top: 1rem !important;
  border-top: 1px solid var(--ink) !important;
  border-bottom: none !important;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--ink);
  font-weight: 500;
}

/* ============================================================
   SUCCESS / before-after
   ============================================================ */
.success {
  padding: var(--space-section) var(--gutter);
  background: var(--bg-alt);
}
.success__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.success .section__num {
  padding-left: 0;
  padding-right: 2.4rem;
}
.success .section__num::before { left: auto; right: 0; }
.success__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  margin-top: 5rem;
  text-align: left;
}
.col__label {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-deep);
  margin-bottom: 1.6rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.col__list { list-style: none; }
.col__list li {
  padding: 0.85rem 0;
  font-size: 1rem;
  line-height: 1.5;
  border-bottom: 1px solid var(--line-soft);
}
.col__list li:last-child { border-bottom: none; }
.col__list--before li { color: var(--ink-muted); }
.col__list--before li::before {
  content: "✕  ";
  color: var(--ink-muted);
  font-size: 0.85em;
}
.col__list--after li { color: var(--ink); }
.col__list--after li::before {
  content: "✓  ";
  color: var(--gold-deep);
  font-size: 0.85em;
}

.success__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  padding-top: 4rem;
}
.success__divider svg {
  width: 32px;
  height: 32px;
  animation: arrowMove 2.5s ease-in-out infinite;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: var(--space-section) var(--gutter);
  background: var(--bg-darker);
  color: var(--bg);
}
.contact__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
}
.contact .section__num { color: var(--gold-glow); }
.contact .section__num::before { background: var(--gold); }
.contact .section__title { color: var(--bg); }
.contact .section__title em { color: var(--gold-glow); }

.contact__lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.55;
  color: rgba(245, 241, 234, 0.7);
  margin-top: 2rem;
}

.contact__channels {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(184, 153, 104, 0.25);
}
.channel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(184, 153, 104, 0.2);
  transition: padding 0.3s var(--ease);
}
.channel:hover {
  padding-left: 0.6rem;
}
.channel__label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-glow);
}
.channel__value {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--bg);
}

.contact__form {
  background: rgba(245, 241, 234, 0.04);
  border: 1px solid rgba(184, 153, 104, 0.2);
  padding: 2.6rem;
  border-radius: 4px;
}
/* CTA block (replaces the previous form) */
.contact__cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.2rem 2.6rem;
}
.cta__eyebrow {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-glow);
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}
.cta__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--bg);
  margin-bottom: 1.4rem;
}
.cta__title em {
  font-style: italic;
  color: var(--gold-glow);
  font-weight: 300;
}
.cta__lede {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(245, 241, 234, 0.7);
  margin-bottom: 2.4rem;
}
.cta__btn {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  font-size: 0.95rem;
  padding: 1.2rem 1.6rem;
}
.cta__btn:hover {
  background: var(--gold-glow);
  border-color: var(--gold-glow);
}
.form__row { margin-bottom: 1.4rem; }
.form__row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form__row label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form__row label > span {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-glow);
}
.form__row input,
.form__row textarea {
  font-family: var(--serif);
  font-size: 1rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(184, 153, 104, 0.3);
  padding: 0.7rem 0;
  color: var(--bg);
  width: 100%;
  transition: border-color 0.3s var(--ease);
}
.form__row input::placeholder,
.form__row textarea::placeholder {
  color: rgba(245, 241, 234, 0.35);
  font-style: italic;
}
.form__row input:focus,
.form__row textarea:focus {
  outline: none;
  border-color: var(--gold-glow);
}
.form__row textarea { resize: vertical; min-height: 80px; }

.check {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: rgba(245, 241, 234, 0.7);
  cursor: pointer;
}
.check input {
  width: auto !important;
  accent-color: var(--gold);
}

.contact__form .btn--primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  margin-top: 0.6rem;
}
.contact__form .btn--primary:hover {
  background: var(--gold-glow);
  border-color: var(--gold-glow);
}
.form__note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(245, 241, 234, 0.5);
  margin-top: 1.2rem;
  font-style: italic;
}
.form__note--featured {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.4rem;
  padding: 0.9rem 1.2rem;
  background: rgba(184, 153, 104, 0.12);
  border: 1px solid rgba(184, 153, 104, 0.35);
  border-radius: 2px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-glow);
  letter-spacing: 0.01em;
}
.form__pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-glow);
  box-shadow: 0 0 0 0 rgba(212, 184, 133, 0.6);
  animation: pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-darker);
  color: var(--bg);
  padding: 4rem var(--gutter) 1.5rem;
  border-top: 1px solid rgba(184, 153, 104, 0.2);
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(184, 153, 104, 0.2);
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__monogram {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(184, 153, 104, 0.2);
}
.footer__key {
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}
.footer__name {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--bg);
  letter-spacing: 0.04em;
  font-weight: 500;
  line-height: 1.1;
}
.footer__type {
  display: block;
  font-size: 0.78rem;
  color: rgba(245, 241, 234, 0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}
.footer__tag {
  font-family: var(--serif) !important;
  font-style: italic;
  font-size: 1.15rem !important;
  color: var(--gold-glow) !important;
  margin-top: 0 !important;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.footer__col h4 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  color: var(--gold-glow);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(184, 153, 104, 0.2);
}
.footer__col a, .footer__col span {
  display: block;
  font-size: 0.85rem;
  color: rgba(245, 241, 234, 0.6);
  padding: 0.4rem 0;
  transition: color 0.3s var(--ease);
}
.footer__col a:hover { color: var(--gold-glow); }
.footer__legal {
  max-width: var(--container);
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(245, 241, 234, 0.4);
  letter-spacing: 0.04em;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184, 153, 104, 0.4); }
  50%      { box-shadow: 0 0 0 10px rgba(184, 153, 104, 0); }
}
@keyframes shimmer {
  from { transform: translateY(0); opacity: 1; }
  to   { transform: translateY(-4px); opacity: 0.7; }
}
@keyframes sunRise {
  from { transform: translateY(0); opacity: 1; }
  to   { transform: translateY(-20px); opacity: 0.8; }
}
@keyframes floatChip {
  from { transform: translateY(0); }
  to   { transform: translateY(-12px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes arrowMove {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(8px); }
}

/* Reveal on scroll — opt-in: only hides content if JS marks the body */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.js-reveal .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero__grid,
  .guide__grid,
  .fiscal__inner,
  .contact__inner {
    grid-template-columns: 1fr;
  }
  .hero__visual { height: 460px; margin-top: 2rem; }
  .stakes__list, .steps, .services__grid {
    grid-template-columns: 1fr 1fr;
  }
  .service--special { grid-column: span 2; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .hero { padding-top: 8rem; }
  .stakes__list, .steps, .services__grid, .plans {
    grid-template-columns: 1fr;
  }
  .service--special { grid-column: span 1; }
  .stake { padding: 2rem 0 !important; border-right: none; border-bottom: 1px solid var(--line); }
  .stake:last-child { border-bottom: none; }
  .step { border-right: none; border-bottom: 1px solid rgba(184, 153, 104, 0.25); }
  .step:last-child { border-bottom: none; }
  .hero__trust {
    flex-direction: column;
    gap: 1rem;
  }
  .trust__divider { display: none; }
  .success__grid { grid-template-columns: 1fr; }
  .success__divider { transform: rotate(90deg); padding: 1rem 0; }
  .footer__cols { grid-template-columns: 1fr; }
  .footer__legal { flex-direction: column; gap: 0.5rem; }
  .form__row--split { grid-template-columns: 1fr; }
  .chip--sms { left: 1rem; width: 220px; }
  .chip--tag { right: 1rem; }
  .portrait__seal { right: 0; bottom: -1rem; width: 100px; height: 100px; }
  .price__value { font-size: 1.35rem; }
  .price__row--accent .price__value { font-size: 1.7rem; }
}
