/* ========================================
   ADIT Third Party Compliance — Styles
   Faithful clone of due-diligence.adit.fr
   ======================================== */

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-dark: #00334c;
  --color-dark-alt: #1a2a3a;
  --color-gold: #c9a84c;
  --color-text: #333;
  --color-text-light: #555;
  --color-bg: #ffffff;
  --color-bg-light: #f5f5f5;
  --color-border: #e0e0e0;
  --font-main: 'Barlow', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container-width: 1200px;
  --header-height: 160px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

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

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  height: var(--header-height);
  padding-bottom: 30px;
  transition: box-shadow 0.3s, background 0.3s;
}

.header::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: #fff;
  transition: height 0.35s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  z-index: 0;
}

.header.scrolled::before {
  height: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
  z-index: 1;
  max-width: none;
  padding: 0 120px 0 40px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 100px;
  width: auto;
}

/* Header column: top bar + nav */
.header-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex: 1;
  margin-left: 40px;
}

.header-top {
  display: flex;
  align-items: center;
  gap: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
  width: 100%;
  justify-content: flex-end;
}

.header-recruit {
  font-size: 0.75rem;
  color: var(--color-text-light);
  transition: color 0.2s;
  padding-right: 16px;
}

.header-recruit:hover { color: var(--color-dark); }

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  padding-left: 16px;
  border-left: 1px solid var(--color-border);
}

.lang-active { color: var(--color-dark); }
.lang-sep { color: #ccc; }

/* Nav */
.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-item > a {
  display: block;
  padding: 10px 14px;
  font-size: 1.09rem;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: uppercase;
  color: var(--color-dark);
  transition: color 0.25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.nav-item > a:hover {
  color: var(--color-gold);
}

.nav-arrow {
  font-size: 0.6rem;
  margin-left: 2px;
}

/* Dropdown */
.nav-item.has-dropdown { position: relative; }

.dropdown {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  min-width: 280px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  padding: 8px;
  z-index: 100;
}

.nav-item.has-dropdown:hover .dropdown { display: block; }

.dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 0.8rem;
  color: var(--color-text);
  transition: background 0.2s;
}

.dropdown a:hover { background: var(--color-bg-light); }

/* Mobile */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--color-gold);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.35s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  text-align: center;
  text-transform: uppercase;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-gold);
  color: var(--color-dark);
  border: 1px solid var(--color-gold);
  border-radius: 9990px;
  padding: 16px 24px 16px 68px;
  font-size: 1.09rem;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
}

.btn-hero:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.btn-arrow {
  position: absolute;
  left: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--color-dark);
}

.btn-hero:hover .btn-arrow {
  border-color: var(--color-dark);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-dark);
  border: 2px solid var(--color-dark);
  border-radius: 50px;
  padding: 14px 36px;
}

.btn-outline-dark:hover {
  background: var(--color-dark);
  color: #fff;
}

.btn-outline-light {
  background: transparent;
  color: var(--color-dark);
  border: 2px solid var(--color-dark);
  border-radius: 50px;
  padding: 12px 32px;
}

.btn-outline-light:hover {
  background: var(--color-dark);
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 12px 32px;
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--color-dark);
}

.btn-submit {
  background: var(--color-dark);
  color: #fff;
  border: 1px solid transparent;
  border-radius: 9990px;
  padding: 16px 24px;
  font-size: 1.09rem;
  font-weight: 600;
  letter-spacing: 1px;
  float: right;
  transition: 0.35s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.btn-submit:hover {
  background: #0a4060;
}

/* ========================================
   Hero
   ======================================== */
.hero {
  position: relative;
  min-height: 0;
  height: 432px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background: #eceae5;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-diagonal {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: #e5eaed;
  clip-path: polygon(0 0, 85% 0, 65% 100%, 0 100%);
}

.hero-map {
  position: absolute;
  top: 0;
  right: -60px;
  bottom: 0;
  left: 28%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.world-map-img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  max-width: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-left: 16%;
  padding-top: 80px;
  width: 100%;
}

.hero-title {
  font-size: 3.9rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-dark);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: 1.78rem;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 1px;
  margin-bottom: 40px;
}

/* ========================================
   Sections
   ======================================== */
.section { padding: 80px 0; }

.section-headline {
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 50px;
}

.section-headline.gold,
h2.gold {
  color: var(--color-gold);
}

/* Group / Reduce Uncertainty */
.section-group {
  background: var(--color-bg);
  padding: 80px 0;
}

