/* ===================================================
   PARTY HUB EVENT — Brand-Themed Editorial
   Forest green · Marigold yellow · Warm cream
   Palette sourced directly from the logo.
   =================================================== */

:root {
  /* Greens — sourced from the logo card gradient */
  --primary: #0E4A3C;
  --primary-deep: #062B22;
  --primary-soft: #1F6B54;

  /* Yellows — sourced from the PARTY HUB letters */
  --accent: #8B6914;          /* dark gold — text-readable on cream */
  --accent-soft: #E8B628;     /* marigold — decorative, dark-bg accents */
  --accent-glow: rgba(232, 182, 40, 0.22);

  /* Surfaces — cool stone neutral that lets green and gold stand out */
  --bg: #F4F5F4;
  --bg-alt: #E7E9E6;
  --bg-deep: #D5D7D5;

  /* Text — desaturated forest tones, no pure black */
  --text: #0A2A22;
  --text-soft: #46625A;
  --text-muted: #7A8F87;
  --line: rgba(14, 74, 60, 0.13);

  /* Shadows tinted with the brand green */
  --shadow-sm: 0 1px 2px rgba(6, 43, 34, 0.06);
  --shadow-md: 0 8px 24px rgba(6, 43, 34, 0.10);
  --shadow-lg: 0 24px 60px rgba(6, 43, 34, 0.18);

  --radius: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --container: 1240px;
  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: var(--accent-soft); color: var(--primary-deep); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; cursor: pointer; font: inherit; color: inherit; }

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

/* =========== HEADER =========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 245, 244, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--primary);
  flex-shrink: 0;
}

.logo-img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(6, 43, 34, 0.18);
}

.logo-img-sm { width: 44px; height: 44px; border-radius: var(--radius); }

.logo-text em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--primary); }

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent-soft);
  transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--text-soft);
  transition: all 0.2s ease;
}

.lang-toggle:hover { border-color: var(--accent-soft); color: var(--primary); }
.lang-toggle .lang-current { color: var(--primary); font-weight: 700; }
.lang-toggle .lang-divider { color: var(--text-muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.btn-call {
  background: var(--primary);
  color: var(--bg);
}

.btn-call:hover {
  background: var(--primary-soft);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-large {
  padding: 16px 28px;
  font-size: 15px;
}

/* Primary CTA flips to logo-yellow on hover — the brand's signature color play */
.btn-primary {
  background: var(--primary);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-soft);
  transform: translateY(101%);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
}

.btn-primary > * { position: relative; z-index: 1; }

.btn-primary:hover {
  color: var(--primary-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(232, 182, 40, 0.32);
}

.btn-primary:hover::before { transform: translateY(0); }

.btn-whatsapp {
  background: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background: #1FB956;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.25);
}

.btn-viber {
  background: #7360F2;
  color: white;
}

.btn-viber:hover {
  background: #5E4DCC;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(115, 96, 242, 0.25);
}

/* =========== HERO =========== */
.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Atmospheric stone gradient — silver shadow, faint forest accent */
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 55% at 50% -10%, rgba(120, 130, 130, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 90%, rgba(14, 74, 60, 0.06), transparent 70%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.06'/%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.55);
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease 0.1s both;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-soft);
  box-shadow: 0 0 0 4px var(--accent-glow);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px var(--accent-glow); }
  50% { box-shadow: 0 0 0 9px transparent; }
}

.hero-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--primary);
  margin-bottom: 32px;
}

