:root {
  --bg: #f9f8f4;
  --bg-soft: #fffef8;
  --ink: #1d3133;
  --muted: #4f6668;
  --brand: #0f8f8b;
  --brand-dark: #0a5e5c;
  --accent: #f2b56b;
  --line: rgba(29, 49, 51, 0.12);
  --radius: 18px;
  --shadow: 0 20px 50px rgba(20, 48, 50, 0.12);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(15, 143, 139, 0.15), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(242, 181, 107, 0.18), transparent 30%),
    linear-gradient(180deg, #fbfaf7 0%, #f6f5ef 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

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

.bg-blur {
  position: fixed;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  filter: blur(70px);
  z-index: -1;
  pointer-events: none;
}

.bg-blur--1 {
  top: -12rem;
  right: -8rem;
  background: rgba(15, 143, 139, 0.24);
}

.bg-blur--2 {
  bottom: -12rem;
  left: -8rem;
  background: rgba(242, 181, 107, 0.24);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(249, 248, 244, 0.75);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.8rem;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--brand-dark), var(--brand));
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.brand-text {
  display: grid;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 0.98rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.main-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.main-nav a:not(.btn):hover {
  color: var(--brand-dark);
}

.lang-toggle {
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(10, 94, 92, 0.22);
  border-radius: 999px;
  color: var(--brand-dark);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  justify-content: center;
  min-height: 38px;
  padding: 0.45rem 0.78rem;
}

.lang-toggle:hover {
  background: #fff;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.3rem;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  display: block;
  margin: 5px 0;
  border-radius: 99px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.76rem 1.2rem;
  background: linear-gradient(130deg, var(--brand-dark), var(--brand));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(10, 94, 92, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(10, 94, 92, 0.32);
}

.btn:focus-visible,
.lang-toggle:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(242, 181, 107, 0.7);
  outline-offset: 3px;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
  box-shadow: none;
}

.btn-small {
  font-size: 0.86rem;
  padding: 0.58rem 0.96rem;
}

.btn-ghost {
  background: #ffffffcc;
  color: var(--brand-dark);
  border: 1px solid rgba(10, 94, 92, 0.25);
  box-shadow: none;
}

.btn-spinner {
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 50%;
  display: none;
  height: 1rem;
  width: 1rem;
}

.btn.is-loading .btn-spinner {
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: stretch;
}

.hero-copy,
.hero-card {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(15, 143, 139, 0.18);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 2.2rem;
}

.eyebrow {
  color: var(--brand-dark);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  margin-top: 0.4rem;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.03;
  font-family: "Space Grotesk", sans-serif;
  max-width: 18ch;
}

h1 span {
  color: var(--brand-dark);
}

.hero-sub {
  color: var(--muted);
  line-height: 1.7;
  margin: 1.1rem 0 1.45rem;
  max-width: 52ch;
}

.hero-cta {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.hero-metrics article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem;
  display: grid;
  gap: 0.2rem;
}

.hero-metrics strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-card {
  padding: 2rem;
  background: linear-gradient(165deg, #0a5e5c, #0f8f8b 56%, #35a6a1);
  color: #ecfffe;
}

.hero-card h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0.45rem;
}

.hero-card p {
  margin: 0;
  opacity: 0.94;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 1.3rem 0;
  display: grid;
  gap: 0.55rem;
}

.hero-card li {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 0.8rem;
  display: flex;
  justify-content: space-between;
  font-weight: 700;
}

.hero-card li span {
  opacity: 0.9;
}

.notice {
  border-top: 1px dashed rgba(255, 255, 255, 0.35);
  padding-top: 0.85rem;
  display: grid;
  gap: 0.5rem;
  font-size: 0.92rem;
}

.section {
  padding: 1.7rem 0 3.6rem;
  scroll-margin-top: 86px;
}

.section-soft {
  background: rgba(255, 255, 255, 0.62);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-tag {
  margin: 0;
  text-transform: uppercase;
  color: var(--brand-dark);
  letter-spacing: 0.08em;
  font-weight: 800;
  font-size: 0.76rem;
}

.section-head {
  margin: 0.75rem 0 1.3rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: flex-end;
}

.section-head h2 {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-family: "Space Grotesk", sans-serif;
  max-width: 20ch;
}

.section-head p {
  max-width: 54ch;
  color: var(--muted);
  margin: 0;
}

.cards {
  display: grid;
  gap: 0.95rem;
}

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 10px 30px rgba(20, 48, 50, 0.06);
}

.card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
}

.card p {
  color: var(--muted);
  line-height: 1.65;
}

.card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink);
  display: grid;
  gap: 0.45rem;
}

