/* ===== CUSTOM PROPERTIES ===== */
:root {
  --burgundy: #7B2D3B;
  --burgundy-dark: #5A1F2A;
  --burgundy-deep: #3D1520;
  --blush: #F5C6D0;
  --blush-light: #FDF0F3;
  --blush-mid: #FADCE4;
  --cream: #FFFAF5;
  --cream-dark: #F5EDE6;
  --charcoal: #1A1A1A;
  --charcoal-light: #2D2D2D;
  --warm-gray: #6B6560;
  --warm-gray-light: #9B9590;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(123, 45, 59, 0.08);
  --shadow-md: 0 8px 30px rgba(123, 45, 59, 0.12);
  --shadow-lg: 0 20px 60px rgba(123, 45, 59, 0.15);
  --shadow-xl: 0 30px 80px rgba(123, 45, 59, 0.2);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Space Grotesk', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== GEOMETRIC DECORATIONS ===== */
.geo-shape {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  opacity: 0.06;
}

.geo-circle-1 {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--burgundy);
  top: -200px;
  right: -200px;
}

.geo-circle-2 {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--blush);
  bottom: 20%;
  left: -150px;
}

.geo-triangle {
  width: 0;
  height: 0;
  border-left: 200px solid transparent;
  border-right: 200px solid transparent;
  border-bottom: 346px solid var(--burgundy);
  top: 40%;
  right: -80px;
  opacity: 0.04;
  transform: rotate(15deg);
}

.geo-square {
  width: 200px;
  height: 200px;
  background: var(--blush);
  top: 60%;
  left: 5%;
  transform: rotate(45deg);
  opacity: 0.05;
}

.geo-dots {
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, var(--burgundy) 2px, transparent 2px);
  background-size: 16px 16px;
  top: 75%;
  right: 10%;
  opacity: 0.08;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 250, 245, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--burgundy);
  transition: var(--transition);
}

.nav-logo:hover {
  color: var(--burgundy-dark);
}

.logo-text {
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: var(--burgundy);
  background: var(--blush-light);
}

.nav-cta {
  background: var(--burgundy);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--burgundy-dark);
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-toggle:hover {
  background: var(--blush-light);
}

.hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger::before { top: 0; }
.hamburger::after { bottom: 0; }

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 50%;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  bottom: 50%;
  transform: rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--blush-light) 50%, var(--blush-mid) 100%);
  padding: 120px 0 80px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(123, 45, 59, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(245, 198, 208, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero Content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--burgundy);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.title-line {
  display: block;
}

.title-line--accent {
  color: var(--burgundy);
  font-style: italic;
}

.title-line--outline {
  -webkit-text-stroke: 2px var(--burgundy);
  color: transparent;
}

.title-line--small {
  font-size: 0.5em;
  color: var(--warm-gray);
  font-style: italic;
  font-weight: 400;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--warm-gray);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--burgundy);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(123, 45, 59, 0.3);
}

.btn--primary:hover {
  background: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(123, 45, 59, 0.4);
}

.btn--ghost {
  background: var(--white);
  color: var(--charcoal);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--blush);
}

.btn--ghost:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--warm-gray-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--blush);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 600px;
}

.hero-image-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: absolute;
}

.hero-img--main {
  width: 340px;
  height: 440px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.hero-img--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img--float {
  width: 220px;
  height: 160px;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
}

.hero-img--float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img--top {
  top: 0;
  right: 40px;
}

.hero-img--bottom {
  bottom: 20px;
  left: 0;
}

.hero-badge-float {
  position: absolute;
  bottom: 80px;
  right: 30px;
  background: var(--white);
  color: var(--charcoal);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

/* Hero Accents */
.hero-accent {
  position: absolute;
  pointer-events: none;
}

.hero-accent--top {
  width: 300px;
  height: 300px;
  background: var(--burgundy);
  border-radius: 50%;
  top: -100px;
  left: -100px;
  opacity: 0.05;
}

.hero-accent--bottom {
  width: 200px;
  height: 200px;
  background: var(--blush);
  border-radius: 50%;
  bottom: -50px;
  left: 30%;
  opacity: 0.15;
}

/* ===== MARQUEE ===== */
.marquee {
  background: var(--burgundy);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-item {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blush);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 48px;
}

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

/* ===== SECTION COMMON ===== */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--burgundy);
  background: var(--blush-light);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 16px;
}

