/* ==========================================================================
   Gazzali Advertising — theme stylesheet (2026 redesign)
   Replaces the old Bootstrap/style.css/responsive.css stack site-wide.
   Design source: documents/Gazzali Homepage Redesign/Gazzali Website.dc.html
   ========================================================================== */

:root {
  --gz-font: 'Poppins', Helvetica, Arial, sans-serif;
  --gz-bg: #faf7f1;
  --gz-ink: #221c14;
  --gz-ink-soft: #4a4237;
  --gz-muted: #6b6152;
  --gz-muted-2: #766c5b;
  --gz-border: #e3dacb;
  --gz-border-soft: #e6dcc9;
  --gz-border-strong: #ddd0b8;
  --gz-card: #fffdf9;
  --gz-card-hover: #fffefb;
  --gz-panel: #efe7d8;
  --gz-gold: #9c650a;
  --gz-gold-dark: #8d5c07;
  --gz-gold-light: #c9a45c;
  --gz-gold-pale: #f0cd88;
  --gz-cream-btn: #fdfaf4;
  --gz-dark: #2b2318;
  --gz-dark-2: #1c1710;
  --gz-cream-text: #f4ead8;
  --gz-header-h: 60px;
}

/* ---------- Reset & base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  padding: 0;
  background: var(--gz-bg);
  color: var(--gz-ink);
  font-family: var(--gz-font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; cursor: pointer; }
a:hover { color: var(--gz-gold); }
/* Safety net: an email address or phone number has no spaces to wrap at,
   so on a narrow screen it can force its container wider than the
   viewport instead of breaking - let any such text break rather than
   silently pushing its box past the edge. */
