/* =====================================================
   CINTA KITA RESTO — style.css
   Premium Landing Page
   Tema: Elegant · Romantic · High-Class
   Palet: Blush Pink + Cream/Ivory + Gold Accent
   ===================================================== */

/* =====================================================
   1. CSS VARIABLES (Design Tokens)
   ===================================================== */
:root {
  /* === COLORS === */
  --blush: #e8a598; /* Blush Pink utama */
  --blush-light: #f5d5ce; /* Blush light */
  --blush-deep: #c97b6e; /* Blush lebih dalam */
  --cream: #faf6f1; /* Cream/Ivory background */
  --cream-dark: #f0e8df; /* Cream lebih gelap */
  --gold: #c9a84c; /* Gold/Emas aksen */
  --gold-light: #e8d08a; /* Gold light */
  --gold-dark: #a07832; /* Gold lebih gelap */
  --dark: #2a1f1c; /* Teks gelap utama */
  --dark-soft: #5c3d35; /* Teks gelap lembut */
  --white: #ffffff;
  --white-80: rgba(255, 255, 255, 0.8);
  --white-60: rgba(255, 255, 255, 0.6);
  --white-20: rgba(255, 255, 255, 0.2);

  /* === TYPOGRAPHY === */
  --font-serif: "Playfair Display", Georgia, serif;
  --font-body: "Montserrat", sans-serif;
  --font-accent: "Cormorant Garamond", Georgia, serif;

  /* === SPACING === */
  --section-py: 100px;
  --container-w: 1200px;
  --gap: 2rem;

  /* === EFFECTS === */
  --radius: 16px;
  --radius-sm: 8px;
  --shadow-card: 0 12px 48px rgba(42, 31, 28, 0.12);
  --shadow-gold: 0 4px 24px rgba(201, 168, 76, 0.35);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.25s ease;
}

/* =====================================================
   2. RESET & BASE
   ===================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* =====================================================
   3. UTILITY CLASSES
   ===================================================== */
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ---- Scroll Reveal Animations ---- */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal-left {
  transform: translateX(-40px);
}
.reveal-right {
  transform: translateX(40px);
}

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* Delay helpers */
.delay-1 {
  transition-delay: 0.1s !important;
}
.delay-2 {
  transition-delay: 0.2s !important;
}
.delay-3 {
  transition-delay: 0.3s !important;
}
.delay-4 {
  transition-delay: 0.4s !important;
}
.delay-5 {
  transition-delay: 0.5s !important;
}

/* ---- Section label (ornamental) ---- */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.section-label.centered {
  justify-content: center;
}
.label-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  max-width: 60px;
}
.label-line.light {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
}

/* ---- Section Titles ---- */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 1.2rem;
}
.section-title.centered {
  text-align: center;
}
.section-title em {
  font-style: italic;
  color: var(--blush-deep);
}
.section-title.light {
  color: var(--white);
}
.section-title.light em {
  color: var(--gold-light);
}

.section-subtitle {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
  color: var(--dark-soft);
  font-size: 0.95rem;
  line-height: 1.8;
}

.section-header {
  margin-bottom: 3.5rem;
}

