:root {
  color-scheme: dark;
  --deep: #0d0905;
  --panel: #17120d;
  --panel-2: #100c08;
  --gold: #d6b45f;
  --brass: #8f6a24;
  --cream: #f3e7c2;
  --muted: #c4aa72;
  --line: rgba(214, 180, 95, 0.38);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(143, 106, 36, 0.22), transparent 34rem),
    linear-gradient(180deg, #0a0704, var(--deep));
  color: var(--cream);
  font-family: "EB Garamond", "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  line-height: 1.58;
}
a { color: #f4d27a; }
a:hover, a:focus-visible { color: #fff4d3; }
.site-shell {
  width: min(74rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(1.4rem, 4vw, 3rem) 0 4rem;
}
.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}
.brand {
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.84rem;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}
.nav a,
.button-link,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0.68rem 1rem;
  border: 1px solid rgba(245, 212, 132, 0.62);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(132, 96, 33, 0.92), rgba(83, 56, 17, 0.92));
  color: #fff4d3;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font: inherit;
  font-size: 0.76rem;
}
.nav a:hover,
.nav a:focus-visible,
.button-link:hover,
.button-link:focus-visible,
button:hover,
button:focus-visible {
  outline: 2px solid rgba(245, 212, 132, 0.82);
  outline-offset: 4px;
}
.hero,
.card,
.feedback-form {
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(23, 18, 13, 0.94), rgba(9, 7, 5, 0.96)),
    radial-gradient(circle at 50% 0%, rgba(214, 180, 95, 0.12), transparent 24rem);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 244, 211, 0.08);
}
.hero { padding: clamp(2rem, 6vw, 4.5rem); }
.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
h1, h2, h3 { color: var(--gold); font-weight: 500; line-height: 1.12; }
h1 { margin: 0 0 1.2rem; font-size: clamp(2.4rem, 7vw, 5.5rem); letter-spacing: 0.08em; text-transform: uppercase; }
h2 { margin: 0 0 1rem; font-size: clamp(1.55rem, 3vw, 2.45rem); }
h3 { margin: 0 0 0.55rem; font-size: 1.25rem; }
p { margin: 0 0 1rem; }
.lede { max-width: 48rem; font-size: clamp(1.15rem, 2vw, 1.45rem); }
.grid { display: grid; gap: 1rem; margin-top: 1rem; }
.grid.two { grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr)); }
.grid.three { grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }
.card { padding: 1.35rem; }
.card p:last-child { margin-bottom: 0; }
.actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.4rem; }
ul { padding-left: 1.25rem; }
li { margin: 0.35rem 0; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }
.feedback-form { padding: clamp(1.2rem, 4vw, 2rem); margin-top: 1.5rem; }
.feedback-form label { display: grid; gap: 0.35rem; margin: 0 0 1rem; }
.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  width: 100%;
  border: 1px solid rgba(214, 180, 95, 0.4);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.28);
  color: var(--cream);
  padding: 0.75rem 0.9rem;
  font: inherit;
}
.feedback-form textarea { min-height: 10rem; resize: vertical; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 48rem) {
  .site-header,
  .site-footer { align-items: flex-start; flex-direction: column; }
  .nav { justify-content: flex-start; }
}
