:root {
  --display-font: 'Bricolage Grotesque', 'DM Sans', system-ui, sans-serif;
  --body-font: 'DM Sans', system-ui, sans-serif;
  --foam: #fffdf7;
  --paper: #ffffff;
  --ink: #101828;
  --ink-soft: #526173;
  --aqua: #00c2c7;
  --aqua-deep: #008f9c;
  --cobalt: #2144ff;
  --coral: #ff5a5f;
  --pink: #ff7ad9;
  --sun: #ffd83d;
  --lime: #b8f35d;
  --line: rgba(16, 24, 40, 0.14);
  --shadow: 7px 7px 0 rgba(16, 24, 40, 0.92);
  --radius: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body-font);
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(33, 68, 255, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 90, 95, 0.055) 1px, transparent 1px),
    var(--foam);
  background-size: 46px 46px;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(135deg, rgba(255, 216, 61, 0.18) 0 10%, transparent 10% 100%),
    linear-gradient(315deg, rgba(0, 194, 199, 0.14) 0 8%, transparent 8% 100%);
  background-size: 220px 220px, 260px 260px;
  mix-blend-mode: multiply;
}
body > * { position: relative; z-index: 2; }
section { scroll-margin-top: 82px; }

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 247, 0.9);
  border-bottom: 2px solid var(--ink);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--display-font);
  font-size: 1.36rem;
  font-weight: 800;
  letter-spacing: 0;
}
.logo-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  filter: drop-shadow(4px 4px 0 rgba(16, 24, 40, 0.14));
}
.logo-text {
  line-height: 0.94;
  color: var(--cobalt);
  background: linear-gradient(90deg, var(--cobalt), var(--aqua-deep), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
}
.nav-links a {
  display: inline-flex;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  transition: background 0.18s ease, transform 0.18s ease;
}
.nav-links a:hover {
  background: var(--sun);
  transform: translateY(-1px);
}
.lang-toggle {
  display: flex;
  gap: 3px;
  padding: 3px;
  background: var(--ink);
  border-radius: 999px;
}
.lang-toggle button {
  border: 0;
  background: transparent;
  color: var(--paper);
  border-radius: 999px;
  padding: 0.38rem 0.72rem;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 900;
}
.lang-toggle button.active {
  background: var(--lime);
  color: var(--ink);
}
.menu-btn {
  display: none;
  border: 2px solid var(--ink);
  background: var(--sun);
  border-radius: 999px;
  cursor: pointer;
  padding: 0.44rem;
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}

.hero {
  position: relative;
  padding: 3rem 1.25rem 4.5rem;
  overflow: hidden;
  background:
    linear-gradient(115deg, var(--sun) 0 18%, transparent 18% 100%),
    linear-gradient(245deg, rgba(255, 122, 217, 0.56) 0 16%, transparent 16% 100%),
    linear-gradient(180deg, #fffaf0 0%, #ebfffb 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(120deg, rgba(16, 24, 40, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, transparent 0 74%, rgba(0, 194, 199, 0.2) 74% 76%, transparent 76% 100%);
  background-size: 34px 34px, 100% 76px;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 3rem;
  align-items: center;
}
.hero-eyebrow,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.72rem;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--cobalt);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--pink);
}
.hero-eyebrow { gap: 0.55rem; margin-bottom: 0.85rem; }
.hero-eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  background: var(--coral);
  border-radius: 999px;
}
h1, h2, h3 {
  font-family: var(--display-font);
  font-weight: 800;
  letter-spacing: 0;
}
h1 {
  max-width: 760px;
  margin-bottom: 1.25rem;
  font-size: 4.25rem;
  line-height: 0.98;
}
h1 span, h1 em { display: inline; }
h1 em, h2 em {
  color: var(--cobalt);
  font-style: italic;
  font-weight: 800;
}
h1 em {
  position: relative;
  white-space: nowrap;
}
h1 em::after {
  content: "";
  position: absolute;
  left: -0.08em;
  right: -0.08em;
  bottom: 0.06em;
  height: 0.2em;
  background: var(--lime);
  z-index: -1;
}
h2 {
  font-size: 2.75rem;
  line-height: 1.04;
}
.hero-sub {
  max-width: 570px;
  margin-bottom: 2rem;
  color: var(--ink);
  font-size: 1.16rem;
  font-weight: 600;
}
.hero-ctas,
.hero-badges,
.areas-list,
.time-slots,
.submit-row,
.slot-chips,
.slot-add {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.82rem 1.25rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn-primary {
  background: var(--coral);
  color: var(--paper);
  box-shadow: 5px 5px 0 var(--ink);
}
.btn-ghost {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--aqua);
}
.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}
.hero-badges { margin-top: 2rem; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.46rem;
  padding: 0.58rem 0.78rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
}
.badge svg { width: 18px; height: 18px; color: var(--aqua-deep); flex-shrink: 0; }

