:root {
  --ink: #07111f;
  --ink-soft: #223249;
  --paper: #f7f9fc;
  --white: #ffffff;
  --line: #dde5ef;
  --blue: #1167d8;
  --blue-dark: #073e9f;
  --blue-soft: #eaf3ff;
  --silver: #8d9bad;
  --success: #15a46f;
  --shadow: 0 18px 50px rgba(7, 17, 31, 0.12);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(calc(100% - 32px), var(--max));
  margin: 16px auto 0;
  padding: 10px 10px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--white);
  background: rgba(7, 17, 31, 0.78);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 17, 31, 0.94);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 16px;
  line-height: 1;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.main-nav a,
.header-action {
  min-height: 40px;
  border-radius: 8px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.header-action {
  color: var(--white);
  background: var(--blue);
}

.header-action:hover,
.header-action:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero picture,
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.92), rgba(7, 17, 31, 0.7) 43%, rgba(7, 17, 31, 0.28)),
    linear-gradient(0deg, rgba(7, 17, 31, 0.96), rgba(7, 17, 31, 0) 32%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 166px 0 84px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #78b8ff;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: 58px;
}

h2 {
  max-width: 760px;
  font-size: 40px;
}

h3 {
  font-size: 22px;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  font-size: 15px;
  font-weight: 800;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(17, 103, 216, 0.28);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.button-card {
  width: 100%;
  margin-top: auto;
  color: var(--white);
  background: var(--ink);
}

.button-outline {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 60px 0 0;
}

.hero-stats div {
  min-height: 108px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-stats dt {
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 88px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading .eyebrow {
  align-self: start;
}

.intro-grid,
.package-grid,
.gallery-grid,
.steps {
  display: grid;
  gap: 18px;
}

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

.intro-grid article,
.service-panel,
.not-offered,
.package-card,
.steps article,
.gallery-grid article,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 42px rgba(7, 17, 31, 0.06);
}

.intro-grid article {
  min-height: 230px;
  padding: 28px;
}

.intro-grid p,
.service-panel p,
.not-offered p,
.steps p,
.gallery-grid p,
.contact p,
.price-note {
  color: var(--ink-soft);
}

.service-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-panel {
  padding: 32px;
}

.service-panel-blue {
  color: var(--white);
  border-color: rgba(17, 103, 216, 0.25);
  background: linear-gradient(145deg, var(--blue-dark), var(--blue));
}

.service-panel-blue .check-list li {
  color: rgba(255, 255, 255, 0.88);
}

.service-panel-blue .check-list li::before {
  background: var(--white);
  box-shadow: inset 0 0 0 4px var(--blue);
}

.not-offered {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px 32px;
  background: #f0f4f9;
}

.not-offered p {
  margin: 0;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 24px;
  padding-left: 34px;
  color: var(--ink-soft);
}

.check-list li::before {
  position: absolute;
  top: 3px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: inset 0 0 0 5px var(--blue-soft);
  content: "";
}

.packages {
  width: 100%;
  max-width: none;
  padding: 92px max(20px, calc((100% - var(--max)) / 2));
  background: var(--white);
}

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

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 540px;
  padding: 30px;
}

.package-card.featured {
  border-color: rgba(17, 103, 216, 0.42);
  box-shadow: var(--shadow);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--white);
  background: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.package-top {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.package-top p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.package-top strong {
  color: var(--ink);
  font-size: 30px;
}

.price-note {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: 15px;
}

.booking {
  scroll-margin-top: 96px;
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  gap: 20px;
  align-items: start;
}

.booking-form,
.booking-summary {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 42px rgba(7, 17, 31, 0.06);
}

.booking-form {
  display: grid;
  gap: 24px;
  padding: 28px;
}

.form-block {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-block legend {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.choice-card {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card span {
  display: grid;
  gap: 2px;
  min-height: 86px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fbfdff;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.choice-card strong {
  font-size: 17px;
}

.choice-card small {
  color: var(--ink-soft);
  font-weight: 800;
}

.choice-card input:checked + span {
  border-color: rgba(17, 103, 216, 0.48);
  background: var(--blue-soft);
  box-shadow: inset 0 0 0 1px rgba(17, 103, 216, 0.18);
}

.choice-card input:focus-visible + span,
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible,
.consent input:focus-visible {
  outline: 3px solid rgba(17, 103, 216, 0.24);
  outline-offset: 2px;
}

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

.field {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.field-full {
  grid-column: 1 / -1;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfdff;
  font: inherit;
  font-weight: 600;
}

.field textarea {
  min-height: 116px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #7b8aa0;
  opacity: 1;
}

.availability-field {
  display: grid;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.booking-calendar {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fbfdff;
}

.calendar-toolbar {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.calendar-toolbar strong {
  text-align: center;
  text-transform: capitalize;
}

.calendar-toolbar button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
}

.calendar-toolbar button:disabled {
  color: var(--silver);
  cursor: not-allowed;
  opacity: 0.55;
}

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

.calendar-weekdays {
  margin-bottom: 6px;
}

.calendar-weekdays span {
  color: var(--silver);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.calendar-empty {
  min-height: 42px;
}

.calendar-day {
  min-width: 0;
  min-height: 46px;
  border: 1px solid rgba(17, 103, 216, 0.28);
  border-radius: 8px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.calendar-day:hover,
.calendar-day:focus-visible {
  transform: translateY(-1px);
  border-color: var(--blue);
  outline: none;
}

.calendar-day.is-selected {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 10px 22px rgba(17, 103, 216, 0.22);
}

.calendar-day.is-booked,
.calendar-day.is-past,
.calendar-day.is-closed {
  color: #7b8aa0;
  border-color: #e7edf5;
  background: #eef3f8;
  cursor: not-allowed;
  opacity: 0.78;
}

.calendar-day.is-booked {
  color: #c83f4a;
  background: #faedf0;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.calendar-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.calendar-legend i {
  width: 13px;
  height: 13px;
  border-radius: 50%;
}

.legend-free {
  background: var(--blue-soft);
  box-shadow: inset 0 0 0 2px rgba(17, 103, 216, 0.32);
}

.legend-selected {
  background: var(--blue);
}

.legend-booked {
  background: #faedf0;
  box-shadow: inset 0 0 0 2px #c83f4a;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink-soft);
  background: #fbfdff;
  font-weight: 700;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  flex: 0 0 auto;
  accent-color: var(--blue);
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.booking-status {
  min-height: 24px;
  margin: -8px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.booking-status[data-type="success"] {
  color: var(--success);
}

.booking-status[data-type="error"] {
  color: #c83f4a;
}

.booking-summary {
  position: sticky;
  top: 112px;
  padding: 28px;
}

.booking-summary .eyebrow {
  margin-bottom: 10px;
}

.booking-summary h3 {
  margin-bottom: 22px;
  font-size: 28px;
}

.booking-summary dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.booking-summary div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.booking-summary dt {
  color: var(--silver);
  font-size: 13px;
  font-weight: 900;
}

.booking-summary dd {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.booking-summary p:last-child {
  margin: 22px 0 0;
  border-radius: 8px;
  padding: 14px;
  color: var(--ink-soft);
  background: var(--blue-soft);
  font-size: 14px;
  font-weight: 700;
}

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

.steps article {
  min-height: 240px;
  padding: 26px;
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 8px;
  color: var(--blue);
  background: var(--blue-soft);
  font-weight: 900;
}

.trust {
  width: 100%;
  max-width: none;
  padding: 86px max(20px, calc((100% - var(--max)) / 2));
  background: var(--ink);
}

.trust-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: 44px;
  align-items: center;
  color: var(--white);
}

.trust-band .eyebrow {
  color: #78b8ff;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 16px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
}

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

.gallery-grid article {
  min-height: 260px;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(17, 103, 216, 0.08), rgba(255, 255, 255, 0.92)),
    var(--white);
}

.gallery-card {
  overflow: hidden;
}

.gallery-card.photo-card {
  padding: 0;
}

.gallery-card.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.gallery-card.photo-card div {
  padding: 22px 24px 24px;
}

.gallery-grid span {
  display: inline-flex;
  margin-bottom: 76px;
  color: var(--blue);
  font-weight: 900;
}

.gallery-card.photo-card span {
  margin-bottom: 10px;
}

.contact {
  width: 100%;
  max-width: none;
  padding: 92px max(20px, calc((100% - var(--max)) / 2));
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 103, 216, 0.95), rgba(7, 17, 31, 0.98)),
    var(--blue-dark);
}

.contact .eyebrow {
  color: #a9d1ff;
}

.contact p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-content {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 0.78fr);
  gap: 48px;
  align-items: center;
}

.contact-card {
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.contact-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 76px;
  padding: 18px 22px;
  color: var(--ink);
}

.contact-row + .contact-row {
  border-top: 1px solid var(--line);
}

.contact-row span {
  color: var(--silver);
  font-size: 14px;
  font-weight: 800;
}

.contact-row strong {
  overflow-wrap: anywhere;
}

.map-consent {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 42px;
}

.map-consent h3 {
  color: var(--white);
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.map-frame {
  display: grid;
  place-items: center;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 330px;
  border: 0;
}

.legal-page {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 150px 0 80px;
}

.legal-hero {
  margin-bottom: 38px;
}

.legal-hero h1 {
  color: var(--ink);
}

.legal-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 18px;
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-content article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  background: var(--white);
  box-shadow: 0 14px 42px rgba(7, 17, 31, 0.06);
}

.legal-content h2 {
  margin-bottom: 18px;
  font-size: 28px;
}

.legal-content p {
  max-width: 880px;
  color: var(--ink-soft);
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content a {
  color: var(--blue);
  font-weight: 800;
}

.legal-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.legal-list div {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.legal-list div:first-child {
  border-top: 0;
  padding-top: 0;
}

.legal-list div:last-child {
  padding-bottom: 0;
}

.legal-list dt {
  color: var(--silver);
  font-weight: 900;
}

.legal-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.admin-header-form {
  margin: 0;
}

.admin-header-form .header-action {
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.admin-page {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 150px 0 80px;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 18px;
  margin-bottom: 18px;
}

.admin-card,
.admin-alert {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 42px rgba(7, 17, 31, 0.06);
}

.admin-card {
  padding: 30px;
}

.admin-card + .admin-card {
  margin-top: 18px;
}

.admin-card h2 {
  margin-bottom: 14px;
  font-size: 28px;
}

.admin-card p {
  color: var(--ink-soft);
}

.admin-form {
  display: grid;
  gap: 16px;
  max-width: 520px;
}

.admin-alert {
  margin: 0 0 18px;
  padding: 16px 18px;
  font-weight: 800;
}

.admin-alert.success {
  color: var(--success);
  background: #eefaf5;
}

.admin-alert.error {
  color: #c83f4a;
  background: #fff0f2;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  min-width: 840px;
  border-collapse: collapse;
  font-size: 14px;
}

.admin-table th,
.admin-table td {
  border-top: 1px solid var(--line);
  padding: 15px 12px;
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--silver);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-table strong,
.admin-table small {
  display: block;
}

.admin-table small {
  margin-top: 4px;
  color: var(--ink-soft);
}

.admin-table a {
  color: var(--blue);
  font-weight: 900;
}

.admin-table.muted {
  min-width: 620px;
  opacity: 0.76;
}

.admin-link-button {
  border: 0;
  padding: 0;
  color: #c83f4a;
  background: transparent;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.install-check-page code {
  border-radius: 6px;
  padding: 2px 6px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-weight: 800;
}

.install-check-list {
  display: grid;
  gap: 12px;
}

.install-check-list article {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fbfdff;
}

.install-check-list article > strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 8px;
  color: var(--white);
  background: var(--success);
  font-size: 13px;
}

.install-check-list article.fail > strong {
  background: #c83f4a;
}

.install-check-list h3 {
  margin-bottom: 4px;
  font-size: 18px;
}

.install-check-list p {
  margin: 0;
}

.install-steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: var(--ink-soft);
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 30px 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--blue);
  font-weight: 800;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .main-nav {
    display: none;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 17, 31, 0.94), rgba(7, 17, 31, 0.58)),
      linear-gradient(0deg, rgba(7, 17, 31, 0.98), rgba(7, 17, 31, 0) 36%);
  }

  .section-heading,
  .trust-band,
  .contact-content,
  .map-consent {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .intro-grid,
  .package-grid,
  .gallery-grid,
  .booking-shell {
    grid-template-columns: 1fr;
  }

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

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

  .booking-summary {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: min(calc(100% - 20px), var(--max));
    margin-top: 10px;
    padding: 8px;
  }

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

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 11px;
  }

  .header-action {
    min-height: 38px;
    padding: 9px 11px;
    font-size: 13px;
  }

  .hero {
    min-height: 760px;
  }

  .hero img {
    object-position: 62% center;
  }

  .hero-content {
    width: min(calc(100% - 28px), var(--max));
    padding: 122px 0 50px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero-copy {
    font-size: 17px;
  }

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

  .hero-stats,
  .service-layout,
  .steps,
  .trust-list,
  .choice-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    margin-top: 36px;
  }

  .hero-stats div {
    min-height: auto;
  }

  .section {
    width: min(calc(100% - 28px), var(--max));
    padding: 62px 0;
  }

  .packages,
  .trust,
  .contact {
    padding: 64px 14px;
  }

  .intro-grid article,
  .service-panel,
  .package-card,
  .booking-form,
  .booking-summary,
  .steps article,
  .gallery-grid article {
    padding: 22px;
  }

  .not-offered {
    grid-template-columns: 1fr;
    padding: 22px;
  }

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

  .map-consent {
    margin-top: 38px;
    padding-top: 32px;
  }

  .map-frame {
    min-height: 260px;
  }

  .map-frame iframe {
    min-height: 260px;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 16px;
  }

  .booking-actions {
    display: grid;
  }

  .map-actions {
    display: grid;
  }

  .legal-page {
    width: min(calc(100% - 28px), var(--max));
    padding: 116px 0 58px;
  }

  .admin-page {
    width: min(calc(100% - 28px), var(--max));
    padding: 116px 0 58px;
  }

  .legal-content article {
    padding: 22px;
  }

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

  .admin-card {
    padding: 22px;
  }

  .install-check-list article {
    grid-template-columns: 1fr;
  }

  .legal-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .site-footer {
    flex-direction: column;
    width: min(calc(100% - 28px), var(--max));
  }
}
