:root {
  --lux-blue: #00a3e0;
  --lux-red: #ef3340;
  --cat-orange: #f5a033;
  --ink: #151313;
  --muted: #5f5754;
  --cream: #fff9f0;
  --cream-strong: #ffefd8;
  --surface: #ffffff;
  --line: #f0d9c5;
  --shadow: 0 20px 45px rgba(21, 19, 19, 0.1);
  --radius: 8px;
  color-scheme: light;
  font-family: "Nunito", "Arial Rounded MT Bold", Avenir, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(0, 163, 224, 0.12), transparent 32rem),
    linear-gradient(180deg, #fff 0%, var(--cream) 44%, #fff 100%);
  color: var(--ink);
  margin: 0;
}

main {
  margin: 0 auto;
  max-width: 1180px;
}

a {
  color: inherit;
}

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

.site-header {
  background: rgba(255, 249, 240, 0.94);
  border-bottom: 2px solid rgba(0, 163, 224, 0.16);
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1180px);
  justify-content: center;
  min-height: 92px;
  padding: 8px clamp(18px, 4vw, 60px) 10px;
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-top {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  min-width: 0;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 1.45rem;
  font-weight: 900;
  gap: 14px;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  height: 82px;
  object-fit: contain;
  width: 118px;
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  min-width: 0;
}

.site-nav a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 850;
  min-height: 36px;
  padding: 8px 12px;
  text-decoration: none;
}

.site-nav a:hover {
  background: #fff;
  color: var(--lux-blue);
}

.language-switcher {
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  gap: 6px;
  padding: 2px;
  flex: 0 0 auto;
}

.language-switcher select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--lux-blue) 50%) right 9px center / 5px 5px no-repeat,
    linear-gradient(135deg, var(--lux-blue) 50%, transparent 50%) right 6px center / 5px 5px no-repeat,
    #fff;
  border: 0;
  border-radius: 999px;
  color: var(--lux-blue);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 950;
  min-height: 30px;
  padding: 5px 21px 5px 9px;
}

.language-switcher select:focus {
  outline: 3px solid rgba(0, 163, 224, 0.18);
}

.hero {
  align-items: start;
  display: grid;
  gap: clamp(24px, 4vw, 44px);
  grid-template-columns: 1fr;
  min-height: auto;
  padding: clamp(28px, 4vw, 54px) clamp(18px, 5vw, 76px) clamp(44px, 6vw, 76px);
}

.hero-art {
  background: #fff;
  border: 3px solid rgba(0, 163, 224, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-art img {
  aspect-ratio: 1050 / 600;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

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

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

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

h1 {
  color: var(--ink);
  font-size: clamp(3rem, 6vw, 5.9rem);
  line-height: 0.94;
  margin-bottom: 22px;
  max-width: 100%;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.03;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

p,
li {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.hero-copy p:not(.eyebrow) {
  font-size: 1.2rem;
  max-width: 62ch;
}

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

.primary-link,
.secondary-link {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  text-decoration: none;
}

.primary-link {
  background: var(--lux-red);
  color: #fff;
  box-shadow: 0 10px 20px rgba(239, 51, 64, 0.22);
}

.secondary-link {
  background: #fff;
  border: 2px solid rgba(0, 163, 224, 0.25);
  color: var(--lux-blue);
}

.section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 76px);
}

.section-heading {
  max-width: 760px;
}

.intro-section {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.text-stack {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 34px);
}

.text-stack p:last-child,
.contact-card span,
.contact-card a:last-of-type,
.visit-grid p,
.value-grid p,
.care-card p {
  margin-bottom: 0;
}

.soft-band {
  background:
    linear-gradient(135deg, rgba(0, 163, 224, 0.1), transparent 42%),
    var(--cream-strong);
}

.value-grid,
.visit-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

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

.value-grid article,
.visit-grid article,
.price-card,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(20px, 3vw, 28px);
}

.statement {
  background: var(--cream);
  border: 2px dashed rgba(239, 51, 64, 0.36);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 850;
  margin: 24px 0 0;
  max-width: 860px;
  padding: 20px 22px;
}

.visit-grid article {
  min-height: 168px;
}

.pricing-section {
  background: #fff;
}

.price-card {
  overflow-x: auto;
}

.price-card h3 {
  color: var(--lux-blue);
}

.price-card table {
  border-collapse: collapse;
  min-width: 100%;
  width: 100%;
}

.price-card th,
.price-card td {
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  padding: 12px 10px;
  text-align: left;
  vertical-align: top;
}

.price-card th {
  color: var(--muted);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.price-card tr:last-child td {
  border-bottom: 0;
}

.booking-section {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0, 163, 224, 0.94), rgba(0, 163, 224, 0.74)),
    var(--lux-blue);
  color: #fff;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.booking-section .eyebrow,
.booking-section p,
.booking-section h2 {
  color: #fff;
}

.booking-section .primary-link {
  background: #fff;
  color: var(--lux-red);
  white-space: nowrap;
}

.contact-section {
  align-items: start;
  display: grid;
  gap: clamp(24px, 5vw, 72px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
}

.contact-card {
  display: grid;
  font-style: normal;
  gap: 14px;
}

.contact-card a {
  color: var(--lux-blue);
  font-size: 1.15rem;
  font-weight: 950;
  overflow-wrap: anywhere;
}

@media (max-width: 980px) {
  .hero,
  .intro-section,
  .booking-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .booking-section .primary-link {
    justify-self: start;
    white-space: normal;
  }
}

@media (min-width: 981px) {
  .hero {
    padding-left: 0;
    padding-right: 0;
  }

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

  h1 {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  main {
    max-width: none;
  }

  .site-header {
    grid-template-columns: 1fr;
    min-height: 88px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand img {
    height: 64px;
    width: 92px;
  }

  .brand span {
    display: inline;
    font-size: 1.18rem;
    max-width: calc(100vw - 186px);
  }

  .site-nav {
    gap: 6px;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
    white-space: nowrap;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a,
  .language-switcher select {
    font-size: 0.78rem;
  }

  .site-nav a {
    flex: 0 0 auto;
    min-height: 32px;
    padding: 6px 9px;
  }

  .language-switcher select {
    min-height: 28px;
    padding-bottom: 4px;
    padding-top: 4px;
  }

  .value-grid,
  .visit-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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