:root {
  --ink: #0b2119;
  --ink-soft: #103a2c;
  --cream: #f7f3e9;
  --paper: #fffdf7;
  --lime: #c8f244;
  --orange: #ff5a36;
  --pink: #ff4aa2;
  --violet: #654ff0;
  --blue: #2672ff;
  --line: rgba(23, 21, 31, 0.16);
  --shadow: 0 24px 70px rgba(23, 21, 31, 0.16);
  --radius: 1.5rem;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--pink);
  color: #fff;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.2em;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 4px solid var(--blue);
  outline-offset: 4px;
  border-radius: 0.3rem;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-160%);
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  color: #fff;
}

.header-inner {
  width: min(calc(100% - 2rem), var(--max-width));
  min-height: 5.5rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 3rem;
  text-decoration: none;
}

.brand-text {
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: 0.06em;
}

.brand-mark {
  width: 2.2rem;
  height: 2.2rem;
  position: relative;
  display: inline-block;
}

.brand-mark span {
  position: absolute;
  display: block;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
}

.brand-mark span:nth-child(1) {
  top: 0.1rem;
  left: 0.55rem;
  background: var(--pink);
}

.brand-mark span:nth-child(2) {
  bottom: 0.1rem;
  left: 0.1rem;
  background: var(--lime);
}

.brand-mark span:nth-child(3) {
  right: 0.05rem;
  bottom: 0.15rem;
  background: var(--orange);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin-left: auto;
}

.desktop-nav a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a:hover {
  color: var(--lime);
}

.button {
  min-height: 3.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.25rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 2.85rem;
  padding: 0.65rem 1rem;
  background: #fff;
  color: var(--ink);
  font-size: 0.88rem;
}

.button-small:hover {
  background: var(--lime);
  box-shadow: 0 10px 30px rgba(223, 255, 67, 0.25);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 9rem 0 5.5rem;
  background:
    radial-gradient(circle at 84% 8%, rgba(112, 92, 255, 0.42), transparent 24rem),
    radial-gradient(circle at 5% 78%, rgba(255, 74, 162, 0.22), transparent 28rem),
    var(--ink);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  right: -6rem;
  bottom: -11rem;
  width: 32rem;
  height: 32rem;
  border: 5rem solid rgba(223, 255, 67, 0.08);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: #625d70;
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--lime);
}

.eyebrow span {
  margin-right: 0.35rem;
  color: var(--pink);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: ui-rounded, "Arial Rounded MT Bold", Inter, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.2rem, 6.4vw, 5.5rem);
  font-weight: 950;
}

h1 span {
  display: inline-block;
  position: relative;
  z-index: 1;
  color: var(--lime);
  white-space: nowrap;
}

h1 span::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -0.08em;
  bottom: 0.05em;
  left: -0.08em;
  height: 0.16em;
  background: var(--pink);
  transform: rotate(-1.5deg);
}

h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.25rem, 5vw, 4.65rem);
  font-weight: 950;
}

h3 {
  font-size: 1.45rem;
  font-weight: 900;
}

.hero-lead {
  max-width: 39rem;
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.button-primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 16px 42px rgba(223, 255, 67, 0.19);
}

.button-primary:hover {
  background: #edff86;
  box-shadow: 0 20px 52px rgba(223, 255, 67, 0.3);
}

.text-link {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-weight: 800;
  text-decoration-color: var(--pink);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 750;
}

.trust-list li::before {
  content: "✓";
  margin-right: 0.4rem;
  color: var(--lime);
  font-weight: 950;
}

.hero-media {
  position: relative;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 4.8;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 44% 44% 1.75rem 1.75rem;
  background: #5b8754;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
}

.photo-stamp {
  position: absolute;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 7.1rem;
  height: 7.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  line-height: 1;
  text-align: center;
  transform: rotate(-8deg);
}

.photo-stamp span {
  font-size: 1.55rem;
  font-weight: 950;
}

