@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy: #071526;
  --navy-2: #0a1f3d;
  --ink: #14110c;
  --muted: #6d675c;
  --cream: #f4f2ec;
  --sand: #e7e2d8;
  --gold: #fcb853;
  --gold-ink: #3d2c0c;
  --accent: #b8811f;
  --line: rgba(255,255,255,.14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.grain {
  pointer-events: none;
  position: fixed; inset: 0; z-index: 8;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.nav {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; gap: 28px;
  padding: 10px 28px;
  background: rgba(7, 21, 38, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-brand img { height: 54px; width: auto; }
.nav-links { display: flex; gap: 22px; margin-left: 8px; }
.nav-links a {
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--gold); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.langs { display: flex; gap: 4px; }
.lang {
  border: 1px solid rgba(255,255,255,.28);
  background: transparent;
  color: #fff;
  border-radius: 6px;
  padding: 4px 7px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}
.lang.on { background: var(--gold); color: var(--gold-ink); border-color: var(--gold); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s ease, filter .15s ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.04); }
.btn-gold { background: var(--gold); color: var(--gold-ink); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid #d9d2c4;
}
.btn-full { width: 100%; }
.nav-wa { padding: 9px 16px; font-size: 13px; }

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    url('/static/images/hero-valencia-artes.jpg') center 35%/cover no-repeat;
  transform: scale(1.04);
  filter: saturate(.85) contrast(1.05);
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(5,14,28,.88) 0%, rgba(5,14,28,.62) 48%, rgba(5,14,28,.35) 100%),
    linear-gradient(180deg, rgba(5,14,28,.18) 0%, rgba(5,14,28,.55) 100%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0 72px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.eyebrow.dark { color: var(--accent); }
.hero-copy h1 {
  font-family: Fraunces, serif;
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -.03em;
}
.lede {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,.82);
  max-width: 34em;
}
.lede.light { color: rgba(255,255,255,.78); }
.hero-points {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 10px;
}
.hero-points li {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.9);
  font-size: 15px;
}
.hero-points i { color: var(--gold); font-size: 18px; }

.access {
  background: var(--cream);
  color: var(--ink);
  border-radius: 28px;
  padding: 28px 26px 24px;
  box-shadow: 0 30px 70px rgba(0,0,0,.28);
}
.access-kicker {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.access h2 {
  font-family: Fraunces, serif;
  font-size: 30px;
  margin: 6px 0 8px;
}
.access-lead { color: var(--muted); font-size: 14px; line-height: 1.5; margin-bottom: 18px; }
.access form { display: grid; gap: 12px; }
.access label { display: grid; gap: 6px; font-size: 12px; font-weight: 700; color: #3f3a32; }
.access label em { font-style: normal; font-weight: 500; color: var(--muted); }
.access input {
  width: 100%;
  border: 1px solid #ddd6c8;
  background: #fff;
  border-radius: 12px;
  padding: 12px 13px;
  font-size: 15px;
}
.access input:focus { outline: 2px solid rgba(252,184,83,.55); border-color: var(--gold); }
.form-msg { font-size: 13px; color: #9a3b2f; font-weight: 600; }
.access-or {
  display: flex; align-items: center; gap: 12px;
  margin: 14px 0 12px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.access-or::before, .access-or::after {
  content: ""; flex: 1; height: 1px; background: #e4ddd0;
}
.fine { margin-top: 12px; font-size: 12px; color: var(--muted); line-height: 1.45; }

.strip {
  background: var(--gold);
  color: var(--gold-ink);
  text-align: center;
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.how { padding: 88px 0; background: var(--cream); }
.sec-head { max-width: 640px; margin-bottom: 40px; }
.sec-head h2 {
  font-family: Fraunces, serif;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.12;
}
.sec-head p:last-child { margin-top: 10px; color: var(--muted); font-size: 16px; line-height: 1.5; }
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.steps li {
  background: #fff;
  border: 1px solid #e8e1d4;
  border-radius: 22px;
  padding: 26px 24px 28px;
}
.steps .n {
  font-family: Fraunces, serif;
  color: var(--accent);
  font-size: 22px;
}
.steps h3 { font-family: Fraunces, serif; font-size: 22px; margin: 10px 0 8px; }
.steps p { color: var(--muted); font-size: 14.5px; line-height: 1.55; }

.features { padding: 24px 0 96px; }
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cards article {
  background: #fff;
  border: 1px solid #e8e1d4;
  border-radius: 22px;
  padding: 24px 22px 26px;
}
.cards i {
  font-size: 24px;
  color: var(--accent);
  background: #f7edd6;
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.cards h3 { font-family: Fraunces, serif; font-size: 20px; margin-bottom: 8px; }
.cards p { color: var(--muted); font-size: 14px; line-height: 1.5; }

.luna {
  background: var(--navy-2);
  color: #fff;
  padding: 80px 0;
}
.luna-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}
.luna h2 {
  font-family: Fraunces, serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  margin-bottom: 12px;
}
.luna .btn { margin-top: 22px; }
.luna-list { list-style: none; display: grid; gap: 14px; }
.luna-list li {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  font-size: 15px;
}
.luna-list i { color: var(--gold); font-size: 20px; }

.foot {
  background: #050d18;
  color: rgba(255,255,255,.78);
  padding: 48px 0 24px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.foot-logo { height: 72px; width: auto; margin-bottom: 10px; }
.foot-h {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}
.foot a, .foot p { display: block; font-size: 14px; line-height: 1.7; }
.foot a:hover { color: #fff; }
.copy { text-align: center; padding-top: 18px; font-size: 12px; color: rgba(255,255,255,.45); }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero-grid, .luna-grid, .foot-grid, .steps, .cards {
    grid-template-columns: 1fr;
  }
  .hero-grid { padding: 36px 0 48px; gap: 28px; }
  .cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav { padding: 8px 14px; gap: 10px; }
  .nav-brand img { height: 44px; }
  .nav-wa span { display: none; }
  .langs { display: flex; }
  .cards, .steps { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: 36px; }
}
