/* WG Events — production styles */

/* ============ TOKENS ============ */
:root {
  --brand-blue: #1F2BD0;
  --brand-blue-dark: #151BA0;
  --brand-blue-50: #EEF0FF;
  --brand-yellow: #F9EC00;
  --brand-yellow-dark: #D9CD00;
  --ink: #0F1115;
  --ink-muted: #5B6168;
  --ink-soft: #9097A0;
  --surface: #FFFFFF;
  --surface-alt: #F6F7FB;
  --border: rgba(15,17,21,0.10);
  --border-strong: rgba(15,17,21,0.20);
  --success: #1F8A4C;
  --danger: #C8261D;
  --whatsapp: #25D366;
  --shadow-sm: 0 1px 2px rgba(15,17,21,.06);
  --shadow-md: 0 6px 20px rgba(15,17,21,.08);
  --shadow-lg: 0 18px 40px rgba(15,17,21,.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  --container: 1200px;
  --font-display: "Archivo Black", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-handwritten: "Caveat", cursive;

  --pkg-compact: #1FDF67;
  --pkg-compact-soft: #E5FBED;
  --pkg-premium: #008AFC;
  --pkg-premium-soft: #E0F1FF;
  --pkg-exclusive: #E933C8;
  --pkg-exclusive-soft: #FBE3F5;
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.25rem, 4.5vw + 1rem, 4.5rem); line-height: 1.05; }
h2 { font-size: clamp(1.75rem, 2vw + 1rem, 2.75rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.125rem; }
p { margin: 0 0 16px; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 32px);
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--ink); color: white;
  padding: 12px 18px; border-radius: var(--radius-md); z-index: 100;
  font-weight: 600;
}
.skip-link:focus { top: 16px; }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 200ms ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 60px; width: auto; }
.nav-links { display: none; list-style: none; margin: 0; padding: 0; gap: 32px; font-weight: 500; font-size: 15px; }
.nav-links a { position: relative; padding: 8px 0; color: var(--ink); transition: color 150ms ease; }
.nav-links a:hover { color: var(--brand-blue); }
.nav-links a[aria-current="page"]::after,
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--brand-blue);
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--whatsapp); color: white;
  font-weight: 600; font-size: 14px;
  border-radius: var(--radius-md);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.hamburger {
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
  padding: 0;
}
.hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 200ms; }
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
}

/* ============ MOBILE DRAWER ============ */
.mobile-drawer {
  position: fixed; inset: 0;
  background: var(--surface);
  z-index: 60;
  display: none;
  flex-direction: column;
}
.mobile-drawer.open { display: flex; }
.mobile-drawer-header { display: flex; justify-content: space-between; align-items: center; height: 84px; padding: 0 24px; border-bottom: 1px solid var(--border); }
.mobile-drawer-close {
  width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  font-size: 22px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.mobile-drawer-links {
  list-style: none; margin: 0;
  padding: 32px 24px;
  display: grid; gap: 8px;
  flex: 1;
}
.mobile-drawer-links a {
  display: block;
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: 22px;
  border-bottom: 1px solid var(--border);
}
.mobile-drawer-footer { padding: 24px; border-top: 1px solid var(--border); }
.mobile-drawer-footer .nav-cta { display: flex; justify-content: center; padding: 14px; font-size: 16px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px;
  font-weight: 600; font-size: 16px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, color 200ms ease;
  font-family: var(--font-body);
  text-align: center;
}
.btn-accent { background: var(--brand-yellow); color: var(--ink); }
.btn-accent:hover { background: var(--brand-yellow-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-primary { background: var(--brand-blue); color: white; }
.btn-primary:hover { background: var(--brand-blue-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--brand-blue); border-color: var(--brand-blue); }
.btn-ghost:hover { background: var(--brand-blue); color: white; }
.btn-ghost-light { background: transparent; color: white; border-color: white; }
.btn-ghost-light:hover { background: white; color: var(--ink); }
.btn:focus-visible { outline: 2px solid var(--brand-blue); outline-offset: 3px; }

/* ============ EYEBROWS / TAGS ============ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-yellow);
  color: var(--ink);
  font-weight: 600; font-size: 13px;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--ink); border-radius: 50%; }

.section-eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 12px;
}

/* ============ SECTION BASE ============ */
.section { padding: clamp(64px, 9vw, 128px) 0; }
.section-alt { background: var(--surface-alt); }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-title { margin-bottom: 16px; }
.section-lead { font-size: 18px; color: var(--ink-muted); margin: 0; }

/* ============ HERO (homepage) ============ */
.hero { position: relative; padding: clamp(48px, 8vw, 96px) 0; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 64px; } }
.hero h1 .highlight {
  background-image: linear-gradient(transparent calc(100% - 0.18em), var(--brand-yellow) calc(100% - 0.18em));
  background-position: 0 0;
  padding: 0 0.1em 0.05em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.hero-lead { font-size: 18px; color: var(--ink-muted); max-width: 56ch; margin-bottom: 32px; }
.hero-checklist { list-style: none; margin: 0 0 36px; padding: 0; display: grid; gap: 12px; }
.hero-checklist li { display: flex; align-items: center; gap: 12px; font-weight: 500; font-size: 16px; }
.check-icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  background: var(--brand-blue-50); color: var(--brand-blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--ink);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-spotlight {
  position: absolute;
  width: 360px; height: 360px;
  background: var(--brand-yellow);
  border-radius: 50%;
  filter: blur(120px); opacity: 0.35;
  top: -100px; right: -120px;
  z-index: -1;
  pointer-events: none;
}

/* ============ SERVICE PILLARS ============ */
.pillars-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .pillars-grid { grid-template-columns: 1fr 1fr; } }
.pillar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 250ms ease, box-shadow 250ms ease;
  display: flex; flex-direction: column;
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pillar-photo {
  aspect-ratio: 16 / 10;
  position: relative;
  background: var(--ink);
  overflow: hidden;
}
.pillar-photo img { width: 100%; height: 100%; object-fit: cover; }
.pillar-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.pillar-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 12px;
}
.pillar-card h3 { font-size: 28px; margin-bottom: 12px; }
.pillar-card p { color: var(--ink-muted); margin-bottom: 16px; }
.pillar-bullets { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 8px; }
.pillar-bullets li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--ink);
}
.pillar-bullets li::before {
  content: '✓';
  width: 18px; height: 18px;
  background: var(--brand-blue-50); color: var(--brand-blue);
  font-weight: 700; font-size: 12px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pillar-add-on {
  font-size: 14px;
  font-style: italic;
  color: var(--ink-muted);
  background: linear-gradient(180deg, transparent 50%, rgba(249,236,0,0.5) 50%);
  padding: 0 4px;
  align-self: flex-start;
  margin-bottom: 24px;
}
.pillar-cta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--brand-blue);
  font-weight: 600; font-size: 15px;
  align-self: flex-start;
  transition: gap 200ms ease;
}
.pillar-cta:hover { gap: 10px; }

