:root {
  --cream: #fff7e8;
  --ink: #151515;
  --muted: #5f5b54;
  --orange: #ff7a1a;
  --pink: #ff4fa3;
  --blue: #3366ff;
  --yellow: #ffd43b;
  --green: #3ddc97;
  --white: #ffffff;
  --line: #151515;
  --shadow: 10px 10px 0 #151515;
  --small-shadow: 5px 5px 0 #151515;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 212, 59, 0.55), transparent 18%),
    radial-gradient(circle at 88% 18%, rgba(255, 79, 163, 0.35), transparent 22%),
    radial-gradient(circle at 52% 75%, rgba(51, 102, 255, 0.22), transparent 25%),
    var(--cream);
  color: var(--ink);
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

button {
  border: none;
}

.page-noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.05;
  z-index: 9000;
  background-image:
    linear-gradient(90deg, var(--ink) 1px, transparent 1px),
    linear-gradient(var(--ink) 1px, transparent 1px);
  background-size: 28px 28px;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
}

.header-inner {
  min-height: 58px;
  background: rgba(255, 247, 232, 0.9);
  border: 2px solid var(--line);
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 10px 8px 14px;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border: 2px solid var(--line);
  border-radius: 11px;
  background: var(--orange);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-4deg);
  font-size: 1rem;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.desktop-nav a,
.nav-link-button {
  position: relative;
  background: transparent;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.desktop-nav a::after,
.nav-link-button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: 0.2s ease;
}

.desktop-nav a:hover::after,
.nav-link-button:hover::after {
  width: 100%;
}

.header-cta,
.main-button,
.ghost-button,
.package-button,
.tile-button,
.proof-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--line);
  border-radius: 999px;
  font-weight: 950;
  cursor: pointer;
  transition: 0.2s ease;
  text-align: center;
  line-height: 1;
}

.header-cta {
  background: var(--ink);
  color: var(--white);
  padding: 11px 15px;
  font-size: 0.82rem;
}

.header-cta:hover {
  background: var(--orange);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  transform: translate(-2px, -2px);
}

/* HERO */

.hero-section {
  padding: 82px 0 56px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 54px;
  align-items: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 900;
  margin-bottom: 28px;
}

.hero-label span {
  width: 12px;
  height: 12px;
  background: var(--green);
  border: 2px solid var(--line);
  border-radius: 999px;
}

