:root {
  --black: #080808;
  --panel: #111111;
  --panel-soft: #171717;
  --gold: #c9a45c;
  --gold-light: #e2c887;
  --white: #f6f3ed;
  --ink: #11100e;
  --muted: #aaa49a;
  --line: rgba(201, 164, 92, 0.25);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 9% 14%, rgba(201, 164, 92, 0.16), transparent 28rem),
    radial-gradient(circle at 91% 90%, rgba(201, 164, 92, 0.10), transparent 30rem),
    #f1eee7;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image: linear-gradient(rgba(17,16,14,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(17,16,14,.035) 1px, transparent 1px);
  background-size: 64px 64px;
}

.page-shell {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
  min-height: calc(100vh - 76px);
}

.intro { padding: 20px 0; }

.logo {
  display: block;
  width: min(270px, 72vw);
  height: auto;
  margin: -56px 0 -40px -42px;
  object-fit: contain;
}

.gold-rule {
  width: 56px;
  height: 1px;
  margin-bottom: 24px;
  background: var(--gold);
}

.eyebrow,
.section-number {
  margin: 0 0 16px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1, h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 540px;
  font-size: clamp(2.75rem, 5.8vw, 5rem);
  line-height: 0.98;
}

.lead {
  max-width: 560px;
  margin: 30px 0 0;
  color: #4f4a43;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.7;
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0 0;
  color: #686159;
  font-size: 0.93rem;
}

.coming-soon::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(201, 164, 92, 0.12);
}

.contact-card {
  position: relative;
  padding: clamp(28px, 5vw, 52px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(25,25,25,.97), rgba(13,13,13,.97));
  box-shadow: 0 34px 80px rgba(0,0,0,.4);
  color: var(--white);
}

.contact-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 86px;
  height: 1px;
  background: var(--gold);
}

.section-number { margin-bottom: 10px; }

h2 {
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  line-height: 1.08;
}

.contact-card > p:not(.section-number):not(.privacy-note) {
  margin: 16px 0 28px;
  color: #c5c0b7;
  font-size: 1rem;
  line-height: 1.65;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field { margin-bottom: 18px; }

label {
  display: block;
  margin: 0 0 8px;
  color: #e7e1d8;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

label span { color: var(--muted); font-weight: 400; }

input,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 0;
  outline: none;
  background: rgba(255,255,255,.035);
  font: inherit;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

textarea { min-height: 116px; resize: vertical; }

input:focus,
textarea:focus {
  border-color: var(--gold);
  background: rgba(201,164,92,.055);
  box-shadow: 0 0 0 3px rgba(201,164,92,.1);
}

button {
  width: 100%;
  min-height: 52px;
  margin-top: 2px;
  padding: 14px 18px;
  color: #0a0a0a;
  border: 1px solid var(--gold);
  background: linear-gradient(105deg, #b68d43, #e0c47c, #bc934a);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease;
}

button:hover { filter: brightness(1.08); transform: translateY(-1px); }
button:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }
button:disabled { cursor: wait; filter: grayscale(.25); opacity: .72; }
button span { margin-left: 7px; font-size: 1.05rem; }

.form-status {
  min-height: 1.4em;
  margin: 12px 0 0;
  color: var(--gold-light);
  font-size: 0.9rem;
  line-height: 1.45;
}

.privacy-note {
  margin: 16px 0 0;
  color: #8e8981;
  font-size: 0.78rem;
  line-height: 1.5;
}

.honeypot { position: absolute !important; left: -9999px !important; }

footer {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 28px;
  color: #716a61;
  font-size: 0.78rem;
}

footer p { margin: 0; }

@media (max-width: 860px) {
  .page-shell {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 24px;
  }

  .intro { padding-bottom: 0; }
  .logo { margin-top: -44px; }
  h1 { max-width: 680px; }
  .lead { max-width: 680px; }
}

@media (max-width: 560px) {
  .page-shell,
  footer { width: min(100% - 28px, 1140px); }

  .page-shell { padding: 12px 0 34px; gap: 34px; }
  .logo { width: 220px; margin: -38px 0 -32px -34px; }
  .gold-rule { margin-bottom: 20px; }
  h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .lead { margin-top: 22px; font-size: 1rem; }
  .contact-card { padding: 26px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  footer { text-align: center; padding-bottom: 22px; }
}

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