:root {
  --ink: #132220;
  --muted: #65726f;
  --paper: #ffffff;
  --stone: #f5f1eb;
  --sage: #dfeae3;
  --mint: #eff8f4;
  --line: #d8e1dc;
  --deep: #094748;
  --deep-2: #063334;
  --accent: #eb694f;
  --accent-2: #d6533e;
  --sun: #f5c26b;
  --radius: 8px;
  --shadow: 0 22px 60px rgba(12, 34, 31, 0.16);
  --hover-shadow: 0 18px 46px rgba(12, 34, 31, 0.13), 0 5px 16px rgba(9, 71, 72, 0.12);
  --hover-glow: 0 0 38px rgba(245, 194, 107, 0.16);
  --hover-transition: 0.24s cubic-bezier(0.4, 0, 0.2, 1);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

body,
button,
input,
select,
textarea {
  letter-spacing: 0;
}

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

.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;
}

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

button,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.utility-bar {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 8px 20px;
  color: var(--muted);
  font-size: 0.88rem;
  border-bottom: 1px solid var(--line);
}

.utility-bar a {
  color: var(--deep);
  font-weight: 850;
}

.nav-bar {
  display: flex;
  align-items: center;
  gap: 26px;
  width: min(100% - 48px, 1180px);
  min-height: 76px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
}

.brand-symbol {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: var(--deep);
}

.brand-symbol span {
  width: 25px;
  height: 15px;
  border: 5px solid #fff;
  border-top: 0;
  border-left-color: var(--sun);
  border-radius: 0 0 30px 30px;
  transform: rotate(-14deg);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.16rem;
}

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

.site-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.site-menu a:hover {
  color: var(--deep);
}

.service-menu {
  position: relative;
}

.service-menu summary {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  list-style: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.service-menu summary::-webkit-details-marker {
  display: none;
}

.service-menu summary::after {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.service-menu[open] summary,
.service-menu summary:hover {
  color: var(--deep);
}

.service-menu[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.service-menu-panel {
  position: absolute;
  top: calc(100% + 18px);
  left: -14px;
  display: grid;
  gap: 3px;
  min-width: 230px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  z-index: 40;
}

.service-menu:not([open]) .service-menu-panel {
  display: none;
}

.site-menu .service-menu-panel a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--muted);
  white-space: nowrap;
}

.site-menu .service-menu-panel a:hover {
  color: var(--deep);
  background: var(--mint);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--deep);
  background: #fff;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
}

.nav-cta,
.button.primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 14px 28px rgba(235, 105, 79, 0.24);
}

.nav-cta:hover,
.button.primary:hover {
  background: var(--accent-2);
}

.button.neutral {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.12);
}

.button.outline {
  color: var(--deep);
  border-color: var(--deep);
  background: #fff;
}

.hero {
  position: relative;
  display: grid;
  min-height: 700px;
  align-items: start;
  overflow: hidden;
  color: #fff;
  background: var(--deep-2);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 30, 30, 0.92), rgba(5, 30, 30, 0.7) 44%, rgba(5, 30, 30, 0.18)),
    linear-gradient(0deg, rgba(5, 30, 30, 0.7), rgba(5, 30, 30, 0) 40%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  padding: 92px 0 190px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sun);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
}

h1 {
  font-size: 5rem;
}

.hero-content h1 {
  max-width: 930px;
  font-size: clamp(3rem, 5.25vw, 4.65rem);
}

h2 {
  font-size: 2.45rem;
}

h3 {
  font-size: 1.22rem;
}

.hero-content p:not(.eyebrow) {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
  line-height: 1.65;
}

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

.agenda-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.8fr 1.35fr;
  gap: 20px;
  width: min(100% - 48px, 1180px);
  margin: -70px auto 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.agenda-intro h2 {
  font-size: 1.7rem;
}

.agenda-form {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 12px;
  align-items: end;
  scroll-margin-top: 118px;
}

.agenda-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 950;
}

