/* ============================================================
   GalaPro Events — Design System v3
   Dark-first. Emerald-dominant. Editorial.
   ============================================================ */

:root {
  --ink:     #090907;
  --dark:    #0E0E0C;
  --green:   #05311F;
  --green2:  #0A4A2D;
  --cream:   #F4EFE5;
  --sand:    #EAE0CE;
  --gold:    #C2935A;
  --gold2:   #DABC87;
  --white:   #FFFFFF;
  --g-muted: rgba(255,255,255,.5);
  --g-faint: rgba(255,255,255,.14);
  --g-line:  rgba(255,255,255,.10);
  --c-muted: rgba(9,9,7,.5);
  --c-line:  rgba(9,9,7,.10);

  --serif: 'Playfair Display', 'Times New Roman', serif;
  --sans:  'Raleway', system-ui, -apple-system, sans-serif;

  --pad: clamp(52px, 7vw, 90px);
  --r: 0;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--dark);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: var(--sans); cursor: pointer; border: none; }

/* ─── CONTAINER ──────────────────────────────────────────── */
.wrap { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

/* ─── TAG / EYEBROW ──────────────────────────────────────── */
.tag {
  display: inline-block;
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--gold2);
}
.tag.dark { color: var(--gold); }

/* ─── NAV ────────────────────────────────────────────────── */
.nav-wrap {
  position: fixed; top: 0; left: 0;
  width: 100%; z-index: 100;
  transition: background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav-wrap.scrolled {
  background: rgba(14,14,12,.96);
  backdrop-filter: blur(24px);
  border-bottom-color: var(--g-line);
}
.nav {
  height: 76px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 32px;
}
/* logo */
.logo-stack { position: relative; height: 32px; width: 80px; display: block; }
.logo-img {
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  height: 32px; width: auto; object-fit: contain;
  transition: opacity .3s;
}
.logo-color { opacity: 0; }
.logo-white { opacity: 1; }
.nav-wrap.scrolled .logo-color { opacity: 0; }
.footer-logo { height: 32px; width: auto; }

.nav-links {
  display: flex; align-items: center; gap: 34px;
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,.66);
}
.nav-links a { transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold2); }

/* nav CTA */
.nav-cta {
  display: inline-flex; align-items: center;
  height: 38px; padding: 0 22px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--gold); color: var(--ink);
  transition: background .22s, box-shadow .22s, transform .2s;
  position: relative; overflow: hidden;
}
.nav-cta::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 65%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transition: left .55s ease; pointer-events: none;
}
.nav-cta:hover { background: var(--gold2); box-shadow: 0 4px 18px rgba(194,147,90,.28); }
.nav-cta:hover::after { left: 150%; }

/* mobile */
.mob-btn {
  display: none; width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.22); background: transparent;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.mob-btn span { width: 16px; height: 1px; background: white; display: block; transition: .2s; }
.mob-menu {
  display: none; position: fixed;
  top: 66px; left: 10px; right: 10px; z-index: 99;
  background: rgba(14,14,12,.97); backdrop-filter: blur(20px);
  border: 1px solid var(--g-line);
}
.mob-menu.open { display: block; }
.mob-menu a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 24px; font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,.72); border-bottom: 1px solid var(--g-line);
  transition: color .2s;
}
.mob-menu a:last-child { border: none; }
.mob-menu a:hover, .mob-menu a.active { color: var(--gold2); }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  height: 100vh; min-height: 680px;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: var(--ink);
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  filter: brightness(.28) saturate(.5);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(9,9,7,.2) 0%, rgba(9,9,7,.7) 100%),
    linear-gradient(180deg, rgba(9,9,7,.5) 0%, rgba(9,9,7,.1) 40%, rgba(9,9,7,.6) 100%);
}
.hero .wrap { position: relative; z-index: 2; text-align: center; }
.hero-label {
  display: flex; align-items: center; justify-content: center;
  margin-bottom: clamp(20px, 3vh, 36px);
}
.hero-label .tag { color: var(--gold2); }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(58px, 9.5vw, 136px);
  font-weight: 300; line-height: .92;
  color: white; letter-spacing: -0.02em;
  max-width: 980px; margin: 0 auto clamp(32px, 4vh, 56px);
}
.hero h1 em { font-style: italic; color: var(--gold2); }
.hero-foot {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 26px;
}
.hero-desc {
  font-size: 13.5px; line-height: 1.82;
  color: rgba(255,255,255,.54); max-width: 520px; text-align: center;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* scroll indicator */
.hero-indicator {
  position: absolute; bottom: 38px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  pointer-events: none;
}
.hero-indicator-label {
  font-size: 8px; font-weight: 700; letter-spacing: 0.42em; text-transform: uppercase;
  color: rgba(255,255,255,.22);
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: rgba(255,255,255,.12);
  position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute; top: -100%; left: 0;
  width: 100%; height: 55%;
  background: linear-gradient(to bottom, transparent, var(--gold2));
  animation: scrollTick 2.2s ease-in-out infinite;
}
@keyframes scrollTick {
  0%   { top: -100%; opacity: 0; }
  20%  { opacity: 1; }
  100% { top: 200%; opacity: 0; }
}
.btn-fill {
  display: inline-flex; align-items: center; justify-content: center;
  height: 50px; padding: 0 32px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--gold); color: var(--ink);
  transition: background .25s, transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn-fill::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 65%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.26), transparent);
  transition: left .6s ease; pointer-events: none;
}
.btn-fill:hover { background: var(--gold2); transform: translateY(-3px); box-shadow: 0 10px 32px rgba(194,147,90,.32); }
.btn-fill:hover::after { left: 150%; }
.btn-fill:active { transform: translateY(0); transition-duration: .1s; }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  height: 50px; padding: 0 32px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.3); color: rgba(255,255,255,.82);
  transition: border-color .25s, color .25s, transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn-outline::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 65%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
  transition: left .6s ease; pointer-events: none;
}
.btn-outline:hover { border-color: rgba(255,255,255,.7); color: white; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(255,255,255,.06); }
.btn-outline:hover::after { left: 150%; }
.btn-outline:active { transform: translateY(0); transition-duration: .1s; }

