/* CITTA BUILDERS — site-level styles layered on top of the Cohere DS tokens.
   DS components (Button, Chip, CapabilityCard, etc) bring their own inline
   styles; this sheet covers layout, nav/footer chrome, and the few custom
   patterns (timeline, image placeholders, portfolio filters) the DS doesn't
   define. Kept in class form (not everything is inline) so pages stay short.

   BRAND OVERRIDE — CITTA BUILDERS ships its own black & gold identity (per
   the approved logo), layered on top of the bound DS tokens below. Dark
   "product band" tokens are repointed from green/navy to matte black /
   charcoal, and the coral/blue accent tokens are repointed to the brand's
   metallic gold, so every DS component that already styles against
   var(--color-*) picks up the new palette automatically. */
:root {
  --brand-black: #111111;
  --brand-charcoal: #2b2b2b;
  --brand-ivory: #f8f6f2;
  --brand-gold: #c8a34d;      /* icons, dividers, large elements, on-dark text */
  --brand-gold-ink: #8a6d1a;  /* readable gold-brown for small text/links on light bg */

  --color-primary: var(--brand-black);
  --color-deep-green: var(--brand-black);      /* dark band 1 */
  --color-dark-navy: var(--brand-charcoal);    /* dark band 2 */
  --color-coral: var(--brand-gold);
  --color-action-blue: var(--brand-gold-ink);
  --surface-wash-green: #f8f1df;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { margin: 0; background: var(--surface-page); overflow-x: hidden; }
::-webkit-scrollbar { width: 6px; height: 6px; background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(200,163,77,0.35); border-radius: 10px; }
::-webkit-scrollbar-track { background: transparent; }
* { scrollbar-width: thin; scrollbar-color: rgba(200,163,77,0.35) transparent; }
a { color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-body); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 720px) {
  .container { padding: 0 24px; }
}