body { overflow-wrap: anywhere; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
input, select, textarea, button { font-family: var(--gz-font); }
::selection { background: #f0d9a8; color: var(--gz-ink); }

.gz-wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 575px) { .gz-wrap { padding: 0 20px; } }

/* Scroll-reveal images (progressive enhancement — JS adds/removes data-rv) */
body img[data-rv] { transition: transform 800ms cubic-bezier(0.2,0.8,0.2,1), filter 600ms ease, opacity 800ms ease; }
body img[data-rv="0"] { opacity: 0; transform: scale(1.04) translateY(18px); }
body img[data-rv="1"] { opacity: 1; transform: none; }

@keyframes gz-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes gz-rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
@keyframes gz-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes gz-rule { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes gz-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes gz-kenburns { from { transform: scale(1); } to { transform: scale(1.09); } }
.gz-anim-rise { animation: gz-rise 800ms ease both; }
.gz-anim-fade { animation: gz-fade 900ms ease both; }

/* ---------- Accessibility ---------- */
.gz-skip {
  position: fixed; left: 16px; top: -60px; z-index: 10000; padding: 12px 20px; border-radius: 10px;
  background: var(--gz-dark); color: var(--gz-cream-text); font-weight: 500; transition: top 200ms ease;
}
.gz-skip:focus { top: 12px; color: var(--gz-cream-text); }
:focus-visible { outline: 3px solid var(--gz-gold); outline-offset: 3px; }
.gz-field input:focus-visible, .gz-field select:focus-visible, .gz-field textarea:focus-visible { outline: none; }
main:focus { outline: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .gz-marquee-track { animation: none !important; }
  body img[data-rv="0"] { opacity: 1; transform: none; }
}

/* ---------- Typography helpers ---------- */
.gz-eyebrow { font-weight: 500; font-size: 20px; color: var(--gz-gold); }
.gz-eyebrow-light { font-weight: 500; font-size: 21px; color: var(--gz-gold-pale); }
.gz-h1 { font-weight: 600; font-size: clamp(38px, 4.8vw, 64px); line-height: 1.05; margin: 12px 0 0; }
.gz-h2 { font-weight: 600; font-size: clamp(28px, 3.4vw, 44px); line-height: 1.1; margin: 10px 0 0; }
.gz-h3 { font-weight: 600; font-size: 26px; margin: 0; }
.gz-lede { font-size: 17px; line-height: 1.7; color: #5c5344; max-width: 780px; margin: 20px auto 0; text-wrap: pretty; }
.gz-body { font-size: 16px; line-height: 1.7; color: var(--gz-muted); }
.gz-center { text-align: center; }
.gz-divider {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin: 22px 0 48px; color: #c8b491;
}
.gz-divider span.gz-rule { width: 70px; height: 1px; background: #ddd0b8; display: block; }

/* ---------- Buttons ---------- */
.gz-btn {
  display: inline-block;
  font-weight: 600; font-size: 15px;
  padding: 15px 26px; border-radius: 2px;
  white-space: nowrap; border: none; cursor: pointer;
  transition: background 250ms ease, color 250ms ease;
}
.gz-btn-lg { padding: 16px 30px; }
.gz-btn-gold { background: var(--gz-gold); color: var(--gz-cream-btn); }
.gz-btn-gold:hover { background: var(--gz-gold-dark); color: var(--gz-cream-btn); }
.gz-btn-pale { background: var(--gz-gold-pale); color: var(--gz-dark); font-weight: 700; }
.gz-btn-pale:hover { background: var(--gz-cream-btn); color: var(--gz-dark); }
.gz-btn-outline { background: transparent; border: 1px solid var(--gz-gold-light); color: var(--gz-gold); }
.gz-btn-outline:hover { background: #f6ecd8; color: var(--gz-gold); }
.gz-btn-outline-light { background: transparent; border: 1px solid rgba(244,234,216,0.5); color: var(--gz-cream-text); }
.gz-btn-outline-light:hover { background: rgba(244,234,216,0.14); color: var(--gz-cream-text); }
.gz-btn-dark { background: var(--gz-dark-2); color: var(--gz-cream-text); }
.gz-btn-dark:hover { background: var(--gz-dark); color: var(--gz-cream-text); }
.gz-btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.gz-text-link { font-weight: 500; font-size: 19px; color: var(--gz-gold); border-bottom: 1px solid var(--gz-gold-light); padding-bottom: 3px; display: inline-block; }
.gz-text-link:hover { color: var(--gz-gold-dark); }

/* ---------- Header ---------- */
.gz-topbar { background: var(--gz-dark); color: var(--gz-cream-text); font-size: 13px; }
.gz-topbar-inner { padding: 9px 32px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.gz-topbar-tag { font-weight: 500; font-size: 15px; letter-spacing: 0.02em; }
.gz-topbar-links { display: flex; gap: 22px; }
.gz-topbar-links a:hover { color: var(--gz-gold-pale); }

.gz-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(250,247,241,0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gz-border);
  transition: box-shadow 300ms ease;
}
.gz-header.is-scrolled { box-shadow: 0 14px 34px rgba(43,35,24,0.1); }
.gz-header.is-scrolled .gz-header-row { padding-top: 10px; padding-bottom: 10px; }
.gz-header-row { padding: 14px 32px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.gz-wrap.gz-header-row { padding-left: 32px; padding-right: 32px; }
.gz-logo { flex-shrink: 0; display: flex; align-items: center; }
.gz-logo img { height: 60px; width: auto; }
.gz-nav { display: flex; align-items: center; margin-left: auto; }
.gz-nav ul { display: flex; gap: 20px; flex-wrap: wrap; font-weight: 500; font-size: 15px; }
.gz-nav a[aria-current="page"] { color: var(--gz-gold); }
.gz-header-cta { flex-shrink: 0; font-size: 14px; padding: 11px 20px; }
.gz-burger {
  display: none; flex-shrink: 0;
  width: 44px; height: 44px; border: 1px solid var(--gz-border-strong);
  background: var(--gz-card); border-radius: 2px; cursor: pointer;
  align-items: center; justify-content: center; gap: 4px; flex-direction: column;
}
.gz-burger span { display: block; width: 20px; height: 2px; background: var(--gz-ink); transition: transform 250ms ease, opacity 250ms ease; }
.gz-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.gz-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.gz-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile off-canvas nav */
.gz-mobile-nav { position: fixed; inset: 0; z-index: 500; visibility: hidden; }
.gz-mobile-nav.is-open { visibility: visible; }
.gz-mobile-nav-overlay { position: absolute; inset: 0; background: rgba(28,23,16,0.55); opacity: 0; transition: opacity 300ms ease; }
.gz-mobile-nav.is-open .gz-mobile-nav-overlay { opacity: 1; }
.gz-mobile-nav-panel {
  position: absolute; top: 0; right: 0; height: 100%;
  width: min(340px, 86%); background: var(--gz-bg);
  box-shadow: -12px 0 40px rgba(28,23,16,0.22);
  transform: translateX(100%); transition: transform 320ms cubic-bezier(0.2,0.8,0.2,1);
  padding: 26px 26px 40px; overflow-y: auto;
}
.gz-mobile-nav.is-open .gz-mobile-nav-panel { transform: translateX(0); }
.gz-mobile-nav-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.gz-mobile-nav-top img { height: 40px; width: auto; }
.gz-mobile-nav-close {
  width: 38px; height: 38px; border: 1px solid var(--gz-border-strong); border-radius: 50%;
  background: none; color: var(--gz-ink); font-size: 20px; line-height: 1; cursor: pointer;
}
.gz-mobile-nav-call { font-weight: 500; font-size: 15px; padding-bottom: 18px; border-bottom: 1px solid var(--gz-border); margin: 0 0 14px; }
.gz-mobile-nav-call a { color: var(--gz-gold); font-weight: 600; }
.gz-mobile-nav-links { display: grid; gap: 4px; }
.gz-mobile-nav-links a { display: block; padding: 13px 4px; font-weight: 500; font-size: 17px; border-bottom: 1px solid var(--gz-border); }
.gz-mobile-nav-links a[aria-current="page"] { color: var(--gz-gold); }
.gz-mobile-nav-links a.gz-mobile-cta { color: var(--gz-gold); }

@media (max-width: 991px) {
  .gz-nav { display: none; }
  .gz-header-cta { display: none; }
  .gz-burger { display: inline-flex; margin-left: auto; }
}

/* ---------- Sections ---------- */
.gz-section { max-width: 1280px; margin: 0 auto; padding: 62px 32px 0; }
.gz-section-tight { padding-top: 50px; }
.gz-panel-hero { background: var(--gz-panel); border-bottom: 1px solid var(--gz-border); }
.gz-panel-hero-inner { max-width: 1280px; margin: 0 auto; padding: 48px 32px; text-align: center; }
@media (max-width: 767px) {
  .gz-section { padding-top: 44px; }
  .gz-panel-hero-inner { padding: 38px 20px; }
}

/* ---------- Cards & grids ---------- */
.gz-card { background: var(--gz-card); border: 1px solid var(--gz-border-soft); }
.gz-card-pad { padding: 26px; }
.gz-card-pad-lg { padding: 36px; }
.gz-card:hover { border-color: var(--gz-gold-light); }
.gz-grid { display: grid; gap: 22px; }
.gz-grid-2 { grid-template-columns: repeat(2, 1fr); }
.gz-grid-3 { grid-template-columns: repeat(3, 1fr); }
.gz-grid-4 { grid-template-columns: repeat(4, 1fr); }
.gz-grid-tight { gap: 18px; }
.gz-span-2 { grid-column: span 2; }
@media (max-width: 991px) {
  .gz-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gz-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .gz-grid-2, .gz-grid-3, .gz-grid-4 { grid-template-columns: 1fr; }
  .gz-span-2 { grid-column: span 1; }
}

.gz-thumb { width: 100%; object-fit: cover; display: block; }
.gz-media-tag { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gz-gold); }
.gz-media-title { font-weight: 500; font-size: 23px; margin-top: 5px; }

.gz-split { display: grid; gap: 40px; align-items: center; }
.gz-split-2 { grid-template-columns: 1fr 1fr; }
/* !important: every .gz-split in the markup sets its own column ratio via
   an inline style (e.g. style="grid-template-columns:0.8fr 1.2fr") for
   one-off ratios - inline styles otherwise always beat a class rule here,
   inline or not, so without !important this collapse would never apply. */
@media (max-width: 900px) { .gz-split { grid-template-columns: 1fr !important; } }

/* ---------- Dark stats bar ---------- */
.gz-stats { background: var(--gz-dark); color: var(--gz-cream-text); }
.gz-stats-grid { max-width: 100%; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); }
.gz-stats-grid > div { padding: 26px 24px; border-right: 1px solid rgba(244,234,216,0.16); }
.gz-stats-grid > div:last-child { border-right: none; }
.gz-stat-num { font-weight: 500; font-size: 38px; line-height: 1; color: var(--gz-gold-pale); }
.gz-stat-label { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(244,234,216,0.68); margin-top: 8px; }
@media (max-width: 767px) {
  .gz-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gz-stats-grid > div:nth-child(2) { border-right: none; }
}

/* ---------- Chips ---------- */
.gz-chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.gz-chip {
  border: 1px solid var(--gz-border-strong); background: var(--gz-card); border-radius: 999px;
  padding: 9px 20px; font-weight: 500; font-size: 18px;
}

/* ---------- Hero slider (home) ---------- */
.gz-hero { position: relative; background: var(--gz-panel); height: calc(100vh - 128px); min-height: 580px; display: flex; flex-direction: column; }
.gz-hero-stage { position: relative; flex: 1; min-height: 0; overflow: hidden; }
.gz-hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 900ms ease; }
.gz-hero-slide.is-active { opacity: 1; }
.gz-hero-slide img { width: 100%; height: 100%; object-fit: cover; display: block; animation: gz-kenburns 16s ease-out infinite alternate; }
.gz-hero-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(38,28,16,0.9) 0%, rgba(43,35,24,0.62) 55%, rgba(43,35,24,0.24) 100%); }
.gz-hero-frame-1 { position: absolute; inset: 22px; border: 1px solid rgba(240,205,136,0.42); pointer-events: none; }
.gz-hero-frame-2 { position: absolute; inset: 30px; border: 1px solid rgba(240,205,136,0.18); pointer-events: none; }
.gz-hero-copy-wrap { position: absolute; inset: 0; display: flex; align-items: center; }
.gz-hero-copy { max-width: 640px; color: #fdf8ee; }
.gz-hero-kicker { display: flex; align-items: center; gap: 14px; font-weight: 500; font-size: 19px; color: var(--gz-gold-pale); margin-bottom: 20px; }
.gz-hero-kicker .gz-diamond { font-size: 12px; }
.gz-hero-kicker .gz-line { width: 46px; height: 1px; background: var(--gz-gold-pale); display: block; }
.gz-hero-title { font-weight: 600; font-size: clamp(36px, 3.9vw, 56px); line-height: 1.09; letter-spacing: -0.015em; margin: 0; max-width: 600px; }
.gz-hero-slide-tag { display: flex; align-items: center; gap: 14px; margin: 26px 0 22px; }
.gz-hero-slide-tag .gz-line { width: 70px; height: 1px; background: rgba(240,205,136,0.7); display: block; }
.gz-hero-slide-tag span.gz-slide-kicker { font-weight: 500; font-size: 18px; color: rgba(253,248,238,0.9); }
.gz-hero-desc { font-size: 18px; line-height: 1.7; color: rgba(253,248,238,0.84); margin: 0; max-width: 520px; text-wrap: pretty; }
.gz-hero-cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.gz-hero-controls { position: absolute; right: 56px; bottom: 52px; display: flex; align-items: center; gap: 18px; }
.gz-hero-dots { display: flex; align-items: center; gap: 14px; margin-right: 4px; }
.gz-hero-dot { width: 9px; height: 9px; transform: rotate(45deg); background: rgba(253,248,238,0.4); display: block; transition: background 300ms ease; border: none; padding: 0; cursor: pointer; }
.gz-hero-dot.is-active { background: var(--gz-gold-pale); }
.gz-hero-count { font-weight: 500; font-size: 17px; color: var(--gz-gold-pale); letter-spacing: 0.08em; }
.gz-hero-count span { color: rgba(253,248,238,0.5); }
.gz-hero-arrow {
  width: 44px; height: 44px; border: 1px solid rgba(240,205,136,0.6); color: var(--gz-gold-pale);
  display: flex; align-items: center; justify-content: center; font-size: 22px; background: none; cursor: pointer;
  transition: background 300ms ease;
}
.gz-hero-arrow:hover { background: rgba(240,205,136,0.18); color: var(--gz-gold-pale); }
@media (max-width: 767px) {
  .gz-hero { height: auto; min-height: 0; }
  .gz-hero-stage { min-height: 720px; }
  .gz-hero-copy-wrap { align-items: flex-start; padding: 64px 20px 0; }
  .gz-hero-controls { right: 20px; bottom: 24px; gap: 10px; }
  .gz-hero-count { display: none; }
  .gz-hero-title { font-size: clamp(30px, 8vw, 40px); }
  .gz-hero-desc { font-size: 16px; }
}

/* ---------- CEO / quote blocks ---------- */
.gz-quote { font-weight: 500; margin: 16px 0 0; font-size: clamp(24px, 2.5vw, 34px); line-height: 1.38; }
.gz-ceo-photo-frame { border: 1px solid var(--gz-gold-light); padding: 8px; background: var(--gz-card); }
.gz-ceo-photo-frame img { width: 100%; height: 470px; object-fit: cover; object-position: center top; border: 1px solid var(--gz-border-soft); }
.gz-ceo-name { font-weight: 500; font-size: 22px; }
.gz-ceo-role { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gz-muted-2); margin-top: 4px; }
@media (max-width: 767px) { .gz-ceo-photo-frame img { height: 320px; } }

/* ---------- Clients page extras ---------- */
.gz-badge {
  width: 96px; height: 96px; margin: 0 auto 26px; position: relative;
}
.gz-badge-ring { position: absolute; inset: 0; border: 1px dashed var(--gz-gold-light); border-radius: 50%; animation: gz-spin 34s linear infinite; }
.gz-badge-core {
  position: absolute; inset: 9px; border: 2px solid var(--gz-gold); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-weight: 500; color: var(--gz-gold); line-height: 1;
}
.gz-badge-core .n { font-size: 26px; }
.gz-badge-core .t { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 4px; }
.gz-rule-diamond { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 24px 0 22px; color: #c8a35c; }
.gz-rule-diamond .gz-line { height: 1px; background: var(--gz-gold-light); display: block; }

.gz-logo-frame { border: 1px solid var(--gz-gold-light); padding: 7px; }
.gz-logo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--gz-border); border: 1px solid var(--gz-border); }
.gz-logo-cell {
  background: var(--gz-card); height: 140px; display: flex; align-items: center; justify-content: center;
  padding: 24px; transition: transform 400ms ease, box-shadow 400ms ease, background 400ms ease;
}
.gz-logo-cell:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(43,35,24,0.12); background: var(--gz-card-hover); }
.gz-logo-cell img { max-width: 100%; max-height: 62px; }
.gz-logo-more {
  grid-column: span 4; background: #f6ecd8; height: 140px; display: flex; align-items: center; justify-content: center;
  gap: 14px; padding: 24px; font-weight: 500; font-size: 22px; color: var(--gz-gold); text-align: center;
}
.gz-logo-more .gz-line { width: 60px; height: 1px; background: var(--gz-gold-light); display: block; }
@media (max-width: 767px) {
  .gz-logo-grid { grid-template-columns: repeat(2, 1fr); }
  .gz-logo-more { grid-column: span 2; }
}

