:root {
  --paper: #efe8dc;
  --paper-2: #f7f2e8;
  --sheet: #fffdf8;
  --ink: #1a242e;
  --ink-soft: #3d4a57;
  --navy: #243f55;
  --navy-deep: #182b3b;
  --terra: #a84b2f;
  --terra-deep: #8a3c26;
  --ochre: #c4a35a;
  --sage: #5c6f62;
  --line: #d4cbb8;
  --mist: #e4ddd0;
  --ok: #2f5d45;
  --err: #8f2d2d;
  --shadow: 0 18px 40px rgba(26, 36, 46, 0.12);
  --radius: 18px;
  --max: 1120px;
  --font-serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-sans: "Figtree", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 12% 8%, rgba(196, 163, 90, 0.14), transparent 38%),
    radial-gradient(circle at 88% 0%, rgba(168, 75, 47, 0.08), transparent 32%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 47px,
      rgba(36, 63, 85, 0.035) 48px
    );
}

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

a {
  color: var(--terra-deep);
  text-underline-offset: 0.18em;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy-deep);
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
}

ul,
ol {
  margin: 0 0 1em;
  padding-left: 1.2em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -40px;
  z-index: 80;
  background: var(--navy);
  color: var(--sheet);
  padding: 0.5rem 0.8rem;
}

.skip-link:focus {
  top: 0.6rem;
}

.wrap {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(239, 232, 220, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.4rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--navy);
}

.brand-mark {
  color: var(--navy);
  display: grid;
  place-items: center;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: var(--font-serif);
  font-size: 1.05rem;
}

.brand-text em {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1rem;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 550;
  font-size: 0.95rem;
}

.nav a:hover,
.nav a.is-active {
  color: var(--terra-deep);
}

.nav-cta {
  background: var(--navy);
  color: var(--sheet) !important;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  background: var(--sheet);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  position: relative;
  content: "";
}

.nav-toggle-bar::before {
  position: absolute;
  top: -6px;
}

.nav-toggle-bar::after {
  position: absolute;
  top: 6px;
}

.inline-error {
  display: none;
  margin: 0.75rem auto;
  width: min(calc(100% - 2rem), var(--max));
  background: #f6e4e0;
  color: var(--err);
  border: 1px solid #e3b6ad;
  padding: 0.75rem 1rem;
  border-radius: 12px;
}

.inline-error.is-visible {
  display: block;
}

.hero-dossier {
  padding: 2.2rem 0 1rem;
}

.hero-frame {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  background: var(--sheet);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 2.4rem 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.4rem;
  background:
    linear-gradient(180deg, rgba(196, 163, 90, 0.09), transparent 28%),
    var(--sheet);
}

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

.hero-copy h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
  margin: 0.35rem 0 0.8rem;
}

.lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 38ch;
}

.index-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  border-top: 1px dashed var(--line);
}

.index-list li {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.6rem;
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
}

.index-list span {
  font-family: var(--font-serif);
  color: var(--ochre);
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

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

.hero-chip {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: var(--navy);
  color: var(--sheet);
  padding: 0.9rem 1rem;
  border-radius: 14px;
  max-width: 16rem;
  font-size: 0.9rem;
}

.hero-chip strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: var(--terra);
  color: var(--sheet);
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 0.78rem 1.25rem;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
}

.btn:hover {
  background: var(--terra-deep);
  color: var(--sheet);
}

.btn-navy {
  background: var(--navy);
}

.btn-navy:hover {
  background: var(--navy-deep);
  color: var(--sheet);
}

.btn-line {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}

.btn-line:hover {
  background: var(--navy);
  color: var(--sheet);
}

.section-ink .btn-line {
  border-color: #efe8dc;
  color: #efe8dc;
}

.section-ink .btn-line:hover {
  background: #efe8dc;
  color: var(--navy);
}

.route-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 1.5rem auto 0;
  width: min(calc(100% - 2rem), var(--max));
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--sheet);
}

.route-strip article {
  padding: 1rem 1.1rem;
  border-right: 1px solid var(--line);
}

.route-strip article:last-child {
  border-right: 0;
}

.route-strip b {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--navy);
}

