:root {
  --navy: #122b31;
  --navy-deep: #0c2025;
  --sage: #627d73;
  --ivory: #f3efe6;
  --stone: #d5d0c5;
  --charcoal: #252827;
  --muted: #727872;
  --gold: #b89b68;
  --paper: #fbfaf7;
  --white: #fff;
  --line: rgba(37, 40, 39, 0.13);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--charcoal);
  background: var(--paper);
}
img {
  display: block;
  width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font: inherit;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 20px 0;
  transition: 0.35s ease;
}
.site-nav.scrolled {
  padding: 12px 0;
  background: rgba(251, 250, 247, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
}
.brand {
  font-family: "Instrument Serif", serif;
  font-size: 32px;
  line-height: 0.8;
  color: var(--navy);
}
.brand span {
  display: block;
  margin-top: 9px;
  font-family: "DM Sans", sans-serif;
  font-size: 7px;
  letter-spacing: 3px;
  color: var(--muted);
}
.nav-links {
  gap: 28px;
}
.nav-links a,
.nav-cta {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}
.nav-cta {
  justify-self: end;
}
.nav-cta i {
  margin-left: 8px;
}

.hero {
  padding: 165px 0 120px;
  background:
    radial-gradient(
      circle at 18% 10%,
      rgba(98, 125, 115, 0.1),
      transparent 34%
    ),
    var(--paper);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  gap: 78px;
  align-items: center;
}
.eyebrow {
  font-size: 9px;
  letter-spacing: 2.3px;
  text-transform: uppercase;
  color: var(--sage);
}
.eyebrow.light {
  color: rgba(255, 255, 255, 0.55);
}
.hero h1,
.section-head h2,
.intro-copy h2,
.overview-copy h2,
.principles-head h2,
.process-copy h2,
.clients-content h2,
.testimonial-top h2,
.faq-copy h2,
.contact-copy h2 {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
}
.hero h1 {
  font-size: clamp(64px, 6.7vw, 104px);
  line-height: 0.94;
  letter-spacing: -2.8px;
  margin: 24px 0 30px;
}
.hero h1 em {
  display: block;
  color: var(--sage);
  font-style: italic;
}
.hero-copy > p {
  max-width: 560px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 38px;
}
.btn-main,
.btn-light,
.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 20px;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: 0.3s ease;
}
.btn-main {
  background: var(--navy);
  color: #fff;
}
.btn-main:hover {
  background: var(--sage);
  color: #fff;
  transform: translateY(-2px);
}
.btn-line,
.btn-contact-line {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 12px 0;
  border-bottom: 1px solid currentColor;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}
.hero-visual {
  position: relative;
  min-height: 660px;
}
.hero-visual img {
  height: 660px;
  object-fit: cover;
}
.floating-metric {
  position: absolute;
  padding: 16px 18px;
  min-width: 180px;
  background: rgba(243, 239, 230, 0.95);
  border: 1px solid rgba(18, 43, 49, 0.1);
  box-shadow: 0 18px 45px rgba(18, 43, 49, 0.12);
}
.floating-metric small {
  display: block;
  color: var(--muted);
  font-size: 7px;
  letter-spacing: 1.6px;
}
.floating-metric strong {
  display: block;
  margin: 8px 0 3px;
  font-family: "Instrument Serif";
  font-size: 28px;
  font-weight: 400;
  color: var(--navy);
}
.floating-metric span {
  font-size: 8px;
  color: var(--muted);
}
.metric-one {
  left: -45px;
  bottom: 55px;
}
.metric-two {
  right: -28px;
  top: 45px;
}

.signal-strip {
  background: var(--navy);
  color: #fff;
  padding: 18px 0;
}
.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.signal-grid span {
  text-align: center;
  font-size: 8px;
  letter-spacing: 1.6px;
  color: rgba(255, 255, 255, 0.62);
}

