/* ===== CSS VARIABLES ===== */
:root {
  --clr-blue-deep: #1b3a6b;
  --clr-blue-mid: #2d5fa8;
  --clr-blue-sky: #4a90d9;
  --clr-yellow: #f7c948;
  --clr-yellow-dark: #e8b124;
  --clr-yellow-pale: #fff6d6;
  --clr-white: #ffffff;
  --clr-cream: #fafaf6;
  --clr-dark: #141414;
  --clr-text: #2a2a2a;
  --clr-muted: #5a6a82;

  --ff-display: "Fraunces", serif;
  --ff-script: "Caveat", cursive;
  --ff-body: "Plus Jakarta Sans", sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-pill: 9999px;

  --shadow-card:
    0 8px 32px rgba(27, 58, 107, 0.1), 0 2px 8px rgba(27, 58, 107, 0.06);
  --shadow-btn: 0 4px 16px rgba(247, 201, 72, 0.4);
  --shadow-nav: 0 2px 24px rgba(27, 58, 107, 0.12);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--ff-body);
  color: var(--clr-text);
  background: var(--clr-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ===== UTILITY ===== */
.u-container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.u-badge {
  display: inline-block;
  font-family: var(--ff-script);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-blue-deep);
  background: var(--clr-yellow);
  border-radius: var(--radius-pill);
  padding: 4px 16px;
  letter-spacing: 0.02em;
}
.u-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  padding: 14px 28px;
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.u-btn--primary {
  background: var(--clr-yellow);
  color: var(--clr-blue-deep);
  box-shadow: var(--shadow-btn);
}
.u-btn--primary:hover {
  background: var(--clr-yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(247, 201, 72, 0.5);
}
.u-btn--outline {
  background: transparent;
  color: var(--clr-blue-deep);
  border: 2px solid var(--clr-blue-deep);
}
.u-btn--outline:hover {
  background: var(--clr-blue-deep);
  color: var(--clr-white);
  transform: translateY(-2px);
}
.u-btn--white {
  background: var(--clr-white);
  color: var(--clr-blue-deep);
}
.u-btn--white:hover {
  background: var(--clr-yellow);
  transform: translateY(-2px);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.reveal--left {
  transform: translateX(-32px);
}
.reveal.reveal--right {
  transform: translateX(32px);
}
.reveal.revealed {
  opacity: 1;
  transform: translate(0);
}

/* ===== DECORATIVE SHAPES ===== */
.deco-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* ========================================
       NAVBAR
    ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 250, 246, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 58, 107, 0.08);
  box-shadow: var(--shadow-nav);
  transition: background var(--transition);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--clr-blue-deep);
  letter-spacing: -0.02em;
}
.navbar__logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--clr-yellow);
}
.navbar__logo-fallback {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--clr-blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--clr-yellow);
  border: 2px solid var(--clr-yellow);
  flex-shrink: 0;
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.navbar__links a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--clr-blue-deep);
  letter-spacing: 0.01em;
  position: relative;
  padding-bottom: 2px;
}
.navbar__links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-yellow);
  border-radius: 2px;
  transition: width var(--transition);
}
.navbar__links a:hover::after {
  width: 100%;
}
.navbar__cta {
  margin-left: 16px;
}

/* HAMBURGER */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  flex-shrink: 0;
}
.navbar__hamburger:hover {
  background: rgba(27, 58, 107, 0.07);
}
.navbar__hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--clr-blue-deep);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.navbar__hamburger.is-active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.navbar__hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar__hamburger.is-active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* MOBILE OVERLAY MENU */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--clr-blue-deep);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.mobile-menu.is-visible {
  opacity: 1;
  pointer-events: all;
}

