:root {
  --reef: #0d8c8f;
  --deep-reef: #075e61;
  --seafoam: #c8f2e8;
  --sand: #f7d69d;
  --sun: #ffc857;
  --coral: #f36f45;
  --hibiscus: #d94a63;
  --ink: #173338;
  --muted: #5d7475;
  --cream: #fff8e8;
  --white: #fffdf6;
  --shadow: 0 18px 50px rgba(19, 72, 78, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, rgba(200, 242, 232, 0.8), rgba(255, 248, 232, 0.95) 42rem),
    var(--cream);
}

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

svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1rem, 4vw, 3rem);
  background: rgba(255, 253, 246, 0.86);
  border-bottom: 1px solid rgba(13, 140, 143, 0.16);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  color: var(--white);
  background: var(--deep-reef);
  border: 3px solid var(--sun);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(7, 94, 97, 0.22);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-links a {
  min-height: 2.5rem;
  padding: 0.65rem 0.95rem;
  color: var(--deep-reef);
  font-weight: 800;
  border-radius: 999px;
}

.nav-links a:hover {
  background: var(--seafoam);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  color: var(--deep-reef);
  background: var(--seafoam);
  border: 0;
  border-radius: 50%;
}

.hero {
  position: relative;
  min-height: min(780px, calc(100vh - 4.2rem));
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: clamp(1.25rem, 4vw, 4rem);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 94, 97, 0.78), rgba(7, 94, 97, 0.24) 46%, rgba(247, 214, 157, 0.05)),
    linear-gradient(0deg, rgba(23, 51, 56, 0.5), rgba(23, 51, 56, 0) 48%);
  pointer-events: none;
}

.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  color: var(--white);
  padding: 8rem 0 2rem;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sun);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(4rem, 11vw, 8.5rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.menu-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.menu-title h3 {
  margin: 0;
}

.order-chip {
  display: inline-flex;
  min-width: 4.4rem;
  min-height: 2rem;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0.38rem 0.7rem;
  color: var(--white);
  background: var(--coral);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(243, 111, 69, 0.24);
  font-size: 0.78rem;
  font-weight: 950;
}

.order-chip:hover {
  background: var(--hibiscus);
}

.hero-text {
  width: min(540px, 100%);
  margin: 1.3rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.45;
}

.hero-actions,
.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button,
.contact-list a,
.float-whatsapp {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 900;
  border-radius: 999px;
}

.button {
  padding: 0.8rem 1.15rem;
}

.button.primary {
  color: var(--deep-reef);
  background: var(--sun);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 253, 246, 0.46);
  background: rgba(255, 253, 246, 0.14);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(7, 94, 97, 0.18);
  border-block: 1px solid rgba(7, 94, 97, 0.18);
}

.quick-info article {
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(255, 253, 246, 0.88);
}

.quick-info span,
.map-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.quick-info strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--deep-reef);
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  line-height: 1;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading p:last-child {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.menu-section {
  background:
    radial-gradient(circle at top left, rgba(255, 200, 87, 0.24), transparent 24rem),
    linear-gradient(180deg, rgba(255, 253, 246, 0), rgba(200, 242, 232, 0.46));
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.menu-item {
  min-height: 10.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid rgba(13, 140, 143, 0.18);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(19, 72, 78, 0.08);
}

.menu-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.menu-item strong {
  width: fit-content;
  padding: 0.42rem 0.7rem;
  color: var(--deep-reef);
  background: var(--seafoam);
  border-radius: 999px;
}

.menu-item.simple strong {
  background: var(--sand);
}

.menu-item.featured {
  color: var(--white);
  background: linear-gradient(135deg, var(--deep-reef), var(--reef));
}

.menu-item.featured p,
.menu-item.featured strong {
  color: var(--white);
}

.menu-item.featured strong {
  background: rgba(255, 255, 255, 0.16);
}

.menu-item.featured .order-chip {
  color: var(--deep-reef);
  background: var(--sun);
  box-shadow: 0 8px 18px rgba(255, 200, 87, 0.22);
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(1rem, 5vw, 4rem);
  align-items: center;
  background: var(--deep-reef);
  color: var(--white);
}

.visit-copy p:not(.eyebrow) {
  color: rgba(255, 253, 246, 0.78);
  font-size: 1.15rem;
}

.contact-list a {
  padding: 0.75rem 1rem;
  color: var(--white);
  border: 1px solid rgba(255, 253, 246, 0.24);
  background: rgba(255, 253, 246, 0.09);
}

.contact-list a:hover {
  background: rgba(255, 253, 246, 0.16);
}

.map-card {
  min-height: 21rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(1.2rem, 4vw, 2rem);
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 200, 87, 0.94), rgba(243, 111, 69, 0.88)),
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(255, 255, 255, 0.18) 14px 16px);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-card p {
  margin: 0;
  color: var(--deep-reef);
  font-size: 1.1rem;
  font-weight: 950;
}

.map-card strong {
  display: block;
  margin: 0.2rem 0 1rem;
  font-size: clamp(2.7rem, 7vw, 6rem);
  line-height: 0.9;
}

.map-card span {
  max-width: 31rem;
  color: rgba(23, 51, 56, 0.74);
  line-height: 1.45;
  text-transform: none;
}

.float-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  padding: 0.85rem 1rem;
  color: var(--white);
  background: #118c57;
  box-shadow: 0 16px 36px rgba(17, 140, 87, 0.35);
}

footer {
  padding: 1.5rem;
  color: var(--muted);
  text-align: center;
  background: var(--cream);
}

footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .quick-info,
  .menu-grid,
  .visit-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.6rem;
    background: var(--white);
    border: 1px solid rgba(13, 140, 143, 0.18);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero {
    min-height: 720px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(7, 94, 97, 0.34), rgba(7, 94, 97, 0.8) 62%, rgba(23, 51, 56, 0.62));
  }

  .hero-copy {
    padding-top: 9rem;
  }

  h1 {
    font-size: clamp(3.7rem, 19vw, 6rem);
  }

  .quick-info,
  .menu-grid,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .menu-item {
    min-height: 9.5rem;
  }

  .float-whatsapp {
    right: 0.75rem;
    bottom: 0.75rem;
  }
}
