:root {
  --red: #c4161c;
  --red-dark: #990f14;
  --ink: #111214;
  --muted: #62656a;
  --line: #dedfe1;
  --soft: #f3f3f2;
  --white: #ffffff;
  --max: 1180px;
  --radius: 22px;
  --shadow: 0 22px 70px rgba(14, 15, 17, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

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

button,
a {
  font-family: inherit;
}

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

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

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

h1,
h2 {
  letter-spacing: -0.045em;
  line-height: 1.03;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  margin-bottom: 25px;
  font-size: clamp(3rem, 4.8vw, 4.75rem);
  font-weight: 850;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 4.5vw, 4.25rem);
  font-weight: 820;
}

.shell {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.page-top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 90;
  top: 0;
  height: 96px;
  border-top: 4px solid var(--red);
  border-bottom: 1px solid rgba(17, 18, 20, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 28px rgba(17, 18, 20, 0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 30px;
}

.brand {
  position: relative;
  display: flex;
  align-items: center;
  width: 200px;
  height: 78px;
  flex: 0 0 auto;
}

.brand img {
  width: 158px;
  height: 72px;
  object-fit: contain;
}

.brand-address {
  position: absolute;
  left: 170px;
  width: 170px;
  color: #74767b;
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.35;
}

.main-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 29px;
}

.main-nav a {
  position: relative;
  padding: 11px 0;
  color: #333539;
  font-size: 0.91rem;
  font-weight: 700;
}

.main-nav a::after {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.main-nav a:focus-visible,
.contact-card:focus-visible,
.booking-ribbon a:focus-visible {
  outline: 3px solid rgba(196, 22, 28, 0.35);
  outline-offset: 4px;
}

.button--small {
  min-height: 46px;
  padding: 13px 18px;
  background: var(--ink);
  color: var(--white);
  white-space: nowrap;
}

.button--primary {
  min-height: 60px;
  padding-inline: 28px;
  background: var(--red);
  box-shadow: 0 15px 34px rgba(196, 22, 28, 0.25);
  color: var(--white);
  gap: 14px;
}

.button--primary:hover {
  background: var(--red-dark);
  box-shadow: 0 18px 38px rgba(196, 22, 28, 0.32);
}

.button--ghost {
  min-height: 60px;
  border-color: #cfd0d2;
  background: rgba(255, 255, 255, 0.75);
}

.button--ghost:hover {
  border-color: var(--ink);
  background: var(--white);
}

.button--dark {
  min-width: 206px;
  background: var(--ink);
  color: var(--white);
  gap: 12px;
}

.booking-ribbon {
  position: relative;
  z-index: 20;
  background: var(--red);
  color: var(--white);
}

.booking-ribbon__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  gap: 34px;
}

.booking-ribbon p {
  margin: 0;
  font-size: 0.88rem;
}

.booking-ribbon a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  font-size: 0.84rem;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0) 46%, rgba(216, 217, 219, 0.42) 46.2%, rgba(255, 255, 255, 0) 61%),
    linear-gradient(180deg, #fafafa 0%, #efefee 100%);
}

.hero::after {
  position: absolute;
  z-index: 0;
  top: -180px;
  right: -100px;
  width: 560px;
  height: 560px;
  border: 90px solid rgba(17, 18, 20, 0.035);
  border-radius: 50%;
  content: "";
}

.hero__track {
  position: absolute;
  z-index: 0;
  top: -65px;
  right: 26%;
  width: 108px;
  height: 890px;
  opacity: 0.055;
  background:
    repeating-linear-gradient(26deg, transparent 0 24px, #111 25px 48px),
    #111;
  transform: rotate(24deg);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  min-height: 700px;
  padding-block: 74px;
  gap: 56px;
}

.hero__copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
  color: var(--red);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  margin-right: 12px;
  background: currentColor;
}

.hero__lead {
  max-width: 640px;
  margin-bottom: 34px;
  color: #575a5f;
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 34px;
  gap: 12px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  color: #46484d;
  font-size: 0.78rem;
  font-weight: 720;
}