.btn-g {
  display: inline-flex; align-items: center; justify-content: center;
  height: 50px; padding: 0 32px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--green2); border: 1px solid rgba(255,255,255,.15); color: white;
  transition: background .25s, transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn-g::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 65%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  transition: left .6s ease; pointer-events: none;
}
.btn-g:hover { background: var(--green); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(5,49,31,.5); }
.btn-g:hover::after { left: 150%; }
.btn-g:active { transform: translateY(0); transition-duration: .1s; }

.btn-dark-fill {
  display: inline-flex; align-items: center; justify-content: center;
  height: 50px; padding: 0 32px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--ink); color: var(--cream);
  border: 1px solid var(--c-line);
  transition: background .25s, transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s;
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn-dark-fill::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 65%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
  transition: left .6s ease; pointer-events: none;
}
.btn-dark-fill:hover { background: var(--dark); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(9,9,7,.4); }
.btn-dark-fill:hover::after { left: 150%; }
.btn-dark-fill:active { transform: translateY(0); transition-duration: .1s; }

/* ─── CLIENTS ────────────────────────────────────────────── */
.clients {
  background: var(--green);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 28px 0;
}
.clients-inner {
  display: flex; align-items: center; gap: 36px; flex-wrap: wrap;
}
.clients-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.36em; text-transform: uppercase;
  color: rgba(255,255,255,.3); flex-shrink: 0;
}
.clients-div { width: 1px; height: 20px; background: rgba(255,255,255,.15); flex-shrink: 0; }
.clients-list { display: flex; align-items: center; gap: 34px; flex-wrap: wrap; }
.cl {
  font-family: var(--serif); font-size: 17px; font-weight: 400;
  color: rgba(255,255,255,.32); letter-spacing: 0.05em;
  transition: color .25s;
}
.cl:hover { color: rgba(255,255,255,.7); }
.cl.s { font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }

/* ─── SERVICES — emerald ─────────────────────────────────── */
.services {
  background: var(--green);
  padding: var(--pad) 0;
}
.section-top {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: end;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--g-line);
  margin-bottom: 0;
}
.section-top h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 300; line-height: .94; color: white;
}
.section-top p {
  font-size: 13.5px; line-height: 1.82;
  color: var(--g-muted); max-width: 460px;
  align-self: end;
}
.svc-list { display: grid; gap: 0; }
.svc-row {
  display: grid; grid-template-columns: 60px 1fr auto;
  gap: 0 32px; align-items: start;
  padding: 30px 0; border-bottom: 1px solid var(--g-line);
  transition: background .2s;
  cursor: default;
}
.svc-row:hover { background: rgba(255,255,255,.03); }
.svc-num {
  font-family: var(--serif); font-size: 17px;
  color: var(--gold2); letter-spacing: 0.04em;
  padding-top: 4px; flex-shrink: 0;
}
.svc-copy h3 {
  font-family: var(--serif); font-size: 28px; font-weight: 400;
  color: white; margin-bottom: 6px; line-height: 1.1;
}
.svc-copy p { font-size: 13px; line-height: 1.72; color: var(--g-muted); max-width: 580px; }
.svc-arrow {
  font-size: 18px; color: rgba(255,255,255,.2);
  align-self: center; transition: color .2s, transform .2s;
}
.svc-row:hover .svc-arrow { color: var(--gold2); transform: translateX(4px); }

/* ─── STATS — dark ───────────────────────────────────────── */
.stats {
  background: var(--dark); padding: var(--pad) 0;
  border-top: 1px solid rgba(255,255,255,.05);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-left: 1px solid var(--g-line);
}
.stat {
  padding: 40px 36px;
  border-right: 1px solid var(--g-line);
}
.stat strong {
  display: block; font-family: var(--serif);
  font-size: clamp(52px, 5.5vw, 80px); font-weight: 300;
  color: white; line-height: 1; letter-spacing: -0.02em;
}
.stat strong em { font-style: normal; color: var(--gold2); }
.stat span {
  display: block; margin-top: 12px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255,255,255,.34);
}
.stat-caption {
  font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.44);
  margin-top: 20px; max-width: 200px;
}

/* ─── WORK — dark ────────────────────────────────────────── */
.work {
  background: var(--ink);
  padding: var(--pad) 0;
  border-top: 1px solid rgba(255,255,255,.04);
}
.work-head {
  display: flex; justify-content: space-between;
  align-items: flex-end; gap: 32px;
  padding-bottom: 36px; border-bottom: 1px solid var(--g-line);
  margin-bottom: 2px;
}
.work-head h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 300; line-height: .94; color: white;
}
.work-controls { display: flex; gap: 8px; flex-shrink: 0; }
.arr {
  width: 46px; height: 46px;
  border: 1px solid var(--g-line); background: transparent;
  color: rgba(255,255,255,.6); font-size: 17px;
  display: grid; place-items: center; cursor: pointer;
  transition: background .22s, border-color .22s, color .22s, transform .22s cubic-bezier(.34,1.56,.64,1);
}
.arr:hover { background: var(--green2); border-color: var(--green2); color: white; transform: scale(1.08); }

