/* ==========================================================================
   SitePilot — style.css
   THEME: "Kraft & Bean" — warm artisanal cafe/coffee shop template.
   Chalkboard menu-board services, horizontal film-strip gallery (scroll-snap),
   receipt-style testimonials with washi-tape pins, rising steam hero.

   HOW TO REBRAND FOR A NEW NICHE:
     1. Swap the palette variables below.
     2. Swap --font-display / --font-body (and the @import above them).
     3. Everything else derives from these tokens.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@500;600;700&family=Bitter:wght@500;600;700&family=Karla:wght@400;500;600;700&display=swap');

:root {
  --clr-primary:          #6f4e37;   /* coffee brown */
  --clr-primary-light:    #8a6a4d;
  --clr-primary-lighter:  #c9ab8c;
  --clr-tint:             #f6ead9;
  --clr-accent:           #c1613b;   /* terracotta/rust */
  --clr-accent-dark:      #a34b29;
  --clr-board:            #2e3b2e;   /* chalkboard green */
  --clr-surface:          #fdf7ee;   /* cream paper */
  --clr-surface-alt:      #f5ead9;

  --clr-dark:         #2e1f16;       /* espresso */
  --clr-heading:      #2e1f16;
  --clr-body:         #5c4a3d;
  --clr-muted:        #8c7768;
  --clr-border:       #e6d5bf;
  --clr-white:        #ffffff;

  --font-display: 'Bitter', Georgia, serif;
  --font-script: 'Caveat', cursive;
  --font-body:    'Karla', system-ui, sans-serif;

  --sp-2xs: 4px; --sp-xs: 8px; --sp-sm: 16px; --sp-md: 32px; --sp-lg: 64px; --sp-xl: 96px;
  --container-max: 1200px;

  --radius-sm: 8px; --radius-md: 14px; --radius-lg: 20px; --radius-pill: 999px;

  --shadow-sm: 0 4px 16px rgba(46,31,22,.1);
  --shadow-md: 0 12px 30px rgba(46,31,22,.14);
  --shadow-lg: 0 30px 70px -20px rgba(46,31,22,.3);

  --ease: cubic-bezier(.4,0,.2,1);
  --dur: 0.24s;
}

a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible { outline: 2px solid var(--clr-accent); outline-offset: 2px; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--clr-body);
  background-color: var(--clr-surface);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-accent-dark); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--clr-primary); }
ul { list-style: none; padding: 0; margin: 0; }

.container { width: 100%; max-width: var(--container-max); margin-inline: auto; padding-inline: var(--sp-md); }

/* ── Typography ──────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: var(--font-display); color: var(--clr-heading); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h4 { font-size: 1.05rem; font-weight: 700; }
p { margin-bottom: var(--sp-sm); }
p:last-child { margin-bottom: 0; }

.section-title { text-align: center; color: var(--clr-heading); margin: 0 auto var(--sp-md); max-width: 620px; }
.section-kicker {
  display: block;
  font-family: var(--font-script);
  font-size: 1.7rem; font-weight: 600;
  color: var(--clr-accent);
  margin-bottom: 2px;
  transform: rotate(-2deg);
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: .92rem; font-weight: 700; letter-spacing: .01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary { background: var(--clr-accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--clr-primary); transform: translateY(-2px); box-shadow: var(--shadow-md); color: #fff; }
.btn-outline { background: transparent; border-color: var(--clr-primary); color: var(--clr-primary); }
.btn-outline:hover { background: var(--clr-primary); border-color: var(--clr-primary); color: #fff; }
.hero-content .btn-outline { border-color: rgba(255,255,255,.65); color: #fff; }
.hero-content .btn-outline:hover { background: #fff; border-color: #fff; color: var(--clr-primary); }

/* Nav CTA */
.nav-cta-item { margin-left: 10px; }
.nav-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--clr-accent); color: #fff !important;
  padding: 10px 20px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: .88rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--dur) var(--ease);
}
.nav-cta-btn:hover { background: var(--clr-primary); transform: translateY(-2px); }