.section-space {
  padding: 145px 0;
}
.section-space-sm {
  padding: 35px 0 120px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 70px;
}
.intro-kicker {
  display: flex;
  gap: 16px;
  color: var(--muted);
  font-size: 11px;
}
.intro-kicker span {
  color: var(--gold);
}
.intro-kicker p {
  margin: 0;
}
.intro-copy h2 {
  font-size: clamp(54px, 5.4vw, 86px);
  line-height: 1;
  letter-spacing: -1.8px;
  margin: 0;
}
.intro-copy h2 em {
  display: block;
  color: var(--sage);
}
.intro-copy > p {
  max-width: 650px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.editorial-shell {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}
.editorial-shell img {
  height: 520px;
  object-fit: cover;
}
.editorial-caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  padding: 18px;
  background: rgba(251, 250, 247, 0.94);
  border: 1px solid rgba(18, 43, 49, 0.1);
}
.editorial-caption span {
  display: block;
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.editorial-caption p {
  margin: 8px 0 0;
  font-family: "Instrument Serif";
  font-size: 26px;
  line-height: 1.15;
}

.services {
  background: var(--ivory);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 60px;
  margin-bottom: 62px;
}
.section-head h2 {
  font-size: clamp(56px, 5.5vw, 88px);
  line-height: 0.98;
  margin: 16px 0 0;
}
.section-head > p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.85;
}
.service-list {
  border-top: 1px solid var(--line);
}
.service-row {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}
.service-no {
  color: var(--gold);
}
.service-name h3 {
  margin: 0;
  font-family: "Instrument Serif";
  font-size: 40px;
  font-weight: 400;
}
.service-name p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
}
.service-row > a {
  font-size: 8px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.service-row > a i {
  margin-left: 10px;
}
.service-row:hover .service-name h3 {
  color: var(--sage);
}

.overview {
  background: var(--navy-deep);
  color: #fff;
}
.overview-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.overview-copy h2 {
  font-size: clamp(55px, 5.6vw, 88px);
  line-height: 0.98;
  margin: 18px 0 26px;
}
.overview-copy h2 em {
  display: block;
  color: #9cb2aa;
}
.overview-copy > p {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.9;
  margin-bottom: 35px;
}
.btn-light {
  background: var(--ivory);
  color: var(--navy);
}
.premium-dashboard {
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.035);
}
.dash-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.dash-head span,
.dash-head small {
  font-size: 7px;
  letter-spacing: 1.6px;
  color: rgba(255, 255, 255, 0.4);
}
.dash-head strong {
  display: block;
  margin-top: 6px;
  font-size: 12px;
}
.dash-big-number {
  margin: 52px 0 28px;
}
.dash-big-number small {
  display: block;
  font-size: 8px;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.38);
}
.dash-big-number strong {
  display: inline-block;
  margin-top: 8px;
  font-family: "Instrument Serif";
  font-size: 76px;
  font-weight: 400;
}
.dash-big-number span {
  margin-left: 18px;
  color: #9dd5b6;
  font-size: 10px;
}
.dash-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}
.dash-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 24px 0;
}
.dash-row span {
  display: block;
  font-size: 8px;
  color: rgba(255, 255, 255, 0.4);
}
.dash-row strong {
  display: block;
  margin-top: 8px;
  font-size: 17px;
  font-weight: 500;
}
.line-chart {
  padding-top: 20px;
  color: #9cb2aa;
}
.line-chart svg {
  width: 100%;
  height: 160px;
}
.chart-axis {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.28);
  font-size: 7px;
}
.dash-insight {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.dash-insight span {
  color: var(--gold);
  font-size: 7px;
  letter-spacing: 1.6px;
}
.dash-insight p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  line-height: 1.7;
}

