﻿/* ===========================
   MILLS EVERYTHING – STYLES
   =========================== */

:root {
  --gold:      #c9973a;
  --gold-lt:   #e8c07a;
  --rose:      #d4829a;
  --rose-lt:   #f0b8c8;
  --brown:     #3d2b1f;
  --brown-md:  #7a5c48;
  --cream:     #faf6f0;
  --white:     #ffffff;
  --grey:      #f5f0ea;
  --text:      #4a3728;
  --text-lt:   #8a7060;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Lato', Arial, sans-serif;
  --font-script: 'Dancing Script', cursive;

  --radius:    12px;
  --shadow:    0 8px 32px rgba(61,43,31,.12);
  --shadow-sm: 0 4px 16px rgba(61,43,31,.08);
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--text); background: var(--cream); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

.section-label {
  display: inline-block;
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: .5px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--brown);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-sub { font-size: 1.05rem; color: var(--text-lt); max-width: 560px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-transform: uppercase;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--brown);
  border-color: var(--brown);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,151,58,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--brown);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
}
.btn-outline-dark:hover {
  background: var(--brown);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
  border: none;
  padding: 12px 28px;
}
.btn-instagram:hover { opacity: .9; transform: translateY(-2px); }

.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 22px; font-size: .85rem; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
#navbar.scrolled {
  background: rgba(250,246,240,.97);
  box-shadow: 0 2px 20px rgba(61,43,31,.1);
  padding: 12px 0;
  backdrop-filter: blur(8px);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: baseline; gap: 6px; }
.logo-script {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--white);
  transition: color var(--transition);
  line-height: 1;
}
.logo-word {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,.8);
  transition: color var(--transition);
}
#navbar.scrolled .logo-script { color: var(--gold); }
#navbar.scrolled .logo-word   { color: var(--brown-md); }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.9);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 100%;
  height: 2px; background: var(--gold);
  transition: right var(--transition);
}
.nav-links a:hover::after { right: 0; }
.nav-links a:hover { color: var(--white); }
#navbar.scrolled .nav-links a { color: var(--brown-md); }
#navbar.scrolled .nav-links a:hover { color: var(--gold); }

/* ── Language toggle ── */
.lang-toggle {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.6);
  color: rgba(255,255,255,.9);
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}
.lang-toggle:hover {
  background: rgba(255,255,255,.15);
}
#navbar.scrolled .lang-toggle {
  border-color: var(--brown-md);
  color: var(--brown-md);
}
#navbar.scrolled .lang-toggle:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
#navbar.scrolled .burger span { background: var(--brown); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.slide.active { opacity: 1; }

