/* src/styles.css */
:root {
  --ink: #f6f8fb;
  --muted: #aeb8c6;
  --line: rgba(255, 255, 255, 0.14);
  --panel: rgba(13, 18, 25, 0.82);
  --panel-solid: #111821;
  --black: #06080c;
  --charcoal: #0b1118;
  --steel: #7d8da1;
  --blue: #1597ff;
  --blue-soft: #79cbff;
  --silver: #d9e2ec;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(
      circle at top left,
      rgba(21, 151, 255, 0.15),
      transparent 34rem),
    linear-gradient(
      145deg,
      #05070a 0%,
      #101722 48%,
      #080b10 100%);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
}
body::selection {
  background: var(--blue);
  color: #fff;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background:
    linear-gradient(
      180deg,
      rgba(3, 5, 8, 0.84),
      rgba(3, 5, 8, 0));
  transition:
    background 180ms ease,
    border-color 180ms ease,
    padding 180ms ease;
}
.site-header.is-scrolled {
  border-bottom: 1px solid var(--line);
  background: rgba(5, 8, 12, 0.9);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  padding-block: 10px;
}
.brand img {
  width: 299px;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.55));
}
.nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  color: var(--blue-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.nav a,
.header-call {
  opacity: 0.86;
  transition: color 160ms ease, opacity 160ms ease;
}
.nav a:hover,
.header-call:hover {
  color: var(--blue-soft);
  opacity: 1;
}
.header-call {
  justify-self: end;
  color: var(--blue-soft);
  font-size: 0.9rem;
  font-weight: 900;
}
.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 128px clamp(18px, 5vw, 70px) 34px;
  border-bottom: 1px solid var(--line);
}
.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.02);
}
.hero-scrim {
  background:
    linear-gradient(
      90deg,
      rgba(3, 5, 8, 0.88) 0%,
      rgba(3, 5, 8, 0.58) 34%,
      rgba(3, 5, 8, 0.08) 72%),
    linear-gradient(
      0deg,
      rgba(5, 8, 12, 0.82) 0%,
      rgba(5, 8, 12, 0.06) 42%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
  padding-bottom: 590px;
}
.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--blue-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 7vw, 7.9rem);
  line-height: 0.9;
  letter-spacing: 0;
}
h2 {
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}
h3 {
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  line-height: 1.12;
  letter-spacing: 0;
}
.hero-copy {
  max-width: 580px;
  color: #dce6f2;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 900;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button.primary {
  background:
    linear-gradient(
      135deg,
      var(--blue),
      #74d3ff);
  color: #06111d;
  box-shadow: 0 16px 42px rgba(21, 151, 255, 0.3);
}
.button.ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.section {
  padding: clamp(74px, 9vw, 128px) clamp(18px, 5vw, 70px);
}
.intro {
  background: #070b10;
}
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(26px, 6vw, 80px);
  align-items: start;
}
.intro h2,
.section-heading h2,
.detail-band h2,
.booking-copy h2 {
  margin-bottom: 0;
}
.intro p:not(.section-kicker),
.detail-band p:not(.section-kicker),
.booking-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}
.services {
  background:
    linear-gradient(
      180deg,
      rgba(17, 24, 33, 0.92),
      rgba(8, 12, 18, 0.98)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.04) 0 1px,
      transparent 1px 14px);
}
.section-heading {
  max-width: 900px;
  margin-bottom: clamp(34px, 5vw, 58px);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.service-card {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(8, 13, 19, 0.74);
  box-shadow: var(--shadow);
}
.service-card.featured {
  border-color: rgba(121, 203, 255, 0.42);
  background:
    linear-gradient(
      180deg,
      rgba(21, 151, 255, 0.13),
      rgba(8, 13, 19, 0.84)),
    rgba(8, 13, 19, 0.76);
}
.service-card ul {
  display: grid;
  gap: 11px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}
.service-card li {
  position: relative;
  padding-left: 18px;
}
.service-card li::before {
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}
.proof {
  background: #080c12;
}
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.compare-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-solid);
  box-shadow: var(--shadow);
}
.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}
.before-after figure {
  position: relative;
  aspect-ratio: 4 / 5;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #030507;
}
.before-after figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(3, 5, 8, 0.74);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.compare-copy {
  padding: 24px;
}
.compare-copy span,
.gallery-caption span {
  color: var(--blue-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.compare-copy h3 {
  margin: 8px 0 0;
}
.detail-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 70px);
  background:
    linear-gradient(
      135deg,
      rgba(21, 151, 255, 0.2),
      rgba(255, 255, 255, 0.04)),
    #111922;
  border-block: 1px solid var(--line);
}
.method {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding-top: 0;
  background:
    linear-gradient(
      180deg,
      rgba(5, 8, 12, 0.94),
      rgba(9, 15, 22, 0.98)),
    #080c12;
}
.method-copy p:not(.section-kicker) {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}
.method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.method-grid article {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 2.2vw, 26px);
  background:
    linear-gradient(
      180deg,
      rgba(121, 203, 255, 0.08),
      rgba(255, 255, 255, 0.03)),
    rgba(13, 19, 27, 0.86);
}
.method-grid h3 {
  margin-bottom: 12px;
}
.method-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 18px;
  padding-top: 0;
  background: #070b10;
}
.gallery-main,
.gallery-side img {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111821;
}
.gallery-main {
  position: relative;
  min-height: 640px;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-zoom {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  overflow: hidden;
}
.image-zoom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}
.image-zoom:hover img {
  filter: brightness(1.06);
  transform: scale(1.025);
}
.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(22px, 4vw, 44px);
  background:
    linear-gradient(
      0deg,
      rgba(3, 5, 8, 0.88),
      rgba(3, 5, 8, 0));
}
.gallery-caption h2 {
  max-width: 660px;
  margin: 8px 0 0;
}
.gallery-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.gallery-side img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
}
.lightbox-open {
  overflow: hidden;
}
.lightbox {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(14px, 4vw, 46px);
  background: rgba(2, 4, 7, 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.lightbox img {
  max-width: min(96vw, 1500px);
  max-height: 88svh;
  border: 1px solid rgba(121, 203, 255, 0.34);
  border-radius: 8px;
  object-fit: contain;
  box-shadow: var(--shadow);
}
.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  min-height: 42px;
  padding: 9px 14px;
  background: rgba(7, 12, 18, 0.86);
  color: var(--blue-soft);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
}
.booking {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 7vw, 88px);
  background:
    linear-gradient(
      180deg,
      rgba(5, 8, 12, 0.3),
      rgba(5, 8, 12, 1)),
    #101720;
}
.booking-copy {
  align-self: center;
}
.booking-copy p {
  margin-top: 22px;
}
.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: var(--silver);
  font-weight: 800;
}
.contact-lines a:hover {
  color: var(--blue-soft);
}
.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 32px);
  background: rgba(7, 12, 18, 0.82);
  box-shadow: var(--shadow);
}
label {
  display: grid;
  gap: 8px;
  color: var(--silver);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
  min-height: 48px;
  padding: 12px 13px;
  outline: none;
}
select {
  appearance: none;
  background:
    linear-gradient(
      45deg,
      transparent 50%,
      var(--silver) 50%) calc(100% - 18px) 50% / 7px 7px no-repeat,
    linear-gradient(
      135deg,
      var(--silver) 50%,
      transparent 50%) calc(100% - 13px) 50% / 7px 7px no-repeat,
    rgba(255, 255, 255, 0.06);
  color-scheme: dark;
  color: #fff;
}
select option {
  background: #111821;
  color: #fff;
}
select option:checked,
select option:hover {
  background: #1597ff;
  color: #06111d;
}
textarea {
  resize: none;
  overflow: auto;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue-soft);
  box-shadow: 0 0 0 3px rgba(21, 151, 255, 0.18);
}
.full {
  grid-column: 1 / -1;
}
.hidden {
  display: none;
}
.site-footer {
  display: grid;
  gap: 30px;
  padding: clamp(44px, 6vw, 72px) clamp(18px, 5vw, 70px) 24px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(
      135deg,
      rgba(21, 151, 255, 0.12),
      rgba(255, 255, 255, 0.02) 38%,
      rgba(5, 7, 10, 0) 70%),
    #05070a;
  color: var(--muted);
}
.footer-main {
  display: grid;
  grid-template-columns: minmax(300px, 1.2fr) minmax(180px, 0.65fr) minmax(210px, 0.75fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}
.footer-brand {
  display: grid;
  align-content: start;
  gap: 12px;
  max-width: 520px;
}
.footer-brand p,
.footer-bottom {
  margin: 0;
}
.footer-brand p {
  color: var(--silver);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.55;
}
.footer-note {
  color: var(--silver);
  font-weight: 800;
}
.footer-column {
  display: grid;
  gap: 10px;
}
.footer-column h2 {
  margin: 0 0 6px;
  color: var(--blue-soft);
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}
.footer-column a,
.footer-column span {
  color: var(--silver);
  font-size: 0.96rem;
  font-weight: 750;
}
.footer-column a:hover {
  color: var(--blue-soft);
}
.footer-contact a:first-of-type {
  color: #fff;
}
.footer-column:not(.footer-brand) {
  justify-items: end;
  text-align: right;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  color: rgba(225, 233, 242, 0.68);
  font-size: 0.86rem;
  font-weight: 800;
}
.page-shell {
  min-height: 100svh;
  background: #070b10;
}
.page-hero {
  height: 664.35px;
  padding: 300px clamp(18px, 5vw, 70px) clamp(56px, 8vw, 96px);
  background:
    linear-gradient(
      90deg,
      rgba(3, 5, 8, 0.9),
      rgba(3, 5, 8, 0.42)),
    url(/assets/hero-golf-r.jpg) center / cover;
  border-bottom: 1px solid var(--line);
}
.page-hero.compact h1 {
  max-width: 980px;
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 6vw, 6.4rem);
}
.page-hero p:not(.section-kicker) {
  max-width: 680px;
  color: var(--silver);
  font-size: clamp(1rem, 1.3vw, 1.22rem);
}
.booking-copy .section-kicker {
  color: var(--blue-soft);
}
.booking-note {
  margin: 0;
  border: 1px solid rgba(121, 203, 255, 0.24);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(21, 151, 255, 0.08);
  color: var(--silver);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: none;
}
.checkbox-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--silver);
  text-transform: none;
}
.checkbox-row input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--blue);
}
.mobile-detail-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
}
.add-on-fieldset {
  display: grid;
  gap: 12px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}
