:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-bright: #FFD87A;
  --gold-dark: #8B6914;
  --gold-muted: #9A7B3A;
  --black: #000000;
  --black-deep: #050505;
  --black-card: #0D0D0D;
  --black-surface: #111111;
  --black-border: #1A1A1A;
  --black-hover: #181818;
  --white: #FFFFFF;
  --white-dim: #E8E8E8;
  --white-muted: #AAAAAA;
  --white-subtle: #666666;
  --gradient-gold: linear-gradient(135deg, #8B6914 0%, #C9A84C 40%, #FFD87A 65%, #C9A84C 80%, #8B6914 100%);
  --shadow-gold: 0 0 40px rgba(201,168,76,0.15);
  --shadow-card: 0 20px 60px rgba(0,0,0,0.8);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  min-height: 100vh;
  background: var(--black);
  color: var(--white-dim);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: default;
}

#page-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  padding: 20px;
  background: radial-gradient(circle at top, rgba(201,168,76,0.12), transparent 45%), rgba(0,0,0,0.98);
  color: var(--white);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-ring {
  width: 72px;
  height: 72px;
  border: 6px solid rgba(255,255,255,0.08);
  border-top-color: rgba(201,168,76,0.9);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  box-shadow: 0 0 40px rgba(201,168,76,0.18);
}

.loader-copy span {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.loader-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 12px;
}

.loader-copy p {
  font-family: 'Cormorant Garamond', serif;
  color: var(--white-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  text-align: center;
  max-width: 320px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

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

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

button {
  font: inherit;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 4%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: all 0.4s ease;
}

nav.scrolled {
  height: 68px;
  border-bottom-color: rgba(201,168,76,0.25);
  background: rgba(0,0,0,0.97);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.nav-logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.nav-logo:hover .nav-logo-img {
  transform: rotate(-5deg) scale(1.08);
}

.nav-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.nav-logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--gold-muted);
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-muted);
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gradient-gold);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active-link {
  color: var(--gold-light);
}

.nav-links a:hover::after,
.nav-links a.active-link::after {
  width: 100%;
}

.nav-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black) !important;
  background: var(--gradient-gold);
  padding: 10px 24px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s ease;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 5% 140px;
  text-align: center;
  background: var(--black);
}

.page-hero {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 140px 5% 80px;
  text-align: center;
  background: var(--black);
}

.company-hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 140px 5% 80px;
  text-align: center;
  background: var(--black);
}

.hero-bg-grid,
.page-hero-bg,
.company-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
}

.hero-bg-grid,
.page-hero-bg {
  background-size: 60px 60px;
}

.page-hero-bg {
  background-size: 50px 50px;
}

.company-hero-bg {
  background-size: 40px 40px;
}

.hero-glow,
.hero-glow-2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  top: 30%;
  left: 20%;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

.hero-eyebrow,
.section-eyebrow,
.company-hero-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 28px;
  text-align: center;
}

.hero-logo-wrap {
  margin-bottom: 40px;
}

.hero-logo-wrap img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(201,168,76,0.4));
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 30px rgba(201,168,76,0.3)); }
  50% { filter: drop-shadow(0 0 60px rgba(201,168,76,0.6)); }
}

.hero-title,
.section-title,
.mvv-title,
.card-name,
.org-parent-name,
.service-title,
.cta-panel h3 {
  font-family: 'Cinzel', serif;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
}

.hero-main-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 20px rgba(201,168,76,0.3));
}

.hero-title-group,
.company-hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--white-muted);
  text-align: center;
  margin-bottom: 32px;
}

.company-hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 24px;
  line-height: 1.1;
}

.company-hero-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 20px rgba(201,168,76,0.3));
}

.service-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.section-main-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 24px auto;
  display: block;
  filter: drop-shadow(0 0 15px rgba(201,168,76,0.2));
}

.org-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-right: 12px;
  display: inline-block;
}

