/* ============================================
   Renovo.pk — Luxury Brand Palette (from logo)
   ============================================ */

:root {
  /* Brand colors */
  --bg: #0C0D07;
  --bg-alt: #1B1D14;
  --bg-dark: #0C0D07;
  --card: #303224;
  --gold-primary: #A89B60;
  --gold-secondary: #C3B574;
  --gold-highlight: #E8E2C0;
  --olive: #616239;
  --text: #F4F1E6;
  --text-on-gold: #0C0D07;
  --muted: rgba(244, 241, 230, 0.62);
  --white: #F4F1E6;

  /* Semantic aliases */
  --primary: #0C0D07;
  --accent: #A89B60;
  --accent-h: #C3B574;
  --accent-light: #E8E2C0;
  --sage: #616239;
  --border: rgba(168, 155, 96, 0.18);
  --border-subtle: rgba(232, 226, 192, 0.08);
  --gold: linear-gradient(135deg, #C3B574 0%, #A89B60 45%, #616239 100%);
  --gold-soft: linear-gradient(135deg, #E8E2C0 0%, #C3B574 50%, #A89B60 100%);
  --glow-gold: rgba(168, 155, 96, 0.06);
  --glow-gold-soft: rgba(195, 181, 116, 0.04);
  --glow-olive: rgba(97, 98, 57, 0.08);

  --font-d: 'Cinzel', Georgia, serif;
  --font-b: 'Montserrat', system-ui, sans-serif;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 8px 28px rgba(168, 155, 96, 0.22);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3), 0 0 0 1px var(--border-subtle);
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 36px;
  --header: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --anim: 0.42s;
  --stagger: 40ms;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header); }
body { font-family: var(--font-b); color: var(--text); background: var(--bg); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
main { overflow-x: hidden; background: var(--bg); }

/* ---- Section backgrounds (smooth, no gradient bands) ---- */
.section {
  padding: 100px 0;
  position: relative;
  isolation: isolate;
  background: var(--bg);
  overflow: hidden;
}
.section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.section > .container,
.section > .about__layout {
  position: relative;
  z-index: 1;
}
.section--alt { background: var(--bg-alt); }
.section--alt::before {
  background:
    radial-gradient(ellipse 90% 55% at 50% -10%, var(--glow-gold) 0%, transparent 72%),
    radial-gradient(ellipse 50% 40% at 85% 90%, var(--glow-olive) 0%, transparent 68%);
}
.section:not(.section--alt)::before {
  background:
    radial-gradient(ellipse 80% 50% at 50% 110%, var(--glow-gold-soft) 0%, transparent 70%),
    radial-gradient(ellipse 45% 35% at 10% 40%, var(--glow-olive) 0%, transparent 65%);
}
.section--dark {
  background: var(--bg);
  color: var(--text);
}
.section--dark::before {
  background:
    radial-gradient(ellipse 70% 55% at 50% 45%, var(--glow-gold) 0%, transparent 75%),
    radial-gradient(ellipse 40% 30% at 20% 80%, var(--glow-olive) 0%, transparent 68%);
}
.section--dark .section__title { color: var(--gold-highlight); }
.section--dark .section__desc { color: var(--muted); }
.section--dark .section__tag { color: var(--gold-secondary); }

.section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
  position: relative;
}
.section__header::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(420px, 90%);
  height: 180px;
  background: radial-gradient(ellipse, var(--glow-gold) 0%, transparent 72%);
  pointer-events: none;
  z-index: -1;
}
.section__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-secondary);
  margin-bottom: 12px;
}
.section__title {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--gold-highlight);
  margin-bottom: 14px;
}
.section__desc { color: var(--muted); font-size: 1.05rem; }