.price {
  position: relative;
  text-align: center;
}

.price-num {
  margin: 0.6rem 0;
  font-size: 2rem;
  color: var(--brand-dark);
  font-family: "Space Grotesk", sans-serif;
}

.featured {
  border: 1.5px solid var(--brand-dark);
  transform: translateY(-4px);
}

.badge {
  display: inline-block;
  background: rgba(10, 94, 92, 0.12);
  color: var(--brand-dark);
  padding: 0.26rem 0.56rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.result {
  background: linear-gradient(170deg, #fff, #f8fdfd);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.quote {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.65;
}

.author {
  color: var(--muted);
  margin-top: 0.8rem;
  font-weight: 700;
  font-size: 0.88rem;
}

.faq-wrap {
  display: grid;
  gap: 0.9rem;
}

.faq-list {
  display: grid;
  gap: 0.68rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-item[open] {
  border-color: rgba(10, 94, 92, 0.28);
}

.faq-item p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0.65rem 0 0.1rem;
}

.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.book-copy,
.booking-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.book-copy h2 {
  margin: 0.7rem 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-family: "Space Grotesk", sans-serif;
}

.book-copy p {
  margin: 0.45rem 0;
  line-height: 1.68;
  color: var(--muted);
}

.book-copy .legal {
  margin-top: 1rem;
  font-size: 0.84rem;
}

.booking-form {
  display: grid;
  gap: 0.85rem;
}

.booking-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(29, 49, 51, 0.18);
  padding: 0.68rem 0.75rem;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  min-height: 44px;
}

.booking-form textarea {
  min-height: 96px;
  resize: vertical;
}

.booking-form select:disabled {
  color: var(--muted);
  background: #f4f6f6;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid rgba(15, 143, 139, 0.35);
  border-color: rgba(15, 143, 139, 0.4);
}

.booking-form .is-invalid {
  border-color: rgba(172, 45, 45, 0.72);
  background: #fff8f7;
}

.booking-form .is-invalid:focus {
  outline-color: rgba(172, 45, 45, 0.28);
  border-color: rgba(172, 45, 45, 0.8);
}

.field-error,
.field-help {
  min-height: 1rem;
  font-size: 0.78rem;
  line-height: 1.45;
}

.field-error {
  color: #a33232;
  font-weight: 800;
}

.field-help {
  color: var(--muted);
  font-weight: 600;
}

.booking-alert {
  border-radius: 13px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.5;
  padding: 0.78rem 0.9rem;
}

.booking-alert.error {
  background: #fff2f0;
  border-color: rgba(172, 45, 45, 0.24);
  color: #893030;
}

.booking-alert.success {
  background: rgba(15, 143, 139, 0.1);
  border-color: rgba(15, 143, 139, 0.22);
  color: var(--brand-dark);
}

.booking-submit {
  min-height: 48px;
}

.form-tip {
  margin: 0;
  min-height: 1.2rem;
  font-size: 0.85rem;
  color: var(--brand-dark);
}

.booking-modal {
  align-items: center;
  display: grid;
  inset: 0;
  justify-items: center;
  padding: 1rem;
  position: fixed;
  z-index: 80;
}

.booking-modal-backdrop {
  background: rgba(8, 24, 25, 0.54);
  backdrop-filter: blur(8px);
  inset: 0;
  position: absolute;
}

.booking-modal-card {
  background:
    radial-gradient(circle at top right, rgba(15, 143, 139, 0.12), transparent 34%),
    #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(8, 24, 25, 0.28);
  max-height: min(86vh, 760px);
  max-width: 620px;
  overflow: auto;
  padding: 1.35rem;
  position: relative;
  width: min(100%, 620px);
}

.booking-modal-card:focus {
  outline: none;
}

.booking-modal-card h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.55rem, 5vw, 2.2rem);
  margin: 0.45rem 2.2rem 0.5rem 0;
}

.booking-modal-card > p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.modal-close {
  align-items: center;
  background: rgba(29, 49, 51, 0.06);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 1.4rem;
  font-weight: 800;
  height: 2.35rem;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 2.35rem;
}

.modal-close:hover {
  background: rgba(15, 143, 139, 0.1);
}

.modal-close:focus-visible {
  outline: 3px solid rgba(242, 181, 107, 0.7);
  outline-offset: 3px;
}

.booking-modal-details {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.booking-modal-details section {
  background: rgba(249, 248, 244, 0.72);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
}

.booking-modal-details h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  margin-bottom: 0.7rem;
}

.booking-modal-details dl {
  display: grid;
  gap: 0.6rem;
  margin: 0;
}

