/* ============================================================
   V3 — LUMIÈRE VIVANTE — moderne, animé
   ============================================================ */
:root {
  --v3-bg: #F8F1E5;
  --v3-bg-2: #F2E8D5;
  --v3-bg-3: #EDDFC4;
  --v3-paper: #FDFAF3;
  --v3-ink: #1F1A14;
  --v3-ink-soft: #4A4036;
  --v3-muted: #8A7E6F;
  --v3-line: #E0D2B8;
  --v3-clay: #C2664A;
  --v3-clay-deep: #9E4830;
  --v3-sage: #6E8060;
  --v3-gold: #C9A062;
  --v3-cream: #FBF5E8;

  --v3-serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --v3-sans: "Inter Tight", "Inter", -apple-system, sans-serif;
  --v3-mono: "JetBrains Mono", ui-monospace, monospace;
}

.v3 * { box-sizing: border-box; margin: 0; padding: 0; }
.v3 {
  background: var(--v3-bg);
  color: var(--v3-ink);
  font-family: var(--v3-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
.v3 a { text-decoration: none; }
.v3 a, .v3 a:visited { color: var(--v3-ink); }
.v3 a.v3-cta, .v3 a.v3-cta:visited { color: var(--v3-cream); background: var(--v3-ink); }
.v3 .v3-featured a.v3-cta, .v3 .v3-featured a.v3-cta:visited { color: var(--v3-ink); background: var(--v3-cream); }
.v3 button { font: inherit; color: inherit; cursor: pointer; background: transparent; border: 0; }
.v3 img { max-width: 100%; display: block; }
.v3 ::selection { background: var(--v3-clay); color: var(--v3-cream); }

.v3 .container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

.v3 .serif {
  font-family: var(--v3-serif);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  letter-spacing: -0.02em;
}
.v3 .italic { font-style: italic; }
.v3 .clay { color: var(--v3-clay); }
.v3 .sage { color: var(--v3-sage); }
.v3 .gold { color: var(--v3-gold); }

.v3 .mono {
  font-family: var(--v3-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--v3-muted);
  font-weight: 400;
}

/* ===== Animated background blobs ===== */
.v3-blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.v3-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: blob-float 28s ease-in-out infinite;
}
.v3-blob.b1 { width: 540px; height: 540px; background: var(--v3-clay); top: -120px; right: -120px; opacity: 0.35; animation-duration: 32s; }
.v3-blob.b2 { width: 480px; height: 480px; background: var(--v3-sage); bottom: 20%; left: -200px; opacity: 0.28; animation-delay: -8s; animation-duration: 36s; }
.v3-blob.b3 { width: 420px; height: 420px; background: var(--v3-gold); top: 50%; right: 10%; opacity: 0.25; animation-delay: -16s; animation-duration: 40s; }

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -40px) scale(1.08); }
  66% { transform: translate(-40px, 50px) scale(0.95); }
}

/* ===== Reveal animation — purely additive, never invisible by default ===== */
.v3-reveal { /* visible always — animation is opt-in via .v3-reveal-anim */ }
.v3-reveal-anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(.16,.84,.32,1), transform 0.9s cubic-bezier(.16,.84,.32,1);
}
.v3-reveal-anim.on {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .v3-reveal-anim { opacity: 1; transform: none; transition: none; }
}
.v3-reveal-1 { transition-delay: 0.05s; }
.v3-reveal-2 { transition-delay: 0.15s; }
.v3-reveal-3 { transition-delay: 0.25s; }
.v3-reveal-4 { transition-delay: 0.35s; }

