:root {
  --coral: #ef4666;
  --coral-dark: #c83255;
  --orange: #f68a34;
  --gold: #ffc94d;
  --teal: #087f87;
  --teal-dark: #07545c;
  --cream: #fff9ee;
  --paper: #fffdf8;
  --ink: #21343a;
  --muted: #607177;
  --sunset-orange: #f47424;
  --shadow: 0 18px 50px rgb(69 64 49 / 14%);
  --radius: 1.5rem;
  --shell: min(1120px, calc(100% - 2rem));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: .75rem;
  left: .75rem;
  padding: .75rem 1rem;
  background: white;
  border-radius: .75rem;
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

.shell { width: var(--shell); margin-inline: auto; }
.shell--narrow { max-width: 850px; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgb(255 253 248 / 92%);
  border-bottom: 1px solid rgb(8 127 135 / 10%);
  backdrop-filter: blur(14px);
}
.nav-shell {
  width: var(--shell);
  min-height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand img { width: 68px; height: 68px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.site-nav a { text-decoration: none; font-weight: 700; color: var(--teal-dark); }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--coral); }
.nav-toggle { display: none; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 690px;
  background:
    radial-gradient(circle at 70% 22%, rgb(255 255 255 / 70%) 0 9%, transparent 25%),
    linear-gradient(160deg, #fff2cf 0%, #ffd28e 31%, #ff9477 68%, #e85a76 100%);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(4px);
}
.hero::before { width: 430px; height: 430px; left: -140px; top: 120px; background: rgb(255 201 77 / 42%); }
.hero::after { width: 360px; height: 360px; right: -130px; bottom: 70px; background: rgb(8 127 135 / 24%); }
.hero__layout {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(380px, 1.05fr);
  align-items: center;
  gap: 3rem;
  padding-block: 3.5rem 5rem;
}
.hero__content { max-width: 620px; }
.eyebrow, .section-kicker {
  margin: 0 0 .7rem;
  color: var(--teal-dark);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .82rem;
}
.hero h1 {
  margin: 0;
  color: var(--coral);
  font-family: Pacifico, cursive;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1.25;
  text-shadow: 0 4px 0 rgb(255 255 255 / 42%);
}
.hero h1 .hero--alternate1 { color: var(--teal); }
.hero h1 .hero--alternate2 { color: var(--sunset-orange); }

.hero__intro { max-width: 610px; margin: 1.5rem 0 0; font-size: 1.18rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: .75rem 1.2rem;
  border: 2px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}
.button--primary { color: white; background: var(--coral); box-shadow: 0 10px 24px rgb(200 50 85 / 25%); }
.button--primary:hover { background: var(--coral-dark); }
.button--secondary { color: var(--teal-dark); background: rgb(255 255 255 / 66%); border-color: white; }
.hero__logo-wrap { display: grid; place-items: center; }
.hero__logo { width: min(100%, 590px); filter: drop-shadow(0 24px 30px rgb(84 61 52 / 24%)); }
.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 58px;
  background: var(--cream);
  clip-path: polygon(0 56%, 5% 42%, 10% 64%, 15% 39%, 20% 59%, 25% 43%, 30% 64%, 35% 42%, 40% 59%, 45% 40%, 50% 62%, 55% 43%, 60% 60%, 65% 41%, 70% 64%, 75% 43%, 80% 59%, 85% 40%, 90% 63%, 95% 43%, 100% 57%, 100% 100%, 0 100%);
}

.section { padding-block: 5.5rem; }
.section h2 {
  margin: 0;
  color: var(--coral);
  font-family: Pacifico, cursive;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}
.section-kicker { text-align: center; color: var(--teal); }
.section-lead { margin: 1.5rem auto 0; font-size: 1.12rem; text-align: center; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.3rem; }
.value-card {
  display: grid;
  justify-items: center;
  padding: 1.35rem;
  text-align: center;
  background: var(--paper);
  border: 1px solid rgb(8 127 135 / 10%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.value-card span { color: var(--coral); font-size: 2rem; }
.value-card strong { color: var(--teal-dark); font-size: 1.12rem; }
.value-card small { color: var(--muted); }

.servers { background: #fff2e2; }
.server-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2.4rem; }
.server-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(190px, .8fr) 1.2fr;
  align-items: center;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.server-card figure { padding: 0; margin: 0;}
.server-card img { width: 100%; height: auto; }
.server-card__content { padding: 2rem; }
.server-card h3 { margin: 0; color: var(--coral); font-family: Pacifico, cursive; font-size: 2rem; font-weight: 400; }
.server-card p { margin-bottom: 0; color: var(--muted); }

.menu-section { background: linear-gradient(180deg, var(--cream), #fff0d0); }
.menu-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--paper);
  border-radius: calc(var(--radius) + .5rem);
  box-shadow: var(--shadow);
}
.menu-group { padding: .25rem; }
.menu-group + .menu-group { border-left: 1px solid rgb(8 127 135 / 15%); padding-left: 2rem; }
.menu-group h3 {
  display: inline-block;
  margin: 0 0 1.2rem;
  padding: .45rem 1.3rem;
  color: white;
  background: var(--coral);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 1rem;
}
.menu-group:nth-child(2) h3 { background: var(--teal); }
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding-block: 1rem;
  border-bottom: 1px dashed rgb(33 52 58 / 20%);
}
.menu-list li:last-child { border-bottom: 0; }
.menu-item { display: grid; }
.menu-item small { color: var(--muted); }
.menu-price { color: var(--teal-dark); font-weight: 800; }

.gallery { background: var(--paper); }
.carousel { position: relative; margin-top: 2.4rem; }
.carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2rem) / 3);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  border-radius: var(--radius);
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel figure { margin: 0; scroll-snap-align: start; overflow: hidden; background: white; border-radius: var(--radius); box-shadow: 0 10px 24px rgb(39 67 69 / 12%); }
.carousel img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.carousel figcaption { padding: .9rem 1rem 1rem; color: var(--teal-dark); font-weight: 700; }
.carousel__button {
  position: absolute;
  z-index: 2;
  top: 42%;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: var(--coral);
  box-shadow: 0 8px 20px rgb(200 50 85 / 25%);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.carousel__button:hover { background: var(--coral-dark); }
.carousel__button--previous { left: -20px; }
.carousel__button--next { right: -20px; }

.site-footer { color: white; background: var(--teal-dark); }
.site-footer .shell { min-height: 110px; display: flex; align-items: center; justify-content: center; gap: 1rem; }
.site-footer img { width: 62px; height: 62px; object-fit: contain; border-radius: 50%; background: white; }
.site-footer p { margin: 0; font-weight: 700; }

@media (max-width: 900px) {
  .hero__layout { grid-template-columns: 1fr; text-align: center; padding-top: 4rem; }
  .hero__content { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__logo { width: min(84vw, 520px); }
  .server-card { grid-template-columns: 1fr; align-items: flex-start; }
  .server-card img { min-height: auto;  }
  .menu-board { grid-template-columns: 1fr; }
  .menu-group + .menu-group { border-top: 1px solid rgb(8 127 135 / 15%); border-left: 0; padding-top: 2rem; padding-left: .25rem; }
  .carousel__track { grid-auto-columns: calc((100% - 1rem) / 2); }
}

@media (max-width: 680px) {
  .nav-toggle {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: .55rem .85rem;
    color: white;
    background: var(--teal);
    border: 0;
    border-radius: 999px;
    font: inherit;
    font-weight: 800;
  }
  .site-nav {
    position: absolute;
    top: 78px;
    right: 1rem;
    left: 1rem;
    display: none;
    padding: 1rem;
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: grid; }
  .site-nav a { padding: .65rem; }
  .hero { min-height: auto; }
  .hero__layout { min-height: auto; gap: 2rem; padding-block: 3rem 5.5rem; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .section { padding-block: 4rem; }
  .values, .server-grid { grid-template-columns: 1fr; }
  .menu-board { padding: 1.25rem; }
  .menu-list li { gap: .65rem; }
  .carousel__track { grid-auto-columns: 86%; }
  .carousel__button { display: none; }
  .site-footer .shell { flex-direction: column; gap: .4rem; padding-block: 1.25rem; text-align: center; }
}

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