/* Section watermark decorative text */
.section-watermark {
  position: absolute;
  top: 50%;
  left: -0.5rem;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: clamp(80px, 15vw, 180px);
  font-weight: 700;
  color: rgba(232, 165, 152, 0.07);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: -0.05em;
  z-index: 0;
}
.section-watermark.right {
  left: auto;
  right: -0.5rem;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.5);
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn-primary > * {
  position: relative;
  z-index: 1;
}
.btn-primary.large {
  padding: 18px 42px;
  font-size: 0.88rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: var(--white-20);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: transparent;
  color: var(--gold-dark);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-gold-full {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: 50px;
  margin-top: 0.5rem;
  transition: var(--transition);
}
.btn-gold-full:hover {
  transform: scale(1.03);
}

/* =====================================================
   4. PRELOADER
   ===================================================== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.preloader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: preloaderPulse 1.5s ease infinite;
}
.preloader-logo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--blush);
}
.preloader-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--dark);
  letter-spacing: 0.05em;
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: var(--cream-dark);
  border-radius: 2px;
  overflow: hidden;
}
.preloader-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blush), var(--gold));
  border-radius: 2px;
  animation: preloaderBar 1.8s ease forwards;
}

@keyframes preloaderPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
@keyframes preloaderBar {
  to {
    width: 100%;
  }
}

/* =====================================================
   5. NAVBAR
   ===================================================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition:
    background var(--transition),
    box-shadow var(--transition),
    padding var(--transition);
  padding: 0;
}

/* Default: transparent */
#navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 8, 5, 0.15);
  backdrop-filter: blur(0px);
  transition: var(--transition);
}

/* Scrolled state */
#navbar.scrolled::before {
  background: rgba(42, 31, 28, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.2);
}

.nav-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
}
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 2px 12px rgba(201, 168, 76, 0.3);
}
.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--gold-light);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2rem);
}
.nav-link {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition-fast);
  position: relative;
  padding-bottom: 4px;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transition: transform var(--transition-fast);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* CTA Nav Button */
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 2px 16px rgba(201, 168, 76, 0.4);
}
.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.5);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-fast);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(42, 31, 28, 0.97);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mobile-link {
  display: block;
  padding: 10px 0;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color var(--transition-fast);
}
.mobile-link:hover {
  color: var(--gold);
}

/* =====================================================
   6. HERO SECTION
   ===================================================== */
.hero-section {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 12s ease forwards;
}
@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(42, 31, 28, 0.72) 0%,
    rgba(42, 31, 28, 0.5) 40%,
    rgba(90, 35, 28, 0.65) 100%
  );
}

/* Floating petals */
.petals-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.petal {
  position: absolute;
  color: rgba(255, 200, 180, 0.15);
  font-size: 1.5rem;
  animation: floatPetal linear infinite;
}
.p1 {
  left: 10%;
  top: -20%;
  font-size: 1rem;
  animation-duration: 18s;
  animation-delay: 0s;
}
.p2 {
  left: 30%;
  top: -20%;
  font-size: 0.7rem;
  animation-duration: 22s;
  animation-delay: 3s;
}
.p3 {
  left: 60%;
  top: -20%;
  font-size: 1.2rem;
  animation-duration: 16s;
  animation-delay: 6s;
}
.p4 {
  left: 80%;
  top: -20%;
  font-size: 1.5rem;
  animation-duration: 20s;
  animation-delay: 2s;
}
.p5 {
  left: 50%;
  top: -20%;
  font-size: 0.8rem;
  animation-duration: 24s;
  animation-delay: 9s;
}

@keyframes floatPetal {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(120vh) rotate(720deg);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(1rem, 5vw, 2rem);
  max-width: 800px;
  width: 100%;
}

/* Ornament */
.hero-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 1.2rem;
}
.ornament-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.ornament-line + .ornament-icon + .ornament-line {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.ornament-icon {
  color: var(--gold);
  font-size: 0.85rem;
  animation: heartBeat 1.8s ease infinite;
}
@keyframes heartBeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.4rem;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
.hero-title em {
  font-style: italic;
  color: var(--blush-light);
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 3rem;
}

/* Scroll indicator */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-text {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}
.scroll-dot {
  width: 1px;
  height: 16px;
  background: var(--gold);
  position: absolute;
  top: 0;
  animation: scrollDot 2s ease infinite;
}
@keyframes scrollDot {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateY(250%);
    opacity: 0;
  }
}

/* =====================================================
   7. ABOUT SECTION
   ===================================================== */
