:root {
  --ink: #10231f;
  --muted: #52625e;
  --paper: #fbfaf5;
  --surface: #ffffff;
  --line: #dce5df;
  --teal: #0b6f67;
  --teal-dark: #074d49;
  --mint: #dff4ea;
  --gold: #e7b647;
  --shadow: 0 22px 70px rgba(11, 44, 38, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 16px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(calc(100% - 32px), 1180px);
  min-height: 68px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(13, 32, 29, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.admin-bar .site-header {
  top: 48px;
}

.site-header.is-scrolled,
.page:not(.home) .site-header,
.single .site-header,
.archive .site-header,
.error404 .site-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(16, 35, 31, 0.08);
  box-shadow: 0 16px 45px rgba(18, 45, 39, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  transition: transform 180ms ease;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-logo,
.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 42px;
  flex: 0 0 48px;
  border-radius: 8px;
}

.brand-logo {
  width: 60px;
  height: 40px;
  flex-basis: 60px;
  overflow: hidden;
  border-radius: 0;
}

.brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.brand-mark {
  color: var(--teal-dark);
  background: linear-gradient(135deg, #f9ffe8, #bcefe0);
  font-size: 0.95rem;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
  letter-spacing: 0;
}

.brand strong {
  max-width: 220px;
  overflow: hidden;
  font-size: 1rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand small {
  margin-top: 4px;
  font-size: 0.78rem;
  opacity: 0.78;
}

.main-nav .menu-items {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 34px);
  padding: 0;
  margin: 0;
  font-size: 0.94rem;
  font-weight: 650;
  list-style: none;
}

.main-nav a {
  position: relative;
  display: block;
  padding: 10px 0;
  opacity: 0.88;
  transition: color 180ms ease, opacity 180ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a {
  opacity: 1;
}

.main-nav a:hover::after,
.main-nav .current-menu-item > a::after,
.main-nav .current_page_item > a::after {
  opacity: 0.8;
  transform: scaleX(1);
}

.site-header:not(.is-scrolled) .main-nav .current-menu-item > a,
.site-header:not(.is-scrolled) .main-nav .current_page_item > a {
  color: #f5ffe9;
}

.page:not(.home) .main-nav .current-menu-item > a,
.page:not(.home) .main-nav .current_page_item > a,
.site-header.is-scrolled .main-nav .current-menu-item > a,
.site-header.is-scrolled .main-nav .current_page_item > a {
  color: var(--teal);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: var(--teal-dark);
  background: #f5ffe9;
  border-radius: 8px;
  font-weight: 750;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-phone:hover,
.header-phone:focus-visible {
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(7, 77, 73, 0.18);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(790px, 86svh);
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-shade,
.hero-content {
  grid-area: 1 / 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(4, 26, 23, 0.88) 0%, rgba(4, 26, 23, 0.67) 38%, rgba(4, 26, 23, 0.12) 76%),
    linear-gradient(0deg, rgba(4, 26, 23, 0.34), rgba(4, 26, 23, 0.06));
}

.hero-content {
  z-index: 1;
  align-self: center;
  width: min(1180px, calc(100% - 40px));
  margin: 86px auto 48px;
}

.eyebrow,
.section-kicker,
.price-label {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #c9f5dc;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 690px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.6vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.hero-actions,
.section-action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 16px 34px rgba(7, 77, 73, 0.18);
  transform: translateY(-3px);
}

.button:active {
  transform: translateY(-1px);
}

.button.primary,
.button.light {
  color: var(--teal-dark);
  background: #f6ffe7;
}

.button.primary:hover,
.button.light:hover,
.button.primary:focus-visible,
.button.light:focus-visible {
  background: #ffffff;
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.button.secondary:hover,
.button.secondary:focus-visible,
.button.outline-light:hover,
.button.outline-light:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.78);
}

.button.dark {
  color: #fff;
  background: var(--teal-dark);
}

.button.dark:hover,
.button.dark:focus-visible {
  background: var(--teal);
}

.button.outline-dark {
  color: var(--teal-dark);
  border: 1px solid rgba(7, 77, 73, 0.28);
}

.button.outline-dark:hover,
.button.outline-dark:focus-visible {
  background: var(--mint);
  border-color: rgba(7, 77, 73, 0.42);
}

.button.outline-light {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.trust-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1180px, calc(100% - 40px));
  margin: -42px auto 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.trust-strip div {
  min-width: 0;
  padding: 24px clamp(18px, 3vw, 34px);
  transition: background 180ms ease;
}

.trust-strip div:hover {
  background: #f7fff1;
}

.trust-strip div + div {
  border-left: 1px solid var(--line);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 5px;
  font-size: 0.83rem;
  text-transform: uppercase;
}

.trust-strip span {
  color: var(--muted);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(74px, 10vw, 128px) 0;
}

.intro {
  max-width: 940px;
  text-align: center;
}

.intro p {
  max-width: 760px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(30px, 4vw, 52px);
}

.section-heading > *,
.page-hero > *,
.region-band > *,
.contact > *,
.booking-layout > * {
  min-width: 0;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-action {
  margin-top: clamp(28px, 4vw, 44px);
}

.service-grid,
.price-grid,
.process-grid,
.service-detail-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card,
.price-card,
.process-grid article,
.detail-card,
.faq-grid article {
  min-width: 0;
  padding: clamp(24px, 3vw, 34px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card:hover,
.price-card:hover,
.process-grid article:hover,
.detail-card:hover,
.faq-grid article:hover {
  border-color: rgba(11, 111, 103, 0.25);
  box-shadow: 0 22px 50px rgba(11, 44, 38, 0.12);
  transform: translateY(-6px);
}

.price-card.featured:hover {
  box-shadow: 0 26px 58px rgba(7, 77, 73, 0.2);
}

.service-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
}

.service-number {
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 900;
}

.service-card p,
.price-card p,
.process-grid p,
.detail-card p,
.faq-grid p {
  color: var(--muted);
}

.service-card p,
.price-card p:last-child,
.process-grid p {
  margin-bottom: 0;
}

.price-card {
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  color: #fff;
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.price-card.featured .price-label,
.price-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.price {
  margin-bottom: 18px;
  color: var(--muted);
}

.price span {
  display: block;
  color: currentColor;
  font-size: clamp(2.05rem, 3.5vw, 3.3rem);
  font-weight: 900;
  line-height: 0.95;
  white-space: nowrap;
}

.price-card.featured .price span {
  color: #fff;
}

.price-card h2,
.detail-card h2,
.booking-summary h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.05;
}

.price-card .button {
  margin-top: 26px;
}

.price-detail-list {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.price-detail-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.price-detail-list li::before {
  position: absolute;
  left: 0;
  content: "•";
  color: var(--teal);
}

.price-card.featured .price-detail-list li {
  color: rgba(255, 255, 255, 0.78);
}

.price-card.featured .price-detail-list li::before {
  color: var(--lime);
}

.price-addons-card {
  max-width: 760px;
}

.price-addons-card .price-detail-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.region-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(62px, 8vw, 96px) max(20px, calc((100vw - 1180px) / 2));
  color: #fff;
  background: linear-gradient(90deg, rgba(7, 77, 73, 0.96), rgba(11, 111, 103, 0.82)), #074d49;
}

.region-band .section-kicker,
.region-band p {
  color: rgba(255, 255, 255, 0.78);
}

.region-band h2,
.region-band p {
  margin-bottom: 0;
}

.region-band p {
  font-size: 1.08rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto clamp(28px, 5vw, 60px);
  padding: clamp(40px, 6vw, 72px);
  color: #fff;
  background: #152720;
  border-radius: 8px;
}

.contact.compact,
.contact-page {
  margin-top: clamp(58px, 8vw, 92px);
}

.contact .section-kicker,
.contact p {
  color: rgba(255, 255, 255, 0.75);
}

.contact h2 {
  margin-bottom: 16px;
}

.contact p {
  margin-bottom: 0;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-actions a {
  display: block;
  min-width: 0;
  padding: 22px;
  color: var(--ink);
  background: #f7fff1;
  border-radius: 8px;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.contact-actions a:hover,
.contact-actions a:focus-visible {
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px);
}

.contact-actions span {
  display: block;
  margin-bottom: 5px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-actions strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: clamp(1rem, 2.1vw, 1.45rem);
  line-height: 1.25;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 176px 0 clamp(62px, 8vw, 96px);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(2.7rem, 7vw, 6rem);
}

.page-hero p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 28px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  content: "✓";
  font-weight: 900;
}

.text-link {
  position: relative;
  display: inline-block;
  color: var(--teal);
  font-weight: 850;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
}

.faq {
  padding-top: clamp(40px, 6vw, 72px);
  border-top: 1px solid var(--line);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 22px;
  align-items: start;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) 0;
}

.timetics-panel,
.booking-summary {
  min-width: 0;
  padding: clamp(24px, 3.2vw, 42px);
  border-radius: 8px;
}

.timetics-panel {
  background: var(--surface);
  border: 1px solid var(--line);
}

.timetics-panel .wp-page-content:not(:empty) {
  margin-bottom: 28px;
}

.booking-summary {
  position: sticky;
  top: 106px;
  color: #fff;
  background: #152720;
}

.booking-summary .section-kicker,
.booking-summary .summary-note {
  color: rgba(255, 255, 255, 0.72);
}

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

.booking-summary dl div {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.booking-summary dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-summary dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 1.24rem;
  font-weight: 850;
}

.booking-placeholder {
  padding: clamp(28px, 5vw, 54px);
  color: #fff;
  background: linear-gradient(135deg, #0b6f67, #152720);
  border-radius: 8px;
}

.booking-placeholder p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
}

.timetics-panel .mg-timetics-card-actionable {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(11, 111, 103, 0.1);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.timetics-panel .mg-timetics-card-actionable::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 24% 16%, rgba(223, 244, 234, 0.9), transparent 34%),
    linear-gradient(135deg, rgba(11, 111, 103, 0.08), transparent 46%);
  content: "";
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.timetics-panel .mg-timetics-card-actionable:hover,
.timetics-panel .mg-timetics-card-actionable:focus-within {
  border-color: rgba(11, 111, 103, 0.35);
  box-shadow: 0 28px 60px rgba(11, 44, 38, 0.18);
  transform: translateY(-8px);
}

.timetics-panel .mg-timetics-card-actionable:hover::before,
.timetics-panel .mg-timetics-card-actionable:focus-within::before {
  opacity: 1;
  transform: scale(1);
}

.timetics-panel .mg-timetics-card-actionable a,
.timetics-panel .mg-timetics-card-actionable button {
  position: relative;
  z-index: 2;
}

.timetics-panel a,
.timetics-panel button {
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.timetics-panel a:hover,
.timetics-panel button:hover {
  filter: brightness(1.04);
  transform: translateY(-2px);
}

.wp-page-content {
  color: var(--ink);
}

.wp-page-content > * {
  max-width: 760px;
}

.wp-page-content > .alignwide {
  max-width: 1180px;
}

.wp-page-content > .alignfull {
  max-width: none;
}

.wp-page-content a {
  color: var(--teal);
  font-weight: 750;
}

.post-list {
  display: grid;
  gap: 18px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 42px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer p {
	margin: 0;
}

.site-credit {
	margin-left: 8px;
	color: var(--teal);
	font-weight: 800;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

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

@media (max-width: 880px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    padding: 10px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(18, 45, 39, 0.14);
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav .menu-items {
    flex-direction: column;
    gap: 0;
  }

  .main-nav a {
    padding: 13px 12px;
    border-radius: 8px;
  }

  .main-nav a:hover {
    background: var(--mint);
  }

  .main-nav .current-menu-item > a,
  .main-nav .current_page_item > a {
    color: var(--teal);
    background: var(--mint);
  }

  .main-nav a::after {
    display: none;
  }

  .header-phone {
    display: none;
  }

  /* iOS zooms into form fields with text smaller than 16px. */
  .timetics-panel input:not([type="checkbox"]):not([type="radio"]),
  .timetics-panel select,
  .timetics-panel textarea,
  .ant-picker-input > input,
  .ant-select-selection-search-input,
  .tt-flatpickr-calendar input {
    font-size: 16px !important;
    touch-action: manipulation;
  }

  .hero {
    min-height: 760px;
  }

  .hero-image {
    object-position: 68% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(4, 26, 23, 0.86) 0%, rgba(4, 26, 23, 0.34) 58%, rgba(4, 26, 23, 0.08) 100%),
      linear-gradient(90deg, rgba(4, 26, 23, 0.62), rgba(4, 26, 23, 0.14));
  }

  .hero-content {
    align-self: end;
    margin-bottom: 82px;
  }

  .trust-strip,
  .section-heading,
  .service-grid,
  .price-grid,
  .process-grid,
  .page-hero,
  .service-detail-grid,
  .faq-grid,
  .booking-layout,
  .region-band,
  .contact {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: -34px;
  }

  .trust-strip div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-card {
    min-height: 220px;
  }

  .booking-summary {
    position: static;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 56px;
  }
}

@media (max-width: 560px) {
  .price-addons-card .price-detail-list {
    grid-template-columns: 1fr;
  }

  .site-header {
    top: 10px;
    min-height: 60px;
    width: min(calc(100% - 20px), 1180px);
    padding: 8px 10px;
  }

  .admin-bar .site-header {
    top: 56px;
  }

  .brand strong {
    max-width: 150px;
    font-size: 0.94rem;
  }

  .brand small {
    font-size: 0.73rem;
  }

  .brand-logo {
    width: 52px;
    height: 35px;
    flex-basis: 52px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .main-nav {
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content,
  .trust-strip,
  .section,
  .page-hero,
  .booking-layout,
  .contact,
  .site-footer {
    width: min(calc(100% - 24px), 1180px);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 10vw, 3.25rem);
    line-height: 1.02;
  }

  .page-hero h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(2.05rem, 9vw, 2.85rem);
    line-height: 1.04;
  }

  .hero-actions,
  .section-action,
  .site-footer,
  .footer-menu {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .service-card,
  .price-card,
  .process-grid article,
  .detail-card,
  .faq-grid article {
    padding: 22px;
  }

  .service-card {
    min-height: 0;
  }

  .price-card h2 {
    font-size: clamp(1.55rem, 8vw, 2.15rem);
  }

  .price span {
    font-size: clamp(1.95rem, 10vw, 2.65rem);
    letter-spacing: -0.03em;
  }

  .price-card .button {
    margin-top: 20px;
  }

  .booking-layout {
    gap: 16px;
    padding: 40px 0;
  }

  .timetics-panel,
  .booking-summary {
    padding: 20px;
  }

  .booking-summary dl {
    margin: 22px 0;
  }

  .booking-summary dd {
    font-size: 1.1rem;
  }

  .site-footer {
    align-items: flex-start;
    gap: 22px;
  }

  .site-footer nav {
    width: 100%;
  }

  .site-credit {
    display: block;
    margin: 6px 0 0;
  }

  .contact {
    padding: 34px 22px;
  }
}

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

  .brand:hover,
  .header-phone:hover,
  .button:hover,
  .service-card:hover,
  .price-card:hover,
  .process-grid article:hover,
  .detail-card:hover,
  .faq-grid article:hover,
  .contact-actions a:hover,
  .timetics-panel .mg-timetics-card-actionable:hover {
    transform: none;
  }
}
