:root {
  --white: #ffffff;
  --blue: #0077b6;
  --dark: #003049;
  --blue-soft: rgba(0, 119, 182, 0.12);
  --blue-mid: rgba(0, 119, 182, 0.28);
  --white-soft: rgba(255, 255, 255, 0.78);
  --white-glass: rgba(255, 255, 255, 0.88);
  --dark-soft: rgba(0, 48, 73, 0.14);
  --shadow: 0 24px 70px rgba(0, 48, 73, 0.18);
  --shadow-hover: 0 34px 95px rgba(0, 48, 73, 0.28);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  background:
    radial-gradient(circle at 18% 10%, var(--white) 0 8%, transparent 26%),
    radial-gradient(circle at 82% 12%, rgba(255,255,255,.72) 0 9%, transparent 28%),
    linear-gradient(160deg, var(--white) 0%, var(--white) 34%, var(--blue) 100%);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 119, 182, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 119, 182, .06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
  z-index: -3;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: var(--blue);
  z-index: 9999;
  box-shadow: 0 0 24px var(--blue);
}

.sea-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -2;
}

.bubble {
  position: absolute;
  width: 160px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .55);
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.9), rgba(255,255,255,.1) 48%, rgba(0,119,182,.08));
  border-radius: 50%;
  filter: blur(.2px);
  opacity: .58;
  animation: floatBubble 15s linear infinite;
}

.bubble-1 { left: 5%; bottom: -180px; animation-duration: 18s; }
.bubble-2 { left: 24%; bottom: -220px; width: 95px; animation-duration: 13s; animation-delay: -5s; }
.bubble-3 { left: 52%; bottom: -190px; width: 130px; animation-duration: 16s; animation-delay: -8s; }
.bubble-4 { left: 73%; bottom: -240px; width: 190px; animation-duration: 21s; animation-delay: -3s; }
.bubble-5 { left: 88%; bottom: -160px; width: 80px; animation-duration: 12s; animation-delay: -7s; }

@keyframes floatBubble {
  0% { transform: translateY(0) translateX(0) scale(.78); opacity: 0; }
  12% { opacity: .5; }
  60% { transform: translateY(-65vh) translateX(34px) scale(1); }
  100% { transform: translateY(-115vh) translateX(-24px) scale(1.18); opacity: 0; }
}

.site-shell {
  position: relative;
  z-index: 1;
}

.hero-section {
  min-height: 100vh;
}

