/* ─── HEADER ─── */
.aml-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.aml-header.scrolled {
  background: rgba(6,18,38,0.97) !important;
  border-bottom-color: rgba(200,168,75,0.15) !important;
  backdrop-filter: blur(8px);
}

.aml-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 60px 18px;
  max-width: 1600px;
  margin: 0 auto;
}

.aml-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  transition: opacity 0.3s;
  line-height: 1;
  gap: 2px;
}

.aml-logo:hover { opacity: 0.85; }

.aml-logo-img {
  height: auto;
  width: 200px;
  max-width: 200px;
  display: block;
}

.aml-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--white);
  padding-left: 2px;
}

.aml-logo-text em {
  font-style: italic;
  color: var(--steel);
}

.aml-nav-list {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.aml-nav-list a {
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

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

.aml-nav-list a:hover,
.aml-nav-list .current-menu-item a { color: var(--gold); }
.aml-nav-list a:hover::after,
.aml-nav-list .current-menu-item a::after { width: 100%; }

.aml-nav-cta {
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--navy) !important;
  background: var(--gold);
  padding: 9px 20px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.aml-nav-cta:hover {
  background: var(--gold2);
  transform: translateY(-1px);
  color: var(--navy) !important;
}

/* Mobile toggle */
.aml-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.aml-mobile-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s;
}

/* Mobile nav overlay */
.aml-mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(6,18,38,0.98);
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.aml-mobile-nav.open { transform: translateX(0); }

.aml-mobile-close {
  position: absolute;
  top: 24px; right: 28px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s;
}

.aml-mobile-close:hover { color: var(--gold); }

.aml-mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.aml-mobile-nav-list li {
  margin-bottom: 8px;
}

.aml-mobile-nav-list a {
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 14px 20px;
  display: block;
  transition: color 0.3s;
}

.aml-mobile-nav-list a:hover { color: var(--gold); }

/* ─── HERO ─── */
.aml-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.aml-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 1200px 800px at 15% 50%, #0d2a5e 0%, transparent 65%),
    radial-gradient(ellipse 800px 600px at 85% 20%, #0f3875 0%, transparent 55%),
    radial-gradient(ellipse 500px 400px at 70% 85%, #071940 0%, transparent 60%),
    linear-gradient(135deg, #061226 0%, #0d2347 45%, #0a1e42 70%, #061226 100%);
}

.staff-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.staff-line {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(138,180,248,0.09) 25%, rgba(138,180,248,0.09) 75%, transparent 100%);
}

.float-notes { position: absolute; inset: 0; pointer-events: none; }

.float-note {
  position: absolute;
  font-family: serif;
  color: rgba(255,255,255,0.06);
  animation: floatUp 20s infinite linear;
}

@keyframes floatUp {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(-120vh) rotate(15deg); opacity: 0; }
}

.aml-deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(100,160,255,0.08);
  pointer-events: none;
}

.aml-gold-accent {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 220px;
  background: linear-gradient(180deg, transparent, var(--gold), var(--gold2), var(--gold), transparent);
  border-radius: 2px;
  animation: fadeIn 2s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.aml-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 120px 0 112px;
  max-width: 900px;
  animation: heroReveal 1.2s ease forwards;
}

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

.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeIn 1s ease 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 110px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 0.5s forwards;
  color: var(--white);
}

.hero-title em { font-style: italic; color: var(--steel); }

.hero-subtitle {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 5px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeIn 1s ease 0.7s forwards;
}

.hero-desc {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeIn 1s ease 0.9s forwards;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1s ease 1.1s forwards;
}

.hero-shimmer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, rgba(200,168,75,0.3) 50%, var(--steel) 70%, transparent 100%);
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 1.8s forwards;
}

.scroll-hint span {
  font-family: var(--font-head);
  font-size: 9px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.25);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, rgba(200,168,75,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(0.6); opacity: 0.2; }
}