.agenda-form select {
  min-height: 48px;
  width: 100%;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--mint);
}

.agenda-result {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(9, 71, 72, 0.18);
  border-radius: var(--radius);
  background: #f7fffb;
}

.agenda-result div {
  flex: 1;
}

.agenda-result strong,
.agenda-result span {
  display: block;
}

.agenda-result span {
  margin-top: 3px;
  color: var(--muted);
}

.agenda-result a {
  color: var(--deep);
  font-weight: 950;
  white-space: nowrap;
}

.signal {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #23b38d;
}

.appointment-page {
  background:
    linear-gradient(180deg, rgba(236, 244, 239, 0.9), rgba(255, 255, 255, 0.98) 42%),
    var(--paper);
}

.appointment-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: min(100% - 48px, 1120px);
  margin: 0 auto;
  padding: 24px 0 96px;
  align-items: start;
}

.appointment-copy {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding-top: 0;
  text-align: center;
}

.appointment-copy h1 {
  max-width: 980px;
  font-size: clamp(1.85rem, 2.6vw, 2.35rem);
}

.appointment-copy p:not(.eyebrow) {
  max-width: 920px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.appointment-contact {
  display: none;
  gap: 12px;
  max-width: 430px;
}

.appointment-contact a {
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--deep);
  background: #fff;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.appointment-contact a:hover {
  border-color: rgba(9, 71, 72, 0.32);
  box-shadow: 0 18px 42px rgba(9, 71, 72, 0.11);
  transform: translateY(-2px);
}

.appointment-contact span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.appointment-contact strong {
  font-size: 1.08rem;
}

.appointment-card {
  width: 100%;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(9, 71, 72, 0.18);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.appointment-card-heading {
  margin-bottom: 18px;
}

.appointment-card-heading h2 {
  font-size: 1.65rem;
}

.appointment-form,
.appointment-form label {
  display: grid;
}

.appointment-form {
  gap: 18px;
}

.appointment-form label {
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 950;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--mint);
  outline: none;
}

.appointment-form textarea {
  min-height: 132px;
  padding: 14px;
  line-height: 1.55;
  resize: vertical;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  border-color: rgba(9, 71, 72, 0.5);
  box-shadow: 0 0 0 4px rgba(40, 183, 141, 0.13);
}

.booking-scheduler {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(9, 71, 72, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(239, 248, 244, 0.86), rgba(255, 255, 255, 0.98));
}

.booking-scheduler-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.booking-scheduler-heading h3 {
  margin: 3px 0 0;
  color: var(--ink);
  font-size: 1.2rem;
}

.booking-scheduler-heading .button {
  min-height: 38px;
  padding: 9px 12px;
  font-size: 0.86rem;
}

.booking-day-carousel {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 8px;
  align-items: stretch;
}

.booking-day-nav {
  display: grid;
  min-width: 42px;
  min-height: 76px;
  place-items: center;
  border: 1px solid #cfdcd6;
  border-radius: var(--radius);
  color: var(--deep);
  background: #fff;
  font-size: 1.4rem;
  font-weight: 950;
  line-height: 1;
  cursor: pointer;
}

.booking-day-nav:hover {
  border-color: var(--deep);
  box-shadow: 0 10px 24px rgba(12, 34, 31, 0.09);
}

.booking-day-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

