:root {
  color-scheme: dark;
  --bg: #09090a;
  --panel: #141416;
  --panel-2: #1c1d20;
  --line: #2c2d31;
  --text: #f4f1ee;
  --muted: #b8b8b8;
  --soft: #d9d2cc;
  --teal: #267d77;
  --teal-light: #35a099;
  --bordeaux: #7e274a;
  --bordeaux-light: #a03662;
  --shadow: 0 24px 70px rgba(0, 0, 0, .42);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Montserrat", "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
}

body.nav-open {
  overflow: hidden;
}

body.time-sheet-open {
  overflow: hidden;
}

body.nav-open::before {
  content: "";
  position: fixed;
  inset: 70px 0 0;
  z-index: 45;
  background: #09090a;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  border: 1px solid var(--teal);
  background: var(--bg);
  color: var(--text);
  padding: 10px 14px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: rgba(9, 9, 10, .78);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(100% - 32px, 1360px);
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .08);
}

.brand-wordmark {
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  color: rgba(244, 241, 238, .86);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 26px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 21px;
  height: 2px;
  background: var(--teal);
  transition: right .2s ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-link,
.menu-button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: var(--text);
  background: rgba(255, 255, 255, .03);
  cursor: pointer;
}

.menu-button {
  display: none;
}

.icon-link:hover,
.menu-button:hover {
  border-color: var(--teal);
  color: var(--teal-light);
}

.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-short {
  min-height: 64svh;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 9, 10, .92) 0%, rgba(9, 9, 10, .62) 43%, rgba(9, 9, 10, .28) 100%),
    var(--hero-image) var(--hero-position, center) / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  z-index: -1;
  background: linear-gradient(0deg, var(--bg), rgba(9, 9, 10, 0));
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: var(--slide-image) center / cover no-repeat;
  transition: opacity .8s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 9, 10, .94) 0%, rgba(9, 9, 10, .66) 43%, rgba(9, 9, 10, .22) 100%),
    linear-gradient(0deg, rgba(9, 9, 10, .94) 0%, rgba(9, 9, 10, .12) 45%);
}

.hero-content {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  min-height: inherit;
  display: grid;
  align-items: end;
  padding: 132px 0 96px;
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-light);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: currentColor;
}

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

h1 {
  margin-top: 18px;
  font-size: clamp(40px, 7vw, 84px);
  max-width: 900px;
}

.hero p {
  max-width: 710px;
  margin: 22px 0 0;
  color: var(--soft);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.badge {
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--soft);
  background: rgba(255, 255, 255, .04);
  font-size: 13px;
  font-weight: 700;
}

.visa-quick-countries {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  max-width: 780px;
}

.visa-country-chip {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items: center;
  min-width: 172px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--text);
  background: rgba(9, 9, 10, .38);
  backdrop-filter: blur(10px);
}

.visa-country-chip span {
  grid-row: 1 / 3;
  font-size: 21px;
  line-height: 1;
}

.visa-country-chip strong {
  font-size: 13px;
  line-height: 1.15;
}

.visa-country-chip small {
  color: var(--soft);
  font-size: 11px;
  line-height: 1.25;
}

.visa-country-chip:hover {
  border-color: var(--teal);
  background: rgba(38, 125, 119, .18);
}

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

.button {
  border: 1px solid var(--teal);
  border-radius: 4px;
  background: var(--teal);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 13px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--teal-light);
  border-color: var(--teal-light);
}

.button.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, .34);
  color: var(--text);
}

.button.secondary:hover {
  border-color: var(--bordeaux-light);
  color: #fff;
  background: var(--bordeaux);
}

.vertical-social,
.hero-tabs {
  position: absolute;
  z-index: 4;
}