/* Gradient overlay — elegant dark-to-transparent */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(30,15,5,.55) 0%,
    rgba(30,15,5,.3) 50%,
    rgba(30,15,5,.65) 100%
  );
}
/* Hero fallback bg when no images */
.hero { background: linear-gradient(135deg, #3d2b1f 0%, #7a5c48 50%, #c9973a 100%); }

.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: var(--white);
  padding: 0 24px;
  animation: fadeUp .9s ease both;
}
.hero-sub {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--gold-lt);
  margin-bottom: 12px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-title em { color: var(--gold-lt); font-style: italic; font-weight: 400; }
.hero-tagline {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.scroll-indicator span {
  display: block; width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 12px; position: relative;
}
.scroll-indicator span::after {
  content: '';
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: rgba(255,255,255,.8);
  border-radius: 2px;
  animation: scrollBounce 1.8s infinite;
}

/* ===== SECTION DIVIDER ===== */
.section-divider { margin-top: -2px; line-height: 0; }
.section-divider svg { width: 100%; height: 60px; }

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-image-wrap { position: relative; }
.about-img-main {
  height: 560px;
  background-size: cover; background-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background-color: #d4a07a;
  background-image: url('https://images.unsplash.com/photo-1488477181946-6428a0291777?auto=format&fit=crop&w=600&h=750&q=80');
}
.about-badge {
  position: absolute; bottom: -24px; right: -24px;
  width: 110px; height: 110px; border-radius: 50%;
  background: var(--gold);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  color: var(--white);
}
.badge-num { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700; line-height: 1; }
.badge-txt { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

.about-text { padding: 20px 0; }
.about-desc { font-size: 1.05rem; line-height: 1.8; color: var(--text-lt); margin-bottom: 20px; }
.about-features { display: flex; flex-direction: column; gap: 20px; margin: 32px 0 40px; }
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.feature strong { display: block; font-size: 1rem; color: var(--brown); margin-bottom: 4px; }
.feature p { font-size: .9rem; color: var(--text-lt); }

/* ===== SPECIALTIES ===== */
.specialties {
  padding: 100px 0;
  background: var(--grey);
}
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.specialty-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}
.specialty-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.specialty-card.featured {
  transform: translateY(-12px);
  box-shadow: var(--shadow);
}
.specialty-card.featured:hover { transform: translateY(-18px); }

.specialty-img {
  height: 220px;
  background-size: cover; background-position: center;
  position: relative;
  background-color: #c9973a;
}
/* Specialty card images — cake-themed placeholders */
.specialty-card:nth-child(1) .specialty-img { background-image: url('https://images.unsplash.com/photo-1571115177098-24ec42ed204d?auto=format&fit=crop&w=400&h=300&q=80'); }
.specialty-card:nth-child(2) .specialty-img { background-image: url('https://images.unsplash.com/photo-1558301211-0d8c8ddee6ec?auto=format&fit=crop&w=400&h=300&q=80'); }
.specialty-card:nth-child(3) .specialty-img { background-image: url('https://images.unsplash.com/photo-1563729784474-d77dbb933a9e?auto=format&fit=crop&w=400&h=300&q=80'); }
.specialty-card:nth-child(4) .specialty-img { background-image: url('https://images.unsplash.com/photo-1550617931-e17a7b70dce2?auto=format&fit=crop&w=400&h=300&q=80'); }

.specialty-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,15,5,.4) 0%, transparent 60%);
}
.specialty-body { padding: 20px; }
.specialty-body h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem; color: var(--brown);
  margin-bottom: 10px;
}
.specialty-body p { font-size: .9rem; color: var(--text-lt); line-height: 1.7; }

/* ===== QUOTE BANNER ===== */
.quote-banner {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #3d2b1f, #7a5c48);
  text-align: center;
  overflow: hidden;
}
.quote-banner::before {
  content: '"';
  position: absolute; top: -20px; left: 5%;
  font-family: var(--font-serif);
  font-size: 20rem; color: rgba(255,255,255,.03);
  line-height: 1;
}
.quote-overlay { position: absolute; inset: 0; background: url('images/quote-bg.jpg') center/cover no-repeat; opacity: .15; }
.quote-banner blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 400;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 16px;
  line-height: 1.5;
  position: relative; z-index: 1;
}
.quote-mark { color: var(--gold-lt); font-size: 1.4em; }
.quote-banner cite {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--gold-lt);
  font-style: normal;
  position: relative; z-index: 1;
}