.work-rail {
  overflow-x: auto; overflow-y: hidden; scroll-behavior: smooth;
  scrollbar-width: none; margin: 0 -24px; padding: 0 24px;
}
.work-rail::-webkit-scrollbar { display: none; }
.work-row { display: flex; gap: 3px; width: max-content; }
.card {
  width: min(400px, calc(100vw - 48px)); height: 560px;
  position: relative; overflow: hidden;
  background: #111; flex-shrink: 0;
}
.card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transform: scale(1.04);
  transition: transform .7s ease; filter: brightness(.7) saturate(.8);
}
.card:hover img { transform: scale(1.08); filter: brightness(.8) saturate(.9); }
.card-grad {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 35%, rgba(9,9,7,.95) 100%);
}
.card-info {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 28px;
}
.card-info .tag { margin-bottom: 8px; }
.card-info h3 {
  font-family: var(--serif); font-size: 27px; font-weight: 300;
  color: white; line-height: 1.08; margin-bottom: 5px;
}
.card-info p { font-size: 12px; color: rgba(255,255,255,.48); }

/* ─── APPROACH — cream ───────────────────────────────────── */
.approach {
  background: var(--cream); color: var(--ink);
  padding: var(--pad) 0;
}
.appr-layout {
  display: grid; grid-template-columns: .8fr 1.2fr;
  gap: 96px; align-items: start;
}
.appr-left h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 300; line-height: .95; color: var(--ink);
  margin-top: 16px; margin-bottom: 22px;
}
.appr-left p { font-size: 13.5px; line-height: 1.82; color: var(--c-muted); }
.appr-left .tag.dark { margin-bottom: 14px; }
.appr-steps {}
.appr-step {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 24px; padding: 26px 0;
  border-top: 1px solid var(--c-line);
}
.appr-step:last-child { border-bottom: 1px solid var(--c-line); }
.appr-n {
  font-family: var(--serif); font-size: 12px;
  color: var(--gold); letter-spacing: 0.08em; padding-top: 2px;
}
.appr-step h3 {
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  color: var(--ink); margin-bottom: 5px; letter-spacing: -0.01em;
}
.appr-step p { font-size: 13px; line-height: 1.65; color: var(--c-muted); }

/* ─── QUOTES — emerald ───────────────────────────────────── */
.quotes {
  background: var(--green2); color: white;
  padding: var(--pad) 0; overflow: hidden;
}
.quotes-head {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 32px;
  padding-bottom: 40px; border-bottom: 1px solid var(--g-line);
  margin-bottom: 0;
}
.quotes-head h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 300; line-height: .94; color: white;
}
.quotes-head h2 em { font-style: italic; color: var(--gold2); }
.q-arrows { display: flex; gap: 8px; flex-shrink: 0; }
.q-window { overflow: hidden; }
.q-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  touch-action: pan-y;
}
.q-slide { flex: 0 0 50%; padding: 44px 56px 0 0; }
.q-slide:nth-child(even) { padding: 44px 0 0 56px; border-left: 1px solid var(--g-line); }
.q-mark {
  font-family: var(--serif); font-size: 96px; line-height: .5;
  color: rgba(255,255,255,.12); display: block; margin-bottom: 24px;
}
.q-slide blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; font-weight: 300; line-height: 1.5;
  color: rgba(255,255,255,.88); margin-bottom: 26px;
}
.q-slide cite {
  font-family: var(--sans); font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold2); font-style: normal;
}

/* ─── CONTACT (on footer.php) ────────────────────────────── */
.cta-section {
  background: var(--cream); color: var(--ink);
  padding: var(--pad) 0;
}
.cta-layout {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; align-items: start;
}
.cta-copy h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 300; line-height: .94; color: var(--ink);
  margin-bottom: 20px;
}
.cta-copy p { font-size: 13.5px; line-height: 1.82; color: var(--c-muted); max-width: 420px; }
.cta-copy .tag.dark { margin-bottom: 14px; }
.cta-details {
  margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--c-line);
  font-size: 13px; line-height: 2; color: var(--c-muted);
}
.cta-details a { color: var(--c-muted); }
.cta-details strong { color: var(--ink); font-weight: 600; display: block; }