/* ---- Fast reveal system ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--anim) var(--ease), transform var(--anim) var(--ease);
  transition-delay: calc(var(--i, 0) * var(--stagger));
}
.reveal.visible { opacity: 1; transform: none; }

@keyframes cardPop {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes marqueeScroll {
  to { transform: translateX(-50%); }
}
@keyframes pulse { 50% { opacity: 0.5; } }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.btn--primary {
  background: var(--gold);
  color: var(--text-on-gold);
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(168, 155, 96, 0.35);
  background: var(--gold-soft);
}
.btn--glow { position: relative; }
.btn--glass {
  border-color: rgba(168, 155, 96, 0.4);
  color: var(--gold-highlight);
  background: rgba(97, 98, 57, 0.25);
  backdrop-filter: blur(8px);
}
.btn--glass:hover {
  background: rgba(168, 155, 96, 0.15);
  border-color: var(--gold-secondary);
  color: var(--gold-highlight);
}
.btn--outline-dark {
  border-color: rgba(168, 155, 96, 0.35);
  color: var(--gold-highlight);
}
.btn--outline-dark:hover {
  background: rgba(168, 155, 96, 0.12);
  border-color: var(--gold-secondary);
}
.btn--full { width: 100%; }
.btn--lg { padding: 16px 40px; font-size: 0.95rem; }

/* ---- Header ---- */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: var(--header);
  background: rgba(12, 13, 7, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: box-shadow 0.3s;
}
.header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}
.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  gap: 16px;
}
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-self: start;
}
.nav__logo-img {
  height: 64px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  filter: brightness(1.08);
}
.footer__brand .nav__logo-img {
  height: 68px;
  filter: brightness(1.1);
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 2px;
  justify-self: center;
}
.nav__link {
  position: relative;
  padding: 8px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-secondary);
  transition: color 0.25s;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 1px;
  background: var(--gold-primary);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}
.nav__link:hover,
.nav__link.active {
  color: var(--gold-highlight);
  background: none;
}
.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
}
.nav__link--cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold) !important;
  color: var(--text-on-gold) !important;
  margin-left: 12px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  box-shadow: var(--shadow-gold);
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(168, 155, 96, 0.35);
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  justify-self: end;
}
.nav__toggle span {
  width: 24px; height: 2px;
  background: var(--gold-highlight);
  border-radius: 2px;
  transition: 0.25s;
}
.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.btn-icon { width: 16px; height: 16px; flex-shrink: 0; }
.trust-icon { width: 28px; height: 28px; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--header);
  background: var(--bg);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 45% at 15% 55%, var(--glow-gold) 0%, transparent 72%),
    radial-gradient(ellipse 40% 35% at 75% 30%, var(--glow-olive) 0%, transparent 68%);
}
.hero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--header));
  position: relative;
  z-index: 1;
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px clamp(24px, 5vw, 64px) 48px clamp(24px, 4vw, 48px);
  position: relative;
  z-index: 2;
}
.hero__content::after {
  content: '';
  position: absolute;
  top: 50%; left: 40%;
  transform: translate(-50%, -50%);
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(168, 155, 96, 0.05) 0%, transparent 68%);
  pointer-events: none;
  z-index: -1;
}
.hero__logo-mark {
  width: clamp(96px, 14vw, 140px);
  height: auto;
  margin-bottom: 24px;
  filter: drop-shadow(0 8px 24px rgba(168, 155, 96, 0.35));
}
.hero__brand-name {
  font-family: var(--font-d);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  background: var(--gold-soft);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.hero__brand-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  max-width: 320px;
}
.hero__brand-line {
  flex: 1;
  height: 1px;
  background: rgba(168, 155, 96, 0.35);
}
.hero__brand-diamond {
  width: 8px; height: 8px;
  background: var(--gold-primary);
  transform: rotate(45deg);
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(168, 155, 96, 0.5);
}
.hero__brand-sub {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-secondary);
  margin-bottom: 28px;
}
.hero__tagline {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--muted);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 36px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn--outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 50px;
  border: 1.5px solid var(--gold-primary);
  color: var(--gold-secondary);
  background: transparent;
  transition: all 0.25s var(--ease);
}
.btn--outline-gold:hover {
  background: rgba(168, 155, 96, 0.1);
  border-color: var(--gold-secondary);
  color: var(--gold-highlight);
  transform: translateY(-2px);
}
.hero__visual {
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
}
.hero__visual-inner {
  position: absolute;
  inset: 0;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}