.add-on-fieldset legend {
  padding: 0 8px;
  color: var(--silver);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}
.add-on-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}
.availability {
  padding-top: 0;
  background: #070b10;
}
.availability .section-heading p:not(.section-kicker) {
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}
.calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 18px;
}
.calendar-toolbar strong {
  color: #fff;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 950;
  text-align: center;
}
.availability-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}
.availability-day {
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 156px;
  padding: 12px;
  background: rgba(13, 19, 27, 0.82);
  color: inherit;
  font: inherit;
  text-align: left;
}
button.availability-day {
  cursor: pointer;
}
button.availability-day:not(:disabled):hover,
.availability-day.selected {
  border-color: rgba(121, 203, 255, 0.75);
  box-shadow: 0 0 0 3px rgba(21, 151, 255, 0.16);
}
button.availability-day:disabled {
  cursor: not-allowed;
}
.availability-weekday {
  padding: 0 4px 8px;
  color: var(--blue-soft);
  font-size: 0.78rem;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}
.availability-day.closed,
.availability-day.outside-month,
.availability-day.past {
  opacity: 0.58;
}
.availability-day.unavailable {
  border-color: rgba(255, 111, 111, 0.34);
  background: rgba(80, 17, 20, 0.28);
}
.availability-date {
  display: grid;
  gap: 2px;
  margin-bottom: 14px;
}
.availability-date span,
.availability-date em {
  color: var(--blue-soft);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}