.principles {
  background: var(--paper);
}
.principles-head h2 {
  max-width: 900px;
  font-size: clamp(56px, 5.8vw, 92px);
  line-height: 1;
  margin: 16px 0 65px;
}
.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.principle-grid article {
  padding: 34px 30px;
  border-right: 1px solid var(--line);
}
.principle-grid article:last-child {
  border-right: 0;
}
.principle-grid span {
  color: var(--gold);
  font-size: 8px;
}
.principle-grid h3 {
  margin: 42px 0 14px;
  font-family: "Instrument Serif";
  font-size: 34px;
  font-weight: 400;
}
.principle-grid p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.process {
  background: var(--ivory);
}
.process-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
}
.process-copy h2 {
  margin: 16px 0 0;
  font-size: clamp(58px, 5.6vw, 90px);
  line-height: 0.96;
}
.process-steps {
  border-top: 1px solid var(--line);
}
.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.process-step > span {
  color: var(--gold);
  font-size: 8px;
}
.process-step h3 {
  font-family: "Instrument Serif";
  font-size: 34px;
  font-weight: 400;
  margin: 0 0 8px;
}
.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}

.clients-image {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}
.clients-image > img {
  height: 760px;
  object-fit: cover;
}
.clients-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(12, 32, 37, 0.83),
    rgba(12, 32, 37, 0.3)
  );
}
.clients-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
.clients-content h2 {
  max-width: 850px;
  font-size: clamp(58px, 6vw, 96px);
  line-height: 0.98;
  margin: 18px 0 40px;
}
.clients-content h2 em {
  display: block;
  color: #c2d1cc;
}
.client-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 800px;
}
.client-tags span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 8px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.testimonials {
  background: #fff;
}
.testimonial-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 60px;
}
.testimonial-top h2 {
  font-size: clamp(55px, 5.4vw, 86px);
  line-height: 1;
  margin: 16px 0 0;
}
.testimonial-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
.swiper-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: transparent;
  display: grid;
  place-items: center;
}
.swiper-btn:hover {
  background: var(--navy);
  color: #fff;
}
.testimonial-count {
  min-width: 58px;
  text-align: center;
  font-size: 9px;
  color: var(--muted);
}
.testimonialSwiper {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}
.testimonial-item {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 8vw;
  text-align: center;
}
.stars {
  color: var(--gold);
  letter-spacing: 5px;
  font-size: 11px;
  margin-bottom: 34px;
}
.testimonial-item blockquote {
  max-width: 920px;
  margin: 0 auto;
  font-family: "Instrument Serif";
  font-size: clamp(40px, 4.6vw, 70px);
  line-height: 1.15;
}
.testimonial-author {
  margin-top: 36px;
}
.testimonial-author strong {
  display: block;
  font-size: 9px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}
.testimonial-author span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 8px;
}

.faq {
  background: var(--paper);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
}
.faq-copy h2 {
  font-size: clamp(55px, 5vw, 80px);
  margin: 16px 0 25px;
}
.faq-copy p {
  max-width: 390px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}
.accordion-item {
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}
.accordion-button {
  padding: 25px 0;
  background: transparent !important;
  color: var(--charcoal) !important;
  box-shadow: none !important;
  font-size: 14px;
}
.accordion-body {
  padding: 0 0 25px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.contact {
  background: var(--navy);
  color: #fff;
}
.contact-kicker {
  color: var(--gold);
  font-size: 8px;
  letter-spacing: 2.4px;
  margin-bottom: 38px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}
.contact-copy h2 {
  font-size: clamp(65px, 6.5vw, 104px);
  line-height: 0.94;
  margin: 0;
}
.contact-copy h2 em {
  display: block;
  color: #b8cbc4;
}
.contact-copy > p {
  max-width: 610px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.9;
}
.contact-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 38px;
}
.btn-contact {
  background: var(--ivory);
  color: var(--navy);
}
.btn-contact-line {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.contact-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  letter-spacing: 1.4px;
}
.contact-image {
  min-height: 540px;
  overflow: hidden;
}
.contact-image img {
  height: 540px;
  object-fit: cover;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 7px 7px 14px;
  background: rgba(251, 250, 247, 0.96);
  border: 1px solid var(--line);
  box-shadow: 0 14px 35px rgba(18, 43, 49, 0.12);
}
.whatsapp-float span {
  font-size: 8px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.whatsapp-float i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
}
.whatsapp-float:hover i {
  background: var(--sage);
}