.hero__visual-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 50% 60% at 0% 50%, rgba(12, 13, 7, 0.75) 0%, transparent 55%);
}
.hero__visual-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- Trust bar ---- */
.trust-bar {
  position: relative;
  z-index: 10;
  padding: 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}
.trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 100% 80% at 50% 50%, var(--glow-gold-soft) 0%, transparent 70%);
}
.trust-bar__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1240px;
}
.trust-bar__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 32px 28px;
  border-right: 1px solid rgba(168, 155, 96, 0.2);
  transition: background 0.25s;
}
.trust-bar__item:last-child { border-right: none; }
.trust-bar__item:hover { background: rgba(168, 155, 96, 0.05); }
.trust-bar__icon-wrap {
  width: 52px; height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold-primary);
  border-radius: var(--r-sm);
  color: var(--gold-secondary);
  background: rgba(168, 155, 96, 0.06);
}
.trust-bar__title {
  font-family: var(--font-d);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-secondary);
  margin-bottom: 6px;
}
.trust-bar__desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ---- Marquee ---- */
.marquee {
  background: var(--bg);
  padding: 18px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}
.marquee::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, var(--glow-olive) 0%, transparent 75%);
}
.marquee__track {
  position: relative;
  z-index: 1;
  display: flex;
  width: max-content;
  animation: marqueeScroll 18s linear infinite;
}
.marquee__content { display: flex; align-items: center; }
.marquee__item {
  padding: 0 28px;
  font-family: var(--font-d);
  font-size: 1.15rem;
  color: var(--gold-highlight);
  white-space: nowrap;
}
.marquee__dot { color: var(--gold-primary); font-size: 0.65rem; padding: 0 4px; }

/* ---- Partners / Company logos ---- */
.partners__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.partners__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.partners__logo-wrap {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 28px;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.partners__item:hover .partners__logo-wrap {
  border-color: rgba(168, 155, 96, 0.35);
  transform: translateY(-4px);
}
.partners__logo {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  background: transparent;
}
.partners__name {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
  max-width: 220px;
}

/* ---- Bento Services ---- */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 20px;
}
.bento__card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
}
.bento__card--large { grid-row: span 2; }
.bento__card--wide { grid-column: span 2; }
.bento__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}
.bento__card:hover .bento__bg { transform: scale(1.08); }
.bento__overlay {
  position: absolute; inset: 0;
  background: rgba(12, 13, 7, 0.52);
}
.bento__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 13, 7, 0.38);
  mask-image: linear-gradient(to top, black 0%, transparent 72%);
  -webkit-mask-image: linear-gradient(to top, black 0%, transparent 72%);
}
.bento__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  color: var(--white);
}
.bento__icon {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-on-gold);
  margin-bottom: 14px;
}
.bento__icon svg { width: 22px; height: 22px; }
.bento__content h3 {
  font-family: var(--font-d);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.bento__content p { font-size: 0.85rem; color: rgba(244, 241, 230, 0.7); margin-bottom: 12px; }
.bento__link { font-size: 0.82rem; font-weight: 600; color: var(--accent-light); }

/* ---- Before / After ---- */
.ba-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.ba-tabs__btn {
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(244, 241, 230, 0.55);
  border: 1px solid rgba(168, 155, 96, 0.2);
  border-radius: 50px;
  transition: all 0.25s;
}
.ba-tabs__btn.active,
.ba-tabs__btn:hover {
  background: var(--gold);
  color: var(--text-on-gold);
  border-color: transparent;
}
.ba-slider__panel { display: none; }
.ba-slider__panel.active { display: block; }
.ba-compare {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: ew-resize;
  user-select: none;
  box-shadow: var(--shadow-lg);
}
.ba-compare__after,
.ba-compare__before { position: absolute; inset: 0; }
.ba-compare__after img,
.ba-compare__before img { width: 100%; height: 100%; object-fit: cover; }
.ba-compare__before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}
.ba-compare__label {
  position: absolute;
  top: 16px;
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  z-index: 4;
}
.ba-compare__label--before { left: 16px; background: rgba(0,0,0,0.6); color: var(--white); }
.ba-compare__label--after { right: 16px; background: var(--gold); color: var(--text-on-gold); }
.ba-compare__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  z-index: 5;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}
.ba-compare__line { width: 3px; height: 100%; background: var(--gold-highlight); box-shadow: 0 0 12px rgba(0,0,0,0.4); }
.ba-compare__knob {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: var(--gold-highlight);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow);
  color: var(--text-on-gold);
}