.photo-stamp small {
  margin-top: 0.2rem;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-note {
  position: absolute;
  z-index: 3;
  bottom: -1.65rem;
  left: -2.4rem;
  min-width: min(19rem, 90%);
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
  transform: rotate(-2.5deg);
}

.hero-note strong,
.hero-note span {
  display: block;
}

.hero-note strong {
  font-size: 0.96rem;
}

.hero-note span {
  color: #625d70;
  font-size: 0.83rem;
}

.confetti {
  position: absolute;
  z-index: 1;
  width: 0.8rem;
  height: 2.2rem;
  border-radius: 0.2rem;
  background: var(--orange);
  transform: rotate(32deg);
}

.confetti-one {
  top: 18%;
  left: 4%;
  box-shadow: 8vw 52vh 0 var(--lime), 48vw -7vh 0 var(--pink), 86vw 34vh 0 var(--violet);
}

.confetti-two {
  right: 3%;
  bottom: 9%;
  background: var(--pink);
  box-shadow: -10vw -59vh 0 var(--lime), -53vw -6vh 0 var(--orange), -91vw -32vh 0 var(--violet);
  transform: rotate(-42deg);
}

.section {
  padding: clamp(4.5rem, 9vw, 8.5rem) 0;
}

.section-inner {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.7fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: start;
}

.intro h2 {
  max-width: 12ch;
}

.intro-copy {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.intro-copy p {
  margin: 0 0 1.2rem;
  color: #4e4958;
  font-size: 1.08rem;
}

.section-heading {
  max-width: 52rem;
  margin-bottom: 3rem;
}

.section-heading > p:last-child {
  max-width: 44rem;
  margin-bottom: 0;
  color: #5b5665;
  font-size: 1.08rem;
}

.audiences {
  background:
    linear-gradient(rgba(23, 21, 31, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 21, 31, 0.045) 1px, transparent 1px),
    var(--cream);
  background-size: 2rem 2rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.audience-card {
  position: relative;
  min-height: 31rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 2.7rem);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--ink);
}

.kids-card {
  background: var(--pink);
  color: #1b1119;
}

.adults-card {
  background: var(--violet);
  color: #fff;
}

.audience-card::after {
  content: "";
  position: absolute;
  right: -6rem;
  bottom: -7rem;
  width: 19rem;
  height: 19rem;
  border: 3.5rem solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.card-number {
  position: absolute;
  top: 1rem;
  right: 1.4rem;
  color: rgba(255, 255, 255, 0.25);
  font-size: clamp(4.8rem, 10vw, 8.5rem);
  font-weight: 950;
  letter-spacing: -0.09em;
  line-height: 1;
}

.kids-card .card-number {
  color: rgba(23, 21, 31, 0.15);
}

.card-label {
  position: relative;
  z-index: 1;
  margin: 0 0 auto;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.audience-card h3 {
  position: relative;
  z-index: 1;
  max-width: 8ch;
  margin: 5rem 0 1rem;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
}

.audience-card > p:not(.card-label) {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  margin: 0 0 2rem;
  font-weight: 650;
}

.card-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid currentColor;
}

.card-footer span {
  font-weight: 900;
}

.card-footer a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  font-weight: 900;
}

.audience-note {
  max-width: 52rem;
  margin: 2.25rem auto 0;
  padding: 1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--paper);
  color: #514c5b;
  text-align: center;
}

.how {
  background: var(--paper);
}

.how-grid {
  display: grid;
  grid-template-columns: minmax(290px, 0.76fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 9vw, 8rem);
  align-items: center;
}

.how-media {
  position: relative;
  align-self: stretch;
  min-height: 44rem;
}

.how-media img {
  width: 100%;
  height: 100%;
  min-height: 44rem;
  object-fit: cover;
  object-position: center 61%;
  border-radius: 999px 999px 1.5rem 1.5rem;
  box-shadow: var(--shadow);
}

.how-media p {
  position: absolute;
  right: -2rem;
  bottom: 2rem;
  margin: 0;
  padding: 1rem 1.25rem;
  border: 2px solid var(--ink);
  border-radius: 1rem;
  background: var(--lime);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.25;
  transform: rotate(3deg);
}

