/* =========================================================
   AD VALOREM INVESTMENT — V1 "ROYAL BOULEVARD"
   Classic editorial / institutional bank style
   ========================================================= */

:root {
  --navy:        #0B1F3F;
  --navy-light:  #142E54;
  --navy-soft:   #1F3A66;
  --gold:        #C9A85C;
  --gold-light:  #E4D2A4;
  --cream:       #F7F5F0;
  --paper:       #FCFBF8;
  --ink:         #16191F;
  --grey:        #8C8C8C;
  --grey-light:  #D9D6CE;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', -apple-system, Segoe UI, Roboto, sans-serif;
  --mono:  'IBM Plex Mono', monospace;

  --container: 1180px;
  --radius: 6px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ---------------------------------------------------------
   LOGO
   --------------------------------------------------------- */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.logo-img-wrap {
  height: auto;
  overflow: visible;
  line-height: 0;
}
.logo-img {
  height: 74px;
  width: auto;
  display: block;
}
.footer-brand .logo-img-wrap {
  height: auto;
}
.footer-brand .logo-img {
  height: 92px;
  filter: brightness(0) invert(1);
}
.cta-band .logo-img-wrap {
  height: auto;
}
.cta-band .logo-img {
  height: 74px;
  filter: brightness(0);
}
/* Legacy SVG mark (kept for any leftover references) */
.logo-mark {
  width: 34px;
  height: 34px;
  color: var(--navy);
  flex-shrink: 0;
}
.logo-mark svg { width: 100%; height: 100%; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-line1 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.logo-line1 .accent { color: var(--navy-soft); }
.logo-line2 {
  font-family: var(--sans);
  font-size: 0.71rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--grey);
  margin: 0;
  padding-left: 0;
  white-space: nowrap;
  text-align: center;
}

/* ---------------------------------------------------------
   BRAND WATERMARK (recurring ring motif)
   --------------------------------------------------------- */
.brand-watermark {
  position: absolute;
  pointer-events: none;
  opacity: 0.06;
  z-index: 0;
}
.brand-watermark img { width: 100%; height: 100%; display: block; }
.hero .brand-watermark {
  top: -120px;
  right: -160px;
  width: 620px;
  height: 620px;
  filter: brightness(0) invert(1); /* render ring in white on navy */
}
.site-footer .brand-watermark {
  bottom: -180px;
  right: -120px;
  width: 520px;
  height: 520px;
  filter: brightness(0) invert(1);
  opacity: 0.05;
}
.site-footer { position: relative; overflow: hidden; }

/* ---------------------------------------------------------
   13-YEARS BADGE (seal / coin element)
   --------------------------------------------------------- */
.experience-badge {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.experience-badge::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  opacity: 0.6;
}
.experience-badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.experience-badge-number {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 4.4rem;
  line-height: 1;
  color: var(--navy);
}
.experience-badge-label {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  max-width: 110px;
  line-height: 1.5;
}
.experience-badge-sub {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--grey);
  text-transform: uppercase;
  margin-top: 2px;
}
.experience-badge-frame {
  border: 1px solid var(--grey-light);
  background: var(--cream);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.experience-badge-frame .brand-watermark {
  width: 420px;
  height: 420px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.05;
}

/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 251, 248, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--grey-light);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  gap: 24px;
}
.main-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
}
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.main-nav a:hover,
.main-nav a.active { color: var(--navy); }
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

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

/* Language switcher */
.lang-switch { position: relative; }
.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 8px 12px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--navy);
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.lang-current:hover { border-color: var(--gold); }
.lang-options {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--paper);
  border: 1px solid var(--grey-light);
  list-style: none;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  box-shadow: 0 12px 28px rgba(11, 31, 63, 0.12);
}
.lang-switch:hover .lang-options,
.lang-switch:focus-within .lang-options {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.lang-options a {
  display: block;
  padding: 10px 14px;
  font-size: 0.85rem;
}
.lang-options a:hover { background: var(--cream); color: var(--navy); }

.lang-switch-footer { display: flex; gap: 10px; }
.lang-switch-footer a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--grey-light);
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,0.15);
}
.lang-switch-footer a:hover { color: var(--gold); border-color: var(--gold); }