/* ---- Portfolio scroll ---- */
.portfolio__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 24px;
  flex-wrap: wrap;
}
.portfolio__filters { display: flex; gap: 6px; flex-wrap: wrap; }
.portfolio__filter {
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: 50px;
  transition: all 0.2s;
}
.portfolio__filter.active { background: var(--gold); color: var(--text-on-gold); }
.portfolio__scroll-wrap { overflow: hidden; padding-bottom: 16px; }
.portfolio__scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 24px 16px;
  scrollbar-width: thin;
}
.portfolio-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: var(--card);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease);
}
.portfolio-card:hover { transform: translateY(-6px); }
.portfolio-card.hidden { display: none; }
.portfolio-card__img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.portfolio-card__year {
  position: absolute;
  top: 14px; right: 14px;
  padding: 4px 12px;
  background: var(--gold);
  color: var(--text-on-gold);
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 50px;
}
.portfolio-card__body { padding: 22px; }
.portfolio-card__cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-h);
}
.portfolio-card__body h3 {
  font-family: var(--font-d);
  font-size: 1.2rem;
  margin: 6px 0 4px;
  color: var(--text);
}
.portfolio-card__body p { font-size: 0.82rem; color: var(--muted); }

/* ---- Process sticky ---- */
.process__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.process__sticky { position: sticky; top: calc(var(--header) + 32px); }
.process__sticky .section__desc { text-align: left; margin-bottom: 28px; }
.process__steps { display: flex; flex-direction: column; gap: 20px; }
.process-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--card);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-subtle);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.process-card:hover {
  border-color: rgba(168, 155, 96, 0.28);
  transform: translateX(6px);
  box-shadow: var(--shadow-card), 0 0 48px rgba(168, 155, 96, 0.06);
}
.process-card__num {
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-secondary);
  flex-shrink: 0;
}
.process-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.process-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* ---- Packages ---- */
.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.package-card {
  position: relative;
  padding: 36px 28px;
  background: var(--card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.package-card:hover { transform: translateY(-6px); border-color: rgba(168, 155, 96, 0.35); }
.package-card--popular {
  background: var(--bg-alt);
  color: var(--text);
  border-color: rgba(168, 155, 96, 0.4);
  box-shadow: var(--shadow-gold);
  transform: scale(1.04);
}
.package-card--popular:hover { transform: scale(1.04) translateY(-6px); }
.package-card__badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 5px 16px;
  background: var(--gold);
  color: var(--text-on-gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  white-space: nowrap;
}
.package-card__name {
  font-family: var(--font-d);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.package-card--popular .package-card__name { color: var(--text); }
.package-card:not(.package-card--popular) .package-card__name { color: var(--text); }
.package-card__price {
  font-family: var(--font-d);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--accent);
}
.package-card__currency { font-size: 1.25rem; vertical-align: super; }
.package-card__desc { font-size: 0.88rem; margin-bottom: 24px; opacity: 0.7; }
.package-card__features { margin-bottom: 28px; }
.package-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
}
.package-card:not(.package-card--popular) .package-card__features li { border-color: var(--border-subtle); }
.package-card__features li span { color: var(--accent); font-weight: 700; }

/* ---- About ---- */
.about__layout {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(320px, 560px) minmax(180px, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.about__side img {
  width: 100%;
  aspect-ratio: 3/5;
  object-fit: cover;
  border-radius: var(--r-md);
  border: 1px solid rgba(168, 155, 96, 0.2);
  box-shadow: var(--shadow-lg);
}
.about__center {
  text-align: center;
  padding: 20px 0;
  position: relative;
}
.about__center::before {
  content: '';
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(480px, 100%);
  height: 280px;
  background: radial-gradient(ellipse, var(--glow-gold) 0%, transparent 72%);
  pointer-events: none;
  z-index: -1;
}
.about__center .section__tag { display: block; }
.about__center .section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.about__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 20px auto 28px;
  max-width: 200px;
}
.about__ornament-line {
  flex: 1;
  height: 1px;
  background: rgba(168, 155, 96, 0.3);
}
.about__ornament-diamond {
  width: 7px; height: 7px;
  background: var(--gold-primary);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.about__text {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  text-align: left;
  max-width: 480px;
  margin: 0 auto;
}
.about__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--card);
  border-radius: var(--r-sm);
  border: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  font-weight: 500;
}
.about__feature-icon {
  width: 22px; height: 22px;
  background: var(--gold);
  color: var(--text-on-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ---- Testimonials ---- */
.testimonials__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.testimonials__nav { display: flex; gap: 10px; }
.testimonials__btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  font-size: 1rem;
  transition: all 0.2s;
}
.testimonials__btn:hover { background: var(--gold); border-color: transparent; color: var(--text-on-gold); }
.testimonials__slider { position: relative; min-height: 260px; }
.testimonial-slide {
  position: absolute;
  inset: 0;
  background: var(--card);
  padding: 44px;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-card), 0 0 80px rgba(168, 155, 96, 0.04);
  border: 1px solid var(--border-subtle);
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  pointer-events: none;
}
.testimonial-slide.active {
  opacity: 1;
  transform: none;
  pointer-events: all;
  position: relative;
}
.testimonial-slide__stars { color: var(--gold-secondary); letter-spacing: 3px; margin-bottom: 20px; }
.testimonial-slide p {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 760px;
  color: var(--text);
}
.testimonial-slide footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.testimonial-slide__avatar {
  width: 48px; height: 48px;
  background: var(--gold);
  color: var(--text-on-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.testimonial-slide cite { display: block; font-style: normal; font-weight: 700; color: var(--text); }
.testimonial-slide footer span { font-size: 0.82rem; color: var(--muted); }
.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.testimonials__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: all 0.25s;
}
.testimonials__dot.active { background: var(--accent); width: 28px; border-radius: 4px; }

/* ---- FAQ ---- */
.faq__layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.faq__intro .section__desc { text-align: left; margin-bottom: 28px; }
.faq__item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color 0.2s;
}
.faq__question:hover { color: var(--gold-secondary); }
.faq__icon {
  font-size: 1.4rem;
  color: var(--gold-primary);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq__item.open .faq__answer { max-height: 200px; }
.faq__answer p {
  padding-bottom: 22px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---- CTA ---- */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: var(--bg-alt);
  isolation: isolate;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 65% 55% at 50% 50%, var(--glow-gold) 0%, transparent 72%),
    radial-gradient(ellipse 35% 30% at 80% 20%, var(--glow-olive) 0%, transparent 68%);
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}
.cta-banner__inner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 360px; height: 200px;
  background: radial-gradient(ellipse, rgba(168, 155, 96, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.cta-banner__inner h2 {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--gold-highlight);
  margin-bottom: 12px;
}
.cta-banner__inner p { color: var(--muted); margin-bottom: 32px; font-size: 1.05rem; }

/* ---- Contact ---- */
.contact__wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  background: var(--card);
  border-radius: var(--r-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg), 0 0 100px rgba(168, 155, 96, 0.05);
  border: 1px solid var(--border-subtle);
  position: relative;
}
.contact__wrap::before {
  content: '';
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  width: 70%; height: 120px;
  background: radial-gradient(ellipse, var(--glow-gold) 0%, transparent 72%);
  pointer-events: none;
  z-index: -1;
}
.contact__channels { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.contact__channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: var(--bg);
  border-radius: var(--r-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.contact__channel:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.contact__channel span:first-child { font-size: 1.3rem; }
.contact__channel strong { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-secondary); }
.contact__channel p { font-size: 0.95rem; color: var(--text); font-weight: 500; }
.form__group { margin-bottom: 18px; }
.form__group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  color: var(--gold-highlight);
}
.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 0.92rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--bg-alt);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(168, 155, 96, 0.18);
  background: var(--bg);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__status { margin-top: 14px; text-align: center; font-size: 0.88rem; font-weight: 500; }