.org-chart {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
}

.org-parent {
  text-align: center;
  position: relative;
  z-index: 10;
}

.org-parent-name {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.org-parent-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.org-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
  position: relative;
  z-index: 5;
}

.org-children {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.org-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 280px;
  padding: 32px 24px;
}

.org-child img.org-logo {
  width: 64px;
  height: 64px;
  margin: 0 0 20px 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(45deg) brightness(1.2);
  transition: filter 0.4s ease;
}

.org-child:hover img.org-logo {
  filter: none;
}

.org-child:hover {
  background: var(--black-hover);
}

.service-item:hover .service-logo {
  filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(45deg) brightness(1.2);
}

.hero-divider {
  width: 120px;
  height: 1px;
  background: var(--gradient-gold);
  margin: 0 auto 32px;
}

.hero-tagline,
.section-sub,
.overview-text p,
.about-text p,
.story-body p,
.contact-info-value,
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  color: var(--white-muted);
}

.hero-tagline,
.company-hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  text-align: center;
  letter-spacing: 0.05em;
  max-width: 600px;
  margin: 0 auto 56px;
}

.section-sub {
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  max-width: 600px;
  line-height: 1.7;
  margin: 0 auto 60px;
  text-align: center;
}

.hero-actions,
.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary,
.btn-secondary {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: none;
  padding: 16px 40px;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-primary {
  color: var(--black);
  background: var(--gradient-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(201,168,76,0.4);
}

.btn-secondary {
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(201,168,76,0.4);
}

.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
  transform: translateY(-3px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll span {
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--white-subtle);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold-muted), transparent);
  animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

section {
  padding: 120px 5%;
}

.gold-rule {
  width: 60px;
  height: 2px;
  background: var(--gradient-gold);
  margin: 0 auto 24px;
}

.about-grid,
.overview-grid,
.story-grid,
.footer-grid,
.mvv-grid,
.companies-grid,
.companies-full-grid,
.services-grid {
  display: grid;
  gap: 2px;
}

.contact-grid {
  display: grid;
  gap: 48px;
}

.companies-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1300px;
  margin: 0 auto;
}

.about-grid,
.overview-grid,
.story-grid,
.mvv-grid,
.contact-grid {
  max-width: 1300px;
  margin: 0 auto;
}

.about-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.about-text p,
.overview-text p,
.story-body p,
.contact-info-value,
.cta-panel p {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-stats,
.card-list,
.contact-info {
  display: grid;
  gap: 2px;
}

.about-stats {
  grid-template-columns: 1fr 1fr;
}

.contact-info {
  margin-top: 48px;
}

.stat-block,
.company-card,
.mvv-card,
.service-item,
.contact-info-item,
.org-child,
.cta-panel,
.footer-contact {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: 36px 28px;
  transition: all 0.4s ease;
}

.stat-block:hover,
.company-card:hover,
.mvv-card:hover,
.service-item:hover,
.contact-info-item:hover,
.org-child:hover {
  background: var(--black-hover);
}

.stat-block {
  position: relative;
  overflow: hidden;
}

.stat-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gradient-gold);
  transition: height 0.4s ease;
}

.stat-block:hover::before {
  height: 100%;
}

.stat-number {
  font-family: 'Cinzel', serif;
  font-size: 2.8rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label,
.card-industry,
.card-link,
.footer-col-title,
.mvv-roman,
.contact-info-label,
.form-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 12px;
}

.company-card {
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.company-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.company-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width 0.5s ease;
}

.company-card:hover::before {
  opacity: 1;
}

  .card-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(45deg) brightness(1.2);
    transition: filter 0.4s ease;
  }

  .company-card:hover .card-icon img {
    filter: none;
  }
.company-card:hover .card-name {
  color: var(--gold-light);
}

.card-desc,
.mvv-body,
.service-desc,
.org-child,
.footer-bottom p,
.cta-panel p,
.story-body p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--white-subtle);
  line-height: 1.7;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s ease;
}