/* ===== GALLERY ===== */
.gallery { padding: 100px 0; background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.gallery-item {
  background-size: cover; background-position: center;
  background-color: #c9973a;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  min-height: 200px;
}
/* Gallery — cake-themed placeholder images */
.gallery-item:nth-child(1) { background-image: url('https://images.unsplash.com/photo-1562777717-dc6984f65a63?auto=format&fit=crop&w=400&h=400&q=80'); }
.gallery-item:nth-child(2) { background-image: url('https://images.unsplash.com/photo-1510023462468-64235a666f3c?auto=format&fit=crop&w=400&h=800&q=80'); }
.gallery-item:nth-child(3) { background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=400&h=400&q=80'); }
.gallery-item:nth-child(4) { background-image: url('https://images.unsplash.com/photo-1606890737304-57a1ca8a5b62?auto=format&fit=crop&w=800&h=400&q=80'); }
.gallery-item:nth-child(5) { background-image: url('https://images.unsplash.com/photo-1587668178277-295251f900ce?auto=format&fit=crop&w=400&h=400&q=80'); }
.gallery-item:nth-child(6) { background-image: url('https://images.unsplash.com/photo-1571506165871-ee72a35bc9d4?auto=format&fit=crop&w=400&h=400&q=80'); }
.gallery-item:nth-child(7) { background-image: url('https://images.unsplash.com/photo-1535254973040-607b474cb50d?auto=format&fit=crop&w=400&h=800&q=80'); }
.gallery-item:nth-child(8) { background-image: url('https://images.unsplash.com/photo-1621303837174-89423540c906?auto=format&fit=crop&w=400&h=400&q=80'); }

.gallery-item.tall { grid-row: span 2; min-height: 416px; }
.gallery-item.wide { grid-column: span 2; }

.gallery-hover {
  position: absolute; inset: 0;
  background: rgba(61,43,31,.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.gallery-hover span {
  color: var(--white);
  font-size: .85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 3px; border: 2px solid var(--white);
  padding: 10px 22px; border-radius: 50px;
}
.gallery-item:hover .gallery-hover { opacity: 1; }

.gallery-cta { text-align: center; margin-top: 48px; }

/* ===== INSTAGRAM FEED ===== */
.insta-feed {
  padding: 100px 0;
  background: var(--grey);
}
.insta-handle {
  color: var(--gold);
  font-weight: 700;
  transition: opacity var(--transition);
}
.insta-handle:hover { opacity: .75; }

.insta-widget-wrap {
  position: relative;
  min-height: 200px;
}

/* Behold widget overrides — matches site palette */
behold-widget {
  --behold-font-family: var(--font-sans);
  --behold-grid-gap: 12px;
  --behold-border-radius: 10px;
  display: block;
}

/* ── Demo banner ── */
.insta-demo-banner {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(201,151,58,.08);
  border: 1.5px dashed rgba(201,151,58,.45);
  border-radius: var(--radius);
  padding: 18px 24px;
  margin-bottom: 32px;
}
.demo-pill {
  flex-shrink: 0;
  background: var(--gold); color: var(--white);
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 12px; border-radius: 50px;
  margin-top: 2px;
}
.insta-demo-banner p {
  font-size: .92rem; color: var(--text-lt); line-height: 1.6; margin: 0;
}
.insta-demo-banner strong { color: var(--brown); }

/* ── Demo grid ── */
.insta-demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.insta-post {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  overflow: hidden;
  display: block;
  cursor: pointer;
}
.insta-post-img {
  position: absolute; inset: 0;
  background: var(--g);
  transition: transform var(--transition);
}
.insta-post:hover .insta-post-img { transform: scale(1.05); }

/* Cake-style SVG pattern overlay */
.insta-post-img::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.18) 0%, transparent 60%),
    radial-gradient(circle at 75% 70%, rgba(255,255,255,.1) 0%, transparent 50%);
}

.insta-post-hover {
  position: absolute; inset: 0;
  background: rgba(30,15,5,.52);
  display: flex; align-items: center; justify-content: center;
  gap: 24px;
  opacity: 0; transition: opacity var(--transition);
}
.insta-post:hover .insta-post-hover { opacity: 1; }
.insta-post-hover span {
  color: var(--white);
  font-size: .9rem; font-weight: 700;
}

/* Loading shimmer while fetching real images */
.insta-loading .insta-post-img::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.25) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  z-index: 1;
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

.insta-feed-footer {
  text-align: center;
  margin-top: 48px;
}