.hero-title .title-line {
  display: block;
  animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.title-line-1 { animation-delay: 0.2s; }
.title-line-2 {
  animation-delay: 0.35s;
  font-style: italic;
  font-weight: 300;
  color: var(--text-soft);
  font-size: 0.7em;
  margin-left: 80px;
}
.title-line-3 { animation-delay: 0.5s; }

/* Italic emphasis sits on a soft yellow highlight, like marker on parchment */
.title-line-3 em {
  font-style: italic;
  color: var(--primary);
  font-weight: 500;
  background-image: linear-gradient(180deg, transparent 65%, var(--accent-glow) 65%, var(--accent-glow) 92%, transparent 92%);
  padding: 0 0.08em;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 640px;
  margin: 0 auto 40px;
  animation: fadeUp 1s ease 0.65s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
  animation: fadeUp 1s ease 0.8s both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  padding-top: 48px;
  border-top: 1px solid var(--line);
  animation: fadeUp 1s ease 0.95s both;
}

.stat-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

/* =========== SECTIONS =========== */
.section {
  padding: 100px 0;
  position: relative;
}

.section-head {
  margin-bottom: 64px;
  max-width: 720px;
}

.section-head-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  position: relative;
  padding-left: 32px;
}

.section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section-head-center .section-eyebrow {
  padding-left: 0;
}

.section-head-center .section-eyebrow::before {
  display: none;
}

.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--primary);
}

/* =========== SERVICES =========== */
.services { background: var(--bg-alt); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.service-card {
  background: var(--bg-alt);
  padding: 40px 36px;
  transition: all 0.3s ease;
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  left: 36px;
  top: 40px;
  width: 0;
  height: 2px;
  background: var(--accent-soft);
  transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-card:hover {
  background: var(--bg);
  transform: translateY(-2px);
}

.service-card:hover::after { width: 24px; }

.service-num {
  font-family: var(--display);
  font-weight: 400;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.14em;
  margin-bottom: 24px;
}

.service-card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-soft);
}

.services-note {
  margin-top: 48px;
  text-align: center;
  font-size: 16px;
  color: var(--text-soft);
}

.services-note strong {
  color: var(--primary);
  font-weight: 700;
}

/* =========== GALLERY =========== */
.gallery-section { background: var(--bg); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--bg-deep);
  cursor: zoom-in;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-item-tall { grid-row: span 2; }
.gallery-item-wide { grid-column: span 2; }

.gallery-item img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(232, 182, 40, 0.18),
              0 8px 24px rgba(6, 43, 34, 0.14);
}
.gallery-item:hover img { transform: scale(1.05); }

/* Placeholder gradient for missing images, tinted in brand yellow */
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, var(--bg-deep) 0%, var(--bg-alt) 100%),
    radial-gradient(circle at 50% 50%, rgba(232, 182, 40, 0.12), transparent 70%);
}

.gallery-item img:not([src]),
.gallery-item img[src=""] { display: none; }

/* =========== WHY US — the brand's deep-green moment =========== */
.why {
  background: var(--primary-deep);
  color: var(--bg);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle warm highlight from above — like marquee lights at dusk */
.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(232, 182, 40, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 100%, rgba(31, 107, 84, 0.45), transparent 70%);
  pointer-events: none;
}

.why .container { position: relative; }

.why .section-eyebrow { color: var(--accent-soft); }
.why .section-eyebrow::before { background: var(--accent-soft); }

.why .section-title { color: var(--bg); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.why-text { padding-top: 8px; }

.why-lead {
  font-family: var(--display);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.5;
  color: rgba(250, 246, 232, 0.86);
  margin-top: 32px;
  font-style: italic;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why-item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(250, 246, 232, 0.10);
}

.why-item:last-child { border-bottom: none; }

.why-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: rgba(232, 182, 40, 0.14);
  color: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(232, 182, 40, 0.22);
}

.why-item h4 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 19px;
  color: var(--bg);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.why-item p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(250, 246, 232, 0.72);
}

/* =========== FAQ =========== */
.faq-section { background: var(--bg); }

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}

.faq-item summary {
  font-family: var(--display);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--primary);
  padding: 24px 56px 24px 0;
  cursor: pointer;
  position: relative;
  list-style: none;
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body);
  font-weight: 400;
  font-size: 18px;
  color: var(--accent);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-item:hover summary { color: var(--primary-soft); }
.faq-item:hover summary::after {
  border-color: var(--accent-soft);
  background: var(--accent-glow);
}

.faq-item[open] summary::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
  background: var(--accent-soft);
  border-color: var(--accent-soft);
  color: var(--primary-deep);
}

