:root {
  --navy: #0c1810;
  --navy-soft: #15241a;
  --gold: #c9a227;
  --gold-light: #e4c86a;
  --cream: #f6f0e4;
  --cream-muted: #d4cbb8;
  --amber: #b87333;
  --wood: #2a1d14;
  --text: #f6f0e4;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans 3", system-ui, sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, .serif {
  font-family: "Cinzel", "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0.04em;
}

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

a {
  color: var(--gold);
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  background: linear-gradient(180deg, rgba(12,24,16,0.94), rgba(12,24,16,0.55) 70%, transparent);
  backdrop-filter: blur(8px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}

.nav-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.nav-brand span {
  font-family: "Cinzel", serif;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
}

.nav-links a:hover {
  color: var(--gold-light);
  opacity: 1;
}

.nav-cta {
  border: 1px solid var(--gold);
  padding: 8px 16px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold) !important;
}

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  background: #000;
}

.hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,24,16,0.4) 0%, rgba(12,24,16,0.22) 35%, rgba(12,24,16,0.88) 100%),
    linear-gradient(90deg, rgba(12,24,16,0.5), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 0 80px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.eyebrow {
  color: var(--gold-light);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 16px;
  -webkit-text-stroke: 0.4px #000;
  paint-order: stroke fill;
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000,
     0 2px 10px rgba(0,0,0,0.85);
}

.hero h1 {
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.05;
  max-width: 16ch;
  margin-bottom: 18px;
  color: var(--cream);
  -webkit-text-stroke: 1.15px #000;
  paint-order: stroke fill;
  text-shadow:
    -2px -2px 0 #000,
     2px -2px 0 #000,
    -2px  2px 0 #000,
     2px  2px 0 #000,
     0 4px 16px rgba(0,0,0,0.9);
}

.hero p.lead {
  max-width: 46ch;
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 32px;
  -webkit-text-stroke: 0.55px #000;
  paint-order: stroke fill;
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000,
     0 3px 12px rgba(0,0,0,0.9);
}

.hero .btn-ghost {
  background: rgba(12,24,16,0.55);
  border-color: var(--gold);
  box-shadow: 0 0 0 1px #000;
  color: var(--cream);
  text-shadow: 0 1px 2px #000;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-block;
  padding: 14px 26px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  border: 1px solid var(--gold);
}

.btn-solid {
  background: var(--gold);
  color: var(--navy);
}

.btn-ghost {
  color: var(--cream);
}

/* SECTIONS */
section {
  padding: 96px 0;
}

.section-label {
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--cream);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.split img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border: 1px solid rgba(201,162,39,0.25);
}

.split img.product-shot {
  object-fit: contain;
  background: #050505;
  height: 620px;
}

.gallery-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.gallery-3 figure {
  margin: 0;
  background: #050505;
  border: 1px solid rgba(201,162,39,0.18);
}

.gallery-3 img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  background: #050505;
}

.gallery-3 figcaption {
  padding: 12px 14px 16px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

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

.product.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.product.featured img {
  height: 520px;
}

.crest {
  height: auto !important;
  object-fit: contain !important;
  background: #fff !important;
  padding: 24px;
}

.product {
  background: var(--navy-soft);
  border: 1px solid rgba(201,162,39,0.18);
}

.product img {
  width: 100%;
  height: 460px;
  object-fit: contain;
  background: #050505;
}

.product-copy {
  padding: 20px 22px 24px;
}

.product-copy h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--gold-light);
}

.product .tag {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.muted {
  color: var(--cream-muted);
}

.gold-rule {
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin: 20px 0;
}

/* PILARS */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pillar {
  background: var(--navy-soft);
  border: 1px solid rgba(201,162,39,0.18);
  padding: 28px 24px;
}

.pillar h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--gold-light);
}

/* RESORT GRID */
.resort-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.card {
  background: var(--navy-soft);
  border: 1px solid rgba(201,162,39,0.16);
  padding: 28px;
}

.card h3 {
  margin-bottom: 8px;
  color: var(--gold-light);
}

/* CONTACT */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

form {
  display: grid;
  gap: 14px;
}

input, textarea, select {
  width: 100%;
  background: #0a140e;
  border: 1px solid rgba(201,162,39,0.28);
  color: var(--cream);
  padding: 14px 16px;
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

button.btn {
  cursor: pointer;
  background: var(--gold);
  color: var(--navy);
  border: none;
  font-family: inherit;
}

footer {
  border-top: 1px solid rgba(201,162,39,0.18);
  padding: 40px 0 60px;
  color: var(--cream-muted);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  max-width: 420px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coming {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 11px;
  padding: 6px 12px;
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .split, .split.reverse, .pillars, .resort-grid, .contact-wrap, .gallery-3, .product-grid {
    grid-template-columns: 1fr;
  }
  .split img { height: 320px; }
  .split img.product-shot { height: 420px; }
  .gallery-3 img { height: 360px; }
  .product.featured { grid-template-columns: 1fr; }
  .product.featured img { height: 400px; }
  .hero { min-height: 88vh; }
  .hero h1 { -webkit-text-stroke: 0.9px #000; }
}