/* ===== Header ===== */
.v3-header {
  position: sticky; top: 0; z-index: 50;
  padding: 18px 0;
  background: color-mix(in oklab, var(--v3-bg) 80%, transparent);
  backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid color-mix(in oklab, var(--v3-line) 60%, transparent);
}
.v3-header .container {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
}
.v3-brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--v3-serif);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}
.v3-brand-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--v3-clay);
  color: var(--v3-cream);
  display: grid; place-items: center;
  font-style: italic;
  font-family: var(--v3-serif);
  font-size: 1.15rem;
  position: relative;
  animation: brand-pulse 3.5s ease-in-out infinite;
}
@keyframes brand-pulse {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in oklab, var(--v3-clay) 40%, transparent); }
  50% { box-shadow: 0 0 0 12px color-mix(in oklab, var(--v3-clay) 0%, transparent); }
}
.v3-nav-links {
  display: flex; gap: clamp(18px, 2.4vw, 32px);
  white-space: nowrap;
}
.v3-nav-links a {
  font-size: 0.92rem;
  color: var(--v3-ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color .25s;
}
@media (max-width: 1100px) {
  .v3-nav-links a { font-size: 0.86rem; }
}
@media (max-width: 900px) {
  .v3-nav-links { display: none; }
}
.v3-nav-links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--v3-clay);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.16,.84,.32,1);
}
.v3-nav-links a:hover { color: var(--v3-ink); }
.v3-nav-links a:hover::after, .v3-nav-links a.active::after { transform: scaleX(1); }
.v3-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  background: var(--v3-ink);
  color: var(--v3-cream) !important;
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.005em;
  white-space: nowrap;
  transition: all .3s cubic-bezier(.16,.84,.32,1);
}
.v3-cta:hover { background: var(--v3-clay); transform: translateY(-2px); box-shadow: 0 12px 28px -10px color-mix(in oklab, var(--v3-clay) 70%, transparent); }
.v3-cta-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--v3-ink);
  border-radius: 999px;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: all .3s;
}
.v3-cta-outline:hover { background: var(--v3-ink); color: var(--v3-cream); }

/* ===== Hero — split layout, photo + content side by side ===== */
.v3-hero {
  padding: clamp(40px, 6vw, 80px) 0 clamp(40px, 6vw, 80px);
  position: relative;
  z-index: 1;
}
.v3-hero-eyebrow-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(28px, 5vw, 56px);
  gap: 16px;
  flex-wrap: wrap;
}
.v3-hero-issue { color: var(--v3-muted); }
.v3-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--v3-paper);
  border: 1px solid var(--v3-line);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.84rem;
  color: var(--v3-ink-soft);
  white-space: nowrap;
}
.v3-hero-eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--v3-sage);
  animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--v3-sage); opacity: 1; }
  50% { box-shadow: 0 0 0 6px transparent; opacity: 0.7; }
}

.v3-hero-main {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
@media (max-width: 900px) {
  .v3-hero-main { grid-template-columns: 1fr; gap: 40px; }
}

.v3-hero-text { display: flex; flex-direction: column; gap: 28px; }

.v3-hero-title {
  font-family: var(--v3-serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 6.8vw, 5.6rem);
  line-height: 1;
  letter-spacing: -0.035em;
  text-wrap: balance;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  margin: 0;
}
.v3-hero-title .hero-em {
  font-style: italic;
  color: var(--v3-clay);
  position: relative;
}
.v3-hero-title .hero-em::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%;
  bottom: 6%;
  height: 0.18em;
  background: var(--v3-clay);
  border-radius: 999px;
  opacity: 0.18;
  transform: scaleX(0);
  transform-origin: left;
  animation: hero-underline 1.4s 0.6s cubic-bezier(.6,.0,.4,1) forwards;
}
@keyframes hero-underline { to { transform: scaleX(1); } }
.v3-hero-title .hero-em-sage {
  font-style: italic;
  color: var(--v3-sage);
}

.v3-hero-lede {
  font-size: clamp(1.05rem, 1.25vw, 1.18rem);
  line-height: 1.55;
  color: var(--v3-ink-soft);
  max-width: 50ch;
  margin: 0;
}
.v3-hero-lede em { font-style: italic; color: var(--v3-clay); }