.about-section {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

/* Images */
.about-images {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/5;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
}
.about-img-main:hover img {
  transform: scale(1.04);
}

.about-img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 45%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(42, 31, 28, 0.2);
  border: 4px solid var(--white);
}
.about-img-accent img {
  width: 100%;
  aspect-ratio: 1;
}

/* Floating badge */
.about-badge {
  position: absolute;
  bottom: -12px;
  left: -12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  box-shadow: var(--shadow-gold);
  line-height: 1.3;
  z-index: 2;
}
.about-badge i {
  font-size: 1.1rem;
}

/* Text */
.about-lead {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--blush-deep);
  margin-bottom: 1.2rem;
  line-height: 1.7;
}
.about-body {
  font-size: 0.92rem;
  color: var(--dark-soft);
  margin-bottom: 1rem;
  line-height: 1.85;
}

/* Feature pills */
.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 1.5rem 0 2rem;
}
.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  background: var(--blush-light);
  color: var(--blush-deep);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.feature-pill i {
  color: var(--blush-deep);
}

/* =====================================================
   8. OUR PLACE / GALLERY SECTION
   ===================================================== */
.place-section {
  padding: var(--section-py) 0;
  background: var(--cream-dark);
  position: relative;
}

/* Masonry-like Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
  margin-bottom: 2.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--cream);
}
.gallery-item img {
  width: 100%;
  height: 240px;
  transition: transform 0.6s ease;
}
.gallery-item.tall img {
  height: 500px;
}
.gallery-item.wide {
  grid-column: span 2;
}
.gallery-item.wide img {
  height: 240px;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* Overlay on hover */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(42, 31, 28, 0.75) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}

.place-cta {
  text-align: center;
}

/* =====================================================
   9. QUOTE DIVIDER
   ===================================================== */
.quote-divider {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) 0;
  text-align: center;
  overflow: hidden;
}
.quote-bg {
  position: absolute;
  inset: 0;
}
.quote-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quote-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 31, 28, 0.85),
    rgba(90, 30, 20, 0.8)
  );
}
.quote-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 2rem;
}
.quote-icon {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 1.2rem;
}
blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 1.2rem;
}
cite {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* =====================================================
   10. MENU SECTION
   ===================================================== */
.menu-section {
  padding: var(--section-py) 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

/* Menu Tabs */
.menu-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 3rem;
}
.menu-tab {
  padding: 9px 24px;
  border: 1.5px solid var(--blush);
  border-radius: 50px;
  background: transparent;
  color: var(--dark-soft);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
}
.menu-tab:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.menu-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: transparent;
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(42, 31, 28, 0.07);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  border: 1px solid rgba(232, 165, 152, 0.2);
}
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}
.menu-card.hidden {
  display: none;
}

.menu-card-img {
  position: relative;
  overflow: hidden;
}
.menu-card-img img {
  width: 100%;
  height: 200px;
  transition: transform 0.6s ease;
}
.menu-card:hover .menu-card-img img {
  transform: scale(1.06);
}

/* Badges */
.menu-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  background: rgba(42, 31, 28, 0.7);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
}
.menu-badge.chef {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}
.menu-badge.popular {
  background: linear-gradient(135deg, var(--blush-deep), var(--blush));
}

.menu-card-body {
  padding: 1.2rem 1.4rem;
}
.menu-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.menu-desc {
  font-size: 0.82rem;
  color: var(--dark-soft);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.8rem;
  border-top: 1px solid var(--cream-dark);
}
.menu-price {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-dark);
}
.menu-dots {
  color: var(--blush);
  font-size: 0.7rem;
  letter-spacing: 4px;
}

/* Full Menu CTA */
.menu-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--blush-light), var(--cream));
  padding: 3rem 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(232, 165, 152, 0.3);
}
.menu-cta-text {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--dark-soft);
  margin-bottom: 1.5rem;
}

/* =====================================================
   11. RESERVATION SECTION
   ===================================================== */