.footer {
  background: #091b1f;
  color: rgba(255, 255, 255, 0.55);
  padding: 65px 0 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
}
.footer-brand {
  font-family: "Instrument Serif";
  font-size: 40px;
  color: #fff;
}
.footer p,
.footer a,
.footer span {
  display: block;
  font-size: 12px;
  margin: 5px 0;
}
.footer-bottom {
  margin-top: 48px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 991px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }
  .hero-grid,
  .intro-grid,
  .overview-grid,
  .process-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 560px;
  }
  .hero-visual img {
    height: 560px;
  }
  .metric-one {
    left: 18px;
  }
  .metric-two {
    right: 18px;
  }
  .signal-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section-space {
    padding: 105px 0;
  }
  .principle-grid {
    grid-template-columns: 1fr;
  }
  .principle-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .service-row {
    grid-template-columns: 55px 1fr;
  }
  .service-row > a {
    grid-column: 2;
  }
  .clients-image,
  .clients-image > img {
    height: 650px;
    min-height: 650px;
  }
  .testimonial-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575px) {
  .hero {
    padding-top: 130px;
  }
  .hero h1 {
    font-size: 55px;
  }
  .hero-visual {
    min-height: 470px;
  }
  .hero-visual img {
    height: 470px;
  }
  .floating-metric {
    min-width: 150px;
    padding: 12px;
  }
  .metric-two {
    top: 18px;
  }
  .metric-one {
    bottom: 18px;
  }
  .signal-grid {
    grid-template-columns: 1fr;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .service-name h3 {
    font-size: 32px;
  }
  .service-row {
    gap: 15px;
  }
  .dash-big-number strong {
    font-size: 54px;
  }
  .dash-row {
    grid-template-columns: 1fr;
  }
  .premium-dashboard {
    padding: 26px 20px;
  }
  .clients-content h2 {
    font-size: 56px;
  }
  .testimonial-item {
    padding: 10px 16px;
    min-height: 390px;
  }
  .testimonial-item blockquote {
    font-size: 38px;
  }
  .contact-copy h2 {
    font-size: 58px;
  }
  .contact-actions {
    flex-direction: column;
  }
  .contact-actions a {
    width: 100%;
  }
  .contact-image,
  .contact-image img {
    height: 420px;
    min-height: 420px;
  }
  .whatsapp-float span {
    display: none;
  }
  .whatsapp-float {
    padding: 6px;
    right: 14px;
    bottom: 14px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    background: rgb(75 157 54 / 0%);
    border: none;
    box-shadow: none;
}

}

/* =====================================================
   COMPLIANCE / LOPDP — PREMIUM EDITORIAL
===================================================== */

.compliance-premium {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 85% 12%,
      rgba(184, 155, 104, 0.08),
      transparent 28%
    ),
    var(--navy-deep);
  color: #fff;
}

.compliance-premium-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 90px;
  align-items: center;
}

/* LEFT */

.compliance-premium-copy h2 {
  max-width: 780px;
  margin: 18px 0 28px;
  font-family: "Instrument Serif", serif;
  font-size: clamp(60px, 5.9vw, 94px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -2px;
}

.compliance-premium-copy h2 em {
  display: block;
  color: #b8cbc4;
  font-weight: 400;
}

.compliance-premium-copy > p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.9;
}

.compliance-quote {
  max-width: 600px;
  margin-top: 36px;
  padding: 24px 0 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(184, 155, 104, 0.55);
}

.compliance-quote span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 7px;
  letter-spacing: 1.9px;
}

.compliance-quote strong {
  display: block;
  font-family: "Instrument Serif", serif;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.86);
}