.hero-card {
  max-width: 920px;
  padding: clamp(32px, 7vw, 82px);
  border-radius: 42px;
  background: linear-gradient(145deg, rgba(255,255,255,.95), rgba(255,255,255,.66));
  border: 1px solid rgba(255, 255, 255, .86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-card::before,
.hero-card::after {
  content: '';
  position: absolute;
  inset: auto;
  border-radius: 999px;
  z-index: -1;
  animation: pulseGlow 6s ease-in-out infinite alternate;
}

.hero-card::before {
  width: 380px;
  height: 380px;
  top: -180px;
  right: -150px;
  background: rgba(0, 119, 182, .12);
}

.hero-card::after {
  width: 250px;
  height: 250px;
  left: -115px;
  bottom: -95px;
  background: rgba(0, 119, 182, .10);
  animation-delay: -2s;
}

@keyframes pulseGlow {
  from { transform: scale(.88); opacity: .65; }
  to { transform: scale(1.16); opacity: 1; }
}

.logo-orbit {
  width: clamp(190px, 28vw, 260px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  position: relative;
}

.logo-orbit::before,
.logo-orbit::after,
.orbit-ring {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.logo-orbit::before {
  background: conic-gradient(from 90deg, transparent, var(--blue), transparent, var(--blue), transparent);
  animation: spin 8s linear infinite;
}

.logo-orbit::after {
  inset: 10px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(0,119,182,.16), 0 20px 55px rgba(0,48,73,.16);
}

.orbit-ring {
  inset: -16px;
  border: 1px dashed rgba(0,119,182,.42);
  animation: spinReverse 16s linear infinite;
}

.logo {
  position: relative;
  z-index: 2;
  width: 76%;
  max-width: 220px;
  animation: logoEntrance 1.1s cubic-bezier(.2,.9,.2,1) both, logoFloat 4.5s ease-in-out 1.2s infinite;
}

@keyframes logoEntrance {
  from { opacity: 0; transform: scale(.72) rotate(-10deg); filter: blur(10px); }
  to { opacity: 1; transform: scale(1) rotate(0); filter: blur(0); }
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinReverse { to { transform: rotate(-360deg); } }

.typewriter-text {
  width: max-content;
  max-width: 100%;
  overflow: hidden;
  border-right: 2px solid var(--blue);
  white-space: nowrap;
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.4;
  color: var(--dark);
  letter-spacing: .06em;
  animation: typing 2.6s steps(24, end) .8s both, blink .75s step-end infinite;
}

@keyframes typing {
  from { width: 0; }
  to { width: 18ch; }
}

@keyframes blink {
  50% { border-color: transparent; }
}

.category-dock {
  animation: dockIn .8s ease 2.8s both;
}

@keyframes dockIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.dock-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--dark);
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(0, 119, 182, .18);
  box-shadow: 0 10px 24px rgba(0, 48, 73, .08);
  transition: transform .35s ease, background .35s ease, box-shadow .35s ease, color .35s ease;
}

.dock-pill:hover {
  color: var(--white);
  background: var(--blue);
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(0, 48, 73, .2);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  opacity: .25;
  background: var(--blue);
  animation: drift 9s ease-in-out infinite alternate;
}

.hero-glow-one {
  width: 260px;
  height: 260px;
  top: 14%;
  left: 10%;
}

.hero-glow-two {
  width: 180px;
  height: 180px;
  right: 13%;
  bottom: 17%;
  animation-delay: -4s;
}

@keyframes drift {
  from { transform: translate3d(-18px, 18px, 0) scale(.92); }
  to { transform: translate3d(24px, -28px, 0) scale(1.14); }
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  width: 34px;
  height: 56px;
  border: 2px solid var(--blue);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 9px;
  opacity: .95;
}

.scroll-cue span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  animation: cueDrop 1.6s ease-in-out infinite;
}

@keyframes cueDrop {
  0% { transform: translateY(0); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: translateY(24px); opacity: 0; }
}

.menu-section {
  position: relative;
}

.menu-section::before {
  content: '';
  position: absolute;
  inset: 6% 0 auto;
  height: 62%;
  background: linear-gradient(180deg, rgba(255,255,255,.4), rgba(255,255,255,0));
  pointer-events: none;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.menu-card {
  grid-column: span 6;
  border-radius: 34px;
  background: var(--white-glass);
  border: 1px solid rgba(255, 255, 255, .86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  overflow: hidden;
  position: relative;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease;
}

.menu-card:nth-child(1),
.menu-card:nth-child(5) {
  grid-column: span 7;
}

.menu-card:nth-child(2),
.menu-card:nth-child(4),
.menu-card:nth-child(6) {
  grid-column: span 5;
}

.featured-card {
  grid-column: span 12;
}

.menu-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(0,119,182,.18), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,.4), transparent 58%);
  opacity: .78;
  pointer-events: none;
}

.menu-card:hover {
  transform: translateY(-9px) scale(1.01);
  box-shadow: var(--shadow-hover);
}

.menu-card-head {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: clamp(20px, 3vw, 30px);
  border: 0;
  background: transparent;
  color: var(--dark);
  text-align: left;
}

.menu-number {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(0, 119, 182, .32);
}

.menu-title {
  font-size: clamp(1.45rem, 3vw, 2.3rem);
  font-weight: 900;
  letter-spacing: -.045em;
}

.menu-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  transition: transform .35s ease;
}

.menu-card-head[aria-expanded="true"] .menu-icon {
  transform: rotate(180deg);
}

.menu-card-body {
  position: relative;
  z-index: 1;
  padding: 0 clamp(20px, 3vw, 30px) clamp(22px, 3vw, 32px);
}

