/* ============================================================
   MADAME DOLCE CAFE — Shared Stylesheet
   Parisian Patisserie meets Italian Cafe
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --rose: #D4A5A5;
  --rose-light: #EDD5D5;
  --rose-dark: #C08080;
  --ivory: #FDF8F3;
  --ivory-dark: #F5EDDF;
  --burgundy: #8B1A4A;
  --burgundy-dark: #6B1238;
  --burgundy-light: #A02558;
  --gold: #C9A84C;
  --gold-light: #E0C070;
  --gold-dark: #A88830;
  --charcoal: #2A2A2A;
  --charcoal-light: #4A4A4A;
  --white: #FFFFFF;
  --shadow-rose: rgba(212, 165, 165, 0.4);
  --shadow-gold: rgba(201, 168, 76, 0.3);
  --shadow-burgundy: rgba(139, 26, 74, 0.2);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 4px;
  --radius-lg: 12px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-body);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 500; }
h4 { font-size: 1.25rem; font-weight: 500; }

p {
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--charcoal-light);
}

.lead {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.8;
}

.label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   DECORATIVE DIVIDER
   ============================================================ */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem auto;
  max-width: 200px;
  justify-content: center;
}

.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.divider-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 243, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 30px rgba(42, 42, 42, 0.08);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--burgundy);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-logo-icon {
  color: var(--gold);
  flex-shrink: 0;
}

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

.nav-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: center;
}

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

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--burgundy);
}

.nav-phone {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--burgundy);
  letter-spacing: 0.05em;
  border: 1px solid rgba(139, 26, 74, 0.25);
  padding: 0.45rem 1rem;
  border-radius: 50px;
  transition: all var(--transition);
}

.nav-phone:hover {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--ivory);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding: 1.5rem 2rem;
  gap: 1.2rem;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  box-shadow: 0 8px 30px rgba(42,42,42,0.1);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile .nav-link {
  font-size: 0.85rem;
}

.nav-mobile .nav-phone {
  align-self: flex-start;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
  color: var(--white);
  border: 2px solid transparent;
  box-shadow: 0 4px 20px var(--shadow-burgundy);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
  box-shadow: 0 8px 30px rgba(139, 26, 74, 0.35);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border: 2px solid var(--burgundy);
}

.btn-outline:hover {
  background: var(--burgundy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--shadow-burgundy);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--charcoal);
  border: 2px solid transparent;
  box-shadow: 0 4px 20px var(--shadow-gold);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.45);
}

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   SECTION LAYOUT
   ============================================================ */
.section {
  padding: 5rem 2rem;
}

.section-sm {
  padding: 3rem 2rem;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .label {
  display: block;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 580px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--ivory) 0%, var(--ivory-dark) 30%, var(--rose-light) 65%, #E8C4C4 100%);
  padding: 8rem 2rem 4rem;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 20% 20%, var(--burgundy) 1px, transparent 1px),
    radial-gradient(circle at 80% 80%, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-decor {
  position: absolute;
  pointer-events: none;
  animation: gentle-float 6s ease-in-out infinite;
}

.hero-decor-top {
  top: 8%;
  right: 8%;
  opacity: 0.15;
}

.hero-decor-bottom {
  bottom: 10%;
  left: 6%;
  opacity: 0.1;
  animation-delay: -3s;
}

.hero-content {
  max-width: 780px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-label {
  display: inline-block;
  margin-bottom: 1.2rem;
  animation: fade-in-up 0.8s ease both;
}

.hero h1 {
  color: var(--burgundy);
  margin-bottom: 1.5rem;
  font-style: italic;
  font-weight: 300;
  text-shadow: 0 2px 20px rgba(139, 26, 74, 0.1);
  animation: fade-in-up 0.8s ease 0.15s both;
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--charcoal-light);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  animation: fade-in-up 0.8s ease 0.3s both;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fade-in-up 0.8s ease 0.45s both;
}

/* Steam animation element */
.steam-container {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 2rem;
  animation: fade-in-up 0.8s ease 0.6s both;
}

.steam-cup {
  font-size: 3rem;
  filter: drop-shadow(0 4px 12px rgba(139, 26, 74, 0.2));
}

.steam-line {
  width: 3px;
  height: 30px;
  background: linear-gradient(to top, var(--rose), transparent);
  border-radius: 3px;
  animation: steam-rise 2s ease-in-out infinite;
}

.steam-line:nth-child(2) { animation-delay: 0.3s; height: 24px; }
.steam-line:nth-child(3) { animation-delay: 0.6s; height: 28px; }
.steam-line:nth-child(4) { animation-delay: 0.15s; height: 20px; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--burgundy);
  padding: 1rem 2rem;
}