.faq-item p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-soft);
  padding: 0 64px 28px 0;
  max-width: 720px;
  animation: faqFade 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes faqFade {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========== CONTACT =========== */
.contact { background: var(--bg-alt); }

.contact-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 580px;
  margin: 24px auto 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 64px;
}

.contact-card {
  background: var(--bg);
  padding: 32px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--line);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: block;
}

.contact-card:hover {
  border-color: var(--accent-soft);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(6, 43, 34, 0.14);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-deep);
  color: var(--primary);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  background: var(--accent-soft);
  color: var(--primary-deep);
  transform: scale(1.05);
}

.contact-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.contact-value {
  font-family: Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--primary);
  letter-spacing: 0;
}

.contact-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  padding: 40px;
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  position: relative;
}

/* A subtle gold ribbon at the top — small brand accent */
.contact-meta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-soft), transparent);
}

.contact-meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.meta-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.meta-value {
  font-size: 15px;
  color: var(--primary);
  font-weight: 500;
}

/* =========== FOOTER =========== */
.site-footer {
  background: var(--primary-deep);
  color: rgba(250, 246, 232, 0.7);
  padding: 60px 0 32px;
  position: relative;
}

/* A thin gold seam at the very top of the footer — like the trim on a marquee */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--accent-soft) 30%,
    var(--accent-soft) 70%,
    transparent 100%);
  opacity: 0.55;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(250, 246, 232, 0.10);
  margin-bottom: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  color: var(--bg);
  letter-spacing: -0.01em;
}

.footer-tagline {
  font-size: 12px;
  color: rgba(250, 246, 232, 0.55);
  margin-top: 2px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.footer-nav a {
  font-size: 14px;
  color: rgba(250, 246, 232, 0.7);
  transition: color 0.2s ease;
}

.footer-nav a:hover { color: var(--accent-soft); }

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(250, 246, 232, 0.08);
  color: rgba(250, 246, 232, 0.7);
  transition: all 0.25s ease;
}

.footer-social a:hover {
  background: var(--accent-soft);
  color: var(--primary-deep);
  transform: translateY(-2px);
}

.footer-copy {
  text-align: center;
  font-size: 12px;
  color: rgba(250, 246, 232, 0.42);
  letter-spacing: 0.02em;
}

/* =========== FLOATING WHATSAPP =========== */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.float-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.float-wa::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.3);
  z-index: -1;
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  0% { transform: scale(1); opacity: 1; }
  75%, 100% { transform: scale(1.4); opacity: 0; }
}

/* =========== RESPONSIVE =========== */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hero { padding: 80px 0 60px; }
  .section { padding: 80px 0; }
  .why { padding: 80px 0; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  .footer-brand { justify-content: center; }
  .footer-nav { justify-content: center; flex-wrap: wrap; }
  .footer-social { justify-content: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item-wide { grid-column: span 2; }
  .hero-stats { gap: 40px; }
  .stat-num { font-size: 36px; }
  .title-line-2 { margin-left: 0; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .header-inner { padding: 14px 20px; gap: 12px; }
  .logo-text { display: none; }
  .header-actions .btn-call span { display: none; }
  .header-actions .btn-call { padding: 10px 14px; }
  .hero { padding: 60px 0 40px; }
  .hero-title { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .why { padding: 64px 0; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-item-wide, .gallery-item-tall { grid-column: span 1; grid-row: span 1; }
  .faq-item summary { font-size: 17px; padding: 20px 48px 20px 0; }
  .faq-item p { padding: 0 12px 24px 0; font-size: 15px; }
  .contact-meta { padding: 28px 20px; }
  .contact-meta::before { left: 28px; right: 28px; }
  .float-wa { width: 56px; height: 56px; bottom: 16px; right: 16px; }
}

/* =========== PRINT =========== */
@media print {
  .site-header, .float-wa, .footer-social { display: none; }
  body { background: white; color: black; }
  .why { background: white; color: black; }
  .why-item { border-color: rgba(0,0,0,0.1); }
}
