:root {
  --bg: #0c0b0a;
  --bg-warm: #141210;
  --fg: #f5f0e8;
  --fg-muted: #a09888;
  --gold: #c9a96e;
  --gold-light: #dfc090;
  --gold-dim: #8a7348;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, #0f1a2a 0%, #0c0b0a 70%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 200%;
  background: radial-gradient(ellipse at 50% 30%, rgba(201,169,110,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(201,169,110,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(100,140,180,0.03) 0%, transparent 50%);
  pointer-events: none;
}

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

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

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--fg-muted);
  margin-bottom: 3rem;
}

.hero-detail p {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 2;
  letter-spacing: 0.02em;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
}

/* ── Philosophy ── */
.philosophy {
  padding: 8rem 2rem;
  background: var(--bg);
}

.philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.philosophy-label,
.experiences-label,
.destinations-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.philosophy h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--fg);
  margin-bottom: 3rem;
  max-width: 700px;
}

.philosophy-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.philosophy-col p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.9;
}

/* ── Experiences ── */
.experiences {
  padding: 6rem 2rem 8rem;
  background: var(--bg-warm);
}

.experiences-header {
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.experiences h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--fg);
}

.experiences-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.exp-card {
  background: rgba(201,169,110,0.04);
  border: 1px solid rgba(201,169,110,0.1);
  padding: 2.5rem 2rem;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}

.exp-card:hover {
  border-color: rgba(201,169,110,0.25);
  background: rgba(201,169,110,0.07);
}

.exp-card-tall {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.exp-number {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
  margin-bottom: 1.5rem;
}

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

.exp-card p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

/* ── Destinations ── */
.destinations {
  padding: 8rem 2rem;
  background: var(--bg);
}

.destinations-inner {
  max-width: 900px;
  margin: 0 auto;
}

.destinations h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 300;
  color: var(--fg);
  line-height: 1.3;
  margin-bottom: 4rem;
}

.dest-list {
  display: flex;
  flex-direction: column;
}

.dest-item {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  padding: 1.5rem 0;
}

.dest-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold-light);
  min-width: 160px;
  flex-shrink: 0;
}

.dest-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

.dest-divider {
  height: 1px;
  background: linear-gradient(to right, rgba(201,169,110,0.15), transparent 80%);
}

/* ── Closing ── */
.closing {
  padding: 10rem 2rem;
  background: linear-gradient(180deg, var(--bg) 0%, #0f1a2a 100%);
  text-align: center;
}

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

.closing h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--fg);
  margin-bottom: 2rem;
}

.closing-sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.9;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.closing-actions {
  margin-top: 3rem;
}

/* ── Nav ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(to bottom, rgba(12,11,10,0.85) 0%, transparent 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.nav-brand {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--fg);
}

.nav-cta {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid rgba(201,169,110,0.35);
  padding: 0.55rem 1.4rem;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease);
}

.nav-cta:hover {
  border-color: var(--gold);
  color: var(--fg);
  background: rgba(201,169,110,0.08);
}

/* ── Hero CTA Button ── */
.hero-actions {
  margin-top: 3rem;
}

.btn-hero {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid rgba(201,169,110,0.45);
  padding: 1rem 2.5rem;
  transition: border-color 0.35s var(--ease), color 0.35s var(--ease), background 0.35s var(--ease);
}

.btn-hero:hover {
  border-color: var(--gold);
  color: var(--fg);
  background: rgba(201,169,110,0.08);
}

/* ── Inquiry Form ── */
.inquiry {
  padding: 8rem 2rem 10rem;
  background: var(--bg-warm);
  border-top: 1px solid rgba(201,169,110,0.08);
}

.inquiry-inner {
  max-width: 760px;
  margin: 0 auto;
}

.inquiry-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.inquiry h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--fg);
  margin-bottom: 1.25rem;
}

.inquiry-intro {
  font-size: 0.93rem;
  color: var(--fg-muted);
  line-height: 1.9;
  margin-bottom: 3.5rem;
  max-width: 580px;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.form-row {
  display: grid;
  gap: 1.5rem;
}

.form-row-2 {
  grid-template-columns: 1fr 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-group label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.form-group .req {
  color: var(--gold);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,169,110,0.15);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 0.93rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.form-group input[type="date"] {
  color-scheme: dark;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a7348' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(160,152,136,0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,169,110,0.45);
  background: rgba(201,169,110,0.04);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.7;
}

/* Checkbox grid */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.5rem;
  margin-top: 0.25rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--fg-muted);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 300;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,169,110,0.2);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
  position: relative;
  padding: 0;
}

.checkbox-label input[type="checkbox"]:checked {
  background: rgba(201,169,110,0.15);
  border-color: var(--gold-dim);
}

.checkbox-label input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--gold);
  line-height: 16px;
  text-align: center;
  width: 100%;
}

/* Submit button */
.form-footer {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.btn-submit {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(201,169,110,0.45);
  padding: 1rem 2.5rem;
  cursor: pointer;
  transition: border-color 0.35s var(--ease), color 0.35s var(--ease), background 0.35s var(--ease);
}

.btn-submit:hover:not(:disabled) {
  border-color: var(--gold);
  color: var(--fg);
  background: rgba(201,169,110,0.08);
}

.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-note {
  font-size: 0.78rem;
  color: var(--fg-muted);
  opacity: 0.6;
  line-height: 1.5;
}

/* Success + error states */
.form-success {
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid rgba(201,169,110,0.2);
  background: rgba(201,169,110,0.04);
  margin-top: 1rem;
}

.success-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.form-success h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.form-success p {
  font-size: 0.88rem;
  color: var(--fg-muted);
}

.form-error {
  padding: 1rem 1.25rem;
  background: rgba(200,60,60,0.08);
  border: 1px solid rgba(200,60,60,0.2);
  font-size: 0.88rem;
  color: #e87878;
  line-height: 1.6;
  margin-top: -0.5rem;
}

/* ── Footer ── */
.site-footer {
  padding: 4rem 2rem;
  background: var(--bg);
  text-align: center;
  border-top: 1px solid rgba(201,169,110,0.08);
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1.5rem;
}

.footer-contact {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .philosophy-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .experiences-grid {
    grid-template-columns: 1fr;
  }

  .exp-card-tall {
    grid-row: span 1;
  }

  .exp-card-wide {
    grid-column: span 1;
  }

  .dest-item {
    flex-direction: column;
    gap: 0.5rem;
  }

  .dest-name {
    min-width: auto;
  }

  .hero h1 {
    letter-spacing: 0.04em;
  }

  .philosophy,
  .destinations {
    padding: 5rem 1.5rem;
  }

  .experiences {
    padding: 4rem 1.5rem 5rem;
  }

  .closing {
    padding: 6rem 1.5rem;
  }

  .site-nav {
    padding: 1rem 1.5rem;
  }

  .nav-cta {
    font-size: 0.65rem;
    padding: 0.5rem 1rem;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .form-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .inquiry {
    padding: 5rem 1.5rem 6rem;
  }
}