:root {
  --bg: #0a0a0a;
  --bg-elev: #121212;
  --bg-soft: #161616;
  --ink: #f4f0e8;
  --mute: #9a9488;
  --line: rgba(212, 175, 98, 0.22);
  --gold: #d4af62;
  --gold-soft: #c4a35a;
  --gold-dim: rgba(212, 175, 98, 0.12);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", system-ui, sans-serif;
  --max: 68rem;
  --radius: 2px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.15s ease, opacity 0.15s ease;
}
a:hover {
  color: #e8c97a;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: #111;
  padding: 0.5rem 1rem;
  z-index: 100;
}
.skip:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
}
.brand:hover {
  color: var(--ink);
  opacity: 0.9;
}
.brand__mark {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(212, 175, 98, 0.25));
}
.brand__name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
}
.nav a {
  color: var(--mute);
}
.nav a:hover {
  color: var(--gold);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 52rem);
  display: grid;
  place-items: center;
  padding: 4rem 1.5rem 5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(212, 175, 98, 0.09), transparent 55%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(212, 175, 98, 0.04), transparent 50%),
    var(--bg);
}
.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--bg) 100%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  text-align: center;
  max-width: 38rem;
}
.hero h1 {
  margin: 0.35rem 0 1rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3rem, 9vw, 5.5rem);
  letter-spacing: 0.06em;
  line-height: 1.05;
  text-transform: uppercase;
}
.hero__lead {
  margin: 0 auto 2rem;
  color: var(--mute);
  font-size: 1.08rem;
  max-width: 28rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn--gold {
  background: linear-gradient(180deg, #e0c078, var(--gold-soft));
  color: #1a1408;
  border-color: color-mix(in srgb, var(--gold) 60%, #000);
}
.btn--gold:hover {
  color: #0a0804;
  filter: brightness(1.06);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Panels */
.panel {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
}
.panel--alt {
  max-width: none;
  padding-left: max(1.5rem, calc((100% - var(--max)) / 2 + 1.5rem));
  padding-right: max(1.5rem, calc((100% - var(--max)) / 2 + 1.5rem));
  background: var(--bg-elev);
  border-block: 1px solid var(--line);
}
.panel--contact {
  padding-bottom: 5.5rem;
}

.panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: 0.03em;
  line-height: 1.15;
}

.panel__grid {
  display: grid;
  gap: 2rem 3.5rem;
}
@media (min-width: 720px) {
  .panel__grid {
    grid-template-columns: 1fr 1.35fr;
    align-items: start;
  }
}

.panel__head {
  max-width: 36rem;
  margin-bottom: 2rem;
}
.panel__head h2 {
  margin-bottom: 0.75rem;
}

.prose p {
  margin: 0 0 1rem;
  color: color-mix(in srgb, var(--ink) 88%, var(--mute));
}
.prose p:last-child {
  margin-bottom: 0;
}

.muted {
  color: var(--mute);
  margin: 0;
}

.facts {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.facts li {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--mute);
}
.facts li span {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-top: 0.2rem;
}

/* Gallery placeholders */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
  gap: 1rem;
}
.tile {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, var(--gold-dim), transparent 55%),
    var(--bg-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-align: center;
  padding: 1rem;
}
.tile__label {
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.tile__hint {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}

/* Contact */
.contact {
  max-width: 32rem;
  margin: 0 auto;
  text-align: center;
}
.contact h2 {
  margin-bottom: 0.75rem;
}
.contact__lead {
  margin-bottom: 2rem;
}
.contact__list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  border-top: 1px solid var(--line);
  text-align: left;
}
.contact__list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.contact__role {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}
.contact__list a {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.fine {
  font-size: 0.78rem;
  color: var(--mute);
  line-height: 1.5;
}
.fine code {
  font-size: 0.72rem;
  color: color-mix(in srgb, var(--gold) 80%, var(--mute));
}

/* Footer */
.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 2.5rem 1.5rem 3rem;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--mute);
  font-size: 0.85rem;
}
.footer__mark {
  width: 2rem;
  height: 2rem;
  opacity: 0.85;
  object-fit: contain;
  margin-bottom: 0.25rem;
}
.site-footer p {
  margin: 0;
}

@media (max-width: 560px) {
  .nav {
    display: none;
  }
  .facts li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}
