/* ============================================
   Carmen's Cake Shop — Shared Stylesheet
   ============================================ */

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

/* ─── CSS Variables ────────────────────────── */
:root {
  --cream:        #FFFAF9;
  --blush-50:     #FEF4F8;
  --blush-100:    #FDE3EE;
  --blush-200:    #F9C8D9;
  --pink:         #E86191;
  --pink-hover:   #D04F7C;
  --mauve:        #DB7699;
  --mauve-light:  #EAA4BE;
  --text:         #3D2535;
  --text-mid:     #6B4458;
  --text-light:   #9E7B8A;
  --border:       #F0CCDc;
  --shadow-sm:    0 2px 12px rgba(232, 97, 145, 0.10);
  --shadow-md:    0 6px 28px rgba(232, 97, 145, 0.14);
  --shadow-lg:    0 12px 48px rgba(232, 97, 145, 0.20);
  --radius-sm:    10px;
  --radius-md:    18px;
  --radius-lg:    32px;
  --radius-full:  9999px;
  --nav-height:   140px;
  --transition:   0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  min-height: 100vh;
  animation: pageEnter 0.5s ease both;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Page Enter Animation ───────────────────── */
@keyframes pageEnter {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

/* ─── Typography ─────────────────────────────── */
h1, h2, h3 {
  font-family: 'Dancing Script', cursive;
  line-height: 1.2;
  color: var(--text);
}
.section-label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mauve);
}
.section-title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--text);
  margin-top: 0.25rem;
}
.section-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-top: 0.75rem;
  line-height: 1.6;
}
.section-head {
  text-align: center;
  margin-bottom: 3rem;
}
.section-head .divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.2rem;
}
.section-head .divider::before,
.section-head .divider::after {
  content: '';
  height: 1px;
  width: 48px;
  background: var(--blush-200);
}
.section-head .divider-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mauve-light);
}

/* ─── Navigation ─────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-height);
  background: rgba(255, 250, 249, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 4px 10px 4px 6px;
  border-radius: var(--radius-full);
  background: var(--blush-50);
  border: 1px solid var(--blush-200);
  transition: all var(--transition);
}
.nav-logo:hover {
  background: var(--blush-100);
  box-shadow: var(--shadow-sm);
}
.nav-logo img {
  height: 120px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 10px rgba(232, 97, 145, 0.40));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  position: relative;
}
.nav-link:hover,
.nav-link.active {
  color: var(--pink);
  background: var(--blush-50);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--pink);
}
.nav-cta {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--cream) !important;
  background: var(--pink) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius-full) !important;
  transition: all var(--transition) !important;
}
.nav-cta:hover {
  background: var(--pink-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 97, 145, 0.35) !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px; height: 40px;
  gap: 5px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  flex-shrink: 0;
}
.nav-toggle:hover { background: var(--blush-50); }
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-mid);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Page Wrapper ───────────────────────────── */
.page {
  padding-top: var(--nav-height);
}

/* ─── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  cursor: pointer;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--pink);
  color: var(--cream);
  border: 2px solid var(--pink);
}
.btn-primary:hover {
  background: var(--pink-hover);
  border-color: var(--pink-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 97, 145, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
}
.btn-outline:hover {
  background: var(--blush-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.btn-ghost {
  background: transparent;
  color: var(--text-mid);
  border: 2px solid var(--border);
  padding: 0.7rem 1.5rem;
  font-size: 0.88rem;
}
.btn-ghost:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: var(--blush-50);
}

/* ─── Container ──────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 5rem 0;
}
.section-alt {
  background: var(--blush-50);
}

/* ─── Hero ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blush-50) 0%, var(--cream) 60%, var(--blush-100) 100%);
}
.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-bg-blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(249, 200, 217, 0.45) 0%, transparent 70%);
  top: -100px; right: 100px;
}
.hero-bg-blob-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(232, 97, 145, 0.12) 0%, transparent 70%);
  bottom: 0; left: 50px;
}
.hero-content {
  padding: 4rem 2rem 4rem 0;
  max-width: 560px;
  margin-left: auto;
  padding-left: 2rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mauve);
  background: var(--blush-100);
  border: 1px solid var(--blush-200);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
}
.hero-title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.hero-title span { color: var(--pink); }
.hero-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 2.25rem;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--blush-200);
}
.hero-stat-num {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  font-weight: 700;
  color: var(--pink);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 0.2rem;
}
.hero-visual {
  position: relative;
  height: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem 3rem 1rem;
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.hero-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 140px var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-img-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}
.hero-img-card-1 {
  bottom: 48px;
  left: -32px;
  animation: float 4s ease-in-out infinite;
}
.hero-img-card-2 {
  top: 40px;
  right: -24px;
  animation: float 4s ease-in-out infinite 1.5s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-card-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--blush-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hero-card-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}
.hero-card-text span {
  font-size: 0.72rem;
  color: var(--text-light);
}
.hero-dots {
  position: absolute;
  top: 60px; left: -10px;
  display: grid;
  grid-template-columns: repeat(4, 8px);
  gap: 8px;
}
.hero-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blush-200);
}

/* ─── Products Grid ──────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}
.product-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.product-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img {
  transform: scale(1.04);
}
.product-card-body {
  padding: 1.25rem 1.4rem 1.5rem;
}
.product-card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mauve);
  background: var(--blush-100);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 0.65rem;
}
.product-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.product-card-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-light);
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--blush-100);
}
.product-card-price {
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pink);
}
.product-card-price small {
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
  margin-left: 2px;
}

/* ─── Page Header (subpages) ─────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--blush-50) 0%, var(--cream) 60%, var(--blush-100) 100%);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-header-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.page-header-blob-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(249, 200, 217, 0.5) 0%, transparent 70%);
  top: -120px; right: -80px;
}
.page-header-blob-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(219, 118, 153, 0.15) 0%, transparent 70%);
  bottom: -60px; left: -40px;
}
.page-header-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 0.75rem;
}
.page-header-title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}
.page-header-desc {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ─── Gallery (3 cols) ───────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.gallery-card {
  position: relative;
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.gallery-card-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-card:hover .gallery-card-img {
  transform: scale(1.06);
}
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(61, 37, 53, 0.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }
.gallery-card-overlay-name {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem;
  color: white;
  font-weight: 700;
}
.gallery-card-overlay-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--mauve-light);
  letter-spacing: 0.08em;
}
.gallery-card-info {
  padding: 1.25rem 1.4rem 1.4rem;
}
.gallery-card-name {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.gallery-card-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* ─── Category Section ───────────────────────── */
.category-section {
  margin-bottom: 4rem;
}
.category-title {
  font-family: 'Dancing Script', cursive;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.category-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

/* ─── About / Feature Strip ──────────────────── */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.feature-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: box-shadow var(--transition);
}
.feature-item:hover { box-shadow: var(--shadow-md); }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--blush-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}
.feature-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.feature-item p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-light);
}