/* form on emerald */
.cta-form {
  background: var(--green); padding: 48px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f { display: flex; flex-direction: column; gap: 7px; margin-bottom: 12px; }
.f.span2 { grid-column: 1/-1; }
.f label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold2);
}
.f input, .f select, .f textarea {
  width: 100%;
  background: transparent;
  border: 0; border-bottom: 1px solid rgba(255,255,255,.18);
  padding: 9px 0; font-family: var(--sans); font-size: 14px;
  color: white; outline: none;
  transition: border-color .2s; -webkit-appearance: none;
}
.f select { cursor: pointer; }
.f select option { background: var(--green); color: white; }
.f textarea { min-height: 90px; resize: none; }
.f input::placeholder, .f textarea::placeholder { color: rgba(255,255,255,.3); }
.f input:focus, .f select:focus, .f textarea:focus { border-bottom-color: var(--gold2); }
.form-foot { margin-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.form-note { font-size: 11px; color: rgba(255,255,255,.36); line-height: 1.5; }

/* ─── MAP ────────────────────────────────────────────────── */
.map-bar { padding: 0; background: var(--dark); }
.map-inner { height: 260px; filter: grayscale(1) brightness(.5) contrast(1.1); }
.map-inner iframe { width: 100%; height: 100%; border: none; display: block; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.foot {
  background: var(--ink); color: white;
  padding: 52px 0 36px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.foot-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 56px; padding-bottom: 36px;
  border-bottom: 1px solid var(--g-line);
}
.foot-col { font-size: 13px; color: rgba(255,255,255,.38); line-height: 2.2; }
.foot-col a { display: block; color: rgba(255,255,255,.38); transition: color .2s; }
.foot-col a:hover { color: white; }
.foot-title {
  display: block; font-size: 9px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.foot-bottom {
  padding-top: 22px; display: flex; justify-content: space-between;
  font-size: 10.5px; color: rgba(255,255,255,.2); letter-spacing: 0.04em;
  gap: 16px; flex-wrap: wrap;
}

/* ─── INNER PAGE HERO ────────────────────────────────────── */
.pg-hero {
  min-height: 60vh; padding: 160px 0 90px;
  background: var(--ink); color: white;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  text-align: center;
}
.pg-hero::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(9,9,7,.18) 0%, rgba(9,9,7,.78) 100%),
    linear-gradient(180deg, rgba(9,9,7,.5) 0%, rgba(9,9,7,.3) 50%, rgba(9,9,7,.65) 100%);
}
.pg-hero .wrap { position: relative; z-index: 1; }
.pg-hero .tag { margin-bottom: 18px; display: block; }
.pg-hero h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 96px); font-weight: 300;
  color: white; line-height: .95; max-width: 820px;
  margin: 0 auto 22px;
}
.pg-hero p {
  font-size: 14px; line-height: 1.78; color: rgba(255,255,255,.56);
  max-width: 560px; margin: 0 auto;
}

/* ─── SPLIT FEATURE ──────────────────────────────────────── */
.split {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 520px;
  background: var(--dark);
}
.split-img { position: relative; overflow: hidden; }
.split-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.78) saturate(.82); }
.split-body {
  padding: 72px 64px; display: flex;
  flex-direction: column; justify-content: center;
  color: white;
}
.split-body .tag { margin-bottom: 18px; }
.split-body h2 {
  font-family: var(--serif); font-size: clamp(32px, 4vw, 54px);
  font-weight: 300; line-height: 1.0; margin-bottom: 18px;
}
.split-body p { font-size: 13.5px; line-height: 1.82; color: var(--g-muted); max-width: 460px; margin-bottom: 30px; }

/* ─── GENERAL SECTIONS (for inner pages) ─────────────────── */
.sec { padding: var(--pad) 0; }
.sec.on-cream { background: var(--cream); color: var(--ink); }
.sec.on-dark  { background: var(--dark); color: white; }
.sec.on-ink   { background: var(--ink); color: white; }
.sec.on-green { background: var(--green); color: white; }
.sec.on-sand  { background: var(--sand); color: var(--ink); }

.sec-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: end;
  padding-bottom: 44px; margin-bottom: 0;
  border-bottom: 1px solid var(--c-line);
}
.sec.on-dark .sec-head, .sec.on-ink .sec-head, .sec.on-green .sec-head {
  border-bottom-color: var(--g-line);
}
.sec-head h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 62px); font-weight: 300; line-height: .96;
}
.sec-head p { font-size: 13.5px; line-height: 1.82; color: var(--c-muted); max-width: 460px; }
.sec.on-dark .sec-head p, .sec.on-ink .sec-head p, .sec.on-green .sec-head p { color: var(--g-muted); }

/* card grid (services page) */
.card-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 1px; background: var(--c-line); margin-top: 1px;
}
.sec.on-dark .card-grid, .sec.on-ink .card-grid, .sec.on-green .card-grid { background: var(--g-line); }
.svc-card {
  padding: 44px 40px; background: var(--cream);
  border-top: 2px solid transparent;
  transition: background .22s, border-color .22s;
}
.sec.on-dark .svc-card, .sec.on-ink .svc-card { background: var(--dark); }
.sec.on-dark .svc-card:hover, .sec.on-ink .svc-card:hover { background: rgba(255,255,255,.03); border-top-color: var(--gold2); }
.svc-card:hover { background: var(--sand); border-top-color: var(--green); }
.svc-card .n { font-family: var(--serif); font-size: 12px; color: var(--gold); display: block; margin-bottom: 26px; letter-spacing: 0.08em; }
.svc-card h3 { font-family: var(--serif); font-size: 28px; font-weight: 400; color: var(--ink); margin-bottom: 12px; }
.sec.on-dark .svc-card h3, .sec.on-ink .svc-card h3 { color: white; }
.svc-card p { font-size: 13px; line-height: 1.75; color: var(--c-muted); }
.sec.on-dark .svc-card p, .sec.on-ink .svc-card p { color: var(--g-muted); }

/* profile stats */
.p-stats { background: var(--sand); }
.p-stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--c-line); }
.p-stat { background: var(--sand); padding: 40px 32px; }
.p-stat strong { display: block; font-family: var(--serif); font-size: 48px; font-weight: 300; color: var(--ink); line-height: 1; margin-bottom: 8px; }
.p-stat p { font-size: 12px; color: var(--c-muted); line-height: 1.6; font-weight: 500; }