/* ── SITE HEADER ─────────────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 9999;
  background: rgba(253,247,238,0);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), padding var(--dur) var(--ease);
  padding: 22px 0;
}
.site-header.scrolled { background: rgba(253,247,238,.95); box-shadow: var(--shadow-sm); padding: 12px 0; border-bottom: 1px solid var(--clr-border); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo a { font-family: var(--font-script); font-size: 1.9rem; font-weight: 700; color: #fff; }
.site-header.scrolled .logo a { color: var(--clr-heading); }
.logo a:hover { color: var(--clr-accent); }

.nav-links ul { display: flex; gap: 4px; list-style: none; align-items: center; }
.nav-links a {
  font-family: var(--font-body); font-size: .92rem; font-weight: 600; color: #fff;
  padding: 8px 14px; position: relative;
}
.site-header.scrolled .nav-links a { color: var(--clr-heading); }
.nav-links a::after {
  content: '';
  position: absolute; left: 14px; right: 14px; bottom: 2px; height: 3px;
  background: var(--clr-accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.nav-dropdown-toggle i { font-size: .6rem; }
.nav-dropdown-menu {
  list-style: none; position: absolute; top: 100%; left: 0; min-width: 200px;
  background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  padding: 8px; margin-top: 14px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: all .2s var(--ease);
  z-index: 10000;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu li a { display: block; color: var(--clr-body); padding: 10px 14px; border-radius: var(--radius-sm); }
.nav-dropdown-menu li a::after { display: none; }
.nav-dropdown-menu li a:hover { background: var(--clr-tint); color: var(--clr-accent); }

.mobile-menu-toggle { display: none; background: none; border: none; font-size: 1.3rem; color: #fff; cursor: pointer; }
.site-header.scrolled .mobile-menu-toggle { color: var(--clr-heading); }

/* ── HERO — warm overlay, rising steam wisps ─────────────────────────────── */
.section-hero, .hero { padding: 0 !important; position: relative; }
.hero-wrapper { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; background-image: linear-gradient(160deg, var(--clr-primary) 0%, var(--clr-dark) 100%); z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(46,31,22,.35) 0%, rgba(46,31,22,.8) 100%); z-index: 1; }

/* Rising steam — pure CSS, drifts up and fades */
.hero-wrapper::before, .hero-wrapper::after {
  content: '';
  position: absolute;
  bottom: 30%;
  width: 40px; height: 140px;
  background: linear-gradient(to top, rgba(255,255,255,.28), transparent 70%);
  border-radius: 50%;
  filter: blur(10px);
  z-index: 1;
  animation: steamRise 5s ease-in infinite;
}
.hero-wrapper::before { left: 42%; animation-delay: 0s; }
.hero-wrapper::after { left: 56%; width: 30px; height: 110px; animation-delay: 1.6s; animation-duration: 6s; }
@keyframes steamRise {
  0%   { transform: translateY(0) translateX(0) scaleX(1); opacity: 0; }
  15%  { opacity: .5; }
  50%  { transform: translateY(-60px) translateX(10px) scaleX(1.3); opacity: .35; }
  100% { transform: translateY(-140px) translateX(-6px) scaleX(1.6); opacity: 0; }
}

.hero > .container, .hero-wrapper > .container { position: relative; z-index: 2; width: 100%; padding: 150px 32px 100px; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-md); justify-items: center; text-align: center; max-width: 720px; margin: 0 auto; }

.hero-content h1 { color: #fff; margin-bottom: var(--sp-sm); }
.hero-content h1 span { font-family: var(--font-script); color: var(--clr-accent); font-size: 1.15em; }
.hero-content p, .hero-text { color: rgba(255,255,255,.85); font-size: 1.12rem; max-width: 540px; margin: 0 auto var(--sp-md); }
.hero-buttons { display: flex; flex-wrap: wrap; gap: var(--sp-sm); justify-content: center; }

.hero-image { display: none; }
.placeholder-image { display: none; }
.hero-scallop { display: none; }

/* ── STATS STRIP ─────────────────────────────────────────────────────────── */
.stats-strip { background: var(--clr-tint); padding: var(--sp-md) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-md); text-align: center; }
.stat-item { color: var(--clr-heading); }
.stat-number { font-family: var(--font-display); font-size: clamp(2rem,3vw,2.6rem); font-weight: 700; color: var(--clr-accent); }
.stat-suffix { font-family: var(--font-display); font-size: clamp(1.4rem,2vw,1.8rem); font-weight: 700; color: var(--clr-accent); }
.stat-item p { margin-top: 4px; font-size: .8rem; color: var(--clr-body); font-weight: 600; }