.gz-hover-card { transition: transform 400ms ease, box-shadow 400ms ease; }
.gz-hover-card:hover { transform: translateY(-5px); box-shadow: 0 14px 30px rgba(43,35,24,0.12); }

.gz-cta-band { background: var(--gz-panel); border: 1px solid var(--gz-border-strong); padding: 64px 56px; text-align: center; }
.gz-cta-band .gz-quote-mark { font-weight: 500; font-size: 44px; color: var(--gz-gold-light); line-height: 0.6; }
@media (max-width: 575px) { .gz-cta-band { padding: 40px 24px; } }

/* ---------- Reusable bullet list (service/solution cards) ---------- */
.gz-list { display: grid; gap: 9px; font-size: 15px; color: var(--gz-ink-soft); border-top: 1px solid #eee4d2; padding-top: 14px; margin: 0; }
.gz-list { list-style: none; padding-left: 0; }
.gz-list li { position: relative; padding-left: 20px; }
.gz-list li::before {
  content: ''; position: absolute; left: 3px; top: 0.6em; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gz-gold); box-shadow: 0 0 0 3px rgba(201,164,92,0.22);
}
.gz-solution-card h3 { font-weight: 600; font-size: 22px; margin: 0 0 12px; line-height: 1.3; position: relative; text-align: left; text-wrap: balance; }
.gz-solution-note { font-size: 14px; color: var(--gz-muted); margin: 0 0 12px; }
.gz-solution-card {
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
  height: 100%;
  background: var(--gz-card);
  border: 1px solid var(--gz-border-soft);
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(43,35,24,0.05), 0 16px 36px rgba(43,35,24,0.06);
  transition: transform 420ms cubic-bezier(0.2,0.8,0.2,1), box-shadow 420ms ease, border-color 420ms ease;
}
.gz-solution-card:hover {
  transform: translateY(-8px);
  border-color: var(--gz-gold-light);
  box-shadow: 0 4px 14px rgba(43,35,24,0.08), 0 30px 56px rgba(43,35,24,0.16);
}
.gz-solution-card .gz-card-pad { flex: 1; display: flex; flex-direction: column; padding: 40px 28px 30px; }
.gz-solution-card h3::after {
  content: ''; display: block; width: 34px; height: 3px; margin-top: 12px; border-radius: 2px;
  background: var(--gz-gold-light); transition: width 350ms ease, background 350ms ease;
}
.gz-solution-card:hover h3::after { width: 64px; background: var(--gz-gold); }
.gz-solution-more {
  margin-top: auto; padding-top: 16px; font-weight: 500; font-size: 14px; color: var(--gz-gold);
  border-top: 1px solid #eee4d2; display: inline-flex; align-items: center; gap: 6px;
}
.gz-solution-more { transition: color 300ms ease, letter-spacing 300ms ease; }
.gz-solution-card:hover .gz-solution-more { color: var(--gz-gold-dark); letter-spacing: 0.02em; }

