@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors */
  --bg-darkest: #06140d;
  --bg-dark: #0b291b;
  --bg-card: #113826;
  --bg-card-hover: #164831;
  --primary: #d45b34; /* Terracotta */
  --primary-glow: rgba(212, 91, 52, 0.45);
  --accent: #d4af37; /* Gold */
  --accent-glow: rgba(212, 175, 55, 0.35);
  --text-light: #faf9f6; /* Cream */
  --text-muted: #88a492; /* Sage green */
  --white: #ffffff;
  
  /* Fonts */
  --font-title: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  
  /* Structural and transitions */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-xl: 36px;
  --ease-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
  --shadow-glow-gold: 0 10px 30px rgba(212, 175, 55, 0.15), 0 0 0 1.5px var(--accent);
  --shadow-glow-terracotta: 0 12px 35px rgba(212, 91, 52, 0.25), 0 0 0 1.5px var(--primary);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background-color: var(--bg-darkest);
  color: var(--text-light);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darkest);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-card);
  border: 2px solid var(--bg-darkest);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Common Layout Elements */
.wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  position: relative;
  padding: 8rem 0;
  z-index: 10;
}

.s-header {
  margin-bottom: 4rem;
  max-width: 650px;
}

.s-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.s-tag::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 2px;
  background-color: var(--primary);
}

.s-title {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-light);
}

.s-title span {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.s-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 1.2rem;
  max-width: 550px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: var(--ease-smooth);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #a63f1e);
  color: var(--text-light);
  box-shadow: 0 8px 25px rgba(212, 91, 52, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(212, 91, 52, 0.5);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: var(--text-light);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: var(--text-light);
  color: var(--bg-darkest);
  border-color: var(--text-light);
  transform: translateY(-3px);
}

/* ===== STICKY HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: var(--ease-smooth);
  border-bottom: 1.5px solid transparent;
}

header.scrolled {
  padding: 0.9rem 0;
  background: rgba(6, 20, 13, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1.5px solid rgba(212, 175, 55, 0.15);
}

.nav-w {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-main {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 0.05em;
  line-height: 1;
}

.logo-main span {
  color: var(--accent);
}

.logo-sub {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-top: 0.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition-fast);
  position: relative;
  padding: 0.4rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--ease-smooth);
}

.nav-links a:hover {
  color: var(--text-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--accent);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-phone {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: var(--r-sm);
  transition: var(--transition-fast);
}

.nav-phone:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
  color: var(--accent);
}

.nav-btn-cta {
  padding: 0.6rem 1.4rem;
  font-size: 0.8rem;
  border-radius: var(--r-sm);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 110;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--text-light);
  border-radius: 5px;
  position: absolute;
  transition: var(--ease-smooth);
}

.mobile-menu-toggle span:nth-child(1) { top: 0; }
.mobile-menu-toggle span:nth-child(2) { top: 10px; }
.mobile-menu-toggle span:nth-child(3) { top: 20px; }

/* Mobile Menu Open State */
.mobile-menu-toggle.open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
  background-color: var(--accent);
}
.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
  background-color: var(--accent);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 10rem 0 6rem;
  overflow: hidden;
  background-image: linear-gradient(rgba(6, 20, 13, 0.75), rgba(6, 20, 13, 0.95)), url('../images/hero_bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Halftone/Grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(212, 175, 55, 0.05) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 1;
}

/* Radial golden glow for deep lighting */
.hero::after {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-w {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--accent);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-tag span {
  display: block;
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 0.4; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.4; }
}