h1 {
  font-size: clamp(3.1rem, 7.4vw, 6.9rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
  max-width: 980px;
  margin-bottom: 28px;
}

.hero-copy p {
  font-size: 1.18rem;
  max-width: 650px;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 30px;
}

.gradient-text {
  color: var(--orange);
  text-shadow: 3px 3px 0 var(--ink);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.main-button {
  background: var(--orange);
  color: var(--ink);
  padding: 16px 23px;
  box-shadow: var(--small-shadow);
}

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

.ghost-button {
  background: var(--white);
  color: var(--ink);
  padding: 16px 23px;
  box-shadow: var(--small-shadow);
}

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

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

.hero-orbit {
  width: min(420px, 82vw);
  height: min(420px, 82vw);
  border: 3px solid var(--line);
  border-radius: 46% 54% 53% 47% / 48% 44% 56% 52%;
  background:
    linear-gradient(135deg, rgba(255, 212, 59, 0.95), rgba(255, 122, 26, 0.9)),
    var(--yellow);
  box-shadow: var(--shadow);
  position: absolute;
  right: 20px;
  top: 45px;
  animation: wobble 9s ease-in-out infinite;
}

.orbit-center {
  position: absolute;
  inset: 72px;
  border: 3px solid var(--line);
  border-radius: 50%;
  background: var(--cream);
  display: grid;
  place-items: center;
}

.orbit-center span {
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  border: 3px solid var(--line);
  background: var(--blue);
  color: var(--white);
  border-radius: 34px;
  box-shadow: var(--small-shadow);
  font-size: 4rem;
  font-weight: 950;
  transform: rotate(-8deg);
}

.floating-card {
  position: absolute;
  z-index: 4;
  width: 220px;
  background: var(--white);
  border: 3px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--small-shadow);
}

.floating-card span {
  display: inline-flex;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  padding: 4px 10px;
  font-weight: 950;
  margin-bottom: 10px;
}

.floating-card strong {
  display: block;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}

.floating-card p {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.card-one {
  top: 0;
  left: 10px;
  transform: rotate(-5deg);
}

.card-two {
  right: 0;
  bottom: 35px;
  transform: rotate(4deg);
}

.card-three {
  left: 0;
  bottom: 90px;
  transform: rotate(5deg);
  background: var(--green);
}

/* TICKER */

.marquee-section {
  overflow: hidden;
  border-top: 3px solid var(--line);
  border-bottom: 3px solid var(--line);
  background: var(--ink);
  color: var(--white);
  padding: 9px 0;
}

.marquee-track {
  display: flex;
  gap: 24px;
  min-width: max-content;
  animation: marquee 26s linear infinite;
}

.marquee-track span {
  font-size: clamp(1rem, 2.2vw, 1.75rem);
  font-weight: 950;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.marquee-track span:nth-child(odd) {
  color: var(--yellow);
}

/* SECTIONS */

.services-section,
.process-section,
.packages-section,
.faq-section,
.proof-section,
.cta-strip {
  padding: 90px 0;
}

.section-kicker {
  display: inline-flex;
  background: var(--pink);
  color: var(--white);
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 950;
  margin-bottom: 18px;
  transform: rotate(-1.5deg);
}

.big-section-title {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 38px;
}

.big-section-title h2,
.process-left h2,
.modal-heading h2,
.faq-layout h2,
.cta-strip h2 {
  font-size: clamp(2.5rem, 5.4vw, 5.3rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.big-section-title p,
.process-left p,
.modal-heading p {
  color: var(--muted);
  font-weight: 750;
  font-size: 1.08rem;
}

.service-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 3px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--line);
  gap: 3px;
}

.service-tile {
  min-height: 480px;
  padding: 24px;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

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

.tile-blue {
  background: #92b7ff;
}

.tile-pink {
  background: #ff9aca;
}

.tile-green {
  background: #9bf0c8;
}

.tile-number {
  font-weight: 950;
  font-size: 0.95rem;
  background: var(--ink);
  color: var(--white);
  width: fit-content;
  padding: 6px 11px;
  border-radius: 999px;
  margin-bottom: auto;
}

.service-tile h3 {
  font-size: 2.1rem;
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin: 40px 0 12px;
}

.service-tile p {
  color: var(--ink);
  font-weight: 750;
  margin-bottom: 20px;
}

.service-tile ul,
.package-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.service-tile li::before,
.package-card li::before {
  content: "✦ ";
}

.tile-button {
  margin-top: 22px;
  background: var(--white);
  color: var(--ink);
  padding: 14px 18px;
  box-shadow: 4px 4px 0 var(--ink);
}

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

.process-section {
  background: var(--ink);
  color: var(--white);
  border-top: 3px solid var(--line);
  border-bottom: 3px solid var(--line);
}

.process-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: start;
}

.process-left p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 20px;
}

.process-steps {
  display: grid;
  gap: 18px;
}

.process-step {
  background: var(--cream);
  color: var(--ink);
  border: 3px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  display: flex;
  gap: 18px;
  box-shadow: 7px 7px 0 var(--orange);
}

.process-step:nth-child(even) {
  box-shadow: 7px 7px 0 var(--blue);
  transform: rotate(1deg);
}

.process-step:nth-child(odd) {
  transform: rotate(-1deg);
}

.process-step span {
  min-width: 52px;
  height: 52px;
  border: 2px solid var(--line);
  background: var(--yellow);
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 950;
}

.process-step h3 {
  font-size: 1.45rem;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}

.process-step p {
  color: var(--muted);
  font-weight: 700;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.package-card {
  position: relative;
  background: var(--white);
  border: 3px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--small-shadow);
}

.featured-package {
  background: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-18px) rotate(-1deg);
}

.package-ribbon {
  position: absolute;
  top: -18px;
  right: 24px;
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 950;
  box-shadow: 4px 4px 0 var(--ink);
}

.package-top span {
  font-weight: 950;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.85rem;
}

.package-top h3 {
  font-size: 2.25rem;
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin: 8px 0 18px;
}

.package-card p {
  color: var(--muted);
  font-weight: 750;
  margin-bottom: 24px;
}

.featured-package p,
.featured-package .package-top span {
  color: rgba(21, 21, 21, 0.76);
}

.package-card ul {
  margin-bottom: 26px;
}

.package-button {
  width: 100%;
  background: var(--cream);
  color: var(--ink);
  padding: 15px 18px;
  box-shadow: 4px 4px 0 var(--ink);
}

.package-button.strong {
  background: var(--ink);
  color: var(--white);
}

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

.proof-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.proof-card {
  background: var(--yellow);
  border: 3px solid var(--line);
  border-radius: 30px;
  padding: 32px;
  box-shadow: var(--small-shadow);
}

.dark-proof {
  background: var(--blue);
  color: var(--white);
}

.proof-card span {
  display: inline-flex;
  font-weight: 950;
  margin-bottom: 12px;
}

.proof-card strong {
  display: block;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  margin-bottom: 18px;
}

.proof-card p {
  font-weight: 750;
  color: rgba(21, 21, 21, 0.72);
}

.dark-proof p {
  color: rgba(255, 255, 255, 0.78);
}

.proof-button {
  margin-top: 24px;
  background: var(--white);
  color: var(--ink);
  padding: 15px 20px;
  box-shadow: 4px 4px 0 var(--ink);
}

.proof-button.light {
  background: var(--yellow);
}

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

.cta-strip {
  background: var(--orange);
  border-top: 3px solid var(--line);
  border-bottom: 3px solid var(--line);
}

.cta-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.cta-strip h2 {
  max-width: 760px;
}

/* FAQ */

.faq-layout {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 34px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border: 3px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--small-shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  color: var(--ink);
  text-align: left;
  padding: 20px;
  font-size: 1.05rem;
  font-weight: 950;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.faq-icon {
  width: 30px;
  height: 30px;
  background: var(--orange);
  border: 2px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  transition: 0.2s ease;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: var(--muted);
  font-weight: 750;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* FOOTER */

.site-footer {
  background: var(--ink);
  color: var(--white);
  border-top: 3px solid var(--line);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-brand .brand-mark {
  background: var(--pink);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 750;
  margin-top: 10px;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
  font-size: 0.94rem;
}

.footer-contact a:hover {
  color: var(--orange);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
  font-size: 0.92rem;
}

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

/* STICKY BOOK BUTTON */

.sticky-book-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 4000;
  background: var(--orange);
  color: var(--ink);
  border: 3px solid var(--line);
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 950;
  box-shadow: 5px 5px 0 var(--ink);
  cursor: pointer;
  transition: 0.2s ease;
}

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

body.modal-open .sticky-book-button {
  display: none;
}

/* POPUP BOOKING FORM */

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
}

.booking-modal.is-open {
  display: block;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 21, 21, 0.74);
  backdrop-filter: blur(6px);
}

.booking-dialog {
  position: relative;
  width: min(980px, calc(100% - 28px));
  max-height: calc(100vh - 34px);
  overflow-y: auto;
  margin: 17px auto;
  background: var(--cream);
  border: 4px solid var(--line);
  border-radius: 34px;
  box-shadow: 14px 14px 0 rgba(0, 0, 0, 0.95);
  padding: 26px;
  animation: modalPop 0.18s ease;
}

.modal-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  z-index: 5;
  width: 48px;
  height: 48px;
  background: var(--orange);
  border: 3px solid var(--line);
  border-radius: 50%;
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--ink);
  font-size: 2rem;
  font-weight: 950;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.modal-close:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}

