/* ============================================================
   KOTHAK CAFE & PHOTO — style.css
   Design: Editorial Magazine · Bold Blue & White
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --blue-primary: #1a56db; /* Kothak brand blue */
  --blue-dark: #0e3a9e;
  --blue-deeper: #07246b;
  --blue-light: #e8f0fd;
  --blue-mid: #3b76ef;
  --white: #ffffff;
  --off-white: #f7f9ff;
  --gray-light: #eef2fb;
  --gray-mid: #8ea5c8;
  --gray-dark: #2c3a55;
  --text-dark: #0d1b36;
  --text-body: #3a4d6b;

  --font-main: "Plus Jakarta Sans", sans-serif;
  --font-display: "Playfair Display", serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --shadow-soft: 0 4px 30px rgba(26, 86, 219, 0.1);
  --shadow-card: 0 8px 40px rgba(26, 86, 219, 0.14);
  --shadow-deep: 0 20px 60px rgba(7, 36, 107, 0.2);

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --navbar-h: 76px;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-h);
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}

/* ---- Utility ---- */
.container {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(26, 86, 219, 0.08);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-soft);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(1180px, 92vw);
  margin-inline: auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  height: 46px;
  width: 46px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(26, 86, 219, 0.18);
  transition: var(--transition);
}
.logo-img:hover {
  transform: scale(1.06);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-body);
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue-primary);
  background: var(--blue-light);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
  transition: var(--transition);
}
.hamburger:hover {
  background: var(--blue-light);
}
.bar {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open .bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.open .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open .bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--navbar-h);
}

.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: kenBurns 18s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(7, 36, 107, 0.82) 0%,
    rgba(14, 58, 158, 0.68) 45%,
    rgba(26, 86, 219, 0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, 92vw);
  margin-inline: auto;
  padding: 80px 0 60px;
  animation: heroFadeIn 1.1s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.title-accent {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.6);
}
.title-line:nth-child(1) {
  animation: slideIn 0.8s 0.2s both;
}
.title-line:nth-child(2) {
  animation: slideIn 0.8s 0.38s both;
}
.title-line:nth-child(3) {
  animation: slideIn 0.8s 0.54s both;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-tagline {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.12em;
  margin-bottom: 36px;
  animation: heroFadeIn 0.9s 0.7s both;
}

/* HOW DO YOU FEEL TODAY */
.hero-feel {
  margin-bottom: 44px;
  animation: heroFadeIn 0.9s 0.85s both;
}
.feel-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
}
.feel-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.feel-pill {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
  cursor: default;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}
.feel-pill:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: heroFadeIn 0.9s 1s both;
}

/* ---- Hero Scroll Hint ---- */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  right: 56px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: heroFadeIn 1s 1.2s both;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollDown 2s ease infinite;
}
@keyframes scrollDown {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 14px 30px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue-primary);
  color: var(--white);
  border-color: var(--blue-primary);
  box-shadow: 0 6px 24px rgba(26, 86, 219, 0.35);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(26, 86, 219, 0.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--white);
  transform: translateY(-3px);
}
.btn-wa {
  background: #25d366;
  border-color: #25d366;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.3);
}
.btn-wa:hover {
  background: #1db954;
  border-color: #1db954;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrapper {
  overflow: hidden;
  background: var(--blue-primary);
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  gap: 0;
}
.marquee-track span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 20px;
}
.marquee-track .sep {
  color: rgba(255, 255, 255, 0.45);
  padding: 0;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   SECTIONS — shared
   ============================================================ */
.section {
  padding: 110px 0;
}
.section:nth-child(odd) {
  background: var(--white);
}
.section-cafe {
  background: var(--off-white) !important;
}
.section-photobox {
  background: var(--white) !important;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-primary);
  background: var(--blue-light);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--blue-primary);
}

.section-desc {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--text-body);
  max-width: 500px;
  margin-bottom: 30px;
}

/* ---- Split Layout ---- */
.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.section-split.reverse {
  direction: rtl;
}
.section-split.reverse > * {
  direction: ltr;
}

/* ---- Image Frame ---- */
.img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}
.img-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.img-frame:hover img {
  transform: scale(1.04);
}

.img-badge-float {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-primary);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(26, 86, 219, 0.4);
}

/* ---- Info Cards ---- */
.info-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.info-card:hover {
  border-color: var(--blue-primary);
  transform: translateX(5px);
}
.info-card i {
  color: var(--blue-primary);
  font-size: 1.2rem;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}