/* ============ WHY STRIP ============ */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.why-icon {
  width: 44px; height: 44px;
  background: var(--brand-blue-50); color: var(--brand-blue);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.why-card h4 { font-family: var(--font-body); font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--ink-muted); margin: 0; line-height: 1.5; }

/* ============ GALLERY ============ */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform 250ms ease;
  position: relative;
  background: var(--ink);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* ============ REVIEWS ============ */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: #FBF7EE;
  border: 1px solid rgba(15,17,21,0.08);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.review-card.tilt-l { transform: rotate(-1deg); }
.review-card.tilt-r { transform: rotate(1deg); }
.review-stars { color: var(--brand-yellow-dark); font-size: 18px; letter-spacing: 2px; margin-bottom: 12px; }
.review-quote { font-size: 16px; line-height: 1.6; font-style: italic; color: var(--ink); margin: 0 0 20px; }
.review-signature { font-family: var(--font-handwritten); font-size: 22px; color: var(--brand-blue); font-weight: 700; letter-spacing: 0.5px; }
.review-signature small { display: block; font-family: var(--font-body); font-size: 13px; color: var(--ink-muted); font-weight: 400; letter-spacing: 0; }
.review-card.review-cta {
  background: var(--brand-blue);
  color: white;
  border: none;
  display: flex; flex-direction: column; justify-content: center;
}
.review-card.review-cta h3 { color: white; margin-bottom: 12px; }
.review-card.review-cta p { color: rgba(255,255,255,0.8); font-style: normal; margin-bottom: 20px; }

/* ============ FAQ ============ */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 24px 48px 24px 0;
  font-weight: 600; font-size: 17px;
  color: var(--ink);
  position: relative;
  transition: color 200ms ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--brand-blue); }
.faq-item summary::after {
  content: '';
  position: absolute; right: 8px; top: 50%;
  width: 12px; height: 12px;
  border-right: 2px solid var(--brand-blue);
  border-bottom: 2px solid var(--brand-blue);
  transform: translateY(-75%) rotate(45deg);
  transition: transform 250ms ease;
}
.faq-item[open] summary::after { transform: translateY(-25%) rotate(-135deg); }
.faq-item[open] summary { color: var(--brand-blue); }
.faq-answer { padding: 0 48px 24px 0; color: var(--ink-muted); font-size: 16px; line-height: 1.65; }
.faq-answer p { margin: 0 0 12px; }
.faq-answer p:last-child { margin: 0; }
.faq-answer a { color: var(--brand-blue); text-decoration: underline; }

/* ============ CTA STRIP ============ */
.cta-strip {
  background: var(--ink);
  color: white;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  display: grid; grid-template-columns: 1fr; gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .cta-strip { grid-template-columns: 1.2fr 0.8fr; } }
.cta-strip::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: var(--brand-yellow);
  border-radius: 50%;
  filter: blur(120px); opacity: 0.2;
  top: -100px; right: -100px;
}
.cta-strip h2 { color: white; margin-bottom: 12px; position: relative; }
.cta-strip p { color: rgba(255,255,255,0.7); margin: 0; position: relative; max-width: 50ch; }
.cta-strip-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-start; position: relative; }
@media (min-width: 768px) { .cta-strip-actions { justify-content: flex-end; } }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--surface-alt);
  padding-top: 64px; padding-bottom: 24px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.footer-brand p { color: var(--ink-muted); font-size: 14px; max-width: 36ch; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink); transition: all 200ms ease;
}
.footer-social a:hover { background: var(--brand-blue); color: white; border-color: var(--brand-blue); }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--ink); font-size: 14px; }
.footer-col a:hover { color: var(--brand-blue); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 24px; font-size: 13px; color: var(--ink-muted); }

/* ============ FAB WHATSAPP ============ */
.fab-whatsapp {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: var(--whatsapp); color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 40;
  transition: transform 200ms ease;
}
.fab-whatsapp:hover { transform: scale(1.05); }
.fab-whatsapp svg { width: 28px; height: 28px; }

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
