:root {
  --bg: #fafaf8;
  --bg-elevated: #fff;
  --bg-subtle: #f3f3f0;
  --text: #1a1a2e;
  --text-muted: #64748b;
  --text-faint: #94a3b8;
  --blue-deep: #0b1d3a;
  --blue-vibrant: #2563eb;
  --blue-soft: #93c5fd;
  --blue-pale: #dbeafe;
  --coral: #e07a5f;
  --coral-light: #f09e88;
  --coral-dark: #c4613f;
  --hairline: #e5e7eb;
  --shadow-sm: 0 1px 3px rgba(11, 29, 58, .06);
  --shadow-md: 0 8px 24px -4px rgba(11, 29, 58, .1);
  --shadow-lg: 0 24px 48px -8px rgba(11, 29, 58, .14);
  --shadow-xl: 0 40px 80px -12px rgba(11, 29, 58, .18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 999px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --pad-section: clamp(80px, 12vw, 160px);
  --pad-block: clamp(48px, 6vw, 96px);
  --wrap: 1240px;
  --wrap-narrow: 820px;
  --sr-reveal-t: .7s;
  --sr-reveal-ease: cubic-bezier(.16,1,.3,1);
}

:root[data-theme="dark"] {
  --bg: #0a0f1a;
  --bg-elevated: #111827;
  --bg-subtle: #1e293b;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --text-faint: #64748b;
  --blue-deep: #e8edf4;
  --blue-vibrant: #60a5fa;
  --blue-soft: #3b82f6;
  --blue-pale: #1e3a5f;
  --coral: #f09e88;
  --coral-light: #fbbaa8;
  --coral-dark: #e07a5f;
  --hairline: #1e293b;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .2);
  --shadow-md: 0 8px 24px -4px rgba(0, 0, 0, .3);
  --shadow-lg: 0 24px 48px -8px rgba(0, 0, 0, .4);
  --shadow-xl: 0 40px 80px -12px rgba(0, 0, 0, .5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0a0f1a;
    --bg-elevated: #111827;
    --bg-subtle: #1e293b;
    --text: #e2e8f0;
    --text-muted: #94a3b8;
    --text-faint: #64748b;
    --blue-deep: #e8edf4;
    --blue-vibrant: #60a5fa;
    --blue-soft: #3b82f6;
    --blue-pale: #1e3a5f;
    --coral: #f09e88;
    --coral-light: #fbbaa8;
    --coral-dark: #e07a5f;
    --hairline: #1e293b;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .2);
    --shadow-md: 0 8px 24px -4px rgba(0, 0, 0, .3);
    --shadow-lg: 0 24px 48px -8px rgba(0, 0, 0, .4);
    --shadow-xl: 0 40px 80px -12px rgba(0, 0, 0, .5);
  }
}

:root {
  --color-bg: var(--bg);
  --color-bg-elevated: var(--bg-elevated);
  --color-bg-soft: var(--bg-subtle);
  --color-bg-night: #0b1d3a;
  --color-text: var(--text);
  --color-text-muted: var(--text-muted);
  --color-text-faint: var(--text-faint);
  --color-text-inverse: #fff;
  --color-accent: var(--blue-vibrant);
  --color-accent-hover: var(--blue-deep);
  --color-detail: var(--coral);
  --color-eyebrow: var(--coral-dark);
  --color-border: var(--hairline);
  --color-hairline: var(--hairline);
  --color-card: var(--bg-elevated);
  --color-champagne: var(--coral-light);
  --color-cta-primary: var(--coral);
  --color-cta-primary-hover: var(--coral-dark);
  --color-cta-ink: #fff;
  --shadow-card: var(--shadow-md);
  --shadow-card-hover: var(--shadow-xl);
}

:root[data-theme="dark"] {
  --color-bg-night: #050a12;
  --color-text-inverse: #f1f5f9;
  --color-eyebrow: var(--coral-light);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

ul, ol {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--blue-vibrant);
  outline-offset: 3px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}

::selection {
  background: var(--blue-vibrant);
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }

  :before {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }

  :after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

h1, h2, h3, .serif {
  font-family: var(--font-serif);
  color: var(--text);
  font-weight: 500;
}

h1 {
  letter-spacing: -.03em;
  margin: 0;
  font-size: max(48px, min(8vw, 120px));
  line-height: .96;
}

h2 {
  letter-spacing: -.02em;
  margin: 0;
  font-size: max(36px, min(5vw, 72px));
  line-height: 1.05;
}

h3 {
  margin: 0;
  font-size: max(24px, min(2.5vw, 36px));
  line-height: 1.15;
}

p {
  max-width: 65ch;
}

.lead {
  color: var(--text-muted);
  max-width: 55ch;
  font-size: max(17px, min(1.4vw, 20px));
  line-height: 1.7;
}

.kicker {
  letter-spacing: .2em;
  text-transform: lowercase;
  color: var(--coral);
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-sans);
}

.caption {
  color: var(--text-faint);
  font-size: 13px;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 max(20px, min(4vw, 48px));
}

.wrap-narrow {
  max-width: var(--wrap-narrow);
  margin: 0 auto;
  padding: 0 max(20px, min(4vw, 48px));
}

section {
  padding: var(--pad-section) 0;
}

.split {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: max(32px, min(5vw, 80px));
  display: grid;
}

.split.flip > :first-child {
  order: 2;
}

