:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --bg-card: #141414;
  --fg-primary: #f5f0eb;
  --fg-secondary: #a09890;
  --fg-muted: #6b6560;
  --accent: #c8a86e;
  --accent-light: #dfc99a;
  --accent-dark: #9e7e44;
  --border: rgba(200, 168, 110, 0.15);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg-primary);
  color: var(--fg-primary);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== NAV ===== */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 3rem;
  z-index: 10;
}

.logo {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--accent);
}

.nav-tagline {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding-top: 0.35rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 3rem 4rem;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200, 168, 110, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(200, 168, 110, 0.03) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 1px,
    rgba(200, 168, 110, 0.015) 1px,
    rgba(200, 168, 110, 0.015) 2px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-kicker {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--fg-primary);
  margin-bottom: 2rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-family: var(--sans);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--fg-secondary);
  max-width: 560px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg-muted);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

/* ===== SECTION COMMON ===== */
.section-kicker {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--fg-primary);
}

/* ===== SERVICES ===== */
.services {
  padding: 8rem 3rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
}

.services-header {
  margin-bottom: 5rem;
  max-width: 600px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-subtle);
}

.service-card {
  background: var(--bg-secondary);
  padding: 3rem 2.5rem;
  transition: background 0.4s ease;
}

.service-card:hover {
  background: var(--bg-tertiary);
}

.service-icon {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--fg-primary);
  margin-bottom: 1rem;
}

.service-card p {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--fg-secondary);
}

/* ===== DIFFERENCE ===== */
.difference {
  padding: 8rem 3rem;
  background: var(--bg-primary);
}

.difference-content {
  max-width: 900px;
}

.difference-content .section-title {
  margin-bottom: 4rem;
}

.difference-grid {
  display: grid;
  gap: 0;
}

.diff-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.diff-number {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-dark);
  line-height: 1;
  padding-top: 0.25rem;
}

.diff-text h4 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg-primary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.diff-text p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--fg-secondary);
}

/* ===== DESTINATIONS ===== */
.destinations {
  padding: 8rem 3rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
}

.destinations-header {
  margin-bottom: 4rem;
}

.destinations-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.dest-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  min-height: 280px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: flex-end;
  transition: border-color 0.4s ease;
}

.dest-card:hover {
  border-color: var(--border);
}

.dest-card.dest-wide {
  grid-column: span 2;
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.85) 100%);
  pointer-events: none;
}

.dest-info {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.dest-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}

.dest-info h3 {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--fg-primary);
  margin-bottom: 0.5rem;
}

.dest-info p {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--fg-secondary);
  line-height: 1.5;
}

/* ===== CLOSING ===== */
.closing {
  padding: 10rem 3rem;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(200, 168, 110, 0.05) 0%, transparent 70%),
    var(--bg-primary);
  text-align: center;
}

.closing-content {
  max-width: 700px;
  margin: 0 auto;
}

.closing-headline {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--fg-primary);
  margin-bottom: 2rem;
}

.closing-text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--fg-secondary);
  margin-bottom: 3rem;
}

.closing-accent {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 2rem;
}

.closing-tagline {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  color: var(--accent-light);
  letter-spacing: 0.05em;
}

/* ===== FOOTER ===== */
.footer {
  padding: 4rem 3rem 2rem;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand {
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.footer-description {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--fg-muted);
  max-width: 320px;
}

.footer-links {
  display: flex;
  gap: 5rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-secondary);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--fg-muted);
  padding: 0.35rem 0;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.footer-bottom p {
  font-size: 0.7rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .destinations-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
  .dest-card.dest-wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 1.5rem 1.5rem;
  }
  .hero {
    padding: 5rem 1.5rem 3rem;
  }
  .hero-scroll-hint {
    display: none;
  }
  .services,
  .difference,
  .destinations,
  .closing,
  .footer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 2rem 1.5rem;
  }
  .diff-item {
    grid-template-columns: 50px 1fr;
    gap: 1rem;
    padding: 2rem 0;
  }
  .diff-number {
    font-size: 2rem;
  }
  .destinations-showcase {
    grid-template-columns: 1fr;
  }
  .dest-card.dest-wide {
    grid-column: span 1;
  }
  .closing {
    padding: 6rem 1.5rem;
  }
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
}