/* Decorative elements in mobile menu */
.mobile-menu__deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.mobile-menu__deco--1 {
  width: 280px;
  height: 280px;
  background: var(--clr-blue-mid);
  top: -80px;
  right: -80px;
}
.mobile-menu__deco--2 {
  width: 200px;
  height: 200px;
  background: rgba(247, 201, 72, 0.12);
  bottom: -60px;
  left: -60px;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 24px;
}
.mobile-menu__nav a {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(2rem, 8vw, 3rem);
  color: var(--clr-white);
  letter-spacing: -0.02em;
  padding: 12px 24px;
  text-align: center;
  border-radius: var(--radius-md);
  transition:
    color var(--transition),
    background var(--transition);
  width: 100%;
}
.mobile-menu__nav a:hover {
  color: var(--clr-yellow);
  background: rgba(255, 255, 255, 0.05);
}
.mobile-menu__footer {
  position: relative;
  z-index: 1;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.mobile-menu__social {
  display: flex;
  gap: 16px;
}
.mobile-menu__social a {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-size: 1.1rem;
  transition:
    border-color var(--transition),
    background var(--transition);
}
.mobile-menu__social a:hover {
  border-color: var(--clr-yellow);
  background: rgba(247, 201, 72, 0.15);
}
.mobile-menu__tag {
  font-family: var(--ff-script);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .navbar__links {
    display: none;
  }
  .navbar__cta.desktop-only {
    display: none;
  }
  .navbar__hamburger {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
}

/* ========================================
       HERO
    ======================================== */
.hero {
  min-height: 100vh;
  padding-top: 72px;
  background: linear-gradient(145deg, #eaf3ff 0%, #fafaf6 55%, #fff9e6 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__deco-circle-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(74, 144, 217, 0.12) 0%,
    transparent 70%
  );
  top: -150px;
  right: -150px;
}
.hero__deco-circle-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(247, 201, 72, 0.18) 0%,
    transparent 70%
  );
  bottom: -100px;
  left: -80px;
}
.hero__deco-dots {
  position: absolute;
  top: 80px;
  left: 10%;
  opacity: 0.25;
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-block: clamp(60px, 10vh, 120px);
  position: relative;
  z-index: 1;
}
.hero__content {
  max-width: 560px;
}
.hero__kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.hero__kicker-line {
  width: 36px;
  height: 2px;
  background: var(--clr-yellow);
  border-radius: 2px;
}
.hero__kicker-text {
  font-family: var(--ff-script);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-blue-mid);
  letter-spacing: 0.03em;
}
.hero__headline {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.05;
  color: var(--clr-blue-deep);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.hero__headline em {
  font-style: italic;
  color: var(--clr-blue-sky);
  position: relative;
}
.hero__headline .accent {
  color: var(--clr-yellow-dark);
  background: var(--clr-yellow);
  border-radius: 8px;
  padding: 0 8px;
  display: inline-block;
}
.hero__sub {
  font-size: 1.05rem;
  color: var(--clr-muted);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 36px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.hero__stats {
  display: flex;
  gap: 32px;
}
.hero__stat-number {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--clr-blue-deep);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.82rem;
  color: var(--clr-muted);
  font-weight: 500;
  margin-top: 2px;
}

/* Hero Visual */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__img-main {
  width: 100%;
  max-width: 480px;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 64px rgba(27, 58, 107, 0.18);
}
.hero__float-card {
  position: absolute;
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__float-card--rating {
  bottom: 48px;
  left: -32px;
}
.hero__float-card--open {
  top: 48px;
  right: -24px;
}
.hero__float-card-icon {
  font-size: 1.5rem;
}
.hero__float-card-text strong {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--clr-blue-deep);
}
.hero__float-card-text span {
  font-size: 0.78rem;
  color: var(--clr-muted);
}
.hero__float-badge {
  position: absolute;
  top: -24px;
  left: 24px;
  background: var(--clr-yellow);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  font-family: var(--ff-script);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-blue-deep);
  box-shadow: var(--shadow-btn);
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__kicker {
    justify-content: center;
  }
  .hero__sub {
    max-width: 100%;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__stats {
    justify-content: center;
  }
  .hero__visual {
    order: -1;
  }
  .hero__img-main {
    max-width: 380px;
    height: 380px;
  }
  .hero__float-card--rating {
    left: 0;
  }
  .hero__float-card--open {
    right: 0;
  }
}
@media (max-width: 480px) {
  .hero__float-card {
    display: none;
  }
}

/* ========================================
       MARQUEE STRIP
    ======================================== */
.marquee-strip {
  background: var(--clr-blue-deep);
  overflow: hidden;
  padding-block: 14px;
}
.marquee-strip__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 20s linear infinite;
}
.marquee-strip__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-inline: 32px;
  white-space: nowrap;
  font-family: var(--ff-script);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-yellow);
  letter-spacing: 0.02em;
}
.marquee-strip__item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-white);
  opacity: 0.5;
  flex-shrink: 0;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ========================================
       ABOUT / STORY
    ======================================== */
.story {
  padding-block: clamp(60px, 10vw, 120px);
  background: var(--clr-white);
  position: relative;
  overflow: hidden;
}
.story__deco {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(74, 144, 217, 0.06) 0%,
    transparent 70%
  );
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
  pointer-events: none;
}
.story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.story__imgs {
  position: relative;
  height: 480px;
}
.story__img-1 {
  position: absolute;
  width: 75%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  top: 0;
  left: 0;
  box-shadow: var(--shadow-card);
}
.story__img-2 {
  position: absolute;
  width: 55%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  bottom: 0;
  right: 0;
  border: 5px solid var(--clr-white);
  box-shadow: var(--shadow-card);
}
.story__img-sticker {
  position: absolute;
  top: 30px;
  right: 20px;
  background: var(--clr-yellow);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-family: var(--ff-script);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-blue-deep);
  transform: rotate(5deg);
  box-shadow: var(--shadow-btn);
}
.story__content {
}
.story__heading {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--clr-blue-deep);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-block: 16px 20px;
}
.story__heading em {
  font-style: italic;
  color: var(--clr-blue-sky);
}
.story__text {
  font-size: 1rem;
  color: var(--clr-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.story__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.story__feature {
  background: var(--clr-cream);
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid rgba(27, 58, 107, 0.07);
}
.story__feature-icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.story__feature-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--clr-blue-deep);
  margin-bottom: 4px;
}
.story__feature-desc {
  font-size: 0.82rem;
  color: var(--clr-muted);
  line-height: 1.5;
}