.hero h1 {
  font-family: var(--font-title);
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.hero h1 span.hl {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero h1 span.hl-serif {
  font-style: italic;
  font-weight: 400;
  color: var(--text-light);
  display: inline-block;
  margin-left: 0.25rem;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.2rem;
  max-width: 540px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  border-left: 3px solid var(--primary);
  padding-left: 1.2rem;
}

.proof-item {
  display: flex;
  flex-direction: column;
}

.proof-score {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
}

.proof-score span {
  font-size: 1.1rem;
  color: var(--text-light);
}

.proof-txt {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.1rem;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* Floating Interactive Ingredients on Hero */
.hero-visual {
  position: relative;
  width: 100%;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-badge-wrap {
  position: relative;
  background: var(--bg-card);
  border: 2px solid var(--accent);
  border-radius: var(--r-xl);
  padding: 3.5rem 2.2rem;
  width: 320px;
  text-align: center;
  box-shadow: var(--shadow-premium), 0 30px 60px rgba(0, 0, 0, 0.4);
  transform: rotate(-3deg);
  transition: var(--ease-smooth);
}

.hero-badge-wrap::before {
  content: 'HUNG YEN';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--text-light);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  padding: 0.25rem 1rem;
  border-radius: 100px;
  box-shadow: 0 4px 10px rgba(212, 91, 52, 0.3);
}

.hero-badge-wrap:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: var(--shadow-glow-gold);
}

.hero-badge-title {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.hero-badge-subtitle {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.hero-badge-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.8rem;
}

.hero-badge-btn {
  width: 100%;
}

/* Floating Elements style */
.floating-elem {
  position: absolute;
  pointer-events: auto;
  user-select: none;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
  z-index: 10;
  cursor: grab;
  transition: transform 0.1s ease-out;
}

.floating-elem:active {
  cursor: grabbing;
}

.leaf-1 {
  top: 15%;
  left: 5%;
  width: 50px;
  height: 50px;
  animation: float-slow 6s ease-in-out infinite;
}

.leaf-2 {
  bottom: 10%;
  right: 5%;
  width: 45px;
  height: 45px;
  animation: float-mid 5s ease-in-out infinite alternate;
}

.star-anise {
  top: 10%;
  right: 15%;
  width: 55px;
  height: 55px;
  animation: rotate-slow 18s linear infinite;
}

.chili-slice {
  bottom: 20%;
  left: 10%;
  width: 35px;
  height: 35px;
  animation: float-fast 4s ease-in-out infinite alternate;
}

@keyframes float-slow {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(15deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-mid {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-18px) rotate(-20deg); }
}

@keyframes float-fast {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-8px) rotate(35deg); }
}

@keyframes rotate-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== TRUST TICKER ===== */
.trust-ticker {
  background-color: var(--bg-card);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.8rem 0;
  position: relative;
  z-index: 20;
  overflow: hidden;
}

.ticker-wrap {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-scroll {
  display: flex;
  gap: 4rem;
  animation: ticker-left 25s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.ticker-item span {
  color: var(--accent);
}

.ticker-sep {
  color: var(--primary);
  font-size: 1.2rem;
}

@keyframes ticker-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SPECIALTIES SECTION ("Petits Blocs") ===== */
.specialties {
  background-color: var(--bg-darkest);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
}

.spec-card {
  background-color: var(--bg-card);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  transition: var(--ease-smooth);
  border: 1.5px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.spec-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow-gold);
}

.spec-card.hot {
  border-color: rgba(212, 91, 52, 0.25);
  background-color: rgba(17, 56, 38, 0.6);
}

.spec-card.hot:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow-terracotta);
}

.spec-img-wrap {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.spec-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.spec-card:hover .spec-img {
  transform: scale(1.08);
}

.spec-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background-color: var(--accent);
  color: var(--bg-darkest);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.spec-card.hot .spec-badge {
  background-color: var(--primary);
  color: var(--text-light);
}

.spec-body {
  padding: 2.2rem 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.spec-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.6rem;
  gap: 1rem;
}

.spec-name {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-light);
}

.spec-price {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.spec-tagline {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

.spec-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.spec-ingredients {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.2rem;
}

.spec-ingredients li {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.25rem 0.6rem;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

/* ===== CONCEPT SECTION ===== */
.concept {
  background-color: var(--bg-dark);
}

.concept-w {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.concept-visual {
  position: relative;
  height: 480px;
}

.concept-img-card {
  width: 80%;
  height: 380px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 2px solid rgba(212, 175, 55, 0.15);
}

.concept-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.concept-badge-card {
  position: absolute;
  bottom: 40px;
  right: 0;
  width: 50%;
  background-color: var(--bg-card);
  border: 1.5px solid var(--accent);
  border-radius: var(--r-md);
  padding: 1.8rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
}

.concept-badge-title {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.concept-badge-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.concept-text h3 {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.concept-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.concept-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 2.2rem;
}

.concept-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-light);
}

.concept-features li svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* ===== MENU & GALLERY SECTION ===== */
.menu-gallery {
  background-color: var(--bg-darkest);
}

.menu-filter {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--ease-smooth);
}

.filter-btn:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-light);
}