/* ── SERVICES — chalkboard menu board ─────────────────────────────────────── */
.section-services, .services { padding: var(--sp-xl) 0; background: var(--clr-surface); }
.services-description { color: var(--clr-muted); max-width: 620px; margin: 0 auto var(--sp-md); text-align: center; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: var(--sp-md);
  background: var(--clr-board);
  border: 10px solid var(--clr-dark);
  border-radius: var(--radius-md);
  padding: 26px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

/* Washi-tape corners pinning the "board" */
.services-grid::before, .services-grid::after {
  content: '';
  position: absolute; top: -14px; width: 70px; height: 26px;
  background: rgba(193,97,59,.85);
  transform: rotate(-6deg);
  box-shadow: var(--shadow-sm);
}
.services-grid::before { left: 30px; }
.services-grid::after { right: 30px; transform: rotate(6deg); }

.service-card {
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px dashed rgba(255,255,255,.2);
  border-right: 1px dashed rgba(255,255,255,.15);
  transition: background var(--dur) var(--ease);
}
.services-grid .service-card:nth-child(2n) { border-right: none; }

.service-card:hover { background: rgba(255,255,255,.04); }

.service-icon { width: 40px; height: 40px; border-radius: 50%; background: none; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 6px; }
.service-icon i { font-size: 1.2rem; color: var(--clr-accent); }

.service-card h3 {
  font-family: var(--font-script);
  font-size: 1.5rem; font-weight: 600;
  color: var(--clr-surface);
  margin-bottom: 4px;
}
.service-card p { color: rgba(255,255,255,.6); font-size: .88rem; margin-bottom: 0; }
.service-price {
  display: inline-block; margin-top: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  color: var(--clr-tint);
}

/* ── GALLERY — horizontal film-strip, scroll-snap ────────────────────────── */
.section-gallery, .gallery { padding: var(--sp-xl) 0; background: var(--clr-surface-alt); }
.gallery-description { color: var(--clr-muted); max-width: 620px; margin: 0 auto var(--sp-md); text-align: center; }
.gallery-grid {
  display: flex;
  gap: var(--sp-sm);
  margin-top: var(--sp-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 6px 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--clr-primary-lighter) transparent;
}
.gallery-grid::-webkit-scrollbar { height: 8px; }
.gallery-grid::-webkit-scrollbar-thumb { background: var(--clr-primary-lighter); border-radius: 4px; }

.gallery-item {
  position: relative; overflow: hidden;
  flex: 0 0 280px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(46,31,22,.85), transparent); color: #fff; padding: 18px 14px 12px; font-family: var(--font-script); font-size: 1.2rem; transform: translateY(100%); transition: transform .3s var(--ease); }
.gallery-item:hover .gallery-caption { transform: translateY(0); }
.full-image { width: 100%; border-radius: var(--radius-lg); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-md); align-items: center; }
.split img { border-radius: var(--radius-lg); }

/* ── ABOUT — torn kraft-paper photo frame ─────────────────────────────────── */
.section-about, .about { padding: var(--sp-xl) 0; background: var(--clr-surface); }
.about-flex { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-lg); align-items: center; }
.about-text h2 { margin-bottom: var(--sp-sm); }
.about-text p { font-size: 1.03rem; line-height: 1.8; margin-bottom: var(--sp-md); color: var(--clr-body); }
.feature-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: var(--sp-md); }
.feature-list li { display: flex; align-items: center; gap: 12px; font-weight: 700; color: var(--clr-heading); font-size: .95rem; }
.feature-list li i { color: var(--clr-accent); }
.about-image { position: relative; padding: 14px; background: var(--clr-tint); }
.about-image img {
  width: 100%;
  clip-path: polygon(0% 2%, 4% 0%, 96% 1%, 100% 3%, 99% 97%, 95% 100%, 3% 99%, 1% 96%);
  box-shadow: var(--shadow-md);
}