/* Nav toggle (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--navy);
  display: block;
}

/* ---------------------------------------------------------
   BUTTONS
   --------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--paper);
}
.btn-primary:hover { background: var(--navy-light); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover { background: var(--gold-light); }

.btn-outline-light {
  border-color: rgba(247,245,240,0.4);
  color: var(--paper);
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-gold {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }

.btn-whatsapp {
  background: #1F3A2E;
  color: #E7F5EC;
  border-color: #2E5641;
}
.btn-whatsapp:hover { background: #2E5641; }
.icon-wa { width: 18px; height: 18px; }

.btn-block { width: 100%; margin-top: 10px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: gap 0.2s ease, color 0.2s ease;
}
.text-link:hover { gap: 10px; color: var(--navy-soft); }
.text-link-light { color: var(--paper); border-bottom-color: var(--gold); }
.text-link-light:hover { color: var(--gold-light); }

/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--paper);
  padding: 110px 0 90px;
  overflow: hidden;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image:
    repeating-linear-gradient(115deg, transparent 0 78px, var(--gold) 78px 79px),
    repeating-linear-gradient(25deg, transparent 0 96px, var(--gold) 96px 97px);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 880px; }
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.hero-lead {
  font-size: 1.08rem;
  color: rgba(247,245,240,0.78);
  max-width: 640px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 48px;
  border-top: 1px solid rgba(247,245,240,0.15);
  padding-top: 36px;
}
.stat-number {
  display: block;
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(247,245,240,0.65);
  max-width: 180px;
  display: block;
}

/* ---------------------------------------------------------
   GENERIC SECTION SPACING / HEADS
   --------------------------------------------------------- */
.section { padding: 96px 0; }
.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow-light { color: var(--gold-light); }

h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.section-luxembourg h2,
.hero h2 { color: var(--paper); }

/* ---------------------------------------------------------
   SPLIT SECTIONS (Mission / Luxembourg)
   --------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
}
.split.reverse { grid-template-columns: 1.05fr 0.95fr; }
.split.reverse .split-media { order: 2; }
.split.reverse .split-content { order: 1; }

.split-content p {
  margin-top: 18px;
  color: #4A4A4A;
  max-width: 520px;
}
.split-content h2 { margin-bottom: 4px; }
.split-content .text-link { margin-top: 28px; }

/* Decorative media frame (Mission section) */
.media-frame {
  position: relative;
  border: 1px solid var(--grey-light);
  background: var(--cream);
  padding: 48px;
  min-height: 360px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.media-line {
  height: 1px;
  background: var(--navy);
  opacity: 0.18;
  width: 100%;
}
.media-line.short { width: 60%; }
.media-figure {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 4.5rem;
  color: var(--navy);
  opacity: 0.9;
  margin-top: 12px;
}
.media-caption {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--grey);
  text-transform: uppercase;
  margin-top: 24px;
}

.section-mission { background: var(--paper); }

/* ---------------------------------------------------------
   SERVICES
   --------------------------------------------------------- */
.section-services {
  background: var(--navy);
  color: var(--paper);
}
.section-services .section-head h2 { color: var(--paper); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(247,245,240,0.12);
  border: 1px solid rgba(247,245,240,0.12);
}
.service-card {
  background: var(--navy);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, background 0.25s ease;
  position: relative;
  z-index: 1;
}
.service-card:hover {
  transform: translateY(-4px);
  background: var(--navy-light);
}
.service-index {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 14px;
}
.service-card > p {
  color: rgba(247,245,240,0.7);
  font-size: 0.94rem;
  margin-bottom: 20px;
}
.service-list {
  list-style: none;
  margin-bottom: 28px;
  flex-grow: 1;
}
.service-list li {
  font-size: 0.88rem;
  color: rgba(247,245,240,0.85);
  padding: 8px 0 8px 20px;
  border-top: 1px solid rgba(247,245,240,0.1);
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 17px;
  width: 8px; height: 1px;
  background: var(--gold);
}
.service-card .text-link { color: var(--gold-light); border-bottom-color: var(--gold); }
.service-card .text-link:hover { color: var(--gold); }