.photo-stack {
  position: relative;
  max-width: 480px;
  margin-left: auto;
  aspect-ratio: 0.75;
}
.photo-frame,
.about-photo {
  overflow: hidden;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
}
.photo-frame {
  position: absolute;
  inset: 0;
  box-shadow: 14px 14px 0 var(--cobalt);
  transform: rotate(1.6deg);
}
.photo-frame::after,
.about-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(0deg, rgba(16, 24, 40, 0.58), transparent);
  pointer-events: none;
}
.photo-frame img,
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.photo-sun {
  position: absolute;
  top: -22px;
  right: -18px;
  z-index: 2;
  width: 108px;
  height: 108px;
  background:
    linear-gradient(90deg, transparent 44%, var(--ink) 44% 56%, transparent 56%),
    linear-gradient(0deg, transparent 44%, var(--ink) 44% 56%, transparent 56%),
    var(--sun);
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 6px 6px 0 var(--coral);
}
.photo-sticker {
  position: absolute;
  left: -18px;
  bottom: 26px;
  z-index: 3;
  padding: 0.7rem 0.95rem;
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(-4deg);
  box-shadow: 5px 5px 0 var(--ink);
}
.photo-sticker .heart { color: var(--coral); }

.section-head {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.section-eyebrow {
  margin-bottom: 0.72rem;
  background: var(--sun);
  color: var(--ink);
  box-shadow: none;
}
.services,
.about,
.booking {
  padding: 5rem 1.25rem;
}
.services {
  background: linear-gradient(180deg, var(--paper) 0%, #f4fffd 100%);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.services-inner,
.about-inner,
.areas-inner,
.booking-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.service,
.pillar,
.booking-inner,
.admin-card,
.admin-booking,
.slot-day,
.calendar {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
}
.service {
  min-height: 245px;
  padding: 1.35rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.service:nth-child(4n + 1) { background: #fff6bf; }
.service:nth-child(4n + 2) { background: #d9fff5; }
.service:nth-child(4n + 3) { background: #e9e8ff; }
.service:nth-child(4n + 4) { background: #ffe2f4; }
.service::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 88px;
  height: 88px;
  background: rgba(255, 255, 255, 0.44);
  border-left: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.service-icon {
  position: relative;
  z-index: 1;
  width: 66px;
  height: 66px;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 var(--ink);
}
.service-icon svg { width: 48px; height: 48px; }
.service h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 0.55rem;
  font-size: 1.24rem;
  line-height: 1.15;
}
.service p {
  position: relative;
  z-index: 1;
  color: #253246;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.52;
}

.about { background: var(--foam); }
.about-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 3.5rem;
  align-items: center;
  max-width: 1120px;
}
.about-photo {
  position: relative;
  max-width: 405px;
  aspect-ratio: 3 / 4;
  box-shadow: -12px 12px 0 var(--pink);
}
.about-photo-name {
  position: absolute;
  left: 1rem;
  bottom: 0.9rem;
  z-index: 2;
  color: var(--paper);
  font-family: var(--display-font);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p {
  margin-bottom: 1rem;
  color: var(--ink-soft);
  font-size: 1.03rem;
}
.about-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.6rem;
}
.pillar {
  padding: 1rem;
  box-shadow: 5px 5px 0 rgba(0, 194, 199, 0.45);
}
.pillar-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
  background: var(--sun);
  border: 2px solid var(--ink);
  border-radius: 999px;
}
.pillar strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--display-font);
  font-size: 1.02rem;
  font-weight: 800;
}
.pillar span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.42;
}

.areas {
  padding: 4.5rem 1.25rem;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(255, 216, 61, 0.95) 0 18%, transparent 18% 100%),
    linear-gradient(315deg, rgba(255, 122, 217, 0.75) 0 16%, transparent 16% 100%),
    var(--cobalt);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  text-align: center;
}
.areas-inner { max-width: 900px; }
.areas h2,
.areas h2 em { color: var(--paper); }
.areas-sub {
  max-width: 580px;
  margin: 0.75rem auto 2rem;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}
.areas-list { justify-content: center; }
.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1rem;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 900;
  box-shadow: 5px 5px 0 var(--ink);
}
.area-pill svg { width: 18px; height: 18px; color: var(--coral); }

