@font-face {
  font-family: Fraunces;
  src: url("fonts/fraunces.woff2") format("woff2");
  font-weight: 500 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Outfit;
  src: url("fonts/outfit.woff2") format("woff2");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #f3eee4;
  --paper-2: #e8e0d1;
  --cream: #fffbf4;
  --ink: #1b1814;
  --ink-soft: #5a534a;
  --rule: #d6cdbe;
  --brick: #b54428;
  --brick-deep: #8e321c;
  --brick-soft: #c4512c;
  --olive: #3f5346;
  --focus: #1b1814;
  --shadow: 0 18px 40px -28px rgba(27, 24, 20, 0.35);
  --radius: 18px;
  --max: 72rem;
  --sans: Outfit, "Segoe UI", system-ui, sans-serif;
  --serif: Fraunces, "Iowan Old Style", Palatino, Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, #f8f3ea 0%, transparent 55%),
    var(--paper);
}

img, svg { max-width: 100%; display: block; }

a { color: var(--brick-deep); }

a:hover { color: var(--brick); }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--ink);
  color: var(--cream);
  padding: 0.5rem 0.9rem;
  z-index: 20;
  border-radius: 8px;
}
.skip:focus { top: 0.75rem; }

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: color-mix(in srgb, var(--paper) 88%, white);
  backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid var(--rule);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.wordmark img {
  width: 2.1rem;
  height: 2.1rem;
}

.wordmark span { display: grid; line-height: 1.15; }
.wordmark small {
  font-weight: 400;
  font-size: 0.72rem;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: none;
  gap: 1.25rem;
  align-items: center;
}
.nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
}
.nav a:hover { color: var(--brick-deep); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.75rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  font-weight: 500;
  font-family: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover {
  background: var(--brick-deep);
  border-color: var(--brick-deep);
  color: var(--cream);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--ink);
}
.btn-brick {
  background: var(--brick);
  border-color: var(--brick-deep);
}
.btn-brick:hover {
  background: var(--brick-deep);
}

.hero {
  padding: 2.4rem 0 3rem;
  display: grid;
  gap: 2rem;
}

.kicker {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 600;
  margin: 0 0 0.85rem;
}

h1, h2, h3, .serif { font-family: var(--serif); font-weight: 600; }

h1 {
  font-size: clamp(2.15rem, 6.4vw, 4.35rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  font-weight: 600;
}

.lede {
  font-size: clamp(1.05rem, 2.1vw, 1.28rem);
  color: var(--ink-soft);
  max-width: 38rem;
  margin: 0 0 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.1rem;
}

.fine {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0;
}
.fine a { color: inherit; }

.scene {
  background: var(--paper-2);
  border: 1.5px solid var(--ink);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 22rem;
}
.scene img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  object-position: 50% 60%;
}

.proof {
  border-block: 1px solid var(--rule);
  padding: 1.35rem 0;
  background: color-mix(in srgb, var(--cream) 70%, transparent);
}
.proof-inner {
  display: grid;
  gap: 0.4rem;
}
.proof p { margin: 0; color: var(--ink-soft); }
.proof strong { color: var(--ink); font-weight: 600; }
.names {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.35rem;
  font-family: var(--serif);
  font-size: 1.35rem;
}

section { padding: 3.4rem 0; scroll-margin-top: 4.6rem; }
#book { scroll-margin-top: 4.6rem; }

.section-head {
  max-width: 38rem;
  margin-bottom: 2rem;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  margin: 0 0 0.6rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.section-head p { margin: 0; color: var(--ink-soft); }

.split {
  display: grid;
  gap: 1rem;
}

.card {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
}
.card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.25rem;
}
.card p { margin: 0; color: var(--ink-soft); }

.not-this {
  background: transparent;
  border-style: dashed;
}

.steps {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
}
.num {
  font-family: var(--serif);
  font-size: 1.5rem;
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  color: var(--brick-deep);
}
.step h3 { margin: 0 0 0.25rem; font-size: 1.15rem; }
.step p { margin: 0; color: var(--ink-soft); }

.includes {
  display: grid;
  gap: 0.85rem;
}
.include {
  padding: 1.2rem 1.15rem;
  border-top: 1px solid var(--rule);
}
.include:first-child { border-top: 0; }
.include h3 {
  margin: 0 0 0.3rem;
  font-size: 1.15rem;
}
.include p { margin: 0; color: var(--ink-soft); }
.ticket-title {
  margin: 0 0 0.4rem;
  font-size: 1.5rem;
}

.ticket {
  background: var(--cream);
  border: 1.5px solid var(--ink);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}
.ticket::before,
.ticket::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1.35rem;
  height: 1.35rem;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  transform: translateY(-50%);
}
.ticket::before { left: -0.7rem; }
.ticket::after { right: -0.7rem; }
.ticket-pad { padding: 1.4rem 1.5rem 1.1rem; }
.ticket .includes { padding: 0 0.4rem 0.4rem; }

.faq {
  display: grid;
  gap: 0.6rem;
}
details {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 0.15rem 1rem;
}
summary {
  cursor: pointer;
  list-style: none;
  padding: 0.95rem 0;
  font-weight: 600;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  float: right;
  font-weight: 400;
  color: var(--ink-soft);
}
details[open] summary::after { content: "–"; }
details p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.book {
  padding-bottom: 4.2rem;
  background:
    linear-gradient(180deg, transparent, color-mix(in srgb, var(--paper-2) 55%, transparent) 12%);
}

.form-panel {
  background: var(--cream);
  border: 1.5px solid var(--ink);
  border-radius: 24px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

form { display: grid; gap: 0.95rem; }

.field { display: grid; gap: 0.35rem; }
.field-row {
  display: grid;
  gap: 0.95rem;
}

label {
  font-size: 0.88rem;
  font-weight: 600;
}

.hint {
  font-weight: 400;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

input, textarea, select {
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--rule);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  width: 100%;
  min-height: 2.75rem;
}
textarea { min-height: 7rem; resize: vertical; }

input:focus, textarea:focus, select:focus {
  outline: 3px solid color-mix(in srgb, var(--brick) 50%, transparent);
  outline-offset: 1px;
  border-color: var(--ink);
}

.form-note {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin: 0;
}

.status {
  margin: 0;
  font-size: 0.95rem;
  min-height: 1.3em;
}
.status.ok { color: var(--olive); }
.status.err { color: var(--brick-deep); }

.site-footer {
  border-top: 1px solid var(--rule);
  padding: 1.6rem 0 2.4rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
}
.site-footer a { color: inherit; }

@media (min-width: 720px) {
  .nav { display: flex; }
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    padding-top: 3.4rem;
    padding-bottom: 4rem;
  }
  .split { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr 1fr; }
  .includes { grid-template-columns: 1fr 1fr; }
  .include { border-top: 0; border-left: 0; padding: 1.25rem 1.35rem; }
  .include:nth-child(2n) { border-left: 1px solid var(--rule); }
  .include:nth-child(n + 3) { border-top: 1px solid var(--rule); }
  .form-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.5rem;
    align-items: start;
  }
}

@media (max-width: 719px) {
  .header-cta { font-size: 0.88rem; padding-inline: 0.9rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}


.shots {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.shot {
  margin: 0;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.shot img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
}
.shot figcaption {
  padding: 0.7rem 1rem 0.9rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
@media (min-width: 800px) {
  .shots {
    grid-template-columns: 1.15fr 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .shot-wide {
    grid-column: 1;
    grid-row: 1 / 3;
  }
  .shot-wide img { height: 100%; min-height: 28rem; }
  .shot img { height: 14rem; }
}
