:root {
  --ink: #151313;
  --paper: #fff8e8;
  --panel: #ffffff;
  --gold: #f5bc3b;
  --green: #176e5b;
  --red: #c84d3d;
  --muted: #5f5a52;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 16%, rgba(245, 188, 59, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(21, 19, 19, 0.035) 25%, transparent 25%),
    var(--paper);
  background-size: auto, 16px 16px, auto;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255, 248, 232, 0.96);
  border-bottom: 3px solid var(--ink);
}

.brand {
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  font-weight: 800;
}

nav a {
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 78vh;
  padding: clamp(36px, 7vw, 92px) clamp(20px, 5vw, 72px);
  border-bottom: 4px solid var(--ink);
}

.eyebrow,
.comic-label {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 10px;
  color: var(--ink);
  background: var(--gold);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 18px;
  font-size: clamp(42px, 8vw, 92px);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.lead {
  max-width: 680px;
  color: #2f2b27;
  font-size: clamp(18px, 2.1vw, 26px);
  font-weight: 800;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(2px, 2px);
}

.primary {
  background: var(--green);
  color: white;
}

.secondary {
  background: var(--gold);
}

.trust {
  max-width: 640px;
  color: var(--muted);
  font-weight: 800;
}

.comic-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: white;
  border: 5px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  transform: rotate(1deg);
}

.comic-frame img {
  display: block;
  width: 100%;
  height: min(58vh, 540px);
  object-fit: cover;
}

.comic-frame figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  max-width: 270px;
  padding: 10px 12px;
  background: var(--paper);
  border: 3px solid var(--ink);
  font-weight: 900;
}

.character-frame {
  background: #f7edcf;
}

.character-frame img {
  height: min(66vh, 620px);
  object-position: center top;
}

.ink-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px;
  padding: clamp(36px, 6vw, 80px) clamp(20px, 5vw, 72px);
  color: white;
  background: var(--ink);
}

.ink-section p:not(.comic-label) {
  color: #f4ead7;
  font-size: clamp(18px, 2vw, 24px);
}

.section,
.feature-row,
.story,
.booking {
  padding: clamp(36px, 6vw, 80px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading > p:not(.comic-label) {
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
}

.problem-grid,
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.location-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.problem-grid article,
.location-grid > div {
  min-height: 178px;
  padding: 20px;
  background: var(--panel);
  border: 4px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  border-top: 4px solid var(--ink);
}

.feature-row.reverse {
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
}

.feature-row.reverse .portrait-photo {
  order: 2;
}

.treatment-panel {
  display: grid;
  min-height: 420px;
  place-items: center;
  padding: 30px;
  color: white;
  background:
    linear-gradient(45deg, rgba(255, 255, 255, 0.12) 25%, transparent 25%),
    var(--red);
  background-size: 18px 18px;
  text-align: center;
}

.treatment-panel p {
  margin: 0;
  max-width: 420px;
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 900;
}

.treatment-panel .impact-word {
  color: var(--gold);
  font-size: clamp(54px, 10vw, 126px);
  line-height: 0.85;
  text-shadow: 4px 4px 0 var(--ink);
}

.portrait-photo img {
  height: 420px;
  object-position: center;
}

.feature-row p {
  max-width: 680px;
  font-size: 18px;
}

.pull-quote {
  padding: 18px;
  background: var(--gold);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 900;
}

.story {
  color: white;
  background: var(--red);
  border-block: 4px solid var(--ink);
}

.story p {
  max-width: 850px;
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 800;
}

.story .small-note {
  max-width: 720px;
  margin-bottom: 0;
  color: #ffe5d4;
  font-size: 16px;
}

.booking {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: var(--green);
  color: white;
  border-bottom: 4px solid var(--ink);
}

.booking p {
  max-width: 680px;
}

.booking .primary {
  background: var(--gold);
  color: var(--ink);
}

.faq details {
  max-width: 900px;
  margin-bottom: 12px;
  padding: 18px 20px;
  background: white;
  border: 3px solid var(--ink);
}

.faq summary {
  cursor: pointer;
  font-size: 19px;
  font-weight: 900;
}

.faq details p {
  margin: 12px 0 0;
  color: var(--muted);
}

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: white;
}

footer a {
  color: var(--gold);
}

@media (max-width: 840px) {
  .site-header,
  .booking {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero,
  .ink-section,
  .feature-row,
  .feature-row.reverse,
  .problem-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .feature-row.reverse .portrait-photo {
    order: 0;
  }

  .comic-frame img {
    height: 360px;
  }

  .character-frame img {
    height: 440px;
  }

  .treatment-panel {
    min-height: 320px;
  }
}
