/**
 * Nonna's Delights — Theme Component Styles
 * All section styles from the original HTML design.
 * These serve as defaults; Elementor can override any section.
 *
 * @package NonnasDelights
 */

/* =========================================
   TYPOGRAPHY UTILITIES
========================================= */
.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--caramel);
  display: block;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--chocolate);
  margin-bottom: 18px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 540px;
  line-height: 1.85;
}
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 108px 0; }

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .container { padding: 0 18px; }
}

/* =========================================
   SCROLL REVEAL ANIMATIONS
========================================= */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.72s ease, transform 0.72s ease;
}
.reveal       { transform: translateY(36px); }
.reveal-left  { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: none;
}
.d1 { transition-delay: 0.10s; }
.d2 { transition-delay: 0.20s; }
.d3 { transition-delay: 0.30s; }
.d4 { transition-delay: 0.40s; }

/* =========================================
   PROGRESS BAR
========================================= */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(to right, var(--caramel), var(--honey));
  z-index: 10000;
  width: 0;
  transition: width 0.1s linear;
}

/* =========================================
   BACK TO TOP
========================================= */
#back-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 46px; height: 46px;
  background: var(--caramel);
  color: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  transition: var(--trans);
  opacity: 0; pointer-events: none;
  z-index: 900;
}
#back-top.visible { opacity: 1; pointer-events: auto; }
#back-top:hover { background: var(--chocolate); transform: translateY(-3px); }

/* =========================================
   MOBILE NAV OVERLAY
========================================= */
.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  background: var(--chocolate);
  z-index: 998;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 34px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a,
.mobile-nav li a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 600;
  color: var(--cream);
  transition: color 0.3s;
  list-style: none;
}
.mobile-nav a:hover,
.mobile-nav li a:hover { color: var(--honey); }
.mobile-nav ul { list-style: none; text-align: center; display: flex; flex-direction: column; gap: 34px; }

/* =========================================
   HEADER
========================================= */
#site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 22px 0;
  transition: var(--trans);
}
#site-header.scrolled {
  background: rgba(253,246,236,0.97);
  backdrop-filter: blur(18px);
  box-shadow: 0 2px 28px rgba(43,14,0,0.09);
  padding: 14px 0;
}
.header-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 80px; width: auto; }
.nav-links {
  list-style: none; display: flex; align-items: center; gap: 34px;
}
.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: rgba(253,246,236,0.9);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.3s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
#site-header.scrolled .nav-links a { color: var(--espresso); }
.nav-links a:hover { color: var(--honey); }
#site-header.scrolled .nav-links a:hover { color: var(--caramel); }

.nav-cta {
  background: var(--caramel) !important;
  color: var(--cream) !important;
  padding: 10px 22px !important;
  border-radius: 50px;
  letter-spacing: 1.2px !important;
  transition: var(--trans) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--chocolate) !important; transform: translateY(-1px); }
#site-header.scrolled .nav-cta { color: var(--cream) !important; }

.hamburger {
  display: none; flex-direction: column;
  justify-content: space-between;
  width: 24px; height: 16px;
  background: none; padding: 0; z-index: 1001;
}
.hamburger span {
  display: block; height: 2px;
  background: var(--cream); border-radius: 2px;
  transition: var(--trans);
}
#site-header.scrolled .hamburger span { background: var(--espresso); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