.v3-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.v3-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 0 clamp(20px, 3vw, 48px);
  margin-top: 8px;
  padding-top: 28px;
  border-top: 1px solid var(--v3-line);
  justify-content: start;
}
@media (max-width: 500px) { .v3-hero-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
.v3-hero-stats > div { display: flex; flex-direction: column; gap: 2px; }
.v3-hero-stats strong {
  font-family: var(--v3-serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  letter-spacing: -0.025em;
  line-height: 1;
}
.v3-hero-stats strong em { font-style: italic; color: var(--v3-clay); }
.v3-hero-stats span {
  font-family: var(--v3-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--v3-muted);
}

/* Hero portrait — organic morphing image */
.v3-hero-photo {
  aspect-ratio: 4/5;
  background: var(--v3-bg-3);
  position: relative;
  overflow: hidden;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: morph 18s ease-in-out infinite;
  box-shadow: 0 30px 70px -20px color-mix(in oklab, var(--v3-clay) 50%, transparent);
  margin: 0;
}
.v3-hero-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.02);
}
.v3-hero-photo::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 50%;
  background: linear-gradient(180deg, transparent 0%, color-mix(in oklab, var(--v3-ink) 75%, transparent) 100%);
  pointer-events: none;
  z-index: 1;
}
@keyframes morph {
  0%, 100% { border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; }
  33% { border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%; }
  66% { border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%; }
}
.v3-hero-photo figcaption {
  position: absolute; bottom: 28px; left: 28px; right: 28px;
  display: flex; flex-direction: column; gap: 2px;
  color: var(--v3-cream);
  text-shadow: 0 2px 14px rgba(0,0,0,0.4);
  z-index: 2;
}
.v3-hero-photo figcaption .mono {
  font-family: var(--v3-serif);
  font-style: italic;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: var(--v3-cream);
  text-transform: none;
}
.v3-hero-photo figcaption span:last-child {
  font-family: var(--v3-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ===== Marquee ===== */
.v3-marquee {
  padding: 28px 0;
  border-block: 1px solid var(--v3-line);
  overflow: hidden;
  background: var(--v3-paper);
  position: relative; z-index: 1;
}
.v3-marquee-track {
  display: flex; gap: 56px;
  white-space: nowrap;
  animation: v3-mar 38s linear infinite;
  font-family: var(--v3-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  color: var(--v3-ink);
}
.v3-marquee-track > span { display: inline-flex; align-items: center; gap: 56px; }
.v3-marquee-track .star { color: var(--v3-clay); font-size: 0.7em; }
@keyframes v3-mar { to { transform: translateX(-50%); } }

/* ===== Section ===== */
.v3 section { padding: clamp(80px, 11vw, 150px) 0; position: relative; z-index: 1; }

.v3-section-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 32px; margin-bottom: 64px;
  flex-wrap: wrap;
}
.v3-section-head h2 {
  font-family: var(--v3-serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-wrap: balance;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.v3-section-head h2 em { font-style: italic; color: var(--v3-clay); }

/* ===== Manifesto ===== */
.v3-manifesto { padding: clamp(80px, 11vw, 150px) 0; }
.v3-manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
@media (max-width: 800px) { .v3-manifesto-grid { grid-template-columns: 1fr; } }
.v3-manifesto-img {
  aspect-ratio: 4/5;
  border-radius: 36px;
  overflow: hidden;
  background: var(--v3-bg-3);
  box-shadow: 0 30px 60px -25px color-mix(in oklab, var(--v3-ink) 30%, transparent);
  position: relative;
}
.v3-manifesto-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s cubic-bezier(.16,.84,.32,1); }
.v3-manifesto-img:hover img { transform: scale(1.04); }
.v3-manifesto-text h2 {
  font-family: var(--v3-serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
}
.v3-manifesto-text h2 em { font-style: italic; color: var(--v3-clay); }

/* Featured image on right of Fa'a Ora block */
.v3-featured-image {
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: color-mix(in oklab, var(--v3-ink) 50%, var(--v3-bg-3));
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.3);
}
.v3-featured-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s cubic-bezier(.16,.84,.32,1); }
.v3-featured-image:hover img { transform: scale(1.05); }
.v3-featured-image::after {
  content: "EN LIGNE · VISIO";
  position: absolute; top: 18px; left: 18px;
  font-family: var(--v3-mono); font-size: 0.66rem; letter-spacing: 0.18em;
  color: var(--v3-ink);
  background: var(--v3-gold);
  padding: 5px 12px;
  border-radius: 999px;
  z-index: 2;
}


.v3-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 800px) { .v3-pillars { grid-template-columns: 1fr; } }
.v3-pillar {
  position: relative;
  background: var(--v3-paper);
  border: 1px solid var(--v3-line);
  border-radius: 28px;
  transition: all .5s cubic-bezier(.16,.84,.32,1);
  overflow: hidden;
  display: flex; flex-direction: column;
  min-height: 460px;
}
.v3-pillar-image {
  width: 100%;
  aspect-ratio: 5/3;
  overflow: hidden;
  background: var(--v3-bg-3);
  position: relative;
}
.v3-pillar-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(.16,.84,.32,1);
}
.v3-pillar:hover .v3-pillar-image img { transform: scale(1.05); }
.v3-pillar-body {
  padding: 28px 32px 36px;
  display: flex; flex-direction: column;
  flex: 1;
}
.v3-pillar::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 0%, color-mix(in oklab, var(--v3-clay) 18%, transparent), transparent 60%);
  opacity: 0;
  transition: opacity .5s;
}
.v3-pillar:hover {
  transform: translateY(-6px);
  border-color: var(--v3-clay);
  box-shadow: 0 30px 60px -25px color-mix(in oklab, var(--v3-clay) 45%, transparent);
}
.v3-pillar:hover::before { opacity: 1; }
.v3-pillar > * { position: relative; z-index: 1; }
.v3-pillar-num {
  position: absolute; top: 20px; right: 24px; z-index: 2;
  font-family: var(--v3-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  color: var(--v3-cream);
  background: color-mix(in oklab, var(--v3-ink) 60%, transparent);
  padding: 4px 10px;
  border-radius: 999px;
}
.v3-pillar h3 {
  font-family: var(--v3-serif);
  font-weight: 300;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.v3-pillar h3 em { font-style: italic; color: var(--v3-clay); display: block; font-size: 0.7em; margin-top: 4px; }
.v3-pillar p {
  color: var(--v3-ink-soft);
  font-size: 0.96rem;
  margin-top: 12px;
}
.v3-pillar .more {
  margin-top: auto;
  padding-top: 28px;
  font-size: 0.88rem;
  display: flex; align-items: center; gap: 10px;
  color: var(--v3-clay);
}
.v3-pillar .more svg { transition: transform .35s; }
.v3-pillar:hover .more svg { transform: translateX(8px); }

/* ===== Featured / Fa'a Ora ===== */
.v3-featured-wrap {
  position: relative;
  padding: clamp(48px, 7vw, 100px) clamp(36px, 5vw, 80px);
  border-radius: 36px;
  background:
    linear-gradient(135deg, var(--v3-ink) 0%, color-mix(in oklab, var(--v3-ink) 80%, var(--v3-clay)) 100%);
  color: var(--v3-cream);
  overflow: hidden;
}
.v3-featured-wrap::before {
  content: "";
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklab, var(--v3-clay) 40%, transparent), transparent 60%);
  top: -200px; right: -200px;
  filter: blur(40px);
  animation: blob-float 24s ease-in-out infinite;
}
.v3-featured {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 800px) { .v3-featured { grid-template-columns: 1fr; } }
.v3-featured h2 {
  font-family: var(--v3-serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--v3-cream);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 18px 0 28px;
}
.v3-featured h2 em { font-style: italic; color: var(--v3-gold); }
.v3-featured p { color: color-mix(in oklab, var(--v3-cream) 78%, transparent); margin-bottom: 32px; max-width: 46ch; }
.v3-featured a.v3-cta, .v3-featured a.v3-cta:visited { background: var(--v3-cream); color: var(--v3-ink); }
.v3-featured a.v3-cta:hover { background: var(--v3-gold); color: var(--v3-ink); }
.v3-featured-stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px 36px;
}
.v3-featured-stats div { padding-top: 18px; border-top: 1px solid color-mix(in oklab, var(--v3-cream) 22%, transparent); }
.v3-featured-stats strong {
  font-family: var(--v3-serif);
  font-weight: 300;
  font-size: 2.2rem;
  color: var(--v3-gold);
  display: block;
  margin-bottom: 4px;
  font-style: italic;
}
.v3-featured-stats span { font-size: 0.84rem; color: color-mix(in oklab, var(--v3-cream) 70%, transparent); }