.text-accent {
  color: var(--burgundy);
  font-style: italic;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ===== MENU ===== */
.menu {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--burgundy), var(--blush), var(--burgundy));
}

.menu-categories {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.menu-cat {
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--warm-gray);
  border: 2px solid var(--cream-dark);
  border-radius: 50px;
  transition: var(--transition);
  background: transparent;
}

.menu-cat:hover,
.menu-cat.active {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.menu-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid transparent;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blush);
}

.menu-card-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.05);
}

.menu-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--burgundy);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.menu-card-body {
  padding: 20px;
}

.menu-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.menu-card-desc {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--blush);
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
}

.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-experience {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--burgundy);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-experience .exp-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.about-experience .exp-text {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 4px;
  line-height: 1.3;
}

.about-content {
  position: relative;
  z-index: 1;
}

.about-text {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--blush-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.5;
}

/* ===== SPECIALS ===== */
.specials {
  padding: 100px 0;
  background: var(--burgundy);
  position: relative;
  overflow: hidden;
}

.specials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 10% 90%, rgba(245, 198, 208, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(245, 198, 208, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.specials .section-tag {
  background: rgba(245, 198, 208, 0.2);
  color: var(--blush);
}

.specials .section-title {
  color: var(--white);
}

.specials .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.specials-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.specials-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.special-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.special-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}

.special-item-accent {
  flex-shrink: 0;
  width: 4px;
  height: 48px;
  background: var(--blush);
  border-radius: 4px;
}

.special-item-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.special-item-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.specials-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.specials-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.specials-img-pattern {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(123, 45, 59, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 100px 0;
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(123, 45, 59, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-item-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

.gallery-item--large {
  grid-column: span 5;
  grid-row: span 2;
}

.gallery-item--tall {
  grid-column: span 3;
  grid-row: span 2;
}

/* ===== VISIT ===== */
.visit {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.visit-desc {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}

.contact-card:hover {
  border-color: var(--blush);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.contact-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--blush-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--warm-gray-light);
  margin-bottom: 4px;
}

.contact-card-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.5;
}

/* Form */
.visit-form-wrapper {
  position: relative;
}

.visit-form-bg {
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg, var(--blush-light) 0%, var(--blush-mid) 100%);
  border-radius: var(--radius-xl);
  z-index: 0;
  pointer-events: none;
}

.visit-form {
  position: relative;
  z-index: 1;
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-desc {
  font-size: 0.95rem;
  color: var(--warm-gray);
  margin-bottom: 32px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  outline: none;
}

.form-input::placeholder {
  color: var(--warm-gray-light);
}

.form-input:focus {
  border-color: var(--burgundy);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(123, 45, 59, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.success-icon {
  margin: 0 auto 16px;
}

.success-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.success-text {
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

.contact-form.hidden {
  display: none;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.footer-links-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blush);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-links li:not(a) {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-location {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== SCROLL REVEAL (progressive enhancement) ===== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
  
  .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; }
}

/* ===== MOBILE MENU ===== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.5);
  z-index: 998;
  opacity: 0;
  transition: var(--transition);
}

.nav-overlay.active {
  opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  
  .hero-visual {
    height: 450px;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .about-grid,
  .specials-layout,
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .about-visual {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-brand {
    grid-column: span 2;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 24px 24px;
    gap: 4px;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .nav-links.open {
    right: 0;
  }
  
  .nav-overlay {
    display: block;
  }
  
  .nav-overlay.active {
    display: block;
  }
  
  .nav-link {
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }
  
  .nav-cta {
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
    justify-content: center;
  }
  
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  
  .hero-visual {
    height: 360px;
  }
  
  .hero-img--main {
    width: 240px;
    height: 300px;
  }
  
  .hero-img--float {
    width: 160px;
    height: 120px;
  }
  
  .hero-img--top {
    right: 10px;
  }
  
  .hero-img--bottom {
    left: 0;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }
  
  .gallery-item--large {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .gallery-item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .about-img-accent {
    width: 160px;
    right: -20px;
    bottom: -20px;
  }
  
  .visit-form {
    padding: 24px;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }
  
  .stat-divider {
    width: 40px;
    height: 1px;
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 200px);
  }
  
  .gallery-item--large,
  .gallery-item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}