.price-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
  padding: 14px 16px;
  color: var(--dark);
  background: rgba(255, 255, 255, .58);
  border: 1px solid rgba(0, 119, 182, .12);
  border-radius: 18px;
  transform: translateX(-10px);
  opacity: 0;
  transition: transform .45s ease, opacity .45s ease, background .3s ease, border-color .3s ease;
}

.collapse.show .price-list li {
  opacity: 1;
  transform: translateX(0);
}

.collapse.show .price-list li:nth-child(1) { transition-delay: .04s; }
.collapse.show .price-list li:nth-child(2) { transition-delay: .08s; }
.collapse.show .price-list li:nth-child(3) { transition-delay: .12s; }
.collapse.show .price-list li:nth-child(4) { transition-delay: .16s; }
.collapse.show .price-list li:nth-child(5) { transition-delay: .20s; }
.collapse.show .price-list li:nth-child(6) { transition-delay: .24s; }
.collapse.show .price-list li:nth-child(7) { transition-delay: .28s; }
.collapse.show .price-list li:nth-child(8) { transition-delay: .32s; }
.collapse.show .price-list li:nth-child(9) { transition-delay: .36s; }
.collapse.show .price-list li:nth-child(10) { transition-delay: .40s; }
.collapse.show .price-list li:nth-child(11) { transition-delay: .44s; }
.collapse.show .price-list li:nth-child(12) { transition-delay: .48s; }
.collapse.show .price-list li:nth-child(13) { transition-delay: .52s; }

.price-list li:not(.section-label):not(.note-line):hover {
  background: var(--white);
  border-color: var(--blue-mid);
  transform: translateX(6px);
}

.price-list strong {
  white-space: nowrap;
  color: var(--blue);
  font-weight: 900;
}

.section-label {
  justify-content: flex-start;
  color: var(--blue) !important;
  font-weight: 900;
  background: rgba(0, 119, 182, .1) !important;
}

.note-line {
  justify-content: flex-start;
  font-size: .95rem;
  background: transparent !important;
  border-style: dashed !important;
}

.price-banner {
  color: var(--blue);
  font-weight: 900;
  text-align: center;
  padding: 16px;
  border-radius: 20px;
  background: rgba(0, 119, 182, .11);
  border: 1px solid rgba(0, 119, 182, .18);
}

.reveal-card {
  opacity: 0;
  transform: translateY(34px) scale(.98);
  transition: opacity .85s ease, transform .85s cubic-bezier(.2,.85,.2,1);
}

.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.site-footer {
  color: var(--white);
  text-align: center;
  padding: 44px 0 54px;
  font-size: .98rem;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255, 255, 255, .72);
  animation: ripple .7s ease-out;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

@media (max-width: 991.98px) {
  .menu-card,
  .menu-card:nth-child(1),
  .menu-card:nth-child(2),
  .menu-card:nth-child(4),
  .menu-card:nth-child(5),
  .menu-card:nth-child(6),
  .featured-card {
    grid-column: span 12;
  }

  .hero-card {
    border-radius: 32px;
  }
}

@media (max-width: 575.98px) {
  body {
    background:
      radial-gradient(circle at 20% 8%, var(--white) 0 7%, transparent 24%),
      linear-gradient(160deg, var(--white) 0%, var(--white) 28%, var(--blue) 100%);
  }

  .hero-card {
    padding: 28px 18px;
    border-radius: 26px;
  }

  .logo-orbit {
    width: 180px;
  }

  .dock-pill {
    width: 100%;
  }

  .menu-grid {
    gap: 18px;
  }

  .menu-card {
    border-radius: 26px;
  }

  .menu-card-head {
    grid-template-columns: auto 1fr auto;
    gap: 11px;
  }

  .menu-number {
    width: 42px;
    height: 42px;
    border-radius: 15px;
  }

  .menu-icon {
    width: 38px;
    height: 38px;
  }

  .price-list li {
    flex-direction: column;
    gap: 4px;
  }

  .price-list strong {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}