/* ── TESTIMONIALS — receipt-style notes with washi tape ──────────────────── */
.testimonials, .section-testimonials { padding: var(--sp-xl) 0; background: var(--clr-primary); }
.testimonials .section-title, .section-testimonials .section-title { color: #fff; }
.testimonials .section-kicker { color: var(--clr-tint); }
.testimonials-description, .section-testimonials .testimonials-description { color: rgba(255,255,255,.75); max-width: 620px; margin: 0 auto var(--sp-md); text-align: center; }
.testimonials-swiper { padding-bottom: 50px; }
.testimonial-card {
  background: #fffdf8;
  border-radius: 2px;
  padding: 26px 24px;
  height: 100%;
  box-shadow: var(--shadow-md);
  font-family: 'Courier New', monospace;
  position: relative;
  max-width: 320px;
  margin: 16px auto 0;
}
.testimonial-card::before {
  content: '';
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%) rotate(-3deg);
  width: 64px; height: 22px;
  background: rgba(193,97,59,.7);
  box-shadow: var(--shadow-sm);
}
.testimonial-stars { color: var(--clr-accent-dark); margin-bottom: 14px; font-size: .85rem; text-align: center; }
.testimonial-card p { color: var(--clr-dark); font-size: .88rem; line-height: 1.7; margin-bottom: 18px; text-align: center; }
.testimonial-author { display: flex; flex-direction: column; align-items: center; gap: 2px; padding-top: 14px; border-top: 1px dashed var(--clr-border); text-align: center; }
.testimonial-avatar { display: none; }
.testimonial-author strong { font-size: .85rem; color: var(--clr-heading); text-transform: uppercase; letter-spacing: .05em; }
.testimonial-author small { color: var(--clr-muted); font-size: .74rem; }
.testimonials-swiper .swiper-pagination-bullet { background: #fff; opacity: .4; }
.testimonials-swiper .swiper-pagination-bullet-active { opacity: 1; background: var(--clr-accent); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: var(--sp-lg) var(--sp-md); margin-top: calc(var(--sp-md) + 16px); }
.testimonial-image { border-radius: 50% !important; }
.testimonial-quote { color: var(--clr-tint) !important; }

/* ── CONTACT ─────────────────────────────────────────────────────────────── */
.section-contact, .contact { padding: var(--sp-xl) 0; background: var(--clr-surface); }
.contact-flex { display: grid; grid-template-columns: 1fr 1.3fr; gap: var(--sp-md); margin-top: var(--sp-md); }
.contact-info { background: var(--clr-tint); border-radius: var(--radius-lg); padding: 38px 32px; }
.contact-info p { display: flex; align-items: flex-start; gap: 12px; font-size: .95rem; color: var(--clr-body); margin-bottom: 18px; }
.contact-info i { color: #fff; background: var(--clr-accent); width: 32px; height: 32px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: .78rem; flex-shrink: 0; }
.contact-info strong { color: var(--clr-heading); }
.contact-form { background: #fff; border-radius: var(--radius-lg); padding: 38px 32px; box-shadow: var(--shadow-sm); border: 1px solid var(--clr-border); }
.contact-form h3 { margin-bottom: var(--sp-md); }
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"],
.contact-form select, .contact-form textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--clr-border); border-radius: var(--radius-sm);
  background: var(--clr-surface); font-family: var(--font-body); font-size: .95rem; color: var(--clr-heading);
  transition: border-color var(--dur) var(--ease); outline: none;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--clr-accent); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form label { display: block; font-size: .8rem; font-weight: 700; color: var(--clr-heading); margin-bottom: 6px; }
.contact-form button[type="submit"], .contact-form .btn-primary { margin-top: var(--sp-xs); width: 100%; justify-content: center; }
.form-note { font-size: .8rem; color: var(--clr-muted); text-align: center; margin-top: 10px; }
#form-message p.success { background: var(--clr-tint); color: var(--clr-primary); border-radius: var(--radius-sm); padding: 12px 16px; text-align: center; }
#form-message p.error { background: #fbe4dd; color: #8a3a1f; border-radius: var(--radius-sm); padding: 12px 16px; text-align: center; }
.google-map { margin-top: var(--sp-md); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.google-map iframe { width: 100%; height: 320px; border: 0; filter: sepia(20%); }
.contact-description { color: var(--clr-muted); max-width: 620px; margin: 0 auto var(--sp-md); text-align: center; }
.social-links { display: flex; gap: 10px; margin-top: var(--sp-sm); }
.social-links a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: var(--clr-surface-alt); color: var(--clr-primary); }
.social-links a:hover { background: var(--clr-accent); color: #fff; }
footer .social-links a { background: rgba(255,255,255,.08); color: rgba(255,255,255,.65); }
footer .social-links a:hover { background: var(--clr-accent); color: #fff; }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
footer { background: var(--clr-dark); color: rgba(255,255,255,.6); padding: var(--sp-lg) 0 0; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--sp-md); padding-bottom: var(--sp-md); border-bottom: 1px dashed rgba(255,255,255,.15); }
.footer-col h4 { font-family: var(--font-script); font-size: 1.3rem; color: var(--clr-accent); margin-bottom: 14px; }
.footer-col p { font-size: .9rem; line-height: 1.75; margin-bottom: 8px; }
.footer-col p i { color: var(--clr-accent); margin-right: 6px; }
.footer-links, .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a, .footer-col ul li a { color: rgba(255,255,255,.6); font-size: .9rem; }
.footer-links li a:hover, .footer-col ul li a:hover { color: var(--clr-accent); }
.footer-bottom { padding: var(--sp-sm) 0; display: flex; justify-content: space-between; align-items: center; font-size: .8rem; color: rgba(255,255,255,.4); }
.footer-bottom i { color: var(--clr-accent); }

/* ── WHATSAPP FLOAT ──────────────────────────────────────────────────────── */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 9998; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: #fff; box-shadow: var(--shadow-lg); transition: transform var(--dur); animation: waPulse 2.4s ease-in-out 2s infinite; }
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }

/* ── 404 ─────────────────────────────────────────────────────────────────── */
.error-page { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: var(--sp-xl) var(--sp-md); }
.error-page h1 { font-family: var(--font-script); font-size: 7rem; color: var(--clr-accent); }
.error-page h2 { margin-bottom: var(--sp-sm); }
.error-page p { color: var(--clr-muted); margin-bottom: var(--sp-md); }

.text-center { text-align: center; }
.mt-sm { margin-top: var(--sp-sm); } .mt-md { margin-top: var(--sp-md); }
.pt-lg { padding-top: var(--sp-lg); } .pb-lg { padding-bottom: var(--sp-lg); }

/* ── HERO PARTICLES + SCROLL CUE ─────────────────────────────────────────── */
.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .4; }
.scroll-cue { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,.75); animation: scrollCueBounce 2s ease-in-out infinite; }
.scroll-cue-icon { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1.5px solid rgba(255,255,255,.4); border-radius: 50%; }
@keyframes scrollCueBounce { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

/* ── LIGHTBOX ────────────────────────────────────────────────────────────── */
.lightbox-overlay { position: fixed; inset: 0; background: rgba(46,31,22,.94); z-index: 10000; display: flex; align-items: center; justify-content: center; padding: 40px; opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s var(--ease); }
.lightbox-overlay.active { opacity: 1; visibility: visible; }
.lightbox-overlay img { max-width: min(90vw,900px); max-height: 85vh; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); border: 6px solid #fffdf8; transform: scale(.96); transition: transform .3s var(--ease); }
.lightbox-overlay.active img { transform: scale(1); }
.lightbox-close { position: absolute; top: 24px; right: 32px; background: #fff; border: none; color: var(--clr-primary); width: 44px; height: 44px; border-radius: 50%; font-size: 1.6rem; cursor: pointer; }
.lightbox-close:hover { background: var(--clr-accent); color: #fff; }

/* ── ANIMATIONS ──────────────────────────────────────────────────────────── */
@keyframes waPulse { 0%,100% { box-shadow: 0 4px 18px rgba(37,211,102,.4); } 50% { box-shadow: 0 4px 28px rgba(37,211,102,.7); } }
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── SECTION-BUILDER EXTRAS ──────────────────────────────────────────────── */
.hero-feature-strip { background: var(--clr-dark); padding: 24px 0; position: relative; z-index: 4; }
.hff-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-sm); }
.hff-item { display: flex; align-items: center; gap: 12px; color: #fff; }
.hff-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: var(--clr-accent); flex-shrink: 0; }
.hff-item h4 { font-size: .9rem; color: #fff; }
.hff-item p { font-size: .78rem; color: rgba(255,255,255,.5); margin: 0; }

.trust-marquee { background: var(--clr-tint); overflow: hidden; padding: 12px 0; }
.trust-marquee-track { display: flex; white-space: nowrap; animation: marqueeScroll 22s linear infinite; }
.trust-marquee-track span span { color: var(--clr-primary); font-family: var(--font-script); font-size: 1.15rem; margin-right: 40px; }
.trust-marquee-track i { color: var(--clr-accent); margin-right: 8px; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.section-faq { padding: var(--sp-xl) 0; background: var(--clr-surface-alt); }
.faq-description { color: var(--clr-muted); max-width: 700px; margin: 0 auto var(--sp-md); text-align: center; }
.faq-list { max-width: 780px; margin: var(--sp-md) auto 0; }
.faq-item { background: #fff; border-radius: var(--radius-md); margin-bottom: 10px; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-question { display: flex; align-items: center; gap: 14px; padding: 18px 22px; font-weight: 700; font-size: 1rem; color: var(--clr-heading); cursor: pointer; }
.faq-toggle-icon { color: var(--clr-accent); transition: transform var(--dur); margin-left: auto; }
.faq-item.open .faq-toggle-icon { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 22px 20px; color: var(--clr-body); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

.section-other_page { padding: var(--sp-xl) 0; }
.other-page-content { max-width: 800px; margin: 0 auto; }
.other-page-image { margin-bottom: var(--sp-md); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.other-page-image img { width: 100%; }
.other-page-text { color: var(--clr-body); line-height: 1.8; }
.other-page-text p { margin-bottom: 1em; }

.opening-hours-list { list-style: none; padding: 0; margin: 4px 0 12px; }
.opening-hours-list li { padding: 2px 0; }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hff-grid, .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .footer-col:first-child { grid-column: span 2; }
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .service-card { border-right: none !important; }
  .about-flex { grid-template-columns: 1fr; }
  .contact-flex { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --sp-lg: 48px; --sp-xl: 64px; }
  .mobile-menu-toggle { display: block; }
  .nav-links { position: absolute; top: 100%; left: 0; width: 100%; background: var(--clr-surface); border-radius: 0 0 var(--radius-md) var(--radius-md); box-shadow: var(--shadow-md); display: none; }
  .nav-links.active { display: block; }
  .nav-links ul { flex-direction: column; padding: 12px; gap: 2px; align-items: stretch; }
  .nav-links a { color: var(--clr-heading) !important; display: block; padding: 12px 4px; }
  .nav-links a::after { display: none; }
  .nav-cta-item { margin-left: 0; margin-top: 6px; }
  .nav-cta-btn { justify-content: center; }

  .section-services, .services, .section-gallery, .gallery, .section-about, .about, .section-contact, .contact { padding: var(--sp-lg) 0; }
  .gallery-item { flex: 0 0 220px; }
  .split { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; gap: var(--sp-sm); }
  .footer-col:first-child { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .contact-form, .contact-info { padding: 26px 20px; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.4rem; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .scroll-cue { display: none; }
  .hero-wrapper::before, .hero-wrapper::after { display: none; }
  .lightbox-close { top: 14px; right: 14px; width: 38px; height: 38px; font-size: 1.3rem; }
}
@media (max-width: 480px) {
  .hero > .container, .hero-wrapper > .container { padding: 120px 20px 70px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; justify-content: center; }
}

@media print {
  .site-header, .whatsapp-float, .mobile-menu-toggle { display: none; }
  .hero { min-height: auto; }
}