@media (max-width: 768px) {
  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .split.flip > :first-child {
    order: 0;
  }
}

.ed {
  grid-template-columns: repeat(12, 1fr);
  gap: max(14px, min(1.8vw, 24px));
  display: grid;
}

.ed > * {
  grid-column: span 12;
}

@media (min-width: 769px) {
  .ed .c5 {
    grid-column: span 5;
  }

  .ed .c7 {
    grid-column: span 7;
  }

  .ed .c4 {
    grid-column: span 4;
  }

  .ed .c8 {
    grid-column: span 8;
  }
}

.btn {
  -webkit-border-radius: var(--radius-full);
  border-radius: var(--radius-full);
  min-height: 52px;
  font-family: var(--font-sans);
  letter-spacing: .02em;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  display: inline-flex;
}

.btn:active {
  transform: scale(.97);
}

.btn-coral {
  background: var(--coral);
  color: #fff;
}

.btn-coral:hover {
  background: var(--coral-dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -8px rgba(224, 122, 95, .4);
}

.btn-outline {
  color: var(--text);
  border: 1.5px solid var(--hairline);
  background: none;
}

.btn-outline:hover {
  border-color: var(--blue-vibrant);
  color: var(--blue-vibrant);
}

.btn-ghost {
  color: #fff;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .2);
}

.btn-text {
  color: var(--coral);
  background: none;
  min-height: 0;
  padding: 0;
  font-weight: 600;
}

.btn-text:hover {
  color: var(--coral-dark);
}

.link-underline {
  color: inherit;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size .35s cubic-bezier(.16, 1, .3, 1);
}

.link-underline:hover {
  background-size: 100% 1px;
}

.hero {
  background: var(--blue-deep);
  align-items: flex-end;
  min-height: 100svh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero-bg video, .hero-bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero-veil {
  z-index: 1;
  background: linear-gradient(rgba(10, 30, 51, .18) 0%, rgba(10, 30, 51, .02) 35%, rgba(10, 30, 51, .4) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero-grain {
  z-index: 2;
  pointer-events: none;
  opacity: .06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero-content {
  z-index: 3;
  color: #fff;
  width: 100%;
  padding: 0 max(20px, min(4vw, 48px)) max(64px, min(10vh, 120px));
  position: relative;
}

.hero-content .kicker {
  color: var(--coral-light);
  letter-spacing: .25em;
  font-size: 13px;
}

.hero-content h1 {
  color: #fff;
  text-shadow: 0 4px 60px rgba(0, 0, 0, .5);
  letter-spacing: -.04em;
  font-size: max(60px, min(9vw, 140px));
  line-height: .92;
}

.hero-content h1 em {
  color: var(--coral-light);
  filter: drop-shadow(0 2px 20px rgba(224, 122, 95, .4));
  font-style: italic;
}

.hero-content .lead {
  color: rgba(255, 255, 255, .78);
  max-width: 40ch;
  margin-top: 20px;
  font-size: max(16px, min(1.3vw, 19px));
}

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

.hero-scroll {
  z-index: 3;
  color: rgba(255, 255, 255, .7);
  letter-spacing: .28em;
  text-transform: uppercase;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  display: flex;
  position: absolute;
  bottom: 28px;
  left: 50%;
  translate: -50%;
}

.hero-scroll i {
  background: rgba(255, 255, 255, .25);
  width: 1px;
  height: 52px;
  display: block;
  position: relative;
  overflow: hidden;
}

.hero-scroll i:after {
  content: "";
  background: #fff;
  width: 100%;
  height: 50%;
  animation: 2.4s cubic-bezier(.6, 0, .4, 1) infinite scrollLine;
  position: absolute;
  top: -50%;
  left: 0;
}

@keyframes scrollLine {
  to {
    top: 110%;
  }
}

.manifesto {
  padding: var(--pad-section) 0;
  background: var(--bg-subtle);
}

.manifesto-text {
  max-width: 22ch;
  margin-left: auto;
}

.manifesto-text h2 {
  color: var(--text);
  font-size: max(32px, min(4.5vw, 60px));
}

.manifesto-text .lead {
  margin-top: 20px;
  font-size: max(16px, min(1.3vw, 19px));
}

.manifesto:before {
  content: "";
  background: var(--coral);
  -webkit-border-radius: 2px;
  border-radius: 2px;
  width: 48px;
  height: 3px;
  margin-bottom: 32px;
  display: block;
}

.rooms-carousel {
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  gap: max(16px, min(2vw, 24px));
  padding: 0 max(20px, min(4vw, 48px)) 16px;
  display: flex;
  overflow-x: auto;
}

.rooms-carousel::-webkit-scrollbar {
  display: none;
}

.room-card {
  scroll-snap-align: start;
  -webkit-border-radius: var(--radius-lg);
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  box-shadow: var(--shadow-md);
  flex: 0 0 max(300px, min(32vw, 420px));
  transition: box-shadow .4s, transform .4s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  overflow: hidden;
}

.room-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px) scale(1.01);
}

.room-card.featured {
  flex: 0 0 max(360px, min(38vw, 500px));
}

.room-img-wrap {
  position: relative;
  overflow: hidden;
}

.room-img-wrap img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  transition: transform 1.2s cubic-bezier(.16, 1, .3, 1);
}

.room-card.featured .room-img-wrap img {
  aspect-ratio: 3 / 4;
}

.room-card:hover .room-img-wrap img {
  transform: scale(1.08);
}

.room-img-wrap:after {
  content: "";
  pointer-events: none;
  background: linear-gradient(rgba(0, 0, 0, 0) 50%, rgba(10, 30, 51, .35) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.room-badge {
  background: var(--coral);
  color: #fff;
  letter-spacing: .12em;
  text-transform: uppercase;
  -webkit-border-radius: var(--radius-full);
  border-radius: var(--radius-full);
  z-index: 2;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  position: absolute;
  top: 16px;
  left: 16px;
}

.room-dots {
  z-index: 2;
  gap: 6px;
  display: flex;
  position: absolute;
  bottom: 12px;
  left: 50%;
  translate: -50%;
}

.room-dots span {
  background: rgba(255, 255, 255, .4);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  transition: background .3s, width .3s;
}

.room-dots span.active {
  background: #fff;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  width: 20px;
}

.room-info {
  padding: max(16px, min(2vw, 24px));
}

.room-info h3 {
  margin-bottom: 6px;
  font-size: max(22px, min(2.2vw, 30px));
}

.room-info h3 a {
  transition: color .3s;
}

.room-info h3 a:hover {
  color: var(--coral);
}

.room-info .room-meta {
  color: var(--text-muted);
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.5;
}

.room-info .room-price {
  font-family: var(--font-serif);
  color: var(--coral);
  font-size: max(20px, min(1.8vw, 28px));
  font-weight: 500;
}

.room-info .room-price small {
  font-family: var(--font-sans);
  color: var(--text-faint);
  font-size: 13px;
  font-weight: 400;
}

.rooms-nav {
  justify-content: center;
  gap: 12px;
  margin-top: max(24px, min(3vw, 40px));
  display: flex;
}

.rooms-nav button {
  border: 1.5px solid var(--hairline);
  width: 48px;
  height: 48px;
  color: var(--text);
  background: var(--bg-elevated);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  align-items: center;
  justify-items: center;
  transition: all .3s;
  display: grid;
}

.rooms-nav button:hover {
  border-color: var(--coral);
  color: var(--coral);
  background: var(--bg);
}

.rooms-nav button svg {
  width: 20px;
  height: 20px;
}

.spa-overlay {
  -webkit-border-radius: 0;
  border-radius: 0;
  align-items: flex-end;
  min-height: 80vh;
  margin: 0 calc(-1 * max(20px, min(4vw, 48px)));
  display: flex;
  position: relative;
  overflow: hidden;
}

.spa-overlay > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.spa-overlay > video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.spa-overlay:after {
  content: "";
  background: linear-gradient(rgba(10, 30, 51, .05) 20%, rgba(10, 30, 51, .65) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.spa-copy {
  z-index: 1;
  color: #fff;
  max-width: 640px;
  padding: max(40px, min(6vw, 80px)) max(20px, min(4vw, 48px));
  position: relative;
}

.spa-copy .kicker {
  color: var(--coral-light);
}

.spa-copy h2 {
  color: #fff;
  margin-top: 12px;
}

.spa-copy .lead {
  color: rgba(255, 255, 255, .8);
  margin-top: 12px;
}

.spa-strips {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
  display: grid;
}

.spa-strips img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  -webkit-border-radius: var(--radius-md);
  border-radius: var(--radius-md);
  width: 100%;
}

@media (max-width: 768px) {
  .spa-strips {
    grid-template-columns: 1fr;
  }
}

.restaurant .split {
  gap: max(24px, min(4vw, 60px));
}

.adventures-track {
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  gap: max(16px, min(2vw, 24px));
  padding-bottom: 8px;
  display: flex;
  overflow-x: auto;
}

.adventures-track::-webkit-scrollbar {
  display: none;
}

.adventure-card {
  scroll-snap-align: start;
  -webkit-border-radius: var(--radius-lg);
  border-radius: var(--radius-lg);
  flex: 0 0 max(280px, min(30vw, 380px));
  position: relative;
  overflow: hidden;
}

.adventure-card img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
  transition: transform 1.2s cubic-bezier(.16, 1, .3, 1);
}

.adventure-card:hover img {
  transform: scale(1.05);
}

.adventure-card .adv-copy {
  color: #fff;
  background: linear-gradient(0deg, rgba(10, 30, 51, .7) 0%, rgba(0, 0, 0, 0) 100%);
  padding: max(16px, min(2vw, 28px));
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.adventure-card .adv-copy h3 {
  color: #fff;
  font-size: max(18px, min(1.8vw, 24px));
}

.adventure-card .adv-copy p {
  color: rgba(255, 255, 255, .75);
  margin-top: 4px;
  font-size: 13px;
}

.testimonials {
  text-align: center;
}

.testimonials blockquote {
  font-family: var(--font-serif);
  letter-spacing: -.01em;
  max-width: 18ch;
  margin: 0 auto;
  font-size: max(24px, min(3.5vw, 44px));
  font-weight: 400;
  line-height: 1.25;
}

.testimonials blockquote em {
  color: var(--coral);
  font-style: italic;
}

.testimonials .who {
  color: var(--text-muted);
  margin-top: 20px;
  font-size: 14px;
}

.testimonials .stars {
  color: var(--coral);
  justify-content: center;
  gap: 4px;
  margin-top: 16px;
  display: flex;
}

.testimonials .stars svg {
  width: 18px;
  height: 18px;
}

.testimonials .google-link {
  color: var(--blue-vibrant);
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 14px;
  display: inline-flex;
}

.testimonials .google-link:hover {
  text-decoration: underline;
}

.cta-final {
  text-align: center;
  -webkit-border-radius: var(--radius-xl);
  border-radius: var(--radius-xl);
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  margin: 0 max(20px, min(4vw, 48px));
  display: flex;
  position: relative;
  overflow: hidden;
}

.cta-final > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.cta-final:after {
  content: "";
  background: linear-gradient(rgba(10, 30, 51, .3) 0%, rgba(10, 30, 51, .65) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.cta-final-content {
  z-index: 1;
  color: #fff;
  padding: max(40px, min(6vw, 80px));
  position: relative;
}

.cta-final-content h2 {
  color: #fff;
  max-width: 14ch;
  margin: 0 auto;
}

.cta-final-content .cta-row {
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
  display: flex;
}

.site-head {
  z-index: 100;
  transition: background .4s, border-color .4s, backdrop-filter .4s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.site-head.over-hero {
  background: none;
}

.site-head.solid {
  background: var(--bg);
  border-bottom: 1px solid var(--hairline);
}

.head-bar {
  max-width: var(--wrap);
  align-items: center;
  gap: 28px;
  margin: 0 auto;
  padding: 16px max(20px, min(4vw, 48px));
  display: flex;
}

.head-logo {
  flex: none;
  line-height: 0;
}

.head-logo img {
  width: auto;
  height: 42px;
}

.site-head.over-hero .head-logo img {
  filter: brightness(0) invert();
}

.head-nav {
  gap: max(16px, min(2vw, 32px));
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.head-nav a {
  letter-spacing: .08em;
  color: var(--text);
  white-space: nowrap;
  padding-bottom: 4px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color .3s;
  position: relative;
}

.site-head.over-hero .head-nav a {
  color: rgba(255, 255, 255, .85);
}

.head-nav a:after {
  content: "";
  background: var(--coral);
  height: 1.5px;
  transition: transform .35s cubic-bezier(.16, 1, .3, 1);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: scaleX(0);
}

.head-nav a:hover:after {
  transform: scaleX(1);
}

.head-nav a:hover {
  color: var(--coral);
}

.head-actions {
  flex: none;
  align-items: center;
  gap: 10px;
  display: flex;
}

.theme-btn {
  border: 1.5px solid var(--hairline);
  width: 40px;
  height: 40px;
  color: var(--text);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  align-items: center;
  justify-items: center;
  transition: all .3s;
  display: grid;
}

.theme-btn:hover {
  border-color: var(--coral);
  color: var(--coral);
}

.theme-btn svg {
  width: 20px;
  height: 20px;
}

.theme-btn .icon-sun {
  display: none;
}

:root[data-theme="dark"] .theme-btn .icon-moon {
  display: none;
}

:root[data-theme="dark"] .theme-btn .icon-sun {
  display: block;
}

.head-reserve {
  -webkit-border-radius: var(--radius-full);
  border-radius: var(--radius-full);
  background: var(--coral);
  color: #fff;
  letter-spacing: .02em;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  padding: 10px 26px;
  font-size: 14px;
  font-weight: 600;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  display: inline-flex;
}

.head-reserve:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -6px rgba(224, 122, 95, .35);
}

.burger {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  display: none;
}

.burger span {
  background: var(--text);
  width: 22px;
  height: 1.5px;
  transition: all .3s;
  display: block;
}

@media (max-width: 900px) {
  .head-nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .head-reserve {
    display: none;
  }
}

.mmenu {
  z-index: 200;
  background: var(--blue-deep);
  color: #fff;
  flex-direction: column;
  padding: max(60px, min(8vw, 100px)) max(24px, min(6vw, 48px)) 40px;
  transition: transform .45s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateX(100%);
}

.mmenu.open {
  transform: translateX(0);
}

.mmenu .mlink {
  font-family: var(--font-serif);
  color: #fff;
  padding: 12px 0;
  font-size: max(32px, min(6vw, 48px));
  font-weight: 400;
  transition: color .3s;
  display: block;
}

.mmenu .mlink small {
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, .5);
  letter-spacing: .1em;
  text-transform: lowercase;
  margin-top: 2px;
  font-size: 13px;
  display: block;
}

.mmenu .mlink:hover {
  color: var(--coral-light);
}

.mmenu .mfoot {
  gap: 12px;
  margin-top: auto;
  display: flex;
}

.mclose {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  align-items: center;
  justify-items: center;
  width: 44px;
  height: 44px;
  font-size: 18px;
  display: grid;
  position: absolute;
  top: 20px;
  right: 24px;
}

footer {
  background: var(--blue-deep);
  color: #f8fafc;
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 0;
}

:root[data-theme="dark"] footer {
  background: #050a12;
}

footer a {
  color: rgba(248, 250, 252, .65);
  transition: color .3s;
}

footer a:hover {
  color: #fff;
}

.foot-grid {
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  padding: 80px 0 56px;
  display: grid;
}

.foot-grid h4 {
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue-soft);
  font-size: 11px;
  font-family: var(--font-sans);
  margin: 0 0 18px;
  font-weight: 600;
}

.foot-grid a {
  padding: 5px 0;
  font-size: 15px;
  display: block;
}

.foot-base {
  color: rgba(248, 250, 252, .4);
  border-top: 1px solid rgba(255, 255, 255, .08);
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  font-size: 13px;
  display: flex;
}

@media (max-width: 768px) {
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 0 32px;
  }
}

.wa-fab {
  z-index: 90;
  color: #fff;
  background: #25d366;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  align-items: center;
  justify-items: center;
  width: 52px;
  height: 52px;
  transition: transform .3s cubic-bezier(.16, 1, .3, 1);
  display: grid;
  position: fixed;
  bottom: 20px;
  right: 20px;
  box-shadow: 0 8px 24px -4px rgba(37, 211, 102, .4);
}

.wa-fab:hover {
  transform: translateY(-4px) scale(1.05);
}

.reveal {
  opacity: 0;
  transition: opacity var(--sr-reveal-t) ease-out, transform var(--sr-reveal-t) var(--sr-reveal-ease);
  transform: translateY(28px);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-img {
  clip-path: inset(4% 3% round 24px);
  opacity: 0;
  transition: clip-path 1s cubic-bezier(.16, 1, .3, 1), opacity .8s;
}

.reveal-img.visible {
  clip-path: inset(0);
  opacity: 1;
}

.scroll-progress {
  z-index: 130;
  pointer-events: none;
  height: 2px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.scroll-progress i {
  background: linear-gradient(90deg, var(--blue-vibrant), var(--coral));
  transform-origin: 0;
  width: 0;
  height: 100%;
  transition: width .15s ease-out;
  display: block;
}

.kenburns {
  will-change: transform;
  animation: 42s ease-in-out infinite alternate kb;
}

@keyframes kb {
  from {
    scale: 1.03;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kenburns {
    animation: none;
  }

  .hero-scroll {
    display: none;
  }
}

.hairline {
  border: 0;
  border-top: 1px solid var(--hairline);
  margin: 0;
}

.skip {
  position: absolute;
  left: -999px;
}

.skip:focus {
  z-index: 200;
  background: var(--bg);
  color: var(--text);
  -webkit-border-radius: 8px;
  border-radius: 8px;
  padding: 10px 18px;
  top: 16px;
  left: 16px;
}
.site-head[data-astro-cid-hkbrpulz] {
  z-index: 100;
  transition: background .4s cubic-bezier(.16, 1, .3, 1), border-color .4s, backdrop-filter .4s;
  position: fixed;
  top: 0;
  bottom: auto;
  left: 0;
  right: 0;
}

.site-head[data-astro-cid-hkbrpulz] .bar[data-astro-cid-hkbrpulz] {
  align-items: center;
  gap: 28px;
  max-width: 1360px;
  margin: 0 auto;
  padding: 20px max(20px, min(4vw, 48px));
  display: flex;
}

@media (max-width: 760px) {
  .site-head[data-astro-cid-hkbrpulz] .bar[data-astro-cid-hkbrpulz] {
    gap: 8px;
    padding: 12px 14px;
  }
}

.site-head[data-astro-cid-hkbrpulz] nav[data-astro-cid-hkbrpulz] {
  gap: 28px;
  margin-left: auto;
  display: flex;
}

.site-head[data-astro-cid-hkbrpulz] nav[data-astro-cid-hkbrpulz] a[data-astro-cid-hkbrpulz] {
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color .3s;
  position: relative;
}

.site-head[data-astro-cid-hkbrpulz] nav[data-astro-cid-hkbrpulz] a[data-astro-cid-hkbrpulz]:after {
  content: "";
  background: var(--color-accent);
  height: 1.5px;
  transition: transform .35s cubic-bezier(.16, 1, .3, 1);
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  transform: scaleX(0);
}

.site-head[data-astro-cid-hkbrpulz].over-hero nav[data-astro-cid-hkbrpulz] a[data-astro-cid-hkbrpulz]:after {
  background: #fff;
}

.site-head[data-astro-cid-hkbrpulz] nav[data-astro-cid-hkbrpulz] a[data-astro-cid-hkbrpulz]:hover:after {
  transform: scaleX(1);
}

.site-head[data-astro-cid-hkbrpulz] .reserve-mini[data-astro-cid-hkbrpulz] {
  -webkit-border-radius: 999px;
  border-radius: 999px;
  padding: 12px 28px;
  font-size: 13px;
  transition: all .3s;
}

@media (max-width: 760px) {
  .site-head[data-astro-cid-hkbrpulz] .reserve-mini[data-astro-cid-hkbrpulz] {
    padding: 8px 14px;
    font-size: 12px;
  }
}

.reserve-mini[data-astro-cid-hkbrpulz] .btn-wa-icon[data-astro-cid-hkbrpulz] {
  flex-shrink: 0;
}

.bell-wave[data-astro-cid-hkbrpulz] {
  display: none;
}

@media (max-width: 480px) {
  .site-head[data-astro-cid-hkbrpulz] .reserve-mini[data-astro-cid-hkbrpulz] .btn-text[data-astro-cid-hkbrpulz] {
    display: none;
  }

  .site-head[data-astro-cid-hkbrpulz] .reserve-mini[data-astro-cid-hkbrpulz] {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    align-items: center;
    justify-items: center;
    width: 42px;
    height: 42px;
    padding: 10px;
    display: inline-grid;
  }
}

.logo[data-astro-cid-hkbrpulz] img[data-astro-cid-hkbrpulz] {
  width: auto;
  height: 44px;
  transition: filter .35s;
  display: block;
}

@media (max-width: 760px) {
  .logo[data-astro-cid-hkbrpulz] img[data-astro-cid-hkbrpulz] {
    height: 32px;
  }
}

.site-head[data-astro-cid-hkbrpulz].solid .logo[data-astro-cid-hkbrpulz] img[data-astro-cid-hkbrpulz] {
  filter: brightness(0) saturate() invert(18%) sepia(30%) saturate(1200%) hue-rotate(185deg) brightness(80%) contrast();
}

:root[data-theme="dark"] .site-head[data-astro-cid-hkbrpulz].solid .logo[data-astro-cid-hkbrpulz] img[data-astro-cid-hkbrpulz] {
  filter: none;
}

.site-head[data-astro-cid-hkbrpulz].over-hero {
  background: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
}

.site-head[data-astro-cid-hkbrpulz].over-hero nav[data-astro-cid-hkbrpulz] a[data-astro-cid-hkbrpulz] {
  color: rgba(255, 255, 255, .92);
  text-shadow: 0 1px 8px rgba(0, 0, 0, .35);
}

.site-head[data-astro-cid-hkbrpulz].over-hero nav[data-astro-cid-hkbrpulz] a[data-astro-cid-hkbrpulz]:hover {
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .5);
}

.site-head[data-astro-cid-hkbrpulz].over-hero .theme-btn[data-astro-cid-hkbrpulz] {
  color: #fff;
  -webkit-backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, .15);
  border-color: rgba(255, 255, 255, .5);
}

.site-head[data-astro-cid-hkbrpulz].over-hero .logo[data-astro-cid-hkbrpulz] img[data-astro-cid-hkbrpulz] {
  filter: brightness(0) invert() drop-shadow(0 1px 4px rgba(0, 0, 0, .3));
}

.site-head[data-astro-cid-hkbrpulz].solid {
  background: color-mix(in srgb, var(--color-bg) 94%, transparent);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--color-hairline);
}

.site-head[data-astro-cid-hkbrpulz].solid nav[data-astro-cid-hkbrpulz] a[data-astro-cid-hkbrpulz] {
  color: var(--color-text);
}

.site-head[data-astro-cid-hkbrpulz].solid nav[data-astro-cid-hkbrpulz] a[data-astro-cid-hkbrpulz]:hover {
  color: var(--color-accent);
}

.site-head[data-astro-cid-hkbrpulz].solid .theme-btn[data-astro-cid-hkbrpulz] {
  border-color: var(--color-border);
  color: var(--color-text);
  background: var(--color-bg-elevated);
}

.theme-btn[data-astro-cid-hkbrpulz] {
  cursor: pointer;
  background: none;
  border: 1px solid;
  -webkit-border-radius: 999px;
  border-radius: 999px;
  align-items: center;
  justify-items: center;
  width: 42px;
  height: 42px;
  padding: 10px;
  transition: border-color .3s, color .3s, transform .3s cubic-bezier(.16, 1, .3, 1);
  display: inline-grid;
}

.theme-btn[data-astro-cid-hkbrpulz]:hover {
  transform: translateY(-3px);
}

.theme-btn[data-astro-cid-hkbrpulz] svg[data-astro-cid-hkbrpulz] {
  width: 20px;
  height: 20px;
  display: block;
}

.theme-btn[data-astro-cid-hkbrpulz] .icon-sun[data-astro-cid-hkbrpulz] {
  display: none;
}

:root[data-theme="dark"] .theme-btn[data-astro-cid-hkbrpulz] .icon-sun[data-astro-cid-hkbrpulz] {
  display: block;
}

:root[data-theme="dark"] .theme-btn[data-astro-cid-hkbrpulz] .icon-moon[data-astro-cid-hkbrpulz] {
  display: none;
}

.burger[data-astro-cid-hkbrpulz] {
  cursor: pointer;
  z-index: 130;
  background: none;
  border: 0;
  padding: 10px;
  display: none;
}

.burger[data-astro-cid-hkbrpulz] span[data-astro-cid-hkbrpulz] {
  background: currentColor;
  width: 26px;
  height: 2px;
  margin: 6px 0;
  transition: transform .3s, opacity .3s;
  display: block;
}

.site-head[data-astro-cid-hkbrpulz].over-hero .burger[data-astro-cid-hkbrpulz] {
  color: #fff;
}

.site-head[data-astro-cid-hkbrpulz].solid .burger[data-astro-cid-hkbrpulz] {
  color: var(--color-text);
}

.mmenu[data-astro-cid-hkbrpulz] {
  z-index: 120;
  background: var(--brand-blue-deep);
  color: #f8fafc;
  opacity: 0;
  pointer-events: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 48px max(28px, min(8vw, 72px));
  transition: opacity .5s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.mmenu[data-astro-cid-hkbrpulz].open {
  opacity: 1;
  pointer-events: auto;
}

.mmenu[data-astro-cid-hkbrpulz] a[data-astro-cid-hkbrpulz].mlink {
  font-family: var(--font-serif);
  color: #f8fafc;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: max(32px, min(8vw, 52px));
  text-decoration: none;
  transition: color .3s, padding-left .3s, transform .3s;
  display: flex;
}

.mmenu[data-astro-cid-hkbrpulz] a[data-astro-cid-hkbrpulz].mlink:hover {
  color: var(--color-champagne);
  padding-left: 12px;
  transform: translateX(4px);
}

.mmenu[data-astro-cid-hkbrpulz] a[data-astro-cid-hkbrpulz].mlink small[data-astro-cid-hkbrpulz] {
  font-family: var(--font-sans);
  letter-spacing: .2em;
  color: var(--color-detail);
  font-size: 12px;
}

.search-btn[data-astro-cid-hkbrpulz] {
  cursor: pointer;
  color: inherit;
  background: none;
  border: 0;
  -webkit-border-radius: 999px;
  border-radius: 999px;
  align-items: center;
  justify-items: center;
  width: 42px;
  height: 42px;
  padding: 10px;
  display: inline-grid;
}

.search-btn[data-astro-cid-hkbrpulz] svg[data-astro-cid-hkbrpulz] {
  width: 20px;
  height: 20px;
  display: block;
}

.search-overlay[data-astro-cid-hkbrpulz] {
  z-index: 140;
  backdrop-filter: blur(6px);
  background: rgba(13, 59, 115, .72);
  justify-content: center;
  align-items: flex-start;
  padding: 16vh 20px 0;
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.search-overlay[data-astro-cid-hkbrpulz].open {
  display: flex;
}

.search-panel[data-astro-cid-hkbrpulz] {
  background: var(--color-bg-elevated);
  -webkit-border-radius: 16px;
  border-radius: 16px;
  gap: 8px;
  width: 100%;
  max-width: 560px;
  padding: 10px;
  display: flex;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .5);
}

.search-panel[data-astro-cid-hkbrpulz] input[data-astro-cid-hkbrpulz] {
  font: inherit;
  color: var(--color-text);
  background: none;
  border: 0;
  outline: none;
  flex: 1;
  padding: 10px 12px;
  font-size: 17px;
}

.search-panel[data-astro-cid-hkbrpulz] button[data-astro-cid-hkbrpulz] {
  background: var(--color-cta-primary);
  color: var(--color-cta-ink);
  font: inherit;
  cursor: pointer;
  border: 0;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  padding: 10px 20px;
  font-weight: 600;
}

.mmenu[data-astro-cid-hkbrpulz] .mfoot[data-astro-cid-hkbrpulz] {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  display: flex;
}

.mclose[data-astro-cid-hkbrpulz] {
  color: #fff;
  cursor: pointer;
  background: none;
  border: 1px solid rgba(255, 255, 255, .35);
  -webkit-border-radius: 999px;
  border-radius: 999px;
  width: 48px;
  height: 48px;
  font-size: 20px;
  position: absolute;
  top: 24px;
  right: 28px;
}

.reserve-fab[data-astro-cid-hkbrpulz] {
  z-index: 90;
  align-items: center;
  gap: 10px;
  display: flex;
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.wa-fab[data-astro-cid-hkbrpulz] {
  color: #fff;
  background: #1faa55;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  align-items: center;
  justify-items: center;
  width: 52px;
  height: 52px;
  text-decoration: none;
  transition: transform .3s cubic-bezier(.16, 1, .3, 1), box-shadow .3s;
  display: grid;
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, .35);
}

.wa-fab[data-astro-cid-hkbrpulz]:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px -8px rgba(0, 0, 0, .45);
}

footer[data-astro-cid-hkbrpulz] {
  background: var(--brand-blue-deep);
  color: #f8fafc;
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 0;
}

footer[data-astro-cid-hkbrpulz] a[data-astro-cid-hkbrpulz] {
  color: rgba(248, 250, 252, .7);
  text-decoration: none;
  transition: color .3s;
}

footer[data-astro-cid-hkbrpulz] a[data-astro-cid-hkbrpulz]:hover {
  color: #fff;
}

.foot-grid[data-astro-cid-hkbrpulz] {
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  padding: 100px 0 64px;
  display: grid;
}

.foot-grid[data-astro-cid-hkbrpulz] h4[data-astro-cid-hkbrpulz] {
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brand-blue-light);
  font-size: 11px;
  font-family: var(--font-sans);
  margin: 0 0 20px;
  font-weight: 600;
}

.foot-grid[data-astro-cid-hkbrpulz] a[data-astro-cid-hkbrpulz] {
  color: rgba(248, 250, 252, .7);
  padding: 6px 0;
  font-size: 15px;
  display: block;
}

.foot-grid[data-astro-cid-hkbrpulz] a[data-astro-cid-hkbrpulz]:hover {
  color: #fff;
}

.foot-base[data-astro-cid-hkbrpulz] {
  color: rgba(248, 250, 252, .5);
  border-top: 1px solid rgba(255, 255, 255, .1);
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0;
  font-size: 13px;
  display: flex;
}

@media (max-width: 1020px) {
  .site-head[data-astro-cid-hkbrpulz] nav[data-astro-cid-hkbrpulz] {
    display: none;
  }

  .burger[data-astro-cid-hkbrpulz] {
    display: block;
  }
}

@media (max-width: 760px) {
  .foot-grid[data-astro-cid-hkbrpulz] {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 64px 0 40px;
  }

  .reserve-fab[data-astro-cid-hkbrpulz] .btn-text[data-astro-cid-hkbrpulz] {
    display: none;
  }
}

@media (max-width: 480px) {
  .theme-btn[data-astro-cid-hkbrpulz] {
    width: 36px;
    height: 36px;
    padding: 8px;
  }

  .theme-btn[data-astro-cid-hkbrpulz] svg[data-astro-cid-hkbrpulz] {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 760px) {
  body[data-hero="0"] main[data-astro-cid-hkbrpulz] {
    padding-top: 24px;
  }
}

.site-head[data-astro-cid-hkbrpulz].royal {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-hairline);
  font-family: DM Sans, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  transition: background .4s cubic-bezier(.16, 1, .3, 1), border-color .4s;
  position: static;
}

.site-head[data-astro-cid-hkbrpulz].royal .bar[data-astro-cid-hkbrpulz] {
  align-items: center;
  gap: 28px;
  max-width: 1360px;
  padding: 18px max(20px, min(4vw, 40px));
  display: flex;
}

.royal-spacer[data-astro-cid-hkbrpulz] {
  display: none;
}

.site-head[data-astro-cid-hkbrpulz].royal .logo[data-astro-cid-hkbrpulz] {
  flex: none;
  line-height: 0;
}

.site-head[data-astro-cid-hkbrpulz].royal .logo[data-astro-cid-hkbrpulz] img[data-astro-cid-hkbrpulz] {
  filter: brightness(0) saturate() invert(18%) sepia(30%) saturate(1200%) hue-rotate(185deg) brightness(80%) contrast();
  width: auto;
  height: 46px;
  transition: filter .4s;
  display: block;
}

:root[data-theme="dark"] .site-head[data-astro-cid-hkbrpulz].royal .logo[data-astro-cid-hkbrpulz] img[data-astro-cid-hkbrpulz] {
  filter: none;
}

.royal-nav[data-astro-cid-hkbrpulz] {
  gap: max(18px, min(2.4vw, 34px));
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.royal-nav[data-astro-cid-hkbrpulz] a[data-astro-cid-hkbrpulz] {
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-text);
  white-space: nowrap;
  font-family: DM Sans, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color .3s;
  position: relative;
}

.royal-nav[data-astro-cid-hkbrpulz] a[data-astro-cid-hkbrpulz]:after {
  content: "";
  background: var(--color-accent);
  height: 1.5px;
  transition: transform .35s cubic-bezier(.16, 1, .3, 1);
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  transform: scaleX(0);
}

.royal-nav[data-astro-cid-hkbrpulz] a[data-astro-cid-hkbrpulz]:hover:after {
  transform: scaleX(1);
}

.royal-nav[data-astro-cid-hkbrpulz] a[data-astro-cid-hkbrpulz]:hover {
  color: var(--color-accent);
}

.royal-actions[data-astro-cid-hkbrpulz] {
  flex: none;
  align-items: center;
  gap: 10px;
  display: flex;
}

.royal-reserve[data-astro-cid-hkbrpulz] {
  background: var(--color-cta-primary);
  min-height: 46px;
  color: var(--color-cta-ink);
  letter-spacing: .04em;
  white-space: nowrap;
  -webkit-border-radius: 999px;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  padding: 11px 30px;
  font-family: DM Sans, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background .3s, box-shadow .3s, transform .3s cubic-bezier(.16, 1, .3, 1);
  display: inline-flex;
}

.royal-reserve[data-astro-cid-hkbrpulz]:hover {
  background: var(--color-cta-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -8px rgba(30, 90, 168, .3);
}

.site-head[data-astro-cid-hkbrpulz].royal .theme-btn[data-astro-cid-hkbrpulz] {
  border-color: var(--color-border);
  color: var(--color-text);
  width: 40px;
  height: 40px;
}

.site-head[data-astro-cid-hkbrpulz].royal .theme-btn[data-astro-cid-hkbrpulz]:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.site-head[data-astro-cid-hkbrpulz].royal .burger[data-astro-cid-hkbrpulz] {
  color: var(--color-text);
  display: none;
}

@media (max-width: 1020px) {
  .site-head[data-astro-cid-hkbrpulz].royal .bar[data-astro-cid-hkbrpulz] {
    padding: 14px max(16px, min(4vw, 28px));
  }

  .royal-nav[data-astro-cid-hkbrpulz] {
    display: none;
  }

  .site-head[data-astro-cid-hkbrpulz].royal .burger[data-astro-cid-hkbrpulz] {
    display: block;
  }
}

@media (max-width: 760px) {
  .site-head[data-astro-cid-hkbrpulz].royal .bar[data-astro-cid-hkbrpulz] {
    gap: 8px;
    padding: 10px 14px;
  }

  .site-head[data-astro-cid-hkbrpulz].royal .logo[data-astro-cid-hkbrpulz] img[data-astro-cid-hkbrpulz] {
    height: 36px;
  }

  .site-head[data-astro-cid-hkbrpulz].royal .logo[data-astro-cid-hkbrpulz] {
    margin-right: auto;
  }

  .royal-reserve[data-astro-cid-hkbrpulz] {
    -webkit-border-radius: 999px;
    border-radius: 999px;
    min-height: 36px;
    padding: 7px 12px;
    font-size: 12px;
  }

  .site-head[data-astro-cid-hkbrpulz].royal .theme-btn[data-astro-cid-hkbrpulz] {
    width: 36px;
    height: 36px;
  }
}