/* ─── DISCIPLINES GRID ─── */
.disciplines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1300px;
  margin: 0 auto;
}

.discipline-card {
  position: relative;
  padding: 56px 44px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: background 0.4s, border-color 0.4s;
}

.discipline-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}

.discipline-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(200,168,75,0.2); }
.discipline-card:hover::before { transform: scaleX(1); }

.discipline-number {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 300;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 20px; right: 28px;
  line-height: 1;
  transition: color 0.4s;
}

.discipline-card:hover .discipline-number { color: rgba(200,168,75,0.08); }

.discipline-icon { font-size: 34px; margin-bottom: 20px; display: block; opacity: 0.75; }

.discipline-name {
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.discipline-desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── WHY SECTION ─── */
.aml-why::before {
  content: '𝄞';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 500px;
  color: rgba(255,255,255,0.012);
  font-family: serif;
  line-height: 1;
  pointer-events: none;
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-intro {
  font-family: var(--font-display);
  font-size: 26px;
  font-style: italic;
  font-weight: 300;
  color: var(--steel);
  line-height: 1.6;
  margin-bottom: 28px;
}

.why-text {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  margin-bottom: 36px;
}

.mark-credit {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border-left: 2px solid var(--gold);
  background: rgba(200,168,75,0.05);
}

.mark-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy3), var(--blue));
  border: 2px solid var(--gold);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--gold);
}

.mark-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.mark-name { font-family: var(--font-head); font-size: 13px; letter-spacing: 2px; color: var(--white); margin-bottom: 3px; }
.mark-role { font-family: var(--font-body); font-size: 14px; font-style: italic; color: var(--muted); }

.why-features { display: flex; flex-direction: column; gap: 2px; }

.feature-item {
  padding: 28px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 3px solid transparent;
  transition: all 0.3s;
}

.feature-item:hover { background: rgba(255,255,255,0.06); border-left-color: var(--gold); }