.group-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.group-heading {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-dark);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.group-text p {
  color: var(--color-text-light);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.group-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.stat {
  text-align: center;
}

.stat-diamond {
  display: block;
  color: var(--color-gold);
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Business Unit */
.section-bu {
  background: var(--color-bg);
  padding: 0 0 80px;
}

.bu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.bu-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.bu-text h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.bu-text p {
  color: var(--color-text-light);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.bu-text .btn {
  margin-top: 12px;
}

/* Values Band — Infinite Scroll Marquee */
.section-values-band {
  padding: 30px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
  position: relative;
}

.values-scroll {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.values-scroll:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.value-word {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 4px;
  color: var(--color-dark);
  flex-shrink: 0;
}

.value-diamond {
  color: var(--color-gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* Services */
.section-services {
  background: var(--color-bg);
  padding: 80px 0;
}

.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.services-intro p {
  color: var(--color-text-light);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.services-list {
  margin: 16px 0;
}

.services-list li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--color-text-light);
  padding-left: 4px;
}

.list-diamond {
  color: var(--color-gold);
  font-size: 0.6rem;
  margin-right: 8px;
}

/* Service Cards */
.services-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
}

.service-card {
  padding: 60px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-screening {
  background: linear-gradient(135deg, #d4c5a0 0%, #c9b98a 100%);
  color: var(--color-dark);
}

.service-dd {
  background: var(--color-dark);
  color: #fff;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
}

.service-screening .service-icon { color: var(--color-dark); }
.service-dd .service-icon { color: #fff; }

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 30px;
  opacity: 0.85;
  line-height: 1.6;
}

/* Decorative dots on sides */
.services-cards::before,
.services-cards::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-dark);
  top: 50%;
  transform: translateY(-50%);
}

.services-cards::before { left: -20px; }
.services-cards::after { right: -20px; }

/* Strategic */
.section-strategic {
  background: var(--color-bg);
  padding: 80px 0;
}

.strategic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.strategic-text h2 {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 30px;
}

.strategic-text p {
  color: var(--color-text-light);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.strategic-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Engagements */
.section-engagements {
  background: var(--color-bg);
  padding: 80px 0;
}

.engagements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  margin-bottom: 50px;
}

.engagement h3 {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.engagement p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.engagements-cta {
  text-align: center;
}

/* ========================================
   Contact
   ======================================== */
.section-contact {
  padding: 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 600px;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form-wrapper {
  background: var(--color-dark);
  color: #fff;
  padding: 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-wrapper h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-intro {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--color-gold);
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: #fff;
  background: transparent;
  transition: border-color 0.2s;
}

.form-group textarea {
  border-radius: 20px;
  resize: vertical;
}

.form-group select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  font-size: 0.8rem;
}

.form-group select option {
  background: var(--color-dark);
  color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #fff;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.form-checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
  accent-color: var(--color-gold);
}

.form-checkbox label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

.form-checkbox a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--color-bg);
  color: var(--color-text);
  padding: 50px 0 0;
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-svg {
  width: 60px;
  height: 60px;
}

.footer-logo-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-dark);
}

.footer-address {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 10px;
}

.footer-address strong {
  color: var(--color-dark);
  font-weight: 600;
}

.footer-email {
  font-size: 0.85rem;
  color: var(--color-gold);
}

.footer-email:hover { text-decoration: underline; }

.footer-nav ul li {
  margin-bottom: 8px;
}

.footer-nav a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-dark);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--color-gold); }

.footer-recruit > a {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.footer-recruit > a:hover { color: var(--color-dark); }

.footer-social {
  margin-top: 16px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  color: var(--color-dark);
  transition: border-color 0.2s, color 0.2s;
}

.social-link:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.social-link svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--color-border);
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-text-light);
}

.footer-bottom a {
  color: var(--color-text-light);
  transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--color-dark); }

/* ========================================
   Subpage Hero — Diagonal Gray Overlay
   ======================================== */
.subpage-hero-diagonal {
  position: relative;
  margin-top: var(--header-height);
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #fff;
}

.subpage-hero-diagonal .hero-diag-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: #e5eaed;
  clip-path: polygon(0 0, 85% 0, 65% 100%, 0 100%);
}

.subpage-hero-diagonal .hero-diag-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
}

.subpage-hero-diagonal .hero-diag-content h1 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--color-dark);
  line-height: 1.3;
}

.subpage-hero-diagonal .hero-diag-content .hero-diag-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-light);
  margin-top: 8px;
}

/* Decorative dots and lines on diagonal */
.subpage-hero-diagonal .hero-diag-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.subpage-hero-diagonal .hero-diag-decor .dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-dark);
}

.subpage-hero-diagonal .hero-diag-decor .dot-1 {
  top: 35%;
  left: 42%;
}

.subpage-hero-diagonal .hero-diag-decor .dot-2 {
  top: 65%;
  left: 46%;
}

.subpage-hero-diagonal .hero-diag-decor .line {
  position: absolute;
  width: 1px;
  background: var(--color-dark);
  transform-origin: top center;
}

.subpage-hero-diagonal .hero-diag-decor .line-1 {
  top: 0;
  left: 42.3%;
  height: 35%;
  transform: rotate(5deg);
}

