/* ============================================================
   BAKEAZ — Vintage Bakes Website Styles
   Color Palette: Sage greens, creams, beige, warm browns
   Typography: Playfair Display (serif) + Inter (sans-serif)
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  /* Core Palette */
  --color-cream:       #FAF6F0;
  --color-cream-dark:  #F0EAE0;
  --color-beige:       #E8DFD3;
  --color-beige-dark:  #D4C8B8;
  --color-sage:        #9DAE88;
  --color-sage-light:  #B7C9A3;
  --color-sage-dark:   #7A8E66;
  --color-sage-muted:  #C5D3B8;
  --color-brown:       #6B5744;
  --color-brown-light: #8B7560;
  --color-brown-dark:  #4A3B2E;
  --color-text:        #3D3229;
  --color-text-light:  #6B6057;
  --color-text-muted:  #9A9088;
  --color-white:       #FFFFFF;
  --color-grey-placeholder: #C8C4BF;
  --color-grey-placeholder-dark: #B0ABA5;

  /* Functional */
  --color-whatsapp:    #25D366;

  /* Typography */
  --font-serif:   'Playfair Display', 'Georgia', serif;
  --font-body:    'Inter', 'Segoe UI', sans-serif;
  --font-accent:  'Lora', 'Georgia', serif;

  /* Spacing */
  --section-py:   6rem;
  --container-px: 1.5rem;

  /* Borders & Shadows */
  --radius-sm:    8px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --shadow-sm:    0 2px 8px rgba(61, 50, 41, 0.06);
  --shadow-md:    0 4px 20px rgba(61, 50, 41, 0.08);
  --shadow-lg:    0 8px 40px rgba(61, 50, 41, 0.12);
  --shadow-card:  0 2px 16px rgba(61, 50, 41, 0.07);

  /* Transitions */
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background-color var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background-color: rgba(250, 246, 240, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 0.6rem 0;
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 1001;
}

.nav-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-beige);
}

.nav-brand-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-brown);
  letter-spacing: 2px;
}

.navbar:not(.scrolled) .nav-brand-text {
  color: var(--color-white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.navbar:not(.scrolled) .nav-logo-img {
  border-color: rgba(255,255,255,0.4);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-brown);
  position: relative;
  padding: 0.3rem 0;
}

.navbar:not(.scrolled) .nav-link {
  color: var(--color-white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-sage);
  transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  background: var(--color-sage);
  color: var(--color-white) !important;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background var(--transition), transform var(--transition);
  text-shadow: none !important;
}

.btn-nav-cta:hover {
  background: var(--color-sage-dark);
  transform: translateY(-1px);
}

.whatsapp-icon {
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.hamburger .bar {
  width: 26px;
  height: 2.5px;
  background: var(--color-brown);
  border-radius: 4px;
  transition: var(--transition);
}

.navbar:not(.scrolled) .hamburger .bar {
  background: var(--color-white);
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================================
   BUTTONS (Global)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  padding: 1rem 2.2rem;
  background: var(--color-sage);
  color: var(--color-white);
  border-radius: 50px;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 16px rgba(157, 174, 136, 0.35);
}

.btn-primary:hover {
  background: var(--color-sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(157, 174, 136, 0.45);
}

.btn-sm {
  padding: 0.7rem 1.6rem;
  font-size: 0.9rem;
}

.btn-outline {
  padding: 0.8rem 2rem;
  background: transparent;
  color: var(--color-sage-dark);
  border: 2px solid var(--color-sage);
  border-radius: 50px;
  font-size: 0.95rem;
}

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

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Stock vintage cake image from Unsplash — slightly darkened via overlay */
  background: url('https://images.unsplash.com/photo-1558636508-e0db3814bd1d?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(74, 59, 46, 0.55) 0%,
    rgba(61, 50, 41, 0.65) 50%,
    rgba(42, 34, 26, 0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 2rem var(--container-px);
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.45rem 1.2rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: var(--color-cream);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.hero-headline em {
  font-style: italic;
  color: var(--color-sage-light);
}

.hero-sub {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

/* ============================================================
   SECTION DEFAULTS
   ============================================================ */
.section {
  padding: var(--section-py) 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-sage-dark);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  position: relative;
}

.section-tag::before,
.section-tag::after {
  content: '—';
  margin: 0 0.6rem;
  color: var(--color-beige-dark);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--color-brown);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ============================================================
   GREY PLACEHOLDER (Reusable)
   ============================================================ */
.grey-placeholder {
  background-color: var(--color-grey-placeholder);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.grey-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.08) 50%, transparent 60%);
}

.placeholder-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
  z-index: 1;
}

/* ============================================================
   OFFERINGS GRID
   ============================================================ */
.offerings {
  background: var(--color-cream);
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.offering-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-card);
}

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

.offering-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.offering-img .placeholder-label {
  font-size: 0.8rem;
}

.offering-info {
  padding: 1.5rem;
}

.offering-info h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-brown);
  margin-bottom: 0.5rem;
}