/* =========================================
   HERO
========================================= */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/product-photo/4D99D358-7623-4101-BD3D-845CED583AF2.jpeg') center/cover no-repeat;
  transform: scale(1.06);
  transition: transform 8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(43,14,0,0.78) 0%,
    rgba(43,14,0,0.52) 50%,
    rgba(43,14,0,0.82) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 24px; max-width: 820px;
}
.hero-badge {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--honey);
  border: 1px solid rgba(232,165,74,0.55);
  padding: 8px 22px; border-radius: 50px;
  margin-bottom: 28px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.04;
  margin-bottom: 22px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.28);
}
.hero h1 em { font-style: italic; color: var(--honey); }
.hero-sub {
  font-size: clamp(1rem, 2.3vw, 1.25rem);
  color: rgba(253,246,236,0.80);
  margin-bottom: 46px;
  font-weight: 300;
  letter-spacing: 0.2px;
}
.hero-btns {
  display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--caramel), var(--gold));
  color: var(--cream);
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 17px 44px; border-radius: 50px;
  box-shadow: 0 8px 30px rgba(185,107,42,0.45);
  transition: var(--trans);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 42px rgba(185,107,42,0.58);
  background: linear-gradient(135deg, var(--gold), var(--caramel));
}
.btn-outline {
  display: inline-block;
  background: transparent; color: var(--cream);
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 15px 44px; border-radius: 50px;
  border: 2px solid rgba(253,246,236,0.45);
  transition: var(--trans);
}
.btn-outline:hover {
  border-color: var(--honey);
  color: var(--honey);
  transform: translateY(-3px);
}
.hero-scroll {
  position: absolute; bottom: 38px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, rgba(232,165,74,0.7), transparent);
  animation: scrollPulse 2.2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.12); }
}

/* =========================================
   MARQUEE BAR
========================================= */
.marquee-bar {
  background: var(--chocolate); padding: 17px 0; overflow: hidden;
}
.marquee-track {
  display: flex; width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: 12px;
  padding: 0 46px; white-space: nowrap;
  font-family: 'Lato', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--blush);
}
.marquee-dot {
  width: 5px; height: 5px;
  background: var(--gold); border-radius: 50%; flex-shrink: 0;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================
   STATS STRIP
========================================= */
.stats-strip {
  background: var(--cream);
  padding: 58px 0;
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px; text-align: center;
}
.stat-item { padding: 18px 10px; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 700;
  color: var(--caramel); line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-light);
}
@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================
   STORY
========================================= */
.story-section { background: var(--warm-white); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.story-images { position: relative; }
.story-img-main {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.story-img-main img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.65s ease;
}
.story-img-main:hover img { transform: scale(1.04); }
.story-img-accent {
  position: absolute; right: -28px; bottom: -28px;
  width: 172px; height: 172px;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--warm-white);
}
.story-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.story-badge {
  position: absolute; top: 26px; left: -18px;
  background: var(--caramel); color: var(--cream);
  padding: 16px 22px; border-radius: var(--radius);
  box-shadow: var(--shadow-md); text-align: center;
}
.story-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; line-height: 1;
}
.story-badge-text {
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  opacity: 0.85; margin-top: 4px;
}
.story-text p {
  font-size: 1.02rem; color: var(--text-mid);
  line-height: 1.92; margin-bottom: 18px;
}
.story-signature {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem; font-style: italic;
  color: var(--caramel); margin-top: 28px;
}
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 56px; }
  .story-img-accent { right: 14px; }
  .story-badge { left: 14px; }
}

/* =========================================
   MENU / PRODUCTS
========================================= */
.menu-section { background: var(--light-cream); }
.section-header-center {
  text-align: center; margin-bottom: 60px;
}
.section-header-center .section-subtitle { margin: 0 auto; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 26px;
}
.product-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--trans);
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.product-img-wrap { overflow: hidden; aspect-ratio: 1; }
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.07); }
.product-info {
  padding: 24px; flex: 1;
  display: flex; flex-direction: column;
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--chocolate); margin-bottom: 8px;
}
.product-desc {
  font-size: 0.91rem; color: var(--text-light);
  line-height: 1.65; flex: 1; margin-bottom: 18px;
}
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem; font-weight: 700; color: var(--caramel);
}
.product-order-btn {
  background: var(--chocolate); color: var(--cream);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 10px 20px; border-radius: 50px;
  transition: var(--trans);
  display: inline-block;
}
.product-order-btn:hover { background: var(--caramel); color: var(--cream); transform: translateY(-1px); }