.subpage-hero-diagonal .hero-diag-decor .line-2 {
  top: 68%;
  left: 46.3%;
  height: 32%;
  transform: rotate(5deg);
}

/* Breadcrumb above hero */
.breadcrumb-above {
  margin-top: var(--header-height);
  padding: 12px 0;
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.breadcrumb-above a {
  color: var(--color-text-light);
  transition: color 0.2s;
}

.breadcrumb-above a:hover {
  color: var(--color-dark);
}

.breadcrumb-above .sep {
  margin: 0 8px;
}

.breadcrumb-above + .subpage-hero-diagonal {
  margin-top: 0;
}

/* Section headings in gold for subpages */
.content-section h2.gold-heading {
  color: var(--color-gold);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
  .group-grid,
  .bu-grid,
  .strategic-grid,
  .services-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .engagements-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-image { display: none; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .value-word { font-size: 1.1rem; letter-spacing: 2px; }
  .values-scroll { gap: 20px; }

  .subpage-hero-diagonal { height: 250px; }
  .subpage-hero-diagonal .hero-diag-bg { width: 55%; }
  .subpage-hero-diagonal .hero-diag-content h1 { font-size: 1.8rem; }
}

@media (max-width: 768px) {
  :root { --header-height: 80px; }

  .header { padding-bottom: 0; padding: 0; }
  .header-inner { padding: 0 20px; }

  .logo-img { height: 40px; }

  .container { padding: 0 20px; }

  .nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0; bottom: 0;
    background: var(--color-bg);
    padding: 24px;
    overflow-y: auto;
    z-index: 999;
  }

  .nav.open { display: block; }

  .nav-list { flex-direction: column; gap: 0; }

  .nav-item > a {
    padding: 14px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--color-border);
  }

  .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
  }

  .menu-toggle { display: flex; }
  .header-top { display: none; }
  .header-col { margin-left: 0; flex: none; }

  .hero { min-height: auto; height: 50vh; }
  .hero-title { font-size: 2.7rem; text-align: center; }
  .hero-subtitle { font-size: 1.54rem; letter-spacing: 1px; text-align: center; }
  .hero-content { padding-left: 20px; padding-right: 20px; text-align: center; display: flex; flex-direction: column; align-items: center; }
  .hero-diagonal { width: 70%; }

  .group-stats { grid-template-columns: 1fr 1fr; gap: 24px; }

  .engagements-grid { grid-template-columns: 1fr; }
  .services-cards { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }

  .section { padding: 50px 0; }

  .values-scroll {
    gap: 20px;
    animation-duration: 12s;
  }

  .value-word { font-size: 0.9rem; letter-spacing: 2px; }

  .subpage-hero-diagonal { height: 200px; }
  .subpage-hero-diagonal .hero-diag-bg { width: 65%; }
  .subpage-hero-diagonal .hero-diag-content { padding: 0 30px; }
  .subpage-hero-diagonal .hero-diag-content h1 { font-size: 1.4rem; letter-spacing: 2px; }
  .subpage-hero-diagonal .hero-diag-decor { display: none; }
  .breadcrumb-above { margin-top: var(--header-height); padding: 10px 0; }
}

/* ========================================
   Hamburger Animation
   ======================================== */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

body.menu-open {
  overflow: hidden;
}

/* ========================================
   Cookie Banner
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 9999;
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-wrapper {
  background: var(--color-dark);
  padding: 27px;
  margin: 0 auto;
}

.cookie-content {
  margin-bottom: 18px;
}

.cookie-content p {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 6px;
}

.cookie-content p strong {
  font-weight: 700;
}

.cookie-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cookie-btn-accept {
  background: transparent;
  color: #fff;
  border: 1px solid #c6ab76;
  border-radius: 9990px;
  padding: 14px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-main);
  transition: background 0.2s;
  white-space: nowrap;
}

.cookie-btn-accept:hover {
  background: rgba(198, 171, 118, 0.15);
}

.cookie-btn-technical {
  background: none;
  border: none;
  color: #fff;
  font-size: 0.875rem;
  cursor: pointer;
  font-family: var(--font-main);
  white-space: nowrap;
}

.cookie-btn-technical:hover {
  text-decoration: underline;
}

.cookie-link-more {
  color: #fff;
  font-size: 0.875rem;
  margin-left: auto;
  white-space: nowrap;
}

.cookie-link-more:hover {
  text-decoration: underline;
}

.cookie-open-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9998;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #c6ab76;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.2s;
}

.cookie-open-btn:hover {
  transform: scale(1.08);
}

.cookie-open-btn svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

@media (max-width: 768px) {
  .cookie-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .cookie-link-more {
    margin-left: 0;
  }
}

/* ========================================
   Form Success
   ======================================== */
.form-success {
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
  padding: 40px 0;
  line-height: 1.6;
}

/* ========================================
   Animations
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