/* ---------- Nav — floating luxury glass capsule ---------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: padding 0.35s cubic-bezier(0.22,1,0.36,1);
  background: transparent;
  pointer-events: none;
}
.site-nav.scrolled { padding: 14px 0; }
.site-nav .container.nav-outer { pointer-events: none; }
.nav-capsule {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 14px 8px 22px;
  border-radius: var(--radius-full);
  background: rgba(10,14,13,0.42);
  border: 1px solid rgba(200,163,77,0.28);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 18px 40px rgba(0,0,0,0.22);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, padding 0.35s ease;
  opacity: 0;
  transform: translateY(-14px);
  animation: nav-drop-in 0.7s cubic-bezier(0.22,1,0.36,1) 0.05s forwards;
}
@keyframes nav-drop-in { to { opacity: 1; transform: translateY(0); } }
.site-nav.scrolled .nav-capsule,
.site-nav.on-light .nav-capsule {
  background: rgba(248,246,242,0.88);
  border-color: rgba(200,163,77,0.35);
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 12px 32px rgba(20,20,15,0.12);
}
.nav-logo-link { display: inline-flex; align-items: center; line-height: 0; text-decoration: none; transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1); flex-shrink: 0; }
.nav-logo-link:hover { transform: scale(1.05); }
.nav-logo-img { height: 86px; width: auto; display: block; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35)); transition: filter 0.35s ease; }
.nav-logo-link:hover .nav-logo-img { filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35)) drop-shadow(0 0 18px rgba(200,163,77,0.55)); }
.nav-links {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-indicator {
  position: absolute; left: 0; top: 50%; height: 34px; margin-top: -17px;
  border-radius: var(--radius-full);
  background: rgba(200,163,77,0.16);
  border: 1px solid rgba(200,163,77,0.4);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), width 0.4s cubic-bezier(0.22,1,0.36,1), opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}
.nav-indicator--ready { opacity: 1; }
.nav-links a {
  position: relative;
  z-index: 1;
  font-size: 15px;
  text-decoration: none;
  color: var(--on-dark-nav, #fff);
  opacity: 0;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: opacity 0.5s ease, color 0.25s ease, transform 0.5s cubic-bezier(0.22,1,0.36,1);
  transform: translateY(-8px);
  animation: nav-link-in 0.5s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes nav-link-in { to { opacity: 0.85; transform: translateY(0); } }
.nav-links a:hover { opacity: 1; }
.nav-links a.active { opacity: 1; font-weight: 500; }
.site-nav.scrolled .nav-links a,
.site-nav.on-light .nav-links a { color: var(--color-primary); }
.nav-cta { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.nav-cta-glow { position: relative; display: inline-block; border-radius: var(--radius-full); }
.nav-cta-glow::before {
  content: ''; position: absolute; inset: -2px; border-radius: var(--radius-full); z-index: -1;
  background: conic-gradient(from 0deg, transparent 0%, rgba(200,163,77,0.9) 12%, transparent 24%, transparent 100%);
  animation: nav-cta-spin 3.2s linear infinite;
  opacity: 0.9;
}
@keyframes nav-cta-spin { to { transform: rotate(360deg); } }
.nav-menu-btn {
  display: none;
  position: relative;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(200,163,77,0.32); background: rgba(200,163,77,0.06);
  align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0;
  flex-direction: column; gap: 5px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.nav-menu-btn:hover { border-color: var(--brand-gold); background: rgba(200,163,77,0.14); box-shadow: 0 6px 16px rgba(200,163,77,0.25); }
.nav-menu-btn:active { transform: scale(0.92); }
.nav-menu-btn.is-open { border-color: var(--brand-gold); background: rgba(200,163,77,0.18); box-shadow: 0 0 0 4px rgba(200,163,77,0.14); }
.nav-menu-btn span { display: block; width: 18px; height: 2px; background: var(--on-dark-nav, #fff); border-radius: 2px; transition: background 0.25s ease, transform 0.35s cubic-bezier(0.65,0,0.35,1), opacity 0.3s ease, width 0.3s ease; }
.site-nav.scrolled .nav-menu-btn span,
.site-nav.on-light .nav-menu-btn span { background: var(--color-primary); }
.nav-menu-btn.is-open span { background: var(--brand-gold) !important; }
.nav-menu-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-menu-btn.is-open span:nth-child(2) { opacity: 0; width: 0; }
.nav-menu-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  margin-top: 10px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(18,16,10,0.96) 0%, rgba(8,7,5,0.97) 100%);
  border: 1px solid rgba(200,163,77,0.32);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04), 0 24px 60px rgba(0,0,0,0.45);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top right;
  transition: max-height 0.4s cubic-bezier(0.22,1,0.36,1), opacity 0.3s ease, transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.nav-mobile-menu--open { max-height: min(640px, 88vh); opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); overflow-y: auto; -webkit-overflow-scrolling: touch; }
.nav-mobile-menu-wrap { position: relative; }
.nav-mobile-scroll-hint {
  position: absolute; left: 0; right: 0; bottom: 2px; height: 44px;
  display: none; align-items: flex-end; justify-content: center; padding-bottom: 6px;
  background: linear-gradient(180deg, transparent, rgba(8,7,5,0.92) 65%);
  color: var(--brand-gold); pointer-events: none; z-index: 2; border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.nav-mobile-menu-wrap--open .nav-mobile-scroll-hint { display: flex; animation: nav-scroll-hint-bounce 1.6s ease-in-out infinite; }
@keyframes nav-scroll-hint-bounce { 0%, 100% { transform: translateY(0); opacity: 0.85; } 50% { transform: translateY(4px); opacity: 1; } }
.nav-mobile-menu a {
  position: relative;
  color: rgba(255,255,255,0.82); text-decoration: none; font-size: 16px; padding: 13px 14px; border-radius: var(--radius-sm);
  transition: background 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
  opacity: 0; transform: translateX(-10px);
}
.nav-mobile-menu--open a { animation: nav-mobile-link-in 0.45s cubic-bezier(0.22,1,0.36,1) forwards; }
.nav-mobile-menu--open a:nth-child(1) { animation-delay: 0.05s; }
.nav-mobile-menu--open a:nth-child(2) { animation-delay: 0.1s; }
.nav-mobile-menu--open a:nth-child(3) { animation-delay: 0.15s; }
.nav-mobile-menu--open a:nth-child(4) { animation-delay: 0.2s; }
.nav-mobile-menu--open a:nth-child(5) { animation-delay: 0.25s; }
.nav-mobile-menu--open a:nth-child(6) { animation-delay: 0.3s; }
@keyframes nav-mobile-link-in { to { opacity: 1; transform: translateX(0); } }
.nav-mobile-menu a::before {
  content: ''; position: absolute; left: 0; top: 50%; width: 3px; height: 0; background: var(--brand-gold);
  border-radius: 0 3px 3px 0; transform: translateY(-50%); transition: height 0.25s ease;
}
.nav-mobile-menu a:hover, .nav-mobile-menu a.active { background: rgba(200,163,77,0.12); color: var(--brand-gold); padding-left: 20px; }
.nav-mobile-menu a:hover::before, .nav-mobile-menu a.active::before { height: 60%; }
.nav-mobile-menu .nav-mobile-cta {
  margin-top: 10px; text-align: center; background: var(--brand-gold); color: #1a1108; font-weight: 500;
  box-shadow: 0 8px 22px rgba(200,163,77,0.3);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease, background 0.25s ease;
}
.nav-mobile-menu .nav-mobile-cta::before { display: none; }
.nav-mobile-menu .nav-mobile-cta:hover { background: var(--brand-gold); color: #1a1108; transform: translateY(-2px) scale(1.02); box-shadow: 0 12px 28px rgba(200,163,77,0.4); padding-left: 14px; }
@media (prefers-reduced-motion: reduce) {
  .nav-mobile-menu, .nav-mobile-menu a, .nav-menu-btn span { transition: none !important; animation: none !important; }
  .nav-mobile-menu--open a { opacity: 1 !important; transform: none !important; }
}

/* ---------- CTA band ("Start a Project") — architectural gold/black premium band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: var(--space-section) var(--space-64);
  color: var(--color-on-primary);
  text-align: center;
  background: linear-gradient(155deg, #16110a 0%, #0a0805 55%, #050403 100%);
  box-shadow: inset 0 0 0 1px rgba(200,163,77,0.22), 0 30px 70px rgba(0,0,0,0.28);
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 0.85s cubic-bezier(0.22,1,0.36,1), transform 0.85s cubic-bezier(0.22,1,0.36,1);
}
.cta-band--in { opacity: 1; transform: translateY(0) scale(1); }
.cta-band > * { position: relative; z-index: 1; }

.cta-band-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(rgba(200,163,77,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,163,77,0.07) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse 70% 90% at 50% 50%, #000 40%, transparent 100%);
  animation: cta-grid-drift 18s linear infinite;
}
@keyframes cta-grid-drift { from { background-position: 0 0, 0 0; } to { background-position: 34px 34px, -34px 34px; } }

.cta-band-corner { position: absolute; width: 40px; height: 40px; z-index: 1; pointer-events: none; opacity: 0; transition: opacity 0.6s ease 0.5s; }
.cta-band--in .cta-band-corner { opacity: 1; }
.cta-band-corner::before, .cta-band-corner::after { content: ''; position: absolute; background: rgba(200,163,77,0.75); }
.cta-band-corner::before { width: 100%; height: 1.5px; }
.cta-band-corner::after { width: 1.5px; height: 100%; }
.cta-band-corner--tl { top: 22px; left: 22px; }
.cta-band-corner--tr { top: 22px; right: 22px; }
.cta-band-corner--tr::before, .cta-band-corner--tr::after { left: auto; right: 0; }
.cta-band-corner--bl { bottom: 22px; left: 22px; }
.cta-band-corner--bl::before, .cta-band-corner--bl::after { top: auto; bottom: 0; }
.cta-band-corner--br { bottom: 22px; right: 22px; }
.cta-band-corner--br::before { left: auto; right: 0; bottom: 0; }
.cta-band-corner--br::after { left: auto; right: 0; top: auto; bottom: 0; }

.cta-band-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand-gold);
  opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease 0.1s, transform 0.6s cubic-bezier(0.22,1,0.36,1) 0.1s;
}
.cta-band--in .cta-band-eyebrow { opacity: 1; transform: translateY(0); }
.cta-band-rule {
  width: 0; height: 2px; margin: 20px auto 24px; background: linear-gradient(90deg, transparent, var(--brand-gold), transparent);
  transition: width 0.7s cubic-bezier(0.22,1,0.36,1) 0.3s;
}
.cta-band--in .cta-band-rule { width: 84px; }
.cta-band-title {
  font-family: var(--font-display); font-size: clamp(32px,4vw,56px); letter-spacing: -1px; font-weight: 400; margin: 0 auto 20px; max-width: 700px;
  opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease 0.2s, transform 0.7s cubic-bezier(0.22,1,0.36,1) 0.2s;
}
.cta-band--in .cta-band-title { opacity: 1; transform: translateY(0); }
.cta-band-sub {
  font-size: 18px; color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto 36px;
  opacity: 0; transform: translateY(16px); transition: opacity 0.7s ease 0.32s, transform 0.7s cubic-bezier(0.22,1,0.36,1) 0.32s;
}
.cta-band--in .cta-band-sub { opacity: 1; transform: translateY(0); }
.cta-band > a { display: inline-block; opacity: 0; transform: translateY(14px) scale(0.94); transition: opacity 0.6s ease 0.44s, transform 0.6s cubic-bezier(0.34,1.56,0.64,1) 0.44s; }
.cta-band--in > a { opacity: 1; transform: translateY(0) scale(1); }

@media (max-width: 640px) {
  .cta-band > a { display: inline-block; width: auto; }
  .cta-band > a .nav-cta-glow { display: inline-flex; }
  .cta-band > a button, .cta-band > a > span, .cta-band > a span {
    white-space: nowrap;
  }
  .cta-band > a button {
    padding-left: 26px !important;
    padding-right: 26px !important;
    font-size: 14px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-band, .cta-band-eyebrow, .cta-band-rule, .cta-band-title, .cta-band-sub, .cta-band > a, .cta-band-corner {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
  .cta-band-rule { width: 84px !important; }
  .cta-band-grid { animation: none; }
}

@media (max-width: 1150px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-menu-btn { display: flex; }
  .nav-mobile-menu { display: flex; }
  .nav-capsule { padding: 8px 8px 8px 18px; }
  .nav-logo-img { height: 78px; }
}
@media (max-width: 480px) {
  .nav-logo-img { height: 68px; }
  .footer-logo-img { height: 90px; width: auto; }
}

/* ---------- Hero ---------- */
.page-hero {
  position: relative;
  z-index: 0;
  padding: 220px 0 100px;
  background: var(--color-primary);
  color: #fff;
  overflow: hidden;
}
.page-hero.hero-tall { padding: 260px 0 140px; min-height: 92vh; display: flex; align-items: center; }
.page-hero .container { position: relative; z-index: 2; }
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  color: var(--brand-gold);
  text-shadow: 0 1px 3px rgba(0,0,0,0.9), 0 2px 14px rgba(0,0,0,0.7);
  display: block;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -1.6px;
  margin: 0 0 28px;
  max-width: 900px;
}
.hero-sub {
  font-size: 20px;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 0 40px;
}
.hero-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-bg-texture {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 900px 500px at 85% 15%, rgba(255,255,255,0.06), transparent),
    linear-gradient(160deg, var(--color-primary) 0%, #05100e 100%);
  z-index: -1;
}
.page-hero.surface-green .hero-bg-texture {
  background:
    radial-gradient(ellipse 900px 600px at 90% 0%, rgba(200,163,77,0.34), transparent 60%),
    radial-gradient(ellipse 700px 480px at 0% 100%, rgba(200,163,77,0.2), transparent 65%),
    linear-gradient(155deg, #221c11 0%, #120e08 45%, #060504 100%);
}
.page-hero.surface-green .hero-bg-texture::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(200,163,77,0.08) 0px, rgba(200,163,77,0.08) 1px, transparent 1px, transparent 64px);
  opacity: 0.6;
}
.page-hero.surface-green .hero-bg-texture::after {
  content: '';
  position: absolute; inset: -20%; opacity: 0.55; pointer-events: none;
  background: linear-gradient(100deg, transparent 35%, rgba(200,163,77,0.14) 48%, rgba(255,224,150,0.22) 50%, rgba(200,163,77,0.14) 52%, transparent 65%);
  background-size: 260% 100%; background-position: 130% 0;
  animation: about-hero-sweep 7s ease-in-out infinite;
}
@keyframes about-hero-sweep {
  0%, 35% { background-position: 130% 0; }
  100% { background-position: -30% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .page-hero.surface-green .hero-bg-texture::after { animation: none !important; }
}
.page-hero.surface-navy .hero-bg-texture { background: linear-gradient(160deg, #0d2438 0%, var(--color-dark-navy) 60%, #030c15 100%); }
.hero-bg-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-bg-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,16,14,0.15) 0%, rgba(5,16,14,0.35) 55%, rgba(5,16,14,0.7) 100%);
  z-index: 1;
}