@media (max-width: 800px) {
  .story__inner {
    grid-template-columns: 1fr;
  }
  .story__imgs {
    height: 320px;
    margin-bottom: 16px;
  }
  .story__img-1 {
    height: 260px;
  }
  .story__img-2 {
    height: 180px;
  }
}

/* ========================================
       GALLERY SECTION
    ======================================== */
.gallery {
  padding-block: clamp(60px, 10vw, 120px);
  background: linear-gradient(
    180deg,
    var(--clr-cream) 0%,
    var(--clr-yellow-pale) 100%
  );
  overflow: hidden;
}
.gallery__header {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 60px);
}
.gallery__heading {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--clr-blue-deep);
  letter-spacing: -0.02em;
  margin-block: 12px 16px;
}
.gallery__heading em {
  font-style: italic;
  color: var(--clr-yellow-dark);
}
.gallery__sub {
  color: var(--clr-muted);
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.65;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.gallery__item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
}
.gallery__item:nth-child(1) {
  grid-column: 1 / 6;
  grid-row: 1 / 3;
}
.gallery__item:nth-child(2) {
  grid-column: 6 / 9;
  grid-row: 1;
}
.gallery__item:nth-child(3) {
  grid-column: 9 / 13;
  grid-row: 1;
}
.gallery__item:nth-child(4) {
  grid-column: 6 / 10;
  grid-row: 2;
}
.gallery__item:nth-child(5) {
  grid-column: 10 / 13;
  grid-row: 2;
}
.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery__item:hover .gallery__img {
  transform: scale(1.05);
}
.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(27, 58, 107, 0.7) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery__item:hover .gallery__item-overlay {
  opacity: 1;
}
.gallery__item-label {
  font-family: var(--ff-script);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-white);
}

@media (max-width: 768px) {
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery__item:nth-child(1) {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .gallery__item:nth-child(2),
  .gallery__item:nth-child(3),
  .gallery__item:nth-child(4),
  .gallery__item:nth-child(5) {
    grid-column: span 1;
    grid-row: auto;
  }
}
@media (max-width: 480px) {
  .gallery__grid {
    grid-template-columns: 1fr;
  }
  .gallery__item {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
  }
}

/* ========================================
       MENU SECTION
    ======================================== */
.menu-section {
  padding-block: clamp(60px, 10vw, 120px);
  background: var(--clr-blue-deep);
  position: relative;
  overflow: hidden;
}
.menu-section__deco-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(74, 144, 217, 0.25) 0%,
    transparent 70%
  );
  top: -100px;
  left: -100px;
}
.menu-section__deco-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(247, 201, 72, 0.15) 0%,
    transparent 70%
  );
  bottom: -80px;
  right: -80px;
}
.menu-section__inner {
  position: relative;
  z-index: 1;
}
.menu-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.menu-section__heading {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--clr-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-block: 12px 0;
}
.menu-section__heading em {
  font-style: italic;
  color: var(--clr-yellow);
}
.menu-section__desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 360px;
  margin-top: 12px;
}
.menu-section__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.menu-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition:
    background var(--transition),
    transform var(--transition);
  backdrop-filter: blur(8px);
}
.menu-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}
.menu-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}
.menu-card__category {
  font-family: var(--ff-script);
  font-size: 0.9rem;
  color: var(--clr-yellow);
  font-weight: 700;
  margin-bottom: 6px;
}
.menu-card__name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--clr-white);
  margin-bottom: 8px;
}
.menu-card__desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
  margin-bottom: 14px;
}
.menu-card__price {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--clr-yellow);
}
.menu-section__cta {
  text-align: center;
}
.menu-section__cta-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 12px;
}
.menu-section__cta-text a {
  color: var(--clr-yellow);
  font-weight: 600;
}
.menu-section__cta-text a:hover {
  text-decoration: underline;
}

/* ========================================
       TESTIMONIALS
    ======================================== */