.filter-btn.active {
  background-color: var(--accent);
  color: var(--bg-darkest);
  border-color: var(--accent);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.25);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  background-color: var(--bg-card);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(255, 255, 255, 0.02);
  transition: var(--ease-smooth);
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.2);
}

.gallery-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-img-wrap img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 20, 13, 0.6);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  width: 44px;
  height: 44px;
  background-color: var(--accent);
  color: var(--bg-darkest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transform: scale(0.8);
  transition: var(--ease-smooth);
}

.gallery-item:hover .gallery-icon {
  transform: scale(1);
}

.gallery-info {
  padding: 1.2rem;
}

.gallery-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.3rem;
  gap: 0.5rem;
}

.gallery-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
}

.gallery-price {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.gallery-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Lightbox styles */
.lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(6, 20, 13, 0.95);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 80%;
  box-shadow: var(--shadow-premium);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox.open .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.06);
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--text-light);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  background-color: var(--primary);
  color: var(--text-light);
}

/* ===== RESERVATION WIDGET SECTION ===== */
.reservation {
  background-color: var(--bg-dark);
  background-image: linear-gradient(rgba(11, 41, 27, 0.9), rgba(11, 41, 27, 0.9)), url('../images/hero_bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.reservation-w {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.res-info-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.reservation h2 {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.reservation h2 span {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.res-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2.2rem;
}

.res-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.res-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-light);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.res-features li span {
  color: var(--accent);
}

.res-features li svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

/* Form Card */
.res-card {
  background-color: var(--bg-card);
  border-radius: var(--r-lg);
  padding: 3rem;
  box-shadow: var(--shadow-premium), 0 30px 70px rgba(0,0,0,0.5);
  border: 1.5px solid var(--accent);
  position: relative;
  overflow: hidden;
}

.res-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

.res-card-title {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.res-card-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 500;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

input, select {
  width: 100%;
  background-color: var(--bg-darkest);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-sm);
  padding: 0.75rem 1rem;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  outline: none;
  transition: var(--transition-fast);
  appearance: none;
}

input:focus, select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
  background-color: var(--bg-card);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23d4af37' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 10px;
  cursor: pointer;
  padding-right: 2.2rem;
}

select option {
  background-color: var(--bg-card);
  color: var(--text-light);
}

.btn-submit {
  width: 100%;
  margin-top: 1rem;
  background: linear-gradient(135deg, var(--accent), #a38218);
  color: var(--bg-darkest);
  font-weight: 800;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.form-reassure {
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.9rem;
  font-weight: 600;
}

/* Success Form State Overlay */
.res-success-overlay {
  position: absolute;
  inset: 0;
  background-color: var(--bg-card);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.res-success-overlay.active {
  transform: translateY(0);
}

.success-icon {
  width: 68px;
  height: 68px;
  background: rgba(212, 175, 55, 0.15);
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

.success-title {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--text-light);
  margin-bottom: 0.6rem;
}

.success-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

/* ===== LOCATION & MAP SECTION ===== */
.location {
  background-color: var(--bg-darkest);
}

.loc-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: center;
}

.loc-info h3 {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.loc-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.loc-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.loc-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(212, 91, 52, 0.1);
  border: 1px solid rgba(212, 91, 52, 0.2);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.loc-txt-lbl {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.loc-txt-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.4;
}

.loc-hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.2rem 1.2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.loc-hours-day {
  font-weight: 700;
  color: var(--text-light);
}

.loc-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Map Styled Embed container */
.loc-map-container {
  height: 480px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 2px solid rgba(212, 175, 55, 0.15);
  position: relative;
}

.loc-map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) contrast(120%);
}

/* ===== FAQ SECTION ===== */
.faq {
  background-color: var(--bg-dark);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: flex-start;
}

.faq-aside {
  position: sticky;
  top: 120px;
}

.faq-aside-title {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.faq-aside-title span {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.faq-aside p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--bg-card);
  border-radius: var(--r-md);
  border: 1px solid rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: var(--ease-smooth);
}

.faq-item.open {
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-premium);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 1.8rem;
  cursor: pointer;
  gap: 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-light);
  user-select: none;
  transition: var(--transition-fast);
}

