/*
Theme Name:  AAA Business Consulting
Theme URI:   https://aaa-businessconsulting.com
Author:      AAA Business Consulting LLC
Author URI:  https://aaa-businessconsulting.com
Description: Elegantes, luxuriöses WordPress-Theme für AAA Business Consulting LLC – the dealmaker company. Zweisprachig (DE/EN), optimiert für KMU und Investoren.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aaa-consulting
Tags:        business, consulting, luxury, bilingual, dark, gold, one-page
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --black:       #0A0A0A;
  --gold:        #C9A84C;
  --gold-light:  #E8C97E;
  --gold-dark:   #A07830;
  --cream:       #F5F0E8;
  --cream-dark:  #EAE3D5;
  --white:       #FFFFFF;
  --gray-mid:    #888880;
  --gray-dark:   #333330;

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Montserrat', 'Segoe UI', Arial, sans-serif;

  --transition:   all 0.3s ease;
  --shadow-gold:  0 4px 40px rgba(201, 168, 76, 0.1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background-color: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul, ol { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
}

h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

em { font-style: italic; color: var(--gold); }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4rem;
}

.section-padding { padding: 7rem 0; }

.section-label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.section-line {
  width: 50px;
  height: 0.5px;
  background: var(--gold);
  opacity: 0.5;
  margin-bottom: 2rem;
}

.section-body {
  font-size: 13px;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.9;
  max-width: 560px;
}

.text-gold { color: var(--gold); }
.text-muted { color: rgba(245, 240, 232, 0.5); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

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

.btn-outline {
  color: var(--cream);
  background: transparent;
  border: 0.5px solid rgba(201, 168, 76, 0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#masthead {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 0.5px solid rgba(201, 168, 76, 0.2);
  transition: var(--transition);
}

#masthead.scrolled {
  padding: 0.8rem 4rem;
  background: rgba(10, 10, 10, 0.98);
}

.site-branding { display: flex; flex-direction: column; }

.site-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  line-height: 1.1;
}

.site-claim {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--gray-mid);
  text-transform: uppercase;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.main-navigation ul {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.main-navigation a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--cream-dark);
  text-transform: uppercase;
}
.main-navigation a:hover { color: var(--gold); }

.lang-switcher {
  display: flex;
  gap: 0.5rem;
}

.lang-btn {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gray-mid);
  cursor: pointer;
  border: 0.5px solid rgba(201, 168, 76, 0.3);
  padding: 4px 10px;
  border-radius: 2px;
  background: transparent;
  font-family: var(--font-body);
  transition: var(--transition);
}
.lang-btn:hover,
.lang-btn.active { color: var(--gold); border-color: var(--gold); }

.nav-cta {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 8px 22px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--gold-light); }

.menu-toggle {
  display: none;
  background: none;
  border: 0.5px solid rgba(201, 168, 76, 0.4);
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 0.5px;
  background: var(--gold);
  transition: var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(10,10,10,0.97) 0%,
    rgba(20,15,5,0.95) 50%,
    rgba(10,10,10,0.98) 100%
  );
  z-index: 1;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  background-image:
    linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-ornament {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 0.5px solid rgba(201, 168, 76, 0.06);
  pointer-events: none;
  z-index: 2;
}
.hero-ornament::before {
  content: '';
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 0.5px solid rgba(201, 168, 76, 0.05);
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 2rem;
  animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.hero-tag::before, .hero-tag::after {
  content: '';
  display: block;
  width: 40px;
  height: 0.5px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.hero-claim-text {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gray-mid);
  letter-spacing: 0.12em;
  margin-bottom: 2rem;
}

.hero-divider {
  width: 60px;
  height: 0.5px;
  background: var(--gold);
  margin: 0 auto 2rem;
  opacity: 0.6;
}

.hero-sub {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(245, 240, 232, 0.6);
  max-width: 520px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}
.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--gray-mid);
  text-transform: uppercase;
}
.scroll-line {
  width: 0.5px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* ============================================================
   STATS BAR
   ============================================================ */
#stats-bar {
  background: rgba(201, 168, 76, 0.05);
  border-top: 0.5px solid rgba(201, 168, 76, 0.15);
  border-bottom: 0.5px solid rgba(201, 168, 76, 0.15);
  padding: 3rem 4rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-top: 0.5rem;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
#services {
  background: rgba(5, 5, 5, 0.6);
}

.services-intro {
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  border: 0.5px solid rgba(201, 168, 76, 0.12);
}

.service-card {
  padding: 3rem 2.5rem;
  background: rgba(10, 10, 10, 0.95);
  border: 0.5px solid rgba(201, 168, 76, 0.08);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover { background: rgba(201, 168, 76, 0.04); }
.service-card:hover::after { opacity: 0.5; }

.service-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.1);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.service-desc {
  font-size: 12px;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.85;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 2rem;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.2s;
}
.service-link:hover { gap: 12px; color: var(--gold-light); }

/* ============================================================
   STATEMENT / QUOTE
   ============================================================ */