.testimonials {
  padding-block: clamp(60px, 10vw, 120px);
  background: var(--clr-white);
  overflow: hidden;
}
.testimonials__header {
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.testimonials__heading {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--clr-blue-deep);
  letter-spacing: -0.02em;
  margin-block: 12px 0;
}
.testimonials__heading em {
  font-style: italic;
  color: var(--clr-blue-sky);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--clr-cream);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(27, 58, 107, 0.07);
  position: relative;
}
.testimonial-card__quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--clr-yellow);
  font-family: var(--ff-display);
  font-weight: 900;
  position: absolute;
  top: 16px;
  right: 24px;
}
.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}
.testimonial-card__stars span {
  color: var(--clr-yellow);
  font-size: 1rem;
}
.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--clr-text);
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--clr-blue-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1rem;
  color: var(--clr-yellow);
  flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--clr-blue-deep);
}
.testimonial-card__handle {
  font-size: 0.8rem;
  color: var(--clr-muted);
}

/* ========================================
       LOCATION / MAP
    ======================================== */
.location {
  padding-block: clamp(60px, 10vw, 120px);
  background: linear-gradient(180deg, var(--clr-cream) 0%, #eaf3ff 100%);
  position: relative;
  overflow: hidden;
}
.location__deco {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(247, 201, 72, 0.1) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.location__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
  position: relative;
  z-index: 1;
}
.location__heading {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--clr-blue-deep);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-block: 12px 20px;
}
.location__heading em {
  font-style: italic;
  color: var(--clr-blue-sky);
}
.location__desc {
  color: var(--clr-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  font-size: 1rem;
}
.location__details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}
.location__detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.location__detail-icon {
  width: 40px;
  height: 40px;
  background: var(--clr-yellow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.location__detail-label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--clr-blue-deep);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}
.location__detail-value {
  font-size: 0.95rem;
  color: var(--clr-text);
  line-height: 1.55;
}
.location__detail-value a {
  color: var(--clr-blue-mid);
  font-weight: 600;
}
.location__detail-value a:hover {
  text-decoration: underline;
}
.location__map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 4px solid var(--clr-white);
}
.location__map-wrap iframe {
  display: block;
}

@media (max-width: 800px) {
  .location__inner {
    grid-template-columns: 1fr;
  }
}

/* ========================================
       INSTAGRAM CTA
    ======================================== */
.instagram-cta {
  padding-block: clamp(60px, 10vw, 100px);
  background: var(--clr-yellow);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.instagram-cta__deco-1 {
  width: 300px;
  height: 300px;
  background: rgba(247, 201, 72, 0.5);
  top: -100px;
  left: -80px;
  border: 80px solid rgba(232, 177, 36, 0.3);
}
.instagram-cta__deco-2 {
  width: 250px;
  height: 250px;
  background: rgba(247, 201, 72, 0.4);
  bottom: -80px;
  right: -60px;
  border: 60px solid rgba(232, 177, 36, 0.3);
}
.instagram-cta__inner {
  position: relative;
  z-index: 1;
}
.instagram-cta__icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}
.instagram-cta__heading {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--clr-blue-deep);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.instagram-cta__sub {
  font-size: 1.05rem;
  color: var(--clr-blue-mid);
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.65;
  margin-bottom: 36px;
}
.instagram-cta__handle {
  font-family: var(--ff-script);
  font-size: 1.3rem;
  font-weight: 700;
  display: block;
  margin-top: 16px;
  color: var(--clr-blue-mid);
}

/* ========================================
       FOOTER
    ======================================== */
.footer {
  background: var(--clr-blue-deep);
  color: rgba(255, 255, 255, 0.7);
  padding-block: 48px 28px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--clr-white);
  margin-bottom: 14px;
}
.footer__brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--clr-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1rem;
  color: var(--clr-blue-deep);
  flex-shrink: 0;
}
.footer__brand-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--clr-yellow);
  flex-shrink: 0;
}
.footer__brand-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  transition:
    border-color var(--transition),
    color var(--transition),
    background var(--transition);
}
.footer__social a:hover {
  border-color: var(--clr-yellow);
  color: var(--clr-yellow);
  background: rgba(247, 201, 72, 0.1);
}
.footer__col-heading {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--clr-white);
  margin-bottom: 18px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}
.footer__links a:hover {
  color: var(--clr-yellow);
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer__copy span {
  color: var(--clr-yellow);
}
.footer__tagline {
  font-family: var(--ff-script);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer__inner > *:first-child {
    grid-column: 1 / -1;
  }
}
@media (max-width: 480px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }
}

/* ========================================
       SCROLL TO TOP
    ======================================== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--clr-yellow);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--clr-blue-deep);
  box-shadow: var(--shadow-btn);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity var(--transition),
    transform var(--transition);
  z-index: 800;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--clr-yellow-dark);
}