.vertical-social {
  left: 24px;
  top: 50%;
  display: flex;
  gap: 22px;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left top;
  color: rgba(244, 241, 238, .58);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-tabs {
  right: 32px;
  bottom: 32px;
  display: grid;
  gap: 10px;
}

.hero-tab {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  background: rgba(9, 9, 10, .45);
  color: var(--text);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.hero-tab.active {
  border-color: var(--teal);
  color: var(--teal-light);
}

.section {
  padding: 92px 0;
}

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

.section.tight {
  padding: 64px 0;
}

.section.band {
  background: var(--panel);
  border-block: 1px solid rgba(255, 255, 255, .07);
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.section-head h2 {
  font-size: clamp(31px, 4.7vw, 58px);
  max-width: 760px;
}

.section-head h2 span,
.accent {
  color: var(--teal-light);
}

.section-head p,
.lead {
  color: var(--muted);
  max-width: 620px;
  margin: 0;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

.service-card,
.price-card,
.info-card,
.faq-item,
.step,
.contact-panel,
.calendar-panel {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
}

.service-card {
  overflow: hidden;
  min-height: 100%;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(.92);
}

.service-overview .service-card {
  display: flex;
  flex-direction: column;
}

.service-overview .service-card img {
  height: clamp(360px, 34vw, 620px);
  aspect-ratio: auto;
}

.service-overview .service-card:nth-child(1) img {
  object-position: center 42%;
}

.service-overview .service-card:nth-child(2) img {
  object-position: center 42%;
}

.service-overview .service-card .card-body {
  flex: 1;
}

.service-card .card-body {
  padding: 24px;
}

.service-card h3,
.price-card h3,
.info-card h3,
.faq-item h3 {
  font-size: 22px;
}

.service-card p,
.price-card p,
.info-card p,
.faq-item p,
.step p {
  color: var(--muted);
  margin: 12px 0 0;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal-light);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.media-frame {
  position: relative;
}

.media-frame img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.media-frame.pass-sheet {
  display: grid;
  place-items: center;
}

.media-frame.visa-sheet {
  display: grid;
  place-items: center;
}

.media-frame.pass-sheet img {
  width: min(100%, 430px);
  max-height: 680px;
  aspect-ratio: 834 / 1200;
  object-fit: contain;
  background: #f7f7f5;
  border-radius: 4px;
}

.media-frame.visa-sheet img {
  width: min(100%, 420px);
  max-height: 620px;
  aspect-ratio: 1347 / 1800;
  object-fit: contain;
  background: #f7f7f5;
  border-radius: 4px;
}

.media-frame.tall img {
  aspect-ratio: 4 / 5;
}

.kicker-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.kicker-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  color: var(--soft);
}

.kicker-list li::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--bordeaux);
  box-shadow: 0 0 0 6px rgba(126, 39, 74, .16);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  font-size: 28px;
  color: var(--teal-light);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.steps {
  counter-reset: steps;
}

.step {
  padding: 26px;
  counter-increment: steps;
}

.step::before {
  content: counter(steps, decimal-leading-zero);
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(38, 125, 119, .16);
  color: var(--teal-light);
  font-weight: 900;
}

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

.price {
  margin: 16px 0 14px;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
}

.price small {
  font-size: 15px;
  color: var(--muted);
  font-weight: 700;
}

.price-card.featured {
  border-color: rgba(38, 125, 119, .62);
  box-shadow: inset 0 3px 0 var(--teal);
}

.price-card ul,
.legal-content ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--soft);
}

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

.country-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  background: var(--bg);
}

.country-head {
  display: flex;
  align-items: start;
  gap: 14px;
  margin-bottom: 18px;
}

.country-head span {
  flex: 0 0 auto;
  min-width: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(38, 125, 119, .6);
  border-radius: 4px;
  padding: 6px 8px;
  color: var(--teal-light);
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  white-space: nowrap;
}

.country-head h3 {
  font-size: 22px;
}

.spec-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.spec-list div {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.spec-list dt {
  color: var(--soft);
  font-weight: 800;
}

.spec-list dd {
  margin: 0;
  color: var(--muted);
}

.country-card p {
  color: var(--muted);
  margin: 18px 0 0;
}

.source-card {
  padding: 30px;
}

.accordion {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 24px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--text);
}

.faq-item p {
  margin-top: 14px;
}

.location {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 32px;
  align-items: stretch;
}

.contact-panel,
.calendar-panel {
  padding: 30px;
}

.contact-lines {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.contact-line {
  display: grid;
  gap: 2px;
  color: var(--muted);
}

.contact-line strong {
  color: var(--text);
}

.map {
  min-height: 420px;
  border: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

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

.booking-success-overlay {
  position: absolute;
  inset: -8px;
  z-index: 6;
  display: grid;
  place-items: center;
  padding: 24px;
  border: 1px solid rgba(38, 125, 119, .46);
  border-radius: 8px;
  background: rgba(11, 11, 12, .94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .46);
  opacity: 0;
  pointer-events: none;
  transform: scale(.985);
  transition: opacity .22s ease, transform .22s ease;
}

.booking-success-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.booking-success-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 520px;
  text-align: center;
}

.booking-success-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(38, 125, 119, .24);
  color: #b7f0d0;
  font-size: 32px;
  font-weight: 900;
}

.booking-success-card strong {
  color: var(--text);
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1;
}

.booking-success-card p {
  max-width: 420px;
  margin: 0;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.45;
}

.booking-success-card small {
  color: #91d6b4;
  font-size: 14px;
  font-weight: 800;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 4px;
  background: rgba(255, 255, 255, .03);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--teal);
}

input.is-guided-focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(38, 125, 119, .22);
}

.notice {
  color: var(--muted);
  font-size: 13px;
  margin-top: 12px;
}

.honeypot {
  display: none;
}