.availability-date strong {
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}
.availability-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.availability-slots span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 7px;
  color: var(--silver);
  font-size: 0.68rem;
  font-weight: 900;
}
.availability-slots .open {
  border-color: rgba(121, 203, 255, 0.42);
  color: var(--blue-soft);
}
.availability-slots .pending,
.availability-slots .booked {
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffcf8a;
  background: rgba(255, 207, 138, 0.09);
}
.availability-slots .closed {
  color: var(--muted);
}
.availability-slots .unavailable {
  border-color: rgba(255, 111, 111, 0.38);
  color: #ffb1b1;
  background: rgba(255, 111, 111, 0.08);
}
.admin-month {
  padding-top: 0;
  padding-bottom: 0;
}
.admin-schedule-day .availability-slots span {
  max-width: 100%;
}
.home-teasers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  background: #070b10;
}
.home-teasers article,
.home-process,
.home-result {
  border-top: 1px solid var(--line);
}
.home-teasers article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 30px);
  background: rgba(13, 19, 27, 0.82);
}
.home-teasers h2 {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
}
.home-teasers p:not(.section-kicker),
.home-process p:not(.section-kicker),
.home-result p:not(.section-kicker) {
  color: var(--muted);
}
.home-teasers a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--blue-soft);
  font-weight: 900;
}
.home-process {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(26px, 6vw, 72px);
  align-items: center;
  padding: clamp(48px, 7vw, 76px) clamp(18px, 5vw, 70px);
  background: #111922;
}
.home-result {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(26px, 6vw, 72px);
  align-items: center;
  padding: clamp(48px, 7vw, 76px) clamp(18px, 5vw, 70px);
  background: #080c12;
}
.home-result img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
}
.mobile-note {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(44px, 6vw, 72px) clamp(18px, 5vw, 70px);
  background:
    linear-gradient(
      135deg,
      rgba(21, 151, 255, 0.16),
      rgba(255, 255, 255, 0.03)),
    #0b121a;
  border-top: 1px solid var(--line);
}
.mobile-note h2 {
  margin: 0;
}
.mobile-note p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
}
.cta-band {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: clamp(48px, 7vw, 80px) clamp(18px, 5vw, 70px);
  background: #111922;
  border-top: 1px solid var(--line);
}
.cta-band h2 {
  max-width: 760px;
  margin: 0;
}
.form-status {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font-weight: 800;
  text-transform: none;
}
.form-status.error {
  border-color: rgba(255, 94, 94, 0.5);
  color: #ffb7b7;
  background: rgba(255, 94, 94, 0.08);
}
.form-status.success {
  border-color: rgba(121, 203, 255, 0.45);
  color: var(--blue-soft);
  background: rgba(21, 151, 255, 0.1);
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  transform: none;
}
.admin-lock {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
  background: #080c12;
}
.compact-form {
  max-width: 520px;
}
.admin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
  background: #080c12;
}
.admin-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 28px);
  background: rgba(13, 19, 27, 0.82);
  box-shadow: var(--shadow);
}
.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.panel-heading .section-kicker {
  margin: 0;
}
.button.small {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 0.82rem;
}
.appointment-list,
.calendar-list {
  display: grid;
  gap: 14px;
}
.appointment-card,
.calendar-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
}
.appointment-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 18px;
}
.appointment-card span,
.status-pill {
  color: var(--blue-soft);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.appointment-card p,
.calendar-card p,
.muted {
  color: var(--muted);
}
.admin-fields {
  display: grid;
  gap: 12px;
}
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.calendar-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
}
.calendar-date {
  display: grid;
  place-items: center;
  align-self: start;
  min-height: 72px;
  border: 1px solid rgba(121, 203, 255, 0.35);
  border-radius: 8px;
  background: rgba(21, 151, 255, 0.1);
}
.calendar-date span {
  color: var(--blue-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.calendar-date strong {
  font-size: 1.8rem;
}
@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }
  .nav {
    justify-self: end;
  }
  .header-call {
    display: none;
  }
  .intro-grid,
  .service-grid,
  .comparison-grid,
  .detail-band,
  .method,
  .home-teasers,
  .home-process,
  .home-result,
  .gallery,
  .booking,
  .admin-lock,
  .admin-grid,
  .appointment-card {
    grid-template-columns: 1fr;
  }
  .method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-main {
    min-height: 480px;
  }
  .gallery-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-hero {
    padding-top: 170px;
  }
  .page-booking {
    padding-top: clamp(92px, 11vw, 150px);
  }
  .availability-grid {
    gap: 6px;
  }
  .availability-day {
    min-height: 128px;
    padding: 8px;
  }
  .availability-date strong {
    font-size: 1.45rem;
  }
  .availability-slots span {
    font-size: 0.58rem;
    padding: 4px 5px;
  }
}
@media (max-width: 660px) and (hover: none), (max-width: 660px) and (pointer: coarse) {
  .site-header {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 14px;
  }
  .brand img {
    width: 163px;
  }
  .nav {
    flex-shrink: 0;
    margin-left: auto;
    gap: 9px;
    font-size: 0.66rem;
    margin-right: clamp(8px, 3vw, 18px);
  }
  .hero {
    min-height: 92svh;
    padding-inline: 16px;
  }
  .hero-image {
    object-position: 62% center;
  }
  .hero-scrim {
    background:
      linear-gradient(
        90deg,
        rgba(3, 5, 8, 0.86),
        rgba(3, 5, 8, 0.18)),
      linear-gradient(
        0deg,
        rgba(5, 8, 12, 0.94) 0%,
        rgba(5, 8, 12, 0.08) 64%);
  }
  .hero-content {
    padding-bottom: 28px;
  }
  h1 {
    font-size: clamp(3rem, 17vw, 4.8rem);
  }
  .button {
    width: 100%;
  }
  .section {
    padding-inline: 16px;
  }
  .page-hero {
    padding-top: 132px;
  }
  .page-booking {
    padding-top: 84px;
  }
  .gallery-main {
    min-height: 390px;
  }
  .gallery-side,
  .method-grid,
  .add-on-grid,
  .booking-form {
    grid-template-columns: 1fr;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .footer-column:not(.footer-brand) {
    justify-items: start;
    text-align: left;
  }
  .footer-bottom {
    display: grid;
  }
  .availability {
    padding-inline: 10px;
  }
  .add-on-grid {
    grid-template-columns: 1fr;
  }
  .availability-grid {
    gap: 4px;
  }
  .availability-day {
    min-height: 104px;
    padding: 6px 4px;
  }
  .availability-weekday {
    font-size: 0.56rem;
    padding-bottom: 4px;
  }
  .availability-date {
    margin-bottom: 8px;
  }
  .availability-date span,
  .availability-date em {
    font-size: 0.55rem;
  }
  .availability-date strong {
    font-size: 1.2rem;
  }
  .availability-slots {
    gap: 3px;
  }
  .availability-slots span {
    border-radius: 6px;
    padding: 3px 4px;
    font-size: 0.5rem;
  }
}
@media (max-width: 660px) and (hover: hover) and (pointer: fine) {
  body {
    min-width: 980px;
  }
  .site-header {
    position: absolute;
    right: auto;
    width: 980px;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
