/* ============================================================
   Lungguh Coffee & Eatery — style.css
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ─── CSS VARIABLES ─── */
:root {
  --cream: #faf6f0;
  --cream-dark: #f0e9de;
  --brown-light: #c8a882;
  --brown: #8b5e3c;
  --brown-dark: #5a3820;
  --brown-deep: #2e1a0e;
  --teal: #2d7d6e;
  --teal-light: #4aab99;
  --teal-pale: #e0f2ef;
  --gold: #c9973a;
  --text-dark: #1e1008;
  --text-mid: #5a3820;
  --text-light: #9e7d5b;
  --white: #ffffff;
  --shadow-warm: 0 8px 48px rgba(90, 56, 32, 0.14);
  --shadow-card: 0 4px 32px rgba(46, 26, 14, 0.1);
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--brown-deep);
}
::-webkit-scrollbar-thumb {
  background: var(--teal);
  border-radius: 99px;
}

/* ─── HEADER / NAV ─── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background var(--transition),
    box-shadow var(--transition);
}
header.scrolled {
  background: rgba(46, 26, 14, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--teal-light);
}
.logo-fallback {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--brown) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  border: 2px solid var(--teal-light);
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.logo-sub {
  font-size: 10px;
  font-weight: 300;
  color: var(--teal-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 2px;
}

nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
nav a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(250, 246, 240, 0.82);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
nav a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--teal-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
nav a:hover {
  color: var(--teal-light);
}
nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 99px;
  font-weight: 500 !important;
  transition:
    background var(--transition),
    transform var(--transition) !important;
}
.nav-cta:hover {
  background: var(--teal-light) !important;
  transform: translateY(-1px);
}
.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(46, 26, 14, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: var(--cream);
  text-decoration: none;
  transition: color var(--transition);
}
.mobile-nav a:hover {
  color: var(--teal-light);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      160deg,
      rgba(46, 26, 14, 0.82) 0%,
      rgba(45, 125, 110, 0.35) 60%,
      rgba(46, 26, 14, 0.92) 100%
    ),
    url("https://images.unsplash.com/photo-1509042239860-f550ce710b93?w=1800&q=80")
      center/cover no-repeat;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--teal-light);
  opacity: 0.08;
  animation: float linear infinite;
}

@keyframes float {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.08;
  }
  90% {
    opacity: 0.08;
  }
  100% {
    transform: translateY(-20vh) scale(1);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 120px 6% 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45, 125, 110, 0.25);
  border: 1px solid rgba(74, 171, 153, 0.4);
  color: var(--teal-light);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 99px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  animation: fadeUp 0.8s 0.2s both;
}
.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-light);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  animation: fadeUp 0.8s 0.35s both;
}
.hero h1 em {
  font-style: italic;
  color: var(--teal-light);
}

.hero p {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  color: rgba(250, 246, 240, 0.75);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
  animation: fadeUp 0.8s 0.5s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.65s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 16px 32px;
  border-radius: 99px;
  text-decoration: none;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  box-shadow: 0 4px 24px rgba(45, 125, 110, 0.4);
}
.btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(45, 125, 110, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--cream);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 15px 32px;
  border-radius: 99px;
  text-decoration: none;
  border: 1.5px solid rgba(250, 246, 240, 0.3);
  transition:
    border-color var(--transition),
    background var(--transition),
    transform var(--transition);
}
.btn-secondary:hover {
  border-color: var(--teal-light);
  background: rgba(45, 125, 110, 0.15);
  transform: translateY(-3px);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(250, 246, 240, 0.5);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: fadeIn 1s 1.2s both;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(74, 171, 153, 0.8), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
  50% {
    transform: scaleY(0.6);
    opacity: 0.4;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ─── HIGHLIGHTS STRIP ─── */
.highlights {
  background: var(--brown-deep);
  padding: 20px 5%;
  overflow: hidden;
}
.highlights-inner {
  display: flex;
  gap: 48px;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.highlights:hover .highlights-inner {
  animation-play-state: paused;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.h-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: rgba(250, 246, 240, 0.7);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.h-item span.icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(45, 125, 110, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.h-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* ─── SECTION COMMONS ─── */
section {
  padding: 100px 5%;
}

.section-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  border-bottom: 1.5px solid var(--teal);
  padding-bottom: 4px;
  margin-bottom: 16px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--brown-deep);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-light);
  max-width: 520px;
  line-height: 1.7;
}

