:root {
  --sea: #047f91;
  --sea-dark: #064b67;
  --sea-soft: #e8f7f8;
  --sun: #f4a51c;
  --sun-dark: #d98008;
  --ink: #15333f;
  --muted: #61737a;
  --paper: #fffefb;
  --surface: #ffffff;
  --line: #dce9eb;
  --ifood: #ea1d2c;
  --shadow: 0 15px 40px rgba(13, 70, 85, 0.10);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 100% 0, rgba(244, 165, 28, 0.10), transparent 26rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 10px;
  color: white;
  background: var(--sea-dark);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(4, 127, 145, 0.12);
  background: rgba(255, 254, 251, 0.93);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  min-height: 88px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 62px;
  height: 65px;
  object-fit: contain;
}

.brand span {
  display: grid;
  line-height: 1.1;
}

.brand strong {
  color: var(--sea-dark);
  font-size: 1.15rem;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
}

.header-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border: 0;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.category-nav a:focus-visible,
.info-item:focus-visible,
.video-button:focus-visible,
.floating-order:focus-visible,
.modal-close:focus-visible {
  outline: 3px solid rgba(244, 165, 28, 0.75);
  outline-offset: 3px;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.button-ghost {
  color: var(--sea-dark);
  background: var(--sea-soft);
}

.button-ifood {
  color: white;
  background: var(--ifood);
  box-shadow: 0 9px 23px rgba(234, 29, 44, 0.24);
}

.button-light {
  color: var(--sea-dark);
  background: white;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0 34px;
  align-items: center;
  gap: 48px;
}

.intro h1,
.section-heading h2,
.location-section h2 {
  margin: 0;
  color: var(--sea-dark);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.intro h1 {
  font-size: clamp(2.45rem, 6vw, 4.8rem);
}

.intro-copy > p:last-child {
  max-width: 500px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--sun-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.info-item {
  display: flex;
  min-height: 130px;
  align-items: center;
  gap: 14px;
  padding: 22px;
  text-decoration: none;
  transition: background-color 160ms ease;
}

.info-item + .info-item {
  border-left: 1px solid var(--line);
}

.info-item:hover {
  background: var(--sea-soft);
}

.info-item > span:last-child {
  display: grid;
  min-width: 0;
}

.info-item small,
.info-item em {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
}

.info-item strong {
  margin: 2px 0;
  color: var(--sea-dark);
  font-size: 0.95rem;
}

.info-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: var(--sea);
}

.info-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.category-nav {
  position: sticky;
  top: 88px;
  z-index: 20;
  display: flex;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 10px;
  gap: 9px;
  overflow-x: auto;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 30px rgba(13, 70, 85, 0.08);
  scrollbar-width: none;
}

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

.category-nav a {
  flex: 0 0 auto;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--sea-dark);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.category-nav a:hover {
  color: white;
  background: var(--sea);
}

.menu-wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.menu-section {
  padding: 68px 0 12px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 20px;
}

.section-heading h2,
.location-section h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.section-heading > span {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--sea-dark);
  background: var(--sea-soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.dish-card {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  min-width: 0;
  align-items: start;
  gap: 16px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 9px 30px rgba(13, 70, 85, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.dish-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.dish-card > img {
  width: 148px;
  height: 148px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  border-radius: 16px;
  background: #ffffff;
}

.dish-content {
  display: flex;
  min-width: 0;
  min-height: 148px;
  flex: 1;
  flex-direction: column;
  padding: 3px 3px 3px 0;
}

.dish-content h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.25;
}

.dish-content p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.48;
}

.dish-meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: auto;
  gap: 14px;
  padding-top: 18px;
}

.dish-meta span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.dish-meta strong {
  flex: 0 0 auto;
  color: var(--sea-dark);
  font-size: 1.19rem;
  letter-spacing: -0.025em;
}

.video-button {
  display: inline-flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  padding: 10px 14px;
  border: 1px solid rgba(4, 127, 145, 0.22);
  border-radius: 13px;
  color: var(--sea-dark);
  background: var(--sea-soft);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
}

.video-button[hidden] {
  display: none;
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--sea);
}

.location-section {
  display: flex;
  width: min(1180px, calc(100% - 40px));
  align-items: center;
  justify-content: space-between;
  margin: 88px auto 46px;
  gap: 42px;
  padding: 42px;
  border-radius: 30px;
  color: white;
  background:
    radial-gradient(circle at 90% 0%, rgba(244, 165, 28, 0.36), transparent 19rem),
    linear-gradient(135deg, var(--sea-dark), var(--sea));
  box-shadow: var(--shadow);
}

.location-section .eyebrow {
  color: #ffd47e;
}

.location-section h2 {
  color: white;
}

.location-section p:last-child {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  display: flex;
  width: min(1180px, calc(100% - 40px));
  align-items: center;
  margin: 0 auto;
  gap: 12px;
  padding: 26px 0 100px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer img {
  width: 48px;
  height: 50px;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
  font-weight: 700;
}

.site-footer a {
  margin-left: auto;
  color: var(--sea-dark);
  font-weight: 800;
  text-decoration: none;
}

.floating-order {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  display: none;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  color: white;
  background: var(--ifood);
  box-shadow: 0 12px 34px rgba(234, 29, 44, 0.35);
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
}

.video-modal {
  width: min(900px, calc(100% - 28px));
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  color: var(--ink);
  background: #061b22;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

.video-modal::backdrop {
  background: rgba(2, 22, 28, 0.78);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.video-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 14px 20px;
  color: white;
  background: #061b22;
}

.video-modal-head h2 {
  margin: 0;
  font-size: 1rem;
}

.modal-close {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, 0.12);
  font-family: inherit;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.video-modal video {
  display: block;
  width: 100%;
  max-height: 76vh;
  background: #000;
}

@media (max-width: 960px) {
  .intro {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 42px;
  }

  .location-section {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 135px;
  }

  .header-inner {
    width: min(100% - 24px, 1180px);
    min-height: 76px;
  }

  .brand img {
    width: 52px;
    height: 55px;
  }

  .brand span {
    display: none;
  }

  .header-actions .map-link {
    display: none;
  }

  .button {
    min-height: 44px;
    padding: 10px 15px;
    font-size: 0.86rem;
  }

  .intro,
  .menu-wrap,
  .category-nav,
  .location-section,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .intro {
    padding: 32px 0 24px;
  }

  .intro h1 {
    font-size: clamp(2.35rem, 14vw, 4rem);
  }

  .intro-copy > p:last-child {
    font-size: 1rem;
  }

  .service-info {
    grid-template-columns: 1fr;
  }

  .info-item {
    min-height: 105px;
    padding: 18px;
  }

  .info-item + .info-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .category-nav {
    top: 76px;
    margin-bottom: 0;
    border-radius: 18px;
  }

  .category-nav a {
    padding: 9px 13px;
  }

  .menu-section {
    padding-top: 54px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .dish-card {
    grid-template-columns: 108px minmax(0, 1fr);
    align-items: start;
    gap: 13px;
    padding: 11px;
  }

  .dish-card > img {
    width: 108px;
    height: 108px;
    min-height: 0;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
  }

  .dish-content {
    min-height: 108px;
    padding: 2px 2px 2px 0;
  }

  .dish-content h3 {
    font-size: 1.05rem;
  }

  .dish-content p {
    font-size: 0.84rem;
  }

  .dish-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding-top: 16px;
  }

  .dish-meta strong {
    font-size: 1.1rem;
  }

  .video-button {
    justify-content: flex-start;
    min-height: 40px;
    margin-top: 12px;
    padding: 9px 11px;
    font-size: 0.78rem;
  }

  .location-section {
    margin-top: 62px;
    padding: 30px 24px;
  }

  .location-actions {
    width: 100%;
  }

  .location-actions .button {
    width: 100%;
  }

  .floating-order {
    display: inline-flex;
  }
}

@media (max-width: 430px) {
  .dish-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 11px;
  }

  .dish-card > img {
    width: 96px;
    height: 96px;
  }

  .dish-content {
    min-height: 96px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
