:root {
  --ink: #101a3a;
  --ink-deep: #080e22;
  --paper: #fffdf8;
  --white: #ffffff;
  --yellow: #ffd84d;
  --pink: #ff4778;
  --blue: #49c7f3;
  --blue-deep: #0d719a;
  --mint: #a8f0d1;
  --line: rgba(16, 26, 58, 0.16);
  --shadow: 0 24px 70px rgba(8, 14, 34, 0.14);
  --radius: 1.5rem;
  --shell: min(74rem, calc(100% - 2.5rem));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  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;
}

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

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

a {
  color: inherit;
}

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

h1,
h2,
h3,
.brand,
.button,
.eyebrow,
.section-kicker,
.pill,
.card-number {
  font-family: ui-rounded, "Arial Rounded MT Bold", Inter, ui-sans-serif, system-ui, sans-serif;
}

h1,
h2,
h3 {
  color: var(--ink-deep);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.35rem;
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  font-weight: 900;
}

h1 em {
  position: relative;
  display: inline-block;
  color: var(--pink);
  font-style: normal;
}

h1 em::after {
  position: absolute;
  right: 0;
  bottom: -0.08em;
  left: 0;
  height: 0.11em;
  border-radius: 999px;
  background: var(--yellow);
  content: "";
  transform: rotate(-1.5deg);
}

h1 > span {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.31em;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

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

h3 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 900;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.narrow {
  max-width: 55rem;
}

.center {
  text-align: center;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.8rem 1rem;
  border-radius: 0.75rem;
  color: var(--white);
  background: var(--ink-deep);
  font-weight: 800;
  transform: translateY(-180%);
}

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

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--ink-deep) !important;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(16, 26, 58, 0.1);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink-deep);
  font-size: 1.08rem;
  font-weight: 950;
  line-height: 0.86;
  letter-spacing: -0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-bubbles {
  position: relative;
  display: block;
  width: 2.6rem;
  height: 2.6rem;
}

.brand-bubbles i {
  position: absolute;
  border: 3px solid var(--ink-deep);
  border-radius: 50%;
}

.brand-bubbles i:nth-child(1) {
  width: 1.45rem;
  height: 1.45rem;
  top: 0;
  left: 0;
  background: var(--yellow);
}

.brand-bubbles i:nth-child(2) {
  width: 1.35rem;
  height: 1.35rem;
  right: 0;
  bottom: 0;
  background: var(--pink);
}

.brand-bubbles i:nth-child(3) {
  width: 0.85rem;
  height: 0.85rem;
  right: 0.1rem;
  top: 0.05rem;
  background: var(--blue);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.main-nav a:hover,
.text-link:hover,
.site-footer a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25em;
}

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.85rem 1.25rem;
  border: 3px solid var(--ink-deep);
  border-radius: 999px;
  box-shadow: 4px 5px 0 var(--ink-deep);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button:active {
  box-shadow: none;
  transform: translate(4px, 5px);
}

.button-small {
  min-height: 2.8rem;
  padding: 0.65rem 1.05rem;
  background: var(--yellow);
  box-shadow: 3px 4px 0 var(--ink-deep);
}

.button-primary {
  color: var(--ink-deep);
  background: var(--yellow);
}

.button-dark {
  color: var(--white);
  background: var(--ink-deep);
  box-shadow: 4px 5px 0 var(--pink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.2rem, 8vw, 7.6rem) 0 clamp(4.5rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 4% 92%, rgba(73, 199, 243, 0.2) 0 8rem, transparent 8.1rem),
    radial-gradient(circle at 96% 12%, rgba(255, 216, 77, 0.28) 0 10rem, transparent 10.1rem),
    var(--paper);
}

.hero-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, var(--pink) 0 3px, transparent 4px),
    radial-gradient(circle, var(--blue) 0 3px, transparent 4px),
    radial-gradient(circle, var(--yellow) 0 3px, transparent 4px);
  background-position: 8% 18%, 88% 70%, 72% 8%;
  background-repeat: no-repeat;
  opacity: 0.9;
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(23rem, 0.92fr);
  gap: clamp(3rem, 7vw, 7rem);
}