/* ceo grid */
.ceo-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.ceo-img {
  height: 480px; position: relative; overflow: hidden;
  background: url("gala-corporate.jpg") center/cover no-repeat;
  filter: brightness(.8);
}
.ceo-img::after { content: attr(data-name); position: absolute; left: 26px; bottom: 22px; color: white; font-family: var(--serif); font-size: 36px; font-weight: 300; line-height: 1; }
.ceo-body h2 { font-family: var(--serif); font-size: clamp(28px, 3.5vw, 46px); font-weight: 300; color: white; line-height: 1.05; margin-bottom: 22px; }
.ceo-body .q { font-family: var(--serif); font-style: italic; font-size: 21px; color: rgba(255,255,255,.88); line-height: 1.5; margin-bottom: 20px; }
.ceo-body p { font-size: 13.5px; line-height: 1.82; color: var(--g-muted); margin-bottom: 13px; }
.ceo-body .credit { font-size: 9.5px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold2); }

/* vision */
.v-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--g-line); margin-top: 1px; }
.v-card { padding: 48px 44px; min-height: 300px; }
.v-card.light-bg { background: var(--cream); }
.v-card.dark-bg  { background: var(--dark); }
.v-card h2 { font-family: var(--serif); font-size: clamp(24px, 3vw, 38px); font-weight: 400; line-height: 1.05; margin-bottom: 16px; }
.v-card.light-bg h2 { color: var(--ink); }
.v-card.dark-bg  h2 { color: white; }
.v-card p { font-size: 13.5px; line-height: 1.8; }
.v-card.light-bg p { color: var(--c-muted); }
.v-card.dark-bg  p { color: var(--g-muted); }

/* values */
.val-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1px; background: var(--g-line); margin-top: 1px; }
.val { background: var(--ink); padding: 32px 24px; }
.val span { font-size: 9.5px; font-weight: 700; letter-spacing: 0.28em; color: var(--gold); }
.val h3 { font-family: var(--serif); font-size: 22px; font-weight: 400; color: white; margin: 22px 0 9px; }
.val p { font-size: 12px; line-height: 1.72; color: rgba(255,255,255,.48); }

/* capability list */
.cap-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--c-line); margin-top: 1px; }
.cap-list a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; border-bottom: 1px solid var(--c-line);
  font-family: var(--serif); font-size: 21px; font-weight: 400; color: var(--ink);
  transition: color .2s;
}
.cap-list a:hover { color: var(--gold); }
.cap-list a:nth-child(odd) { padding-right: 44px; }
.cap-list a:nth-child(even) { padding-left: 44px; border-left: 1px solid var(--c-line); }

/* banner */
.p-banner { height: 460px; position: relative; overflow: hidden; background: var(--ink); }
.p-banner img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.62) saturate(.82); }
.p-banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(9,9,7,.72)); z-index: 1; }
.p-banner-txt {
  position: absolute; left: 50%; bottom: 64px;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 48px)); z-index: 2;
}
.p-banner-txt h2 { font-family: var(--serif); font-size: clamp(30px, 4.5vw, 58px); font-weight: 300; color: white; max-width: 680px; line-height: 1.02; }

/* work portfolio page */
.port-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; background: var(--ink); }
.port-card { min-height: 500px; position: relative; overflow: hidden; background: #111; display: flex; align-items: flex-end; padding: 30px; }
.port-card.wide { grid-column: span 2; min-height: 560px; }
.port-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: .55s ease; filter: brightness(.72) saturate(.88); }
.port-card:hover img { transform: scale(1.06); }
.port-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9,9,7,0) 30%, rgba(9,9,7,.88) 100%); z-index: 1; }
.port-body { position: relative; z-index: 2; max-width: 520px; }
.port-body h3 { font-family: var(--serif); font-size: clamp(24px, 2.8vw, 38px); font-weight: 300; color: white; line-height: 1.05; margin-bottom: 8px; }
.port-body p { font-size: 12.5px; color: rgba(255,255,255,.54); line-height: 1.6; }
.work-callout { background: var(--dark); padding: var(--pad) 0; }
.work-callout .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.work-callout h2 { font-family: var(--serif); font-size: clamp(30px, 4vw, 54px); font-weight: 300; color: white; line-height: 1.05; }
.work-callout p { font-size: 13.5px; line-height: 1.85; color: var(--g-muted); }