/* =========================================
   WHY CHOOSE US
========================================= */
.features-section {
  background: var(--chocolate);
  padding: 108px 0; position: relative; overflow: hidden;
}
.features-section::before {
  content: '\201C';
  position: absolute; top: -80px; left: -10px;
  font-family: 'Playfair Display', serif;
  font-size: 380px; color: rgba(255,255,255,0.03);
  line-height: 1; pointer-events: none;
}
.features-header { text-align: center; margin-bottom: 60px; }
.features-header .section-label { color: var(--honey); }
.features-header .section-title { color: var(--cream); }
.features-header .section-title em { font-style: italic; color: var(--honey); }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 42px 32px; text-align: center;
  transition: var(--trans);
}
.feature-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-6px);
  border-color: rgba(232,165,74,0.28);
}
.feature-icon { font-size: 3rem; margin-bottom: 20px; display: block; }
.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; color: var(--cream); margin-bottom: 14px;
}
.feature-card p {
  font-size: 0.97rem;
  color: rgba(253,246,236,0.62); line-height: 1.82;
}
@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* =========================================
   HOW TO ORDER
========================================= */
.order-section { background: var(--warm-white); }
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; position: relative; margin-top: 70px;
}
.steps-grid::before {
  content: '';
  position: absolute; top: 43px;
  left: calc(16.67% + 22px); right: calc(16.67% + 22px);
  height: 2px;
  background: linear-gradient(to right, var(--blush), var(--caramel), var(--blush));
}
.step-card {
  display: flex; flex-direction: column;
  align-items: center; text-align: center; padding: 0 24px;
}
.step-num-wrap { position: relative; margin-bottom: 26px; }
.step-circle {
  width: 86px; height: 86px; border-radius: 50%;
  background: var(--light-cream); border: 2px solid var(--blush);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem;
  transition: var(--trans); position: relative; z-index: 1;
}
.step-card:hover .step-circle {
  background: var(--caramel);
  border-color: var(--caramel); transform: scale(1.10);
}
.step-num {
  position: absolute; top: -8px; right: -8px;
  width: 26px; height: 26px;
  background: var(--caramel); color: var(--cream);
  border-radius: 50%; font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; z-index: 2;
}
.step-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.22rem; color: var(--chocolate); margin-bottom: 10px;
}
.step-card p { font-size: 0.94rem; color: var(--text-light); line-height: 1.7; }
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; gap: 42px; }
  .steps-grid::before { display: none; }
}

/* =========================================
   GALLERY
========================================= */
.gallery-section { background: var(--light-cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px; margin-top: 20px;
}
.gallery-cell {
  overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 1; position: relative; cursor: pointer;
}
.gallery-cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.52s ease;
}
.gallery-cell::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(43,14,0,0.42); border-radius: var(--radius);
  opacity: 0; transition: opacity 0.38s ease;
}
.gallery-cell:hover img { transform: scale(1.1); }
.gallery-cell:hover::after { opacity: 1; }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 580px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 7px; }
}

/* =========================================
   TESTIMONIALS
========================================= */
.testimonials-section { background: var(--warm-white); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--trans);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 5rem; line-height: 0.7;
  color: var(--blush); margin-bottom: 18px;
}
.testimonial-stars {
  color: var(--honey); font-size: 1rem;
  letter-spacing: 2px; margin-bottom: 16px;
}
.testimonial-text {
  font-size: 1.03rem; color: var(--text-mid);
  line-height: 1.82; font-style: italic; margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--blush);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--caramel);
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.94rem; color: var(--text-dark); }
.author-location { font-size: 0.82rem; color: var(--text-light); }
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* =========================================
   ORDER / CONTACT
========================================= */
.contact-section {
  background: linear-gradient(145deg, var(--espresso) 0%, var(--chocolate) 100%);
  padding: 108px 0; position: relative; overflow: hidden;
}
.contact-section::before {
  content: ''; position: absolute;
  top: -180px; right: -180px;
  width: 560px; height: 560px; border-radius: 50%;
  background: rgba(232,165,74,0.055);
  pointer-events: none;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start;
}
.contact-info .section-label { color: var(--honey); }
.contact-info .section-title { color: var(--cream); }
.contact-info > p {
  color: rgba(253,246,236,0.68); font-size: 1rem;
  line-height: 1.85; margin-top: 16px; margin-bottom: 38px;
}
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail { display: flex; align-items: center; gap: 14px; color: var(--blush); font-size: 0.94rem; }
.contact-detail-icon { font-size: 1.35rem; flex-shrink: 0; }