/* ===== CUSTOM ORDERS ===== */
.custom-orders {
  padding: 100px 0;
  background: var(--grey);
}
.custom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.custom-text p { font-size: 1.05rem; line-height: 1.8; color: var(--text-lt); margin-bottom: 24px; }
.custom-list { margin: 0 0 40px; display: flex; flex-direction: column; gap: 14px; }
.custom-list li { display: flex; align-items: center; gap: 12px; font-size: 1rem; color: var(--text); }
.check {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; flex-shrink: 0;
}
.custom-images {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 16px; height: 480px;
}
.custom-img-top, .custom-img-bottom {
  border-radius: var(--radius);
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-sm);
}
.custom-img-top {
  grid-column: 1 / -1;
  background-image: url('https://images.unsplash.com/photo-1614707267537-b85aaf00c4b7?auto=format&fit=crop&w=600&h=400&q=80');
}
.custom-img-bottom {
  background-image: url('https://images.unsplash.com/photo-1556217477-d325251ece38?auto=format&fit=crop&w=400&h=400&q=80');
}
/* second bottom cell */
.custom-images > :last-child {
  background-image: url('https://images.unsplash.com/photo-1542826438-bd32f43d626f?auto=format&fit=crop&w=400&h=400&q=80');
}

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 0; background: var(--cream); overflow: hidden; }
.testimonials-track {
  display: flex; gap: 24px;
  transition: transform var(--transition);
  will-change: transform;
}
.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 4px; margin-bottom: 16px; }
.testimonial-card p {
  font-size: 1rem; line-height: 1.8;
  color: var(--text-lt); font-style: italic;
  margin-bottom: 20px;
}
.testimonial-card cite {
  font-size: .9rem; font-weight: 700; color: var(--brown);
  font-style: normal;
}
.testimonial-dots { display: flex; gap: 10px; justify-content: center; margin-top: 36px; }
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--rose-lt); border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.dot.active { background: var(--gold); transform: scale(1.3); }

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #faf6f0 0%, #f5ede4 100%);
}
.contact-grid {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 60px; align-items: start;
}
.contact-form {
  background: var(--white);
  padding: 48px; border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--brown-md); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid rgba(122,92,72,.2);
  border-radius: 8px;
  font-family: var(--font-sans); font-size: .95rem;
  color: var(--text); background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,151,58,.12);
}
.form-group textarea { resize: vertical; }
.form-success {
  display: none; text-align: center; margin-top: 16px;
  color: var(--gold); font-weight: 700;
  font-family: var(--font-script); font-size: 1.3rem;
}
.form-success.show { display: block; }

.contact-info { padding: 20px 0; }
.info-card {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px; background: var(--white);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}
.info-icon { font-size: 1.8rem; flex-shrink: 0; }
.info-card strong { display: block; font-size: 1rem; color: var(--brown); margin-bottom: 6px; }
.info-card p { font-size: .9rem; color: var(--text-lt); line-height: 1.6; }
.info-card a { color: var(--gold); font-weight: 700; }
.info-card a:hover { text-decoration: underline; }
.info-social { text-align: center; padding: 32px; }
.info-social p { color: var(--text-lt); margin-bottom: 20px; font-size: .95rem; line-height: 1.7; }

/* ===== FOOTER ===== */
.footer {
  background: var(--brown);
  color: rgba(255,255,255,.75);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px; padding-bottom: 60px;
}
.footer-brand .footer-logo-script {
  font-family: var(--font-script);
  font-size: 2.4rem; color: var(--gold-lt);
  display: block; line-height: 1;
}
.footer-brand .footer-logo-word {
  font-family: var(--font-serif);
  font-size: .85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 4px;
  color: rgba(255,255,255,.5);
  display: block; margin-bottom: 16px;
}
.footer-brand p { font-size: .9rem; line-height: 1.8; margin-bottom: 20px; }
.footer-insta {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold-lt); font-size: .9rem; font-weight: 700;
  transition: opacity var(--transition);
}
.footer-insta:hover { opacity: .8; }

.footer-links h4, .footer-services h4, .footer-contact h4 {
  font-family: var(--font-serif); font-size: 1.1rem;
  color: var(--white); margin-bottom: 20px;
}
.footer-links ul li, .footer-services ul li {
  margin-bottom: 10px; font-size: .9rem;
}
.footer-links a { transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-lt); }

.footer-contact p { font-size: .9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-note { font-size: .8rem; color: rgba(255,255,255,.45); margin-top: 16px !important; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: .85rem; color: rgba(255,255,255,.4);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 700; box-shadow: var(--shadow);
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-4px); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50%       { transform: translateX(-50%) translateY(12px); opacity: .3; }
}