.reservation-section {
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
}
.reservation-bg {
  position: absolute;
  inset: 0;
}
.reservation-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reservation-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(42, 31, 28, 0.92) 50%,
    rgba(92, 38, 32, 0.85) 100%
  );
}

.reservation-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

/* Info left */
.reservation-lead {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
  line-height: 1.8;
  font-style: italic;
}

/* Contact items */
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 2rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: var(--transition-fast);
}
.contact-item:not(.no-hover):hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold);
  transform: translateX(4px);
}
.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-icon.wa {
  background: #25d366;
  color: var(--white);
}
.contact-icon.ig {
  background: linear-gradient(
    135deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  color: var(--white);
}
.contact-icon.loc {
  background: var(--gold);
  color: var(--white);
}

.contact-detail {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.contact-value {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
}
.contact-arrow {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 12px;
}
.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}
.social-btn.wa {
  background: #25d366;
}
.social-btn.ig {
  background: linear-gradient(
    135deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}
.social-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Map & Quick Reserve */
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.2rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.quick-reserve-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 1.8rem;
  color: var(--white);
}
.quick-reserve-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.quick-reserve-title i {
  color: var(--blush);
}
.quick-reserve-card > p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.4rem;
  line-height: 1.7;
}

.btn-wa-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: #25d366;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
}
.btn-wa-large i {
  font-size: 1.3rem;
}
.btn-wa-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.open-hours {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
}

/* =====================================================
   12. FOOTER
   ===================================================== */
.footer {
  background: var(--dark);
}

.footer-top {
  padding: 5rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr 1.3fr;
  gap: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}
.footer-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.footer-logo-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo-sub {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--gold-light);
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 260px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  transition: var(--transition-fast);
}
.footer-social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: scale(1.1);
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.3rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}
.footer-links a:hover {
  color: var(--blush-light);
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-reserve-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.btn-footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: #25d366;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
}
.btn-footer-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.5rem 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}
.footer-love {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
}
.footer-love i {
  color: var(--blush);
}

/* =====================================================
   13. FLOATING BUTTONS
   ===================================================== */
.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.floating-wa:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.6);
}
.floating-wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  white-space: nowrap;
  background: var(--dark);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}
.floating-wa-tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark);
}
.floating-wa:hover .floating-wa-tooltip {
  opacity: 1;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: rgba(42, 31, 28, 0.85);
  backdrop-filter: blur(8px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--gold-dark);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* =====================================================
   14. RESPONSIVE — TABLET (max 1024px)
   ===================================================== */
@media (max-width: 1024px) {
  :root {
    --section-py: 80px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-images {
    max-width: 520px;
    margin: 0 auto;
  }
  .about-img-main {
    aspect-ratio: 16/10;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reservation-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  /* Hide desktop nav CTA, show hamburger */
  .btn-nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-links {
    display: none;
  }
  .mobile-menu {
    display: block;
  }
}

/* =====================================================
   15. RESPONSIVE — MOBILE (max 640px)
   ===================================================== */
@media (max-width: 640px) {
  :root {
    --section-py: 60px;
  }

  /* Hero */
  .hero-tagline br {
    display: none;
  }

  /* Gallery: single column */
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item img,
  .gallery-item.tall img,
  .gallery-item.wide img {
    height: 220px;
  }
  .gallery-item.wide {
    grid-column: span 1;
  }

  /* Menu: single column */
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .menu-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
  }

  /* About images: simplify */
  .about-img-accent {
    position: static;
    width: 55%;
    margin: 1rem auto 0;
    border-radius: var(--radius-sm);
  }
  .about-badge {
    display: none;
  }

  /* Footer: stack */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  /* Quote */
  blockquote {
    font-size: 1.2rem;
  }

  /* Floating WA tooltip: hide on mobile */
  .floating-wa-tooltip {
    display: none;
  }
}

/* =====================================================
   16. GALLERY — 2col on tablet
   ===================================================== */
@media (min-width: 641px) and (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item.tall img {
    height: 340px;
  }
}
