:root {
  --blue: #00497f;
  --navy: #002c4d;
  --orange: #ff6700;
  --orange-soft: #f7931e;
  --lime: #c9e629;
  --sand: #f6f1e8;
  --paper: #ffffff;
  --white: #ffffff;
  --ink: #1f2f3d;
  --muted: #6f7c86;
  --shadow: 0 24px 60px rgba(0, 44, 77, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
   background: var(--navy);
}

body {
  margin: 0;
  max-width: 100%;
  
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(247,147,30,.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--sand) 100%);
}

/* NAVBAR */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 50;
  background: rgba(0, 44, 77, 0.28);
  backdrop-filter: blur(14px);
}

.nav-logo img {
  width: 135px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.nav-links a:hover {
  color: var(--orange-soft);
}


.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  height: 58px;

  padding: 0 18px;

  border-radius: 999px;

  border: 1px solid rgba(255,255,255,.35);

  background: rgba(255,255,255,.08);

  backdrop-filter: blur(12px);

  color: #fff;

  font-weight: 800;

  cursor: pointer;

  transition: .22s ease;
}

.lang-btn:hover {
  background: rgba(255,255,255,.16);
}

.lang-btn img {
  width: 24px;
  height: 24px;

  border-radius: 999px;

  object-fit: cover;

  box-shadow:
    0 2px 8px rgba(0,0,0,.22);
}

.lang-btn span {
  font-size: .9rem;
  letter-spacing: .04em;
}


/* HERO */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 130px 7%;
  background:
    linear-gradient(90deg, rgba(0,44,77,.88), rgba(0,73,127,.42), rgba(0,0,0,.18)),
    url("../img/hero-beach.png") center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: var(--white);
}

.hero-subtitle {
  color: var(--orange-soft);
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: .78rem;
  font-weight: 900;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: clamp(3.4rem, 8vw, 7.4rem);
  line-height: .92;
  margin: 24px 0;
}

.hero p {
  max-width: 560px;
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,.9);
}

.hero-btn {
  display: inline-block;
  margin-top: 24px;
  background: var(--orange);
  color: var(--white);
  padding: 15px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 18px 35px rgba(0,0,0,.24);
}

.hero-btn:hover {
  background: var(--orange-soft);
}

/* SECTIONS */

.featured-section,
.menu-section,
.reviews-section {
  padding: 95px 7%;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header span {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-weight: 900;
  font-size: .78rem;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: clamp(2.4rem, 4.4vw, 4.4rem);
  line-height: 1;
  margin: 12px 0 0;
}

/* GRIDS */

/* FEATURED */

.featured-slider-wrap {
  position: relative;
  background: transparent;
}

.featured-grid {
  display: flex;
  gap: 24px;

  overflow-x: auto;
  scroll-behavior: smooth;

  padding-bottom: 10px;

  scrollbar-width: none;
}

.featured-grid::-webkit-scrollbar {
  display: none;
}

.featured-grid .menu-card {
  flex: 0 0 calc(33.333% - 16px);
}

.featured-slider-wrap,
.featured-grid {
  background: #fff;
}


.featured-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 46px;
  height: 46px;

  border: none;
  border-radius: 50%;

  background: rgba(0,0,0,.55);
  color: #fff;

  font-size: 1.7rem;
  line-height: 1;

  cursor: pointer;

  z-index: 10;

  backdrop-filter: blur(8px);
}

.featured-arrow.left {
  left: -10px;
}

.featured-arrow.right {
  right: -10px;
}

.featured-arrow:hover {
  background: rgba(0,0,0,.75);
}

.featured-section {
  background: #fff !important;
}

.featured-section::before,
.featured-section::after,
.featured-slider-wrap::before,
.featured-slider-wrap::after,
.featured-grid::before,
.featured-grid::after {
  display: none !important;
  content: none !important;
}

.featured-slider-wrap,
.featured-grid {
  background: #fff !important;
  box-shadow: none !important;
}

.featured-grid .menu-card {
  box-shadow: none !important;
}

.featured-dots {
  display: none;
}
.reviews-dots {
  display: none;
}

@media (max-width: 900px) {

  .reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }

  .reviews-dot {
    width: 8px;
    height: 8px;

    border-radius: 999px;

    background: rgba(255,255,255,.28);

    transition: .2s ease;
  }

  .reviews-dot.active {
    width: 22px;
    background: var(--orange);
  }
  
  .featured-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }

  .featured-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(0, 44, 77, .22);
    transition: .2s ease;
  }

  .featured-dot.active {
    width: 22px;
    background: var(--orange);
  }

  .featured-grid .menu-card {
    flex: 0 0 100%;
  }

  .featured-arrow {
    display: none;
  }
}
/* FILTERS */

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.category-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: -18px 0 40px;
}

