

:root {
  --navy-950: #06131b;
  --navy-900: #0a202b;
  --navy-800: #103240;
  --aqua-600: #00a9a5;
  --aqua-500: #12cbc4;
  --aqua-300: #8ce9e2;
  --aqua-100: #dff8f5;
  --ice: #f3fbfa;
  --white: #ffffff;
  --ink: #0b2330;
  --muted: #5b7079;
  --line: rgba(12, 56, 69, 0.13);
  --orange: #ff9157;
  --radius-lg: 32px;
  --radius-md: 22px;
  --shadow: 0 24px 70px rgba(4, 34, 46, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--navy-950);
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", sans-serif;
  text-rendering: optimizeLegibility;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  font: inherit;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 19, 27, 0.82);
  color: var(--white);
  backdrop-filter: blur(20px);
}

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

.brand-mark {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(140, 233, 226, 0.6);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(18, 203, 196, 0.28), rgba(18, 203, 196, 0.06));
  color: var(--aqua-300);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
  box-shadow: inset 0 0 18px rgba(18, 203, 196, 0.16);
}

.brand-mark::after {
  position: absolute;
  right: 8px;
  bottom: 7px;
  left: 8px;
  height: 4px;
  border-top: 1px solid var(--aqua-300);
  border-radius: 50%;
  content: "";
  transform: rotate(-5deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand-copy strong {
  font-size: 15px;
  letter-spacing: 0.01em;
}

.brand-copy small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
}

.main-nav a {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
  transform: translateY(-1px);
}

.nav-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid rgba(140, 233, 226, 0.44);
  border-radius: 999px;
  background: rgba(18, 203, 196, 0.08);
  color: var(--aqua-300);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--white);
  transition: transform 180ms ease;
}

.service-alert {
  position: relative;
  z-index: 40;
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 24px;
  background: #ffbe78;
  color: #392414;
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.service-alert p {
  margin: 0;
}

.alert-icon {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 800px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 15, 22, 0.96) 0%, rgba(3, 15, 22, 0.7) 46%, rgba(3, 15, 22, 0.18) 79%),
    url("./assets/hero-original.jpg") center 46% / cover no-repeat,
    linear-gradient(135deg, #0d3542, #071820 65%);
  color: var(--white);
}

.hero-shade {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(0deg, var(--navy-950), transparent);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -140px;
  left: 20%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(18, 203, 196, 0.14);
  filter: blur(120px);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 640px;
  align-items: center;
  gap: 70px;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.72fr);
  padding-block: 86px 68px;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--aqua-300);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: block;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.eyebrow-dark {
  color: #087d7b;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(58px, 7vw, 94px);
  font-weight: 800;
  letter-spacing: -0.062em;
  line-height: 0.93;
}

.hero h1 em {
  color: var(--aqua-500);
  font-style: normal;
}

.hero-intro {
  max-width: 640px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.72;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  background: var(--aqua-500);
  color: #04191e;
  box-shadow: 0 16px 38px rgba(18, 203, 196, 0.22);
}

.button-primary:hover {
  background: #4bddD5;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
}

.button-dark {
  margin-top: 28px;
  background: var(--navy-950);
  color: var(--white);
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(145deg, rgba(17, 52, 64, 0.74), rgba(7, 28, 38, 0.52));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.weather-card {
  align-self: end;
  margin-bottom: 18px;
  padding: 24px;
  border-radius: var(--radius-md);
}

.card-kicker {
  margin: 0;
  color: var(--aqua-500);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.weather-card .card-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--aqua-300);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aqua-500);
  box-shadow: 0 0 0 5px rgba(18, 203, 196, 0.13);
}

.weather-main {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin: 25px 0;
}