.trust-row span::before {
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.hero__visual {
  position: relative;
  min-width: 0;
}

.logo-stage {
  position: relative;
  padding: 52px 34px 92px;
  border: 1px solid rgba(17, 18, 20, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.logo-stage::before {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: -25px 0 0 #d9dadd, -50px 0 0 #d9dadd;
  content: "";
}

.logo-stage__label {
  display: block;
  margin-bottom: 20px;
  color: #777a7f;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.logo-stage img {
  width: 100%;
  aspect-ratio: 1.764 / 1;
  object-fit: contain;
}

.location-chip {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  padding: 15px 18px;
  border-radius: 13px;
  background: var(--ink);
  color: var(--white);
  gap: 13px;
}

.location-chip__pin,
.map-card__pin {
  position: relative;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  border: 7px solid var(--red);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.location-chip__pin::after,
.map-card__pin::after {
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--white);
  content: "";
}

.location-chip strong,
.location-chip small {
  display: block;
}

.location-chip strong {
  font-size: 0.92rem;
}

.location-chip small {
  margin-top: 2px;
  color: #bfc1c4;
  font-size: 0.72rem;
}

.about {
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(50px, 7vw, 105px);
}

.about h2 {
  max-width: 570px;
  font-size: clamp(2.35rem, 4vw, 3.8rem);
}

.about__copy {
  padding-top: 43px;
}

.about__copy > p {
  max-width: 650px;
  color: #55585d;
  font-size: 1.08rem;
  line-height: 1.8;
}

.about__copy > p:first-child {
  color: var(--ink);
  font-size: 1.27rem;
  font-weight: 680;
}

.services-title {
  margin: 38px 0 16px;
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 850;
  letter-spacing: -0.015em;
}

.service-list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  gap: 13px;
}

.service-list p {
  display: flex;
  align-items: flex-start;
  margin: 0;
  color: #383a3e;
  font-size: 0.94rem;
  font-weight: 740;
  line-height: 1.55;
  gap: 12px;
}

.service-icon {
  width: 1.65em;
  flex: 0 0 1.65em;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 1.35rem;
  line-height: 1.15;
  text-align: center;
}

.booking {
  position: relative;
  overflow: hidden;
  background: #121315;
  color: var(--white);
}

.booking::before {
  position: absolute;
  right: -90px;
  bottom: -260px;
  width: 650px;
  height: 650px;
  border: 96px solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
  content: "";
}

.booking__glow {
  position: absolute;
  top: -200px;
  left: -240px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(196, 22, 28, 0.18);
  filter: blur(90px);
}

.booking__heading {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  margin-bottom: 48px;
  gap: 80px;
}

.section-kicker--light {
  color: #ff6065;
}

.booking__heading h2 {
  max-width: 770px;
  margin-bottom: 0;
}

.booking__heading > p {
  margin: 0 0 9px;
  color: #b8b9bc;
  font-size: 1rem;
  line-height: 1.75;
}

.booking-card {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  color: var(--ink);
}

.booking-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 24px;
  border-bottom: 1px solid #e7e7e7;
  color: #777a7f;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.booking-card__topline > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #23a65b;
  box-shadow: 0 0 0 5px rgba(35, 166, 91, 0.12);
}

#bookio-iframe {
  display: block;
  width: 100%;
  min-height: 680px;
  border: 0;
  background: var(--white);
}

.booking__fallback {
  position: relative;
  margin: 22px 0 0;
  color: #8e9095;
  font-size: 0.84rem;
  text-align: center;
}