.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 2rem;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
}

.trust-item + .trust-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.3);
}

.trust-icon {
  color: var(--gold-light);
  font-size: 1.1rem;
}

/* ============================================================
   CARDS — MENU CATEGORIES
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.menu-card {
  background: var(--white);
  border: 1px solid rgba(212, 165, 165, 0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}

.menu-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: var(--rose);
  box-shadow:
    0 20px 60px var(--shadow-rose),
    0 0 0 1px rgba(201, 168, 76, 0.15),
    inset 0 0 0 1px rgba(201, 168, 76, 0.08);
}

.card-image {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image-icon {
  font-size: 4rem;
  position: relative;
  z-index: 2;
  transition: transform var(--transition);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

.menu-card:hover .card-image-icon {
  transform: scale(1.15);
}

.card-body {
  padding: 1.75rem;
}

.card-body h3 {
  margin-bottom: 0.6rem;
  font-size: 1.5rem;
  color: var(--burgundy);
}

.card-body p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.card-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}

.card-link:hover {
  gap: 0.8rem;
}

/* ============================================================
   GALLERY TILES
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 1rem;
}

.gallery-tile {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-tile:hover {
  transform: scale(1.02);
  z-index: 2;
}

.gallery-tile-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(6px);
  transition: all var(--transition);
}

.gallery-tile:hover .gallery-tile-label {
  opacity: 1;
  transform: translateY(0);
}

.gallery-tile-icon {
  font-size: 3rem;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.2));
  z-index: 1;
  position: relative;
}

.gt-1 { background: linear-gradient(135deg, #C08080, #8B1A4A); }
.gt-2 { background: linear-gradient(135deg, #C9A84C, #E0C070); }
.gt-3 { background: linear-gradient(135deg, #EDD5D5, #D4A5A5); }
.gt-4 { background: linear-gradient(135deg, #8B1A4A, #6B1238); }
.gt-5 { background: linear-gradient(135deg, #D4A5A5, #C9A84C); }
.gt-6 { background: linear-gradient(135deg, #2A2A2A, #4A4A4A); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(212, 165, 165, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: box-shadow var(--transition);
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--rose-light);
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-card:hover {
  box-shadow: 0 12px 40px var(--shadow-rose);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--charcoal-light);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy);
}

/* ============================================================
   ABOUT TEASER
   ============================================================ */
.about-teaser {
  background: linear-gradient(135deg, var(--ivory-dark), var(--rose-light));
  border-radius: var(--radius-lg);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-teaser::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
}

/* ============================================================
   HOURS CTA
   ============================================================ */
.hours-cta {
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hours-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201, 168, 76, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(212, 165, 165, 0.08) 0%, transparent 50%);
}

.hours-cta h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.hours-cta .time-display {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.hours-cta p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
}

.hours-cta .cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold), var(--rose), var(--gold), var(--burgundy));
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand .nav-logo-text {
  color: var(--white);
  font-size: 1.7rem;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
  display: block;
}

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

.footer-col h4 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

.footer-col p,
.footer-col address {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  font-style: normal;
}

.footer-col a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: all var(--transition);
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--charcoal);
}

/* ============================================================
   MENU PAGE SPECIFIC
   ============================================================ */