.card-link:hover {
  gap: 16px;
}

.arrow {
  width: 24px;
  height: 1px;
  background: var(--gold);
  position: relative;
}

.arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--gold);
  border-top: 1px solid var(--gold);
  transform: rotate(45deg);
}

.mission-section,
.story-section,
.structure-section,
.services-section,
.overview-section,
.contact-section,
.about-preview {
  background: var(--black-surface);
  border-top: 1px solid var(--black-border);
}

.structure-section {
  text-align: center;
}

.mvv-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.mvv-card {
  padding: 56px 40px;
  position: relative;
}

.mvv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.4s ease;
}

.mvv-card:hover::before {
  background: var(--gradient-gold);
}

.mvv-roman {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--gold-muted);
  margin-bottom: 20px;
}

.mvv-title {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.footer {
  background: var(--black-deep);
  border-top: 1px solid var(--black-border);
  padding: 80px 5% 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto 60px;
}

.footer-tagline {
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-subtle);
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-link img {
  width: 20px;
  height: 20px;
  display: block;
  filter: brightness(0) invert(1);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.footer-col-title {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--white-subtle);
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

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

.footer-contact p {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact p:last-child {
  margin-bottom: 0;
}

.footer-contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.8;
}

.footer-contact a {
  color: var(--gold-muted);
}

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

.footer-bottom {
  border-top: 1px solid var(--black-border);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--white-subtle);
  line-height: 1.6;
}

.footer-bottom span {
  color: var(--gold);
  font-weight: 600;
}

.back-link {
  position: absolute;
  top: 100px;
  left: 5%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.back-link:hover {
  color: var(--gold-light);
}

.back-arrow {
  width: 20px;
  height: 1px;
  background: currentColor;
  position: relative;
}

.back-arrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-left: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  max-width: 1300px;
  margin: 0 auto;
}

.service-item {
  padding: 40px 32px;
}

.service-item::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 40px 40px 0;
  border-color: transparent rgba(201,168,76,0.1) transparent transparent;
  transition: border-color 0.3s ease;
}

.service-item:hover::after {
  border-color: transparent rgba(201,168,76,0.25) transparent transparent;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.overview-grid,
.story-grid {
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.overview-text,
.story-body,
.about-text,
.contact-form {
  padding: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.overview-features,
.contact-info {
  list-style: none;
  margin-top: 32px;
  display: grid;
  gap: 16px;
}

.overview-features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--black-border);
}

.overview-features li::before {
  content: '◆';
  color: var(--gold-muted);
  font-size: 0.5rem;
  margin-top: 6px;
  flex-shrink: 0;
}

.cta-panel {
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(139,105,20,0.05) 100%);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 60px 48px;
  text-align: center;
}

.cta-panel h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.cta-panel p {
  font-style: italic;
  margin-bottom: 36px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-input,
.form-select,
.form-textarea {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  color: var(--white-dim);
  padding: 14px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s ease;
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(201,168,76,0.5);
  background: var(--black-hover);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--black-border);
  padding: 40px 5%;
  z-index: 999;
  display: none;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--black-border);
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--gold-light);
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (max-width: 1024px) {
  .about-grid,
  .mvv-grid,
  .footer-grid,
  .story-grid,
  .overview-grid,
  .contact-grid,
  .companies-full-grid {
    grid-template-columns: 1fr;
  }
  .org-children {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 80px 5%; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .org-children {
    grid-template-columns: repeat(2, 1fr);
  }
  .companies-grid,
  .companies-full-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-actions,
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-primary,
  .btn-secondary {
    text-align: center;
  }
  .org-children {
    grid-template-columns: 1fr;
  }
  .org-child {
    min-height: auto;
    padding: 24px 20px;
  }
  .org-child img.org-logo {
    width: 56px;
    height: 56px;
  }
}
