:root {
  --bg: #090705;
  --surface: #1c160e;
  --parchment: #33281a;
  --accent: #e0b23d;
  --accent2: #cc8047;
  --vein: #4da380;
  --text: #f0e6cc;
  --muted: #a89878;
  --radius: 18px;
  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(224, 178, 61, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(77, 163, 128, 0.08), transparent 50%);
  z-index: 0;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.wrap {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px) 120px;
}

/* floating_pill nav */
.floating-pill {
  position: fixed;
  right: clamp(16px, 4vw, 28px);
  bottom: clamp(16px, 4vw, 28px);
  z-index: 100;
  display: flex;
  gap: 4px;
  padding: 8px 10px;
  background: rgba(28, 22, 14, 0.92);
  border: 1px solid rgba(224, 178, 61, 0.35);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.floating-pill a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
}

.floating-pill a:hover {
  color: var(--text);
  background: rgba(224, 178, 61, 0.12);
  text-decoration: none;
}

/* editorial_type hero */
.hero-editorial {
  padding: clamp(48px, 12vw, 96px) 0 clamp(40px, 8vw, 72px);
  border-bottom: 1px solid rgba(224, 178, 61, 0.15);
}

.hero-editorial .kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--accent);
  margin: 0 0 1.25rem;
}

.hero-editorial h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 9vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  margin: 0;
  color: var(--text);
}

.hero-editorial h1 .gold {
  display: block;
  color: var(--accent);
  font-style: italic;
}

.hero-editorial .tagline {
  max-width: 36em;
  margin: 1.75rem 0 0;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  color: var(--muted);
}

.hero-visual {
  margin-top: 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(224, 178, 61, 0.2);
  aspect-ratio: 16 / 9;
  background: var(--surface);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* staggered_mixed section intros */
.section-intro {
  margin-bottom: 2rem;
}

.section-intro.left {
  text-align: left;
  max-width: 28em;
}

.section-intro.center {
  text-align: center;
  max-width: 32em;
  margin-left: auto;
  margin-right: auto;
}

.section-intro.right {
  text-align: right;
  max-width: 28em;
  margin-left: auto;
}

.section-intro .label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--vein);
  margin: 0 0 0.5rem;
}

.section-intro h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  margin: 0 0 0.5rem;
  color: var(--text);
}

.section-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

section {
  padding: clamp(48px, 10vw, 80px) 0;
}

/* icon_grid features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid rgba(224, 178, 61, 0.14);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
}

.feature-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  background: rgba(224, 178, 61, 0.12);
  margin-bottom: 0.85rem;
}

.feature-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.45rem;
  color: var(--accent);
}

.feature-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

/* annotated_shots */
.annotated-shots {
  display: grid;
  gap: 28px;
}

.annotated-shot {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 720px) {
  .annotated-shot:nth-child(odd) {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
  .annotated-shot:nth-child(even) {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }
  .annotated-shot:nth-child(even) .shot-frame {
    order: 2;
  }
  .annotated-shot:nth-child(even) .shot-note {
    order: 1;
    text-align: right;
  }
}

.shot-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(224, 178, 61, 0.22);
  background: var(--parchment);
}

.shot-frame img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  object-position: top;
}

.shot-pin {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(224, 178, 61, 0.35);
  top: 18%;
  right: 12%;
}

.shot-note h3 {
  font-family: var(--font-serif);
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}

.shot-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 2rem;
}

.gallery-strip img {
  border-radius: 12px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(224, 178, 61, 0.15);
}

/* inline_expand legal */
.legal-blocks {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legal-card {
  background: var(--surface);
  border: 1px solid rgba(224, 178, 61, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
}

.legal-card summary {
  cursor: pointer;
  list-style: none;
  padding: 1.25rem 1.35rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.legal-card summary::-webkit-details-marker {
  display: none;
}

.legal-card summary::after {
  content: "+";
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 1.25rem;
}

.legal-card[open] summary::after {
  content: "−";
}

.legal-body {
  padding: 0 1.35rem 1.35rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-body p {
  margin: 0 0 1rem;
}

.legal-body p:last-child {
  margin-bottom: 0;
}

.site-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(224, 178, 61, 0.12);
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}