.booking-days {
  display: grid;
  grid-auto-columns: minmax(118px, 136px);
  grid-auto-flow: column;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.booking-days::-webkit-scrollbar {
  display: none;
}

.booking-day,
.booking-time {
  border: 1px solid #cfdcd6;
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.booking-day {
  display: grid;
  gap: 4px;
  min-height: 76px;
  padding: 11px;
  scroll-snap-align: start;
}

.booking-day:hover,
.booking-day.is-selected,
.booking-time:hover,
.booking-time.is-selected {
  border-color: var(--deep);
  box-shadow: 0 10px 24px rgba(12, 34, 31, 0.09);
}

.booking-day.is-selected,
.booking-time.is-selected {
  background: var(--deep);
  color: #fff;
}

.booking-day span,
.booking-time span,
.booking-time small {
  color: var(--muted);
  line-height: 1.25;
}

.booking-day.is-selected span,
.booking-time.is-selected span,
.booking-time.is-selected small {
  color: rgba(255, 255, 255, 0.82);
}

.booking-day span {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-day strong {
  font-size: 1.04rem;
}

.booking-times {
  display: grid;
  gap: 14px;
}

.booking-time-group {
  display: grid;
  gap: 8px;
}

.booking-time-group h4 {
  margin: 0;
  color: var(--deep);
  font-size: 0.92rem;
}

.booking-time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(138px, 1fr));
  gap: 7px;
}

.booking-time {
  display: grid;
  gap: 3px;
  min-height: 68px;
  padding: 10px 12px;
}

.booking-time strong {
  font-size: 1rem;
}

.booking-time span,
.booking-time small {
  font-size: 0.78rem;
}

.booking-summary,
.booking-empty {
  padding: 13px 14px;
  border: 1px dashed rgba(9, 71, 72, 0.24);
  border-radius: var(--radius);
  color: var(--muted);
  background: #fff;
  font-size: 0.92rem;
  font-weight: 820;
  line-height: 1.45;
}

.booking-summary.is-ready {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-style: solid;
  border-color: rgba(67, 196, 154, 0.46);
  color: var(--deep);
  background: rgba(239, 248, 244, 0.92);
}

.booking-summary.is-ready span {
  min-width: 0;
}

.booking-change-slot {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(9, 71, 72, 0.22);
  border-radius: 8px;
  color: var(--deep);
  background: #fff;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 950;
  cursor: pointer;
}

.booking-change-slot:hover {
  border-color: var(--deep);
  box-shadow: 0 8px 18px rgba(12, 34, 31, 0.08);
}

.booking-scheduler.is-slot-selected .booking-times {
  display: none;
}

.booking-completion {
  display: grid;
  gap: 14px;
  justify-self: center;
  width: min(100%, 720px);
  padding: 16px;
  border: 1px solid rgba(9, 71, 72, 0.16);
  border-radius: var(--radius);
  background: rgba(239, 248, 244, 0.7);
}

.booking-completion[hidden] {
  display: none;
}

.booking-completion-heading {
  display: grid;
  gap: 4px;
}

.booking-completion-heading .eyebrow {
  margin-bottom: 3px;
}

.booking-completion-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.28rem, 2vw, 1.8rem);
  line-height: 1.1;
}

.booking-completion-grid {
  display: grid;
  grid-template-columns: minmax(0, 680px);
  gap: 14px;
  align-items: stretch;
}

.booking-client-access {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 16px;
  border: 1px solid rgba(9, 71, 72, 0.16);
  border-radius: var(--radius);
  background: #fff;
}

.booking-client-access[hidden] {
  display: none;
}

.booking-client-access-heading {
  display: grid;
  gap: 5px;
}

.booking-client-access-heading strong {
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.25;
}

.booking-client-login {
  display: grid;
  gap: 11px;
}

.booking-client-login[hidden],
.booking-submit[hidden] {
  display: none;
}

.login-field {
  display: grid;
  gap: 7px;
}

.login-field label {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 950;
}

.login-field input {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mint);
  color: var(--ink);
  font: inherit;
  font-weight: 820;
}

.login-field input:focus {
  outline: none;
  border-color: rgba(9, 71, 72, 0.5);
  box-shadow: 0 0 0 4px rgba(40, 183, 141, 0.13);
}

.client-password-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.login-text-action {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--deep);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: underline;
  cursor: pointer;
}

.login-text-action:hover {
  color: var(--accent-2);
}

.login-password-control {
  position: relative;
}