#statement {
  text-align: center;
  padding: 6rem 8rem;
  background: rgba(201, 168, 76, 0.03);
  border-top: 0.5px solid rgba(201, 168, 76, 0.1);
  border-bottom: 0.5px solid rgba(201, 168, 76, 0.1);
}

.statement-quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.35;
  max-width: 800px;
  margin: 0 auto;
}

.statement-attribution {
  margin-top: 2rem;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

/* ============================================================
   APPROACH / METHODOLOGY
   ============================================================ */
#approach .approach-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.approach-steps { margin-top: 3rem; }

.approach-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 0.5px solid rgba(201, 168, 76, 0.08);
}
.approach-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.step-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.3);
  min-width: 36px;
  line-height: 1;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.step-desc {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.8;
}

.approach-visual {
  position: relative;
  aspect-ratio: 1/1.1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.approach-ring {
  position: absolute;
  border-radius: 50%;
  border: 0.5px solid rgba(201, 168, 76, 0.12);
  animation: ringPulse 6s ease-in-out infinite;
}
.ring-1 { inset: 0; animation-delay: 0s; }
.ring-2 { inset: 12%; animation-delay: 2s; }
.ring-3 { inset: 25%; animation-delay: 4s; }

@keyframes ringPulse {
  0%, 100% { border-color: rgba(201, 168, 76, 0.12); }
  50%       { border-color: rgba(201, 168, 76, 0.25); }
}

.approach-center { position: relative; text-align: center; }

.approach-center-claim {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-top: 1rem;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact { background: rgba(5, 4, 2, 0.8); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-form-wrapper { margin-top: 3rem; }

.wpcf7-form,
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.form-field { display: flex; flex-direction: column; gap: 6px; }

.form-field label,
.form-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.7);
}

.form-field input,
.form-field select,
.form-field textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 0.5px solid rgba(201, 168, 76, 0.2);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

input:focus, select:focus, textarea:focus {
  border-color: rgba(201, 168, 76, 0.6);
}

select option { background: #1a1a1a; color: var(--cream); }

textarea { min-height: 120px; resize: vertical; }

input[type="submit"],
.wpcf7-submit,
.submit-btn {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--black);
  background: var(--gold);
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s;
  width: auto;
}
input[type="submit"]:hover,
.wpcf7-submit:hover { background: var(--gold-light); }

.contact-info-block { padding-top: 3rem; }

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 0.5px solid rgba(201, 168, 76, 0.08);
}
.contact-info-item:last-of-type { border-bottom: none; }

.contact-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 0.5px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg { width: 16px; height: 16px; }

.contact-info-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  display: block;
}

.contact-info-value {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.65);
  font-weight: 300;
  margin: 0;
}

.contact-promise {
  margin-top: 3rem;
  padding: 2rem;
  border: 0.5px solid rgba(201, 168, 76, 0.15);
  background: rgba(201, 168, 76, 0.04);
}

.contact-promise-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 1rem;
}

.contact-promise-sig {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ============================================================
   FOOTER
   ============================================================ */
#colophon {
  padding: 3rem 4rem;
  border-top: 0.5px solid rgba(201, 168, 76, 0.12);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
}
.footer-nav a:hover { color: var(--gold); }

.footer-copy {
  font-size: 10px;
  color: rgba(245, 240, 232, 0.25);
  letter-spacing: 0.08em;
}

/* ============================================================
   COOKIE NOTICE (basic)
   ============================================================ */
#cookie-notice {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(10, 10, 10, 0.97);
  border-top: 0.5px solid rgba(201, 168, 76, 0.25);
  padding: 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
#cookie-notice p {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.6);
  margin: 0;
}
#cookie-notice a { color: var(--gold); text-decoration: underline; }
#cookie-accept {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 8px 24px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}
#cookie-accept:hover { background: var(--gold-light); }

/* ============================================================
   ANIMATIONS & SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s 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; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 2.5rem; }
  #masthead { padding: 1rem 2.5rem; }
  #stats-bar { padding: 2.5rem; }
  section { padding: 5rem 2.5rem; }
  #statement { padding: 5rem 3rem; }
  #colophon { padding: 2.5rem; }

  .services-grid { grid-template-columns: 1fr; }
  #approach .approach-layout { grid-template-columns: 1fr; gap: 3rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .approach-visual { aspect-ratio: 1/0.5; max-height: 300px; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.5rem; }
  #masthead { padding: 1rem 1.5rem; }
  #stats-bar { padding: 2rem 1.5rem; }
  section { padding: 4rem 1.5rem; }
  #statement { padding: 4rem 1.5rem; }
  #colophon { padding: 2rem 1.5rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }

  .main-navigation ul { display: none; }
  .main-navigation ul.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 65px; left: 0; right: 0;
    background: rgba(10, 10, 10, 0.98);
    padding: 2rem;
    border-bottom: 0.5px solid rgba(201, 168, 76, 0.2);
    gap: 1.5rem;
  }
  .menu-toggle { display: flex; }
  #cookie-notice { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   LANGUAGE SWITCHING (JS-controlled)
   ============================================================ */
body[data-lang="de"] .lang-en { display: none; }
/* English-only mode */