.page-hero {
  min-height: 42vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero-rose {
  background: linear-gradient(160deg, var(--ivory) 0%, var(--rose-light) 60%, #E8C4C4 100%);
}

.page-hero-burgundy {
  background: linear-gradient(160deg, var(--burgundy-dark) 0%, var(--burgundy) 100%);
}

.page-hero h1 {
  position: relative;
  z-index: 2;
}

.page-hero-rose h1 {
  color: var(--burgundy);
  font-style: italic;
}

.page-hero-burgundy h1 {
  color: var(--white);
}

.page-hero p {
  position: relative;
  z-index: 2;
  margin-top: 1rem;
}

.page-hero-rose p {
  color: var(--charcoal-light);
}

.page-hero-burgundy p {
  color: rgba(255,255,255,0.75);
}

/* Menu sections */
.menu-section {
  margin-bottom: 4rem;
}

.menu-section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

.menu-section-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.menu-section-header h2 {
  font-size: 1.9rem;
  color: var(--burgundy);
  font-weight: 500;
}

.menu-section-header .label {
  font-size: 0.65rem;
  display: block;
  margin-top: 0.2rem;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: rgba(212, 165, 165, 0.15);
  border: 1px solid rgba(212, 165, 165, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.menu-item {
  background: var(--white);
  padding: 1.4rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  transition: background var(--transition);
}

.menu-item:hover {
  background: var(--ivory);
}

.menu-item-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
}

.menu-item-desc {
  font-size: 0.78rem;
  color: rgba(42,42,42,0.55);
  margin-top: 0.2rem;
  line-height: 1.5;
}

.menu-item-price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--burgundy);
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.menu-callout {
  background: linear-gradient(135deg, var(--ivory-dark), rgba(212, 165, 165, 0.2));
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  text-align: center;
  margin-top: 3rem;
  position: relative;
}

.menu-callout::before {
  content: '✦';
  position: absolute;
  top: -0.6rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ivory);
  color: var(--gold);
  padding: 0 0.75rem;
  font-size: 1rem;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 480px;
}

.about-visual-main {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--rose-light), var(--burgundy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
}

.about-visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(139, 26, 74, 0.9), transparent);
  padding: 2rem;
  text-align: center;
}

.about-visual-overlay p {
  color: var(--white);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
}

.about-text h2 {
  color: var(--burgundy);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.85;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.value-item {
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid rgba(212, 165, 165, 0.2);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.value-item:hover {
  box-shadow: 0 12px 40px var(--shadow-rose);
  transform: translateY(-4px);
  border-color: var(--rose);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.value-item h3 {
  font-size: 1.3rem;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}

.value-item p {
  font-size: 0.85rem;
  line-height: 1.7;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  padding: 3rem;
  background: var(--burgundy);
  border-radius: var(--radius-lg);
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  color: var(--gold-light);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-item .stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.custom-cakes-section {
  background: linear-gradient(135deg, #FDF8F3, #EDD5D5);
  border-radius: var(--radius-lg);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.custom-cakes-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  color: var(--burgundy);
  margin-bottom: 2rem;
  font-style: italic;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--rose-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--burgundy);
}

.contact-detail-body dt {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.2rem;
}

.contact-detail-body dd {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.contact-detail-body a {
  color: var(--burgundy);
  font-weight: 600;
  transition: color var(--transition);
}

.contact-detail-body a:hover {
  color: var(--gold-dark);
}

.map-placeholder {
  margin-top: 2rem;
  height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--rose-light), var(--ivory-dark));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 1px solid rgba(212, 165, 165, 0.3);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.map-placeholder:hover {
  box-shadow: 0 8px 30px var(--shadow-rose);
  transform: scale(1.01);
}

.map-placeholder-icon {
  font-size: 2.5rem;
}

.map-placeholder p {
  font-size: 0.85rem;
  color: var(--charcoal-light);
  text-align: center;
}

.map-placeholder strong {
  color: var(--burgundy);
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

/* Contact form */
.contact-form-wrapper {
  background: var(--white);
  border: 1px solid rgba(212, 165, 165, 0.2);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 8px 40px rgba(212, 165, 165, 0.12);
}

.contact-form-wrapper h3 {
  color: var(--burgundy);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
  font-size: 0.88rem;
  margin-bottom: 2rem;
}

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

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--ivory);
  border: 1px solid rgba(212, 165, 165, 0.35);
  border-radius: var(--radius);
  transition: all var(--transition);
  outline: none;
  line-height: 1.5;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--rose-dark);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--shadow-rose);
}

.form-group textarea {
  height: 130px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.form-checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 2px;
  accent-color: var(--burgundy);
}

.form-checkbox label {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--charcoal-light);
  line-height: 1.5;
}

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