.login-password-control input {
  padding-right: 92px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  min-height: 36px;
  padding: 0 11px;
  transform: translateY(-50%);
  border: 1px solid rgba(9, 71, 72, 0.18);
  border-radius: 7px;
  background: #fff;
  color: var(--deep);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.booking-client-message {
  min-height: 0;
  margin-top: 0;
}

.booking-client-message a {
  color: var(--deep);
  text-decoration: underline;
}

.booking-client-session {
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  border: 1px solid rgba(67, 196, 154, 0.42);
  border-radius: var(--radius);
  background: rgba(239, 248, 244, 0.92);
}

.booking-client-session[hidden] {
  display: none;
}

.booking-client-session strong {
  color: var(--deep);
}

.booking-client-session span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.client-access-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.client-access-panel[hidden] {
  display: none;
}

.client-access-panel div {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.booking-submit {
  justify-self: start;
  width: min(100%, 320px);
}

.client-access-panel .eyebrow {
  margin: 0;
}

.client-access-panel strong {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.2;
}

.client-access-panel span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 720;
  line-height: 1.45;
}

.client-access-panel .button {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 10px 16px;
  border-color: rgba(9, 71, 72, 0.22);
  color: var(--deep);
  background: #fff;
  box-shadow: none;
}

.client-access-panel .button:hover {
  border-color: var(--deep);
  color: var(--deep);
  background: rgba(239, 248, 244, 0.9);
}

.form-grid {
  display: grid;
  gap: 14px;
}

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

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

.booking-preferences {
  align-items: end;
}

.form-check {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.55;
}

.form-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.form-check a {
  color: var(--deep);
  font-weight: 950;
}

.appointment-message {
  min-height: 24px;
  margin-top: 18px;
  color: var(--deep);
  font-weight: 850;
  line-height: 1.5;
}

.appointment-message.is-error {
  color: #b42318;
}

.route-card,
.method-steps div,
.team-credential,
.review-card,
.tariff-card,
.app-list div,
.faq-list details,
.service-block,
.service-list div,
.service-related a,
.contact-details a {
  position: relative;
  overflow: hidden;
  transition:
    transform var(--hover-transition),
    box-shadow var(--hover-transition),
    border-color var(--hover-transition),
    background var(--hover-transition),
    color var(--hover-transition);
}

.route-card::before,
.method-steps div::before,
.team-credential::before,
.review-card::before,
.tariff-card::before,
.app-list div::before,
.faq-list details::before,
.service-block::before,
.service-list div::before,
.service-related a::before,
.contact-details a::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.5) 44%, transparent 68%);
  opacity: 0;
  transform: translateX(-120%);
  transition:
    opacity var(--hover-transition),
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.route-card:hover,
.method-steps div:hover,
.team-credential:hover,
.review-card:hover,
.tariff-card:hover,
.faq-list details:hover,
.service-block:hover,
.service-list div:hover,
.service-related a:hover,
.contact-details a:hover {
  transform: translateY(-4px);
  border-color: rgba(9, 71, 72, 0.34);
  box-shadow: var(--hover-shadow), var(--hover-glow);
}

.route-card:hover::before,
.method-steps div:hover::before,
.team-credential:hover::before,
.review-card:hover::before,
.tariff-card:hover::before,
.app-list div:hover::before,
.faq-list details:hover::before,
.service-block:hover::before,
.service-list div:hover::before,
.service-related a:hover::before,
.contact-details a:hover::before {
  opacity: 1;
  transform: translateX(120%);
}

.section {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  padding: 96px 0;
}

section[id] {
  scroll-margin-top: 20px;
}

.section-heading {
  max-width: 750px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.route-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 42px rgba(9, 71, 72, 0.06);
}

.route-card-large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 22px;
}

.route-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.route-card:hover img {
  transform: scale(1.025);
}