.compliance-premium-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.btn-compliance-minimal {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.btn-compliance-minimal:hover {
  color: #fff;
  border-color: #fff;
}

/* RIGHT PANEL */

.privacy-editorial-panel {
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
}

.privacy-editorial-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.privacy-editorial-head span,
.privacy-editorial-head small {
  font-size: 7px;
  letter-spacing: 1.7px;
}

.privacy-editorial-head span {
  color: #b8cbc4;
}

.privacy-editorial-head small {
  color: rgba(255, 255, 255, 0.35);
}

.privacy-editorial-number {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
  padding: 46px 0 34px;
}

.privacy-editorial-number small {
  max-width: 120px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  line-height: 1.5;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.privacy-editorial-number strong {
  font-family: "Instrument Serif", serif;
  font-size: 88px;
  line-height: 0.76;
  font-weight: 400;
}

.privacy-editorial-list {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.privacy-editorial-list > div {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 15px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-editorial-list span {
  color: #b8cbc4;
  font-size: 8px;
}

.privacy-editorial-list strong {
  font-size: 10px;
  font-weight: 500;
}

.privacy-editorial-list small {
  font-size: 7px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.status-ok {
  color: #9dd5b6;
}

.status-pending {
  color: var(--gold);
}

.privacy-editorial-note {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.privacy-editorial-note span {
  color: var(--gold);
  font-size: 7px;
  letter-spacing: 1.8px;
}

.privacy-editorial-note p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  line-height: 1.75;
}

/* AREAS — EDITORIAL, NO CARDS */

.privacy-areas-editorial {
  margin-top: 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.privacy-area-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: 0.3s ease;
}

.privacy-area-row:hover {
  padding-left: 10px;
}

.privacy-area-no {
  color: var(--gold);
  font-size: 18px;
}

.privacy-area-title h3 {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-size: 38px;
  font-weight: 400;
}

.privacy-area-title p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  line-height: 1.7;
}

.privacy-area-tag {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.42);
  font-size: 7px;
  letter-spacing: 1.4px;
}

/* BOTTOM CTA */

.privacy-cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
  margin-top: 62px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.privacy-cta-band > div > span {
  display: block;
  margin-bottom: 10px;
  color: #b8cbc4;
  font-size: 8px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.privacy-cta-band h3 {
  max-width: 800px;
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-size: 36px;
  line-height: 1.12;
  font-weight: 400;
}

.privacy-cta-band > a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.privacy-cta-band > a:hover {
  border-color: #fff;
  color: #fff;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .compliance-premium-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .privacy-cta-band {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 575px) {
  .compliance-premium-copy h2 {
    font-size: 54px;
  }

  .compliance-premium-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .compliance-premium-actions a {
    width: 100%;
  }

  .privacy-editorial-panel {
    padding: 26px 20px;
  }

  .privacy-editorial-number strong {
    font-size: 70px;
  }

  .privacy-area-row {
    grid-template-columns: 40px 1fr;
    gap: 15px;
  }

  .privacy-area-tag {
    display: none;
  }

  .privacy-area-title h3 {
    font-size: 31px;
  }

  .privacy-cta-band h3 {
    font-size: 30px;
  }
}

/* =====================================================
   HEADER VARIANT — PRIMARY NAVY
===================================================== */

.site-nav {
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-nav.scrolled {
  background: rgba(18, 43, 49, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.site-nav .brand {
  color: #fff;
}

.site-nav .brand span {
  color: rgba(255, 255, 255, 0.48);
}

.site-nav .nav-links a {
  color: rgba(255, 255, 255, 0.72);
  transition: 0.25s ease;
}

.site-nav .nav-links a:hover {
  color: #fff;
}

.site-nav .nav-cta {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 11px 15px;
  transition: 0.25s ease;
}

.site-nav .nav-cta:hover {
  background: var(--ivory);
  border-color: var(--ivory);
  color: var(--navy);
}