.gz-solution-art {
  width: 100%; aspect-ratio: 1 / 1;
  background: radial-gradient(120% 120% at 30% 20%, #f8f2e4 0%, var(--gz-panel) 62%, #e8dec8 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
/* Art tile (top of every solution card): always a square, so a square photo is shown whole
   and every card - photo or icon - has the same shape. Icon-only cards get a brand plate. */
.gz-solution-art:not(:has(.gz-solution-photo)) {
  background:
    radial-gradient(circle at 50% 50%, rgba(240,205,136,0.16) 0%, rgba(240,205,136,0) 62%),
    linear-gradient(145deg, #4a3a22 0%, var(--gz-dark) 55%, var(--gz-dark-2) 100%);
}
.gz-solution-art::before {
  content: ''; position: absolute; inset: 14px; border-radius: 12px;
  border: 1px solid rgba(240,205,136,0.2); pointer-events: none;
}
.gz-solution-art:has(.gz-solution-photo)::before,
.gz-solution-art:has(.gz-solution-photo)::after { display: none; }
.gz-art-bg {
  position: absolute; width: 66%; height: auto; aspect-ratio: 1 / 1; color: var(--gz-gold-light); opacity: 0.3;
  animation: gz-spin 60s linear infinite;
}
.gz-art-watermark {
  position: relative; z-index: 1; width: 32%; max-width: 110px; aspect-ratio: 1 / 1;
  color: var(--gz-gold-pale);
  fill: none; stroke: currentColor; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.45));
  transition: transform 400ms cubic-bezier(0.2,0.8,0.2,1);
}
.gz-solution-art:has(.gz-solution-photo) .gz-art-watermark { display: none; }
.gz-solution-photo {
  position: relative; z-index: 1; width: 100%; height: 100%; min-width: 0; max-width: 100%;
  aspect-ratio: 1 / 1; object-fit: cover; display: block;
}
.gz-solution-list { gap: 22px; }
.gz-solution-card .gz-card-pad { padding: 28px 26px 26px; }

/* Entrance animation: each card fades/slides up the first time it scrolls into view
   (JS sets data-card-rv; without JS the cards simply stay visible). */
/* While a card is waiting, a shimmering skeleton holds its place (lazy-loader style) so the
   section never looks blank; the real card then slides in from the page edge over it. */
.gz-tree-row[data-card-rv], .gz-reveal-slot[data-card-rv] { position: relative; }
.gz-tree-row[data-card-rv] > .gz-solution-card,
.gz-reveal-slot[data-card-rv] > .gz-product-card {
  transition: transform 420ms cubic-bezier(0.2,0.8,0.2,1), box-shadow 420ms ease, border-color 420ms ease,
              opacity 600ms ease, translate 950ms cubic-bezier(0.22,0.8,0.24,1);
}
.gz-tree-row[data-card-rv="0"] > .gz-solution-card,
.gz-reveal-slot[data-card-rv="0"] > .gz-product-card { opacity: 0; translate: -100vw 0; }
.gz-tree-row[data-card-rv="0"]:nth-child(even) > .gz-solution-card,
.gz-reveal-slot[data-card-rv="0"]:nth-child(even) > .gz-product-card { translate: 100vw 0; }
@media (min-width: 992px) {
  /* three-column product grid: left / middle / right */
  .gz-reveal-slot[data-card-rv="0"]:nth-child(3n+1) > .gz-product-card { translate: -100vw 0; }
  .gz-reveal-slot[data-card-rv="0"]:nth-child(3n+2) > .gz-product-card { translate: 0 110px; }
  .gz-reveal-slot[data-card-rv="0"]:nth-child(3n) > .gz-product-card { translate: 100vw 0; }
}
.gz-tree-row[data-card-rv]::after, .gz-reveal-slot[data-card-rv]::after {
  content: ''; position: absolute; inset: 0; border-radius: 20px; pointer-events: none;
  background: linear-gradient(100deg, #eee5d3 25%, #f9f4e8 45%, #eee5d3 65%);
  background-size: 220% 100%;
  opacity: 0; transition: opacity 600ms ease;
}
.gz-tree-row[data-card-rv="0"]::after, .gz-reveal-slot[data-card-rv="0"]::after { opacity: 1; animation: gz-shimmer 1.3s linear infinite; }

/* Timeline (about page): centre spine, cards alternate sides, big year on the opposite side */
.gz-timeline { position: relative; display: grid; gap: 30px; padding: 6px 0 10px; }
.gz-timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; margin-left: -1px;
  background: linear-gradient(180deg, rgba(201,164,92,0) 0%, var(--gz-gold-light) 8%, var(--gz-gold) 50%, var(--gz-gold-light) 92%, rgba(201,164,92,0) 100%);
}
.gz-tl-item { position: relative; display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.gz-tl-year {
  grid-row: 1; font-weight: 600; font-size: clamp(30px, 3.4vw, 46px); line-height: 1; letter-spacing: -0.02em;
  color: var(--gz-gold); transition: opacity 800ms ease, transform 800ms ease;
}
.gz-tl-item:nth-child(odd) .gz-tl-card { grid-column: 1; grid-row: 1; margin-right: 64px; }
.gz-tl-item:nth-child(odd) .gz-tl-year { grid-column: 2; padding-left: 64px; }
.gz-tl-item:nth-child(even) .gz-tl-card { grid-column: 2; grid-row: 1; margin-left: 64px; }
.gz-tl-item:nth-child(even) .gz-tl-year { grid-column: 1; padding-right: 64px; text-align: right; }
.gz-tl-node {
  position: absolute; left: 50%; top: 50%; width: 22px; height: 22px; margin: -11px 0 0 -11px; z-index: 2;
  border-radius: 50%; background: var(--gz-card); border: 2px solid var(--gz-gold);
  box-shadow: 0 0 0 6px var(--gz-bg), 0 4px 12px rgba(43,35,24,0.18);
  transition: transform 300ms ease;
}
.gz-tl-node::after { content: ''; position: absolute; inset: 4px; border-radius: 50%; background: var(--gz-gold); }
.gz-tl-item:hover .gz-tl-node { transform: scale(1.25); }
.gz-tl-item:last-child .gz-tl-node::after { box-shadow: 0 0 0 0 rgba(168,111,12,0.5); animation: gz-tl-pulse 2s ease-out infinite; }
@keyframes gz-tl-pulse { to { box-shadow: 0 0 0 14px rgba(168,111,12,0); } }
.gz-tl-card {
  position: relative; padding: 22px 28px; background: var(--gz-card);
  border: 1px solid var(--gz-border-soft); border-radius: 18px;
  box-shadow: 0 2px 8px rgba(43,35,24,0.05), 0 14px 32px rgba(43,35,24,0.06);
  transition: transform 420ms cubic-bezier(0.2,0.8,0.2,1), box-shadow 420ms ease, border-color 420ms ease,
              opacity 600ms ease, translate 950ms cubic-bezier(0.22,0.8,0.24,1);
}
.gz-tl-card::before {
  content: ''; position: absolute; top: 50%; width: 64px; height: 2px; background: var(--gz-gold-light);
}
.gz-tl-item:nth-child(odd) .gz-tl-card::before { left: 100%; }
.gz-tl-item:nth-child(even) .gz-tl-card::before { right: 100%; }
.gz-tl-card:hover { transform: translateY(-5px); border-color: var(--gz-gold-light); box-shadow: 0 4px 14px rgba(43,35,24,0.08), 0 24px 46px rgba(43,35,24,0.14); }
.gz-tl-card h3 { margin: 0; font-weight: 600; font-size: 21px; line-height: 1.3; }
.gz-tl-card h3::after { content: ''; display: block; width: 30px; height: 3px; margin-top: 10px; border-radius: 2px; background: var(--gz-gold-light); transition: width 350ms ease; }
.gz-tl-card:hover h3::after { width: 56px; background: var(--gz-gold); }
.gz-tl-card p { margin: 12px 0 0; font-size: 15px; line-height: 1.65; color: var(--gz-muted); }
.gz-tl-item[data-card-rv="0"] .gz-tl-card { opacity: 0; translate: -100vw 0; }
.gz-tl-item[data-card-rv="0"]:nth-child(even) .gz-tl-card { translate: 100vw 0; }
.gz-tl-item[data-card-rv="0"] .gz-tl-year { opacity: 0; transform: translateY(14px); }
@media (prefers-reduced-motion: reduce) {
  .gz-tl-item[data-card-rv="0"] .gz-tl-card { opacity: 1; translate: none !important; }
  .gz-tl-item[data-card-rv="0"] .gz-tl-year { opacity: 1; transform: none; }
}
@media (max-width: 767px) {
  .gz-timeline { gap: 22px; padding-left: 0; }
  .gz-timeline::before { left: 13px; margin-left: 0; }
  .gz-tl-item { grid-template-columns: 1fr; padding-left: 44px; row-gap: 10px; }
  .gz-tl-item .gz-tl-year, .gz-tl-item:nth-child(odd) .gz-tl-year, .gz-tl-item:nth-child(even) .gz-tl-year {
    grid-column: 1; grid-row: 1; padding: 0; text-align: left; font-size: 28px;
  }
  .gz-tl-item .gz-tl-card, .gz-tl-item:nth-child(odd) .gz-tl-card, .gz-tl-item:nth-child(even) .gz-tl-card { grid-column: 1; grid-row: 2; margin: 0; padding: 18px 20px; }
  .gz-tl-card::before { display: none; }
  .gz-tl-node { left: 14px; top: 8px; margin: 0 0 0 -11px; }
}

/* Product cards (products page): same look as the service solution cards */
.gz-product-card {
  display: flex; flex-direction: column; height: 100%; overflow: hidden;
  background: var(--gz-card); border: 1px solid var(--gz-border-soft); border-radius: 20px;
  box-shadow: 0 2px 8px rgba(43,35,24,0.05), 0 16px 36px rgba(43,35,24,0.06);
  transition: transform 420ms cubic-bezier(0.2,0.8,0.2,1), box-shadow 420ms ease, border-color 420ms ease;
}
.gz-product-card:hover {
  transform: translateY(-8px); border-color: var(--gz-gold-light);
  box-shadow: 0 4px 14px rgba(43,35,24,0.08), 0 30px 56px rgba(43,35,24,0.16);
}
.gz-product-card .gz-thumb { position: relative; transition: transform 600ms cubic-bezier(0.2,0.8,0.2,1), opacity 800ms ease; }
.gz-product-card:hover .gz-thumb { transform: scale(1.07); }
.gz-product-card .gz-card-pad, .gz-product-card .gz-product-body {
  position: relative; z-index: 1; background: var(--gz-card);
  flex: 1; display: flex; flex-direction: column;
}
.gz-product-card .gz-product-body { padding: 22px 24px 24px; }
.gz-product-card h3, .gz-product-card .gz-media-title { line-height: 1.3; text-wrap: balance; }
.gz-product-card h3::after {
  content: ''; display: block; width: 34px; height: 3px; margin-top: 12px; border-radius: 2px;
  background: var(--gz-gold-light); transition: width 350ms ease, background 350ms ease;
}
.gz-product-card:hover h3::after { width: 64px; background: var(--gz-gold); }
.gz-product-card .gz-solution-more { margin-top: auto; width: 100%; }
.gz-product-card .gz-media-title + .gz-solution-more { margin-top: 18px; }
.gz-product-card:hover .gz-solution-more { color: var(--gz-gold-dark); letter-spacing: 0.02em; }
@keyframes gz-shimmer { from { background-position: 120% 0; } to { background-position: -120% 0; } }

/* Interactive hover: bullets nudge + glow one by one, watermark icon rotates slightly */
.gz-list li { transition: transform 300ms ease, color 300ms ease; cursor: default; }
.gz-list li::before { transition: transform 300ms ease, box-shadow 300ms ease; }
.gz-list li:hover { transform: translateX(6px); color: var(--gz-ink); }
.gz-list li:hover::before { transform: scale(1.3); box-shadow: 0 0 0 5px rgba(201,164,92,0.3); }
.gz-solution-card:hover .gz-art-watermark { transform: scale(1.12) rotate(-6deg); }
@media (prefers-reduced-motion: reduce) {
  .gz-tree-row[data-card-rv="0"] > .gz-solution-card,
  .gz-reveal-slot[data-card-rv="0"] > .gz-product-card { opacity: 1; translate: none !important; }
  .gz-tree-row[data-card-rv]::after, .gz-reveal-slot[data-card-rv]::after { display: none; }
}

/* Tree mode: a step-badge docked on each card's own top-left corner, linked to the
   previous card by a short stem drawn inside the existing row gap. No side gutter is
   reserved (unlike a trunk-and-branch layout), so the cards keep the full section width
   and the section doesn't read as padded/empty down the left edge. */
.gz-tree-connector { display: none; }
@media (min-width: 768px) {
  .gz-solution-tree { padding-left: 0; gap: 34px; }
  .gz-tree-row { position: relative; }
  .gz-tree-connector {
    display: block; position: absolute; left: 0; top: -34px; width: 0; height: 0;
    pointer-events: none;
  }
  .gz-tree-connector::before {
    content: ''; position: absolute; left: 34px; top: 0; width: 2px; height: 24px;
    background: var(--gz-gold-light);
  }
  .gz-tree-row:first-child .gz-tree-connector::before { display: none; }
  .gz-tree-node {
    position: absolute; left: 24px; top: 24px; z-index: 3;
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--gz-card);
    border: 2px solid var(--gz-gold);
    box-shadow: 0 3px 10px rgba(43,35,24,0.18);
    transition: transform 300ms ease, border-color 300ms ease;
  }
  .gz-tree-node::after {
    content: ''; position: absolute; inset: 5px; border-radius: 50%;
    background: var(--gz-gold); transition: background 300ms ease;
  }
  .gz-tree-row:hover .gz-tree-node { transform: scale(1.2); border-color: var(--gz-gold-dark); }
  .gz-tree-row:hover .gz-tree-node::after { background: var(--gz-gold-dark); }
}

/* Card grid: stacked cards (square art on top, text below) so every card has the same shape.
   2 columns on tablets, 3 on desktop. Only the first row's incoming stem is suppressed. */
@media (min-width: 768px) {
  .gz-solution-tree { grid-template-columns: repeat(2, 1fr); column-gap: 32px; }
  .gz-tree-row:nth-child(2) .gz-tree-connector::before { display: none; }
}
@media (min-width: 1100px) {
  .gz-solution-tree { grid-template-columns: repeat(3, 1fr); column-gap: 30px; }
  .gz-tree-row:nth-child(3) .gz-tree-connector::before { display: none; }
  .gz-tree-row[data-card-rv="0"]:nth-child(3n+1) > .gz-solution-card { translate: -100vw 0; }
  .gz-tree-row[data-card-rv="0"]:nth-child(3n+2) > .gz-solution-card { translate: 0 110px; }
  .gz-tree-row[data-card-rv="0"]:nth-child(3n) > .gz-solution-card { translate: 100vw 0; }
}

/* ---------- Contact page ---------- */
.gz-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.gz-field { display: grid; gap: 7px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gz-muted-2); }
.gz-field input, .gz-field select, .gz-field textarea {
  background: var(--gz-bg); border: 1px solid var(--gz-border-strong); border-radius: 10px;
  color: var(--gz-ink); font-family: inherit; font-size: 15px; padding: 14px 16px; outline: none;
  letter-spacing: normal; text-transform: none; width: 100%;
  transition: border-color 250ms ease, box-shadow 250ms ease, background 250ms ease;
}
.gz-field input::placeholder, .gz-field textarea::placeholder { color: var(--gz-muted-2); opacity: 0.8; }
.gz-field input:hover, .gz-field select:hover, .gz-field textarea:hover { border-color: var(--gz-gold-light); }
.gz-field input:focus, .gz-field select:focus, .gz-field textarea:focus {
  border-color: var(--gz-gold); background: var(--gz-card); box-shadow: 0 0 0 4px rgba(201,164,92,0.22);
}
.gz-field select {
  appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23a86f0c' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.gz-field select:required:invalid { color: var(--gz-muted-2); }
.gz-field select option { color: var(--gz-ink); }
.gz-field textarea { resize: vertical; min-height: 130px; }
.gz-field-full { grid-column: span 2; }
.gz-contact-card { display: flex; flex-direction: column; }
.gz-contact-card form { flex: 1; display: flex; flex-direction: column; }
.gz-contact-card .gz-form-grid { flex: 1; grid-template-rows: auto auto 1fr; }
.gz-contact-card .gz-field-full { grid-template-rows: auto 1fr; }
.gz-contact-card .gz-field-full textarea { height: 100%; }
.gz-contact-photo { border-radius: 20px; overflow: hidden; box-shadow: 0 2px 8px rgba(43,35,24,0.05), 0 16px 36px rgba(43,35,24,0.08); }
.gz-contact-photo img { transition: transform 700ms cubic-bezier(0.2,0.8,0.2,1); }
.gz-contact-photo:hover img { transform: scale(1.04); }
.gz-contact-card { border-radius: 20px; box-shadow: 0 2px 8px rgba(43,35,24,0.05), 0 16px 36px rgba(43,35,24,0.06); }
.gz-studio-link { display: block; color: var(--gz-ink); text-decoration: none; transition: color 250ms ease; word-break: break-word; }
.gz-studio-link:hover { color: var(--gz-gold); }
.gz-form-note { font-weight: 500; font-size: 18px; color: var(--gz-gold); }
@media (max-width: 767px) {
  .gz-form-grid { grid-template-columns: 1fr; }
  .gz-field-full { grid-column: span 1; }
}
.gz-studio-item { display: grid; gap: 4px; }
.gz-studio-label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gz-muted-2); }
.gz-studio-value { font-size: 16px; line-height: 1.55; margin-top: 6px; }
.gz-studio-value-lg { font-weight: 500; font-size: 24px; margin-top: 4px; }
.gz-map-frame { width: 100%; height: 380px; border: 1px solid var(--gz-border); border-radius: 20px; display: block; box-shadow: 0 2px 8px rgba(43,35,24,0.05), 0 16px 36px rgba(43,35,24,0.06); }
@media (max-width: 575px) { .gz-map-frame { height: 300px; } }