/* ---------- Section rhythm ---------- */
.section { padding: var(--space-section) 0; }
.section-tight { padding: 56px 0; }
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  color: var(--brand-gold-ink);
  display: block;
  margin-bottom: 20px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-weight: 500;
  color: var(--brand-gold-ink, #1a1108);
  margin: 0 0 20px;
  max-width: 720px;
  text-wrap: pretty;
}
.section-body {
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-body-muted);
  max-width: 620px;
  margin: 0;
}
.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

/* ---------- Image placeholders (no photography provided — flat wash, per DS) ---------- */
.img-slot {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #d8d4c8 0%, #eeece7 60%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.img-slot.ratio-4-3 { aspect-ratio: 4/3; }
.img-slot.ratio-16-9 { aspect-ratio: 16/9; }
.img-slot.ratio-1-1 { aspect-ratio: 1/1; border-radius: var(--radius-md); }
.img-slot.ratio-3-4 { aspect-ratio: 3/4; }
.img-slot-label {
  margin: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.28px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.7);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}
.img-slot.has-photo { background: none; }
.img-slot.has-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Stat grid ---------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
}
@media (min-width: 641px) {
  .feature-row .stat-grid {
    grid-template-columns: repeat(3, auto);
    column-gap: 72px;
    row-gap: 32px;
    justify-content: start;
  }
}
.stat-item .stat-value { overflow-wrap: normal; word-break: keep-all; hyphens: none; white-space: nowrap; }
@media (min-width: 641px) {
  .feature-row .stat-item .stat-value { font-size: clamp(28px, 3.2vw, 48px); }
}
.stat-item .stat-value {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: -0.9px;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--brand-gold-ink);
}
.stat-item .stat-label {
  font-size: 15px;
  color: var(--text-body-muted);
}
.stat-item.on-dark .stat-value { color: var(--brand-gold); }
.stat-item.on-dark .stat-label { color: rgba(255,255,255,0.65); }