.faq-item.open .faq-q {
  color: var(--accent);
}

.faq-q-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--ease-smooth);
  flex-shrink: 0;
}

.faq-item.open .faq-q-icon {
  transform: rotate(45deg);
  background-color: var(--accent);
  color: var(--bg-darkest);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-a-inner {
  padding: 0 1.8rem 1.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 1rem;
}

/* ===== FINAL CTA ===== */
.cta-final {
  padding: 8rem 0;
  background-color: var(--bg-darkest);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 50% 60% at 20% 50%, rgba(212, 91, 52, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.cta-final-inner {
  position: relative;
  z-index: 20;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cta-final h2 {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}

.cta-final h2 span {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.cta-final p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.2rem;
  line-height: 1.6;
}

.cta-final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
footer {
  background-color: #040d08;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 0.9fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.f-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 1.2rem;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.f-socials {
  display: flex;
  gap: 0.8rem;
}

.f-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  text-decoration: none;
}

.f-social-link:hover {
  background-color: var(--accent);
  color: var(--bg-darkest);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.f-title {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1.4rem;
}

.f-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.f-links a {
  text-decoration: none;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.f-links a:hover {
  color: var(--text-light);
  padding-left: 0.25rem;
}

.f-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.f-contact-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.4;
}

.f-contact-list li svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.f-contact-list a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

.f-contact-list a:hover {
  color: var(--accent);
}

.f-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.f-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.f-legal {
  display: flex;
  gap: 1.5rem;
}

.f-legal a {
  text-decoration: none;
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.f-legal a:hover {
  color: var(--text-light);
}

/* ===== FLOATING ACTION BUTTONS ===== */
.float-reserve-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  background: linear-gradient(135deg, var(--accent), #a38218);
  color: var(--bg-darkest);
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
  display: none;
  padding: 0.8rem 1.6rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  transition: var(--ease-smooth);
}

.float-reserve-btn.visible {
  display: flex;
  animation: pop-up 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes pop-up {
  0% { transform: scale(0.6) translateY(50px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.float-reserve-btn:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.45);
}

/* ===== SCROLL REVEAL EFFECTS ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.d-1 { transition-delay: 0.1s; }
.d-2 { transition-delay: 0.2s; }
.d-3 { transition-delay: 0.3s; }
.d-4 { transition-delay: 0.4s; }

/* ===== MOBILE & RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  section {
    padding: 6rem 0;
  }
  
  .hero-w {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }
  
  .hero h1 {
    font-size: clamp(2.8rem, 8vw, 4.5rem);
  }
  
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-proof {
    justify-content: center;
    border-left: none;
    border-top: 2px solid var(--primary);
    padding-left: 0;
    padding-top: 1.2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-visual {
    height: 380px;
  }
  
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }
  
  .concept-w {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .concept-visual {
    height: 380px;
    display: flex;
    justify-content: center;
  }
  
  .concept-img-card {
    width: 85%;
    height: 100%;
  }
  
  .concept-badge-card {
    width: 45%;
    bottom: 20px;
    right: 5%;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }
  
  .reservation-w {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .loc-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .loc-map-container {
    height: 380px;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .faq-aside {
    position: static;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .wrap {
    padding: 0 1.2rem;
  }
  
  .nav-links, .nav-right .nav-phone {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Mobile Menu overlay styling */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    top: 0;
    background: rgba(6, 20, 13, 0.98);
    backdrop-filter: blur(20px);
    z-index: 100;
    padding: 8rem 2rem 4rem;
    gap: 2.2rem;
    overflow-y: auto;
    animation: fade-in 0.3s ease-out;
  }
  
  @keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  .nav-links.open a {
    font-size: 1.3rem;
    letter-spacing: 0.1em;
  }
  
  .spec-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .res-card {
    padding: 2.2rem 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .concept-badge-card {
    width: 65%;
    right: 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .f-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
  }
  
  .f-legal {
    justify-content: center;
  }
  
  .float-reserve-btn {
    bottom: 1.2rem;
    right: 1.2rem;
    left: 1.2rem;
    justify-content: center;
  }
}