/* ---------- Marquee ---------- */
.gz-marquee-section { padding: 62px 0 0; overflow: hidden; }
.gz-marquee-heading { margin: 0 auto 30px; text-align: center; }
.gz-marquee-sub { font-weight: 500; font-size: 18px; color: var(--gz-muted-2); margin-top: 6px; }
.gz-marquee-track-wrap { border-top: 1px solid var(--gz-border); border-bottom: 1px solid var(--gz-border); padding: 26px 0; background: var(--gz-card); }
.gz-marquee-track { display: flex; width: max-content; animation: gz-marquee 42s linear infinite; gap: 64px; align-items: center; }
.gz-marquee-group { display: flex; gap: 64px; align-items: center; }
.gz-marquee-group img { height: 40px; width: auto; }
.gz-marquee-track:hover { animation-play-state: paused; }

/* ---------- CTA panel & footer ---------- */
.gz-cta-panel-wrap { padding-top: 62px; }
.gz-cta-panel {
  background: var(--gz-dark); color: var(--gz-cream-text); padding: 46px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; overflow: hidden; position: relative;
}
.gz-cta-panel-right { display: grid; gap: 20px; }
.gz-cta-label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(244,234,216,0.6); }
.gz-cta-value { font-weight: 500; font-size: 26px; margin-top: 4px; }
.gz-cta-office { font-size: 16px; margin-top: 6px; line-height: 1.5; }
@media (max-width: 900px) { .gz-cta-panel { grid-template-columns: 1fr; padding: 34px 26px; } }