.weather-main strong {
  max-width: 150px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.weather-main > span {
  font-size: 52px;
  font-weight: 300;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

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

.weather-grid div {
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.weather-grid small,
.weather-grid strong {
  display: block;
}

.weather-grid small {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  text-transform: uppercase;
}

.weather-grid strong {
  font-size: 13px;
}

.weather-card > p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  line-height: 1.5;
}

.feature-strip {
  position: relative;
  z-index: 2;
  display: grid;
  margin-bottom: 35px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  background: rgba(4, 22, 30, 0.72);
  grid-template-columns: repeat(4, 1fr);
  backdrop-filter: blur(20px);
}

.feature-strip > div {
  display: flex;
  min-height: 104px;
  align-items: center;
  gap: 13px;
  padding: 20px 23px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-strip > div:last-child {
  border-right: 0;
}

.feature-strip > div > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(140, 233, 226, 0.36);
  border-radius: 50%;
  color: var(--aqua-300);
  font-size: 18px;
  font-weight: 800;
}

.feature-strip p {
  margin: 0;
}

.feature-strip strong,
.feature-strip small {
  display: block;
}

.feature-strip strong {
  font-size: 13px;
}

.feature-strip small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.section {
  position: relative;
  padding-block: 118px;
}

.section-light {
  background:
    radial-gradient(circle at 10% 0%, rgba(18, 203, 196, 0.1), transparent 30%),
    var(--ice);
}

.section-deep {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(18, 203, 196, 0.14), transparent 28%),
    var(--navy-950);
  color: var(--white);
}

.section-deep::before {
  position: absolute;
  top: 130px;
  right: -120px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(140, 233, 226, 0.08);
  border-radius: 50%;
  content: "";
}

.section-aqua {
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.7), transparent 25%),
    linear-gradient(135deg, #d4f5f1 0%, #eefbf9 65%, #dff8f5 100%);
}

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

.section-heading h2,
.beginner-layout h2,
.bistro-copy h2,
.contact-layout h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.section-heading-light h2 {
  color: var(--white);
}

.section-heading-light > p {
  color: rgba(255, 255, 255, 0.56);
}

.month-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
  overflow-x: auto;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  scrollbar-width: none;
}

.month-tabs::-webkit-scrollbar {
  display: none;
}

.month-tabs button {
  min-width: 100px;
  flex: 1;
  padding: 13px 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.month-tabs button:hover {
  color: var(--ink);
}

.month-tabs button.active {
  background: var(--navy-950);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(4, 31, 41, 0.16);
}

.hours-layout {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

.hours-card {
  min-height: 350px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.hours-card-featured {
  background:
    linear-gradient(145deg, rgba(16, 50, 64, 0.96), rgba(6, 27, 37, 0.98)),
    var(--navy-900);
  color: var(--white);
}

.hours-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.hours-card h3 {
  margin: 8px 0 0;
  font-size: 32px;
  letter-spacing: -0.04em;
}

.hours-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--aqua-500);
  color: var(--navy-950);
  font-size: 20px;
}

.hours-icon-dark {
  background: var(--aqua-100);
  color: var(--navy-800);
  font-size: 16px;
}

.hours-list {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-card:not(.hours-card-featured) .hours-list {
  border-color: var(--line);
}

.hours-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-card:not(.hours-card-featured) .hours-list > div {
  border-color: var(--line);
}

.hours-list span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.hours-card:not(.hours-card-featured) .hours-list span {
  color: var(--muted);
}

.hours-list strong {
  font-size: 16px;
}

.hours-note {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.47);
  font-size: 11px;
  line-height: 1.6;
}

.hours-card:not(.hours-card-featured) .hours-note {
  color: var(--muted);
}

.price-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

.price-card {
  padding: 32px;
  border-radius: var(--radius-lg);
}

.price-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.price-card h3 {
  margin: 8px 0 0;
  font-size: 27px;
  letter-spacing: -0.04em;
}

.from-price {
  margin: 0;
  color: rgba(255, 255, 255, 0.47);
  font-size: 11px;
  text-align: right;
  text-transform: uppercase;
}

.from-price strong {
  display: block;
  margin-top: 4px;
  color: var(--aqua-300);
  font-size: 30px;
  letter-spacing: -0.05em;
}

.price-table {
  margin-top: 28px;
}

.price-row {
  display: grid;
  align-items: center;
  gap: 12px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  grid-template-columns: 1.3fr 0.7fr 0.9fr;
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row > span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  text-align: right;
}

.price-row > strong {
  font-size: 14px;
}

.price-row-head {
  padding-top: 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-row-head span:first-child {
  text-align: left;
}

.rental-card {
  display: grid;
  align-items: center;
  gap: 34px;
  margin-top: 18px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: linear-gradient(105deg, rgba(18, 203, 196, 0.1), rgba(255, 255, 255, 0.035));
  grid-template-columns: 0.62fr 1.08fr 0.68fr;
}

.rental-title h3 {
  margin: 8px 0 12px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.rental-title > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  line-height: 1.65;
}

.rental-row {
  display: grid;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  grid-template-columns: 1.5fr repeat(3, 0.55fr);
}

.rental-row:last-child {
  border-bottom: 0;
}

.rental-row span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  text-align: right;
}

.rental-row strong {
  font-size: 14px;
}

.rental-head {
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rental-head span:first-child {
  text-align: left;
}

.rental-photo {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(0deg, rgba(4, 20, 28, 0.72), rgba(4, 20, 28, 0.06) 65%),
    url("./assets/rental-original.jpg") center / cover no-repeat;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.24);
}

.rental-photo span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cash-note {
  display: flex;
  max-width: max-content;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 190, 120, 0.28);
  border-radius: 16px;
  background: rgba(255, 190, 120, 0.08);
}