.category-filters button {
  border: 1px solid rgba(0,44,77,.16);
  background: rgba(255,255,255,.78);
  color: var(--navy);
  padding: 11px 19px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: .2s ease;
}

.category-filters button:hover,
.category-filters button.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* MENU CARDS */

.menu-card {
  position: relative;
  background: var(--paper);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(0,73,127,.10);
  box-shadow: var(--shadow);
  transition: .25s ease;
}

.menu-card:hover {
  transform: translateY(-7px);
}

.menu-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--orange-soft));
  border-radius: 0 0 999px 999px;
  z-index: 2;
}

.menu-card-image {
  height: 235px;
  background: #e9eef2;
  overflow: hidden;
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-card-content {
  padding: 24px;
}

.menu-category {
  color: var(--orange);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.menu-card h3 {
  margin: 10px 0 8px;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  line-height: 1.08;
}

.menu-price {
  color: var(--orange);
  font-size: 1.12rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.menu-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: .95rem;
}

.menu-option-switches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.menu-option-btn {
  border: 1px solid rgba(0,44,77,.10);
  background: #fff;
  color: var(--navy);

  padding: 8px 12px;
  border-radius: 999px;

  font-size: .78rem;
  font-weight: 800;

  cursor: pointer;
  transition: .2s ease;
}

.menu-option-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.menu-option-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.menu-card-image {
  cursor: pointer;
}

/* REVIEWS */

.reviews-section {
  background:
    radial-gradient(circle at top right, rgba(255,103,0,.20), transparent 34%),
    linear-gradient(135deg, var(--navy), var(--blue));
}

.reviews-shell {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.reviews-header {
  text-align: left;
  margin-bottom: 28px;
}

.reviews-header h2 {
  color: var(--white);
}

.reviews-summary {
  position: sticky;
  top: 110px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(16px);
  border-radius: 32px;
  padding: 30px;
  color: var(--white);
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}

.google-label {
  color: var(--orange-soft);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 900;
}

.reviews-summary strong {
  display: block;
  font-size: 4.8rem;
  line-height: 1;
  margin: 18px 0 4px;
  font-family: 'Playfair Display', serif;
}

.summary-stars {
  color: var(--orange-soft);
  letter-spacing: 4px;
  font-size: 1.2rem;
}

.reviews-summary p {
  color: rgba(255,255,255,.78);
  line-height: 1.6;
}

.reviews-summary a {
  display: inline-block;
  margin-top: 16px;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
}

.reviews-slider-wrap {
  position: relative;
  min-width: 0;
  padding: 0 54px;
}

.reviews-grid {
  width: 100%;
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 18px;
  scrollbar-width: none;
}

.reviews-grid::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 360px;
  max-width: 360px;
  scroll-snap-align: start;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(255,255,255,.30);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 20px 50px rgba(0,0,0,.14);
}

.review-top {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.review-top img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.review-top h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
}

.review-stars {
  color: var(--orange);
  letter-spacing: 2px;
  margin-top: 4px;
}

.review-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.review-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--orange);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

.review-arrow.left {
  left: 0;
}

.review-arrow.right {
  right: 0;
}

.review-arrow:hover {
  background: var(--orange-soft);
}

/* CONTACT */

.contact-section {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(0,44,77,.72), rgba(0,44,77,.48)),
    url("../img/contact-beach.jpg") center/cover no-repeat;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255,103,0,.18), transparent 45%);
}

.contact-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 80px 24px;
  color: var(--white);
}

.contact-kicker {
  display: inline-block;
  color: var(--orange-soft);
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: .78rem;
  font-weight: 900;
}

.contact-content h2 {
  margin: 24px 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: .95;
}

.contact-content p {
  max-width: 640px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,.88);
  line-height: 1.8;
  font-size: 1.08rem;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
  max-width: 100%;
}

.contact-btn {
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: .92rem;
  font-weight: 900;
  transition: .25s ease;
  white-space: nowrap;
}

.contact-btn.primary {
  background: var(--orange);
  color: var(--white);
}

.contact-btn.secondary {
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  color: var(--white);
}

.contact-btn:hover {
  transform: translateY(-3px);
}

.contact-address {
  margin-top: 30px;
  color: rgba(255,255,255,.72);
  line-height: 1.8;
  font-size: .95rem;
}

.schedule-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 24px;
}

.schedule-block strong {
  color: #fff;
  font-size: 1.05rem;
  letter-spacing: .03em;
}

/* FOOTER */