.feature-number { font-family: var(--font-head); font-size: 10px; letter-spacing: 3px; color: var(--gold); margin-bottom: 8px; opacity: 0.7; }
.feature-title { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.feature-desc { font-family: var(--font-body); font-size: 15px; font-style: italic; color: var(--muted); line-height: 1.6; }

/* ─── STEPS ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 64px;
}

.step-card {
  padding: 52px 40px;
  background: #08162e;
  position: relative;
  transition: background 0.3s;
}

.step-card:hover { background: #0a1e42; }

.step-num {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.22;
  line-height: 1;
  margin-bottom: 20px;
  transition: opacity 0.3s;
}

.step-card:hover .step-num { opacity: 0.42; }
.step-title { font-family: var(--font-head); font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--white); margin-bottom: 12px; }
.step-desc { font-family: var(--font-body); font-size: 15px; font-style: italic; color: var(--muted); line-height: 1.7; }

.step-connector {
  position: absolute;
  top: 50%; right: -18px;
  transform: translateY(-50%);
  width: 36px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  z-index: 2;
}

/* ─── CTA BAND ─── */
.aml-cta-band {
  padding: 100px 60px;
  background:
    radial-gradient(ellipse 1000px 400px at 50% 50%, #0d2a5e 0%, transparent 70%),
    var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(200,168,75,0.1);
  border-bottom: 1px solid rgba(200,168,75,0.1);
}

.aml-cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-eyebrow { font-family: var(--font-head); font-size: 10px; letter-spacing: 6px; color: var(--gold); text-transform: uppercase; margin-bottom: 20px; display: block; }
.cta-title { font-family: var(--font-display); font-size: clamp(42px, 5vw, 70px); font-weight: 300; line-height: 1.1; margin-bottom: 24px; color: var(--white); }
.cta-title em { font-style: italic; color: var(--steel); }
.cta-sub { font-family: var(--font-body); font-size: 20px; font-style: italic; color: var(--muted); margin-bottom: 48px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ─── FOOTER ─── */
.aml-footer {
  background: #040d1a;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 70px 60px 0;
}

.aml-footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr auto;
  gap: 60px;
  align-items: start;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.aml-footer-logo {
  font-family: var(--font-head);
  font-size: 15px;
  letter-spacing: 2px;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.aml-footer-logo span { color: var(--gold); }
.aml-footer-tagline { font-family: var(--font-body); font-size: 15px; font-style: italic; color: rgba(255,255,255,0.35); margin: 0; }

.aml-footer-nav-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }

.aml-footer-nav-list a {
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.3s;
}

.aml-footer-nav-list a:hover { color: var(--gold); }
.aml-footer-label { font-family: var(--font-head); font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; opacity: 0.7; }

.aml-footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.aml-footer-bottom p { font-family: var(--font-body); font-size: 13px; font-style: italic; color: rgba(255,255,255,0.2); margin: 0; }
.aml-footer-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.3s; }
.aml-footer-bottom a:hover { color: var(--gold); }

/* ─── BLOG CARDS ─── */
.aml-post-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.3s, background 0.3s;
  overflow: hidden;
}

.aml-post-card:hover { border-color: rgba(200,168,75,0.2); background: rgba(255,255,255,0.05); }

.aml-post-thumb img { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; }

.aml-post-body { padding: 28px 28px 36px; }

.aml-post-meta { font-family: var(--font-head); font-size: 10px; letter-spacing: 3px; color: var(--gold); margin-bottom: 10px; }

.aml-post-title { font-family: var(--font-display); font-size: 24px; font-weight: 300; margin-bottom: 14px; line-height: 1.25; }
.aml-post-title a { color: var(--white); text-decoration: none; transition: color 0.3s; }
.aml-post-title a:hover { color: var(--steel); }

.aml-post-excerpt { margin-bottom: 20px; }
.aml-post-excerpt p { font-size: 15px; font-style: italic; color: var(--muted); line-height: 1.7; margin: 0; }

/* ─── PAGE WRAP ─── */
.aml-page-wrap { padding-top: 0; }

/* ─── CONTACT FORM OVERRIDES ─── */
.aml-contact-form-wrap .wpcf7 input[type="text"],
.aml-contact-form-wrap .wpcf7 input[type="email"],
.aml-contact-form-wrap .wpcf7 textarea,
.aml-contact-form-wrap .wpcf7 select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 17px;
  border-radius: 0;
  transition: border-color 0.3s;
  margin-bottom: 2px;
}

.aml-contact-form-wrap .wpcf7 input:focus,
.aml-contact-form-wrap .wpcf7 textarea:focus {
  outline: none;
  border-color: rgba(200,168,75,0.5);
  box-shadow: 0 0 0 2px rgba(200,168,75,0.08);
}

.aml-contact-form-wrap .wpcf7 label {
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: block;
  margin-bottom: 6px;
  margin-top: 20px;
}

.aml-contact-form-wrap .wpcf7 input[type="submit"] {
  font-family: var(--font-head) !important;
  font-size: 11px !important;
  letter-spacing: 4px !important;
  text-transform: uppercase !important;
  background: linear-gradient(135deg, var(--gold), var(--gold2)) !important;
  color: var(--navy) !important;
  border: none !important;
  padding: 16px 40px !important;
  cursor: pointer !important;
  margin-top: 24px !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
  width: auto !important;
}

.aml-contact-form-wrap .wpcf7 input[type="submit"]:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 24px rgba(200,168,75,0.3) !important;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .disciplines-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .aml-footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .aml-header-inner { padding: 18px 24px; }
  .aml-nav, .aml-nav-cta { display: none; }
  .aml-mobile-toggle { display: flex; }
  .aml-hero-content { padding: 0 48px 0 40px; }
  .aml-gold-accent { left: 20px; height: 140px; }
  .hero-title { font-size: 56px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .disciplines-grid { grid-template-columns: 1fr; }
  .aml-footer { padding: 48px 24px 0; }
  .aml-footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .aml-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
