/* ============================================
   Paradise Family Grocery — Custom Styles
   ============================================ */

:root {
  --terracotta: #C0603A;
  --terracotta-dark: #A04E2E;
  --terracotta-light: #D4845E;
  --sand: #F5E6D3;
  --sand-light: #FBF5ED;
  --sand-dark: #E8D5C0;
  --cream: #FFF9F4;
  --charcoal: #2A2420;
  --charcoal-light: #4A403A;
  --warm-gray: #7A6E66;
  --white: #FFFFFF;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(42, 36, 32, 0.06);
  --shadow-md: 0 8px 30px rgba(42, 36, 32, 0.10);
  --shadow-lg: 0 20px 60px rgba(42, 36, 32, 0.14);
  --shadow-xl: 0 30px 80px rgba(42, 36, 32, 0.18);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--cream);
  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 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   BLOB BACKGROUND DECORATIONS
   ============================================ */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: var(--terracotta);
  top: -200px;
  right: -150px;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: var(--sand-dark);
  bottom: 20%;
  left: -200px;
}

.blob-3 {
  width: 400px;
  height: 400px;
  background: var(--terracotta-light);
  bottom: -100px;
  right: 10%;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 249, 244, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(192, 96, 58, 0.08);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 249, 244, 0.95);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--charcoal);
  z-index: 1001;
}

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

.logo-text {
  line-height: 1.2;
}

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

.nav-list a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.938rem;
  color: var(--charcoal-light);
  transition: var(--transition);
}

.nav-list a:hover {
  color: var(--terracotta);
  background: rgba(192, 96, 58, 0.06);
}

.btn-nav {
  background: var(--terracotta) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  padding: 10px 20px !important;
}

.btn-nav:hover {
  background: var(--terracotta-dark) !important;
  color: var(--white) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

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

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

.hamburger::before { top: -7px; }
.hamburger::after { bottom: -7px; }

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

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

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(192, 96, 58, 0.35);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(192, 96, 58, 0.45);
}

.btn-secondary {
  background: var(--white);
  color: var(--charcoal);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--sand-light);
}

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

/* ============================================
   SECTION LABELS & TITLES
   ============================================ */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.813rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.label-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  color: var(--terracotta);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(192, 96, 58, 0.08);
  border: 1px solid rgba(192, 96, 58, 0.15);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--terracotta);
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.hero-headline .highlight {
  color: var(--terracotta);
  position: relative;
}

.hero-headline .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(192, 96, 58, 0.15);
  border-radius: 3px;
  z-index: -1;
}

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

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

/* Hero Image Stack */
.hero-image-stack {
  position: relative;
  height: 620px;
}

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

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

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

.hero-img-secondary {
  position: absolute;
  bottom: -30px;
  left: -40px;
  width: 200px;
  height: 200px;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-lg);
}

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

/* Floating Cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.float-card-1 {
  top: 60px;
  right: -20px;
  animation-delay: 0s;
}

.float-card-2 {
  bottom: 80px;
  right: -10px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(192, 96, 58, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  flex-shrink: 0;
}

.float-card-text {
  display: flex;
  flex-direction: column;
}

.float-card-text strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
}

.float-card-text span {
  font-size: 0.75rem;
  color: var(--warm-gray);
}

/* Geometric Accents */
.geo {
  position: absolute;
  z-index: 0;
}

.geo-circle {
  width: 300px;
  height: 300px;
  border: 3px solid rgba(192, 96, 58, 0.1);
  border-radius: 50%;
  top: 10%;
  left: -80px;
}

.geo-square {
  width: 80px;
  height: 80px;
  background: var(--sand);
  border-radius: var(--radius-md);
  top: 20%;
  right: 5%;
  transform: rotate(15deg);
}

.geo-triangle {
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 70px solid rgba(192, 96, 58, 0.08);
  bottom: 15%;
  left: 45%;
  transform: rotate(-20deg);
}

/* ============================================
   PRODUCTS
   ============================================ */
.products {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.product-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--terracotta), var(--terracotta-light));
  z-index: 1;
}

.product-img {
  height: 200px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-body {
  padding: 24px;
}

.product-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.product-body p {
  font-size: 0.938rem;
  line-height: 1.65;
  color: var(--warm-gray);
}

/* ============================================
   BAKERY
   ============================================ */
.bakery {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background: var(--sand);
  overflow: hidden;
}

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

.bakery-visual {
  position: relative;
}

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

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

.bakery-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.938rem;
  box-shadow: 0 8px 30px rgba(192, 96, 58, 0.4);
}

.bakery-badge svg {
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.15); }
  30% { transform: scale(1); }
  45% { transform: scale(1.1); }
}

.bakery-shapes {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
}

.shape {
  position: absolute;
}

.shape-star {
  width: 24px;
  height: 24px;
  background: var(--terracotta-light);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  top: 0;
  left: 10px;
  animation: spin 8s linear infinite;
}

