:root {
  --bg: #0b0e11;
  --bg-2: #0f1318;
  --bg-3: #161b22;
  --ink: #e9e5dc;
  --ink-soft: #b6b0a4;
  --ink-mute: #7a7569;
  --line: rgba(233, 229, 220, 0.12);
  --gold: #c9a96a;
  --gold-soft: #d9c08a;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --max: 1320px;
  --pad: clamp(20px, 4vw, 60px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--gold); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow.light { color: var(--gold-soft); }

.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(56px, 12vw, 180px);
  line-height: 0.92;
  letter-spacing: -0.02em;
}
.display-line { display: block; }
.display-line.accent {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5.2vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.headline.light { color: #fff; }

.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-soft);
  margin-top: 16px;
  max-width: 60ch;
}
.lead.light { color: rgba(255,255,255,0.78); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  border-radius: 0;
  cursor: pointer;
  transition: all .35s cubic-bezier(.2,.7,.2,1);
  background: transparent;
  color: var(--gold);
}
.btn-primary {
  background: var(--gold);
  color: #0b0e11;
}
.btn-primary:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: translateY(-2px);
  color: #0b0e11;
}
.btn-ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-block { display: flex; width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(11,14,17,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
}
.brand-name {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.18em;
  font-size: 14px;
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 12px 20px;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.nav-cta:hover { background: var(--gold); color: #0b0e11; }

.nav-toggle { display: none; background: none; border: 0; width: 32px; height: 32px; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; }
.nav-toggle span { display: block; height: 1px; background: var(--ink); transition: all .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: 1;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroPan 22s ease-out forwards;
}
@keyframes heroPan {
  to { transform: scale(1); }
}
.hero-vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,14,17,0.6) 0%, rgba(11,14,17,0.15) 35%, rgba(11,14,17,0.35) 65%, rgba(11,14,17,0.95) 100%),
    linear-gradient(90deg, rgba(11,14,17,0.7) 0%, rgba(11,14,17,0) 55%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 120px var(--pad) 80px;
}
.tagline {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  margin-top: 24px;
  max-width: 640px;
  line-height: 1.45;
}
.hero-meta {
  display: flex;
  gap: clamp(24px, 5vw, 64px);
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.18);
  max-width: 720px;
  flex-wrap: wrap;
}
.hero-meta > div { display: flex; flex-direction: column; gap: 4px; }
.meta-num {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 42px);
  color: #fff;
  line-height: 1;
}
.meta-unit {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 4px;
}
.meta-label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero-ctas {
  margin-top: 48px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.25);
  overflow: hidden;
}
.hero-scroll span {
  position: absolute;
  top: -60px;
  left: 0; right: 0;
  height: 60px;
  background: var(--gold);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: translateY(0); }
  100% { transform: translateY(120px); }
}

/* ---------- Sections ---------- */
.section { padding: clamp(80px, 12vw, 160px) 0; }

.section-head { text-align: center; margin-bottom: clamp(48px, 7vw, 80px); }
.section-head .lead { margin-left: auto; margin-right: auto; text-align: center; }

/* Intro */
.section-intro { background: var(--bg-2); }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.col-text .pillars {
  list-style: none;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
}
.pillars li {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.pillars strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--gold);
}
.pillars span {
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 2px;
}
.frame {
  position: relative;
  overflow: hidden;
}
.frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,169,106,0.25);
  pointer-events: none;
  transform: translate(14px, 14px);
}
.frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* Orbit */
.section-orbit {
  background: radial-gradient(ellipse at center, #14191f 0%, #07090b 80%);
  position: relative;
  overflow: hidden;
}
.orbit-header { text-align: center; margin-bottom: 56px; }
.orbit-header .lead { margin-left: auto; margin-right: auto; }
.orbit-stage {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6);
}
.orbit-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.orbit-overlay {
  position: absolute; inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit-ring {
  position: absolute;
  width: 60%;
  aspect-ratio: 1;
  border: 1px dashed rgba(201,169,106,0.18);
  border-radius: 50%;
  animation: orbitRing 22s linear infinite;
}
.orbit-ring-2 {
  width: 80%;
  border-color: rgba(201,169,106,0.08);
  animation-duration: 38s;
  animation-direction: reverse;
}
@keyframes orbitRing {
  to { transform: rotate(360deg); }
}
.orbit-caption {
  position: absolute;
  bottom: 18px; left: 18px;
  display: flex; gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
}
.orbit-caption span:first-child { color: var(--gold); }

/* Gallery */
.section-gallery { background: var(--bg); }
.grid-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.g { position: relative; overflow: hidden; display: block; }
.g img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.g:hover img { transform: scale(1.06); }
.g::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.5) 100%);
  opacity: 0; transition: opacity .4s;
}
.g:hover::after { opacity: 1; }
.g-1 { grid-column: span 4; grid-row: span 2; }
.g-2 { grid-column: span 2; grid-row: span 1; }
.g-3 { grid-column: span 2; grid-row: span 1; }
.g-4 { grid-column: span 3; grid-row: span 2; }
.g-5 { grid-column: span 3; grid-row: span 2; }