/* ---------- Timeline (process / company history) ---------- */
.timeline { display: flex; flex-direction: column; }
.timeline-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--border-hairline);
}
.timeline-row:last-child { border-bottom: 1px solid var(--border-hairline); }
.timeline-index { font-family: var(--font-mono); font-size: 14px; color: var(--text-muted); padding-top: 4px; }
.timeline-title { font-size: 24px; margin: 0 0 8px; font-weight: 400; }
.timeline-body { font-size: 16px; color: var(--text-body-muted); margin: 0; max-width: 620px; }

/* horizontal process variant — warm terracotta & cream palette (distinct from the site's black/gold, scoped to this section only) */
.process-section {
  --pt-cream: #fbf3ea;
  --pt-line: #e8d6c3;
  --pt-terracotta: #c1622e;
  --pt-terracotta-deep: #9c4a22;
  --pt-text: #4a3c30;
  --pt-muted: #8a7863;
  --pt-peach: #f3dcc7;
  background: var(--pt-cream);
  border-radius: var(--radius-lg);
  padding: 64px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--pt-peach);
  border: 1px solid var(--pt-line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.process-step {
  background: #fff;
  padding: 28px 24px;
  position: relative;
  box-shadow: inset 0 0 0 1px var(--pt-line);
  transition: background 0.3s ease, transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.process-step::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--pt-terracotta), var(--pt-peach));
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
}
.process-step:hover { background: #fffaf5; transform: translateY(-3px); }
.process-step:hover::before { transform: scaleX(1); }
.process-step .step-num { font-family: var(--font-mono); font-size: 13px; color: var(--pt-terracotta); font-weight: 600; letter-spacing: 0.06em; display: block; margin-bottom: 16px; }
.process-step h4 { font-size: 18px; font-weight: 500; margin: 0 0 8px; color: var(--pt-text); }
.process-step p { font-size: 14px; color: var(--pt-muted); margin: 0; }

/* ---------- "Why Choose" stat band — same warm terracotta family, dark variant ---------- */
.warm-stats-band {
  --wb-terracotta: #e08a4f;
  --wb-terracotta-light: #f2ac74;
  background: linear-gradient(160deg, #2c1c12 0%, #1c110b 65%, #140b07 100%);
  border-radius: var(--radius-lg);
  padding: 80px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.warm-stats-band::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 700px 400px at 85% -10%, rgba(224,138,79,0.16), transparent);
}
.warm-stats-band > * { position: relative; z-index: 1; }
@media (max-width: 1024px) { .warm-stats-band { padding: 56px 40px; } }
@media (max-width: 640px) { .warm-stats-band { padding: 40px 24px; } }
.warm-stats-band .hero-eyebrow { color: var(--wb-terracotta-light); }
.warm-stats-band .stat-item .stat-value { color: var(--wb-terracotta-light); }
.warm-stats-band .stat-item .stat-label { color: rgba(255,238,225,0.65); }

/* ---------- LedgerStats — unique count-up scoreboard for the warm stats band ---------- */
.ledger-watermark {
  position: absolute; right: 24px; bottom: -30px; z-index: 0; pointer-events: none;
  font-family: var(--font-display); font-size: 220px; font-weight: 400; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(224,138,79,0.14);
}
.ledger-corner { position: absolute; width: 36px; height: 36px; z-index: 1; pointer-events: none; }
.ledger-corner::before, .ledger-corner::after { content: ''; position: absolute; background: rgba(224,138,79,0.55); }
.ledger-corner::before { width: 100%; height: 1.5px; }
.ledger-corner::after { width: 1.5px; height: 100%; }
.ledger-corner--tl { top: 24px; left: 24px; }
.ledger-corner--br { bottom: 24px; right: 24px; }
.ledger-corner--br::before { bottom: 0; }
.ledger-corner--br::after { right: 0; }

.ledger-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 0;
  row-gap: 40px;
  justify-content: start;
}
.ledger-stat {
  position: relative;
  min-width: 0;
  padding: 0 40px 0 0;
  margin-right: 40px;
  opacity: 0;
  transform: translateY(14px);
  animation: ledger-stat-in 0.7s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes ledger-stat-in { to { opacity: 1; transform: translateY(0); } }
.ledger-stat:not(:nth-child(4n+1))::before {
  content: ''; position: absolute; left: -20px; top: 4px; bottom: 4px; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(224,138,79,0.35), transparent);
}
.ledger-stat-value {
  font-family: var(--font-display); font-size: 48px; letter-spacing: -0.9px; line-height: 1;
  margin-bottom: 12px; color: #f2ac74; font-variant-numeric: tabular-nums;
  overflow-wrap: normal; word-break: keep-all; hyphens: none;
}
.ledger-stat-label { font-size: 15px; color: rgba(255,238,225,0.65); }
@media (max-width: 1000px) { .ledger-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); } .ledger-stat-value { font-size: clamp(30px, 6vw, 42px); } .ledger-stat:not(:nth-child(4n+1))::before { display: none; } .ledger-stat:not(:nth-child(2n+1))::before { display: block; } }
@media (max-width: 500px) { .ledger-stats { grid-template-columns: 1fr; } .ledger-stat::before { display: none !important; } .ledger-stat { padding-right: 0; margin-right: 0; } }

