/* ============ Tokens ============ */
:root {
  --bg: #f4ede2;
  --bg-warm: #ebe0cd;
  --ink: #1f1a16;
  --ink-soft: #4a3f36;
  --accent: #b8513a;     /* terracota */
  --accent-deep: #8a3724;
  --gold: #c89b5c;
  --sage: #6b7a5a;
  --cream: #faf6ee;
  --line: rgba(31, 26, 22, 0.12);
  --shadow-lg: 0 30px 80px -30px rgba(74, 50, 36, 0.45);
  --shadow-md: 0 14px 40px -18px rgba(74, 50, 36, 0.35);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body {
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(184,81,58,0.10), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(107,122,90,0.10), transparent 60%);
  background-attachment: fixed;
}
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

.serif { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; }
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--accent-deep);
  font-weight: 500;
}

/* ============ Nav ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 48px;
  transition: background .35s ease, backdrop-filter .35s ease, padding .35s ease;
}
.nav.scrolled {
  background: rgba(244, 237, 226, 0.82);
  backdrop-filter: blur(14px);
  padding: 14px 48px;
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 10px;
}
.nav-wordmark {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 6px 22px 6px 26px;
}
.flor {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.flor-hib { top: -14px; left: -18px; transform: rotate(-22deg); }
.flor-cos { top: -10px; right: 4px; transform: rotate(15deg); }
.flor-mar { bottom: -8px; left: 4px; transform: rotate(-12deg); }
.flor-tul { bottom: -14px; right: -8px; transform: rotate(8deg); }
.word-text {
  display: inline-block;
  line-height: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 700px) {
  .flor-cos, .flor-mar { display: none; }
  .flor-hib { width: 26px; height: 26px; top: -10px; left: -12px; }
  .flor-tul { width: 16px; height: 22px; bottom: -10px; right: -6px; }
}
.nav-logo-mark {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  color: var(--accent);
}
.nav-links {
  display: flex; gap: 38px;
  font-size: 14px; font-weight: 500;
}
.nav-links a { position: relative; padding: 4px 0; transition: color .2s; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--accent);
  transition: width .3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--ink); color: var(--cream);
  padding: 11px 22px; border-radius: 999px;
  font-size: 13px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform .25s, background .25s;
}
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 48px 80px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  overflow: hidden;
}
.hero-copy { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: ""; width: 36px; height: 1px; background: var(--accent);
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(56px, 7.2vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  font-weight: 500;
  color: var(--ink);
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.hero-title .word {
  display: inline-block;
  opacity: 0; transform: translateY(40px);
  animation: rise .9s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-title .word:nth-child(1) { animation-delay: .05s; }
.hero-title .word:nth-child(2) { animation-delay: .18s; }
.hero-title .word:nth-child(3) { animation-delay: .31s; }
.hero-title .word:nth-child(4) { animation-delay: .44s; }
.hero-title .word:nth-child(5) { animation-delay: .57s; }
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}
.hero-sub {
  margin-top: 28px;
  max-width: 480px;
  font-size: 17px; line-height: 1.6; color: var(--ink-soft);
  opacity: 0; animation: rise .9s .8s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-actions {
  margin-top: 40px;
  display: flex; gap: 14px; align-items: center;
  opacity: 0; animation: rise .9s 1s cubic-bezier(.2,.7,.2,1) forwards;
}
.btn-primary {
  background: var(--accent); color: var(--cream);
  padding: 16px 32px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform .25s, box-shadow .25s, background .25s;
  box-shadow: 0 10px 30px -10px rgba(184,81,58,0.6);
}
.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -10px rgba(184,81,58,0.7);
}
.btn-ghost {
  padding: 16px 24px; font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink);
}
.btn-ghost .play {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ink); color: var(--cream);
  display: grid; place-items: center;
  transition: transform .25s;
}
.btn-ghost:hover .play { transform: scale(1.1); }

.hero-meta {
  margin-top: 80px;
  display: flex; gap: 50px;
  opacity: 0; animation: rise .9s 1.2s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero-meta .stat-num {
  font-family: var(--serif);
  font-size: 38px;
  color: var(--ink);
  line-height: 1;
}
.hero-meta .stat-lbl {
  margin-top: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
}

/* ============ Hero mosaic ============ */
.mosaic {
  position: relative;
  height: 640px;
  z-index: 1;
}
.tile {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #ddd;
}
.tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s ease;
}
.tile:hover img { transform: scale(1.08); }

.tile.t1 { top: 0; left: 12%; width: 46%; height: 58%;
  animation: float1 9s ease-in-out infinite; }
.tile.t2 { top: 8%; right: 0; width: 36%; height: 42%;
  animation: float2 11s ease-in-out infinite; }
.tile.t3 { bottom: 0; left: 0; width: 38%; height: 44%;
  animation: float3 10s ease-in-out infinite; }
.tile.t4 { bottom: 6%; right: 8%; width: 42%; height: 48%;
  animation: float1 12s ease-in-out infinite reverse; }
.tile.t5 { top: 38%; left: 38%; width: 24%; height: 26%;
  animation: float2 8s ease-in-out infinite; z-index: 3; }

.tile-tag {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(6px);
  padding: 8px 14px; border-radius: 999px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-deep); font-weight: 500;
}
.tile-price {
  position: absolute; top: 12px; right: 12px;
  background: var(--ink); color: var(--cream);
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 16px;
  transform: rotate(-8deg);
}

@keyframes float1 {
  0%, 100% { transform: translate(0,0) rotate(0); }
  50% { transform: translate(-8px, -14px) rotate(-1.5deg); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0,0) rotate(0); }
  50% { transform: translate(10px, -10px) rotate(1.5deg); }
}
@keyframes float3 {
  0%, 100% { transform: translate(0,0) rotate(0); }
  50% { transform: translate(6px, 12px) rotate(2deg); }
}

/* Hero ornaments */
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: .5; z-index: 0;
}
.orb.a { width: 320px; height: 320px; background: var(--accent); top: -60px; right: 30%; }
.orb.b { width: 260px; height: 260px; background: var(--sage); bottom: -80px; left: 20%; opacity: .35;}

/* Ticker */
.ticker {
  position: relative; z-index: 2;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.ticker-track {
  display: flex; gap: 60px;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 60px; }
.ticker-track .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ============ Sections base ============ */
section { padding: 120px 48px; position: relative; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-bottom: 70px;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 500;
  max-width: 720px;
}
.section-head h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.section-head p {
  max-width: 360px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 15px;
}