.modal-heading {
  margin-bottom: 22px;
}

.modal-heading h2 {
  max-width: 820px;
  margin-bottom: 16px;
}

.modal-heading p {
  max-width: 680px;
}

.funnel-card {
  background: var(--white);
  border: 3px solid var(--line);
  border-radius: 34px;
  box-shadow: none;
  padding: 26px;
}

.funnel-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 26px;
}

.progress-pill {
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 10px 8px;
  text-align: center;
  font-weight: 950;
  color: var(--muted);
  background: var(--cream);
  font-size: 0.85rem;
}

.progress-pill.active {
  background: var(--ink);
  color: var(--white);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.form-step h3 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.07em;
  line-height: 0.95;
  margin-bottom: 8px;
}

.form-step p {
  color: var(--muted);
  font-weight: 750;
  margin-bottom: 22px;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.choice-card {
  position: relative;
  border: 3px solid var(--line);
  border-radius: 24px;
  background: var(--cream);
  padding: 18px;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--ink);
  transition: 0.18s ease;
  min-height: 150px;
}

.choice-card:hover,
.choice-card.selected {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--ink);
  background: var(--yellow);
}

.choice-card input {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 20px;
  height: 20px;
  accent-color: var(--orange);
}

.choice-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 16px;
}

.choice-card strong {
  display: block;
  font-size: 1.18rem;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}

.choice-card small {
  color: var(--muted);
  font-weight: 750;
}

.wide-choice {
  grid-column: span 2;
  background: #d9ffea;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  margin-bottom: 16px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 950;
}

input,
select,
textarea {
  width: 100%;
  border: 3px solid var(--line);
  border-radius: 18px;
  padding: 15px 16px;
  background: var(--cream);
  color: var(--ink);
  font-size: 1rem;
  outline: none;
  box-shadow: 3px 3px 0 var(--ink);
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  background: var(--white);
  box-shadow: 6px 6px 0 var(--orange);
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.success-message {
  display: none;
  margin-top: 18px;
  border: 3px solid var(--line);
  border-radius: 20px;
  background: var(--green);
  padding: 18px;
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--ink);
}