.info-card strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 3px;
}
.info-card span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ---- Feature List ---- */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-body);
}
.feature-list li i {
  color: var(--blue-primary);
  background: var(--blue-light);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
}

/* ============================================================
   SECTION MENU
   ============================================================ */
.section-menu {
  background: var(--blue-deeper) !important;
  position: relative;
  overflow: hidden;
}
.section-menu::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(26, 86, 219, 0.35), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.section-menu::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 380px;
  height: 380px;
  background: radial-gradient(
    circle,
    rgba(59, 118, 239, 0.25),
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}
.section-menu .section-tag {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
}
.section-menu .section-title {
  color: var(--white);
}
.section-menu .section-desc {
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
}

.menu-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.menu-center .section-desc.menu-desc {
  max-width: 560px;
}

.menu-card-wrapper {
  margin-top: 48px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px);
  padding: 52px 60px;
  max-width: 640px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.menu-card-wrapper:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-5px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}
.menu-card-deco {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.18);
  position: absolute;
  top: 24px;
  right: 30px;
}
.menu-cta-block .menu-subtitle {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  display: block;
  margin-bottom: 12px;
}
.menu-cta-block h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.menu-cta-block p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
  max-width: 440px;
  margin-inline: auto;
}

.btn-menu-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  background: var(--white);
  padding: 18px 40px;
  border-radius: 50px;
  border: 2px solid transparent;
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.18);
  transition: var(--transition);
  cursor: pointer;
}
.btn-menu-big:hover {
  background: var(--blue-light);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 50px rgba(255, 255, 255, 0.25);
}
.btn-arrow {
  font-size: 1.2rem;
  transition: var(--transition);
}
.btn-menu-big:hover .btn-arrow {
  transform: translateX(5px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.75);
}
.footer-top {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.2fr 1.5fr;
  gap: 60px;
  align-items: start;
}

/* Brand */
.footer-brand .footer-logo {
  height: 54px;
  width: 54px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 18px;
}
.footer-tagline {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 26px;
}
.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 18px;
  border-radius: 50px;
  width: fit-content;
  transition: var(--transition);
}
.social-btn i {
  font-size: 1rem;
}
.social-btn:hover {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  color: var(--white);
  transform: translateX(5px);
}

/* Info */
.footer-info h4,
.footer-map h4 {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}
.footer-info ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}
.footer-info li i {
  color: var(--blue-mid);
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
}
.footer-info li a {
  color: var(--blue-mid);
  font-weight: 600;
  transition: var(--transition);
}
.footer-info li a:hover {
  color: var(--white);
}

/* Map */
.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Bottom */
.footer-bottom {
  padding: 22px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}
.footer-bottom strong {
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 48px;
  height: 48px;
  background: var(--blue-primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(26, 86, 219, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: var(--transition);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--blue-dark);
  transform: translateY(-3px);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal-left,
.reveal-right,
.reveal-up {
  opacity: 0;
  transition:
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-left {
  transform: translateX(-50px);
}
.reveal-right {
  transform: translateX(50px);
}
.reveal-up {
  transform: translateY(50px);
}

.reveal-left.visible,
.reveal-right.visible,
.reveal-up.visible {
  opacity: 1;
  transform: translate(0);
}

/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */
@media (max-width: 1024px) {
  .section-split {
    gap: 48px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-map {
    grid-column: 1 / -1;
  }
  .menu-card-wrapper {
    padding: 44px 40px;
  }
}

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --navbar-h: 66px;
  }

  /* Hamburger */
  .hamburger {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: var(--navbar-h);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 20px 28px;
    gap: 4px;
    border-bottom: 1px solid var(--gray-light);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-link {
    padding: 12px 18px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    text-align: left;
  }

  /* Hero */
  .hero-content {
    padding: 60px 0 60px;
  }
  .hero-scroll-hint {
    display: none;
  }
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn {
    padding: 14px 26px;
    font-size: 0.88rem;
  }

  /* Sections */
  .section {
    padding: 72px 0;
  }
  .section-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .section-split.reverse {
    direction: ltr;
  }
  .img-frame img {
    height: 300px;
  }

  /* Menu */
  .menu-card-wrapper {
    padding: 36px 26px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-map {
    grid-column: auto;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .feel-options {
    gap: 8px;
  }
  .feel-pill {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
  .menu-card-wrapper {
    padding: 30px 20px;
  }
  .btn-menu-big {
    padding: 16px 28px;
    font-size: 0.95rem;
  }
}