.gz-footer { margin-top: 72px; background: var(--gz-dark-2); color: var(--gz-cream-text); }
.gz-footer-ribbon {
  background: var(--gz-gold); color: var(--gz-cream-btn); padding: 38px 46px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  transform: translateY(-38px);
}
.gz-ribbon-eyebrow { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(253,250,244,0.72); }
.gz-ribbon-title { font-weight: 600; font-size: clamp(24px, 2.4vw, 34px); line-height: 1.15; margin-top: 8px; }
@media (max-width: 767px) { .gz-footer-ribbon { padding: 28px 26px; transform: translateY(-24px); } }

.gz-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 56px; align-items: start; padding-top: 12px; }
.gz-footer-logo { height: 54px; width: auto; filter: brightness(0) invert(1); opacity: 0.95; }
.gz-footer-brand p { font-size: 15px; line-height: 1.7; color: rgba(244,234,216,0.6); margin: 20px 0 0; max-width: 340px; }
.gz-footer-stats { display: flex; gap: 34px; margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(244,234,216,0.1); }
.gz-footer-stats div { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(244,234,216,0.5); margin-top: 4px; }
.gz-footer-stats span { display: block; font-size: 26px; font-weight: 600; color: var(--gz-gold-pale); }
.gz-footer-heading { font-weight: 600; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gz-gold-pale); margin-bottom: 20px; }
.gz-footer-links { display: grid; gap: 13px; font-size: 15px; color: rgba(244,234,216,0.78); }
.gz-footer-links a:hover { color: var(--gz-gold-pale); }
.gz-footer-studio span { line-height: 1.65; color: rgba(244,234,216,0.58); }
.gz-footer-hours { color: rgba(244,234,216,0.5) !important; font-size: 14px; }
@media (max-width: 900px) { .gz-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px) { .gz-footer-grid { grid-template-columns: 1fr; } }