.form__status.success { color: var(--gold-secondary); }
.form__status.error { color: var(--gold-primary); }

/* ---- Footer ---- */
.footer {
  background: var(--bg);
  color: var(--muted);
  padding-top: 72px;
  border-top: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 200px;
  background: radial-gradient(ellipse, var(--glow-gold-soft) 0%, transparent 72%);
  pointer-events: none;
}
.footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer__brand .nav__logo { margin-bottom: 16px; }
.footer__brand p { font-size: 0.9rem; line-height: 1.65; max-width: 280px; }
.footer__links h4,
.footer__social h4 {
  color: var(--gold-highlight);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__links li { margin-bottom: 10px; }
.footer__links a { font-size: 0.88rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--gold-secondary); }
.footer__social-links { display: flex; gap: 10px; }
.footer__social-links a {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-highlight);
  transition: all 0.2s;
}
.footer__social-links a:hover { background: var(--gold); color: var(--text-on-gold); }
.footer__bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.82rem;
}
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
}
.footer__legal a {
  font-size: 0.78rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer__legal a:hover { color: var(--gold-secondary); }

@media (max-width: 768px) {
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }
}

/* ---- Legal pages ---- */
.legal-page {
  padding-top: calc(var(--header) + 48px);
  padding-bottom: 80px;
  background: var(--bg);
  min-height: 70vh;
}
.legal-page__inner { max-width: 760px; }
.legal-page__back {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--gold-secondary);
  margin-bottom: 28px;
  transition: color 0.2s;
}
.legal-page__back:hover { color: var(--gold-highlight); }
.legal-page__title {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--gold-highlight);
  margin-bottom: 8px;
}
.legal-page__updated {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 40px;
}
.legal-page__section {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-subtle);
}
.legal-page__section:last-child { border-bottom: none; }
.legal-page__section h2 {
  font-family: var(--font-d);
  font-size: 1.15rem;
  color: var(--gold-secondary);
  margin-bottom: 12px;
}
.legal-page__section p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ---- Cookie popup ---- */
body.cookie-open { overflow: hidden; }
.cookie-popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.cookie-popup--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.cookie-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 13, 7, 0.82);
  backdrop-filter: blur(6px);
}
.cookie-popup__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(168, 155, 96, 0.1);
  text-align: center;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.35s var(--ease);
}
.cookie-popup--visible .cookie-popup__panel {
  transform: none;
}
.cookie-popup__title {
  font-family: var(--font-d);
  font-size: 1.5rem;
  color: var(--gold-highlight);
  margin-bottom: 14px;
}
.cookie-popup__text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.cookie-popup__text a {
  color: var(--gold-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-popup__text a:hover { color: var(--gold-highlight); }
.cookie-popup__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 768px) {
  .cookie-popup__panel { padding: 28px 22px; }
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    top: calc(var(--header) + 8px);
    left: 16px; right: 16px;
    background: var(--card);
    flex-direction: column;
    padding: 20px;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: all 0.3s var(--ease);
    justify-self: stretch;
  }
  .nav__menu.open { opacity: 1; transform: none; pointer-events: all; }
  .nav__link {
    width: 100%;
    text-align: center;
    padding: 12px;
  }
  .nav__link--cta { margin: 8px 0 0; justify-content: center; }
}