/* ---------------------------------------------------------
   PROCESS
   --------------------------------------------------------- */
.section-process { background: var(--cream); }
.process-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  counter-reset: none;
}
.process-list li {
  border-top: 2px solid var(--navy);
  padding-top: 20px;
}
.process-num {
  display: block;
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: 0.1em;
}
.process-list h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.process-list p {
  font-size: 0.9rem;
  color: #5A5A5A;
}

/* ---------------------------------------------------------
   LUXEMBOURG
   --------------------------------------------------------- */
.section-luxembourg {
  background: var(--navy-light);
  color: var(--paper);
}
.section-luxembourg .split-content p { color: rgba(247,245,240,0.75); }
.lux-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(247,245,240,0.14);
  border: 1px solid rgba(247,245,240,0.14);
}
.lux-cell {
  background: var(--navy-light);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(247,245,240,0.75);
}
.lux-cell span {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
}
.lux-cell-compact {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.01em;
}

/* ---------------------------------------------------------
   PARTNERS
   --------------------------------------------------------- */
.section-partners { background: var(--paper); }
.section-partners .eyebrow { margin-bottom: 32px; }
.partners-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.partner-card {
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 32px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.partner-card:hover {
  box-shadow: 0 12px 32px rgba(11,31,63,0.08);
  transform: translateY(-2px);
}
.partner-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.partner-card p {
  color: #5A5A5A;
  font-size: 0.94rem;
  margin-bottom: 18px;
}

/* ---------------------------------------------------------
   CTA BAND
   --------------------------------------------------------- */
.cta-band {
  background: var(--gold);
  color: var(--navy);
}
.cta-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.cta-band h2 { color: var(--navy); margin-bottom: 8px; }
.cta-band p { font-size: 0.95rem; color: rgba(11,31,63,0.75); }
.cta-band-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-band .btn-gold {
  background: var(--navy);
  color: var(--paper);
}
.cta-band .btn-gold:hover { background: var(--navy-light); }

/* ---------------------------------------------------------
   FOOTER
   --------------------------------------------------------- */
.site-footer {
  background: var(--navy);
  color: rgba(247,245,240,0.85);
  padding: 80px 0 0;
}
.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(247,245,240,0.12);
}
.footer-brand .logo-line1,
.footer-brand .logo-line2 { color: var(--paper); }
.footer-brand .logo-mark { color: var(--paper); }
.footer-brand .logo-line2 { color: rgba(247,245,240,0.5); }
.footer-brand p {
  margin-top: 18px;
  font-size: 0.92rem;
  color: rgba(247,245,240,0.6);
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; font-size: 0.92rem; }
.footer-col a:hover { color: var(--gold); }
.contact-list a { color: rgba(247,245,240,0.85); }
.footer-cta p {
  font-size: 0.9rem;
  color: rgba(247,245,240,0.6);
  margin-bottom: 18px;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 28px 0;
  font-size: 0.82rem;
  color: rgba(247,245,240,0.5);
}
.legal-links {
  display: flex;
  gap: 20px;
  list-style: none;
}
.legal-links a:hover { color: var(--gold); }

/* ---------------------------------------------------------
   WHATSAPP FLOATING BUTTON
   --------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 200;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 28px rgba(0,0,0,0.3);
}
.whatsapp-float svg { width: 30px; height: 30px; }

/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media,
  .split.reverse .split-content,
  .split-media, .split-content { order: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .lux-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--grey-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .main-nav.is-open { max-height: 400px; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 8px 0; }
  .main-nav a { display: block; padding: 14px 32px; }
  .main-nav a::after { display: none; }

  .header-actions { display: none; }
  .header-actions.is-open {
    display: flex;
    position: absolute;
    top: calc(100% + 1px);
    left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--grey-light);
    padding: 16px 32px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .header-actions.is-open .btn-primary { display: flex; }

  .nav-toggle { display: flex; }
  .header-inner { height: 88px; }
  .logo-img-wrap { height: auto; }
  .logo-img { height: 54px; }
  .logo-line2 { font-size: 0.49rem; letter-spacing: 0.16em; }
  .hero { padding: 64px 0 56px; }
  .hero-stats { grid-template-columns: 1fr; gap: 24px; }
  .section { padding: 64px 0; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .container { padding: 0 20px; }
}

@media (max-width: 600px) {
  .process-list { grid-template-columns: 1fr; }
  .lux-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------------------------------------------------------
   PAGE HERO (subpages)
   --------------------------------------------------------- */