.how-content h2 {
  max-width: 11ch;
}

.steps {
  margin: 2.5rem 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
}

.steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.step-number {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  font-weight: 950;
}

.steps h3 {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.steps p {
  margin: 0;
  color: #5a5563;
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.button-dark:hover {
  background: var(--violet);
  box-shadow: 0 14px 36px rgba(112, 92, 255, 0.22);
}

.location {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.location::before {
  content: "SKÅNE";
  position: absolute;
  right: -0.03em;
  bottom: -0.15em;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(8rem, 22vw, 23rem);
  font-weight: 950;
  letter-spacing: -0.1em;
  line-height: 1;
  pointer-events: none;
}

.location-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.72fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.section-kicker-light {
  color: var(--lime);
}

.location-copy h2 {
  max-width: 12ch;
}

.location-copy > p:not(.section-kicker) {
  max-width: 45rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.08rem;
}

.place-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2rem;
}

.place-tags span {
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
}

.safety-card {
  padding: 2rem;
  border: 2px solid #fff;
  border-radius: var(--radius);
  background: var(--lime);
  color: var(--ink);
  box-shadow: 12px 12px 0 var(--pink);
  transform: rotate(1.4deg);
}

.safety-icon {
  width: 3.7rem;
  height: 3.7rem;
  display: grid;
  place-items: center;
  margin-bottom: 2rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  font-size: 1.7rem;
  font-weight: 950;
}

.safety-card h3 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.safety-card p {
  line-height: 1.55;
}

.safety-card ul {
  margin: 1.4rem 0;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(23, 21, 31, 0.25);
  border-bottom: 1px solid rgba(23, 21, 31, 0.25);
  list-style: none;
}

.safety-card li {
  margin: 0.45rem 0;
  font-weight: 750;
}

.safety-card li span {
  display: inline-block;
  min-width: 1.5rem;
  font-weight: 950;
}

.safety-card a {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 900;
}

.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: clamp(3rem, 9vw, 8rem);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 2rem;
}

.faq-heading h2 {
  max-width: 10ch;
}

.faq-heading > p:last-child {
  max-width: 28rem;
  color: #5a5563;
}

.faq-list {
  border-top: 2px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 5.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.2rem 0;
  cursor: pointer;
  font-size: 1.12rem;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  flex: 0 0 auto;
  width: 2.3rem;
  height: 2.3rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.85rem;
  height: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%);
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  background: var(--lime);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details p {
  max-width: 45rem;
  margin: 0;
  padding: 0 3.5rem 1.5rem 0;
  color: #57515f;
}

.final-cta {
  background: var(--cream);
}

.final-card {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6.5rem) clamp(1.5rem, 8vw, 7rem);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 74, 162, 0.42), transparent 25rem),
    var(--violet);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}

.final-card::before,
.final-card::after {
  content: "";
  position: absolute;
  width: 13rem;
  height: 13rem;
  border: 2.3rem solid rgba(223, 255, 67, 0.16);
  border-radius: 50%;
}

.final-card::before {
  top: -6rem;
  left: -5rem;
}

.final-card::after {
  right: -5rem;
  bottom: -7rem;
}

.final-card > * {
  position: relative;
  z-index: 1;
}

.final-card h2 {
  max-width: 14ch;
  margin-right: auto;
  margin-left: auto;
}