/* Features */
.section-features { background: var(--bg-2); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.feature {
  background: var(--bg-2);
  padding: 48px 36px;
  transition: background .4s;
  position: relative;
}
.feature:hover { background: var(--bg-3); }
.feature-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}
.feature h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 12px;
  color: #fff;
}
.feature p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

/* Specs */
.section-specs { background: var(--bg); }
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.spec-block {
  border-top: 1px solid var(--gold);
  padding-top: 28px;
}
.spec-block h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  color: #fff;
  margin-bottom: 20px;
}
.spec-block dl { display: grid; grid-template-columns: 1fr auto; gap: 10px 16px; }
.spec-block dt {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.spec-block dd {
  font-size: 14px;
  color: var(--ink);
  text-align: right;
  font-weight: 500;
}
.spec-price { background: var(--bg-3); padding: 28px; border-top: 1px solid var(--gold); }
.spec-price .price {
  font-family: var(--serif);
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 6px;
}
.spec-price p { font-size: 12px; color: var(--ink-mute); margin-bottom: 20px; }

/* Enquire */
.section-enquire {
  background:
    linear-gradient(180deg, rgba(11,14,17,0.85), rgba(11,14,17,0.85)),
    url("images/arctic.jpg") center/cover no-repeat;
  background-attachment: fixed;
}
.enquire-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.brokers { margin-top: 48px; display: grid; gap: 24px; }
.broker {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.broker-name {
  font-family: var(--serif);
  font-size: 24px;
  color: #fff;
}
.broker-role {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.broker-contact { display: flex; gap: 24px; margin-top: 12px; flex-wrap: wrap; }
.broker-contact a { color: rgba(255,255,255,0.78); font-size: 14px; }
.broker-contact a:hover { color: var(--gold); }

.enquire-form {
  background: rgba(15,19,24,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px;
  display: grid;
  gap: 18px;
}
.enquire-form h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  color: #fff;
  margin-bottom: 8px;
}
.enquire-form label {
  display: grid;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.enquire-form input,
.enquire-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-family: var(--sans);
  font-size: 15px;
  padding: 10px 0;
  outline: none;
  transition: border-color .25s;
}
.enquire-form input:focus,
.enquire-form textarea:focus { border-color: var(--gold); }
.form-sent {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.06em;
  margin-top: 8px;
  text-align: center;
}

/* Footer */
.footer {
  background: #07090b;
  padding: 64px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-inner { display: grid; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand strong {
  font-family: var(--serif);
  letter-spacing: 0.18em;
  display: block;
  color: #fff;
  font-weight: 500;
}
.footer-brand span {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-disclaimer, .footer-copy {
  font-size: 12px;
  color: var(--ink-mute);
  max-width: 80ch;
  line-height: 1.7;
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.menu-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(11,14,17,0.95);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px var(--pad);
    gap: 18px;
    border-bottom: 1px solid var(--line);
  }
  .two-col { grid-template-columns: 1fr; }
  .col-image { order: -1; }
  .frame img { aspect-ratio: 16/10; }
  .col-text .pillars { grid-template-columns: 1fr 1fr; }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .specs-grid { grid-template-columns: 1fr 1fr; }

  .grid-gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 150px; }
  .g-1 { grid-column: span 4; grid-row: span 2; }
  .g-2, .g-3 { grid-column: span 2; }
  .g-4, .g-5 { grid-column: span 2; grid-row: span 2; }

  .enquire-grid { grid-template-columns: 1fr; }
  .section-enquire { background-attachment: scroll; }
}

@media (max-width: 640px) {
  .hero { min-height: 640px; }
  .hero-meta { gap: 24px; padding-top: 24px; }
  .hero-meta > div { min-width: 70px; }
  .meta-num { font-size: 24px; }
  .hero-ctas .btn { padding: 14px 22px; font-size: 11px; }
  .features-grid { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 1fr; }
  .col-text .pillars { grid-template-columns: 1fr; }
  .enquire-form { padding: 28px 22px; }
  .feature { padding: 36px 24px; }
  .grid-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .g-1, .g-4, .g-5 { grid-column: span 2; grid-row: span 2; }
  .g-2, .g-3 { grid-column: span 1; grid-row: span 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
