/* =============================================
   FANCY TREATS — Main Stylesheet
   Elegant Pastel Aesthetic
   ============================================= */

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

/* === CSS VARIABLES === */
:root {
    --cream: #FDF6EE;
    --blush: #F2D9D0;
    --blush-deep: #E4B5A8;
    --rose: #C8796A;
    --rose-dark: #A05A4E;
    --gold: #C9A96E;
    --gold-light: #E8D5B0;
    --mauve: #B08A8A;
    --taupe: #8C7060;
    --ivory: #FAF3EA;
    --warm-white: #FFFAF5;
    --text-dark: #2E1F1A;
    --text-mid: #6B4A42;
    --text-light: #9E7E76;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;

  --shadow-soft: 0 4px 24px rgba(196, 125, 142, 0.12);
  --shadow-card: 0 8px 40px rgba(61, 43, 43, 0.08);
  --shadow-hover: 0 16px 56px rgba(196, 125, 142, 0.2);

  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 32px;

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === 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);
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* === UTILITY === */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush-deep);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 16px;
}

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

.section-subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 520px;
  line-height: 1.8;
}

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  margin: 20px 0 32px;
  border-radius: 2px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blush-deep), var(--rose));
  color: white;
  box-shadow: 0 4px 20px rgba(196, 125, 142, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196, 125, 142, 0.45);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--text-dark);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 169, 110, 0.4);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--rose);
  color: var(--blush-deep);
}

.btn-outline:hover {
  background: var(--blush);
  transform: translateY(-2px);
}

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

#navbar.scrolled {
  background: rgba(253, 246, 240, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(196, 125, 142, 0.1);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-logo-text-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-style: italic;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}

.nav-logo-text-title span { color: var(--rose); }

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.04em;
}

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

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--blush-deep);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--blush-deep);
}

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

.nav-cta {
  padding: 10px 24px;
  font-size: 0.75rem;
}

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

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* === HERO — SPLIT LAYOUT === */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--cream);
}

/* LEFT PANEL */
.hero-left {
  display: flex;
  align-items: center;
  padding: 120px 56px 80px 56px;
  background: var(--cream);
  position: relative;
  z-index: 2;
}

.hero-left::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--rose), transparent);
}

.hero-left-inner {
  max-width: 520px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blush);
  border: 1px solid rgba(196, 125, 142, 0.3);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blush-deep);
  font-weight: 500;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--text-dark);
  margin-bottom: 22px;
}

.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--blush-deep), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 0.97rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 38px;
  max-width: 400px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 44px;
}

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

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--blush-deep);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 400;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--rose);
  opacity: 0.3;
}

/* RIGHT PANEL */
.hero-right {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--blush) 0%, #ead4dc 50%, var(--gold-light) 100%);
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 8s ease;
}

.hero-main-img:hover {
  transform: scale(1.04);
}

/* Floating badge overlay on image */
.hero-float-badge {
  position: absolute;
  bottom: 48px;
  left: 40px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(196, 125, 142, 0.3);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(61,43,43,0.12);
  animation: floatBadge 3s ease-in-out infinite;
}

.float-icon {
  font-size: 1.4rem;
}

.float-text {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.35;
}

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

/* Decorative blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-blob-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.25), transparent 70%);
  top: -80px;
  right: -80px;
}

.hero-blob-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201,169,110,0.18), transparent 70%);
  bottom: 60px;
  right: 30px;
}

/* === GALLERY STRIP === */
#gallery-strip {
  padding: 80px 0;
  background: var(--ivory);
}

.gallery-header {
  text-align: center;
  margin-bottom: 48px;
}

.gallery-header .divider {
  margin: 20px auto 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,43,43,0.5) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-item-label {
  color: white;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
}

/* === PACKAGES === */
#packages {
  padding: 100px 0;
  background: var(--warm-white);
  position: relative;
}

#packages::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
}

.packages-header {
  text-align: center;
  margin-bottom: 64px;
}

.packages-header .divider {
  margin: 16px auto 20px;
}

.packages-header .section-subtitle {
  margin: 0 auto;
  text-align: center;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 80px;
}

.package-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: var(--transition);
  border: 1.5px solid transparent;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--blush);
}

.package-card.featured {
  background: linear-gradient(160deg, var(--text-dark) 0%, #5a3a3a 100%);
  color: white;
  border-color: var(--gold);
}

.package-card.featured .package-price,
.package-card.featured .package-name,
.package-card.featured .package-tag {
  color: white;
}

.package-card.featured .package-item {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.1);
}

.package-card.featured .package-includes {
  color: rgba(255,255,255,0.5);
}

.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--text-dark);
  padding: 5px 18px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.package-tag {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blush-deep);
  font-weight: 500;
  margin-bottom: 8px;
}

.package-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.package-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--blush-deep);
  line-height: 1;
  margin-bottom: 6px;
}

.package-price sup {
  font-size: 1.2rem;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}

.package-includes {
  font-size: 0.75rem;
  color: var(--text-mid);
  margin-bottom: 24px;
  letter-spacing: 0.06em;
}

.package-divider {
  height: 1px;
  background: var(--warm-white);
  margin: 20px 0;
}

.package-card.featured .package-divider {
  background: rgba(255,255,255,0.12);
}

.package-items {
  margin-bottom: 28px;
}

.package-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 0.88rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--warm-white);
}

.package-item:last-child {
  border-bottom: none;
}