.success-message.show {
  display: block;
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes wobble {
  0%, 100% {
    border-radius: 46% 54% 53% 47% / 48% 44% 56% 52%;
    transform: rotate(0deg);
  }

  50% {
    border-radius: 54% 46% 44% 56% / 52% 58% 42% 48%;
    transform: rotate(3deg);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1000px) {
  .hero-layout,
  .big-section-title,
  .process-layout,
  .faq-layout,
  .proof-layout {
    grid-template-columns: 1fr;
  }

  .service-board {
    grid-template-columns: 1fr 1fr;
  }

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

  .featured-package {
    transform: none;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-orbit {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

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

@media (max-width: 760px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .site-header {
    padding: 8px 0;
  }

  .header-inner {
    min-height: 54px;
    border-radius: 20px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

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

  h1 {
    font-size: clamp(3.15rem, 18vw, 5.2rem);
  }

  .hero-section {
    padding-top: 56px;
  }

  .marquee-section {
    padding: 7px 0;
  }

  .marquee-track {
    gap: 18px;
  }

  .marquee-track span {
    font-size: clamp(0.92rem, 4.5vw, 1.25rem);
  }

  .service-board {
    grid-template-columns: 1fr;
  }

  .service-tile {
    min-height: auto;
  }

  .choice-grid,
  .field-grid,
  .funnel-progress {
    grid-template-columns: 1fr;
  }

  .wide-choice {
    grid-column: span 1;
  }

  .form-actions {
    flex-direction: column;
  }

  .main-button,
  .ghost-button,
  .proof-button {
    width: 100%;
  }

  .sticky-book-button {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    justify-content: center;
    padding: 16px 20px;
  }

  .site-footer {
    padding-bottom: 95px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-orbit {
    width: 310px;
    height: 310px;
    top: 100px;
  }

  .orbit-center {
    inset: 54px;
  }

  .orbit-center span {
    width: 82px;
    height: 82px;
    font-size: 3rem;
  }

  .floating-card {
    width: 190px;
  }

  .card-one {
    left: 0;
    top: 0;
  }

  .card-two {
    right: 0;
    bottom: 40px;
  }

  .card-three {
    left: 10px;
    bottom: 155px;
  }

  .booking-dialog {
    padding: 18px;
    border-radius: 26px;
  }

  .modal-heading h2 {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 26px, 1160px);
  }

  .hero-label {
    border-radius: 22px;
    align-items: flex-start;
  }

  .services-section,
  .process-section,
  .packages-section,
  .faq-section,
  .proof-section,
  .cta-strip {
    padding: 64px 0;
  }

  .package-card,
  .proof-card,
  .funnel-card {
    border-radius: 24px;
    padding: 20px;
  }

  .big-section-title h2,
  .process-left h2,
  .faq-layout h2,
  .cta-strip h2 {
    font-size: 3rem;
  }

  .modal-heading h2 {
    font-size: 2.7rem;
  }

  .booking-dialog {
    width: calc(100% - 18px);
    margin: 9px auto;
    max-height: calc(100vh - 18px);
    box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.95);
  }
}

/* =========================================================
   DAVEYLICIOUS FIX PACK
   Add this to the VERY BOTTOM of style.css
   This fixes:
   1. Local + Remote section layout
   2. Guide/content card layout
   3. Booking funnel showing all steps at once
   ========================================================= */


/* ---------- BOOKING FUNNEL STEP FIX ---------- */

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
}

.booking-modal.is-open {
  display: block;
}

.booking-modal[aria-hidden="true"] {
  display: none;
}

.booking-modal[aria-hidden="false"] {
  display: block;
}

.form-step {
  display: none !important;
}

.form-step.active {
  display: block !important;
}

.funnel-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 26px;
}

.progress-pill {
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 10px 8px;
  text-align: center;
  font-weight: 950;
  color: var(--muted);
  background: var(--cream);
  font-size: 0.85rem;
}

.progress-pill.active {
  background: var(--ink);
  color: var(--white);
}

.booking-dialog {
  width: min(980px, calc(100% - 28px));
  max-height: calc(100vh - 34px);
  overflow-y: auto;
  margin: 17px auto;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.wide-choice {
  grid-column: span 2;
}


/* ---------- LOCAL + REMOTE SECTION FIX ---------- */

.local-seo-section {
  padding: 90px 0;
}

.local-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: stretch;
  background: var(--white);
  border: 3px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 34px;
  overflow: hidden;
}

.local-card > div:first-child {
  min-width: 0;
}

.local-card h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  margin-bottom: 18px;
  max-width: 900px;
}

.local-card p {
  color: var(--muted);
  font-weight: 750;
  font-size: 1.08rem;
  max-width: 780px;
}

.local-links-card {
  background: var(--yellow);
  border: 3px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--small-shadow);
  display: grid;
  gap: 12px;
  align-content: start;
  min-width: 0;
}

.local-links-card strong {
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}

.local-links-card a {
  display: block;
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  font-weight: 950;
  box-shadow: 3px 3px 0 var(--ink);
  transition: 0.18s ease;
}

.local-links-card a:hover {
  background: var(--white);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
}


/* ---------- GUIDE / CONTENT SECTION FIX ---------- */

.content-hub-section {
  padding: 90px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.content-card {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  background: var(--white);
  border: 3px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--small-shadow);
  transition: 0.2s ease;
  overflow: hidden;
}

.content-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--ink);
  background: var(--yellow);
}

.content-card span {
  width: fit-content;
  display: inline-flex;
  background: var(--pink);
  color: var(--white);
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 950;
  margin-bottom: 16px;
  box-shadow: 3px 3px 0 var(--ink);
}

.content-card strong {
  display: block;
  font-size: 1.28rem;
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin-bottom: 12px;
}

.content-card p {
  color: var(--muted);
  font-weight: 750;
  font-size: 0.96rem;
  margin-top: auto;
}


/* ---------- ARTICLE / GUIDE PAGE FIX ---------- */

.article-section {
  padding: 40px 0 90px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 26px;
  align-items: start;
}

.article-card {
  background: var(--white);
  border: 3px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 36px;
  min-width: 0;
}

.article-card h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin: 34px 0 12px;
}

.article-card h2:first-child {
  margin-top: 0;
}

.article-card p,
.article-card li {
  color: var(--muted);
  font-weight: 750;
  margin-bottom: 14px;
}

.seo-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 20px 0;
}

.seo-list li::before {
  content: "✦ ";
  color: var(--orange);
  font-weight: 950;
}

.internal-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.internal-link-grid a {
  display: block;
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  font-weight: 950;
  box-shadow: 3px 3px 0 var(--ink);
  transition: 0.18s ease;
}

.internal-link-grid a:hover {
  background: var(--yellow);
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
}

.sidebar-card {
  position: sticky;
  top: 92px;
  background: var(--yellow);
  border: 3px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--small-shadow);
}

.sidebar-card h3 {
  font-size: 1.8rem;
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 12px;
}

.sidebar-card p {
  color: rgba(21, 21, 21, 0.76);
  font-weight: 750;
  margin-bottom: 18px;
}

.sidebar-card .main-button {
  width: 100%;
  margin-bottom: 14px;
}

.sidebar-link {
  display: block;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  font-weight: 950;
  text-align: center;
  box-shadow: 3px 3px 0 var(--ink);
  margin-top: 10px;
}