.text-teal {
  color: var(--teal);
}

/* ─── ABOUT ─── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}
.about-img-accent {
  position: absolute;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  right: -32px;
  bottom: 40px;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-warm);
}
.about-badge {
  position: absolute;
  top: 36px;
  left: -24px;
  background: var(--brown-deep);
  color: var(--cream);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-warm);
  text-align: center;
}
.about-badge strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--teal-light);
  line-height: 1;
}
.about-badge span {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.6);
}

.about-content {
}
.about-content .section-title {
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.feat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--cream-dark);
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}
.feat-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 10px;
}
.feat-card h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--brown-deep);
  margin-bottom: 4px;
}
.feat-card p {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.6;
}

/* ─── ATMOSPHERE TAGS ─── */
.atmo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.atmo-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cream-dark);
  border: 1px solid var(--brown-light);
  color: var(--brown-dark);
  font-size: 12px;
  font-weight: 400;
  padding: 7px 14px;
  border-radius: 99px;
  transition:
    background var(--transition),
    color var(--transition);
}
.atmo-tag:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

/* ─── MENU SECTION ─── */
.menu-section {
  background: var(--brown-deep);
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}
.menu-section::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(45, 125, 110, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.menu-section::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(200, 168, 130, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.menu-section .section-label {
  color: var(--teal-light);
  border-color: var(--teal-light);
}
.menu-section .section-title {
  color: var(--cream);
}
.menu-section .section-subtitle {
  color: rgba(250, 246, 240, 0.55);
}

.menu-block {
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}
.menu-block:last-child {
  margin-bottom: 0;
}

.menu-block-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.menu-block-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--cream);
}
.menu-block-title em {
  font-style: italic;
  color: var(--teal-light);
}

.slider-nav {
  display: flex;
  gap: 10px;
}
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(74, 171, 153, 0.4);
  background: rgba(45, 125, 110, 0.15);
  color: var(--teal-light);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
  backdrop-filter: blur(6px);
}
.slider-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  transform: scale(1.08);
}
.slider-btn:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

.slider-track-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.52s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.menu-card {
  flex: 0 0 calc(50% - 10px);
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--brown-dark);
}
@media (max-width: 640px) {
  .menu-card {
    flex: 0 0 calc(100% - 0px);
  }
}
.menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-card:hover img {
  transform: scale(1.06);
}
.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(46, 26, 14, 0.85) 0%,
    transparent 60%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.menu-card-name {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
}
.menu-card-sub {
  font-size: 12px;
  font-weight: 300;
  color: rgba(250, 246, 240, 0.65);
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.menu-card-zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(250, 246, 240, 0.15);
  border: 1px solid rgba(250, 246, 240, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 16px;
  opacity: 0;
  transition:
    opacity var(--transition),
    background var(--transition);
  backdrop-filter: blur(6px);
}
.menu-card:hover .menu-card-zoom {
  opacity: 1;
}

/* Regular menu — show 4 per row */
.slider-regular .menu-card {
  flex: 0 0 calc(25% - 15px);
}
@media (max-width: 900px) {
  .slider-regular .menu-card {
    flex: 0 0 calc(50% - 10px);
  }
}
@media (max-width: 480px) {
  .slider-regular .menu-card {
    flex: 0 0 100%;
  }
}

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(14, 6, 2, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(8px);
  padding: 20px;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--radius-lg);
  object-fit: contain;
  transform: scale(0.9);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
}
.lightbox.open img {
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(250, 246, 240, 0.1);
  border: 1px solid rgba(250, 246, 240, 0.2);
  color: var(--cream);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover {
  background: var(--teal);
}
.lightbox-caption {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(250, 246, 240, 0.7);
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 16px;
  white-space: nowrap;
}

/* ─── ORDER SECTION ─── */
.order-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--cream);
}

.order-img-wrap {
  position: relative;
}
.order-img-main {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}
.order-img-float {
  position: absolute;
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  bottom: -28px;
  right: -28px;
  border: 5px solid var(--cream);
  box-shadow: var(--shadow-warm);
}

.order-content .section-title {
  margin-bottom: 16px;
}
.order-content p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 36px;
}

.order-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.order-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  border: 1px solid transparent;
}
.order-btn:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-card);
}
.order-btn-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.order-btn-text h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.order-btn-text p {
  font-size: 12px;
  font-weight: 300;
  margin: 0;
  opacity: 0.7;
  line-height: 1.4;
}