@media (max-width: 1024px) {
  .hero__split { grid-template-columns: 1fr; }
  .hero__visual { min-height: 360px; order: -1; }
  .hero__visual-inner { clip-path: none; position: relative; inset: auto; height: 360px; }
  .hero__visual-inner::before { display: none; }
  .hero__content { padding: 40px 24px 56px; text-align: center; align-items: center; }
  .hero__brand-divider { margin-left: auto; margin-right: auto; }
  .hero__tagline { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .about__layout { grid-template-columns: 1fr; max-width: 640px; }
  .about__side { display: none; }
  .bento { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .bento__card--large { grid-row: span 1; }
  .bento__card--wide { grid-column: span 2; }
  .process__layout,
  .faq__layout,
  .contact__wrap { grid-template-columns: 1fr; gap: 40px; }
  .process__sticky { position: static; }
  .packages__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .package-card--popular { transform: none; }
  .trust-bar__inner { grid-template-columns: 1fr 1fr; }
  .trust-bar__item:nth-child(2) { border-right: none; }
  .partners__grid { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; max-width: 640px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .trust-bar__inner { grid-template-columns: 1fr; }
  .trust-bar__item { border-right: none; border-bottom: 1px solid var(--border); }
  .bento { grid-template-columns: 1fr; }
  .bento__card--wide { grid-column: span 1; }
  .bento__card { min-height: 240px; }
  .portfolio__top { flex-direction: column; align-items: flex-start; }
  .about__grid { grid-template-columns: 1fr; }
  .contact__wrap { padding: 28px 20px; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .org-chart__grid { grid-template-columns: 1fr; }
  .consultancy__grid { grid-template-columns: 1fr; }
  .ceo__grid { grid-template-columns: 1fr; }
  .experience__inner { flex-direction: column; text-align: center; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .partners__grid { grid-template-columns: 1fr; max-width: 300px; }
}

@media (max-width: 480px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
}

/* ---- Gallery ---- */
.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  padding: 6px;
  background: rgba(48, 50, 36, 0.45);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.gallery__filter {
  padding: 9px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: 50px;
  transition: all 0.2s;
}
.gallery__filter.active,
.gallery__filter:hover { background: var(--gold); color: var(--text-on-gold); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery__item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 1px solid rgba(168, 155, 96, 0.15);
  transition: transform 0.3s var(--ease);
}
.gallery__item:hover { transform: translateY(-4px); }
.gallery__item.hidden { display: none; }
.gallery__img {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s var(--ease);
}
.gallery__item:hover .gallery__img { transform: scale(1.06); }
.gallery__overlay {
  position: absolute; inset: 0;
  background: rgba(12, 13, 7, 0.55);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px; color: var(--text);
  opacity: 0; transition: opacity 0.3s;
}
.gallery__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 13, 7, 0.45);
  mask-image: linear-gradient(to top, black 0%, transparent 65%);
  -webkit-mask-image: linear-gradient(to top, black 0%, transparent 65%);
  pointer-events: none;
}
.gallery__overlay > * { position: relative; z-index: 1; }
.gallery__item:hover .gallery__overlay { opacity: 1; }
.gallery__cat {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-light); margin-bottom: 4px;
}
.gallery__overlay h3 { font-family: var(--font-d); font-size: 1.1rem; font-weight: 600; }

/* ---- CEO Message ---- */
.ceo__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.ceo__visual {
  position: relative;
}
.ceo__visual::before {
  content: '';
  position: absolute;
  inset: -24px;
  background: radial-gradient(ellipse, var(--glow-gold) 0%, transparent 72%);
  pointer-events: none;
  z-index: -1;
}
.ceo__frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(168, 155, 96, 0.2);
}
.ceo__frame img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.ceo__badge {
  margin-top: -24px;
  margin-left: 24px;
  position: relative;
  z-index: 2;
  display: inline-block;
  background: var(--gold);
  padding: 16px 24px;
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-gold);
}
.ceo__badge-name { display: block; font-family: var(--font-d); font-size: 1.1rem; font-weight: 700; color: var(--text-on-gold); }
.ceo__badge-title { font-size: 0.75rem; font-weight: 600; color: var(--text-on-gold); opacity: 0.85; }
.ceo__message p { color: var(--muted); font-size: 0.98rem; line-height: 1.8; margin-bottom: 16px; }
.ceo__closing { margin-top: 24px; font-weight: 600; color: var(--text); }
.ceo__signature { font-family: var(--font-d); font-size: 1.5rem; font-weight: 600; color: var(--gold-secondary); margin-top: 4px; }
.ceo__role { font-size: 0.85rem; color: var(--muted); }