.booking-modal-details dl div {
  display: grid;
  gap: 0.2rem;
}

.booking-modal-details dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.booking-modal-details dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.next-steps ol {
  color: var(--muted);
  display: grid;
  gap: 0.45rem;
  line-height: 1.55;
  margin: 0;
  padding-left: 1.2rem;
}

.booking-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.booking-modal-actions .btn {
  min-height: 44px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0 1.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

code {
  background: rgba(15, 143, 139, 0.1);
  border: 1px solid rgba(15, 143, 139, 0.14);
  border-radius: 7px;
  color: var(--brand-dark);
  padding: 0.08rem 0.28rem;
}

.admin-page {
  padding: 2.5rem 0 4rem;
}

.admin-locked #dashboard-view {
  display: none !important;
}

.admin-panel,
.admin-dashboard {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.auth-panel {
  max-width: 460px;
  margin: 0 auto;
}

.admin-panel h1,
.admin-toolbar h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  margin: 0.35rem 0 1rem;
}

.admin-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.admin-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: flex-end;
}

.admin-actions select,
.status-control select {
  border: 1px solid rgba(29, 49, 51, 0.18);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  padding: 0.58rem 0.75rem;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1rem 0;
}

.admin-stats article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem;
  display: grid;
  gap: 0.2rem;
}

.admin-stats strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.45rem;
}

.admin-stats span {
  color: var(--muted);
  font-size: 0.85rem;
}

.booking-list {
  display: grid;
  gap: 0.8rem;
}

.admin-booking {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

.booking-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.booking-topline h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
}

.booking-topline p {
  color: var(--muted);
  margin: 0.25rem 0 0;
}

.status-badge {
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.28rem 0.58rem;
  white-space: nowrap;
}

.status-pending {
  background: rgba(242, 181, 107, 0.24);
  color: #8a520d;
}

.status-confirmed {
  background: rgba(15, 143, 139, 0.16);
  color: var(--brand-dark);
}

.status-completed {
  background: rgba(55, 132, 85, 0.16);
  color: #25643f;
}

.status-cancelled {
  background: rgba(160, 67, 67, 0.14);
  color: #8c3434;
}

.admin-booking dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  margin: 1rem 0;
}

.admin-booking dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.admin-booking dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.admin-booking a {
  color: var(--brand-dark);
  font-weight: 700;
}

.status-control {
  display: inline-grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.empty-state {
  background: #fff;
  border: 1px dashed rgba(29, 49, 51, 0.22);
  border-radius: 12px;
  color: var(--muted);
  margin: 0;
  padding: 1rem;
}

.admin-container {
  width: min(1380px, 94vw);
  margin: 0 auto;
}

.ops-shell {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 1rem;
  align-items: start;
}

.ops-sidebar,
.ops-content,
.admin-card,
.customer-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(20, 48, 50, 0.08);
}

