/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2D2D2D;
  background: #FFF9F5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: #FF6B4A; color: #fff; padding: 8px 16px;
  border-radius: 0 0 8px 8px; z-index: 9999; font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ===== TYPOGRAPHY ===== */
:root {
  --charcoal: #2D2D2D;
  --charcoal-light: #4A4A4A;
  --coral: #FF6B4A;
  --coral-light: #FF8F75;
  --coral-pale: #FFE8E2;
  --cream: #FFF9F5;
  --white: #FFFFFF;
  --gray-100: #F7F7F7;
  --gray-200: #E8E8E8;
  --gray-400: #999;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(45,45,45,0.06);
  --shadow-md: 0 4px 20px rgba(45,45,45,0.08);
  --shadow-lg: 0 8px 40px rgba(45,45,45,0.12);
  --shadow-coral: 0 8px 30px rgba(255,107,74,0.25);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

h1, h2, h3, h4 { font-family: 'Fredoka', sans-serif; font-weight: 600; line-height: 1.2; color: var(--charcoal); }

.section { padding: 100px 0; }
.section-header { margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  font-family: 'Fredoka', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  background: var(--coral-pale);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.125rem;
  color: var(--charcoal-light);
  max-width: 560px;
  margin: 0 auto;
}
.text-center { text-align: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
  box-shadow: var(--shadow-coral);
}
.btn-primary:hover {
  background: #E85A3A;
  border-color: #E85A3A;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255,107,74,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--coral);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--coral);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--coral-pale);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,249,245,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,107,74,0.1);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(255,249,245,0.95);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
}
.logo-accent { color: var(--coral); }
.logo-text { display: flex; align-items: center; }

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav ul { display: flex; gap: 8px; }
.main-nav a {
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--charcoal-light);
  padding: 8px 14px;
  border-radius: 50px;
  transition: var(--transition);
}
.main-nav a:hover { color: var(--coral); background: var(--coral-pale); }

/* Nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.nav-toggle-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #2D2D2D 0%, #3D2B2B 30%, #5C3A2E 50%, #C45A3A 75%, #FF6B4A 100%);
  padding: 120px 24px 80px;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-1 {
  width: 600px; height: 600px;
  background: #FF8F75;
  top: -10%; right: -5%;
  animation-delay: 0s;
}
.blob-2 {
  width: 400px; height: 400px;
  background: #FFB088;
  bottom: -5%; left: 5%;
  animation-delay: -3s;
}
.blob-3 {
  width: 300px; height: 300px;
  background: #FFE0D6;
  top: 30%; left: 20%;
  animation-delay: -5s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}
.grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}
.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-family: 'Fredoka', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.2);
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ===== ABOUT ===== */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-images { 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-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  color: var(--charcoal);
}
.about-text .section-tag { margin-bottom: 16px; }
.about-text .section-title { margin-bottom: 24px; }
.about-text > p { color: var(--charcoal-light); margin-bottom: 16px; }
.about-features { margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--coral-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-feature h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.about-feature p {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.6;
}

/* ===== MENU ===== */
.menu { background: var(--white); }
.menu-categories {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.menu-cat-btn {
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--gray-200);
  background: transparent;
  color: var(--charcoal-light);
  cursor: pointer;
  transition: var(--transition);
}
.menu-cat-btn:hover { border-color: var(--coral); color: var(--coral); }
.menu-cat-btn.active {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.menu-card-img {
  height: 200px;
  overflow: hidden;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.05); }
.menu-card-body { padding: 20px; }
.menu-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.menu-card-top h3 { font-size: 1.15rem; }
.menu-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--coral);
  background: var(--coral-pale);
  padding: 4px 10px;
  border-radius: 50px;
}
.menu-card-body p {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  margin-bottom: 16px;
  line-height: 1.6;
}
.menu-link {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--coral);
  transition: var(--transition);
}
.menu-link:hover { color: #E85A3A; }

/* ===== CUSTOM CAKES ===== */
.cakes { background: var(--cream); }
.cakes-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cakes-content .section-tag { margin-bottom: 16px; }
.cakes-content .section-title { margin-bottom: 20px; }
.cakes-content > p { color: var(--charcoal-light); margin-bottom: 28px; }
.cakes-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.cakes-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--charcoal);
}
.cakes-gallery { display: flex; flex-direction: column; gap: 20px; }
.cake-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.cake-img img { width: 100%; height: 100%; object-fit: cover; }
.cake-img-1 { height: 400px; }
.cake-img-2 { height: 220px; }

/* ===== GALLERY ===== */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/2;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--coral-pale);
}
.testimonial-quote {
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: 'Fredoka', sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--coral-pale);
  pointer-events: none;
}
.testimonial-text {
  font-size: 1rem;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--coral-pale);
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author strong { display: block; font-size: 0.95rem; color: var(--charcoal); }
.testimonial-author span { font-size: 0.8rem; color: var(--gray-400); }

/* ===== CTA ===== */
.cta { background: var(--white); padding: 80px 0; }
.cta-card {
  position: relative;
  background: linear-gradient(135deg, #2D2D2D 0%, #5C3A2E 50%, #C45A3A 100%);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  overflow: hidden;
  text-align: center;
}
.cta-bg-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255,143,117,0.2);
  border-radius: 50%;
  filter: blur(80px);
  top: -100px;
  right: -100px;
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-content .section-tag { margin-bottom: 20px; }
.cta-content .section-title {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}
.cta-content > p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 36px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info .section-tag { margin-bottom: 16px; }
.contact-info .section-title { margin-bottom: 20px; }
.contact-info > p { color: var(--charcoal-light); margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--coral-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item strong {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  margin-bottom: 4px;
}
.contact-item p { font-size: 0.95rem; color: var(--charcoal-light); line-height: 1.6; }
.contact-item a {
  color: var(--coral);
  transition: var(--transition);
}
.contact-item a:hover { color: #E85A3A; text-decoration: underline; }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.contact-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.form-subtitle {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--gray-100);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255,107,74,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success h4 {
  font-size: 1.5rem;
  margin: 16px 0 8px;
  color: var(--charcoal);
}
.form-success p { color: var(--charcoal-light); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { font-size: 0.95rem; line-height: 1.7; }
.footer-links h4,
.footer-hours h4,
.footer-contact h4 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links ul,
.footer-hours ul,
.footer-contact ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.95rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--coral); }
.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  gap: 16px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.6;
}
.footer-contact a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer-contact a:hover { color: var(--coral); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid,
  .cakes-layout,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-float { right: 20px; bottom: -20px; }
  .about-badge { left: 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    transition: right 0.3s ease;
    z-index: 1000;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 8px; width: 100%; }
  .main-nav a { display: block; padding: 12px 16px; font-size: 1.1rem; }
  .main-nav .btn { margin-top: 16px; justify-content: center; }
  .mobile-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }
  .mobile-overlay.active { opacity: 1; pointer-events: all; }

  .hero { padding: 100px 20px 60px; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-stats { gap: 24px; }
  .stat-number { font-size: 1.4rem; }
  .section { padding: 70px 0; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .cta-card { padding: 50px 30px; }
  .cakes-img-1 { height: 280px; }
  .cakes-img-2 { height: 180px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
  .contact-form-card { padding: 24px; }
}