.route-card div {
  display: flex;
  min-height: 250px;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.route-card span {
  color: var(--deep);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.route-card h3 {
  margin-top: 12px;
  font-size: 1.15rem;
  line-height: 1.08;
}

.route-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.58;
}

.route-card a {
  margin-top: auto;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 950;
}

.faq-list details {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.faq-list p {
  color: var(--muted);
  line-height: 1.62;
}

.faq-section {
  max-width: 980px;
}

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

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 950;
}

.faq-list p {
  margin: 14px 0 0;
}

.service-faq-list details {
  padding: 16px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.service-faq-list details::before {
  display: none;
}

.service-faq-list details:hover {
  transform: none;
  border-color: var(--line);
  box-shadow: none;
}

.method-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 56px;
  align-items: center;
}

.method-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.07rem;
  line-height: 1.72;
}

.method-steps {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.method-steps div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 6px 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mint);
}

.method-steps span {
  grid-row: span 2;
  color: var(--accent-2);
  font-weight: 950;
}

.method-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.visual-stack {
  position: relative;
}

.visual-stack img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
}

.visual-stack div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 18px;
  border-radius: var(--radius);
  color: #fff;
  background: rgba(6, 51, 52, 0.9);
}

.visual-stack strong,
.visual-stack span {
  display: block;
}

.visual-stack span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.tariffs-section {
  width: 100%;
  max-width: none;
  padding-inline: max(24px, calc((100% - 1180px) / 2));
  background: var(--stone);
}

.team-section {
  width: min(100% - 48px, 1180px);
  padding-top: 136px;
}

.team-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 36px;
  align-items: end;
}

.team-copy {
  max-width: 680px;
}

.team-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.team-credentials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.team-credential {
  min-height: 178px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.team-icon,
.team-assurance-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(9, 71, 72, 0.14);
  border-radius: 999px;
  color: var(--deep);
  background: var(--mint);
}

.team-icon svg,
.team-assurance-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.team-credential h3 {
  margin: 16px 0 0;
  font-size: 1rem;
  line-height: 1.18;
}

.team-credential p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.48;
}

.team-photo {
  margin: 0;
}

.team-photo img {
  display: block;
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(9, 71, 72, 0.16);
}

.team-assurance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid rgba(9, 71, 72, 0.08);
  border-radius: var(--radius);
  background: rgba(9, 71, 72, 0.08);
}

.team-assurance div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 14px;
  align-items: start;
  padding: 18px;
  background: rgba(246, 251, 249, 0.95);
}

.team-assurance-icon {
  width: 34px;
  height: 34px;
  grid-row: span 2;
  background: #fff;
}

.team-assurance-icon svg {
  width: 19px;
  height: 19px;
}

.team-assurance strong {
  font-size: 0.88rem;
  line-height: 1.2;
}

.team-assurance p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.reviews-section {
  overflow: hidden;
}

.reviews-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 36px;
  align-items: end;
  margin-bottom: 28px;
}

.reviews-header p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.rating-panel {
  display: grid;
  gap: 8px;
  justify-items: start;
  padding: 22px;
  border: 1px solid rgba(9, 71, 72, 0.12);
  border-radius: var(--radius);
  background: var(--mint);
}

.rating-score {
  color: var(--deep);
  font-size: 4rem;
  font-weight: 950;
  line-height: 0.9;
}

.rating-stars,
.review-stars {
  color: var(--sun);
  font-size: 1rem;
}

.rating-panel strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.rating-panel a {
  color: var(--accent);
  font-weight: 950;
}

.review-carousel {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  gap: 12px;
  align-items: center;
}