.cash-note > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: #ffbe78;
  color: #392414;
  font-size: 13px;
  font-weight: 900;
}

.cash-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.cash-note strong {
  margin-right: 6px;
  color: #ffd5a8;
}

.beginner-layout {
  display: grid;
  align-items: start;
  gap: 90px;
  grid-template-columns: 0.9fr 1.1fr;
}

.lead {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  gap: 22px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(10, 57, 70, 0.15);
  grid-template-columns: 54px 1fr;
}

.steps li:first-child {
  padding-top: 4px;
}

.steps li > span {
  color: #0a8f8b;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.steps strong {
  font-size: 21px;
}

.steps p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.child-note {
  display: grid;
  align-items: center;
  gap: 22px;
  margin-top: 68px;
  padding: 25px 28px;
  border: 1px solid rgba(8, 125, 123, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.66);
  grid-template-columns: 50px 1fr auto;
}

.child-note > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid #07817f;
  border-radius: 50%;
  color: #07817f;
  font-size: 15px;
  font-weight: 900;
}

.child-note strong {
  font-size: 14px;
}

.child-note p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.child-note a {
  color: #06736f;
  font-size: 12px;
  font-weight: 900;
}

.bistro-section {
  overflow: hidden;
  background: var(--navy-900);
  color: var(--white);
}

.bistro-layout {
  display: grid;
  align-items: center;
  gap: 84px;
  grid-template-columns: 1fr 0.86fr;
}

.bistro-visual {
  position: relative;
  min-height: 490px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 46px 46px 180px 46px;
  background:
    linear-gradient(135deg, rgba(4, 25, 34, 0.15), rgba(4, 25, 34, 0.52)),
    url("./assets/bistro-original.jpg") center / cover no-repeat,
    linear-gradient(135deg, #1b6d77, #0a2834);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.bistro-badge {
  position: absolute;
  right: 34px;
  bottom: 34px;
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(6, 32, 43, 0.68);
  backdrop-filter: blur(14px);
}

.bistro-badge span,
.bistro-badge strong {
  display: block;
  text-align: center;
}

.bistro-badge span {
  color: var(--aqua-300);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bistro-badge strong {
  margin-top: 4px;
  font-size: 18px;
}

.bistro-copy h2,
.contact-layout h2 {
  color: var(--white);
}

.bistro-copy .lead,
.contact-layout .lead {
  color: rgba(255, 255, 255, 0.58);
}

.bistro-features {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.bistro-features span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  color: var(--aqua-300);
  font-size: 13px;
  font-weight: 900;
}

.contact-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 120%, rgba(18, 203, 196, 0.25), transparent 32%),
    var(--navy-950);
  color: var(--white);
}

.contact-layout {
  display: grid;
  align-items: center;
  gap: 90px;
  grid-template-columns: 0.85fr 1.15fr;
}

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