.final-card > p:not(.section-kicker):not(.microcopy) {
  max-width: 38rem;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.button-large {
  min-height: 4rem;
  padding: 1rem 1.6rem;
  font-size: 1.05rem;
}

.microcopy {
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 700;
}

.site-footer {
  padding: 4rem max(1rem, env(safe-area-inset-right)) calc(1.5rem + env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  background: var(--ink);
  color: #fff;
}

.footer-inner,
.footer-bottom {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand {
  display: block;
  width: 6rem;
  margin-bottom: 0.7rem;
  text-decoration: none;
}

.footer-brand img {
  width: 100%;
  height: auto;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(10rem, 1fr));
  gap: 0.5rem 2rem;
}

.footer-links a {
  min-height: 2.6rem;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  font-weight: 700;
}

.mobile-booking {
  display: none;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
    gap: 2.25rem;
  }

  h1 {
    font-size: clamp(3.2rem, 7vw, 5rem);
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .safety-card {
    max-width: 40rem;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 1rem;
  }

  body {
    padding-bottom: calc(4.9rem + env(safe-area-inset-bottom));
  }

  .header-inner {
    min-height: 4.75rem;
  }

  .brand-text {
    font-size: 0.9rem;
  }

  .brand-mark {
    width: 1.85rem;
    height: 1.85rem;
  }

  .brand-mark span {
    width: 0.9rem;
    height: 0.9rem;
  }

  .button-small {
    min-height: 2.7rem;
    padding: 0.55rem 0.85rem;
    font-size: 0.8rem;
  }

  .hero {
    min-height: auto;
    padding: 7rem 0 5.4rem;
  }

  .hero-inner,
  .intro-grid,
  .audience-grid,
  .how-grid,
  .faq-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 3.5rem;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(2.95rem, 14.3vw, 4.25rem);
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.45rem);
  }

  .hero-lead {
    font-size: 1.03rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .trust-list {
    gap: 0.45rem;
  }

  .trust-list li {
    padding-right: 0.62rem;
    padding-left: 0.62rem;
    font-size: 0.75rem;
  }

  .hero-media {
    width: min(100%, 31rem);
    margin: 0 auto;
  }

  .photo-frame {
    aspect-ratio: 4 / 3.6;
    border-radius: 40% 40% 1.2rem 1.2rem;
    transform: rotate(0.8deg);
  }

  .photo-stamp {
    width: 6.2rem;
    height: 6.2rem;
  }

  .hero-note {
    bottom: -2rem;
    left: 0.75rem;
  }

  .section {
    padding: 4.7rem 0;
  }

  .intro-grid {
    gap: 1.2rem;
  }

  .intro-copy {
    padding-top: 1.25rem;
  }

  .audience-card {
    min-height: 28rem;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .audience-card h3 {
    margin-top: 4.5rem;
  }

  .card-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .audience-note {
    text-align: left;
  }

  .how-grid {
    gap: 3rem;
  }

  .how-media {
    width: min(85%, 25rem);
    min-height: 34rem;
    margin: 0 auto;
  }

  .how-media img {
    min-height: 34rem;
  }

  .how-media p {
    right: -1.5rem;
    bottom: 1.5rem;
  }

  .location-grid {
    gap: 3.5rem;
  }

  .safety-card {
    margin-right: 0.45rem;
    transform: rotate(0.5deg);
  }

  .faq-heading {
    position: static;
  }

  .faq-list summary {
    min-height: 4.8rem;
    font-size: 1.03rem;
  }

  .final-card {
    border-radius: 1.4rem;
  }

  .footer-inner {
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-booking {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 0.65rem max(0.75rem, env(safe-area-inset-right)) calc(0.65rem + env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-left));
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(23, 21, 31, 0.96);
    backdrop-filter: blur(12px);
  }

  .mobile-booking a {
    min-height: 3.55rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border-radius: 999px;
    background: var(--lime);
    color: var(--ink);
    font-weight: 950;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
  }
}

@media (max-width: 390px) {
  .header-inner,
  .hero-inner,
  .section-inner {
    width: min(calc(100% - 1.25rem), var(--max-width));
  }

  .brand-text {
    max-width: 4.7rem;
    line-height: 1;
  }

  .button-small {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }

  .trust-list li {
    font-size: 0.71rem;
  }

  .audience-card,
  .safety-card {
    padding: 1.35rem;
  }

  .how-media p {
    right: -0.8rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .mobile-booking,
  .hero-actions,
  .final-cta {
    display: none;
  }

  body,
  .hero,
  .location,
  .site-footer {
    background: #fff;
    color: #000;
  }
}