.obt-wa {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #15803d;
}
.obt-wa .order-btn-icon {
  background: #dcfce7;
}
.obt-wa .order-btn-text h4 {
  color: #15803d;
}
.obt-wa .order-btn-text p {
  color: #166534;
}

.obt-gf {
  background: #fff7ed;
  border-color: #fed7aa;
  color: #9a3412;
}
.obt-gf .order-btn-icon {
  background: #ffedd5;
}
.obt-gf .order-btn-text h4 {
  color: #9a3412;
}
.obt-gf .order-btn-text p {
  color: #c2410c;
}

.obt-ig {
  background: #fdf2f8;
  border-color: #f9a8d4;
  color: #9d174d;
}
.obt-ig .order-btn-icon {
  background: #fce7f3;
}
.obt-ig .order-btn-text h4 {
  color: #9d174d;
}
.obt-ig .order-btn-text p {
  color: #be185d;
}

/* ─── AMBIANCE GALLERY ─── */
.ambiance {
  background: var(--cream-dark);
  padding: 100px 5%;
}
.ambiance-header {
  text-align: center;
  margin-bottom: 60px;
}
.ambiance-header .section-subtitle {
  margin: 0 auto;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 16px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.gallery-item {
  position: relative;
  overflow: hidden;
}
.gallery-item:first-child {
  grid-row: 1 / 3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(46, 26, 14, 0.5) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

/* ─── LOCATION ─── */
.location-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
}
.location-info {
  background: var(--brown-deep);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-info .section-label {
  color: var(--teal-light);
  border-color: var(--teal-light);
}
.location-info .section-title {
  color: var(--cream);
  margin-bottom: 28px;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.info-row:last-child {
  margin-bottom: 0;
}
.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(45, 125, 110, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.info-row h4 {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 4px;
}
.info-row p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(250, 246, 240, 0.7);
  line-height: 1.65;
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
}
.service-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(45, 125, 110, 0.18);
  border: 1px solid rgba(74, 171, 153, 0.28);
  color: var(--teal-light);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 99px;
}

.location-map {
  position: relative;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  display: block;
  border: 0;
  filter: grayscale(20%) contrast(1.05);
}

/* ─── FOOTER ─── */
footer {
  background: var(--text-dark);
  padding: 64px 5% 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .logo-name {
  font-size: 22px;
  margin-bottom: 12px;
  display: block;
  color: var(--cream);
}
.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(250, 246, 240, 0.45);
  line-height: 1.75;
  margin-bottom: 24px;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(250, 246, 240, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 246, 240, 0.5);
  font-size: 16px;
  text-decoration: none;
  transition:
    border-color var(--transition),
    color var(--transition),
    background var(--transition);
}
.social-link:hover {
  border-color: var(--teal);
  color: var(--teal-light);
  background: rgba(45, 125, 110, 0.15);
}

.footer-col h5 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.4);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(250, 246, 240, 0.55);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col ul li a:hover {
  color: var(--teal-light);
}

.footer-bottom {
  border-top: 1px solid rgba(250, 246, 240, 0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 12px;
  font-weight: 300;
  color: rgba(250, 246, 240, 0.3);
}
.footer-bottom p a {
  color: var(--teal-light);
  text-decoration: none;
}

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ─── BACK TO TOP ─── */
#btt {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(45, 125, 110, 0.5);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity var(--transition),
    transform var(--transition),
    background var(--transition);
}
#btt.visible {
  opacity: 1;
  pointer-events: all;
  transform: none;
}
#btt:hover {
  background: var(--teal-light);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .about {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-visual {
    order: -1;
  }
  .about-img-accent {
    right: 16px;
  }
  .order-section {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 5%;
  }
  .location-section {
    grid-template-columns: 1fr;
  }
  .location-info {
    padding: 60px 5%;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:first-child {
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  section {
    padding: 72px 5%;
  }
  .about-img-accent {
    display: none;
  }
  .about-badge {
    left: 12px;
    top: 16px;
    padding: 14px 16px;
  }
  .about-badge strong {
    font-size: 28px;
  }
  .order-section {
    gap: 32px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-grid .gallery-item {
    height: 220px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .slider-regular .menu-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding-top: 100px;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .slider-regular .menu-card {
    flex: 0 0 100%;
  }
}
