:root {
  --bg: #0c0907;
  --bg-elev: #16110d;
  --ink: #f6efe4;
  --muted: #b7a898;
  --gold: #d4a84b;
  --gold-soft: rgba(212, 168, 75, 0.22);
  --line: rgba(246, 239, 228, 0.14);
  --danger: #e07a5f;
  --ok: #7dba8a;
  --display: "Fraunces", Georgia, serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(ellipse 90% 60% at 10% -10%, rgba(212,168,75,.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(120,70,40,.22), transparent 50%),
    linear-gradient(180deg, #120e0b 0%, var(--bg) 40%, #090706 100%);
  min-height: 100vh;
}

a { color: var(--gold); text-underline-offset: 0.18em; }
img { max-width: 100%; display: block; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem clamp(1.1rem, 4vw, 2.5rem);
  background: rgba(12, 9, 7, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  font-size: 1.15rem;
}
.brand span { color: var(--gold); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: var(--gold);
  color: #1a1208;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.92rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 7.5rem clamp(1.1rem, 4vw, 2.5rem) 4rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,9,7,.25) 0%, rgba(12,9,7,.55) 45%, rgba(12,9,7,.92) 100%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a84b' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 920px; }
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 1rem;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0 0 1.1rem;
  max-width: 14ch;
}
.hero .lede {
  max-width: 38ch;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.55;
  margin: 0 0 1.75rem;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  background: var(--gold);
  color: #1a1208;
  font-weight: 700;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-size: 1rem;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  background: rgba(255,255,255,.04);
}

.section {
  padding: 4.5rem clamp(1.1rem, 4vw, 2.5rem);
  max-width: 1100px;
  margin: 0 auto;
}
.section h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}
.section .sub {
  color: var(--muted);
  max-width: 52ch;
  margin: 0 0 2rem;
  line-height: 1.6;
}

.services {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 760px) {
  .services { grid-template-columns: repeat(3, 1fr); }
}
.service {
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
}
.service h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  margin: 0 0 0.45rem;
}
.service p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.98rem;
}

.inquiry-wrap {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  padding: clamp(1.25rem, 3vw, 2rem);
}
.form-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 720px) {
  .form-grid.two { grid-template-columns: 1fr 1fr; }
}
label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted);
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(0,0,0,.28);
  color: var(--ink);
  padding: 0.85rem 0.95rem;
  font: inherit;
}
textarea { min-height: 120px; resize: vertical; }
.full { grid-column: 1 / -1; }
.form-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}
.form-actions { margin-top: 1.25rem; }

.site-footer {
  padding: 2.5rem clamp(1.1rem, 4vw, 2.5rem) 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}
.site-footer strong { color: var(--ink); }

@media (prefers-reduced-motion: no-preference) {
  .hero-inner { animation: rise 0.9s ease both; }
  .service { animation: rise 0.7s ease both; }
  .service:nth-child(2) { animation-delay: 0.08s; }
  .service:nth-child(3) { animation-delay: 0.16s; }
  @keyframes rise {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: none; }
  }
}