.form-status {
  min-height: 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.form-status.success {
  color: #91d6b4;
}

.form-status.error {
  color: #ffb3b3;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.calendar-day,
.time-slot {
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 6px;
  min-height: 72px;
  padding: 12px 8px;
  background: rgba(255, 255, 255, .03);
  color: var(--text);
  text-align: center;
  transition: border-color .18s ease, background .18s ease, opacity .18s ease;
}

.calendar-day {
  cursor: pointer;
}

.calendar-day strong {
  display: block;
  font-size: 19px;
}

.calendar-day span {
  color: var(--muted);
  font-size: 12px;
}

.calendar-day.active,
.time-slot.active,
.time-slot:not(:disabled):hover {
  border-color: var(--teal);
  background: rgba(38, 125, 119, .18);
}

.calendar-day:disabled,
.time-slot:disabled {
  cursor: not-allowed;
  opacity: .42;
  color: rgba(244, 241, 238, .62);
  background: rgba(255, 255, 255, .025);
}

.calendar-day.is-closed {
  border-style: dashed;
}

.time-sheet-backdrop {
  display: none;
}

.time-sheet-head {
  display: none;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(82px, 1fr));
  gap: 10px;
  margin-top: 22px;
  max-height: 360px;
  overflow: auto;
  padding-right: 4px;
}

.time-slot {
  cursor: pointer;
  display: grid;
  place-items: center;
  min-height: 58px;
  font-weight: 800;
}

.time-slot span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.time-slot.is-booked {
  border-color: rgba(126, 39, 74, .42);
}

.slot-notice {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: #050506;
  padding: 58px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .72fr .9fr .95fr;
  gap: 42px;
}

.footer-logo {
  width: 88px;
  height: 88px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 16px;
}

.site-footer h2,
.site-footer h3 {
  font-size: 19px;
  margin-bottom: 16px;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: var(--muted);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 40px;
  padding-top: 22px;
  color: #8e8e8e;
  font-size: 13px;
}

.legal-content {
  max-width: 880px;
}

.legal-content h2 {
  font-size: 28px;
  margin: 38px 0 14px;
}

.legal-content p {
  color: var(--muted);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    inset: 78px 0 0;
    display: none;
    z-index: 90;
    align-content: start;
    background: #09090a;
    padding: 24px;
    border-top: 1px solid var(--line);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .65);
  }

  body.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .main-nav a {
    padding: 14px 0;
    font-size: 15px;
  }

  .main-nav a::after {
    bottom: 8px;
  }

  .menu-button {
    display: inline-grid;
  }

  .vertical-social {
    display: none;
  }

  .hero-tabs {
    right: 16px;
    bottom: 18px;
    grid-template-columns: repeat(3, auto);
  }

  .section-head,
  .split,
  .location,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: grid;
  }

  .grid.three,
  .grid.four,
  .grid.two,
  .country-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-strip {
    grid-template-columns: 1fr 1fr;
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 70px;
  }

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

  .brand-wordmark {
    font-size: 15px;
  }

  .hero-content {
    padding-top: 112px;
    padding-bottom: 86px;
  }

  .hero-short::before {
    background:
      linear-gradient(90deg, rgba(9, 9, 10, .93) 0%, rgba(9, 9, 10, .76) 55%, rgba(9, 9, 10, .46) 100%),
      var(--hero-image) var(--hero-mobile-position, var(--hero-position, center)) / cover no-repeat;
  }

  .hero-short {
    min-height: 58svh;
  }

  .section {
    padding: 68px 0;
  }

  .grid.three,
  .grid.four,
  .grid.two,
  .country-grid,
  .stat-strip,
  .form-row,
  .calendar-grid {
    grid-template-columns: 1fr;
  }

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

  .time-slots {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-height: 420px;
  }

  .service-overview .service-card img {
    height: 300px;
  }

  .time-sheet-backdrop {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: block;
    pointer-events: none;
    background: rgba(0, 0, 0, 0);
    transition: background .22s ease;
  }

  body.time-sheet-open .time-sheet-backdrop {
    pointer-events: auto;
    background: rgba(0, 0, 0, .58);
  }

  .time-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    max-height: min(76svh, 640px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px 18px 0 0;
    background: #111113;
    box-shadow: 0 -26px 80px rgba(0, 0, 0, .58);
    padding: 16px;
    transform: translateY(108%);
    transition: transform .24s ease;
  }

  .calendar-panel.time-sheet-open .time-sheet {
    transform: translateY(0);
  }

  .time-sheet-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
  }

  .time-sheet-head span {
    display: block;
    color: var(--teal-light);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .time-sheet-head strong {
    display: block;
    margin-top: 2px;
    color: var(--text);
    font-size: 18px;
    line-height: 1.2;
  }

  .time-sheet-close {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    color: var(--text);
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
  }

  .time-slots {
    max-height: calc(min(76svh, 640px) - 92px);
    margin-top: 0;
    padding: 2px 2px 18px;
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 0;
  }

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

  .footer-bottom {
    display: grid;
  }
}