.package-item::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.55rem;
  flex-shrink: 0;
}

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

/* === CUSTOM CAKE === */
.custom-cake-section {
  background: linear-gradient(135deg, var(--blush) 0%, var(--gold-light) 100%);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.custom-cake-text .section-title {
  font-size: 2rem;
  margin-bottom: 8px;
}

.custom-cake-text p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 6px;
}

.custom-cake-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 12px 0 4px;
}

.upgrade-note {
  font-size: 0.8rem;
  color: var(--text-mid);
  font-style: italic;
}

/* === INDIVIDUAL PRICING === */
#pricing {
  padding: 100px 0;
  background: var(--ivory);
}

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

.pricing-intro .section-subtitle {
  margin-bottom: 32px;
}

.pricing-note {
  background: var(--warm-white);
  border-left: 3px solid var(--rose);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin-top: 28px;
}

.pricing-note strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blush-deep);
  margin-bottom: 8px;
}

.pricing-note p {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.price-list {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.price-list-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--warm-white);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px dashed var(--warm-white);
  font-size: 0.9rem;
}

.price-row:last-child {
  border-bottom: none;
}

.price-row .item-name {
  color: var(--text-dark);
  font-weight: 400;
}

.price-row .item-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--blush-deep);
}

.packaging-note {
  background: var(--blush);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-top: 16px;
  font-size: 0.83rem;
  color: var(--text-mid);
  text-align: center;
}

/* === FLAVORS === */
#flavors {
  padding: 80px 0;
  background: white;
}

.flavors-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.flavors-visual {
  position: relative;
}

.flavors-image-stack {
  position: relative;
  height: 420px;
}

.flavor-img {
  position: absolute;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.flavor-img.img1 {
  width: 65%;
  height: 320px;
  top: 0;
  left: 0;
  z-index: 1;
}

.flavor-img.img2 {
  width: 55%;
  height: 260px;
  bottom: 0;
  right: 0;
  z-index: 2;
  border: 5px solid white;
}

.flavors-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.flavor-chip {
  background: var(--warm-white);
  border: 1.5px solid var(--blush);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.85rem;
  color: var(--text-mid);
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.flavor-chip:hover {
  background: var(--blush);
  border-color: var(--rose);
  color: var(--text-dark);
  transform: translateY(-2px);
}

/* === TESTIMONIALS === */
#testimonials {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--warm-white) 0%, var(--blush) 50%, var(--warm-white) 100%);
  position: relative;
  overflow: hidden;
}

#testimonials::before {
  content: '❝';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 220px;
  color: rgba(196, 125, 142, 0.07);
  font-family: var(--font-display);
  line-height: 1;
  pointer-events: none;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-header .divider {
  margin: 16px auto;
}

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

.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.testimonial-stars span {
  color: var(--gold);
  font-size: 0.9rem;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.75;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
}

.author-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
}

.author-event {
  font-size: 0.75rem;
  color: var(--text-mid);
  margin-top: 2px;
}

/* === ORDER / CONTACT === */
#order {
  padding: 100px 0;
  background: var(--text-dark);
  position: relative;
  overflow: hidden;
}

#order::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 125, 142, 0.12), transparent 70%);
  pointer-events: none;
}

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

.order-text .section-label {
  color: var(--rose);
}

.order-text .section-title {
  color: white;
}

.order-text .section-subtitle {
  color: rgba(255,255,255,0.55);
}

.order-text .divider {
  background: linear-gradient(90deg, var(--rose), var(--gold));
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  color: white;
  text-decoration: none;
}

.contact-channel:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--rose);
  transform: translateX(6px);
}

.channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.channel-icon.whatsapp { background: rgba(37, 211, 102, 0.2); }
.channel-icon.email { background: rgba(212, 160, 174, 0.25); }
.channel-icon.phone { background: rgba(201, 169, 110, 0.2); }

.channel-info .label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 3px;
}

.channel-info .value {
  font-size: 0.92rem;
  color: white;
  font-weight: 400;
}

.order-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--warm-white);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--warm-white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

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

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

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

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 0.82rem;
  margin-top: 8px;
}

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-mid);
  margin-top: 12px;
}

/* === FOOTER === */
#footer {
  background: #2a1a1a;
  padding: 60px 0 32px;
  color: rgba(255,255,255,0.55);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-brand img {
  height: 52px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  max-width: 280px;
}

.footer-heading {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 18px;
}

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

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--rose);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
}

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

/* === MOBILE NAV === */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(253, 246, 240, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

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

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-dark);
}

.mobile-menu a:hover {
  color: var(--blush-deep);
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* === ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: 1fr 1fr;
  }

  .order-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero stacks vertically on mobile */
  #hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: unset;
  }

  .hero-left {
    padding: 110px 28px 48px;
    order: 2;
  }

  .hero-left::after { display: none; }

  .hero-right {
    order: 1;
    height: 60vw;
    min-height: 260px;
    max-height: 400px;
  }

  .hero-float-badge {
    bottom: 20px;
    left: 20px;
  }

  .hero-title { font-size: clamp(2.5rem, 9vw, 3.5rem); }

  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.3rem; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item:first-child {
    grid-column: span 2;
  }

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

  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .flavors-inner {
    grid-template-columns: 1fr;
  }

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

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

  .custom-cake-section {
    padding: 36px 28px;
  }

  .order-form-card {
    padding: 32px 24px;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item:first-child {
    grid-column: span 1;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