.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .specialties-grid { grid-template-columns: repeat(2, 1fr); }
  .specialty-card.featured { transform: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: auto; min-height: 200px; }
  .gallery-item.wide { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .burger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--white); flex-direction: column;
    justify-content: center; padding: 40px;
    box-shadow: -8px 0 32px rgba(0,0,0,.15);
    transition: right var(--transition); gap: 24px;
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: var(--brown); font-size: 1rem; }
  #navbar.scrolled .nav-links a { color: var(--brown); }

  .about-grid, .custom-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-main { height: 320px; }
  .about-badge { right: 12px; bottom: -16px; width: 90px; height: 90px; }
  .badge-num { font-size: 1.3rem; }
  .specialties-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .testimonial-card { min-width: 85vw; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .custom-images { height: 320px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .specialties-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}



/* ===== WHATSAPP CTA BLOCK (contact section) ===== */
.wa-cta-block {
  background: linear-gradient(135deg, #075e54 0%, #128c7e 100%);
  border-radius: var(--radius);
  padding: 28px 24px;
  margin-bottom: 16px;
  color: var(--white);
}
.wa-cta-inner {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 20px;
}
.wa-cta-logo {
  width: 44px; height: 44px; flex-shrink: 0;
  color: rgba(255,255,255,.9); margin-top: 2px;
}
.wa-cta-label {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}
.wa-cta-text p {
  font-size: .9rem; color: rgba(255,255,255,.8);
  line-height: 1.5; margin-bottom: 10px;
}
.wa-number {
  font-size: 1.1rem; font-weight: 700;
  color: #a8ffdf; letter-spacing: .5px;
  transition: opacity var(--transition);
}
.wa-number:hover { opacity: .8; }
.wa-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-sans); font-weight: 700;
  font-size: .95rem; text-transform: uppercase; letter-spacing: 1px;
  padding: 14px 24px; border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
}
.wa-cta-btn:hover {
  background: #20b95a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.5);
}

/* ===== FLOATING WHATSAPP WIDGET ===== */
.wa-float {
  position: fixed; bottom: 28px; left: 28px; z-index: 1100;
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
}
.wa-float-btn {
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.wa-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,.6);
}
.wa-float-btn svg { color: var(--white); }

/* Pulse ring */
.wa-float-btn::before {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.45);
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Bubble popup */
.wa-float-bubble {
  background: var(--white);
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  width: 240px;
  position: relative;
  transform-origin: bottom left;
  animation: bubbleIn .3s cubic-bezier(.34,1.56,.64,1) both;
}
.wa-float-bubble.hidden {
  display: none;
}
/* Arrow pointing down to the button */
.wa-float-bubble::after {
  content: '';
  position: absolute; bottom: -8px; left: 20px;
  width: 16px; height: 16px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  box-shadow: 0 4px 8px rgba(0,0,0,.08);
}
@keyframes bubbleIn {
  from { opacity: 0; transform: scale(.8) translateY(8px); }
  to   { opacity: 1; transform: scale(1)  translateY(0); }
}
.wa-bubble-close {
  position: absolute; top: 8px; right: 10px;
  background: none; border: none; cursor: pointer;
  font-size: 1.1rem; color: var(--text-lt); line-height: 1;
  padding: 2px 6px; border-radius: 4px;
  transition: color var(--transition);
}
.wa-bubble-close:hover { color: var(--brown); }
.wa-bubble-title {
  font-family: var(--font-serif); font-size: 1rem;
  color: var(--brown); font-weight: 700;
  margin-bottom: 6px;
}
.wa-bubble-sub {
  font-size: .84rem; color: var(--text-lt);
  line-height: 1.5; margin-bottom: 14px;
}
.wa-bubble-btn {
  display: block; width: 100%; text-align: center;
  background: #25D366; color: var(--white);
  font-weight: 700; font-size: .88rem;
  padding: 10px 0; border-radius: 8px;
  transition: background var(--transition);
}
.wa-bubble-btn:hover { background: #20b95a; }

@media (max-width: 480px) {
  .wa-float { bottom: 20px; left: 16px; }
  .wa-float-btn { width: 52px; height: 52px; }
}
