:root {
  --black: #0a0a0b;
  --panel: #111114;
  --panel-2: #16161a;
  --line: rgba(201, 162, 74, 0.22);
  --gold: #d4af6a;
  --gold-bright: #e7c989;
  --gold-deep: #b58d45;
  --cream: #f4efe6;
  --muted: #b9b3a7;
  --muted-dim: #8a857c;
  --shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.85);
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: "Jost", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Shared bits ---------- */
.eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin: 0 0 18px;
}
.eyebrow.center { text-align: center; }

h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  line-height: 1.08;
  margin: 0 0 18px;
  color: var(--cream);
}

.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 56ch;
  margin: 0;
}

/* ---------- Top bar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(10, 10, 11, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--cream);
}
.topnav { display: flex; align-items: center; gap: clamp(18px, 3vw, 34px); }
.topnav a {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s ease;
}
.topnav a:hover { color: var(--gold); }
.topnav-cta {
  color: var(--gold) !important;
  border: 1px solid var(--line);
  padding: 9px 16px;
  border-radius: 999px;
}
.topnav-cta:hover { border-color: var(--gold); }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.45fr 0.95fr;
  min-height: calc(100vh - 75px);
  align-items: stretch;
}

.hero-media {
  position: relative;
  overflow: hidden;
  background: #000;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center;
  filter: saturate(1.02) contrast(1.02);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,10,11,0) 70%, rgba(10,10,11,0.85) 100%);
  pointer-events: none;
}
.hero-media-frame {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(212, 175, 106, 0.4);
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 92px) clamp(26px, 6vw, 96px);
  background:
    radial-gradient(120% 90% at 90% 10%, rgba(212, 175, 106, 0.10), transparent 60%),
    linear-gradient(180deg, var(--panel) 0%, var(--black) 100%);
}
.hero-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}

.hero-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0.005em;
  margin: 0;
  color: var(--gold);
  background: linear-gradient(92deg, var(--gold-deep), var(--gold-bright) 55%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-script {
  font-family: "Pinyon Script", cursive;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  color: var(--gold-bright);
  margin: 14px 0 0;
}
.hero-sub {
  font-family: "Cormorant Garamond", serif;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: clamp(0.85rem, 1.6vw, 1.05rem);
  color: var(--cream);
  margin: 6px 0 0;
  font-weight: 500;
}
.hero-lead {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 46ch;
  margin: 26px 0 0;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; }
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(95deg, var(--gold-deep), var(--gold-bright));
  color: #1a1305;
  box-shadow: 0 14px 30px -12px rgba(212, 175, 106, 0.6);
}
.btn-gold:hover { box-shadow: 0 18px 38px -12px rgba(212, 175, 106, 0.75); }

.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: rgba(212, 175, 106, 0.1); }

.btn-ghost {
  border-color: var(--line);
  color: var(--cream);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Services ---------- */
.services {
  padding: clamp(70px, 9vw, 130px) clamp(22px, 6vw, 80px);
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(212, 175, 106, 0.06), transparent 70%),
    var(--black);
  border-top: 1px solid var(--line);
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(46px, 6vw, 70px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-head .section-lead { text-align: center; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  position: relative;
  padding: 38px 28px 34px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 106, 0.5);
  box-shadow: var(--shadow);
}
.card:hover::before { transform: scaleX(1); }

.card-num {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: var(--gold-deep);
  letter-spacing: 0.1em;
}
.card-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  margin-bottom: 22px;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0 0 10px;
  color: var(--cream);
}
.card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* ---------- Contact ---------- */
.contact {
  padding: clamp(70px, 9vw, 130px) clamp(22px, 6vw, 80px);
  background:
    radial-gradient(90% 100% at 50% 100%, rgba(212, 175, 106, 0.1), transparent 70%),
    var(--panel);
  border-top: 1px solid var(--line);
}
.contact-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-inner .section-lead { text-align: center; }

.contact-rows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  margin-top: 44px;
}
.contact-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 26px 20px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(10, 10, 11, 0.4);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.contact-row:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  background: rgba(212, 175, 106, 0.06);
}
.contact-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.18rem;
  color: var(--cream);
  word-break: break-word;
}

/* ---------- Footer ---------- */
.site-footer {
  text-align: center;
  padding: 52px 24px 46px;
  background: var(--black);
  border-top: 1px solid var(--line);
}
.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: var(--gold);
  margin: 0 0 6px;
  letter-spacing: 0.04em;
}
.footer-tag { color: var(--muted); margin: 0 0 16px; font-size: 0.96rem; }
.footer-legal { color: var(--muted-dim); font-size: 0.78rem; letter-spacing: 0.04em; margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-media { height: 56vh; min-height: 360px; }
  .hero-media img { object-position: 30% 25%; }
  .hero-media::after {
    background: linear-gradient(180deg, rgba(10,10,11,0) 55%, rgba(10,10,11,0.95) 100%);
  }
  .hero-content::before { display: none; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .brand-name { display: none; }
  .topnav a:not(.topnav-cta) { display: none; }
  .contact-rows { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .hero-media { height: 48vh; min-height: 300px; }
  .hero-actions .btn { flex: 1 1 100%; justify-content: center; }
  .card-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 44px 22px 56px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .btn:hover, .card:hover, .contact-row:hover { transform: none; }
}
