@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 600 800;
  font-display: optional;
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: Syne;
  font-style: normal;
  font-weight: 700 800;
  font-display: optional;
  src: url("/assets/fonts/syne-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
  --bg: #08090d;
  --card: #12151c;
  --line: rgba(255,255,255,.08);
  --text: #f4efe6;
  --muted: #9aa3b2;
  --copper: #e8944a;
  --copper2: #f3b16a;
  --ink: #1a1208;
  --radius: 1.15rem;
  color-scheme: dark;
}
html[data-theme="light"] {
  --bg: #f6f0e6;
  --card: #fffdf8;
  --line: rgba(15,23,42,.1);
  --text: #141820;
  --muted: #5b6573;
  --copper: #c2410c;
  --copper2: #ea580c;
  --ink: #fff;
  color-scheme: light;
}
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
.wrap { width: min(1180px, calc(100% - 2rem)); margin-inline: auto; }

.top {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .85rem 0;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex; align-items: baseline; gap: .5rem;
  font-family: Syne, sans-serif; font-weight: 800; letter-spacing: .08em;
}
.brand b { color: var(--copper); }
.brand small { font-size: .68rem; letter-spacing: .14em; color: var(--muted); font-weight: 700; }
.top-actions { display: flex; gap: .5rem; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 640px) {
  .top { flex-wrap: wrap; }
  .brand { flex-wrap: wrap; }
  .brand small { width: 100%; }
  .top-actions { width: 100%; }
  .top-actions .btn { padding: .45rem .7rem; font-size: .78rem; }
}
.icon-btn, .btn {
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text);
  border-radius: 999px;
  padding: .55rem .9rem;
  font-weight: 800;
  font-size: .85rem;
}
.btn-copper { background: var(--copper); color: var(--ink); border-color: transparent; }
.btn-ghost { background: transparent; }

.hero {
  position: relative;
  padding: 3.2rem 0 2.4rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: -20% 20% auto -10%;
  height: 28rem;
  background: radial-gradient(circle at 30% 30%, rgba(232,148,74,.28), transparent 62%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.kicker {
  font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--copper); margin: 0 0 .7rem;
}
.hero h1 {
  font-family: Syne, sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: .92;
  letter-spacing: -.04em;
  margin: 0 0 .85rem;
  max-width: 12ch;
}
.lede { margin: 0; color: var(--muted); font-size: 1.08rem; line-height: 1.5; max-width: 34rem; }
.cta { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.35rem; }
.hero-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem;
  align-self: center;
  align-content: start;
}
.hero-mosaic a {
  display: block;
  border-radius: .9rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  min-height: 0;
}
.hero-mosaic img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}
@media (max-width: 900px) {
  .hero-mosaic { display: none; }
}

.section { padding: 3.2rem 0 1.2rem; }
h2 {
  font-family: Syne, sans-serif;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  letter-spacing: -.03em;
  margin: 0 0 1.2rem;
}
.places {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}
@media (max-width: 800px) { .places { grid-template-columns: 1fr; } }
.place {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 0;
}
@media (max-width: 640px) { .place { grid-template-columns: 1fr; } }
.place img {
  width: 100%; height: 100%; min-height: 160px;
  object-fit: cover; object-position: top center;
}
.place .copy { padding: 1.15rem 1.2rem 1.25rem; display: flex; flex-direction: column; }
.place h3 { font-family: Syne, sans-serif; font-size: 1.15rem; margin: 0 0 .35rem; }
.place p { margin: 0 0 .8rem; color: var(--muted); font-size: .9rem; line-height: 1.45; }
.place .go { margin-top: auto; color: var(--copper); font-weight: 800; font-size: .85rem; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.2rem 1.25rem;
}
.step .n {
  font-family: Syne, sans-serif; color: var(--copper);
  font-size: 1.6rem; line-height: 1; margin-bottom: .45rem;
}
.step h3 { margin: 0 0 .3rem; font-size: 1.02rem; }
.step p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.45; }

.not {
  display: grid; grid-template-columns: 1fr 1fr; gap: .7rem;
}
@media (max-width: 700px) { .not { grid-template-columns: 1fr; } }
.not div {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1rem 1.1rem; background: var(--card);
}
.not strong { display: block; margin-bottom: .25rem; }
.not p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.45; }

.faq { max-width: 40rem; }
.faq h3 { font-size: 1.05rem; margin: 1.15rem 0 .3rem; }
.faq p { color: var(--muted); margin: 0; line-height: 1.5; }
.faq a { color: var(--copper); font-weight: 800; }

.foot {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .8rem;
  padding: 2rem 0; margin-top: 2rem; border-top: 1px solid var(--line);
  color: var(--muted); font-size: .82rem;
}
.foot a { color: var(--copper); font-weight: 800; }