.route-strip span {
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.section {
  padding: 3.4rem 0;
  position: relative;
  z-index: 1;
}

.section-ink {
  background: var(--navy-deep);
  color: #e7dfd2;
}

.section-ink h2,
.section-ink h3 {
  color: var(--sheet);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr minmax(12rem, 28rem);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.8rem;
}

.section-head p {
  margin: 0;
  color: var(--ink-soft);
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  margin: 0 0 0.4rem;
  font-weight: 700;
}

.grid-3,
.grid-2,
.grid-4 {
  display: grid;
  gap: 1.1rem;
}

.grid-2 {
  grid-template-columns: 1.1fr 0.9fr;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.ticket {
  background: var(--sheet);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.ticket img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.ticket-body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.ticket-body h3 {
  font-size: 1.25rem;
  margin: 0;
}

.ticket-meta {
  color: var(--sage);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ticket-body p {
  color: var(--ink-soft);
  flex: 1;
}

.ticket-body .btn {
  align-self: start;
  margin-top: 0.4rem;
}

.split-photo {
  border-radius: 22px;
  overflow: hidden;
  min-height: 100%;
}

.split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.quote-stack {
  display: grid;
  gap: 1rem;
}

.quote {
  background: var(--sheet);
  border-left: 4px solid var(--ochre);
  padding: 1.1rem 1.2rem;
  border-radius: 0 16px 16px 0;
}

.quote p {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  margin-bottom: 0.6rem;
}

.quote footer {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.page-mast {
  padding: 2.4rem 0 0.4rem;
}

.page-mast h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  max-width: 18ch;
}

.crumbs {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 0.8rem;
}

.crumbs a {
  color: inherit;
}

.panel {
  background: var(--sheet);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
}

.price-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.price-card {
  background: var(--sheet);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  background: var(--navy);
  color: #efe8dc;
  border-color: var(--navy);
}

.price-card.featured h2,
.price-card.featured h3 {
  color: var(--sheet);
}

.price-card .amount {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  margin: 0.2rem 0 0.8rem;
}

.price-card ul {
  padding-left: 1.05rem;
  flex: 1;
}

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

.faq details {
  background: var(--sheet);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.6rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 650;
}

.modules {
  counter-reset: mod;
}

.module {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 0.8rem;
  padding: 1rem 0;
  border-bottom: 1px dashed var(--line);
}

.module::before {
  counter-increment: mod;
  content: counter(mod, decimal-leading-zero);
  font-family: var(--font-serif);
  color: var(--terra);
  font-size: 1.4rem;
}

.person {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.2rem;
  align-items: center;
}

.person img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--sheet);
}

.form {
  display: grid;
  gap: 0.85rem;
}

label {
  display: grid;
  gap: 0.3rem;
  font-weight: 600;
  font-size: 0.92rem;
}

input,
select,
textarea {
  font: inherit;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--sheet);
  color: var(--ink);
}

textarea {
  min-height: 8rem;
  resize: vertical;
}

.field-error {
  color: var(--err);
  font-weight: 500;
  font-size: 0.86rem;
}

.form-status {
  display: none;
  padding: 0.8rem 1rem;
  border-radius: 12px;
}

.form-status.is-ok {
  display: block;
  background: #e4f0e7;
  color: var(--ok);
}

.form-status.is-err {
  display: block;
  background: #f6e4e0;
  color: var(--err);
}

.contact-aside {
  background: var(--navy);
  color: #efe8dc;
  border-radius: 22px;
  padding: 1.5rem;
}

.contact-aside h2 {
  color: var(--sheet);
}

.verbatim {
  white-space: pre-wrap;
  font-family: var(--font-sans);
  background: rgba(255, 253, 248, 0.08);
  padding: 0.8rem;
  border-radius: 10px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--sheet);
  border-radius: 12px;
  overflow: hidden;
}

th,
td {
  text-align: left;
  padding: 0.7rem 0.8rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  background: var(--navy);
  color: var(--sheet);
  font-weight: 650;
}

.legal h2 {
  margin-top: 1.6rem;
}

.article-body {
  max-width: 68ch;
}

.article-body h2 {
  margin-top: 1.5rem;
}

.cover {
  border-radius: 22px;
  overflow: hidden;
  margin: 1rem 0 1.6rem;
}

.cover img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.blog-list {
  display: grid;
  gap: 1.1rem;
}

.blog-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.1rem;
  background: var(--sheet);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.blog-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 150px;
}

.blog-row div {
  padding: 1rem 1.1rem 1.1rem;
}

.stars {
  color: var(--ochre);
  letter-spacing: 0.08em;
}

.case {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.2rem;
  background: var(--sheet);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.case img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 240px;
}

.case-body {
  padding: 1.4rem 1.4rem 1.5rem 0;
}

.site-footer {
  background: var(--navy-deep);
  color: #d9d1c4;
  margin-top: 2rem;
  padding: 2.4rem 0 1.2rem;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr 0.9fr;
  gap: 1.5rem;
}

.footer-kicker {
  color: var(--ochre);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links a,
.site-footer a {
  color: #efe8dc;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-verbatim {
  font-size: 0.92rem;
}

.footer-base {
  margin-top: 1.6rem;
  border-top: 1px solid rgba(239, 232, 220, 0.15);
  padding-top: 1rem;
  font-size: 0.88rem;
}

.cookie-banner {
  position: fixed;
  z-index: 60;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  max-width: 720px;
  margin-inline: auto;
  background: var(--sheet);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1.1rem 1.2rem;
  display: none;
}

.cookie-banner.is-open {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.ghost-404 {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3rem 1rem;
}

.ghost-404 h1 {
  font-size: clamp(3rem, 10vw, 7rem);
  margin: 0;
}

.prose-wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

@media (max-width: 960px) {
  .hero-frame,
  .section-head,
  .grid-2,
  .grid-3,
  .grid-4,
  .price-grid,
  .blog-row,
  .case,
  .footer-grid,
  .prose-wide,
  .person,
  .route-strip {
    grid-template-columns: 1fr;
  }

  .route-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .case-body {
    padding: 1.2rem;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav {
    display: none;
    position: absolute;
    top: 4.4rem;
    left: 0;
    right: 0;
    background: var(--paper-2);
    border-bottom: 1px solid var(--line);
    padding: 0.8rem 1rem 1rem;
    flex-direction: column;
    align-items: stretch;
  }

  .nav.is-open {
    display: flex;
  }

  .nav-cta {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .hero-copy {
    padding: 1.4rem 1.15rem 1.3rem;
  }

  .blog-row {
    grid-template-columns: 1fr;
  }
}