.gz-footer-bottom {
  margin: 44px auto 0; padding: 22px 32px 40px; border-top: 1px solid rgba(244,234,216,0.1);
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  font-size: 13px; color: rgba(244,234,216,0.46);
}
.gz-footer-bottom-right { display: flex; gap: 22px; align-items: center; }
.gz-footer-bottom-right span { letter-spacing: 0.16em; text-transform: uppercase; font-size: 11px; }
.gz-dot { width: 5px; height: 5px; transform: rotate(45deg); background: rgba(240,205,136,0.5); display: block; }

/* ---------- Floating WhatsApp button ---------- */
.gz-whatsapp-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 300;
  display: flex; align-items: center; gap: 12px;
  background: var(--gz-card); border: 1px solid var(--gz-border-soft);
  padding: 10px 18px 10px 10px; border-radius: 999px;
  box-shadow: 0 10px 26px rgba(43,35,24,0.18);
  transition: transform 250ms ease, box-shadow 250ms ease, opacity 250ms ease;
}
.gz-whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(43,35,24,0.24); color: var(--gz-ink); }
.gz-whatsapp-float.is-hidden { opacity: 0; pointer-events: none; transform: translateY(10px); }
.gz-whatsapp-icon {
  width: 42px; height: 42px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(37,211,102,0.45);
}
.gz-whatsapp-icon svg { width: 22px; height: 22px; }
.gz-whatsapp-text { font-weight: 600; font-size: 14px; white-space: nowrap; }
@media (max-width: 575px) {
  .gz-whatsapp-float { right: 14px; bottom: 14px; padding: 8px; }
  .gz-whatsapp-text { display: none; }
}