.booking__fallback a,
.widget-fallback a {
  color: var(--white);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.widget-fallback {
  padding: 24px;
  color: var(--ink);
}

.widget-fallback a {
  color: var(--red);
}

.price {
  background: var(--soft);
}

.price-card {
  position: relative;
  display: grid;
  grid-template-columns: 122px 1fr auto;
  align-items: center;
  min-height: 245px;
  overflow: hidden;
  padding: 48px 54px;
  border: 1px solid rgba(17, 18, 20, 0.09);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 20px 60px rgba(14, 15, 17, 0.07);
  gap: 38px;
}

.price-card::after {
  position: absolute;
  top: -90px;
  right: 150px;
  width: 160px;
  height: 420px;
  opacity: 0.035;
  background: repeating-linear-gradient(31deg, transparent 0 22px, #111 23px 43px);
  content: "";
  transform: rotate(18deg);
}

.price-card__number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 98px;
  height: 98px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 1.22rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.price-card .section-kicker {
  margin-bottom: 12px;
}

.price-card h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.price-card p:last-child {
  margin: 0;
  color: var(--muted);
}

.price-card .button {
  position: relative;
  z-index: 2;
}

.contact {
  background: var(--white);
}

.contact__heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  margin-bottom: 48px;
  gap: 80px;
}

.contact__heading h2 {
  max-width: 680px;
  margin-bottom: 0;
}

.contact__heading > p {
  max-width: 440px;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.contact-card {
  position: relative;
  display: flex;
  min-height: 220px;
  flex-direction: column;
  padding: 28px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: background 180ms ease, color 180ms ease;
}

.contact-card:hover {
  background: var(--ink);
  color: var(--white);
}

.contact-card__index {
  margin-bottom: auto;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.contact-card__label {
  margin-bottom: 7px;
  color: #7b7d82;
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card strong {
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.45;
}

.contact-card__arrow {
  position: absolute;
  right: 28px;
  bottom: 28px;
  color: var(--red);
  font-size: 1.35rem;
}

.map {
  position: relative;
  height: 570px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #e5e5e3;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.75) contrast(0.95);
}

.map-card {
  position: absolute;
  top: 50%;
  left: max(24px, calc((100% - var(--max)) / 2));
  display: grid;
  grid-template-columns: auto 1fr;
  width: min(400px, calc(100% - 48px));
  padding: 31px;
  border-top: 4px solid var(--red);
  border-radius: 0 0 14px 14px;
  background: var(--white);
  box-shadow: var(--shadow);
  gap: 18px;
  transform: translateY(-50%);
}

.map-card__pin {
  width: 31px;
  height: 31px;
  border-width: 8px;
}

.map-card small,
.map-card strong,
.map-card span {
  display: block;
}

.map-card small {
  margin-bottom: 6px;
  color: #777a7f;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-card strong {
  font-size: 1.16rem;
}

.map-card > div > span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.92rem;
}

.map-card a {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 850;
}

.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer img {
  width: 120px;
  height: 60px;
  object-fit: contain;
}

.site-footer p,
.site-footer a {
  margin: 0;
  color: #6c6e73;
  font-size: 0.76rem;
  font-weight: 650;
}

.site-footer a {
  color: var(--ink);
}

.mobile-booking {
  display: none;
}

.back-to-top {
  position: fixed;
  z-index: 85;
  right: max(24px, calc((100vw - var(--max)) / 2 - 72px));
  bottom: 28px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 14px 36px rgba(17, 18, 20, 0.24);
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 850;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.back-to-top:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .brand-address {
    display: none;
  }

  .brand {
    width: 150px;
  }

  .main-nav {
    gap: 18px;
  }

  .hero__inner {
    grid-template-columns: 1fr 0.78fr;
    gap: 32px;
  }

  .logo-stage {
    padding-inline: 20px;
  }

  .price-card {
    grid-template-columns: 100px 1fr;
  }

  .price-card .button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 74px;
  }

  .shell {
    width: min(calc(100% - 32px), var(--max));
  }

  .section {
    padding: 84px 0;
  }

  .site-header {
    height: 78px;
  }

  .brand,
  .brand img {
    width: 125px;
    height: 64px;
  }

  .main-nav {
    display: none;
  }

  .header-inner > .button {
    min-height: 42px;
    padding: 11px 14px;
    font-size: 0.79rem;
  }

  .booking-ribbon__inner {
    justify-content: space-between;
    min-height: 52px;
    gap: 18px;
  }

  .booking-ribbon p {
    font-size: 0.75rem;
  }

  .booking-ribbon p span {
    display: none;
  }

  .booking-ribbon a {
    font-size: 0.73rem;
    white-space: nowrap;
  }

  .hero {
    min-height: 0;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-block: 72px 86px;
    gap: 54px;
  }

  .hero__visual {
    width: min(560px, 100%);
    margin-inline: auto;
  }

  .hero__track {
    right: 12%;
  }

  .about__grid,
  .booking__heading,
  .contact__heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about__copy {
    padding-top: 0;
  }

  .booking__heading {
    margin-bottom: 36px;
  }

  .booking__heading > p {
    max-width: 620px;
  }

  .contact__heading {
    margin-bottom: 38px;
  }

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

  .contact-card {
    min-height: 180px;
  }

  .map {
    height: 650px;
  }

  .map-card {
    top: auto;
    bottom: 22px;
    transform: none;
  }
}

@media (max-width: 580px) {
  body {
    padding-bottom: 68px;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.1rem);
  }

  h2 {
    font-size: clamp(2.15rem, 11vw, 3.15rem);
  }

  .section {
    padding: 72px 0;
  }

  .site-header {
    border-top-width: 3px;
  }

  .header-inner > .button {
    display: none;
  }

  .booking-ribbon__inner {
    justify-content: center;
  }

  .booking-ribbon p {
    display: none;
  }

  .booking-ribbon a {
    padding: 12px 0;
    font-size: 0.78rem;
  }

  .hero__inner {
    padding-top: 59px;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .logo-stage {
    padding: 46px 16px 88px;
    border-radius: 22px;
  }

  .location-chip {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .service-list {
    gap: 15px;
  }

  .booking {
    padding-bottom: 80px;
  }

  .booking-card {
    width: calc(100% + 12px);
    min-height: 720px;
    margin-left: -6px;
    border-radius: 15px;
  }

  .booking-card__topline {
    padding-inline: 15px;
  }

  .booking-card__topline > span {
    display: none;
  }

  #bookio-iframe {
    min-height: 790px;
  }

  .price-card {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 24px;
  }

  .price-card__number {
    width: 76px;
    height: 76px;
  }

  .price-card .button {
    grid-column: 1;
    width: 100%;
  }

  .contact-card strong {
    padding-right: 30px;
    font-size: 1.12rem;
  }

  .map {
    height: 590px;
  }

  .map-card {
    left: 16px;
    width: calc(100% - 32px);
    padding: 25px;
  }

  .site-footer {
    padding: 26px 0;
  }

  .site-footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .mobile-booking {
    position: fixed;
    z-index: 100;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    padding: 0 21px;
    border-radius: 10px;
    background: var(--red);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.26);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 850;
    isolation: isolate;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
  }

  .back-to-top {
    z-index: 99;
    right: 16px;
    bottom: 80px;
    width: 48px;
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