/* ============================================================
   PASSWORD GATE OVERLAY
   ============================================================ */
.password-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(160deg, var(--ivory) 0%, var(--ivory-dark) 40%, #E8D0D0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.password-gate-card {
  background: var(--white);
  border: 1px solid rgba(212, 165, 165, 0.3);
  border-radius: 20px;
  padding: 3.5rem;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow:
    0 24px 80px rgba(139, 26, 74, 0.12),
    0 0 0 1px rgba(201, 168, 76, 0.08);
  position: relative;
  overflow: hidden;
}

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

.gate-rose-icon {
  margin: 0 auto 1.5rem;
}

.gate-logo {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 0.3rem;
}

.gate-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--gold-dark);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: block;
}

.gate-subtitle {
  font-size: 0.85rem;
  color: rgba(42,42,42,0.55);
  max-width: 300px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.gate-preview-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(212, 165, 165, 0.15);
  border: 1px solid rgba(212, 165, 165, 0.4);
  border-radius: 50px;
  padding: 0.35rem 0.9rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1.5rem;
}

.gate-input-group {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.gate-input-group input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1.5px solid rgba(212, 165, 165, 0.4);
  border-radius: 50px 0 0 50px;
  outline: none;
  background: var(--ivory);
  transition: all var(--transition);
  letter-spacing: 0.1em;
}

.gate-input-group input:focus {
  border-color: var(--burgundy);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--shadow-rose);
}

.gate-input-group button {
  padding: 0.9rem 1.5rem;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.08em;
  border: none;
}

.gate-input-group button:hover {
  background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
  box-shadow: 0 4px 20px var(--shadow-burgundy);
}

.gate-error {
  font-size: 0.8rem;
  color: #c0392b;
  display: none;
  margin-bottom: 0.5rem;
}

.gate-error.visible {
  display: block;
}

.gate-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 165, 165, 0.2);
  font-size: 0.72rem;
  color: rgba(42,42,42,0.35);
  line-height: 1.6;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes steam-rise {
  0%, 100% {
    transform: translateY(0) scaleX(1);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-12px) scaleX(0.7);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-20px) scaleX(1.2);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-30px) scaleX(0.6);
    opacity: 0.1;
  }
}

@keyframes gentle-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(3deg); }
  66% { transform: translateY(-8px) rotate(-2deg); }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes rose-pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--shadow-rose); }
  50% { box-shadow: 0 0 0 12px transparent; }
}

/* Scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  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; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.text-burgundy { color: var(--burgundy); }
.text-gold { color: var(--gold); }
.bg-ivory { background-color: var(--ivory); }
.bg-ivory-dark { background-color: var(--ivory-dark); }
.bg-rose-light { background-color: rgba(212, 165, 165, 0.1); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 968px) {
  .nav-links {
    display: none;
  }
  .nav-phone {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-visual {
    height: 300px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 180px);
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: repeat(3, 1fr);
    padding: 2rem 1.5rem;
    gap: 1rem;
  }

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

@media (max-width: 640px) {
  .section {
    padding: 3.5rem 1.25rem;
  }

  .hero {
    padding: 6rem 1.25rem 3rem;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .trust-bar-inner {
    flex-direction: column;
    gap: 0.5rem;
  }

  .trust-item + .trust-item::before {
    display: none;
  }

  .trust-item {
    padding: 0.4rem 1rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 140px);
  }

  .about-teaser {
    padding: 2.5rem 1.75rem;
  }

  .stats-bar {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }

  .password-gate-card {
    padding: 2.5rem 1.75rem;
  }

  .menu-items-grid {
    grid-template-columns: 1fr;
  }

  .custom-cakes-section {
    padding: 2.5rem 1.75rem;
  }
}