.offering-info p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ============================================================
   PRICING CARDS
   ============================================================ */
.pricing {
  background: var(--color-cream-dark);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.price-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-card);
  position: relative;
}

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

.price-card-featured {
  border: 2px solid var(--color-sage);
}

.price-card-ribbon {
  position: absolute;
  top: 16px;
  right: -30px;
  background: var(--color-sage);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.3rem 2.5rem;
  transform: rotate(45deg);
  z-index: 3;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.price-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
}

.price-card-img .placeholder-label {
  font-size: 2rem;
}

.price-card-body {
  padding: 1.5rem;
}

.price-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-brown);
  margin-bottom: 0.6rem;
}

.price-card-desc {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--color-beige);
}

.price-amount {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-sage-dark);
}

.price-unit {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Multi-price layout (cupcakes) */
.price-tag-multi {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--color-beige);
}

.price-tag-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.price-label {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-tag-divider {
  width: 1px;
  height: 36px;
  background: var(--color-beige);
}

.price-tag-multi .price-amount {
  font-size: 1.15rem;
}

/* Pricing Disclaimer */
.pricing-disclaimer {
  margin-top: 3rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-beige);
  border-left: 4px solid var(--color-sage);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
}

.disclaimer-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pricing-disclaimer p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
  font-style: italic;
}

/* ============================================================
   REVIEWS / CUSTOMER LOVE
   ============================================================ */
.reviews {
  background: var(--color-cream);
  overflow: hidden;
}

.reviews-scroll-wrapper {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--color-beige-dark) transparent;
}

.reviews-scroll-wrapper::-webkit-scrollbar {
  height: 6px;
}

.reviews-scroll-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.reviews-scroll-wrapper::-webkit-scrollbar-thumb {
  background: var(--color-beige-dark);
  border-radius: 10px;
}

.reviews-track {
  display: flex;
  gap: 1.5rem;
  padding: 0.5rem;
  width: max-content;
}

.review-card {
  flex: 0 0 340px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  scroll-snap-align: start;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.review-img {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.review-img .placeholder-label {
  font-size: 1.8rem;
}

.review-body {
  padding: 1.4rem;
}

.review-stars {
  color: #E8B94B;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 0.6rem;
}

.review-text {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 0.8rem;
}

.review-author {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ============================================================
   INSTAGRAM SHOWCASE
   ============================================================ */
.instagram-section {
  background: var(--color-cream-dark);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.8rem;
}

.insta-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  transition: transform var(--transition), opacity var(--transition);
  cursor: pointer;
}

.insta-item:hover {
  transform: scale(1.04);
  opacity: 0.85;
}

.insta-item .placeholder-label {
  font-size: 1.5rem;
}

.insta-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-brown-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.footer-tagline {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  transition: background var(--transition), color var(--transition);
}

.social-link:hover {
  background: var(--color-sage);
  color: var(--color-white);
}

.footer-links-col h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 1.2rem;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links-col li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links-col a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer-links-col a:hover {
  color: var(--color-sage-light);
}

.footer-order-col p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--color-whatsapp);
  color: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

/* Pulse animation */
.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--color-whatsapp);
  animation: waPulse 2s ease-in-out infinite;
}

@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  50%  { transform: scale(1.15); opacity: 0; }
  100% { transform: scale(1);   opacity: 0; }
}

/* ============================================================
   ANIMATIONS (Scroll Reveal)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .offerings-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

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

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

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-py: 4rem;
  }

  /* Hamburger */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 3rem 2.5rem;
    gap: 1.8rem;
    box-shadow: -4px 0 30px rgba(0,0,0,0.15);
    transition: right var(--transition);
    z-index: 1000;
  }

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

  .nav-link {
    color: var(--color-brown) !important;
    font-size: 1.1rem;
    text-shadow: none !important;
  }

  .nav-cta-wrapper {
    margin-top: 1rem;
  }

  /* Mobile overlay */
  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
  }

  .mobile-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Hero */
  .hero-headline {
    font-size: 2.4rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-badge-row {
    gap: 0.5rem;
  }

  .hero-badge {
    font-size: 0.78rem;
    padding: 0.35rem 1rem;
  }

  /* Offerings */
  .offerings-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .pricing-disclaimer {
    flex-direction: column;
    padding: 1.2rem 1.5rem;
  }

  /* Reviews */
  .review-card {
    flex: 0 0 290px;
  }

  /* Instagram */
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links-col ul {
    align-items: center;
  }

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

/* Small Mobile */
@media (max-width: 480px) {
  .hero-headline {
    font-size: 1.9rem;
  }

  .hero-sub {
    font-size: 0.92rem;
  }

  .btn-primary {
    padding: 0.85rem 1.8rem;
    font-size: 0.95rem;
  }

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

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

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

  .section-tag {
    font-size: 0.75rem;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 1.2rem;
    right: 1.2rem;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}