/* ---- Experience ---- */
.experience {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: var(--bg);
  isolation: isolate;
}
.experience::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 50% at 25% 50%, var(--glow-gold) 0%, transparent 72%),
    radial-gradient(ellipse 40% 35% at 85% 60%, var(--glow-olive) 0%, transparent 68%);
}
.experience__inner {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  gap: 64px;
}
.experience__stat { flex-shrink: 0; text-align: center; }
.experience__num {
  display: block;
  font-family: var(--font-d);
  font-size: clamp(4rem, 10vw, 6rem);
  font-weight: 700;
  color: var(--gold-secondary);
  line-height: 1;
  text-shadow: 0 0 60px rgba(168, 155, 96, 0.2);
}
.experience__label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-top: 8px;
}
.experience__text h2 {
  font-family: var(--font-d);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--gold-highlight);
  margin-bottom: 16px;
}
.experience__text p { color: var(--muted); font-size: 1.05rem; line-height: 1.75; margin-bottom: 28px; max-width: 520px; }

/* ---- Org Chart / Hierarchy ---- */
.org-chart { max-width: 900px; margin: 0 auto; }
.org-chart__level { display: flex; flex-direction: column; align-items: center; }
.org-chart__node {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px 28px;
  text-align: center;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow);
  transition: transform 0.25s, border-color 0.25s;
}
.org-chart__node:hover { transform: translateY(-2px); border-color: rgba(168, 155, 96, 0.35); }
.org-chart__node--ceo {
  background: var(--bg-alt);
  color: var(--text);
  border-color: rgba(168, 155, 96, 0.4);
}
.org-chart__node--ceo h3 { color: var(--gold-highlight); }
.org-chart__node--ceo p { color: var(--muted); }
.org-chart__node h3 { font-family: var(--font-d); font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.org-chart__node p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
.org-chart__connector {
  width: 1px; height: 32px;
  background: rgba(168, 155, 96, 0.25);
}
.org-chart__branch { margin-top: 48px; }
.org-chart__branch-label,
.org-chart__field .org-chart__branch-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-h);
  margin-bottom: 24px;
}
.org-chart__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.org-chart__card {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--r-sm);
  padding: 18px;
  transition: box-shadow 0.25s;
}
.org-chart__card:hover { box-shadow: var(--shadow); }
.org-chart__card h4 { font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.org-chart__card p { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }
.org-chart__field { margin-top: 40px; }
.org-chart__field-grid { display: flex; flex-direction: column; gap: 12px; max-width: 640px; margin: 0 auto; }
.org-chart__field-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 20px;
  background: var(--bg-alt);
  border-radius: var(--r-sm);
}
.org-chart__field-dot {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.org-chart__field-item h4 { font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.org-chart__field-item p { font-size: 0.82rem; color: var(--muted); }

/* ---- Consultancy ---- */
.consultancy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.consultancy__text { color: var(--muted); font-size: 1.02rem; line-height: 1.75; margin-bottom: 24px; }
.consultancy__list { margin-bottom: 32px; }
.consultancy__list li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  font-size: 0.92rem; font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.consultancy__check {
  width: 26px; height: 26px;
  background: var(--gold);
  color: var(--text-on-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800; flex-shrink: 0;
}
.consultancy__visual {
  position: relative;
}
.consultancy__visual::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse, var(--glow-gold) 0%, transparent 72%);
  pointer-events: none;
  z-index: -1;
}
.consultancy__visual img {
  width: 100%;
  border-radius: var(--r-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(168, 155, 96, 0.2);
}
.consultancy__card {
  position: absolute;
  bottom: -16px; left: -16px;
  background: var(--gold);
  padding: 20px 28px;
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-gold);
  text-align: center;
}
.consultancy__card span {
  display: block;
  font-family: var(--font-d);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-on-gold);
  line-height: 1;
}
.consultancy__card small { font-size: 0.72rem; font-weight: 600; color: var(--text-on-gold); opacity: 0.85; }

/* ---- Responsive additions ---- */
@media (max-width: 1024px) {
  .ceo__grid,
  .consultancy__grid { grid-template-columns: 1fr; gap: 40px; }
  .org-chart__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__logo-img { height: 48px; max-width: 170px; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .org-chart__grid { grid-template-columns: 1fr; }
  .experience__inner { flex-direction: column; text-align: center; gap: 32px; }
  .experience__text p { max-width: none; }
}