/* ─── About Split ────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-md) var(--radius-lg) 80px;
  box-shadow: var(--shadow-md);
}
.about-img-badge {
  position: absolute;
  bottom: 32px;
  right: -24px;
  background: white;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-img-badge-num {
  font-family: 'Dancing Script', cursive;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--pink);
  line-height: 1;
}
.about-img-badge-text {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 0.2rem;
}
.about-content {
  max-width: 480px;
}
.about-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1rem;
}
.about-content p:last-of-type { margin-bottom: 2rem; }

/* ─── CTA Banner ─────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #F0A5BE 0%, var(--pink) 100%);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.cta-banner h2 {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
  position: relative; z-index: 1;
}
.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.65;
  position: relative; z-index: 1;
}
.cta-banner .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: var(--pink);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.9rem 2.25rem;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  position: relative; z-index: 1;
}
.cta-banner .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ─── Contact Form ───────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.contact-info p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 2rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--blush-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.15rem;
}
.contact-detail-text span {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}
.form-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--blush-50);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: all var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-light); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--pink);
  background: white;
  box-shadow: 0 0 0 3px rgba(232, 97, 145, 0.12);
}
.form-textarea {
  resize: vertical;
  min-height: 130px;
}
.form-select-wrap {
  position: relative;
}
.form-select-wrap::after {
  content: '▾';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  pointer-events: none;
  font-size: 0.85rem;
}
.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
}

/* ─── Footer ─────────────────────────────────── */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 0 1.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.65;
  max-width: 280px;
}
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.65rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--mauve-light); }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ─── Breadcrumb ─────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-light);
  padding: 1.25rem 0 0;
}
.breadcrumb a { transition: color var(--transition); }
.breadcrumb a:hover { color: var(--pink); }
.breadcrumb .sep { color: var(--blush-200); }

/* ─── Success Message ────────────────────────── */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success.show { display: block; animation: fadeUp 0.4s ease both; }
.form-success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--blush-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.25rem;
}
.form-success h3 {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.form-success p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ─── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-content {
    padding: 4rem 1.5rem 2rem;
    margin: 0 auto;
    max-width: 100%;
    text-align: center;
  }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .about-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-wrap { max-width: 480px; margin: 0 auto; }
  .about-content { max-width: 100%; }
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .feature-strip { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 768px) {
  :root { --nav-height: 108px; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(255, 250, 249, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-link { width: 100%; padding: 0.75rem 1rem; border-radius: var(--radius-sm); }
  .nav-link.active::after { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { text-align: center; }
  .section { padding: 3.5rem 0; }
  .hero-content { padding: 3rem 1.25rem 2.5rem; }
  .hero-title { font-size: 3rem; }
  .hero-stats { gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .about-img-badge { right: 0; }
  .page-header { padding: 3.5rem 0 3rem; }
  .cta-banner { padding: 3rem 1.75rem; }
  .feature-strip { grid-template-columns: 1fr; }
  .form-card { padding: 1.75rem 1.25rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem; }
  .cta-banner h2 { font-size: 1.9rem; }
}
