:root {
  --bg: #070707;
  --bg-soft: #111111;
  --panel: rgba(18, 18, 18, 0.9);
  --panel-strong: rgba(10, 10, 10, 0.96);
  --border: rgba(214, 176, 86, 0.22);
  --border-strong: rgba(214, 176, 86, 0.42);
  --gold: #d6b056;
  --gold-soft: #f0d89b;
  --text: #f5ecd2;
  --muted: #cbbd97;
  --muted-strong: #a89466;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(214, 176, 86, 0.14), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(214, 176, 86, 0.08), transparent 24%),
    linear-gradient(180deg, #070707 0%, #0c0c0c 48%, #090909 100%);
  color: var(--text);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.38), transparent 85%);
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

a:hover {
  color: var(--gold-soft);
}

.site-aura {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 0%, rgba(214, 176, 86, 0.11), transparent 32%),
    radial-gradient(circle at 100% 20%, rgba(214, 176, 86, 0.05), transparent 26%);
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(8, 8, 8, 0.82);
  border-bottom: 1px solid rgba(214, 176, 86, 0.18);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 24px;
}

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

.brand-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(214, 176, 86, 0.45);
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), rgba(214, 176, 86, 0.1), rgba(0, 0, 0, 0.2));
  color: var(--gold-soft);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--gold-soft);
  line-height: 1;
}

.brand-sub,
.lead,
.site-footer p,
.card p,
.panel p,
.service-copy,
.timeline-step p {
  color: var(--muted);
}

.brand-sub {
  margin-top: 4px;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.nav a {
  color: #eadfb9;
  font-size: 0.95rem;
}

.nav a:not(.btn) {
  position: relative;
}

.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.nav a:not(.btn):hover::after {
  transform: scaleX(1);
}

main {
  position: relative;
  z-index: 1;
}

.hero,
.section {
  padding: 96px 0;
}

.section-tight {
  padding-top: 0;
}

.hero-grid,
.two-col,
.footer-grid,
.section-band {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
}

.hero-copy {
  display: grid;
  align-content: start;
  gap: 0;
}

.hero-side {
  display: grid;
  gap: 20px;
}

.image-band {
  margin-bottom: 28px;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 22px;
  margin-bottom: 28px;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.96), rgba(8, 8, 8, 0.98));
  box-shadow: 0 0 0 1px rgba(214, 176, 86, 0.05), var(--shadow);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 18%, transparent 78%, rgba(214, 176, 86, 0.08));
  pointer-events: none;
}

.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-frame img {
  aspect-ratio: 1.16 / 1;
}

.section-image-frame img {
  aspect-ratio: 2.2 / 1;
}

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

.photo-card-wide {
  min-height: 360px;
}

.photo-caption {
  position: absolute;
  left: 22px;
  bottom: 20px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(6, 6, 6, 0.76);
  border: 1px solid rgba(214, 176, 86, 0.25);
  color: var(--gold-soft);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-feature-card {
  min-height: 100%;
}

.hero-quote-card {
  background: linear-gradient(180deg, rgba(28, 23, 12, 0.76), rgba(11, 11, 11, 0.96));
}

.hero-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.hero-stat {
  padding-top: 16px;
  border-top: 1px solid rgba(214, 176, 86, 0.3);
}

.hero-stat span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted-strong);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
}

.hero-stat strong {
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 700;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.74rem;
  color: var(--gold);
  margin-bottom: 18px;
}

h1,
h2,
h3 {
  color: var(--text);
  line-height: 1.04;
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  margin-bottom: 20px;
  max-width: 12ch;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.32rem;
  margin-bottom: 12px;
}

.lead {
  font-size: 1.08rem;
  line-height: 1.9;
  max-width: 64ch;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(135deg, #f1da98 0%, #d0a94b 45%, #a07219 100%);
  color: #18120a;
  box-shadow: 0 14px 30px rgba(165, 116, 27, 0.24);
}

.btn-outline {
  border: 1px solid rgba(214, 176, 86, 0.38);
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.01);
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel,
.card,
.section-band {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.94), rgba(10, 10, 10, 0.98));
  border-radius: 28px;
  padding: 30px;
}

.section-band {
  align-items: start;
}

.compact-band {
  margin-top: 28px;
  padding: 24px 26px;
}

.luxury-panel,
.elevated-card {
  box-shadow: 0 0 0 1px rgba(214, 176, 86, 0.06), var(--shadow);
}

.panel-title {
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

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

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.stack {
  display: grid;
  gap: 22px;
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.bullet-list {
  margin: 18px 0 0;
  padding-left: 18px;
}

.bullet-list li {
  margin-bottom: 10px;
  color: var(--muted);
  line-height: 1.7;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 14px;
}

.timeline-step {
  padding: 18px 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(214, 176, 86, 0.2);
  background: rgba(255, 255, 255, 0.015);
}

.timeline-step span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
}

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(214, 176, 86, 0.18);
  padding: 42px 0 60px;
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.4), rgba(5, 5, 5, 0.92));
}

.footer-grid {
  grid-template-columns: 1.2fr .8fr .9fr;
  gap: 28px;
}

.footer-brand-lockup {
  margin-bottom: 18px;
}

.footer-title {
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
}

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

@media (max-width: 960px) {
  .hero-grid,
  .two-col,
  .footer-grid,
  .card-grid,
  .section-band,
  .timeline-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .hero-stat-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .hero,
  .section {
    padding: 72px 0;
  }

  .panel,
  .card,
  .section-band {
    padding: 24px;
    border-radius: 22px;
  }

  .image-frame {
    border-radius: 22px;
  }

  h1 {
    max-width: none;
  }
}