/* ===== Steps (timeline) ===== */
.v3-steps {
  background: var(--v3-paper);
  border-radius: 36px;
  padding: clamp(48px, 7vw, 100px) clamp(36px, 5vw, 80px);
  position: relative;
}
.v3-step-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(32px, 5vw, 80px);
}
@media (max-width: 800px) { .v3-step-list { grid-template-columns: 1fr; } }
.v3-step {
  border-top: 1px solid var(--v3-line);
  padding: 28px 0 32px;
  display: grid; grid-template-columns: 56px 1fr; gap: 20px;
  position: relative;
  transition: padding-left .35s;
}
.v3-step:hover { padding-left: 12px; }
.v3-step::before {
  content: ""; position: absolute; left: 0; top: -1px; height: 1px;
  width: 0; background: var(--v3-clay);
  transition: width .5s cubic-bezier(.16,.84,.32,1);
}
.v3-step:hover::before { width: 100%; }
.v3-step .num {
  font-family: var(--v3-mono);
  font-size: 0.78rem;
  color: var(--v3-clay);
  letter-spacing: 0.16em;
  padding-top: 6px;
}
.v3-step h4 {
  font-family: var(--v3-serif);
  font-weight: 300;
  font-size: 1.45rem;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.v3-step h4 em { font-style: italic; color: var(--v3-clay); }
.v3-step p { font-size: 0.95rem; color: var(--v3-ink-soft); }

/* ===== Offers ===== */
.v3-offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 800px) { .v3-offers-grid { grid-template-columns: 1fr; } }
.v3-offer {
  background: var(--v3-paper);
  border: 1px solid var(--v3-line);
  border-radius: 28px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 24px;
  transition: all .35s cubic-bezier(.16,.84,.32,1);
  position: relative;
  overflow: hidden;
}
.v3-offer:hover {
  background: var(--v3-clay);
  color: var(--v3-cream);
  border-color: var(--v3-clay);
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -20px color-mix(in oklab, var(--v3-clay) 50%, transparent);
}
.v3-offer .tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--v3-bg-2);
  font-family: var(--v3-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  color: var(--v3-ink-soft);
  text-transform: uppercase;
  margin-bottom: 16px;
  transition: all .35s;
}
.v3-offer:hover .tag { background: color-mix(in oklab, var(--v3-cream) 22%, transparent); color: var(--v3-cream); }
.v3-offer h3 {
  font-family: var(--v3-serif);
  font-weight: 300;
  font-size: 1.7rem;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 10px;
}
.v3-offer h3 em { font-style: italic; }
.v3-offer p { font-size: 0.94rem; color: var(--v3-ink-soft); transition: color .35s; }
.v3-offer:hover p { color: color-mix(in oklab, var(--v3-cream) 80%, transparent); }
.v3-offer-side {
  text-align: right;
  display: flex; flex-direction: column; align-items: end; gap: 8px;
}
.v3-offer-price {
  font-family: var(--v3-serif);
  font-weight: 300;
  font-size: 1.7rem;
  font-style: italic;
}
.v3-offer-price small { font-family: var(--v3-mono); font-size: 0.6rem; letter-spacing: 0.18em; opacity: 0.65; margin-left: 4px; font-style: normal; }
.v3-offer-time {
  font-family: var(--v3-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
}
.v3-offer-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--v3-bg-2);
  display: grid; place-items: center;
  transition: all .35s;
  margin-top: 8px;
}
.v3-offer:hover .v3-offer-arrow {
  background: var(--v3-cream);
  color: var(--v3-clay);
  transform: rotate(-45deg);
}