/* ---------- Services grid ("What We Do") — premium gold/black with hover animation ---------- */
.gold-services-grid > div {
  position: relative;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.gold-services-grid > div::before {
  content: ''; position: absolute; top: -1px; left: 0; width: 0; height: 2px;
  background: linear-gradient(90deg, var(--brand-gold), transparent);
  transition: width 0.5s cubic-bezier(0.22,1,0.36,1);
}
.gold-services-grid > div:hover { transform: translateY(-6px); }
.gold-services-grid > div:hover::before { width: 100%; }
.gold-services-grid > div span:first-child {
  display: inline-flex; transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), filter 0.4s ease;
}
.gold-services-grid > div:hover span:first-child {
  transform: scale(1.14) rotate(-6deg);
  filter: drop-shadow(0 0 10px rgba(200,163,77,0.55));
}
.gold-services-grid > div a {
  position: relative;
  transition: color 0.25s ease, letter-spacing 0.25s ease;
}
.gold-services-grid > div:hover a { letter-spacing: 0.01em; }

/* ---------- Industries chips row (legacy, kept for other pages) ---------- */
.chip-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Industries Served — premium icon-tile grid ---------- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1px;
  background: rgba(200,163,77,0.28);
  border: 1px solid rgba(200,163,77,0.28);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-image: linear-gradient(165deg, #fbf6ea 0%, #f6efdf 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}
.industry-tile {
  position: relative;
  background: var(--color-canvas, #fff);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  transition: background 0.35s ease, transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.industry-tile::before {
  content: ''; position: absolute; top: 0; left: 50%; width: 0; height: 2px; transform: translateX(-50%);
  background: var(--brand-gold);
  transition: width 0.45s cubic-bezier(0.22,1,0.36,1);
}
.industry-tile:hover { background: #fff; transform: translateY(-5px); z-index: 1; }
.industry-tile:hover::before { width: 60%; }
.industry-tile-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(200,163,77,0.08);
  border: 1px solid rgba(200,163,77,0.3);
  color: var(--brand-gold-ink);
  transition: background 0.35s ease, transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
}
.industry-tile:hover .industry-tile-icon {
  background: var(--brand-gold);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(200,163,77,0.35);
}
.industry-tile-label { font-size: 15.5px; font-weight: 500; color: var(--text-primary); }
@media (max-width: 640px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Testimonials — gold accent + hover animation ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.testimonial-card {
  position: relative;
  border-top: 1px solid var(--border-hairline);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.testimonial-card::before {
  content: ''; position: absolute; top: -1px; left: 0; width: 0; height: 2px;
  background: linear-gradient(90deg, var(--brand-gold), transparent);
  transition: width 0.5s cubic-bezier(0.22,1,0.36,1);
}
.testimonial-card::after {
  content: '\201C'; position: absolute; top: 8px; right: 4px; font-family: Georgia, serif;
  font-size: 64px; line-height: 1; color: var(--brand-gold); opacity: 0.16;
  transition: opacity 0.4s ease, transform 0.4s ease; transform: translateY(0);
}
.testimonial-card:hover { transform: translateY(-6px); }
.testimonial-card:hover::before { width: 100%; }
.testimonial-card:hover::after { opacity: 0.32; transform: translateY(-4px); }
.testimonial-quote { font-size: 20px; line-height: 1.45; margin: 0; font-weight: 400; }
.testimonial-attrib { font-size: 14px; color: var(--text-tertiary); padding-left: 14px; border-left: 2px solid rgba(200,163,77,0.4); transition: border-color 0.3s ease; }
.testimonial-card:hover .testimonial-attrib { border-color: var(--brand-gold); }
.testimonial-attrib strong { color: var(--text-primary); display: block; font-weight: 500; }

/* ---------- Footer — premium gold/black with reveal + large luxe logo ---------- */
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(200,163,77,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(200,163,77,0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse 100% 60% at 50% 20%, #000 40%, transparent 90%);
  pointer-events: none;
  z-index: 0;
}
.site-footer > .container { position: relative; z-index: 1; }
.site-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #131311 0%, #0a0a09 55%, #050504 100%);
  color: #fff;
  padding: 96px 0 32px;
  border-top: 1px solid rgba(200,163,77,0.18);
}
.footer-grain {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.footer-glow {
  position: absolute; top: -180px; right: -120px; width: 520px; height: 520px; border-radius: 50%; z-index: 0; pointer-events: none;
  background: radial-gradient(circle, rgba(200,163,77,0.14), transparent 70%);
  animation: footer-glow-drift 14s ease-in-out infinite;
}
@keyframes footer-glow-drift { 0%, 100% { transform: translate(0,0); opacity: 0.8; } 50% { transform: translate(-40px, 30px); opacity: 1; } }
.footer-inner { position: relative; z-index: 1; }

.footer-top {
  display: flex; justify-content: space-between; gap: 64px; flex-wrap: wrap; margin-bottom: 64px;
  opacity: 0; transform: translateY(24px); transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.site-footer--in .footer-top { opacity: 1; transform: translateY(0); }

.footer-brand { max-width: 340px; }
.footer-logo-link { display: inline-block; transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1); }
.footer-logo-link:hover { transform: scale(1.04); }
.footer-logo-img {
  height: 140px; width: auto; margin-bottom: 22px; display: block;
  filter: drop-shadow(0 4px 16px rgba(200,163,77,0.18));
  transition: filter 0.4s ease;
}
.footer-logo-link:hover .footer-logo-img { filter: drop-shadow(0 4px 22px rgba(200,163,77,0.4)); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.6; }
.footer-social { display: flex; gap: 16px; margin-top: 26px; }
.footer-social a {
  width: 38px; height: 38px; border: 1px solid rgba(200,163,77,0.28); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.footer-social a:hover { border-color: var(--brand-gold); color: var(--brand-gold); transform: translateY(-3px); box-shadow: 0 8px 18px rgba(200,163,77,0.28); }

.footer-links-grid { display: grid; grid-template-columns: repeat(4, auto); gap: 48px; }
.footer-col h5 {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand-gold);
  margin: 0 0 20px; font-weight: 400; position: relative; display: inline-block; padding-bottom: 10px;
}
.footer-col h5::after { content: ''; position: absolute; left: 0; bottom: 0; width: 20px; height: 1.5px; background: rgba(200,163,77,0.5); }
.footer-col a, .footer-col div { display: block; color: rgba(255,255,255,0.7); text-decoration: none; font-size: 15px; margin-bottom: 12px; transition: color 0.25s ease, transform 0.25s ease; overflow-wrap: break-word; word-break: break-word; }
.footer-col a:hover { color: var(--brand-gold); transform: translateX(3px); }

.footer-newsletter { min-width: 280px; }
.footer-newsletter-eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand-gold); }
.footer-newsletter-title { font-family: var(--font-display); font-size: 26px; font-weight: 400; margin: 10px 0 18px; color: #fff; }
.footer-newsletter-form { display: flex; gap: 8px; align-items: center; }
.footer-newsletter-form input {
  flex: 1; min-width: 0; padding: 12px 16px; border-radius: var(--radius-full);
  border: 1px solid rgba(200,163,77,0.3); background: rgba(255,255,255,0.05); color: #fff; font-size: 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter-form input:focus { outline: none; border-color: var(--brand-gold); background: rgba(255,255,255,0.08); box-shadow: 0 0 0 3px rgba(200,163,77,0.18); }
.footer-newsletter-form button {
  width: 42px; height: 42px; border-radius: 50%; border: none; flex-shrink: 0; cursor: pointer;
  background: var(--brand-gold); color: #1a1108; display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.footer-newsletter-form button:hover { transform: scale(1.08) rotate(8deg); box-shadow: 0 6px 16px rgba(200,163,77,0.4); }
.footer-newsletter-legal { font-size: 12.5px; color: rgba(255,255,255,0.4); margin: 14px 0 0; line-height: 1.5; }
.footer-newsletter-success { display: flex; align-items: center; gap: 8px; color: var(--brand-gold); font-size: 14.5px; padding: 12px 0; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(200,163,77,0.15);
  padding-top: 24px; font-size: 13px; color: rgba(255,255,255,0.45); flex-wrap: wrap; gap: 16px;
  opacity: 0; transition: opacity 0.8s ease 0.15s;
}
.site-footer--in .footer-bottom { opacity: 1; }
.back-to-top { color: #fff; text-decoration: none; display: flex; align-items: center; gap: 6px; transition: color 0.25s ease, gap 0.25s ease; }
.back-to-top:hover { color: var(--brand-gold); gap: 10px; }
.back-to-top i { transition: transform 0.3s ease; }
.back-to-top:hover i { transform: translateY(-2px); }

@media (max-width: 900px) {
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-links-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
  .footer-newsletter { min-width: 0; }
}
@media (max-width: 600px) {
  .footer-links-grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .footer-newsletter { min-width: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .footer-top, .footer-bottom { opacity: 1 !important; transform: none !important; }
  .footer-glow { animation: none; }
}

/* ---------- Alternating feature rows (services / projects) ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-row.reverse .feature-row-media { order: 2; }
@media (max-width: 860px) {
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse .feature-row-media { order: 0; }
}

/* ---------- Forms (selects/textarea beyond Input.jsx) ---------- */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 14px; font-weight: 500; color: var(--text-primary); }
.field select, .field textarea, .field input[type="file"] {
  font-family: var(--font-body);
  font-size: 16px;
  min-width: 0;
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border-light);
  outline: none;
  color: var(--text-primary);
  background: #fff;
}
.field select:focus, .field textarea:focus {
  border-color: var(--color-form-focus);
  box-shadow: 0 0 0 3px rgba(155,96,170,0.15);
}
.field textarea { resize: vertical; font-family: var(--font-body); }
.field-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; }
@media (max-width: 640px) { .field-row { grid-template-columns: minmax(0, 1fr); } }
.field-row label, .contact-form-panel label { width: 100%; min-width: 0; }
.field-row input, .contact-form-panel input[type="text"], .contact-form-panel input[type="email"], .contact-form-panel input[type="tel"] { width: 100%; min-width: 0; box-sizing: border-box; }

/* ---------- Portfolio filters + grid ---------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
}
.project-card { cursor: pointer; }
.project-card .img-slot { margin-bottom: 20px; }
.project-card h3 { font-size: 24px; font-weight: 400; margin: 0 0 6px; }
.project-card .project-meta { font-size: 14px; color: var(--text-tertiary); }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(23,23,28,0.6);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 60px 24px; overflow-y: auto; z-index: 200;
}
.modal-panel {
  background: #fff; border-radius: var(--radius-lg); max-width: 880px; width: 100%;
  padding: 48px; position: relative;
}
.modal-close {
  position: absolute; top: 24px; right: 24px; width: 36px; height: 36px;
  border-radius: 50%; border: 1px solid var(--border-light); background: #fff;
  cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center;
}

@media (max-width: 640px) {
  .modal-overlay { padding: 32px 16px; align-items: flex-start; }
  .modal-panel { padding: 28px 22px 32px; border-radius: var(--radius-md); }
  .modal-close { top: 16px; right: 16px; width: 32px; height: 32px; font-size: 15px; }
  .modal-panel .service-tag { display: block; padding-right: 44px; font-size: 11.5px !important; }
  .modal-panel h2 { font-size: 26px !important; line-height: 1.22 !important; margin: 10px 0 20px !important; padding-right: 4px; }
  .modal-panel .stat-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 10px !important; }
  .modal-panel .stat-item .stat-value { font-size: clamp(20px, 7vw, 30px) !important; word-break: break-word; }
  .modal-panel .stat-item .stat-label { font-size: 11.5px !important; line-height: 1.3; }
}
}

/* ---------- Language switcher — custom black/gold trigger driving Google's translate engine ---------- */
.lang-switcher { position: relative; }
.lang-switcher-btn {
  display: flex; align-items: center; gap: 6px; height: 34px; padding: 0 14px; border-radius: var(--radius-full);
  border: 1px solid rgba(200,163,77,0.32); background: rgba(200,163,77,0.06); color: var(--on-dark-nav, #fff);
  font-family: var(--font-body); font-size: 13px; font-weight: 500; letter-spacing: 0.04em; cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.lang-switcher-btn:hover { border-color: var(--brand-gold); background: rgba(200,163,77,0.16); }

@keyframes lang-spin { to { transform: rotate(360deg); } }
.site-nav.scrolled .lang-switcher-btn,
.site-nav.on-light .lang-switcher-btn { color: var(--color-primary); }
.lang-switcher--mobile .lang-switcher-btn {
  color: #fff; width: 100%; justify-content: center; height: 46px;
  border: 1px solid rgba(200,163,77,0.45); background: rgba(200,163,77,0.1);
  border-radius: var(--radius-full); font-size: 14.5px; font-weight: 500; letter-spacing: 0.02em;
}
.lang-switcher--mobile .lang-switcher-btn-code { font-size: 15px; font-weight: 700; letter-spacing: 0.06em; color: var(--brand-gold); }
.lang-switcher-btn-code { display: inline; }
.lang-switcher-btn-full { display: none; }
.lang-switcher-menu {
  position: absolute; top: calc(100% + 10px); right: 0; z-index: 20; min-width: 168px;
  display: flex; flex-direction: column; gap: 2px; padding: 8px;
  background: linear-gradient(155deg, rgba(18,16,10,0.98) 0%, rgba(8,7,5,0.99) 100%);
  border: 1px solid rgba(200,163,77,0.32); border-radius: var(--radius-md);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  animation: lang-menu-in 0.25s cubic-bezier(0.22,1,0.36,1);
}
@keyframes lang-menu-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.lang-switcher--mobile .lang-switcher-menu { position: static; margin-top: 8px; width: 100%; box-shadow: none; max-height: none; overflow: visible; }
.lang-switcher-option {
  text-align: left; background: none; border: none; color: rgba(255,255,255,0.78); font-size: 14px;
  padding: 10px 12px; border-radius: var(--radius-sm); cursor: pointer; transition: background 0.2s ease, color 0.2s ease;
}
.lang-switcher-option:hover { background: rgba(200,163,77,0.14); color: var(--brand-gold); }
.lang-switcher-option.active { color: var(--brand-gold); font-weight: 500; }
.nav-mobile-lang { margin: 6px 0 4px; }

/* Google's translate engine adds a top banner + body top-margin by default when active — this site
   controls translation purely through the cookie contract, so suppress the widget's own UI entirely. */
.goog-te-banner-frame, #goog-gt-tt, .goog-te-balloon-frame { display: none !important; }
body { top: 0 !important; }
.skiptranslate { display: none !important; }

.eyebrow-link { color: var(--text-link); text-decoration: underline; text-underline-offset: 3px; font-size: 16px; }
.icon-32 svg { width: 32px; height: 32px; }
.icon-32 { color: var(--brand-gold); }
.mt-0 { margin-top: 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 760px) { .two-col { grid-template-columns: 1fr; } }
