:root {
  --bg: #050403;
  --bg-elevated: #0b0908;
  --surface: #12100f;
  --surface-2: #1a1715;
  --surface-3: #24201d;
  --text: #ffffff;
  --text-muted: #e5ddd3;
  --stroke: rgba(212, 189, 160, 0.18);
  --accent: #b98e54;
  --accent-strong: #d2a363;
  --brown: #3a2a1f;
  --brown-soft: #5a4535;
  --grey: #9c948c;
  --shadow-sm: 0 18px 44px rgba(0, 0, 0, 0.34);
  --shadow-lg: 0 32px 90px rgba(0, 0, 0, 0.5);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1200px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --space-8: 6rem;
  --space-9: 8rem;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behaviour: smooth; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top right, rgba(200, 162, 106, 0.12), transparent 24%),
    radial-gradient(circle at 10% 15%, rgba(90, 69, 53, 0.18), transparent 28%),
    linear-gradient(180deg, #050403 0%, #0a0807 40%, #100d0b 100%);
  color: var(--text);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(200, 162, 106, 0.34); color: #050403; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  background: var(--accent);
  color: #050403;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
}
.skip-link:focus { left: 1rem; z-index: 1000; }

.page-shell {
  position: relative;
  overflow: hidden;
}
.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(8px);
}
.page-shell::before {
  width: 26rem;
  height: 26rem;
  top: 5rem;
  right: -10rem;
  background: radial-gradient(circle, rgba(200, 162, 106, 0.12), transparent 65%);
}
.page-shell::after {
  width: 20rem;
  height: 20rem;
  top: 32rem;
  left: -8rem;
  background: radial-gradient(circle, rgba(90, 69, 53, 0.16), transparent 70%);
}

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

.section {
  padding: var(--space-8) 0;
  position: relative;
}
.section.compact { padding: var(--space-7) 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(8, 7, 6, 0.82);
  border-bottom: 1px solid rgba(212, 189, 160, 0.14);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
}
.brand-mark {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 800;
}
.brand-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.nav-toggle {
  display: none;
  border: 1px solid var(--stroke);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  width: 46px;
  height: 46px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.site-nav a {
  color: var(--text-muted);
  font-weight: 600;
}
.site-nav a[aria-current="page"],
.site-nav a:hover { color: var(--text); }

.btn,
.link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0 1.3rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.btn:hover,
.link-btn:hover { transform: translateY(-1px); }
.btn:focus-visible,
.link-btn:focus-visible,
.site-nav a:focus-visible,
.nav-toggle:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(200, 162, 106, 0.45);
  outline-offset: 3px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #120f0d;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { filter: brightness(1.04); }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--stroke);
}

.hero {
  padding: clamp(4rem, 8vw, 7rem) 0 var(--space-7);
}
.hero-copy h1,
.section-heading h2,
.notice h2,
.cta-panel h2,
.form-panel h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text);
}
.hero-copy h1 {
  font-size: clamp(4rem, 10vw, 7rem);
  max-width: 10ch;
}
.hero-lead {
  max-width: 46rem;
  margin: 0 auto 1.6rem;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
}
.hero-actions {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  text-align: center;
}

.notice,
.card,
.cta-panel,
.form-panel {
  background:
    linear-gradient(180deg, rgba(31, 25, 21, 0.92), rgba(15, 12, 10, 0.96));
  border: 1px solid rgba(212, 189, 160, 0.16);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.notice,
.form-panel {
  padding: 1.8rem;
}
.notice h2,
.form-panel h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
.notice p,
.form-panel p {
  color: var(--text-muted);
  font-size: 1.05rem;
}
.grid-3,
.footer-grid,
.form-grid {
  display: grid;
  gap: 1.2rem;
}
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(36, 30, 26, 0.92), rgba(18, 15, 13, 0.95));
}
.card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.08rem;
  color: var(--text);
}
.card p {
  margin: 0;
  color: var(--text-muted);
}

.info-intro {
  margin-bottom: 0.25rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: var(--accent);
  text-align: center;
}
.notice .info-intro,
.cta-panel .info-intro,
.form-panel .info-intro {
  text-align: left;
  justify-self: start;
  width: 100%;
}

.form-field {
  display: grid;
  gap: 0.55rem;
}
.form-field.full {
  grid-column: 1 / -1;
}
.form-field label {
  color: var(--text);
  font-weight: 700;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(212, 189, 160, 0.18);
  background: #000000;
  color: var(--text);
  padding: 0.95rem 1rem;
}
.form-field textarea {
  min-height: 150px;
  resize: vertical;
}
.form-help {
  font-size: 0.92rem;
  color: var(--text-muted);
}
.form-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  align-items: center;
}
.form-note,
.form-success {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.form-success {
  color: var(--accent-strong);
  font-weight: 700;
}

.cta-panel {
  padding: 2rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(54, 40, 30, 0.96), rgba(15, 12, 10, 0.98));
}
.cta-panel p {
  max-width: 40rem;
  margin: 0 auto 1.4rem;
  color: var(--text-muted);
}

.site-footer {
  padding: var(--space-7) 0 2rem;
  border-top: 1px solid rgba(212, 189, 160, 0.12);
  background: rgba(8, 7, 6, 0.9);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
  color: var(--text-muted);
}
.footer-links a:hover { color: var(--text); }

@media (max-width: 1024px) {
  .grid-3,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 1.2rem), var(--container)); }
  .section { padding: var(--space-7) 0; }
  .site-header { background: rgba(8, 7, 6, 0.95); }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: rgba(19, 15, 13, 0.98);
    border: 1px solid rgba(212, 189, 160, 0.14);
    box-shadow: var(--shadow-lg);
  }
  .site-nav.open { display: flex; }
  .hero-copy h1 { max-width: 100%; }
  .hero-actions .btn,
  .cta-panel .btn,
  .form-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behaviour: auto; scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
