:root {
  --bg: #071412;
  --bg-soft: #10211d;
  --surface: rgba(12, 31, 27, 0.78);
  --surface-strong: #0f1f1c;
  --line: rgba(212, 173, 104, 0.18);
  --text: #f6f0e8;
  --muted: rgba(246, 240, 232, 0.74);
  --gold: #d4ad68;
  --gold-soft: #f3d6a0;
  --green: #12342d;
  --green-deep: #081715;
  --container: min(1240px, calc(100vw - 40px));
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  background:
    radial-gradient(circle at top, rgba(28, 63, 54, 0.35), transparent 25%),
    linear-gradient(180deg, #050d0c 0%, #081513 40%, #0c1715 100%);
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0 0;
}

.nav-shell {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 18, 16, 0.72);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
}

.site-header.is-scrolled .nav-shell {
  background: rgba(6, 18, 16, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #081310;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.brand-copy {
  display: grid;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.site-nav a {
  padding: 11px 16px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--muted);
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--text);
  background: rgba(212, 173, 104, 0.12);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero-section,
.page-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.page-hero {
  min-height: 72vh;
}

.hero-backdrop,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(4, 13, 11, 0.24) 0%, rgba(4, 13, 11, 0.72) 54%, #081412 100%),
    linear-gradient(90deg, rgba(6, 16, 14, 0.78) 0%, rgba(6, 16, 14, 0.22) 58%, rgba(6, 16, 14, 0.72) 100%);
}

.hero-layout,
.page-hero .container {
  position: relative;
  z-index: 1;
  padding-top: 140px;
  padding-bottom: 80px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
  gap: 30px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  max-width: 10ch;
}

.hero-text,
.section-copy p,
.visual-content p,
.contact-details p,
.contact-list a,
.form-note,
.glass-card h3,
.hero-card p,
.timeline-copy p,
.stat-line span {
  color: var(--muted);
  line-height: 1.8;
}

.hero-text {
  max-width: 56ch;
  margin-top: 18px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-gold {
  color: #0a130f;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
}

.btn-ghost {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.hero-card,
.quote-card,
.info-panel,
.glass-card,
.cta-panel,
.timeline-copy,
.contact-details,
.enquiry-form,
.story-card,
.stat-line {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 39, 34, 0.78), rgba(8, 20, 18, 0.92));
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.hero-card-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.hero-card p {
  margin-top: 16px;
}

.hero-metrics {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.hero-metrics strong,
.story-card strong {
  display: block;
  color: var(--gold-soft);
  font-family: "Playfair Display", serif;
  font-size: 2rem;
}

.section {
  padding: 110px 0;
}

.section-head {
  margin-bottom: 34px;
}

.section-head h2,
.section-copy h2,
.contact-details h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  max-width: 12ch;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.quote-card,
.info-panel {
  padding: 34px;
  border-radius: var(--radius-lg);
}

.quote-card p {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.3;
}

.project-preview-grid,
.visual-blocks,
.grid-three,
.story-stack {
  display: grid;
  gap: 24px;
}

.project-preview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-tile,
.visual-block {
  position: relative;
  min-height: 560px;
  display: block;
  overflow: hidden;
  border-radius: 30px;
  text-decoration: none;
  background: #0d1b18;
  box-shadow: var(--shadow);
}

.visual-block {
  min-height: 520px;
}

.tile-image,
.tile-overlay,
.tile-content,
.visual-media,
.visual-content {
  position: absolute;
  inset: 0;
}

.tile-image,
.visual-media {
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 320ms ease;
}

.tile-overlay {
  background: linear-gradient(180deg, rgba(9, 19, 17, 0.14) 0%, rgba(8, 18, 16, 0.28) 35%, rgba(8, 18, 16, 0.92) 100%);
}

.tile-content,
.visual-content {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.project-tile:hover .tile-image,
.visual-block:hover .visual-media {
  transform: scale(1.08);
}

.tile-content p,
.visual-content .eyebrow {
  color: var(--gold);
  font-weight: 700;
}

.tile-content h3,
.visual-content h2 {
  font-size: clamp(2rem, 3vw, 3.3rem);
  margin-top: 10px;
}

.tile-content span {
  margin-top: 16px;
  color: var(--text);
  font-size: 0.95rem;
}

.cta-band {
  padding-top: 0;
}

.cta-panel {
  padding: 42px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-panel h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  max-width: 14ch;
}

.visual-hero .container {
  padding-top: 180px;
}

.visual-blocks {
  grid-template-columns: 1fr;
}

.visual-content {
  background: linear-gradient(180deg, rgba(8, 18, 16, 0) 0%, rgba(8, 18, 16, 0.84) 72%, rgba(8, 18, 16, 0.96) 100%);
}

.visual-content p {
  max-width: 52ch;
}

.section-dark {
  background: linear-gradient(180deg, rgba(9, 22, 19, 0.3), rgba(4, 10, 9, 0.64));
}

.grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.glass-card,
.story-card,
.timeline-copy,
.contact-details,
.enquiry-form {
  padding: 30px;
  border-radius: 28px;
}

.glass-card h3 {
  font-size: 1.7rem;
}

.site-footer {
  padding: 34px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.footer-grid p {
  color: var(--muted);
}

.footer-grid a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 8px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-list a {
  text-decoration: none;
}

.enquiry-form {
  display: grid;
  gap: 16px;
}

.enquiry-form label {
  display: grid;
  gap: 8px;
}

.enquiry-form span {
  color: var(--gold-soft);
}

.enquiry-form input,
.enquiry-form textarea,
.enquiry-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.enquiry-form select {
  appearance: none;
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  color: #07110f;
  background: linear-gradient(135deg, #25d366, #9ef0b7);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
  text-decoration: none;
  font-weight: 700;
}

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

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

.story-section {
  position: relative;
  overflow: hidden;
}

.story-banner {
  min-height: 100vh;
}

.story-intro {
  position: relative;
  z-index: 1;
  padding: 180px 0 80px;
}

.story-intro h1 {
  max-width: 11ch;
}

.story-stack {
  grid-template-columns: 1fr;
}

.story-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

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

.story-visual {
  min-height: 520px;
  border-radius: 30px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.story-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-card h2 {
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  margin-top: 10px;
}

.story-card p {
  color: var(--muted);
  line-height: 1.85;
}

.stat-line {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  margin-top: 18px;
}

.stat-line strong {
  color: var(--gold-soft);
}

.config-grid,
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.image-wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.image-wall-card {
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 39, 34, 0.78), rgba(8, 20, 18, 0.92));
  box-shadow: var(--shadow);
}

.image-wall-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-wall-wide {
  grid-column: span 2;
}

.config-grid .story-card,
.amenity-grid .story-card {
  min-height: 220px;
}

@media (max-width: 1100px) {
  .hero-layout,
  .split-grid,
  .cta-panel,
  .contact-layout,
  .story-row,
  .story-row.reverse,
  .project-preview-grid,
  .grid-three,
  .config-grid,
  .amenity-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel,
  .footer-grid {
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(1240px, calc(100vw - 24px));
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: 86px 12px auto;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: rgba(6, 18, 16, 0.98);
    flex-direction: column;
    align-items: stretch;
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 4.6rem);
  }

  .hero-layout,
  .page-hero .container,
  .story-intro {
    padding-top: 140px;
    padding-bottom: 56px;
  }

  .section {
    padding: 72px 0;
  }

  .project-tile,
  .visual-block,
  .story-visual {
    min-height: 420px;
  }

  .image-wall,
  .image-wall-wide {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-width: 118px;
  }
}