/* contact page */
.ct-main { background: var(--cream); padding: var(--pad) 0; }
.ct-info-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--c-line); margin-bottom: 72px; }
.ct-info-card { background: var(--cream); padding: 36px 30px; transition: background .2s; }
.ct-info-card:hover { background: var(--sand); }
.ct-info-card .tag.dark { margin-bottom: 14px; }
.ct-info-card h3 { font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--ink); margin-bottom: 8px; }
.ct-info-card p, .ct-info-card a { font-size: 13px; color: var(--c-muted); line-height: 1.7; }
.ct-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.ct-copy h2 { font-family: var(--serif); font-size: clamp(30px, 4vw, 52px); font-weight: 400; color: var(--ink); line-height: 1.0; margin-bottom: 18px; }
.ct-copy p { font-size: 13.5px; line-height: 1.85; color: var(--c-muted); max-width: 420px; }
.ct-note { margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--c-line); font-size: 13px; color: var(--c-muted); line-height: 1.8; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media(max-width:920px) {
  .nav-links, .nav-cta { display: none; }
  .mob-btn { display: flex; }
  .wrap { width: calc(100% - 28px); }

  .hero { align-items: center; min-height: 100svh; padding-bottom: 80px; }
  .hero h1 { font-size: clamp(48px, 13vw, 80px); }
  .hero-foot { gap: 18px; }

  .clients-inner { gap: 14px; }
  .clients-div { display: none; }
  .clients-list { gap: 18px; }

  .section-top, .sec-head { grid-template-columns: 1fr; gap: 14px; }
  .svc-row { grid-template-columns: 48px 1fr; }
  .svc-arrow { display: none; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 28px 22px; }

  .work-rail { overflow: visible; margin: 0; padding: 0; }
  .work-row { display: grid; grid-template-columns: 1fr; width: 100%; gap: 3px; }
  .card { width: 100%; height: 420px; }
  .work-controls { display: none; }

  .appr-layout { grid-template-columns: 1fr; gap: 44px; }
  .quotes-head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .q-slide { flex: 0 0 100%; padding: 40px 0 0 !important; border-left: none !important; }

  .cta-layout, .ct-layout { grid-template-columns: 1fr; gap: 44px; }
  .cta-form { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }

  .foot-grid { grid-template-columns: 1fr; gap: 24px; }
  .foot-bottom { flex-direction: column; gap: 4px; }

  .pg-hero { min-height: 55vh; padding: 130px 0 60px; }
  .pg-hero h1 { font-size: clamp(38px, 11vw, 54px); }

  .split { grid-template-columns: 1fr; }
  .split-img { min-height: 280px; }
  .split-body { padding: 44px 22px; }

  .card-grid { grid-template-columns: 1fr; }
  .svc-card { padding: 34px 28px; }

  .p-stats-row, .val-grid { grid-template-columns: 1fr 1fr; }
  .ceo-grid { grid-template-columns: 1fr; gap: 44px; }
  .ceo-img { height: 360px; }
  .v-grid { grid-template-columns: 1fr; }
  .cap-list { grid-template-columns: 1fr; }
  .cap-list a { padding: 20px 0 !important; border-left: 0 !important; }
  .p-banner { height: 380px; }
  .p-banner-txt { bottom: 32px; }
  .port-grid { grid-template-columns: 1fr; }
  .port-card.wide { grid-column: span 1; }
  .work-callout .wrap { grid-template-columns: 1fr; gap: 28px; }
  .ct-info-row { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════
   ADDITIONS — WhatsApp float, Dropdown, FAQ, Features
   ════════════════════════════════════════════════════ */

/* ── LAYOUT HARDENING ────────────────────────────── */
html, body { width: 100%; max-width: 100%; }
html { background: var(--dark); }
body { background: var(--dark); }
main { display: block; width: 100%; }
section, header, footer, div.clients, div.services,
div.stats, div.work, div.approach, div.quotes { box-sizing: border-box; }

/* ── NAV DROPDOWN ────────────────────────────────── */
.nav-has-drop { position: relative; padding: 28px 12px; margin: -28px -12px; }
.nav-has-drop > a::after {
  content: ' ▾'; font-size: 8px; opacity: .5; vertical-align: middle;
}
.nav-dropmenu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 240px; z-index: 300;
  background: rgba(9,9,7,.97); backdrop-filter: blur(24px);
  border: 1px solid var(--g-line);
  opacity: 0; pointer-events: none;
  transition: opacity .2s, transform .2s;
  padding-top: 16px; /* visual breathing room without a gap */
}
/* bridge the space between nav link and menu so hover doesn't break */
.nav-dropmenu::before {
  content: ''; position: absolute;
  bottom: 100%; left: 0; right: 0; height: 20px;
}
.nav-has-drop:hover .nav-dropmenu {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropmenu a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 20px; font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,.62); border-bottom: 1px solid var(--g-line);
  transition: color .18s, background .18s;
}
.nav-dropmenu a:last-child { border-bottom: none; }
.nav-dropmenu a:hover { color: var(--gold2); background: rgba(255,255,255,.03); }
.nav-dropmenu a span { font-size: 13px; opacity: .4; }