.contact-cards article {
  padding: 25px 27px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.contact-cards article:hover {
  border-color: rgba(140, 233, 226, 0.32);
  transform: translateX(4px);
}

.contact-cards h3 {
  margin: 8px 0 4px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.contact-cards article > p:not(.card-kicker) {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

.contact-cards a {
  display: inline-block;
  margin-top: 9px;
  color: var(--aqua-300);
  font-size: 12px;
}

.offline-label {
  color: #ffbe78 !important;
}

.site-footer {
  padding-top: 68px;
  background: #040f15;
  color: var(--white);
}

.footer-main {
  display: grid;
  gap: 80px;
  padding-bottom: 48px;
  grid-template-columns: 1.5fr 0.6fr 0.6fr;
}

.footer-brand {
  color: var(--white);
}

.footer-main > div:first-child > p {
  max-width: 340px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-links strong {
  margin-bottom: 5px;
  color: var(--aqua-300);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.footer-links a:hover {
  color: var(--white);
}

.legal-grid {
  display: grid;
  gap: 10px;
  padding-bottom: 28px;
  grid-template-columns: 1fr 1fr;
}

.legal-grid details {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.legal-grid summary {
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.67);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.legal-grid details > div {
  padding: 0 18px 18px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 11px;
  line-height: 1.65;
}

.footer-bottom {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.3);
  font-size: 10px;
}

@media (max-width: 980px) {
  .main-nav {
    gap: 15px;
  }

  .hero-layout {
    grid-template-columns: 1fr 300px;
  }

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

  .feature-strip > div:nth-child(2) {
    border-right: 0;
  }

  .feature-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .bistro-layout,
  .contact-layout {
    gap: 55px;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 74px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    background: rgba(6, 19, 27, 0.97);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  }

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

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

  .main-nav a:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: none;
  }

  .main-nav .nav-button {
    justify-content: space-between;
    margin-top: 4px;
    padding-inline: 14px;
  }

  .hero {
    min-height: auto;
    background-position: 62% center;
  }

  .hero-layout {
    min-height: 650px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    align-self: end;
  }

  .weather-card {
    max-width: 420px;
    align-self: auto;
    margin: 0;
  }

  .section-heading,
  .beginner-layout,
  .bistro-layout,
  .contact-layout {
    gap: 42px;
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
  }

  .price-grid,
  .hours-layout {
    grid-template-columns: 1fr;
  }

  .rental-card {
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .rental-photo {
    min-height: 330px;
  }

  .bistro-visual {
    min-height: 420px;
  }

  .footer-main {
    gap: 42px;
    grid-template-columns: 1.4fr 0.6fr 0.6fr;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

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

  .service-alert {
    align-items: flex-start;
    padding: 11px 14px;
    font-size: 11px;
    text-align: left;
  }

  .alert-icon {
    width: 21px;
    height: 21px;
  }

  .hero {
    background:
      linear-gradient(0deg, rgba(3, 15, 22, 0.98) 5%, rgba(3, 15, 22, 0.62) 73%, rgba(3, 15, 22, 0.2)),
      url("./assets/hero-original.jpg") 58% top / auto 64% no-repeat,
      var(--navy-950);
  }

  .hero-layout {
    min-height: auto;
    gap: 32px;
    padding-block: 300px 42px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 66px);
  }

  .hero-intro {
    font-size: 15px;
  }

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

  .button {
    width: 100%;
  }

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

  .feature-strip > div {
    min-height: 80px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .feature-strip > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 82px;
  }

  .section-heading h2,
  .beginner-layout h2,
  .bistro-copy h2,
  .contact-layout h2 {
    font-size: 42px;
  }

  .section-heading {
    gap: 22px;
    margin-bottom: 34px;
  }

  .month-tabs {
    margin-right: -14px;
    margin-left: -14px;
    padding-inline: 14px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .month-tabs button {
    min-width: 86px;
  }

  .hours-card,
  .price-card,
  .rental-card {
    padding: 25px 20px;
    border-radius: 24px;
  }

  .price-card-head {
    display: block;
  }

  .from-price {
    margin-top: 14px;
    text-align: left;
  }

  .from-price strong {
    display: inline;
    margin-left: 5px;
  }

  .price-row {
    gap: 8px;
    grid-template-columns: 1.15fr 0.66fr 0.86fr;
  }

  .price-row > span,
  .price-row > strong {
    font-size: 11px;
  }

  .rental-table {
    overflow-x: auto;
  }

  .rental-row {
    min-width: 470px;
  }

  .rental-photo {
    min-height: 220px;
  }

  .cash-note {
    max-width: none;
    align-items: flex-start;
  }

  .cash-note p {
    line-height: 1.5;
  }

  .cash-note strong {
    display: block;
  }

  .child-note {
    align-items: start;
    grid-template-columns: 44px 1fr;
  }

  .child-note > span {
    width: 42px;
    height: 42px;
  }

  .child-note a {
    grid-column: 2;
  }

  .bistro-visual {
    min-height: 350px;
    border-radius: 28px 28px 100px 28px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main > div:first-child {
    grid-column: 1 / -1;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 18px;
  }
}

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

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


.offline-noscript {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  max-width: 360px;
  margin: 0;
  padding: 14px 18px;
  border-radius: 14px;
  background: #ffbe78;
  color: #392414;
  font: 700 13px/1.5 Arial, sans-serif;
}