.shape-dot {
  width: 16px;
  height: 16px;
  background: var(--sand-dark);
  border-radius: 50%;
  bottom: 10px;
  right: 0;
}

.shape-ring {
  width: 40px;
  height: 40px;
  border: 3px solid var(--terracotta);
  border-radius: 50%;
  bottom: 0;
  left: 0;
  opacity: 0.3;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

.bakery-desc {
  font-size: 1.063rem;
  line-height: 1.75;
  color: var(--charcoal-light);
  margin-bottom: 32px;
}

.bakery-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bakery-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
}

.list-check {
  width: 28px;
  height: 28px;
  background: rgba(192, 96, 58, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  flex-shrink: 0;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

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

.about-content p {
  font-size: 1.063rem;
  line-height: 1.75;
  color: var(--charcoal-light);
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.stat-card {
  flex: 1;
  padding: 24px 20px;
  background: var(--sand);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  background: var(--sand-dark);
  transform: translateY(-4px);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-unit, .stat-suffix {
  font-size: 1.25rem;
}

.stat-label {
  font-size: 0.813rem;
  font-weight: 500;
  color: var(--warm-gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-visual {
  position: relative;
}

.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-img-1 {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 40px;
}

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

.about-img-1 img,
.about-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-img-1:hover img,
.about-img-2:hover img {
  transform: scale(1.05);
}

.about-accent {
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--terracotta);
  border-radius: var(--radius-lg);
  bottom: -30px;
  left: -30px;
  z-index: -1;
  opacity: 0.1;
}

/* ============================================
   VISIT / CONTACT
   ============================================ */
.visit {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  background: var(--sand);
}

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

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

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(192, 96, 58, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  flex-shrink: 0;
}

.contact-card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-card-text strong {
  font-size: 0.813rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--warm-gray);
}

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

.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--terracotta), var(--terracotta-light), var(--sand-dark));
}

.form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-card > p {
  font-size: 0.938rem;
  color: var(--warm-gray);
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--sand-dark);
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--sand-light);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(192, 96, 58, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--warm-gray);
  opacity: 0.6;
}

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

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

.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(192, 96, 58, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--terracotta);
  animation: scaleIn 0.4s ease;
}

@keyframes scaleIn {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.form-success h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--warm-gray);
  font-size: 0.938rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  color: var(--sand);
  padding: 80px 0 0;
  position: relative;
  z-index: 1;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--terracotta), var(--terracotta-light), var(--sand-dark), var(--terracotta));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245, 230, 211, 0.1);
}

.logo-light .logo-text {
  color: var(--sand);
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.938rem;
  line-height: 1.7;
  color: rgba(245, 230, 211, 0.6);
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.813rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terracotta-light);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.938rem;
  color: rgba(245, 230, 211, 0.6);
  transition: var(--transition);
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.938rem;
  color: rgba(245, 230, 211, 0.6);
}

.footer-contact a {
  color: rgba(245, 230, 211, 0.6);
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--sand);
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--terracotta-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
  font-size: 0.813rem;
  color: rgba(245, 230, 211, 0.4);
}

.footer-bottom a {
  color: rgba(245, 230, 211, 0.4);
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--sand);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s 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; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-card {
    gap: 40px;
  }

  .hero-image-stack {
    height: 500px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bakery-layout,
  .about-layout,
  .visit-layout {
    gap: 48px;
  }

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

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 32px 40px;
    gap: 4px;
    box-shadow: var(--shadow-xl);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }

  .nav-list.open {
    right: 0;
  }

  .nav-list a {
    padding: 14px 16px;
    font-size: 1.063rem;
  }

  .btn-nav {
    text-align: center;
    margin-top: 16px;
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(42, 36, 32, 0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  /* Hero mobile */
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image-stack {
    height: 360px;
    order: -1;
  }

  .hero-img-secondary {
    width: 140px;
    height: 140px;
    left: -10px;
    bottom: -15px;
  }

  .float-card {
    padding: 10px 14px;
  }

  .float-card-1 {
    top: 20px;
    right: 10px;
  }

  .float-card-2 {
    bottom: 40px;
    right: 10px;
  }

  .float-card-text strong {
    font-size: 0.813rem;
  }

  .float-card-text span {
    font-size: 0.688rem;
  }

  .float-card-icon {
    width: 32px;
    height: 32px;
  }

  .float-card-icon svg {
    width: 18px;
    height: 18px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  /* Products */
  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Bakery */
  .bakery-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bakery-visual {
    order: -1;
  }

  .bakery-badge {
    right: 10px;
    bottom: -15px;
  }

  /* About */
  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    order: -1;
  }

  .about-stats {
    flex-direction: column;
  }

  /* Visit */
  .visit-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-card {
    padding: 28px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-headline {
    font-size: 1.875rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .hero-image-stack {
    height: 280px;
  }

  .hero-img-secondary {
    width: 110px;
    height: 110px;
  }

  .float-card {
    display: none;
  }
}