.review-track {
  display: grid;
  grid-auto-columns: minmax(300px, 1fr);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 2px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.review-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  scroll-snap-align: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.review-card p {
  margin: 18px 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.55;
}

.review-card strong {
  display: block;
  margin-top: auto;
}

.review-card span:last-child {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.review-control {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--deep);
  background: #fff;
  box-shadow: 0 16px 34px rgba(9, 71, 72, 0.08);
  cursor: pointer;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  transition:
    transform var(--hover-transition),
    border-color var(--hover-transition),
    box-shadow var(--hover-transition),
    color var(--hover-transition);
}

.review-control:hover {
  transform: translateY(-2px);
  border-color: rgba(9, 71, 72, 0.34);
  color: var(--accent);
  box-shadow: var(--hover-shadow);
}

.tariff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tariff-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.tariff-card.highlighted {
  color: #fff;
  background: var(--deep);
  border-color: var(--deep);
}

.tariff-card.highlighted:hover {
  border-color: rgba(245, 194, 107, 0.46);
  box-shadow: 0 18px 46px rgba(6, 51, 52, 0.24), 0 0 42px rgba(245, 194, 107, 0.18);
}

.tariff-card span {
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.tariff-card strong {
  display: block;
  margin-top: 18px;
  font-size: 2rem;
}

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

.tariff-card.highlighted p {
  color: rgba(255, 255, 255, 0.78);
}

.tariff-card a {
  margin-top: auto;
  color: var(--accent-2);
  font-weight: 950;
}

.tariff-card.highlighted a {
  color: var(--sun);
}

.app-section {
  width: 100%;
  max-width: none;
  padding-inline: max(24px, calc((100% - 1180px) / 2));
  background: var(--deep-2);
}

.app-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  color: #fff;
}

.app-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.app-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.app-list div {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.app-list div:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 194, 107, 0.42);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22), 0 0 34px rgba(245, 194, 107, 0.1);
}

.app-list strong,
.app-list span {
  display: block;
}

.app-list span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.app-card-cta {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 12px 14px;
  border: 1px solid rgba(245, 194, 107, 0.44);
  border-radius: 8px;
  color: #fff;
  background: rgba(245, 194, 107, 0.12);
  font-weight: 950;
}

.app-card-cta:hover {
  border-color: var(--sun);
  color: var(--deep);
  background: var(--sun);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 42px;
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  padding: 96px 0;
}

.contact-copy {
  align-self: center;
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-details a {
  display: inline-grid;
  gap: 5px;
  width: fit-content;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--deep);
  font-weight: 900;
}

.contact-details span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-details strong {
  font-size: 1.14rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.map-wrap {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mint);
}

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

.mobile-actions {
  display: none;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 45;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.34), transparent 36%),
    linear-gradient(135deg, #24d366 0%, #12a955 100%);
  box-shadow:
    0 18px 38px rgba(18, 169, 85, 0.28),
    0 5px 18px rgba(6, 51, 52, 0.18);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0;
  transition:
    transform var(--hover-transition),
    box-shadow var(--hover-transition),
    filter var(--hover-transition);
}

.whatsapp-icon {
  display: grid;
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 2px 4px rgba(6, 51, 52, 0.16));
}

.whatsapp-float:hover {
  box-shadow:
    0 22px 48px rgba(18, 169, 85, 0.36),
    0 8px 22px rgba(6, 51, 52, 0.22);
  filter: saturate(1.08);
  transform: translateY(-4px) scale(1.04);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(245, 194, 107, 0.72);
  outline-offset: 4px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px max(24px, calc((100% - 1180px) / 2));
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer a {
  color: var(--deep);
  font-weight: 850;
}

.breadcrumb {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 850;
}

.service-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--deep-2);
}

.service-hero img,
.service-hero::after {
  position: absolute;
  inset: 0;
}

.service-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 30, 30, 0.94), rgba(5, 30, 30, 0.74) 46%, rgba(5, 30, 30, 0.2)),
    linear-gradient(0deg, rgba(5, 30, 30, 0.72), rgba(5, 30, 30, 0) 42%);
}

.service-hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  padding: 96px 0 118px;
}

.service-hero h1 {
  max-width: 880px;
  font-size: 4.2rem;
}

.service-hero p:not(.eyebrow) {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  line-height: 1.68;
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(100% - 48px, 1180px);
  margin: -34px auto 0;
  padding: 12px;
  position: relative;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.service-tabs a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 10px 13px;
  border-radius: var(--radius);
  color: var(--deep);
  background: var(--mint);
  font-weight: 900;
}