/* ── FLOATING WHATSAPP ───────────────────────────── */
.wa-float {
  position: fixed; bottom: 30px; right: 28px; z-index: 500;
  display: flex; flex-direction: column; align-items: flex-end; gap: 14px;
}
.wa-card {
  background: var(--ink); border: 1px solid rgba(255,255,255,.1);
  width: 280px; padding: 18px 20px 16px;
  box-shadow: 0 12px 48px rgba(0,0,0,.46), 0 2px 8px rgba(0,0,0,.3);
  animation: waSlideUp .42s cubic-bezier(.34,1.4,.64,1) forwards;
  position: relative;
}
.wa-card.hidden { display: none; }
@keyframes waSlideUp {
  from { opacity: 0; transform: translateY(14px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.wa-dots { display: flex; gap: 5px; margin-bottom: 10px; align-items: center; }
.wa-dot {
  width: 7px; height: 7px;
  background: var(--gold2); border-radius: 50%;
  animation: waDot 1.6s ease-in-out infinite;
}
.wa-dot:nth-child(2) { animation-delay: .22s; }
.wa-dot:nth-child(3) { animation-delay: .44s; }
@keyframes waDot {
  0%,80%,100% { opacity: .3; transform: scale(.85); }
  40%  { opacity: 1; transform: scale(1.15); }
}
.wa-card-name {
  font-size: 9px; font-weight: 700; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold2); margin-left: 4px;
}
.wa-card p {
  font-family: var(--serif); font-style: italic;
  font-size: 14.5px; line-height: 1.55; color: rgba(255,255,255,.82);
}
.wa-card-close {
  position: absolute; top: 10px; right: 12px;
  background: none; border: none; color: rgba(255,255,255,.3);
  font-size: 15px; cursor: pointer; line-height: 1; padding: 2px 5px;
  transition: color .2s;
}
.wa-card-close:hover { color: rgba(255,255,255,.7); }
/* pointer triangle */
.wa-card::after {
  content: ''; position: absolute;
  bottom: -8px; right: 22px;
  border: 8px solid transparent;
  border-top-color: rgba(255,255,255,.1);
  border-bottom: 0;
}
.wa-card::before {
  content: ''; position: absolute;
  bottom: -7px; right: 23px;
  border: 7px solid transparent;
  border-top-color: var(--ink);
  border-bottom: 0; z-index: 1;
}

.wa-btn-row {
  display: flex; align-items: center; gap: 12px;
}
.wa-main-btn {
  display: flex; align-items: center; gap: 10px;
  background: #22c55e; color: white;
  padding: 0 20px 0 16px; height: 52px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(34,197,94,.38);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.wa-main-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(34,197,94,.5); }
.wa-main-btn svg { flex-shrink: 0; }
.wa-call-btn {
  width: 52px; height: 52px; background: var(--ink);
  border: 1px solid rgba(255,255,255,.18);
  display: grid; place-items: center;
  color: rgba(255,255,255,.7); font-size: 20px;
  text-decoration: none; transition: background .2s, border-color .2s;
}
.wa-call-btn:hover { background: var(--green2); border-color: var(--green2); color: white; }

/* ── FULL-BLEED IMAGE QUOTE ──────────────────────── */
.bleed {
  position: relative; min-height: 480px;
  display: flex; align-items: center;
  overflow: hidden; background: var(--ink);
}
.bleed-bg {
  position: absolute; inset: 0; z-index: 0;
}
.bleed-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.3) saturate(.5);
}
.bleed-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,49,31,.7) 0%, rgba(9,9,7,.4) 100%);
}
.bleed .wrap { position: relative; z-index: 1; }
.bleed-inner { max-width: 880px; margin: 0 auto; text-align: center; }
.bleed-inner blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(28px, 4.2vw, 56px); font-weight: 300;
  color: white; line-height: 1.18; margin-bottom: 30px;
}
.bleed-inner blockquote em { color: var(--gold2); font-style: normal; }
.bleed-inner cite {
  font-size: 10px; font-weight: 700; letter-spacing: 0.36em;
  text-transform: uppercase; color: var(--gold2); font-style: normal;
}

/* ── WHY GALAPRO — FEATURES ──────────────────────── */
.features {
  background: var(--cream); padding: var(--pad) 0;
}
.feat-head { margin-bottom: 56px; text-align: center; }
.feat-head .tag.dark { margin-bottom: 14px; display: block; }
.feat-head h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 300; line-height: .95; color: var(--ink);
}
.feat-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--c-line);
}
.feat-item {
  background: var(--cream); padding: 44px 34px;
  border-top: 2px solid transparent;
  transition: border-top-color .22s, background .22s, transform .25s cubic-bezier(.34,1.4,.64,1), box-shadow .25s;
}
.feat-item:hover {
  border-top-color: var(--green); background: var(--sand);
  transform: translateY(-4px); box-shadow: 0 12px 32px rgba(9,9,7,.1);
}
.feat-num {
  font-family: var(--serif); font-size: clamp(56px, 5vw, 80px);
  font-weight: 300; line-height: 1; color: rgba(9,9,7,.06);
  display: block; margin-bottom: -10px;
}
.feat-title {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--ink); margin-bottom: 12px; display: block;
}
.feat-desc { font-size: 13px; line-height: 1.78; color: var(--c-muted); }

/* ── FAQ ─────────────────────────────────────────── */
.faq { background: var(--sand); padding: var(--pad) 0; }
.faq-head { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: end; margin-bottom: 52px; }
.faq-head h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 300; line-height: .95; color: var(--ink);
}
.faq-head p { font-size: 13.5px; line-height: 1.82; color: var(--c-muted); max-width: 440px; }
.faq-list { border-top: 1px solid rgba(9,9,7,.12); }
.faq-item { border-bottom: 1px solid rgba(9,9,7,.12); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between;
  align-items: center; gap: 24px; padding: 22px 0;
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--serif); font-size: clamp(17px, 2vw, 22px); font-weight: 400;
  color: var(--ink); transition: color .2s;
}
.faq-q:hover { color: var(--green); }
.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px;
  border: 1px solid var(--c-line); border-radius: 50%;
  display: grid; place-items: center;
  font-size: 17px; color: var(--gold); transition: transform .3s, background .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--green); border-color: var(--green); color: white; }
.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height .38s cubic-bezier(.4,0,.2,1);
}
.faq-item.open .faq-body { max-height: 320px; }
.faq-body p {
  font-size: 14px; line-height: 1.82; color: var(--c-muted);
  padding-bottom: 22px; max-width: 760px;
}

