:root {
  --bg: #090909;
  --bg-soft: #121212;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f5f1e8;
  --muted: #c7beae;
  --gold: #d7b46a;
  --gold-2: #f1d89d;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.page-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(215, 180, 106, 0.18), transparent 25%),
    radial-gradient(circle at 82% 10%, rgba(215, 180, 106, 0.08), transparent 20%),
    linear-gradient(180deg, #0a0a0a 0%, #090909 40%, #0d0d0d 100%);
  z-index: -2;
}

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

.section {
  padding: 110px 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-2);
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2,
.hero h1,
.split-copy h2,
.cta-band h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.section-heading h2,
.split-copy h2,
.cta-band h2,
.contact-copy h2 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  margin-bottom: 18px;
}

.section-heading p,
.split-copy p,
.contact-copy p,
.hero-text {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(7, 7, 7, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.brand strong,
.brand span {
  display: block;
}

.brand strong {
  font-size: 1.08rem;
}

.brand span {
  font-size: 0.85rem;
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  color: var(--muted);
  transition: color 0.25s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(215, 180, 106, 0.35);
  color: var(--text) !important;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  border-radius: 14px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  padding-top: 70px;
}

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

.hero h1 {
  font-size: clamp(3.8rem, 7vw, 7rem);
  margin-bottom: 18px;
}

.hero h1 span {
  color: var(--gold-2);
}

.hero-text {
  max-width: 670px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 24px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #f0cf8a);
  color: #111;
  box-shadow: 0 18px 40px rgba(215, 180, 106, 0.2);
}

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

.btn-full {
  width: 100%;
}

.hero-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.hero-points li::before,
.contact-badges span::before {
  content: "✦";
  color: var(--gold-2);
  margin-right: 10px;
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.hero-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.hero-card img,
.gallery-card img,
.stacked-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-main-image {
  position: absolute;
  inset: 40px 70px 90px 0;
}

.hero-side-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 44%;
  aspect-ratio: 0.78;
}

.hero-badge {
  position: absolute;
  left: 24px;
  bottom: 26px;
  max-width: 280px;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(10, 10, 10, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.hero-badge strong,
.hero-badge span {
  display: block;
}

.hero-badge span {
  color: var(--muted);
  font-size: 0.92rem;
}

.stats-strip {
  padding-top: 10px;
}

.stats-grid,
.features-grid,
.footer-grid,
.location-grid,
.contact-grid,
.split-grid {
  display: grid;
  gap: 22px;
}

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

.stats-grid article,
.feature-card,
.location-card,
.map-card,
.contact-form,
.quote-box {
  border-radius: var(--radius-lg);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stats-grid article {
  padding: 28px;
}

.stats-grid strong,
.feature-card h3,
.location-card h3,
.footer-grid h3 {
  font-size: 1.15rem;
}

.stats-grid p,
.feature-card p,
.footer-copy,
.footer-list,
.contact-list {
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.7) 100%);
}

.gallery-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  font-size: 0.95rem;
}

.dark-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}

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

.feature-card {
  position: relative;
  padding: 34px;
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(215, 180, 106, 0.12);
  color: var(--gold-2);
  font-weight: 800;
}

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

.quote-box {
  margin-top: 28px;
  padding: 24px;
}

.quote-box strong {
  display: block;
  margin-bottom: 6px;
}

.quote-box p {
  margin: 0;
}

.split-visual {
  position: relative;
  min-height: 620px;
}

.stacked-photo {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.stacked-photo.large {
  inset: 0 120px 0 0;
}

.stacked-photo.small {
  right: 0;
  bottom: 28px;
  width: 40%;
  aspect-ratio: 0.84;
}

.cta-band {
  padding-top: 30px;
  padding-bottom: 30px;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.14), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(215, 180, 106, 0.16);
  box-shadow: var(--shadow);
}

.location-grid,
.contact-grid {
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
}

.location-card,
.map-card,
.contact-form {
  padding: 32px;
}

.contact-list,
.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li,
.footer-list li {
  margin-bottom: 10px;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.map-card {
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  min-height: 100%;
  height: 420px;
  border: 0;
  border-radius: 18px;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 24px;
  color: var(--muted);
}

.form-row {
  margin-bottom: 18px;
}

.form-row.two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 15px 16px;
  outline: none;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

input::placeholder,
textarea::placeholder {
  color: #9f9687;
}

input:focus,
textarea:focus {
  border-color: rgba(215, 180, 106, 0.7);
  background: rgba(255, 255, 255, 0.06);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 8px 0 22px;
  color: var(--muted);
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

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

.footer-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: start;
}

.footer-copy {
  max-width: 360px;
}

.footer-brand {
  margin-bottom: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal.reveal-delay-2 {
  transition-delay: 0.2s;
}

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

.floating-card {
  animation: float 7s ease-in-out infinite;
}

.floating-card-delay {
  animation-delay: 1.1s;
}

.pulse {
  animation: pulse 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25); }
  50% { box-shadow: 0 22px 58px rgba(215, 180, 106, 0.15); }
}

@media (max-width: 1100px) {
  .hero-grid,
  .split-grid,
  .location-grid,
  .contact-grid,
  .stats-grid,
  .features-grid,
  .footer-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-visual,
  .split-visual {
    min-height: 540px;
  }

  .gallery-card {
    min-height: 300px;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 82px 0;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 86px 16px auto 16px;
    display: grid;
    gap: 10px;
    padding: 18px;
    background: rgba(10, 10, 10, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

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

  .main-nav a {
    padding: 10px 12px;
    border-radius: 14px;
  }

  .hero-grid,
  .split-grid,
  .location-grid,
  .contact-grid,
  .stats-grid,
  .features-grid,
  .footer-grid,
  .gallery-grid,
  .form-row.two-columns {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .split-visual {
    min-height: 500px;
  }

  .hero-main-image {
    inset: 0 78px 86px 0;
  }

  .hero-side-image {
    width: 42%;
  }

  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .nav-wrap {
    min-height: 76px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .hero {
    padding-top: 38px;
  }

  .hero h1 {
    font-size: clamp(3rem, 13vw, 4.4rem);
  }

  .hero-visual,
  .split-visual {
    min-height: 410px;
  }

  .hero-main-image {
    inset: 0 52px 74px 0;
  }

  .hero-badge {
    left: 12px;
    right: 12px;
    max-width: none;
  }

  .gallery-card {
    min-height: 260px;
  }

  .stats-grid article,
  .feature-card,
  .location-card,
  .map-card,
  .contact-form,
  .quote-box,
  .cta-band-inner {
    padding: 22px;
  }
}