.service-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 42px;
}

.service-main {
  display: grid;
  gap: 34px;
}

.service-block {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.service-block h2 {
  font-size: 2rem;
}

.service-block p {
  color: var(--muted);
  line-height: 1.7;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.service-list div,
.service-aside,
.service-related a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mint);
}

.service-list div {
  padding: 18px;
}

.service-list strong,
.service-list span {
  display: block;
}

.service-list span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.5;
}

.service-aside {
  position: sticky;
  top: 112px;
  align-self: start;
  padding: 24px;
  background: var(--deep);
  color: #fff;
}

.service-aside p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.62;
}

.service-aside .button {
  width: 100%;
  margin-top: 16px;
}

.service-related {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.service-related a {
  padding: 13px 14px;
  color: var(--deep);
  background: #fff;
  font-weight: 900;
}

.service-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 42px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--deep-2);
}

.service-cta p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.service-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

@media (prefers-reduced-motion: reduce) {
  .route-card,
  .method-steps div,
  .team-credential,
  .review-card,
  .review-control,
  .tariff-card,
  .app-list div,
  .faq-list details,
  .service-block,
  .service-list div,
  .service-related a,
  .contact-details a,
  .whatsapp-float,
  .route-card img,
  .team-photo img,
  .review-track {
    transition: none;
    scroll-behavior: auto;
  }

  .route-card::before,
  .method-steps div::before,
  .team-credential::before,
  .review-card::before,
  .tariff-card::before,
  .app-list div::before,
  .faq-list details::before,
  .service-block::before,
  .service-list div::before,
  .service-related a::before,
  .contact-details a::before {
    display: none;
  }

  .route-card:hover,
  .method-steps div:hover,
  .team-credential:hover,
  .review-card:hover,
  .review-control:hover,
  .tariff-card:hover,
  .app-list div:hover,
  .faq-list details:hover,
  .service-block:hover,
  .service-list div:hover,
  .service-related a:hover,
  .contact-details a:hover,
  .whatsapp-float:hover,
  .route-card:hover img,
  .team-photo:hover img {
    transform: none;
  }
}