/* ---------- RESPONSIVE FIXES ---------- */

@media (max-width: 1180px) {
  .content-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1000px) {
  .local-card,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .sidebar-card {
    position: static;
  }

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

  .internal-link-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .local-seo-section,
  .content-hub-section,
  .article-section {
    padding: 64px 0;
  }

  .local-card,
  .article-card,
  .sidebar-card {
    border-radius: 24px;
    padding: 22px;
  }

  .local-card h2 {
    font-size: clamp(2.4rem, 13vw, 3.4rem);
  }

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

  .content-card {
    min-height: auto;
  }

  .choice-grid,
  .funnel-progress {
    grid-template-columns: 1fr;
  }

  .wide-choice {
    grid-column: span 1;
  }

  .form-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .local-card,
  .article-card,
  .sidebar-card,
  .content-card {
    padding: 20px;
  }

  .article-card h2 {
    font-size: 2.3rem;
  }
}

/* =========================================================
   DAVEYLICIOUS MOBILE TOP FIX
   Add this to the VERY BOTTOM of style.css

   Fixes mobile top/header/hero layout:
   - Header no longer feels cramped/broken
   - Hero text scales better
   - Hero graphic/floating cards stop overlapping badly
   - Top section has cleaner spacing on phones
   ========================================================= */


/* General safety */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}