.ops-sidebar {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.ops-sidebar h1,
.ops-topbar h2,
.admin-card h3 {
  font-family: "Space Grotesk", sans-serif;
}

.ops-sidebar h1 {
  font-size: 1.45rem;
  margin: 0.35rem 0 0;
}

.ops-nav {
  display: grid;
  gap: 0.4rem;
}

.ops-nav button {
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 0.72rem 0.78rem;
  text-align: left;
}

.ops-nav button:hover,
.ops-nav button.active {
  background: rgba(15, 143, 139, 0.12);
  color: var(--brand-dark);
}

.ops-content {
  padding: 1rem;
}

.ops-topbar,
.panel-head,
.calendar-toolbar,
.settings-row,
.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.ops-topbar {
  border-bottom: 1px solid var(--line);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

.ops-topbar h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  margin: 0.25rem 0 0;
}

.ops-view {
  display: none;
}

.ops-view.active {
  display: grid;
  gap: 1rem;
}

.ops-grid {
  display: grid;
  gap: 1rem;
}

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

.admin-card,
.customer-card {
  padding: 1rem;
}

.mini-pill {
  background: rgba(15, 143, 139, 0.12);
  border-radius: 999px;
  color: var(--brand-dark);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 0.28rem 0.55rem;
  white-space: nowrap;
}

.muted-pill {
  background: rgba(29, 49, 51, 0.08);
  color: var(--muted);
}

.compact-list,
.settings-list,
.customer-list,
.hours-list {
  display: grid;
  gap: 0.7rem;
}

.compact-list article,
.settings-row {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.82rem;
}

.compact-list article {
  display: grid;
  gap: 0.2rem;
}

.compact-list span,
.settings-row span {
  color: var(--muted);
  font-size: 0.86rem;
}

.row-actions {
  align-items: center;
  display: flex;
  gap: 0.45rem;
}

.filter-row {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr;
  gap: 0.7rem;
}

.filter-row input,
.filter-row select,
.admin-form input,
.admin-form select,
.admin-form textarea,
.customer-card textarea {
  border: 1px solid rgba(29, 49, 51, 0.18);
  border-radius: 10px;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  min-height: 44px;
  padding: 0.68rem 0.75rem;
  width: 100%;
}

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

.admin-form label,
.customer-card label {
  color: var(--ink);
  display: grid;
  font-size: 0.86rem;
  font-weight: 800;
  gap: 0.35rem;
}

.admin-form .wide {
  grid-column: 1 / -1;
}

.calendar-toolbar {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem;
}

.calendar-toolbar h3 {
  font-family: "Space Grotesk", sans-serif;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.45rem;
}

.calendar-head,
.calendar-cell {
  border-radius: 10px;
  padding: 0.65rem;
}

.calendar-head {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.calendar-cell {
  background: #fff;
  border: 1px solid var(--line);
  min-height: 118px;
}

.calendar-cell strong {
  display: block;
  margin-bottom: 0.45rem;
}

.muted-cell {
  opacity: 0.46;
}

.today-cell {
  border-color: rgba(15, 143, 139, 0.55);
}

.calendar-booking,
.calendar-more {
  border-radius: 8px;
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  margin-top: 0.32rem;
  overflow: hidden;
  padding: 0.28rem 0.36rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.calendar-more {
  background: rgba(29, 49, 51, 0.08);
  color: var(--muted);
}

.customer-card {
  display: grid;
  gap: 0.75rem;
}

.hours-row {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  grid-template-columns: 0.55fr 0.7fr 1fr 1fr;
  padding: 0.75rem;
}

.hours-row label {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 0.86rem;
  font-weight: 800;
  gap: 0.4rem;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.has-js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 1.5rem, 760px);
  }

  .hero-grid,
  .book-grid,
  .three-col,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 2.2rem 0 2.4rem;
  }

  .hero-copy,
  .hero-card,
  .book-copy,
  .booking-form {
    border-radius: 20px;
    padding: 1.25rem;
  }

  .section {
    padding: 1.4rem 0 2.6rem;
  }

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }

  .featured {
    transform: none;
  }

  .nav-wrap {
    flex-wrap: wrap;
  }

  .has-js .menu-toggle {
    display: block;
  }

  .main-nav {
    display: grid;
    flex-basis: 100%;
    gap: 0.5rem;
    background: #fff;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  }

  .has-js .main-nav {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    left: 0;
    z-index: 40;
    transform: scale(0.98) translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

  .has-js .main-nav.open {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
  }

  .main-nav a {
    padding: 0.6rem 0.55rem;
    border-radius: 8px;
  }

  .main-nav .btn,
  .lang-toggle {
    width: 100%;
  }

  .main-nav a:hover {
    background: #f4f8f8;
  }

  .admin-nav {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: flex;
    box-shadow: none;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .admin-toolbar {
    display: grid;
  }

  .admin-actions {
    justify-content: stretch;
  }

  .admin-actions select,
  .admin-actions .btn {
    width: 100%;
  }

  .admin-stats,
  .admin-booking dl {
    grid-template-columns: 1fr;
  }

  .booking-topline {
    display: grid;
  }

  .ops-shell,
  .two-col,
  .filter-row,
  .admin-form,
  .hours-row {
    grid-template-columns: 1fr;
  }

  .ops-sidebar {
    position: static;
  }

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

  .ops-topbar,
  .panel-head,
  .settings-row,
  .calendar-toolbar {
    align-items: stretch;
    display: grid;
  }

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

  .calendar-head {
    display: none;
  }
}

@media (max-width: 560px) {
  .brand-text small {
    max-width: 12rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-copy,
  .hero-card,
  .book-copy,
  .booking-form,
  .card,
  .result {
    padding: 1rem;
  }

  h1 {
    font-size: clamp(2rem, 12vw, 3rem);
    max-width: 12ch;
  }

  .hero-cta,
  .hero-cta .btn {
    width: 100%;
  }

  .booking-modal {
    align-items: end;
    padding: 0.65rem;
  }

  .booking-modal-card {
    border-radius: 22px;
    max-height: 90vh;
    padding: 1rem;
  }

  .booking-modal-actions,
  .booking-modal-actions .btn {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-card li {
    gap: 0.8rem;
  }

  .section-head {
    gap: 0.75rem;
  }

  .footer-grid {
    display: grid;
  }

  .admin-container {
    width: min(100% - 1.5rem, 520px);
  }

  .ops-nav {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