.footer {
  background:
    radial-gradient(circle at top left, rgba(255,103,0,.18), transparent 32%),
    linear-gradient(135deg, #002c4d, #00497f);
  color: var(--white);
  padding: 80px 7% 28px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr 1fr 1fr 1fr;
  gap: 42px;
}

.footer-brand img {
  width: 155px;
  margin-bottom: 22px;
}

.footer p,
.footer a {
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  font-size: .95rem;
}

.footer a:not(.footer-careers-btn) {
  display: block;
  text-decoration: none;
  margin-bottom: 10px;
}

.footer a:hover {
  color: var(--orange-soft);
}

.footer h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.footer-rating {
  color: var(--orange-soft) !important;
  font-weight: 900;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.16);
  margin-top: 50px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.62);
  font-size: .85rem;
}

.footer-careers-btn {
  display: inline-flex !important;;
  align-items: center;
  justify-content: center;

  margin-top: 14px;
  padding: 12px 18px;

  border-radius: 999px;

  background: var(--orange);
  color: #fff !important;

  font-weight: 900;
  text-decoration: none;

  transition: .2s ease;
}

.footer-careers-btn:hover {
  background: var(--orange-soft);
  transform: translateY(-2px);
}


.floating-menu-btn {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 9000;

  width: 58px;
  height: 58px;

  border: none;
  border-radius: 999px;

  background: var(--orange);
  color: #fff;

  font-size: 1.6rem;
  font-weight: 900;

  box-shadow: 0 18px 45px rgba(0,0,0,.25);

  cursor: pointer;
}

.floating-menu-panel {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 8999;

  width: min(260px, calc(100vw - 36px));

  padding: 12px;

  border-radius: 24px;

  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);

  box-shadow: 0 24px 60px rgba(0,0,0,.22);
}

.floating-menu-panel.hidden {
  display: none;
}

.floating-menu-list {
  display: grid;
  gap: 8px;
}

.floating-menu-list button {
  border: none;
  border-radius: 16px;

  padding: 13px 14px;

  background: #f6f1e8;
  color: var(--navy);

  font-weight: 900;
  text-align: left;

  cursor: pointer;
}

.floating-menu-list button.active {
  background: var(--orange);
  color: #fff;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

 .footer-grid {
   grid-template-columns: 1fr;
   text-align: center;
 }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .navbar {
    padding: 14px 22px;
  }

  .nav-logo img {
    width: 115px;
  }

  .hero {
    padding: 125px 24px 80px;
  }

  .featured-section,
  .menu-section,
  .reviews-section {
    padding: 70px 20px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .menu-card {
    border-radius: 18px;
  }

  .menu-card::before {
    left: 14px;
    right: 14px;
  }

  .menu-card-image {
    height: 300px;
  }

  .menu-card-image img {
    object-position: bottom;
  }

  .menu-card-content {
    padding: 13px;
  }

  .menu-category {
    font-size: .62rem;
    letter-spacing: .08em;
  }

  .menu-card h3 {
    font-size: .98rem;
  }

  .menu-price {
    font-size: .9rem;
    margin-bottom: 8px;
  }

  .menu-card p {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: max-height .28s ease, opacity .22s ease, margin-top .22s ease;
  }

  .menu-card.show-description p {
    max-height: 240px;
    opacity: 1;
    margin-top: 10px;
  }

  .menu-option-switches {
    gap: 6px;
    margin-top: 10px;
  }

  .menu-option-btn {
    padding: 7px 9px;
    font-size: .68rem;
  }

  .reviews-shell {
    grid-template-columns: 1fr;
  }

  .reviews-summary {
    position: relative;
    top: auto;
  }

  .reviews-header {
    text-align: center;
  }

  .reviews-slider-wrap {
    padding: 0 22px;
    overflow: hidden;
  }

  .reviews-grid {
    min-width: 0;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0 0 18px;
    scrollbar-width: none;
  }

  .reviews-grid::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    width: 100%;
    max-width: none;
    min-width: 0;
    scroll-snap-align: start;
  }

  .review-card p {
    font-size: .95rem;
    line-height: 1.7;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .review-arrow {
    display: none;
  }

  .category-filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    margin: 0 5px 16px;
    padding: 0 20px 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .category-filters::-webkit-scrollbar {
    display: none;
  }

  .category-filters button {
    flex: 0 0 auto;
    padding: 9px 14px;
    font-size: .75rem;
    scroll-snap-align: start;
  }

  .contact-section {
    min-height: auto;
  }

  .contact-content {
    padding: 64px 20px;
  }

  .contact-content h2 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-btn {
    width: min(100%, 320px);
    white-space: normal;
  }

  .footer {
    padding-bottom: 22px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  body {
    padding-bottom: 0;
  }
}