.eyebrow,
.section-kicker {
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.eyebrow span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0.85rem -0.15rem 0 var(--yellow), 0.4rem 0.65rem 0 var(--blue);
}

.hero-lead {
  max-width: 39rem;
  margin-bottom: 2rem;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.6;
}

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

.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  font-weight: 850;
  text-underline-offset: 0.2em;
}

.quick-facts {
  display: grid;
  margin: 2.4rem 0 0;
  padding: 1.2rem 0 0;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}

.quick-facts li {
  padding-right: 1rem;
}

.quick-facts li + li {
  padding-left: 1rem;
  border-left: 1px solid var(--line);
}

.quick-facts strong,
.quick-facts span {
  display: block;
}

.quick-facts strong {
  font-size: 0.95rem;
  line-height: 1.25;
}

.quick-facts span {
  margin-top: 0.2rem;
  color: rgba(16, 26, 58, 0.7);
  font-size: 0.78rem;
}

.hero-visual {
  position: relative;
  margin: 0;
}

.photo-frame {
  overflow: hidden;
  border: 5px solid var(--ink-deep);
  border-radius: 47% 53% 43% 57% / 51% 43% 57% 49%;
  background: var(--blue);
  box-shadow: 14px 18px 0 var(--blue), 17px 21px 0 var(--ink-deep);
  transform: rotate(2deg);
}

.photo-frame img {
  width: 100%;
  aspect-ratio: 571 / 510;
  object-fit: cover;
}

.hero-visual figcaption {
  position: absolute;
  z-index: 2;
  right: -1rem;
  bottom: 1.8rem;
  max-width: 13rem;
  padding: 0.85rem 1rem;
  border: 3px solid var(--ink-deep);
  border-radius: 1rem;
  background: var(--white);
  box-shadow: 5px 6px 0 var(--ink-deep);
  font-size: 0.9rem;
  line-height: 1.35;
  transform: rotate(-3deg);
}

.round-stamp {
  position: absolute;
  z-index: 3;
  top: -2rem;
  left: -2rem;
  display: grid;
  width: 7.5rem;
  height: 7.5rem;
  place-content: center;
  border: 4px solid var(--ink-deep);
  border-radius: 50%;
  color: var(--ink-deep);
  background: var(--pink);
  box-shadow: 5px 6px 0 var(--ink-deep);
  font-size: 0.73rem;
  font-weight: 950;
  line-height: 1.15;
  text-align: center;
  letter-spacing: 0.08em;
  transform: rotate(-9deg);
}

.proof-bar {
  padding: 1rem 0;
  color: var(--white);
  background: var(--ink-deep);
}

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

.proof-grid p {
  margin: 0;
  padding: 0.15rem 1rem;
  font-size: 0.88rem;
  font-weight: 850;
  text-align: center;
}