.booking {
  background:
    linear-gradient(90deg, rgba(255, 216, 61, 0.26) 0 25%, transparent 25% 100%),
    #f1fffd;
}
.booking-inner {
  position: relative;
  max-width: 930px;
  overflow: hidden;
  padding: 2rem;
  border-width: 3px;
  box-shadow: 12px 12px 0 var(--aqua);
}
.booking-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 9px;
  background: linear-gradient(90deg, var(--coral), var(--sun), var(--aqua), var(--cobalt), var(--pink));
  border-bottom: 2px solid var(--ink);
}
.booking .section-head,
.form-grid,
.submit-row { position: relative; z-index: 1; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label {
  margin-bottom: 0.38rem;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea,
.slot-add input {
  width: 100%;
  min-height: 46px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: #f7fbff;
  color: var(--ink);
  padding: 0.82rem 0.9rem;
  font: inherit;
  font-size: 1rem;
  box-shadow: 3px 3px 0 rgba(16, 24, 40, 0.12);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(0, 194, 199, 0.24), 3px 3px 0 rgba(16, 24, 40, 0.12);
}
.field textarea { min-height: 96px; resize: vertical; }
.calendar {
  margin-top: 0.35rem;
  padding: 1rem;
  background: #fff8d9;
}
.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.82rem;
  font-family: var(--display-font);
  font-size: 1.08rem;
  font-weight: 800;
}
.cal-nav { display: flex; gap: 0.35rem; }
.cal-nav button,
.admin-close {
  width: 34px;
  height: 34px;
  border: 2px solid var(--ink);
  background: var(--paper);
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink);
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 900;
}
.cal-days,
.cal-dates {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}
.cal-day {
  padding: 0.28rem 0;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}
.cal-date {
  position: relative;
  aspect-ratio: 1;
  border: 0;
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 800;
}
.cal-date:hover:not(:disabled) { background: rgba(0, 194, 199, 0.18); }
.cal-date.selected { background: var(--cobalt); color: var(--paper); }
.cal-date.today { box-shadow: inset 0 0 0 2px var(--coral); }
.cal-date:disabled { color: rgba(82, 97, 115, 0.45); cursor: not-allowed; }
.cal-date.other-month { visibility: hidden; }
.cal-date.has-slots:not(.selected)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 5px;
  height: 5px;
  background: var(--coral);
  border-radius: 999px;
  transform: translateX(-50%);
}
.time-slot,
.slot-add button,
.admin-tab {
  padding: 0.55rem 0.86rem;
  border: 2px solid var(--ink);
  background: var(--paper);
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 900;
}
.time-slot:hover { background: var(--sun); }
.time-slot.selected,
.slot-add button {
  background: var(--aqua);
  color: var(--paper);
}
.form-note,
.time-slot-note,
.admin-booking-meta {
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.submit-row {
  align-items: center;
  justify-content: space-between;
  margin-top: 1.45rem;
}
.form-note { max-width: 400px; }

.confirmation { display: none; text-align: center; padding: 2rem 0; }
.confirmation.show { display: block; }
.confirmation .check {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.3rem;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 6px 6px 0 var(--ink);
}
.confirmation h3 { margin-bottom: 0.45rem; font-size: 1.75rem; }
.confirmation p { color: var(--ink-soft); margin-bottom: 1.25rem; }

.admin-link {
  position: absolute;
  right: 1rem;
  bottom: 0.82rem;
  color: rgba(16, 24, 40, 0.46);
  font-size: 0.75rem;
  text-decoration: none;
}
.admin-panel {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  overflow-y: auto;
  padding: 2rem 1rem;
  background: rgba(16, 24, 40, 0.64);
}
.admin-panel.show { display: block; }
.admin-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem;
  border-width: 3px;
  box-shadow: 12px 12px 0 var(--coral);
}
.admin-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.admin-head h3 { font-size: 1.45rem; }
.admin-close { width: 38px; height: 38px; background: var(--sun); }
.admin-tab-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  border-bottom: 2px solid var(--ink);
}
.admin-tab {
  border-radius: 8px 8px 0 0;
  border-bottom: 0;
  background: #eef3ff;
  color: var(--ink-soft);
}
.admin-tab.active { background: var(--lime); color: var(--ink); }
.admin-booking {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  padding: 0.9rem;
  background: #f7fbff;
}
.admin-del {
  align-self: start;
  border: 0;
  background: transparent;
  color: var(--coral);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 900;
}
.slots-editor { display: grid; gap: 0.75rem; }
.slot-day { padding: 0.9rem; background: #f7fbff; }
.slot-day-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.slot-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.62rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
}
.slot-chip button {
  border: 0;
  background: transparent;
  color: var(--coral);
  cursor: pointer;
  font-size: 0.95rem;
}
.slot-add { flex-wrap: nowrap; }
.slot-add input { flex: 1; min-width: 0; padding: 0.42rem 0.6rem; }
.slot-add button { border-radius: var(--radius); padding: 0.42rem 0.72rem; }