/* ===== Journal ===== */
.v3-journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
@media (max-width: 900px) { .v3-journal-grid { grid-template-columns: 1fr; } }
.v3-entry { display: block; }
.v3-entry-img {
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  margin-bottom: 22px;
  background: var(--v3-bg-3);
  transition: transform .6s cubic-bezier(.16,.84,.32,1);
}
.v3-entry-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s cubic-bezier(.16,.84,.32,1);
}
.v3-entry:hover .v3-entry-img { transform: translateY(-6px); }
.v3-entry:hover .v3-entry-img img { transform: scale(1.05); }
.v3-entry-img::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, color-mix(in oklab, var(--v3-ink) 60%, transparent) 100%);
  z-index: 1;
  opacity: 0.6;
  transition: opacity .5s;
}
.v3-entry:hover .v3-entry-img::before { opacity: 0.85; }
.v3-entry-img::after {
  content: attr(data-label);
  position: absolute; bottom: 16px; left: 16px;
  z-index: 2;
  font-family: var(--v3-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  color: var(--v3-cream);
  background: color-mix(in oklab, var(--v3-ink) 70%, transparent);
  padding: 6px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}
.v3-entry-meta { font-family: var(--v3-mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--v3-muted); margin-bottom: 8px; }
.v3-entry h3 {
  font-family: var(--v3-serif);
  font-weight: 300;
  font-size: 1.45rem;
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  transition: color .3s;
}
.v3-entry:hover h3 { color: var(--v3-clay); }
.v3-entry p { font-size: 0.94rem; color: var(--v3-ink-soft); }

/* ===== Letter ===== */
.v3-letter-wrap {
  background: var(--v3-paper);
  border: 1px solid var(--v3-line);
  border-radius: 36px;
  padding: clamp(48px, 7vw, 100px) clamp(36px, 5vw, 80px);
}
.v3-letter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 800px) { .v3-letter { grid-template-columns: 1fr; } }
.v3-letter h2 {
  font-family: var(--v3-serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
}
.v3-letter h2 em { font-style: italic; color: var(--v3-clay); }
.v3-letter-form {
  display: flex; gap: 0;
  background: var(--v3-cream);
  border: 1px solid var(--v3-line);
  border-radius: 999px;
  padding: 6px 6px 6px 22px;
  margin-top: 20px;
  transition: border-color .3s;
}
.v3-letter-form:focus-within { border-color: var(--v3-clay); }
.v3-letter-form input {
  flex: 1; background: transparent; border: 0; outline: 0;
  font: inherit; font-size: 0.96rem; padding: 12px 0;
  font-family: var(--v3-sans);
}
.v3-letter-form input::placeholder { color: var(--v3-muted); }
.v3-letter-form button {
  background: var(--v3-ink); color: var(--v3-cream);
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 0.88rem;
  letter-spacing: 0.005em;
  transition: all .3s;
}
.v3-letter-form button:hover { background: var(--v3-clay); }
.v3-letter small {
  display: block; margin-top: 14px; font-size: 0.8rem;
  color: var(--v3-muted);
}

/* ===== Footer ===== */
.v3-footer {
  padding: 100px 0 36px;
  border-top: 1px solid var(--v3-line);
  position: relative; z-index: 1;
}
.v3-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 800px) { .v3-footer-grid { grid-template-columns: 1fr 1fr; } }
.v3-footer-brand h3 {
  font-family: var(--v3-serif); font-weight: 300; font-size: 1.7rem; margin-bottom: 14px;
}
.v3-footer-brand h3 em { font-style: italic; color: var(--v3-clay); }
.v3-footer-brand p { font-size: 0.92rem; color: var(--v3-ink-soft); max-width: 36ch; }
.v3-footer-col h5 { font-family: var(--v3-mono); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--v3-muted); margin-bottom: 18px; font-weight: 400; }
.v3-footer-col ul { list-style: none; display: grid; gap: 10px; }
.v3-footer-col a { font-size: 0.92rem; color: var(--v3-ink-soft); transition: color .25s; }
.v3-footer-col a:hover { color: var(--v3-clay); }
.v3-footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--v3-line);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: var(--v3-mono); font-size: 0.7rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--v3-muted);
}

/* Big footer wordmark */
.v3-bigword {
  font-family: var(--v3-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(4rem, 14vw, 14rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--v3-clay);
  text-align: center;
  margin: 60px 0 20px;
  opacity: 0.9;
  font-variation-settings: "opsz" 144, "SOFT" 80;
}
.v3-bigword .wave {
  display: inline-block;
  background: linear-gradient(90deg, var(--v3-clay), var(--v3-gold), var(--v3-sage), var(--v3-clay));
  background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: bigword-grad 8s ease-in-out infinite;
}
@keyframes bigword-grad { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
