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

:root {
  --ink:       #0d1b2a;
  --ink-soft:  #3d4f61;
  --ink-muted: #7a8a99;
  --snow:      #f7f9fb;
  --white:     #ffffff;
  --accent:    #c8a96e;   /* topographic amber — contour lines on old maps */
  --accent-dim:#e8d9b8;
  --border:    #dde3ea;
  --radius:    10px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--snow);
  color: var(--ink);
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 56px;
}
.nav-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-brand span { color: var(--accent); }
nav a.nav-cta {
  background: var(--accent);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity .2s;
}
nav a.nav-cta:hover { opacity: .85; }

/* ── HERO ── */
.hero {
  background: var(--ink);
  min-height: 40vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

/* map photo background */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

/* contour lines background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 38px,
      rgba(200,169,110,0.07) 38px,
      rgba(200,169,110,0.07) 39px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 38px,
      rgba(200,169,110,0.04) 38px,
      rgba(200,169,110,0.04) 39px
    );
  pointer-events: none;
}

.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 6vw, 72px);
  color: var(--white);
  line-height: 1.1;
  max-width: 820px;
  margin: 0 auto 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.7;
}
.hero-cta {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-primary {
  background: var(--accent);
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 5px;
  text-decoration: none;
  transition: opacity .2s;
}
.btn-primary:hover { opacity: .88; }
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 5px;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); color: white; }

/* ── PACK ── */
.section { padding: 88px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-lead {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 600px;
  margin-bottom: 56px;
  line-height: 1.75;
}

.pack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.pack-item {
  background: var(--white);
  padding: 40px 36px;
  position: relative;
}
.pack-item:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.pack-item:last-child  { border-radius: 0 var(--radius) var(--radius) 0; }
.pack-num {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 20px;
}
.pack-item h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}
.pack-item p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ── HOW IT WORKS ── */
.how { background: var(--ink); }
.how .section-title { color: var(--white); }
.how .section-label { color: var(--accent); }
.how .section-lead  { color: rgba(255,255,255,0.5); }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.step {
  border-top: 2px solid rgba(200,169,110,0.3);
  padding-top: 24px;
}
.step-n {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 14px;
}
.step h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.step p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* ── OFFERS ── */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.offer-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
}
.offer-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.offer-tag {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--accent);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.offer-name {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  margin-bottom: 8px;
}
.offer-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}
.offer-includes {
  list-style: none;
  margin-bottom: 28px;
}
.offer-includes li {
  font-size: 13px;
  color: var(--ink-soft);
  padding: 6px 0;
  border-bottom: 1px solid var(--snow);
  display: flex;
  gap: 8px;
}
.offer-includes li::before {
  content: '→';
  color: var(--accent);
  flex-shrink: 0;
}
.offer-price {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: auto;
}

/* ── PROOF ── */
.proof { background: var(--white); }
.proof-wrap {
  background: var(--ink);
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 700px) { .proof-wrap { grid-template-columns: 1fr; } }
.proof-img {
  aspect-ratio: 4/3;
  background: #1b263b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 13px;
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.08em;
}
.proof-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.proof-text {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.proof-text .section-label { margin-bottom: 16px; }
.proof-text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
}
.proof-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 28px;
}
.proof-text a {
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.proof-text a:hover { text-decoration: underline; }

/* ── CONTACT ── */
.contact { background: var(--snow); }
.contact-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 56px 48px;
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid var(--border);
  text-align: center;
}
.contact-box h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  margin-bottom: 12px;
}
.contact-box p {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 36px;
  line-height: 1.7;
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 6px;
  border: 1px solid var(--border);
  width: 100%;
  max-width: 320px;
  transition: border-color .2s, background .2s;
}
.contact-links a:hover {
  border-color: var(--accent);
  background: #fdf8f0;
}
.contact-links a .icon {
  font-size: 18px;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 32px 24px;
  font-size: 13px;
  line-height: 1.9;
}
footer strong { color: rgba(255,255,255,0.75); }

@media (max-width: 600px) {
  nav { padding: 0 20px; }
  .section { padding: 64px 20px; }
  .pack-item:first-child,
  .pack-item:last-child { border-radius: 0; }
  .contact-box { padding: 36px 24px; }
  .proof-text { padding: 32px 28px; }
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 4px;
  border-radius: 12px;
  overflow: hidden;
}
.gal-wide {
  grid-column: 1 / -1;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-height: 420px;
}
.gal-wide img { max-height: 480px; }
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gal-wide { grid-column: 1; }
}