.order-form {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 44px; box-shadow: var(--shadow-lg);
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem; color: var(--chocolate);
  margin-bottom: 28px; font-weight: 700;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 17px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 11px;
  font-family: 'Lato', sans-serif;
  font-size: 0.94rem; color: var(--text-dark);
  transition: border-color 0.3s; outline: none;
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--caramel); background: var(--warm-white);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 10l5 5 5-5' stroke='%238B6547' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 44px;
}
.form-group textarea { resize: vertical; min-height: 96px; }
.form-submit {
  width: 100%; margin-top: 6px;
  background: linear-gradient(135deg, var(--caramel), var(--gold));
  color: var(--cream); font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 17px; border-radius: 50px;
  box-shadow: 0 8px 28px rgba(185,107,42,0.40);
  transition: var(--trans);
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(185,107,42,0.54);
}
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .order-form { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }
}

/* =========================================
   FOOTER
========================================= */
#site-footer,
footer {
  background: var(--chocolate);
  padding: 62px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand-col img {
  height: 115px; margin-bottom: 18px;
}
.footer-brand-col p {
  color: rgba(253,246,236,0.52);
  font-size: 0.91rem; line-height: 1.82; max-width: 270px;
}
.footer-social-row { display: flex; gap: 12px; margin-top: 22px; }
.footer-social-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--blush); transition: var(--trans);
}
.footer-social-icon:hover {
  background: var(--caramel); color: var(--cream); transform: translateY(-3px);
}
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.98rem; color: var(--cream); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: rgba(253,246,236,0.52); font-size: 0.88rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--honey); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 22px;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-copy { color: rgba(253,246,236,0.32); font-size: 0.82rem; }
.footer-love { color: rgba(253,246,236,0.32); font-size: 0.82rem; }
.footer-love span { color: var(--honey); }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* =========================================
   FORM SUCCESS STATE
========================================= */
.form-success {
  text-align: center; padding: 40px 20px;
}
.form-success-icon { font-size: 3.5rem; margin-bottom: 16px; }
.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; color: var(--chocolate); margin-bottom: 10px;
}
.form-success p { color: var(--text-light); font-size: 0.97rem; }

/* =========================================
   BLOG / POST CARDS
========================================= */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}
.post-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--trans);
}
.post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.post-card-image { overflow: hidden; aspect-ratio: 16/10; }
.post-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.post-card:hover .post-card-image img { transform: scale(1.05); }
.post-card-content { padding: 28px; }
.post-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; margin-bottom: 8px;
}
.post-card-title a { color: var(--chocolate); transition: color 0.3s; }
.post-card-title a:hover { color: var(--caramel); }
.post-card-meta {
  font-size: 0.82rem; color: var(--text-light);
  margin-bottom: 12px;
}
.post-card-excerpt {
  font-size: 0.94rem; color: var(--text-mid);
  line-height: 1.7; margin-bottom: 20px;
}

/* =========================================
   ELEMENTOR OVERRIDES
   Make Elementor sections work seamlessly
========================================= */
.elementor-page .site-main { padding: 0; }
.elementor-page #site-header { background: transparent; }
.elementor-full-width { padding: 0; margin: 0; }

/* Ensure Elementor sections go full width */
.elementor-section.elementor-section-stretched {
  max-width: 100vw;
}

/* Elementor widgets inherit our fonts */
.elementor-widget-text-editor {
  font-family: 'Lato', sans-serif;
  color: var(--text-mid);
}
.elementor-widget-heading .elementor-heading-title {
  font-family: 'Playfair Display', Georgia, serif;
}

/* WordPress admin bar spacing */
body.admin-bar #site-header {
  top: 32px;
}
@media (max-width: 782px) {
  body.admin-bar #site-header {
    top: 46px;
  }
}
