@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #05070a;
  --navy: #071a2f;
  --ice: #f7f3ea;
  --muted: #aeb8c5;
  --gold: #c8a45d;
  --line: rgba(200,164,93,.24);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ice);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 78px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 72px);
  background: rgba(5, 7, 10, .72);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.brand {
  font-size: 18px;
  letter-spacing: .28em;
  font-weight: 700;
  color: var(--ice);
}

.nav { display: flex; gap: 34px; }

.nav a,
.header-cta {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .25s ease;
}

.nav a:hover { color: var(--gold); }

.header-cta {
  border: 1px solid var(--line);
  color: var(--gold);
  padding: 14px 18px;
  border-radius: 999px;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  padding: 140px 22px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(5,7,10,.38), rgba(5,7,10,.92)),
    radial-gradient(circle at 50% 18%, rgba(200,164,93,.16), transparent 34%),
    linear-gradient(135deg, rgba(7,26,47,.95), rgba(5,7,10,1));
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 35%, rgba(255,255,255,.05) 45%, transparent 55%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0 1px, transparent 1px 90px);
  opacity: .6;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 940px;
  text-align: center;
}

.eyebrow {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 22px;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  margin: 0;
}

h1 {
  font-size: clamp(56px, 11vw, 134px);
  line-height: .9;
  letter-spacing: -.035em;
}

h2 {
  font-size: clamp(42px, 6vw, 82px);
  line-height: .95;
  letter-spacing: -.025em;
}

h3 { font-size: 34px; line-height: 1; }

p {
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.85;
  font-weight: 300;
}

.hero-content p {
  max-width: 720px;
  margin: 30px auto 0;
}

.hero-actions {
  margin-top: 42px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 700;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.btn:hover { transform: translateY(-3px); }

.btn.primary { background: var(--gold); color: #071a2f; }

.btn.ghost { border: 1px solid var(--line); color: var(--ice); }

.scroll-mark {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .32em;
}

.section {
  padding: clamp(90px, 12vw, 160px) clamp(20px, 5vw, 72px);
  position: relative;
}

.intro {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.intro p {
  max-width: 760px;
  margin: 28px auto 0;
}

.section-head {
  max-width: 850px;
  margin: 0 auto 54px;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.card {
  min-height: 360px;
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(7,26,47,.78), rgba(255,255,255,.025));
  border: 1px solid rgba(200,164,93,.18);
  box-shadow: 0 30px 90px rgba(0,0,0,.34);
  transition: transform .35s ease, border-color .35s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(200,164,93,.55);
}

.card span {
  display: block;
  color: rgba(200,164,93,.44);
  font-family: "Cormorant Garamond", serif;
  font-size: 58px;
  margin-bottom: 38px;
}

.card p { font-size: 15px; }

.split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 52px;
  align-items: center;
  max-width: 1220px;
  margin: 0 auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.service-grid div {
  min-height: 96px;
  display: flex;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  background: rgba(255,255,255,.035);
  color: var(--ice);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 700;
}

.destination-strip {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.destination-strip span {
  padding: 17px 22px;
  border-radius: 999px;
  border: 1px solid rgba(200,164,93,.22);
  background: rgba(7,26,47,.6);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 11px;
  font-weight: 700;
}

.request-panel {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 86px);
  text-align: center;
  border-radius: 42px;
  border: 1px solid rgba(200,164,93,.22);
  background:
    radial-gradient(circle at 50% 0%, rgba(200,164,93,.18), transparent 36%),
    rgba(7,26,47,.72);
  box-shadow: 0 40px 120px rgba(0,0,0,.38);
}

.footer {
  min-height: 160px;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 36px 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.footer strong { color: var(--ice); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 880px) {
  .site-header { height: 72px; }
  .nav, .header-cta { display: none; }
  .hero { text-align: center; padding-top: 120px; }
  .cards, .split { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  .service-grid { grid-template-columns: 1fr; }
}