.proof-grid p + p {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.proof-grid span {
  margin-right: 0.3rem;
  color: var(--yellow);
}

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

.section-kicker {
  margin-bottom: 0.9rem;
}

.section-intro {
  margin-bottom: 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.intro-section {
  background: var(--white);
}

.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: 2.8rem;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  gap: 2.5rem;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.choice-section {
  background: #f4f7ff;
}

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

.choice-card {
  position: relative;
  overflow: hidden;
  min-height: 30rem;
  padding: clamp(1.8rem, 4vw, 3rem);
  border: 4px solid var(--ink-deep);
  border-radius: var(--radius);
  box-shadow: 8px 9px 0 var(--ink-deep);
}

.card-yellow {
  background: var(--yellow);
}

.card-blue {
  background: var(--blue);
}

.card-number {
  position: absolute;
  right: 1.2rem;
  bottom: -2.5rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10rem;
  font-weight: 950;
  line-height: 1;
}

.pill {
  display: inline-block;
  margin-bottom: 1.6rem;
  padding: 0.4rem 0.75rem;
  border: 2px solid var(--ink-deep);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-lead {
  position: relative;
  max-width: 30rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.clean-list,
.check-list {
  position: relative;
  margin: 1.5rem 0 2.2rem;
  padding: 0;
  list-style: none;
}

.clean-list li,
.check-list li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.8rem;
  border-bottom: 1px solid rgba(16, 26, 58, 0.2);
  font-weight: 700;
}

.clean-list li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  content: "✓";
  font-weight: 950;
}

.card-link {
  position: relative;
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.5rem;
  font-weight: 950;
  text-decoration-thickness: 3px;
  text-underline-offset: 0.3em;
}

.safety-note {
  max-width: 58rem;
  margin: 2.4rem auto 0;
  padding: 1rem 1.2rem;
  border-left: 5px solid var(--pink);
  background: var(--white);
}

.steps-section {
  color: rgba(255, 255, 255, 0.83);
  background: var(--ink-deep);
}

.heading-light h2,
.steps-section h3 {
  color: var(--white);
}

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

.steps-grid {
  display: grid;
  margin: 0;
  padding: 0;
  counter-reset: step;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  gap: 1rem;
}

.steps-grid li {
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.06);
}

.steps-grid li > span {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 2rem;
  place-content: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  color: var(--ink-deep);
  background: var(--yellow);
  box-shadow: 3px 4px 0 var(--pink);
  font-weight: 950;
}

.steps-grid p {
  margin-bottom: 0;
}

.season-section {
  background: var(--white);
}

.season-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.season-copy p:not(.section-kicker) {
  font-size: 1.08rem;
}

.included-card {
  position: relative;
  padding: clamp(1.7rem, 4vw, 3rem);
  border: 4px solid var(--ink-deep);
  border-radius: var(--radius);
  background: var(--mint);
  box-shadow: 10px 12px 0 var(--pink), 14px 16px 0 var(--ink-deep);
  transform: rotate(1deg);
}

.included-card .check-list {
  margin-bottom: 0;
}

.skane-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(73, 199, 243, 0.12), rgba(255, 216, 77, 0.14));
}

.skane-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 7vw, 7rem);
}

.skane-grid p:last-child {
  margin-bottom: 0;
}

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

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.faq-intro {
  position: sticky;
  top: 7rem;
}

.faq-intro h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.faq-intro .button {
  margin-top: 1rem;
}

.accordion {
  border-top: 3px solid var(--ink-deep);
}

.accordion details {
  border-bottom: 3px solid var(--ink-deep);
}

.accordion summary {
  position: relative;
  padding: 1.35rem 3.2rem 1.35rem 0;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 900;
  list-style: none;
}

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

.accordion summary::after {
  position: absolute;
  top: 50%;
  right: 0.25rem;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-content: center;
  border: 2px solid var(--ink-deep);
  border-radius: 50%;
  background: var(--yellow);
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
  transform: translateY(-50%);
}

.accordion details[open] summary::after {
  content: "−";
}

.accordion details p {
  max-width: 46rem;
  margin: -0.25rem 0 1.5rem;
  padding-right: 3rem;
}

.final-cta {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
  color: var(--white);
  background: var(--pink);
}

.final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.final-inner h2 {
  max-width: 15ch;
  margin-bottom: 0;
  color: var(--ink-deep);
}

.final-inner .section-kicker {
  color: var(--ink-deep);
}

.site-footer {
  padding: 4rem 0 5rem;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 2.5rem;
}

.brand-footer {
  margin-bottom: 1rem;
  color: var(--white);
}

.brand-footer .brand-bubbles i {
  border-color: var(--white);
}