/* ── SERVICES ACCORDION (services page) ──────────── */
.svc-acc { border-top: 1px solid var(--g-line); }
.svc-acc-item { border-bottom: 1px solid var(--g-line); }
.svc-acc-trigger {
  width: 100%; display: flex; justify-content: space-between;
  align-items: center; gap: 24px; padding: 28px 0;
  background: none; border: none; cursor: pointer; text-align: left;
}
.svc-acc-trigger-left { display: flex; gap: 28px; align-items: center; }
.svc-acc-n { font-family: var(--serif); font-size: 12px; color: var(--gold2); letter-spacing: 0.08em; }
.svc-acc-title {
  font-family: var(--serif); font-size: clamp(22px, 3vw, 32px);
  font-weight: 400; color: white;
}
.svc-acc-trigger:hover .svc-acc-title { color: var(--gold2); }
.svc-acc-icon {
  width: 34px; height: 34px; border: 1px solid var(--g-line);
  display: grid; place-items: center;
  font-size: 18px; color: rgba(255,255,255,.4);
  transition: transform .3s, background .2s;
  flex-shrink: 0;
}
.svc-acc-item.open .svc-acc-icon { transform: rotate(45deg); background: var(--gold); border-color: var(--gold); color: var(--ink); }
.svc-acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height .42s cubic-bezier(.4,0,.2,1);
}
.svc-acc-item.open .svc-acc-body { max-height: 600px; }
.svc-acc-inner {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 64px; padding-bottom: 40px; align-items: start;
}
.svc-acc-copy p { font-size: 14px; line-height: 1.82; color: var(--g-muted); margin-bottom: 16px; }
.svc-acc-list { list-style: none; padding: 0; display: grid; gap: 8px; }
.svc-acc-list li {
  font-size: 12.5px; color: rgba(255,255,255,.6);
  padding: 8px 12px; background: rgba(255,255,255,.04);
  border-left: 2px solid var(--gold);
}
.svc-acc-cta { margin-top: 22px; }

/* ── SERVICE PAGE DETAIL ─────────────────────────── */
.svc-detail-layout {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start;
}
.svc-detail-left h2 {
  font-family: var(--serif); font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 300; color: white; line-height: .96; margin-bottom: 20px;
}
.svc-detail-left p { font-size: 14px; line-height: 1.82; color: var(--g-muted); margin-bottom: 14px; }
.svc-detail-img { height: 460px; overflow: hidden; }
.svc-detail-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.8) saturate(.85); }
.deliverables {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--g-line); margin-top: 1px;
}
.deliv-item { background: var(--green); padding: 24px 26px; }
.deliv-item span { font-size: 9px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold2); display: block; margin-bottom: 8px; }
.deliv-item p { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,.7); }

/* ── WORK NOTE (bottom of work page) ─────────────── */
.work-callout { background: var(--dark); padding: var(--pad) 0; }
.work-callout .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.work-callout h2 { font-family: var(--serif); font-size: clamp(30px, 4vw, 54px); font-weight: 300; color: white; line-height: 1.05; }
.work-callout p { font-size: 13.5px; line-height: 1.85; color: var(--g-muted); }

/* ── STATS HEAD ──────────────────────────────────── */
.stats-head {
  text-align: center;
  padding-bottom: 44px; margin-bottom: 0;
  border-bottom: 1px solid var(--g-line);
}
.stats-head h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300; color: white; line-height: .96;
  margin-top: 12px;
}
.stats-head .tag { color: var(--gold2); }

/* ── VENUES BAND ─────────────────────────────────── */
.venues {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 28px 0;
}
.venues-inner {
  display: flex; align-items: center; gap: 36px; flex-wrap: wrap;
}
.venues-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.36em; text-transform: uppercase;
  color: rgba(255,255,255,.22); flex-shrink: 0;
}
.venues-div { width: 1px; height: 20px; background: rgba(255,255,255,.1); flex-shrink: 0; }
.venues-list { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.vn {
  font-family: var(--serif); font-size: 15px; font-weight: 400;
  color: rgba(255,255,255,.24); letter-spacing: 0.05em;
  transition: color .28s;
}
.vn:hover { color: rgba(255,255,255,.6); }

/* ── CTA STRIP ───────────────────────────────────── */
.cta-strip {
  background: var(--green2); padding: 56px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.cta-strip-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.cta-strip-meta { flex: 1; min-width: 0; }
.cta-strip-label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.38em;
  text-transform: uppercase; color: var(--gold2);
  display: block; margin-bottom: 10px;
}
.cta-strip-text {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 300; color: white; line-height: 1.05;
}
.cta-strip-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ── RESPONSIVE ADDITIONS ────────────────────────── */
@media(max-width:920px) {
  .nav-has-drop .nav-dropmenu { display: none; }
  .wa-float { bottom: 20px; right: 16px; }
  .wa-card { width: 240px; }
  .bleed { min-height: 340px; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .faq-head { grid-template-columns: 1fr; gap: 14px; }
  .svc-acc-inner { grid-template-columns: 1fr; gap: 32px; }
  .svc-detail-layout { grid-template-columns: 1fr; gap: 40px; }
  .svc-detail-img { height: 280px; }
  .deliverables { grid-template-columns: 1fr; }
  .work-callout .wrap { grid-template-columns: 1fr; gap: 28px; }
  .hero-indicator { display: none; }
  .venues-inner { gap: 14px; }
  .venues-div { display: none; }
  .venues-list { gap: 18px; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .cta-strip-actions { justify-content: center; }
}
@media(max-width:560px) {
  .feat-grid { grid-template-columns: 1fr; }
  .wa-card { width: 220px; }
}