.page-hero {
  position: relative;
  background: var(--navy);
  color: var(--paper);
  padding: 100px 0 64px;
  overflow: hidden;
}
.page-hero .brand-watermark {
  top: -100px;
  right: -140px;
  width: 420px;
  height: 420px;
  filter: brightness(0) invert(1);
}
.page-hero .container { position: relative; }
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.22;
  max-width: 760px;
  margin: 16px 0 20px;
}
.page-hero .hero-lead {
  max-width: 620px;
  color: rgba(247,245,240,0.75);
}

/* ---------------------------------------------------------
   NUMBERED LIST (service detail steps)
   --------------------------------------------------------- */
.numbered-list {
  list-style: none;
  margin: 24px 0 32px;
  counter-reset: step;
}
.numbered-list li {
  position: relative;
  padding: 14px 0 14px 44px;
  border-top: 1px solid var(--grey-light);
  font-size: 0.95rem;
  color: #4A4A4A;
  counter-increment: step;
}
.numbered-list li:last-child { border-bottom: 1px solid var(--grey-light); }
.numbered-list li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 13px;
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--gold);
  border: 1px solid var(--gold);
  width: 26px; height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.numbered-list strong { color: var(--navy); }

.service-detail.alt { background: var(--cream); }

/* ---------------------------------------------------------
   LUXEMBOURG DETAIL GRID
   --------------------------------------------------------- */
.lux-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--grey-light);
  border: 1px solid var(--grey-light);
}
.lux-detail {
  background: var(--paper);
  padding: 36px 32px;
}
.lux-detail .service-index { color: var(--gold); }
.lux-detail h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin: 18px 0 10px;
}
.lux-detail p { font-size: 0.92rem; color: #5A5A5A; }

@media (max-width: 1024px) {
  .lux-detail-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------
   ABOUT PAGE
   --------------------------------------------------------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--grey-light);
  border: 1px solid var(--grey-light);
}
.value-card {
  background: var(--paper);
  padding: 36px 32px;
  border-radius: var(--radius);
}
.value-card .service-index { color: var(--navy); opacity: 0.4; }
.value-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.value-card p { font-size: 0.92rem; color: #5A5A5A; }

.partner-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.partner-detail-content h2 { margin-bottom: 16px; }
.partner-detail-content p {
  color: #4A4A4A;
  margin-bottom: 16px;
  max-width: 540px;
}
@media (max-width: 1024px) {
  .partner-detail { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------------------------------------------------------
   CONTACT PAGE
   --------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info-card {
  background: var(--navy);
  color: var(--paper);
  padding: 48px 40px;
}
.contact-info-card h2 { color: var(--paper); margin-bottom: 24px; }
.contact-detail {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(247,245,240,0.12);
  font-size: 0.95rem;
}
.contact-detail:first-of-type { border-top: none; }
.contact-detail .icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-detail a { color: var(--paper); }
.contact-detail a:hover { color: var(--gold); }
.contact-info-card .btn { margin-top: 28px; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 13px 14px;
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 0.82rem; color: var(--grey); }

.map-frame {
  margin-top: 48px;
  border: 1px solid var(--grey-light);
  height: 320px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

@media (max-width: 1024px) {
  .values-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------
   SCROLL REVEAL (subtle fade/rise on scroll)
   --------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* ---------------------------------------------------------
   FORM SUCCESS STATE
   --------------------------------------------------------- */
.form-sent {
  padding: 48px 32px;
  background: var(--cream);
  border: 1px solid var(--gold);
  text-align: center;
}
.form-sent p {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.6;
}