@media (max-width: 1020px) {
  .utility-bar {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 18px;
  }

  .nav-bar {
    width: min(100% - 32px, 1180px);
  }

  .brand {
    min-width: auto;
  }

  .menu-toggle {
    display: grid;
  }

  .site-menu {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-menu.is-open {
    display: flex;
  }

  .site-menu a {
    padding: 13px 12px;
  }

  .service-menu {
    width: 100%;
  }

  .service-menu summary {
    justify-content: space-between;
    padding: 13px 12px;
  }

  .service-menu-panel {
    position: static;
    min-width: 0;
    padding: 0 0 8px 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-menu .service-menu-panel a {
    padding: 11px 12px;
    white-space: normal;
  }

  .nav-cta {
    display: none;
  }

  .agenda-panel,
  .appointment-shell,
  .method-section,
  .team-showcase,
  .app-panel,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .appointment-copy {
    position: static;
  }

  .appointment-shell {
    padding: 64px 0 84px;
  }

  .service-page-grid,
  .service-cta {
    grid-template-columns: 1fr;
  }

  .service-aside {
    position: static;
  }

  .agenda-result {
    grid-column: auto;
  }

  .route-grid,
  .tariff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-header {
    grid-template-columns: 1fr;
  }

  .rating-panel {
    max-width: 360px;
  }

  .team-photo img {
    min-height: 420px;
  }

  .team-assurance {
    grid-template-columns: repeat(2, 1fr);
  }

  .route-card-large {
    grid-column: span 2;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 74px;
  }

  .utility-bar {
    padding: 8px 16px;
    font-size: 0.83rem;
  }

  .utility-bar span {
    width: 100%;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 640px;
  }

  .service-hero {
    min-height: 560px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(5, 30, 30, 0.9), rgba(5, 30, 30, 0.34)),
      linear-gradient(90deg, rgba(5, 30, 30, 0.84), rgba(5, 30, 30, 0.36));
  }

  .hero-content {
    width: min(100% - 32px, 1180px);
    padding: 64px 0 128px;
  }

  h1 {
    font-size: 3.1rem;
  }

  .service-hero h1 {
    font-size: 2.85rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-content p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-content h1 {
    font-size: 2.35rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button,
  .hero-actions a,
  .contact-actions a {
    width: 100%;
  }

  .agenda-panel {
    width: min(100% - 32px, 1180px);
    margin-top: -62px;
    padding: 18px;
  }

  .appointment-shell {
    width: min(100% - 32px, 1180px);
  }

  .appointment-card {
    padding: 22px;
  }

  .booking-scheduler-heading {
    display: grid;
  }

  .booking-day-carousel {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
  }

  .booking-day-nav {
    min-width: 38px;
    min-height: 72px;
  }

  .booking-days {
    grid-auto-columns: minmax(110px, 124px);
  }

  .booking-time-grid {
    grid-template-columns: 1fr;
  }

  .booking-summary.is-ready {
    align-items: stretch;
    flex-direction: column;
  }

  .booking-change-slot {
    width: 100%;
  }

  .booking-completion {
    padding: 14px;
  }

  .booking-completion-heading {
    display: grid;
    gap: 4px;
  }

  .booking-completion-grid {
    grid-template-columns: 1fr;
  }

  .booking-submit {
    width: 100%;
  }

  .client-password-row,
  .client-access-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .client-access-panel .button {
    width: 100%;
  }

  .service-tabs {
    width: min(100% - 32px, 1180px);
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .service-tabs a {
    white-space: nowrap;
  }

  .agenda-form,
  .form-grid.two,
  .form-grid.three,
  .route-grid,
  .team-credentials,
  .team-assurance,
  .tariff-grid,
  .app-list {
    grid-template-columns: 1fr;
  }

  .review-carousel {
    grid-template-columns: 1fr 1fr;
  }

  .review-track {
    grid-column: 1 / -1;
    grid-row: 1;
    grid-auto-columns: minmax(268px, 86%);
  }

  .review-control {
    grid-row: 2;
    justify-self: start;
  }

  .review-control:last-child {
    justify-self: end;
  }

  .rating-panel {
    max-width: none;
  }

  .agenda-result {
    align-items: flex-start;
    flex-direction: column;
  }

  .agenda-result a {
    white-space: normal;
  }

  .section,
  .tariffs-section,
  .app-section {
    width: 100%;
    padding: 74px 16px;
  }

  .route-card-large {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .route-card,
  .team-credential,
  .tariff-card {
    min-height: auto;
  }

  .team-showcase {
    gap: 24px;
  }

  .team-photo img {
    min-height: 300px;
  }

  .team-assurance div {
    grid-template-columns: 38px 1fr;
  }

  .route-card div {
    min-height: auto;
  }

  .route-card img {
    min-height: 250px;
  }

  .method-steps div {
    grid-template-columns: 1fr;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .service-block,
  .service-cta {
    padding: 22px;
  }

  .service-cta-actions {
    justify-content: stretch;
  }

  .method-steps span {
    grid-row: auto;
  }

  .visual-stack img {
    min-height: 360px;
  }

  .contact-section {
    width: min(100% - 32px, 1180px);
    padding: 74px 0;
  }

  .site-footer {
    flex-direction: column;
    padding: 24px 16px;
  }

  .mobile-actions {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
  }

  .mobile-actions a {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-weight: 950;
  }

  .mobile-actions a:first-child {
    color: var(--deep);
    border: 1px solid var(--deep);
  }

  .mobile-actions a:last-child {
    color: #fff;
    background: var(--accent);
  }

  .whatsapp-float {
    right: 16px;
    bottom: 94px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-icon {
    width: 31px;
    height: 31px;
  }
}