/* Tablet and small laptop clean-up */
@media (max-width: 1000px) {
  .hero-layout {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-visual {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }
}


/* Main mobile fix */
@media (max-width: 760px) {
  body {
    background:
      radial-gradient(circle at 8% 6%, rgba(255, 212, 59, 0.45), transparent 20%),
      radial-gradient(circle at 92% 12%, rgba(255, 79, 163, 0.26), transparent 22%),
      var(--cream);
  }

  .site-header {
    position: sticky;
    top: 0;
    padding: 8px 0 0;
    z-index: 7000;
  }

  .header-inner {
    width: 100%;
    min-height: 52px;
    border-radius: 18px;
    padding: 8px 12px;
    gap: 10px;
    box-shadow: 3px 3px 0 var(--ink);
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand-mark {
    width: 31px;
    height: 31px;
    min-width: 31px;
    border-radius: 10px;
    font-size: 0.92rem;
    box-shadow: 2px 2px 0 var(--ink);
  }

  .brand-text {
    font-size: 0.94rem;
    line-height: 1;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .desktop-nav,
  .header-cta {
    display: none !important;
  }

  .hero-section {
    padding: 38px 0 34px !important;
  }

  .hero-layout {
    display: block !important;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .hero-label {
    max-width: 100%;
    width: fit-content;
    border-radius: 18px;
    padding: 8px 11px;
    margin-bottom: 22px;
    font-size: 0.82rem;
    line-height: 1.15;
    box-shadow: 3px 3px 0 var(--ink);
  }

  .hero-label span {
    width: 10px;
    height: 10px;
    min-width: 10px;
  }

  h1 {
    font-size: clamp(2.72rem, 14.5vw, 4.6rem) !important;
    line-height: 0.9 !important;
    letter-spacing: -0.075em !important;
    margin-bottom: 20px !important;
    max-width: 100% !important;
    overflow-wrap: normal;
  }

  .hero-copy p {
    font-size: 1rem !important;
    line-height: 1.45 !important;
    max-width: 100% !important;
    margin-bottom: 22px !important;
  }

  .hero-buttons {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 12px !important;
  }

  .hero-buttons .main-button,
  .hero-buttons .ghost-button {
    width: 100%;
    padding: 15px 18px;
  }

  /*
    The old floating hero graphic is nice on desktop,
    but on mobile it can look broken at the top.
    This converts it into a clean stacked card area.
  */
  .hero-visual {
    min-height: auto !important;
    max-width: 100%;
    margin: 30px 0 0 !important;
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-orbit {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: 100% !important;
    height: 190px !important;
    transform: none !important;
    border-radius: 28px !important;
    margin: 0 !important;
    box-shadow: 5px 5px 0 var(--ink) !important;
    order: -1;
    animation: none !important;
  }

  .orbit-center {
    inset: 24px !important;
    border-radius: 22px !important;
  }

  .orbit-center span {
    width: 72px !important;
    height: 72px !important;
    border-radius: 20px !important;
    font-size: 2.6rem !important;
  }

  .floating-card {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 100% !important;
    min-height: auto !important;
    transform: none !important;
    padding: 15px !important;
    border-radius: 20px !important;
    box-shadow: 4px 4px 0 var(--ink) !important;
  }

  .floating-card span {
    margin-bottom: 8px;
  }

  .floating-card strong {
    font-size: 1.2rem;
  }

  .floating-card p {
    font-size: 0.92rem;
  }

  .marquee-section {
    margin-top: 8px;
    padding: 7px 0 !important;
  }

  .marquee-track {
    gap: 18px !important;
  }

  .marquee-track span {
    font-size: 0.95rem !important;
    letter-spacing: -0.035em;
  }
}


/* Very small phones */
@media (max-width: 420px) {
  .container {
    width: calc(100% - 24px) !important;
  }

  .header-inner {
    border-radius: 16px;
  }

  .brand-text {
    max-width: 138px;
  }

  .hero-section {
    padding-top: 32px !important;
  }

  .hero-label {
    font-size: 0.78rem;
  }

  h1 {
    font-size: clamp(2.5rem, 14vw, 3.9rem) !important;
  }

  .hero-copy p {
    font-size: 0.96rem !important;
  }

  .hero-orbit {
    height: 165px !important;
  }
}


/* Tiny screens */
@media (max-width: 360px) {
  .brand-text {
    max-width: 118px;
  }

  h1 {
    font-size: 2.42rem !important;
  }

  .hero-label {
    font-size: 0.74rem;
  }
}
/* =========================================================
   MOBILE HERO VISUAL - BRING BACK FLOATING 1 2 3 OVER THE D
   Paste at the VERY BOTTOM of style.css
   ========================================================= */

@media (max-width: 760px) {
  .hero-section {
    padding: 38px 0 34px !important;
  }

  .hero-layout {
    display: block !important;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .hero-label {
    max-width: 100%;
    width: fit-content;
    border-radius: 18px;
    padding: 8px 11px;
    margin-bottom: 22px;
    font-size: 0.82rem;
    line-height: 1.15;
    box-shadow: 3px 3px 0 var(--ink);
  }

  .hero-label span {
    width: 10px;
    height: 10px;
    min-width: 10px;
  }

  h1 {
    font-size: clamp(2.72rem, 14.5vw, 4.6rem) !important;
    line-height: 0.9 !important;
    letter-spacing: -0.075em !important;
    margin-bottom: 20px !important;
    max-width: 100% !important;
  }

  .hero-copy p {
    font-size: 1rem !important;
    line-height: 1.45 !important;
    max-width: 100% !important;
    margin-bottom: 22px !important;
  }

  .hero-buttons {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 12px !important;
  }

  .hero-buttons .main-button,
  .hero-buttons .ghost-button {
    width: 100%;
    padding: 15px 18px;
  }

  /* bring back the original style hero visual */
  .hero-visual {
    position: relative !important;
    min-height: 430px !important;
    max-width: 360px;
    margin: 28px auto 0 !important;
    display: block !important;
  }

  .hero-orbit {
    position: absolute !important;
    left: 50% !important;
    top: 70px !important;
    right: auto !important;
    width: 240px !important;
    height: 240px !important;
    transform: translateX(-50%) !important;
    border-radius: 46% 54% 53% 47% / 48% 44% 56% 52% !important;
    margin: 0 !important;
    box-shadow: 6px 6px 0 var(--ink) !important;
    animation: wobble 9s ease-in-out infinite !important;
  }

  .orbit-center {
    inset: 44px !important;
    border-radius: 50% !important;
  }

  .orbit-center span {
    width: 72px !important;
    height: 72px !important;
    border-radius: 20px !important;
    font-size: 2.5rem !important;
  }

  .floating-card {
    position: absolute !important;
    width: 155px !important;
    min-height: auto !important;
    padding: 14px !important;
    border-radius: 18px !important;
    box-shadow: 4px 4px 0 var(--ink) !important;
  }

  .floating-card span {
    margin-bottom: 8px;
    font-size: 0.78rem;
    padding: 4px 8px;
  }

  .floating-card strong {
    font-size: 1.08rem;
    line-height: 1;
    margin-bottom: 4px;
  }

  .floating-card p {
    font-size: 0.84rem;
    line-height: 1.3;
  }

  .card-one {
    top: 0 !important;
    left: 0 !important;
    bottom: auto !important;
    right: auto !important;
    transform: rotate(-5deg) !important;
    z-index: 4;
  }

  .card-two {
    top: 95px !important;
    right: 0 !important;
    left: auto !important;
    bottom: auto !important;
    transform: rotate(5deg) !important;
    z-index: 4;
  }

  .card-three {
    left: 12px !important;
    bottom: 0 !important;
    top: auto !important;
    right: auto !important;
    transform: rotate(4deg) !important;
    z-index: 4;
  }

  .marquee-section {
    margin-top: 8px;
    padding: 7px 0 !important;
  }

  .marquee-track {
    gap: 18px !important;
  }

  .marquee-track span {
    font-size: 0.95rem !important;
    letter-spacing: -0.035em;
  }
}

@media (max-width: 420px) {
  .hero-section {
    padding-top: 32px !important;
  }

  h1 {
    font-size: clamp(2.5rem, 14vw, 3.9rem) !important;
  }

  .hero-copy p {
    font-size: 0.96rem !important;
  }

  .hero-visual {
    min-height: 390px !important;
    max-width: 320px;
  }

  .hero-orbit {
    width: 210px !important;
    height: 210px !important;
    top: 72px !important;
  }

  .orbit-center {
    inset: 38px !important;
  }

  .orbit-center span {
    width: 64px !important;
    height: 64px !important;
    font-size: 2.2rem !important;
  }

  .floating-card {
    width: 140px !important;
    padding: 12px !important;
  }

  .floating-card strong {
    font-size: 1rem;
  }

  .floating-card p {
    font-size: 0.8rem;
  }

  .card-two {
    top: 88px !important;
  }

  .card-three {
    left: 8px !important;
    bottom: 2px !important;
  }
}

@media (max-width: 360px) {
  .hero-visual {
    min-height: 365px !important;
    max-width: 295px;
  }

  .hero-orbit {
    width: 190px !important;
    height: 190px !important;
    top: 78px !important;
  }

  .orbit-center {
    inset: 34px !important;
  }

  .orbit-center span {
    width: 58px !important;
    height: 58px !important;
    font-size: 2rem !important;
  }

  .floating-card {
    width: 130px !important;
    padding: 11px !important;
  }

  .floating-card span {
    font-size: 0.72rem;
  }

  .floating-card strong {
    font-size: 0.95rem;
  }

  .floating-card p {
    font-size: 0.76rem;
  }

  .card-two {
    top: 86px !important;
  }

  .card-three {
    left: 4px !important;
    bottom: 0 !important;
  }
}

/* =========================================================
   BOOKING FUNNEL STEP-BY-STEP FIX
   Paste this at the VERY BOTTOM of style.css
   ========================================================= */

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
}

.booking-modal.is-open,
.booking-modal[aria-hidden="false"] {
  display: block;
}

.booking-modal[aria-hidden="true"] {
  display: none;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 21, 21, 0.74);
  backdrop-filter: blur(6px);
}

.booking-dialog {
  position: relative;
  width: min(980px, calc(100% - 28px));
  max-height: calc(100vh - 34px);
  overflow-y: auto;
  margin: 17px auto;
  background: var(--cream);
  border: 4px solid var(--line);
  border-radius: 34px;
  box-shadow: 14px 14px 0 rgba(0, 0, 0, 0.95);
  padding: 26px;
}

.modal-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  z-index: 5;
  width: 48px;
  height: 48px;
  background: var(--orange);
  border: 3px solid var(--line);
  border-radius: 50%;
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--ink);
  font-size: 2rem;
  font-weight: 950;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.funnel-card {
  background: var(--white);
  border: 3px solid var(--line);
  border-radius: 34px;
  padding: 26px;
}

/* Force step-by-step behaviour */
.form-step {
  display: none !important;
}

.form-step.active {
  display: block !important;
}

/* Progress pills */
.funnel-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.progress-pill {
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 10px 8px;
  text-align: center;
  font-weight: 950;
  color: var(--muted);
  background: var(--cream);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.progress-pill span {
  width: 24px;
  height: 24px;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 0.76rem;
  line-height: 1;
}

.progress-pill.active {
  background: var(--ink);
  color: var(--white);
}

.progress-pill.active span {
  background: var(--orange);
  color: var(--ink);
}

.progress-line {
  width: 100%;
  height: 14px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  box-shadow: 3px 3px 0 var(--ink);
  overflow: hidden;
  margin-bottom: 28px;
}

.progress-line-fill {
  width: 25%;
  height: 100%;
  background: var(--orange);
  transition: width 0.25s ease;
}

/* Bring back emojis clearly on first step */
.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.choice-card {
  position: relative;
  border: 3px solid var(--line);
  border-radius: 24px;
  background: var(--cream);
  padding: 18px;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--ink);
  transition: 0.18s ease;
  min-height: 158px;
}

.choice-card:hover,
.choice-card.selected {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--ink);
  background: var(--yellow);
}

.choice-card input {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 20px;
  height: 20px;
  accent-color: var(--orange);
}

.choice-icon {
  display: block !important;
  font-size: 2.1rem !important;
  line-height: 1 !important;
  margin-bottom: 16px !important;
}

.choice-card strong {
  display: block;
  font-size: 1.18rem;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}

.choice-card small {
  color: var(--muted);
  font-weight: 750;
}

.wide-choice {
  grid-column: span 2;
  background: #d9ffea;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  margin-bottom: 16px;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.success-message {
  display: none;
  margin-top: 18px;
  border: 3px solid var(--line);
  border-radius: 20px;
  background: var(--green);
  padding: 18px;
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--ink);
}

.success-message.show {
  display: block;
}

@media (max-width: 760px) {
  .booking-dialog {
    width: calc(100% - 18px);
    margin: 9px auto;
    max-height: calc(100vh - 18px);
    border-radius: 26px;
    padding: 18px;
    box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.95);
  }

  .funnel-card {
    border-radius: 24px;
    padding: 18px;
  }

  .funnel-progress {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .progress-pill {
    font-size: 0.78rem;
    padding: 8px 6px;
  }

  .progress-pill span {
    width: 22px;
    height: 22px;
    font-size: 0.72rem;
  }

  .choice-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .wide-choice {
    grid-column: span 1;
  }

  .choice-card {
    min-height: auto;
    padding: 16px;
  }

  .choice-icon {
    font-size: 2rem !important;
    margin-bottom: 12px !important;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions .main-button,
  .form-actions .ghost-button {
    width: 100%;
  }
}
/* =========================================================
   LEGAL + CONTACT PAGE FIX
   Paste this at the VERY BOTTOM of style.css
   Fixes: Contact, Terms, Privacy, Cookies, Refunds, Acceptable Use
   ========================================================= */


/* ---------- SIMPLE PAGE HERO ---------- */

.simple-page-hero {
  padding: 90px 0 46px;
}

.simple-page-hero .container {
  position: relative;
}

.simple-page-hero h1 {
  max-width: 980px;
  margin-bottom: 22px;
}

.simple-page-hero p {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.12rem;
  font-weight: 750;
}


/* ---------- LEGAL PAGE LAYOUT ---------- */

.legal-section {
  padding: 40px 0 90px;
}

.legal-card {
  background: var(--white);
  border: 3px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 38px;
  max-width: 980px;
  margin: 0 auto;
}

.legal-card h2 {
  font-size: clamp(1.9rem, 3.6vw, 3.1rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin: 36px 0 12px;
}

.legal-card h2:first-of-type {
  margin-top: 0;
}

.legal-card h3 {
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 26px 0 10px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-weight: 750;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.legal-card ul,
.legal-card ol {
  padding-left: 24px;
  margin: 12px 0 20px;
}

.legal-card a {
  color: var(--ink);
  font-weight: 950;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--orange);
}

.legal-card strong {
  color: var(--ink);
}

.legal-date {
  display: inline-flex;
  background: var(--yellow);
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 950;
  box-shadow: 4px 4px 0 var(--ink);
  margin-bottom: 26px;
}


/* ---------- CONTACT PAGE ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: start;
}

.contact-info-card,
.contact-form-card {
  background: var(--white);
  border: 3px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--small-shadow);
  padding: 32px;
  min-width: 0;
}

.contact-info-card h2,
.contact-form-card h2 {
  font-size: clamp(2.1rem, 4.5vw, 3.7rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  margin-bottom: 18px;
}

.contact-info-card p,
.contact-form-card p {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.55;
  margin-bottom: 18px;
}

.contact-info-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-info-item {
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 3px 3px 0 var(--ink);
}

.contact-info-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.contact-info-item a,
.contact-info-item span {
  color: var(--muted);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.contact-form-card form {
  display: grid;
  gap: 16px;
}

.contact-form-card .field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form-card .field {
  margin-bottom: 0;
}

.contact-form-card label {
  display: block;
  margin-bottom: 8px;
  font-weight: 950;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  border: 3px solid var(--line);
  border-radius: 18px;
  padding: 15px 16px;
  background: var(--cream);
  color: var(--ink);
  font-size: 1rem;
  outline: none;
  box-shadow: 3px 3px 0 var(--ink);
}

.contact-form-card textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  background: var(--white);
  box-shadow: 6px 6px 0 var(--orange);
}

.contact-form-card .main-button {
  width: fit-content;
}

.back-home-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--ink);
  font-weight: 950;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--orange);
}


/* ---------- FOOTER SAFETY FIX FOR LEGAL PAGES ---------- */

.site-footer {
  background: var(--ink);
  color: var(--white);
  border-top: 3px solid var(--line);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 750;
  margin-top: 10px;
}

.footer-contact,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
  font-size: 0.94rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
  font-size: 0.92rem;
}

.footer-contact a:hover,
.footer-links a:hover {
  color: var(--orange);
}


/* ---------- MOBILE LEGAL / CONTACT FIX ---------- */

@media (max-width: 900px) {
  .simple-page-hero {
    padding: 64px 0 34px;
  }

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

  .legal-card,
  .contact-info-card,
  .contact-form-card {
    padding: 24px;
    border-radius: 24px;
  }

  .contact-form-card .field-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-card .main-button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .simple-page-hero {
    padding: 50px 0 26px;
  }

  .simple-page-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .simple-page-hero p {
    font-size: 1rem;
  }

  .legal-section {
    padding: 28px 0 70px;
  }

  .legal-card,
  .contact-info-card,
  .contact-form-card {
    padding: 20px;
    border-radius: 22px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .legal-card h2 {
    font-size: 2.25rem;
  }

  .contact-info-card h2,
  .contact-form-card h2 {
    font-size: 2.6rem;
  }

  .footer-inner {
    align-items: flex-start;
  }
}
/* =========================================================
   CLEAN FOOTER FIX
   Paste at the VERY BOTTOM of style.css
   ========================================================= */

.site-footer {
  background: var(--ink);
  color: var(--white);
  border-top: 3px solid var(--line);
  padding: 54px 0 28px;
}

.footer-clean-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(170px, 0.75fr));
  gap: 34px;
  align-items: start;
}

.footer-main {
  max-width: 380px;
}

.footer-brand {
  width: fit-content;
}

.footer-brand .brand-mark {
  background: var(--pink);
}

.footer-main p {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
  line-height: 1.55;
  margin-top: 14px;
  max-width: 340px;
}

.footer-contact {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.footer-contact a {
  width: fit-content;
  color: var(--white);
  font-weight: 900;
  font-size: 0.96rem;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--orange);
}

.footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-column h3 {
  color: var(--orange);
  font-size: 1rem;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  font-weight: 950;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
  font-size: 0.92rem;
  line-height: 1.25;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--white);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--orange);
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 2px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 750;
  margin: 0;
}

.footer-book-button {
  background: var(--orange);
  color: var(--ink);
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 950;
  box-shadow: 4px 4px 0 #000;
  cursor: pointer;
  transition: 0.2s ease;
}

.footer-book-button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #000;
}

/* Remove old footer flex/link styling conflicts */
.footer-inner,
.footer-links {
  all: unset;
}

/* Tablet */
@media (max-width: 1000px) {
  .footer-clean-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-main {
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 680px) {
  .site-footer {
    padding: 42px 0 110px;
  }

  .footer-clean-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-main {
    max-width: 100%;
  }

  .footer-main p {
    max-width: 100%;
  }

  .footer-column {
    border-top: 2px solid rgba(255, 255, 255, 0.14);
    padding-top: 20px;
  }

  .footer-column h3 {
    font-size: 1.08rem;
  }

  .footer-column a {
    font-size: 0.98rem;
    padding: 3px 0;
  }

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

  .footer-book-button {
    width: 100%;
  }
}