/* ---------- Lightbox ---------- */
.gz-lightbox {
  position: fixed; inset: 0; z-index: 900; background: rgba(24,19,12,0.92);
  display: none; align-items: center; justify-content: center; padding: 32px;
  cursor: zoom-out; animation: gz-fade 220ms ease both;
}
.gz-lightbox.is-open { display: flex; }
.gz-lightbox-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; max-width: 100%; }
.gz-lightbox-inner img {
  width: auto; max-width: 82vw; height: auto; max-height: 74vh; object-fit: contain; display: block;
  border: 6px solid var(--gz-cream-text); box-shadow: 0 30px 70px rgba(0,0,0,0.5); cursor: zoom-out;
}
.gz-lightbox-caption { font-weight: 500; font-size: 17px; color: var(--gz-gold-pale); text-align: center; max-width: 75vw; }
.gz-lightbox-close, .gz-lightbox-prev, .gz-lightbox-next {
  position: fixed; border: 1px solid rgba(244,234,216,0.5); border-radius: 50%; color: var(--gz-cream-text);
  background: rgba(24,19,12,0.4); display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.gz-lightbox-close { top: 26px; right: 30px; width: 46px; height: 46px; font-size: 22px; }
.gz-lightbox-prev, .gz-lightbox-next { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 26px; }
.gz-lightbox-prev { left: 24px; }
.gz-lightbox-next { right: 24px; }
.gz-lightbox-close:hover, .gz-lightbox-prev:hover, .gz-lightbox-next:hover { background: rgba(244,234,216,0.16); color: var(--gz-cream-text); }
@media (max-width: 575px) {
  .gz-lightbox-prev, .gz-lightbox-next { width: 40px; height: 40px; font-size: 20px; }
  .gz-lightbox-prev { left: 8px; }
  .gz-lightbox-next { right: 8px; }
}

/* Any image inside a gallery-enabled container hints it's clickable */
[data-gz-gallery] img, .gz-hero-copy ~ * { }
[data-gz-gallery] img { cursor: zoom-in; }
