:root {
  color-scheme: dark;
  --ink: #050505;
  --surface: #0d0c0a;
  --paper: #f5ead6;
  --muted: #aaa39a;
  --gold: #d9a950;
  --gold-soft: #f0d49a;
  --line: rgba(217, 169, 80, 0.24);
  --content: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% -20%, rgba(217, 169, 80, 0.12), transparent 35rem),
    var(--ink);
  color: var(--paper);
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.shell {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.24rem;
  letter-spacing: 0.01em;
}

.brand-mark {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-soft);
  font-size: 13px;
}

.site-nav { display: flex; gap: 6px; }

.site-nav a,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
}

.site-nav a { padding: 0 16px; color: var(--muted); }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--paper); }

.hero {
  display: grid;
  min-height: min(780px, calc(100svh - 84px));
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: clamp(36px, 7vw, 100px);
  padding-block: 72px 96px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.04;
}

h1 { max-width: 680px; font-size: clamp(3.25rem, 7vw, 6.8rem); letter-spacing: -0.045em; }
h2 { font-size: clamp(2.35rem, 5vw, 4.4rem); letter-spacing: -0.035em; }
h3 { font-size: 1.75rem; }

.lede {
  max-width: 580px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.button { padding: 0 22px; border: 1px solid var(--line); }
.button-primary { background: var(--gold-soft); color: #17110a; border-color: var(--gold-soft); font-weight: 650; }
.button-secondary { color: var(--paper); }
.button:hover { transform: translateY(-1px); }

.photo-orbit {
  position: relative;
  min-height: 520px;
  perspective: 1000px;
}

.photo-sheet {
  position: absolute;
  inset: 9% 8% 5%;
  overflow: hidden;
  border: 1px solid rgba(240, 212, 154, 0.55);
  border-radius: 28px;
  background: #15120e;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.68);
  transform-origin: 50% 100%;
}

.photo-sheet::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 67% 31%, rgba(246, 198, 109, 0.95) 0 2%, transparent 3%),
    linear-gradient(158deg, transparent 0 34%, rgba(229, 169, 75, 0.62) 35% 42%, transparent 43%),
    linear-gradient(32deg, #100d0a 0 29%, #423221 30% 51%, #111313 52% 65%, #6f4f27 66% 72%, #17120e 73%);
  filter: saturate(0.84);
}

.photo-sheet::after {
  content: "LOCAL PICK";
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 8px 13px;
  border: 1px solid rgba(240, 212, 154, 0.58);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.56);
  color: var(--gold-soft);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.sheet-back { transform: translate3d(34px, -28px, -90px) rotate(5deg); opacity: 0.38; }
.sheet-middle { transform: translate3d(-28px, -12px, -45px) rotate(-4deg); opacity: 0.65; }
.sheet-front { animation: settle 900ms cubic-bezier(.2,.8,.2,1) both; }

.proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(38px, 8vw, 110px);
  padding-block: 120px;
  border-top: 1px solid var(--line);
}

.proof-copy p { max-width: 560px; color: var(--muted); font-size: 1.12rem; }

.proof-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.proof-list li { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.proof-list strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 1.22rem; font-weight: 400; }
.proof-list span { color: var(--muted); }
.proof-number { color: var(--gold); }

.modes { padding-block: 120px; border-top: 1px solid var(--line); }
.mode-intro { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 64px; }
.mode-intro p { max-width: 430px; margin: 0; color: var(--muted); }
.mode-list { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.mode { min-height: 270px; padding: 34px 30px; border-right: 1px solid var(--line); }
.mode:last-child { border-right: 0; }
.mode-icon { color: var(--gold); font-size: 1.45rem; }
.mode h3 { margin-top: 52px; }
.mode p { margin-bottom: 0; color: var(--muted); }

.privacy-band { padding-block: 120px; text-align: center; border-bottom: 1px solid var(--line); }
.privacy-band h2 { max-width: 850px; margin-inline: auto; }
.privacy-band p { max-width: 620px; margin: 25px auto 0; color: var(--muted); }

.site-footer { display: flex; justify-content: space-between; gap: 30px; padding-block: 38px; color: var(--muted); font-size: 0.9rem; }
.footer-links { display: flex; gap: 22px; }

.document { max-width: 790px; padding-block: 88px 120px; }
.document h1 { font-size: clamp(3.1rem, 8vw, 5.6rem); }
.document .lede { margin-bottom: 64px; }
.document h2 { margin-top: 54px; font-size: 2rem; }
.document p, .document li { color: #c2bbb1; }
.document ul { padding-left: 22px; }
.support-callout { margin-top: 48px; padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: rgba(217,169,80,.045); }
.support-callout a { color: var(--gold-soft); }

@keyframes settle {
  from { opacity: 0; transform: translate3d(0, 34px, 0) rotate(1.5deg) scale(.97); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 760px) {
  .shell { width: min(calc(100% - 28px), var(--content)); }
  .site-header { min-height: 70px; }
  .site-nav a { padding: 0 10px; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-block: 64px 72px; }
  .hero-copy { text-align: center; }
  .lede { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .photo-orbit { min-height: 440px; }
  .proof { grid-template-columns: 1fr; padding-block: 86px; }
  .modes { padding-block: 86px; }
  .mode-intro { display: block; }
  .mode-intro p { margin-top: 24px; }
  .mode-list { grid-template-columns: 1fr; }
  .mode { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .mode:last-child { border-bottom: 0; }
  .mode h3 { margin-top: 26px; }
  .privacy-band { padding-block: 86px; }
  .site-footer { display: block; text-align: center; }
  .footer-links { justify-content: center; margin-top: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