footer {
  padding: 3rem 1.25rem 2rem;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}
footer .logo { justify-content: center; color: var(--paper); margin-bottom: 1rem; }
footer .logo-text {
  display: inline;
  color: var(--paper);
  background: none;
  -webkit-text-fill-color: var(--paper);
}
footer p {
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}
footer a { color: var(--sun); text-decoration: none; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  z-index: 300;
  max-width: 90vw;
  padding: 0.75rem 1.15rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 6px 6px 0 rgba(16, 24, 40, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(150%);
  transition: transform 0.28s ease, opacity 0.28s;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast-success { background: var(--aqua-deep); }
.toast-error { background: var(--coral); }

@media (max-width: 980px) {
  .hero-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .hero-photo-wrap { order: 0; }
  .photo-stack { max-width: 410px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 780px) {
  .nav-inner { padding: 0.72rem 1rem; }
  .logo-text { display: none; }
  .nav-links { display: none; }
  .menu-btn { display: inline-flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 1rem;
    background: var(--paper);
    border-bottom: 2px solid var(--ink);
    gap: 0.5rem;
  }
  .nav-links.open a {
    justify-content: center;
    border: 2px solid var(--ink);
    background: #f7fbff;
  }
  .hero { padding: 2rem 1rem 3rem; }
  h1 { font-size: 3rem; line-height: 1; }
  h1 em { white-space: normal; }
  h2 { font-size: 2.18rem; }
  .hero-sub { font-size: 1.03rem; }
  .services,
  .about,
  .booking { padding: 3.5rem 1rem; }
  .areas { padding: 3.5rem 1rem; }
  .services-grid,
  .form-grid { grid-template-columns: 1fr; }
  .booking-inner {
    padding: 1.35rem;
    box-shadow: 8px 8px 0 var(--aqua);
  }
}

@media (max-width: 520px) {
  .hero-eyebrow { font-size: 0.74rem; max-width: 100%; }
  h1 { font-size: 2.35rem; }
  h2 { font-size: 1.92rem; }
  .hero-ctas .btn,
  .submit-row .btn { width: 100%; }
  .hero-badges { display: grid; grid-template-columns: 1fr; }
  .photo-stack { max-width: 300px; }
  .photo-sun { width: 78px; height: 78px; right: -8px; }
  .photo-sticker { left: 8px; bottom: 12px; font-size: 0.76rem; }
  .about-pillars { grid-template-columns: 1fr; }
  .area-pill { width: 100%; justify-content: center; }
  .cal-day { font-size: 0.62rem; }
  .admin-booking { grid-template-columns: 1fr; }
  .slot-add { flex-direction: column; }
}
