:root {
  --bg: #0a1628;
  --water: #1b6ca8;
  --gold: #d4a853;
  --text: #f4f7fb;
  --muted: #9eb4c8;
  --card: rgba(14, 30, 52, 0.92);
  --max: 1080px;
  --pad: clamp(20px, 4vw, 40px);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: radial-gradient(ellipse at 20% 0%, #142a45 0%, var(--bg) 55%);
  color: var(--text);
  line-height: 1.55;
}

a { color: var(--gold); }

img { max-width: 100%; display: block; }

.margin-dots {
  position: absolute;
  right: 18px;
  top: 50vh;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 20;
  pointer-events: none;
}

.margin-dots .dot {
  pointer-events: auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--muted);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.margin-dots .dot.is-active,
.margin-dots .dot:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.15);
}

.section {
  padding: clamp(48px, 8vw, 96px) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}

.intro { max-width: 38rem; margin-bottom: 2rem; }
.intro-left { margin-right: auto; text-align: left; }
.intro-right { margin-left: auto; text-align: right; }

.intro h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--gold);
}

.intro p { margin: 0; color: var(--muted); }

.hero {
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: var(--pad);
  padding-bottom: clamp(48px, 10vw, 96px);
  position: relative;
  overflow: hidden;
}

.hero-collage {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.collage-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72);
}

.collage-piece {
  position: absolute;
  border: 3px solid rgba(212, 168, 83, 0.55);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  object-fit: cover;
}

.collage-a {
  width: min(34vw, 220px);
  height: min(34vw, 220px);
  top: 12%;
  right: 8%;
  transform: rotate(4deg);
}

.collage-b {
  width: min(28vw, 180px);
  height: min(28vw, 180px);
  bottom: 22%;
  left: 6%;
  transform: rotate(-6deg);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  background: var(--card);
  padding: clamp(20px, 4vw, 32px);
  border-radius: 18px;
  border: 1px solid rgba(212, 168, 83, 0.35);
  backdrop-filter: blur(8px);
}

.hero-copy .eyebrow {
  margin: 0 0 0.35rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--gold);
}

.hero-copy h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
}

.hero-copy .tagline {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.numbered-steps .steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.numbered-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--card);
  border: 1px solid rgba(27, 108, 168, 0.35);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
}

.step-num {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--water);
  color: var(--text);
  font-weight: 700;
}

.numbered-steps h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
}

.numbered-steps p {
  margin: 0;
  color: var(--muted);
}

.carousel-peek .carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0 1rem;
  scrollbar-width: thin;
}

.carousel-track figure {
  flex: 0 0 min(78vw, 280px);
  margin: 0;
  scroll-snap-align: start;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(212, 168, 83, 0.4);
  background: #061018;
}

.carousel-track img {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  object-position: top;
}

.carousel-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 1.4rem;
  cursor: pointer;
}

.legal-block {
  background: var(--card);
  border: 1px solid rgba(27, 108, 168, 0.3);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
}

.legal-block summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
}

.legal-body {
  margin-top: 0.75rem;
  color: var(--muted);
}

.legal-body p { margin: 0 0 0.75rem; }

.site-footer {
  text-align: center;
  padding: 2rem var(--pad) 3rem;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .margin-dots { right: 10px; gap: 10px; }
  .collage-a, .collage-b { display: none; }
  .intro-right { text-align: left; margin-left: 0; }
}