.site-footer h2 {
  margin-bottom: 0.8rem;
  color: var(--yellow);
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-footer a,
.site-footer p {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
}

.mobile-booking {
  display: none;
}

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

  .hero-grid {
    grid-template-columns: 1fr 0.88fr;
    gap: 3rem;
  }

  .round-stamp {
    top: -2.5rem;
    left: -1.25rem;
    width: 6.5rem;
    height: 6.5rem;
    font-size: 0.62rem;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem 0;
  }

  .proof-grid p:nth-child(3) {
    border-left: 0;
  }
}

@media (max-width: 780px) {
  :root {
    --shell: min(100% - 1.5rem, 42rem);
  }

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

  .site-header .button-small {
    min-height: 2.7rem;
    padding: 0.55rem 0.9rem;
  }

  .hero {
    padding-top: 3.7rem;
  }

  .hero-grid,
  .section-heading,
  .choice-grid,
  .season-grid,
  .skane-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 4.2rem;
  }

  .hero-copy {
    max-width: 40rem;
  }

  .hero-visual {
    width: min(100% - 1rem, 32rem);
    margin-inline: auto;
  }

  .section-heading {
    align-items: start;
    gap: 0.6rem;
  }

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

  .steps-grid li {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1rem;
  }

  .steps-grid li > span {
    margin: 0;
    grid-row: 1 / span 2;
  }

  .steps-grid h3,
  .steps-grid p {
    grid-column: 2;
  }

  .faq-intro {
    position: static;
  }

  .final-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .mobile-booking {
    position: fixed;
    z-index: 80;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 4.8rem;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    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: 2px solid var(--ink-deep);
    background: rgba(255, 253, 248, 0.97);
    box-shadow: 0 -10px 30px rgba(8, 14, 34, 0.12);
    backdrop-filter: blur(14px);
  }

  .mobile-booking span,
  .mobile-booking small {
    display: block;
  }

  .mobile-booking strong {
    font-size: 0.9rem;
  }

  .mobile-booking small {
    color: rgba(16, 26, 58, 0.68);
    font-size: 0.75rem;
  }

  .mobile-booking .button {
    min-height: 2.8rem;
    padding: 0.62rem 1rem;
    box-shadow: 3px 3px 0 var(--ink-deep);
  }
}

@media (max-width: 520px) {
  h1 {
    max-width: 10ch;
    font-size: clamp(2.75rem, 14.5vw, 4.25rem);
  }

  h2 {
    font-size: clamp(2rem, 10.5vw, 3rem);
  }

  .brand {
    font-size: 0.95rem;
  }

  .brand-bubbles {
    width: 2.25rem;
    height: 2.25rem;
  }

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

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

  .hero-actions {
    align-items: stretch;
  }

  .text-link {
    padding: 0.4rem 0;
    text-align: center;
  }

  .quick-facts {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .quick-facts li,
  .quick-facts li + li {
    padding: 0 0 0.7rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .quick-facts li:last-child {
    border-bottom: 0;
  }

  .hero-visual figcaption {
    right: -0.25rem;
    bottom: 0.5rem;
    max-width: 11rem;
    font-size: 0.8rem;
  }

  .round-stamp {
    top: -3.3rem;
    left: 0.25rem;
    width: 5.8rem;
    height: 5.8rem;
    border-width: 3px;
    font-size: 0.56rem;
  }

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

  .proof-grid p,
  .proof-grid p + p {
    border-left: 0;
  }

  .choice-card {
    min-height: 0;
    padding: 1.5rem;
    box-shadow: 6px 7px 0 var(--ink-deep);
  }

  .card-number {
    font-size: 7rem;
  }

  .steps-grid li {
    display: block;
  }

  .steps-grid li > span {
    margin-bottom: 1.2rem;
  }

  .steps-grid h3,
  .steps-grid p {
    grid-column: auto;
  }

  .included-card {
    box-shadow: 4px 5px 0 var(--pink), 7px 8px 0 var(--ink-deep);
    transform: none;
  }

  .accordion details p {
    padding-right: 0;
  }

  .final-inner .button,
  .faq-intro .button {
    width: 100%;
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }
}

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

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