﻿/*
Theme Name: ASY Legal Redesign
Theme URI: https://www.asylegal.com
Author: ASY Legal
Version: 5.0.7
Text Domain: asy-legal
Description: Premium law firm theme
*/

/* ========================================================
   DESIGN TOKENS
   ======================================================== */

:root {
  /* Primary palette */
  --navy: #1C2536;
  --navy-deep: #141D2B;
  --navy-light: #2A3750;
  --navy-mid: #3A4A65;
  --gold: #C9A96E;
  --gold-light: #D9BE8A;
  --gold-dark: #A88B4E;
  --gold-glow: rgba(201, 169, 110, 0.14);
  --gold-subtle: rgba(201, 169, 110, 0.06);

  /* Warm accent for vibrancy */
  --warm-accent: #C17F59;
  --warm-glow: rgba(193, 127, 89, 0.08);

  /* Neutrals */
  --cream: #F3EFE7;
  --cream-dark: #E8E3D9;
  --surface: #FDFCF9;
  --surface-warm: #FAF7F1;
  --ivory: #F8F5EE;
  --text-dark: #1C2536;
  --text-body: #3D4455;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --border: #DDD8CE;
  --border-light: #EDE9E0;

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --section-gap: 120px;
  --container-max: 1240px;
  --container-narrow: 800px;
  --container-wide: 1400px;

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 180ms;
  --t-base: 320ms;
  --t-slow: 500ms;
  --t-slower: 800ms;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(28, 37, 54, 0.06);
  --shadow-md: 0 4px 20px rgba(28, 37, 54, 0.08);
  --shadow-lg: 0 12px 40px rgba(28, 37, 54, 0.10);
  --shadow-xl: 0 24px 60px rgba(28, 37, 54, 0.14);
  --shadow-gold: 0 8px 30px rgba(201, 169, 110, 0.25);

  /* Radius */
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  /* Utility aliases */
  --bg-cream: var(--ivory);
  --text-secondary: #5A6070;
  --font-heading: var(--font-serif);
  --font-body: var(--font-sans);
}



/* ========================================================
   RESET & BASE
   ======================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--ivory);
  color: var(--text-body);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease-out);
}

a:hover {
  color: var(--gold);
}

ul, ol {
  list-style: none;
}


/* ========================================================
   TYPOGRAPHY
   ======================================================== */

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.8rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; font-family: var(--font-sans); font-weight: 600; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* Prose */
.asy-prose {
  font-size: 18px;
  line-height: 1.9;
  color: var(--text-body);
  letter-spacing: 0.005em;
}

.asy-prose h2 {
  margin: 2.5em 0 0.8em;
  font-size: 1.8rem;
}

.asy-prose h3 {
  margin: 2em 0 0.6em;
  font-size: 1.35rem;
}

.asy-prose p {
  margin-bottom: 1.5em;
}

.asy-prose ul,
.asy-prose ol {
  margin: 1.2em 0;
  padding-left: 1.6em;
  list-style: disc;
}

.asy-prose ol { list-style: decimal; }

.asy-prose li {
  margin-bottom: 0.5em;
}

.asy-prose blockquote {
  margin: 2.5em 0;
  padding: 2em 2.5em;
  border-left: 4px solid var(--gold);
  background: var(--gold-subtle);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
}

.asy-prose a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(201, 169, 110, 0.5);
  transition: text-decoration-color var(--t-fast);
}

.asy-prose a:hover {
  text-decoration-color: var(--gold);
}

.asy-prose img {
  border-radius: var(--radius);
  margin: 2em 0;
}


/* ========================================================
   LAYOUT
   ======================================================== */

.asy-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.asy-container-narrow {
  max-width: var(--container-narrow);
}

.asy-container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
}

.asy-section {
  padding: var(--section-gap) 0;
}

.asy-section--dark {
  background: var(--cream);
  color: var(--text-dark);
}

.asy-section--dark h2,
.asy-section--dark h3 {
  color: var(--text-dark);
}

.asy-section--cream {
  background: var(--cream);
  position: relative;
}

.asy-section--white {
  background: #fff;
}

/* Subtle warm radial glow on cream sections */
.asy-section--cream::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(201, 169, 110, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.asy-page-main {
  padding-top: 100px;
}


/* ========================================================
   SECTION HEADERS
   ======================================================== */

.asy-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 24px;
}

.asy-section-header--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.asy-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 12px;
}

.asy-section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.asy-section--dark .asy-section-eyebrow {
  color: var(--gold-light);
}

.asy-section--dark .asy-section-eyebrow::before {
  background: var(--gold-light);
}

.asy-section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-top: 12px;
}

.asy-section--dark .asy-section-subtitle {
  color: rgba(255, 255, 255, 0.55);
}

.asy-section-link {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-dark);
  white-space: nowrap;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast), color var(--t-fast);
}

.asy-section-link:hover {
  border-bottom-color: var(--gold);
  color: var(--gold);
}

.asy-section--dark .asy-section-link {
  color: var(--gold-light);
}


/* ========================================================
   SIGNATURE ACCENT BAR
   ======================================================== */

.asy-accent-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
  z-index: 10001;
}


/* ========================================================
   SITE HEADER / NAVIGATION
   ======================================================== */

.asy-site-header {
  position: fixed;
  top: 3px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 0;
}

/* When logged into WP, offset header below the 32px admin bar */
body.logged-in .asy-site-header {
  top: 35px;
}

body.logged-in .asy-accent-bar {
  top: 32px;
}

/* Glass layer */
.asy-site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  backdrop-filter: blur(20px) saturate(1.5);
  box-shadow: 0 1px 0 rgba(28, 37, 54, 0.06),
              0 4px 16px rgba(28, 37, 54, 0.06),
              0 16px 40px rgba(28, 37, 54, 0.04);
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* Default state */
.asy-site-header--transparent .asy-logo-text,
.asy-site-header--transparent .asy-logo-suffix {
  color: #fff;
}

.asy-site-header--transparent .asy-logo-suffix {
  color: rgba(255, 255, 255, 0.6);
}

.asy-site-header--transparent .asy-nav-list a,
.asy-site-header--transparent .asy-nav-list li a {
  color: rgba(255, 255, 255, 0.85);
}

.asy-site-header--transparent .asy-nav-list a:hover,
.asy-site-header--transparent .asy-nav-list li a:hover {
  color: var(--gold-light);
}

.asy-site-header--transparent .asy-nav-list a::after,
.asy-site-header--transparent .asy-nav-list li a::after {
  background: var(--gold-light);
}

.asy-site-header--transparent .asy-menu-toggle span {
  background: #fff;
}

.asy-site-header--transparent .asy-header-cta {
  background: transparent;
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.asy-site-header--transparent .asy-header-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* Scrolled */
.asy-site-header.scrolled::before {
  opacity: 1;
}

.asy-site-header.scrolled .asy-logo-text {
  color: var(--text-dark);
}

.asy-site-header.scrolled .asy-logo-suffix {
  color: var(--text-muted);
}

.asy-site-header.scrolled .asy-nav-list a,
.asy-site-header.scrolled .asy-nav-list li a {
  color: var(--text-body);
}

.asy-site-header.scrolled .asy-nav-list a:hover,
.asy-site-header.scrolled .asy-nav-list li a:hover {
  color: var(--gold-dark);
}

.asy-site-header.scrolled .asy-nav-list a::after,
.asy-site-header.scrolled .asy-nav-list li a::after {
  background: var(--gold);
}

.asy-site-header.scrolled .asy-header-cta {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.asy-site-header.scrolled .asy-header-cta:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
}

.asy-site-header.scrolled .asy-menu-toggle span {
  background: var(--text-dark);
}

.asy-header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.asy-logo {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.asy-logo-text {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1;
  transition: color var(--t-base);
}

.asy-logo-suffix {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  transition: color var(--t-base);
}

/* Nav */
.asy-main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.asy-nav-list {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.asy-nav-list li,
.asy-nav-list .menu-item {
  list-style: none;
}

/* Hide WordPress sub-menus by default */
.asy-nav-list .sub-menu {
  display: none;
}

.asy-nav-list a,
.asy-nav-list li a {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
  transition: color var(--t-fast);
}

.asy-nav-list a::after,
.asy-nav-list li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--t-base) var(--ease-out);
}

.asy-nav-list a:hover,
.asy-nav-list li a:hover,
.asy-nav-list li.current-menu-item > a,
.asy-nav-list li.current_page_item > a {
  color: var(--gold-dark);
}

.asy-nav-list a:hover::after,
.asy-nav-list li a:hover::after,
.asy-nav-list li.current-menu-item > a::after,
.asy-nav-list li.current_page_item > a::after {
  width: 100%;
}

/* Header CTA */
.asy-header-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 26px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: var(--navy);
  border: 1.5px solid var(--navy);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--t-fast) var(--ease-out);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.asy-header-cta:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Mobile hamburger */
.asy-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}

.asy-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all var(--t-fast);
  border-radius: 2px;
}

.asy-menu-toggle.active span {
  background: #fff !important;
}

.asy-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.asy-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.asy-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ========================================================
   BUTTONS
   ======================================================== */

.asy-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--gold);
  border: 2px solid var(--gold);
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease-out);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.asy-btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.asy-btn-primary--large {
  padding: 20px 48px;
  font-size: 15px;
}

.asy-btn-primary--white {
  background: #fff;
  border-color: #fff;
  color: var(--navy);
}

.asy-btn-primary--white:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.asy-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-light);
  background: transparent;
  border: 2px solid rgba(201, 169, 110, 0.4);
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease-out);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.asy-btn-secondary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.asy-btn-secondary--dark {
  color: var(--navy);
  border-color: var(--navy);
}

.asy-btn-secondary--dark:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}


/* ========================================================
   BADGES & CHIPS
   ======================================================== */

.asy-lang-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.asy-chip {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--gold-glow);
  color: var(--gold-dark);
  letter-spacing: 0.01em;
}

.asy-chip--dark {
  background: rgba(201, 169, 110, 0.15);
  color: var(--gold-light);
}


/* ========================================================
   PAGE LOAD TRANSITION
   ======================================================== */

body {
  opacity: 1;
}

/* Preloader covers the page Ã¢Â€Â” no body opacity trick needed */


/* ========================================================
   CUSTOM CURSOR GLOW
   ======================================================== */

.asy-cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, rgba(201, 169, 110, 0.04) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.4s;
  opacity: 0;
  will-change: transform;
}

.asy-cursor-glow.active {
  opacity: 1;
}


/* ========================================================
   HOMEPAGE HERO
   ======================================================== */

.asy-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

/* Photo / video background */
.asy-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.asy-hero-media img,
.asy-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.asy-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28,37,54,0.75) 0%, rgba(28,37,54,0.50) 40%, rgba(28,37,54,0.70) 100%);
  z-index: 1;
}

/* Fallback gradient when no photo/video */
.asy-hero--no-media {
  background: var(--navy-deep);
}

/* Aurora mesh gradient background */
.asy-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.asy-hero-bg::before {
  content: '';
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(ellipse at 15% 80%, rgba(201, 169, 110, 0.18) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 20%, rgba(212, 149, 106, 0.1) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(201, 169, 110, 0.05) 0%, transparent 50%);
  animation: auroraShift 20s ease-in-out infinite alternate;
  z-index: 1;
}

.asy-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28,37,54,0.3) 0%, transparent 25%, transparent 75%, rgba(28,37,54,0.4) 100%);
  z-index: 2;
}

@keyframes auroraShift {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-5%, 3%) rotate(1deg); }
  50% { transform: translate(3%, -2%) rotate(-0.5deg); }
  75% { transform: translate(-3%, -4%) rotate(0.8deg); }
  100% { transform: translate(5%, 2%) rotate(-1deg); }
}

/* Animated geometric lines */
.asy-hero-line {
  position: absolute;
  background: linear-gradient(180deg, transparent, rgba(201, 169, 110, 0.18), transparent);
  width: 1px;
  z-index: 3;
}

.asy-hero-line--1 {
  left: 20%;
  top: -20%;
  height: 140%;
  animation: heroLineFloat 20s ease-in-out infinite;
}

.asy-hero-line--2 {
  left: 50%;
  top: -10%;
  height: 120%;
  animation: heroLineFloat 25s ease-in-out infinite reverse;
  opacity: 0.5;
}

.asy-hero-line--3 {
  left: 75%;
  top: -15%;
  height: 130%;
  animation: heroLineFloat 18s ease-in-out infinite;
  opacity: 0.3;
}

.asy-hero-line--4 {
  left: 35%;
  top: -25%;
  height: 150%;
  animation: heroLineFloat 22s ease-in-out infinite reverse;
  opacity: 0.2;
}

/* Floating particles */
.asy-hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  z-index: 3;
  opacity: 0;
  animation: particleFloat 8s ease-in-out infinite;
}

.asy-hero-particle:nth-child(1) { left: 15%; top: 30%; animation-delay: 0s; animation-duration: 12s; }
.asy-hero-particle:nth-child(2) { left: 45%; top: 60%; animation-delay: 2s; animation-duration: 10s; }
.asy-hero-particle:nth-child(3) { left: 70%; top: 20%; animation-delay: 4s; animation-duration: 14s; }
.asy-hero-particle:nth-child(4) { left: 85%; top: 70%; animation-delay: 1s; animation-duration: 11s; }
.asy-hero-particle:nth-child(5) { left: 30%; top: 80%; animation-delay: 3s; animation-duration: 13s; }
.asy-hero-particle:nth-child(6) { left: 60%; top: 40%; animation-delay: 5s; animation-duration: 9s; }

@keyframes particleFloat {
  0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
  10% { opacity: 0.6; }
  50% { opacity: 0.3; transform: translateY(-80px) scale(0.5); }
  90% { opacity: 0; }
}

/* Diagonal accent line */
.asy-hero-accent-line {
  position: absolute;
  right: 15%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent 10%, rgba(201, 169, 110, 0.2) 40%, rgba(201, 169, 110, 0.2) 60%, transparent 90%);
  z-index: 3;
  transform: rotate(15deg);
  transform-origin: top center;
}

/* Geometric shapes */
.asy-hero-geo {
  position: absolute;
  z-index: 3;
}

.asy-hero-geo--diamond {
  width: 200px;
  height: 200px;
  right: 10%;
  top: 15%;
  border: 1px solid rgba(201, 169, 110, 0.1);
  transform: rotate(45deg);
  animation: heroDiamondFloat 15s ease-in-out infinite;
}

.asy-hero-geo--diamond-2 {
  width: 120px;
  height: 120px;
  right: 25%;
  bottom: 20%;
  border: 1px solid rgba(201, 169, 110, 0.06);
  transform: rotate(45deg);
  animation: heroDiamondFloat 20s ease-in-out infinite reverse;
}

.asy-hero-geo--circle {
  width: 400px;
  height: 400px;
  right: -5%;
  top: 30%;
  border: 1px solid rgba(201, 169, 110, 0.05);
  border-radius: 50%;
  animation: heroCirclePulse 12s ease-in-out infinite;
}

@keyframes heroLineFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-30px) translateX(10px); }
}

@keyframes heroDiamondFloat {
  0%, 100% { transform: rotate(45deg) scale(1); opacity: 1; }
  50% { transform: rotate(45deg) scale(1.05); opacity: 0.7; }
}

@keyframes heroCirclePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.6; }
}

/* Hero content */
.asy-hero-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 180px 24px 200px;
  width: 100%;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.asy-hero-content {
  max-width: 900px;
  text-align: center;
}

.asy-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 32px;
}

.asy-hero-eyebrow::before,
.asy-hero-eyebrow::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.asy-hero-eyebrow.asy-hero-entered::before,
.asy-hero-eyebrow.asy-hero-entered::after {
  width: 40px;
}

.asy-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 32px;
}

/* Word reveal animation */
.asy-word-wrap {
  display: block;
  overflow: hidden;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
}

.asy-word-reveal {
  display: block;
  transform: translateY(110%);
  animation: none;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.asy-hero-title.asy-hero-entered .asy-word-wrap:nth-child(1) .asy-word-reveal {
  transform: translateY(0);
  transition-delay: 0s;
}

.asy-hero-title.asy-hero-entered .asy-word-wrap:nth-child(2) .asy-word-reveal {
  transform: translateY(0);
  transition-delay: 0.15s;
}

@keyframes textLineReveal {
  to { transform: translateY(0); }
}

@keyframes heroTextReveal {
  to { opacity: 1; transform: translateY(0); }
}

.asy-hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerGold 4s ease-in-out infinite;
}

@keyframes shimmerGold {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 200% center; }
}

.asy-hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
  margin-bottom: 44px;
}

.asy-hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero stats bar */
.asy-hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  background: rgba(28, 37, 54, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s,
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.asy-hero-stats.asy-hero-entered {
  opacity: 1;
  transform: translateY(0);
}

.asy-hero-stats-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.asy-hero-stat {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(201, 169, 110, 0.1);
  transition: background var(--t-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 110px;
}

.asy-hero-stat:last-child {
  border-right: none;
}

.asy-hero-stat:hover {
  background: rgba(201, 169, 110, 0.05);
}

.asy-stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.asy-stat-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
  max-width: 120px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Scroll hint */
.asy-hero-scroll {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.asy-hero-scroll span {
  display: block;
  width: 24px;
  height: 40px;
  border: 1.5px solid rgba(201, 169, 110, 0.3);
  border-radius: 12px;
  position: relative;
}

.asy-hero-scroll span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollHint 2.5s ease-in-out infinite;
}

@keyframes scrollHint {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(14px); }
}


/* ========================================================
   HERO CONSTELLATION CANVAS
   ======================================================== */

.asy-hero-constellation {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

/* Floating gradient orbs */
.asy-hero-orb {
  position: absolute;
  border-radius: 50%;
  z-index: 2;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
}

.asy-hero-orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.2) 0%, transparent 70%);
  left: -5%;
  top: 10%;
  animation: orbFloat1 18s ease-in-out infinite;
}

.asy-hero-orb--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(193, 127, 89, 0.12) 0%, transparent 70%);
  right: -8%;
  bottom: 5%;
  animation: orbFloat2 22s ease-in-out infinite;
}

.asy-hero-orb--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
  left: 40%;
  top: 50%;
  animation: orbFloat3 15s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -40px) scale(1.1); }
  66% { transform: translate(-30px, 50px) scale(0.95); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-50px, 30px) scale(1.05); }
  66% { transform: translate(40px, -60px) scale(0.9); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, -30px) scale(1.15); }
}

/* Enhanced hero entrance */
.asy-hero-eyebrow,
.asy-hero-subtitle,
.asy-hero-actions {
  animation: none;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.asy-hero-eyebrow.asy-hero-entered,
.asy-hero-subtitle.asy-hero-entered,
.asy-hero-actions.asy-hero-entered {
  opacity: 1;
  transform: translateY(0);
}

.asy-hero-title.asy-hero-entered .asy-word-reveal {
  transform: translateY(0);
}


/* ========================================================
   TRUST BAR
   ======================================================== */

/* Legacy trust-bar kept for fallback */
.asy-trust-bar {
  padding: 48px 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.asy-trust-bar__label {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-light);
  margin-bottom: 28px;
}

/* ========================================================
   MEMBERSHIPS BAR
   ======================================================== */

.asy-memberships-bar {
  padding: 32px 0 28px;
  background: var(--navy-deep);
  overflow: hidden;
  position: relative;
}

.asy-memberships-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.asy-memberships-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.2;
}

.asy-memberships-bar__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.asy-memberships-bar__rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.3), transparent);
}

.asy-memberships-bar__label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  white-space: nowrap;
}

.asy-memberships-bar .asy-marquee-track {
  gap: 56px;
}

.asy-memberships-bar .asy-trust-logo {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 1;
  transition: color var(--t-base);
}

.asy-memberships-bar .asy-trust-logo:hover {
  color: var(--gold-light);
  opacity: 1;
}

.asy-memberships-bar .asy-marquee-divider {
  background: var(--gold);
  opacity: 0.25;
}

.asy-memberships-bar .asy-trust-logo-img {
  filter: grayscale(100%) brightness(2);
  opacity: 0.6;
}

.asy-memberships-bar .asy-trust-logo--img:hover .asy-trust-logo-img {
  filter: grayscale(0%);
  opacity: 1;
}

.asy-marquee {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.asy-marquee:hover {
  animation-play-state: paused;
}

.asy-marquee-track {
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 0 32px;
}

.asy-marquee-track .asy-trust-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.asy-marquee-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.3;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.asy-trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.asy-trust-logo {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.5;
  transition: opacity var(--t-base);
  white-space: nowrap;
}

.asy-trust-logo:hover {
  opacity: 0.8;
}

/* Trust-logo images inside marquee */
.asy-trust-logo--img {
  opacity: 0.6;
  display: flex;
  align-items: center;
}

.asy-trust-logo--img:hover {
  opacity: 1;
}

.asy-trust-logo-img {
  height: 32px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter var(--t-base);
}

.asy-trust-logo--img:hover .asy-trust-logo-img {
  filter: grayscale(0%);
}


/* ========================================================
   AWARDS SHOWCASE
   ======================================================== */

.asy-awards-showcase {
  padding: var(--section-gap) 0;
  background: var(--surface);
}

/* --sm modifier: tighter spacing */
.asy-awards-showcase--sm {
  padding: 56px 0 48px;
}

.asy-awards-showcase--sm .asy-section-header {
  margin-bottom: 0;
}

.asy-awards-showcase--sm h2 {
  font-size: 28px;
}

.asy-awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  margin-top: 28px;
}

/* Card container */
.asy-award-card {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: all var(--t-base) var(--ease-out);
}

a.asy-award-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--gold-light);
}

/* Badge / logo area */
.asy-award-card__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  background: var(--surface-warm);
  border: 1px solid var(--border-light);
  overflow: hidden;
  flex-shrink: 0;
  transition: border-color var(--t-base) var(--ease-out);
}

a.asy-award-card:hover .asy-award-card__badge {
  border-color: var(--gold-light);
}

.asy-award-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2px;
  transition: transform var(--t-base) var(--ease-out);
}

a.asy-award-card:hover .asy-award-card__img {
  transform: scale(1.06);
}

.asy-award-card__icon {
  color: var(--gold);
}

/* Text body */
.asy-award-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.asy-award-card__title {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
  margin: 0;
}

.asy-award-card__year {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  background: var(--gold-glow);
  padding: 2px 8px;
  border-radius: 100px;
}

/* External link arrow */
.asy-award-card__arrow {
  color: var(--text-light);
  opacity: 0;
  flex-shrink: 0;
  transition: all var(--t-base) var(--ease-out);
}

a.asy-award-card:hover .asy-award-card__arrow {
  opacity: 1;
}


/* ========================================================
   ABOUT SECTION (HOMEPAGE)
   ======================================================== */

.asy-home-about {
  background: var(--surface);
}

.asy-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.asy-about-content h2 {
  margin-bottom: 20px;
}

.asy-about-content p {
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.asy-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border-light);
}

.asy-about-stat {
  text-align: left;
}

.asy-about-stat__number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.asy-about-stat__label {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
}

/* Visual panel */
.asy-about-visual {
  position: relative;
}

.asy-about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.asy-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About image */
.asy-about-image {
  background-image: url('img/about-bg.png');
  background-size: cover;
  background-position: center;
}

.asy-about-image-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}

.asy-about-image-inner .asy-skyline {
  width: 100%;
  height: auto;
  opacity: 0.2;
  position: absolute;
  bottom: 0;
  left: 0;
}

.asy-about-image-inner .asy-about-overlay-text {
  position: relative;
  z-index: 2;
}

.asy-about-image-inner .asy-about-overlay-text span {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.4);
}

.asy-about-image-inner .asy-about-overlay-text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.1;
  margin-bottom: 8px;
}

/* Noise texture overlay */
.asy-about-image::after {
  content: '';
  position: absolute;
  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;
  border-radius: inherit;
}

/* Placeholder visual when no image (fallback) */
/* Floating accent card */
.asy-about-accent-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-xl);
  max-width: 240px;
}

.asy-about-accent-card__number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 4px;
}

.asy-about-accent-card__text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}


/* ========================================================
   PRACTICE AREAS (HOMEPAGE)
   ======================================================== */

.asy-practices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.asy-practice-card {
  position: relative;
  padding: 36px 28px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all var(--t-base) var(--ease-out);
  cursor: pointer;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.asy-practice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease-out);
}

.asy-practice-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.asy-practice-card:hover::before {
  transform: scaleX(1);
}

.asy-practice-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--gold-glow);
  color: var(--gold-dark);
  margin-bottom: 20px;
  transition: background var(--t-base);
}

.asy-practice-card:hover .asy-practice-card__icon {
  background: var(--gold);
  color: #fff;
}

.asy-practice-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.asy-practice-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.asy-practice-card__arrow {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--t-base) var(--ease-out);
}

.asy-practice-card:hover .asy-practice-card__arrow {
  opacity: 1;
  transform: translateX(0);
}


/* ========================================================
   SECTORS (HOMEPAGE)
   ======================================================== */

.asy-sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.asy-sector-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all var(--t-base) var(--ease-out);
}

.asy-sector-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.asy-sector-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--gold-light);
  flex-shrink: 0;
  transition: background var(--t-base), color var(--t-base);
}

.asy-sector-card:hover .asy-sector-card__icon {
  background: var(--gold);
  color: #fff;
}

.asy-sector-card h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.35;
}

.asy-sector-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}


/* ========================================================
   KEY FIGURES (HOMEPAGE)
   ======================================================== */

.asy-figures {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.asy-figures::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(201, 169, 110, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 100%, rgba(28, 37, 54, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.asy-figures-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  position: relative;
  z-index: 2;
}

.asy-figure-item {
  text-align: center;
  padding: 20px;
}

.asy-figure-number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.asy-figure-label {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
}

.asy-figure-divider {
  display: block;
  width: 32px;
  height: 2px;
  background: rgba(201, 169, 110, 0.3);
  margin: 12px auto 0;
}


/* ========================================================
   WHY CHOOSE US (HOMEPAGE)
   ======================================================== */

.asy-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.asy-why-card {
  padding: 40px 32px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--t-base) var(--ease-out);
  position: relative;
}

.asy-why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transition: transform var(--t-base) var(--ease-out);
}

.asy-why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.asy-why-card:hover::after {
  transform: scaleX(1);
}

.asy-why-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-glow);
  color: var(--gold-dark);
  margin-bottom: 20px;
}

.asy-why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.asy-why-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ========================================================
   TEAM PREVIEW (HOMEPAGE)
   ======================================================== */

.asy-partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.asy-partners-grid--archive {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.asy-partner-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text-dark);
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t-base) var(--ease-out);
}

.asy-partner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
  color: var(--text-dark);
}

.asy-partner-card__portrait {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
}

.asy-partner-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}

.asy-partner-card:hover .asy-partner-card__portrait img {
  transform: scale(1.05);
}

.asy-partner-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.asy-partner-card__placeholder span {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.3;
}

.asy-partner-card__info {
  padding: 20px 24px 24px;
}

.asy-partner-card__info h2,
.asy-partner-card__info h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.asy-partner-card__role {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}

.asy-partner-card__info p {
  font-size: 13px;
  color: var(--text-muted);
}

.asy-partner-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0;
}

.asy-partner-card__languages {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 4px;
}

.asy-partner-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform var(--t-fast), color var(--t-fast);
}

.asy-partner-card:hover .asy-partner-card__link {
  transform: translateX(4px);
  color: var(--gold);
}

.asy-partner-card--detailed .asy-partner-card__info {
  padding: 24px 28px 28px;
}

.asy-partner-card--detailed .asy-partner-card__info h2 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}


/* ========================================================
   INSIGHT CARDS
   ======================================================== */

.asy-home-insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.asy-insight-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t-base) var(--ease-out);
  display: flex;
  flex-direction: column;
}

.asy-insight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.asy-insight-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.asy-insight-card__image {
  overflow: hidden;
  background-image: url('img/insight-bg.png');
  background-size: cover;
  background-position: center;
  min-height: 240px;
  position: relative;
}

.asy-insight-card__image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
}

.asy-insight-card__image-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--gold-light);
  opacity: 0.3;
}

.asy-insight-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}

.asy-insight-card:hover .asy-insight-card__image img {
  transform: scale(1.04);
}

.asy-insight-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
}

.asy-insight-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.asy-insight-card__meta time {
  font-size: 13px;
  color: var(--text-muted);
}

.asy-insight-card__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.asy-insight-card--featured .asy-insight-card__title {
  font-size: 1.8rem;
}

.asy-insight-card__title a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color var(--t-fast);
}

.asy-insight-card__title a:hover {
  color: var(--gold-dark);
}

.asy-insight-card__excerpt {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.asy-insight-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform var(--t-fast), color var(--t-fast);
}

.asy-insight-card:hover .asy-insight-card__read-more {
  transform: translateX(4px);
  color: var(--gold);
}


/* ========================================================
   CTA BLOCK (HOMEPAGE)
   ======================================================== */

.asy-home-cta {
  padding-bottom: 0;
}

.asy-cta-block {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 80px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  overflow: hidden;
}

.asy-cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(201, 169, 110, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.asy-cta-content {
  position: relative;
  z-index: 2;
}

.asy-cta-content h2 {
  font-family: var(--font-serif);
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.asy-cta-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  max-width: 480px;
  line-height: 1.7;
}

.asy-cta-block .asy-btn-primary {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}


/* ========================================================
   SPLIT ABOUT (HOMEPAGE)
   ======================================================== */

.asy-split-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.asy-split-about__visual {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.asy-split-about__stat-block {
  position: relative;
  z-index: 2;
  text-align: center;
}

.asy-split-about__number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.asy-split-about__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  max-width: 280px;
  margin: 0 auto;
}

.asy-split-about__skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0.15;
  z-index: 1;
}

.asy-split-about__content {
  background: var(--surface);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.asy-split-about__content h2 {
  margin-bottom: 20px;
}

.asy-split-about__content p {
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.asy-split-about__mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.asy-split-about__mini-stat span:first-child {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.asy-split-about__mini-stat span:last-child {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
}


/* ========================================================
   PRACTICE AREAS
   ======================================================== */

.asy-practice-list {
  border-top: 1px solid var(--border);
}

.asy-practice-row {
  display: grid;
  grid-template-columns: 48px 32px 1fr 1.2fr 48px;
  align-items: center;
  gap: 0;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--text-dark);
  transition: all var(--t-base) var(--ease-out);
  position: relative;
}

.asy-practice-row::before {
  content: '';
  position: absolute;
  left: -24px;
  right: -24px;
  top: 0;
  bottom: 0;
  background: var(--gold-subtle);
  opacity: 0;
  transition: opacity var(--t-base);
  z-index: -1;
  border-radius: var(--radius);
}

.asy-practice-row:hover::before {
  opacity: 1;
}

.asy-practice-row:hover {
  padding-left: 12px;
}

.asy-practice-row__num {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.asy-practice-row__divider {
  width: 24px;
  height: 1px;
  background: var(--border);
  transition: background var(--t-base), width var(--t-base);
}

.asy-practice-row:hover .asy-practice-row__divider {
  background: var(--gold);
  width: 32px;
}

.asy-practice-row__name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  padding-left: 20px;
  transition: color var(--t-fast);
}

.asy-practice-row:hover .asy-practice-row__name {
  color: var(--navy);
}

.asy-practice-row__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  padding: 0 20px;
}

.asy-practice-row__arrow {
  font-size: 20px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--t-base) var(--ease-out);
  text-align: right;
}

.asy-practice-row:hover .asy-practice-row__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger practice rows */
.asy-reveal.asy-practice-row {
  transition-delay: calc(var(--stagger, 0) * 80ms);
}


/* ========================================================
   PRACTICE AREAS
   ======================================================== */

.asy-practice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.asy-practice-card {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--text-dark);
  transition: all var(--t-base) var(--ease-out);
  position: relative;
}

.asy-practice-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(28, 37, 54, 0.08);
  transform: translateY(-4px);
}

.asy-practice-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-subtle);
  border-radius: var(--radius);
  color: var(--gold);
  margin-bottom: 16px;
  transition: background var(--t-base);
}

.asy-practice-card:hover .asy-practice-card__icon {
  background: var(--gold);
  color: #fff;
}

.asy-practice-card__name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.3;
}

.asy-practice-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 auto;
  padding-bottom: 16px;
}

.asy-practice-card__arrow {
  font-size: 18px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-6px);
  transition: all var(--t-base) var(--ease-out);
}

.asy-practice-card:hover .asy-practice-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

.asy-reveal.asy-practice-card {
  transition-delay: calc(var(--stagger, 0) * 60ms);
}


/* ========================================================
   HOME
   ======================================================== */

.asy-home-contact-section {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.asy-home-contact-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.asy-home-contact-section__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(201, 169, 110, 0.04) 0%, transparent 60%);
}

.asy-home-contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.asy-home-contact__text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #fff;
  margin-bottom: 16px;
}

.asy-home-contact__text > p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 32px;
}

.asy-home-contact__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.asy-home-contact__detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
}

.asy-home-contact__detail svg {
  color: var(--gold);
  flex-shrink: 0;
}

.asy-home-contact__detail a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color var(--t-fast);
}

.asy-home-contact__detail a:hover {
  color: var(--gold);
}

.asy-home-contact__form {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(8px);
}

.asy-home-contact__form .asy-form-group label {
  color: rgba(255, 255, 255, 0.7);
}

.asy-home-contact__form .asy-form-group input,
.asy-home-contact__form .asy-form-group select,
.asy-home-contact__form .asy-form-group textarea {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.asy-home-contact__form .asy-form-group input::placeholder,
.asy-home-contact__form .asy-form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.asy-home-contact__form .asy-form-group input:focus,
.asy-home-contact__form .asy-form-group select:focus,
.asy-home-contact__form .asy-form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.2);
}

.asy-home-contact__form .asy-form-group select option {
  background: var(--navy);
  color: #fff;
}

.asy-home-contact__form .asy-btn-primary {
  width: 100%;
  text-align: center;
  justify-content: center;
}


/* ========================================================
   KEY FIGURES
   ======================================================== */

.asy-figures-cinematic {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.asy-figures-cinematic::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(201, 169, 110, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.asy-figures-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 2;
}

.asy-figure-mega {
  flex: 1;
  text-align: center;
  padding: 20px 32px;
}

.asy-figure-mega__number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.asy-figure-mega__label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.asy-figure-mega__sep {
  width: 1px;
  height: 80px;
  background: rgba(201, 169, 110, 0.2);
  flex-shrink: 0;
}


/* ========================================================
   CTA
   ======================================================== */

.asy-cta-cinematic {
  position: relative;
  background: var(--navy);
  padding: 140px 0;
  overflow: hidden;
  text-align: center;
}

.asy-cta-cinematic__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.asy-cta-cinematic__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(201, 169, 110, 0.08) 0%, transparent 60%);
}

.asy-cta-cinematic__inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.asy-cta-cinematic__inner .asy-section-eyebrow::before {
  background: var(--gold-light);
}

.asy-cta-cinematic h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
}

.asy-cta-cinematic p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}


/* ========================================================
   PAGE HERO (INNER PAGES)
   ======================================================== */

.asy-page-hero {
  padding: 160px 0 72px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.asy-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(201, 169, 110, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201, 169, 110, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.asy-page-hero .asy-section-eyebrow {
  color: var(--gold);
}

.asy-page-hero .asy-section-eyebrow::before {
  background: var(--gold);
}

.asy-page-hero h1 {
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}

.asy-page-hero__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 600px;
  line-height: 1.75;
  position: relative;
}


/* ========================================================
   INSIGHTS HUB (ARCHIVE)
   ======================================================== */

.asy-insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.asy-insights-grid .asy-insight-card--spotlight {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  min-height: 520px;
}

.asy-insights-grid .asy-insight-card--spotlight .asy-insight-card__image {
  min-height: 520px;
}

.asy-insights-grid .asy-insight-card--spotlight .asy-insight-card__body {
  justify-content: flex-start;
  padding: clamp(34px, 3vw, 48px);
}

.asy-insights-grid .asy-insight-card--spotlight .asy-insight-card__excerpt {
  flex: 0;
  font-size: 17px;
  line-height: 1.78;
  margin-bottom: 28px;
  max-width: 94%;
}

.asy-insights-grid .asy-insight-card--spotlight .asy-insight-card__read-more {
  margin-top: auto;
}

.asy-hub-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.asy-hub-filter {
  padding: 8px 22px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--t-fast);
  text-decoration: none;
}

.asy-hub-filter:hover,
.asy-hub-filter--active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.asy-hub-cta {
  text-align: center;
  padding: 64px 24px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  margin-top: 48px;
}

.asy-hub-cta h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.asy-hub-cta p {
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}


/* ========================================================
   ARTICLE PAGE (SINGLE INSIGHT)
   ======================================================== */

.asy-reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 3px;
  background: transparent;
}

.asy-reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 100%);
  transition: width 100ms linear;
}

.asy-breadcrumb {
  padding: 120px 0 0;
}

.asy-breadcrumb nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.asy-breadcrumb a {
  color: var(--text-muted);
  transition: color var(--t-fast);
}

.asy-breadcrumb a:hover {
  color: var(--gold-dark);
}

.asy-breadcrumb .asy-breadcrumb-sep {
  color: var(--border);
}

.asy-breadcrumb .asy-breadcrumb-current {
  color: var(--text-body);
  font-weight: 500;
}

.asy-article-header {
  padding: 40px 0 48px;
  max-width: 760px;
}

.asy-article-header .asy-lang-badge {
  margin-bottom: 16px;
}

.asy-article-header h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin-bottom: 24px;
  line-height: 1.12;
}

.asy-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  align-items: center;
  font-size: 14px;
  color: var(--text-muted);
}

.asy-article-meta time {
  font-weight: 500;
}

.asy-article-meta .asy-meta-sep {
  color: var(--border);
}

.asy-article-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.asy-article-side {
  order: -1;
}

.asy-article-content {
  background: var(--surface);
  border: 1px solid var(--border-light);
  padding: 56px 64px;
  border-radius: var(--radius-lg);
  max-width: none;
}

.asy-article-content > p:first-of-type,
.asy-article-content > .asy-prose > p:first-of-type {
  font-size: 1.15em;
  color: var(--text-dark);
  line-height: 1.8;
}

.asy-article-side {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Author panel */
.asy-article-author-panel {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.asy-article-author-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
}

.asy-article-author-panel h2 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.asy-author-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.asy-author-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}

.asy-author-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.asy-author-item a {
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  transition: color var(--t-fast);
}

.asy-author-item a:hover {
  color: var(--gold-dark);
}

/* Practice ribbon */
.asy-practice-ribbon {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  position: relative;
  overflow: hidden;
}

.asy-practice-ribbon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
}

.asy-practice-ribbon h2 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin: 0 0 12px;
}

.asy-practice-ribbon ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.asy-practice-ribbon li {
  font-size: 13px;
  font-weight: 500;
  padding: 4px 14px;
  background: var(--gold-glow);
  color: var(--gold-dark);
  border-radius: 999px;
}

/* Article CTA */
.asy-article-cta {
  text-align: center;
  padding: 72px 24px;
  margin-top: 64px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
}

.asy-article-cta h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.asy-article-cta p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.asy-related-insights {
  margin-top: 64px;
}

.asy-related-insights h2 {
  font-size: 1.6rem;
  margin-bottom: 28px;
}

.asy-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}


/* ========================================================
   PARTNER PROFILE (SINGLE PARTNER)
   ======================================================== */

.asy-partner-hero {
  padding: 160px 0 72px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.asy-partner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 70%, rgba(201, 169, 110, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(212, 149, 106, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.asy-partner-hero-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
  position: relative;
}

.asy-partner-portrait {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(201, 169, 110, 0.15);
}

.asy-partner-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.asy-partner-portrait-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
}

.asy-partner-portrait-placeholder span {
  font-family: var(--font-serif);
  font-size: 6rem;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.25;
}

.asy-partner-header-content h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 16px;
}

.asy-partner-languages {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}

.asy-partner-languages strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.asy-partner-focus-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.asy-partner-hero .asy-btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.asy-partner-hero .asy-btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* Partner body */
.asy-partner-body {
  padding: 80px 0;
}

.asy-partner-body-inner {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(260px, 1fr);
  gap: 56px;
  align-items: start;
}

.asy-partner-bio {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: sticky;
  top: 80px;
  align-self: start;
}

.asy-partner-bio h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.asy-partner-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.asy-perspective-snippet {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.asy-perspective-snippet::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
}

.asy-perspective-snippet h2 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin: 0 0 12px;
}

.asy-perspective-snippet p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.6;
}

.asy-partner-focus-section {
  margin-bottom: 28px;
}

.asy-partner-focus-section h2 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.asy-partner-focus-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.asy-partner-focus-section li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 15px;
  color: var(--text-body);
}

.asy-partner-focus-section li:last-child {
  border-bottom: none;
}

.asy-partner-insights {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.asy-partner-insights h2 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.asy-partner-insights-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.asy-partner-insights-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

.asy-partner-insights-list li:last-child {
  border-bottom: none;
}

.asy-partner-insights-list a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  display: block;
  transition: color var(--t-fast);
}

.asy-partner-insights-list a:hover {
  color: var(--gold-dark);
}

.asy-partner-insights-list .asy-lang-badge {
  font-size: 9px;
  padding: 2px 7px;
  margin-left: 6px;
  vertical-align: middle;
}

/* Large decorative initial behind partner hero */
.asy-partner-hero__initial {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: clamp(12rem, 22vw, 20rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 169, 110, 0.08);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

/* Gold accent frame around portrait */
.asy-partner-portrait {
  position: relative;
}

.asy-partner-portrait__frame {
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: calc(var(--radius-lg) + 6px);
  pointer-events: none;
}

/* Chip gold variant */
.asy-chip--gold {
  background: rgba(201, 169, 110, 0.12);
  color: var(--gold-light);
  border-color: rgba(201, 169, 110, 0.2);
}

/* Partner hero actions */
.asy-partner-hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

/* Partner quote section */
.asy-partner-quote {
  background: var(--surface);
  border-bottom: 1px solid var(--border-light);
  padding: 48px 0;
}

.asy-partner-quote blockquote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.asy-partner-quote__mark {
  display: block;
  margin: 0 auto 16px;
  color: var(--gold);
  opacity: 0.3;
}

.asy-partner-quote blockquote p {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.7;
}

/* Partner bio heading */
.asy-partner-bio__heading {
  font-family: var(--font-sans);
  font-size: 12px !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

/* Sidebar card style */
.asy-partner-sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.asy-partner-sidebar-card h3 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.asy-partner-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.asy-partner-sidebar-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  color: var(--text-body);
}

.asy-partner-sidebar-list li:last-child { border-bottom: none; }

.asy-partner-sidebar-list li svg {
  color: var(--gold);
  flex-shrink: 0;
}

.asy-flag-icon {
  display: inline-block;
  vertical-align: middle;
  border-radius: 2px;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.asy-chip .asy-flag-icon {
  margin-right: 2px;
  width: 16px;
  height: 12px;
}

.asy-partner-sidebar-empty {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

.asy-lang-badge--sm {
  font-size: 10px;
  padding: 1px 6px;
}

.asy-partner-cta {
  margin-top: 56px;
  padding: 48px;
  background: var(--navy);
  border-radius: var(--radius-lg);
}

.asy-partner-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.asy-partner-cta h2 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 8px;
}

.asy-partner-cta p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Breadcrumb for partner and article pages */
.asy-breadcrumb {
  margin-bottom: 24px;
  font-size: 13px;
}

.asy-breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.asy-breadcrumb a:hover { color: var(--gold); }

.asy-breadcrumb-sep {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.25);
}

.asy-breadcrumb-current {
  color: rgba(255, 255, 255, 0.7);
}

/* Legacy partner CTA (replaced above) */
.asy-partner-cta--legacy {
  text-align: center;
  padding: 64px 24px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
}

.asy-partner-cta h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.asy-partner-cta p {
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}


/* ========================================================
   EMPTY STATE
   ======================================================== */

.asy-empty-state {
  text-align: center;
  padding: 80px 24px;
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
}

.asy-empty-state h3 {
  margin-bottom: 12px;
}

.asy-empty-state p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}


/* ========================================================
   FOOTER
   ======================================================== */

.asy-site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.65);
  padding: 80px 0 40px;
  position: relative;
}

.asy-site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.asy-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}

.asy-footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.75;
  max-width: 280px;
}

.asy-footer-brand .asy-logo-text {
  color: #fff;
}

.asy-footer-brand .asy-logo-suffix {
  color: var(--gold);
}

.asy-footer-col h3 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 20px;
}

.asy-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.asy-footer-col li {
  margin-bottom: 10px;
}

.asy-footer-col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.35;
  text-decoration: none;
  transition: color var(--t-fast);
}

.asy-footer-col a:hover {
  color: var(--gold-light);
}

.asy-footer-address {
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.7;
}

.asy-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold) !important;
  transition: color var(--t-fast);
}

.asy-footer-cta:hover {
  color: var(--gold-light) !important;
}

.asy-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.asy-footer-lang {
  display: flex;
  gap: 16px;
}

.asy-footer-lang span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  transition: color var(--t-fast);
  cursor: pointer;
}

.asy-footer-lang span:hover {
  color: var(--gold);
}

/* Footer accent ornament */
.asy-footer-accent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 24px;
  margin-bottom: 0;
}

.asy-footer-accent__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.25;
}

.asy-footer-accent__diamond {
  width: 10px;
  height: 10px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  opacity: 0.4;
  flex-shrink: 0;
}

/* Footer statement */
.asy-footer-statement {
  padding: 48px 0 40px;
  text-align: center;
}

.asy-footer-statement__text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
  letter-spacing: 0.01em;
}


/* ========================================================
   SCROLL REVEAL ANIMATIONS (Enhanced)
   ======================================================== */

.asy-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.asy-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.asy-reveal--delay-1 { transition-delay: 120ms; }
.asy-reveal--delay-2 { transition-delay: 240ms; }
.asy-reveal--delay-3 { transition-delay: 360ms; }
.asy-reveal--delay-4 { transition-delay: 480ms; }

/* Staggered cards */
.asy-reveal.asy-practice-card { transition-delay: calc(var(--stagger, 0) * 100ms); }

/* Fade in from left */
.asy-reveal--left {
  transform: translateX(-40px) translateY(0);
}

.asy-reveal--left.visible {
  transform: translateX(0) translateY(0);
}

/* Fade in from right */
.asy-reveal--right {
  transform: translateX(40px) translateY(0);
}

.asy-reveal--right.visible {
  transform: translateX(0) translateY(0);
}

/* Scale up */
.asy-reveal--scale {
  transform: scale(0.92) translateY(0);
}

.asy-reveal--scale.visible {
  transform: scale(1) translateY(0);
}

/* Blur reveal */
.asy-reveal--blur {
  filter: blur(8px);
  transform: translateY(20px);
}

.asy-reveal--blur.visible {
  filter: blur(0);
  transform: translateY(0);
}


/* ========================================================
   3D TILT CARDS
   ======================================================== */

.asy-tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.asy-tilt-card .asy-practice-card__icon,
.asy-tilt-card h3,
.asy-tilt-card p {
  transform: translateZ(20px);
}

.asy-tilt-card .asy-practice-card__arrow {
  transform: translateZ(30px) translateX(-8px);
}

.asy-tilt-card:hover .asy-practice-card__arrow {
  transform: translateZ(30px) translateX(0);
}


/* (Magnetic buttons removed */


/* ========================================================
   GRADIENT BORDER GLOW ON HOVER
   ======================================================== */

.asy-practice-card {
  position: relative;
}

.asy-practice-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(201,169,110,0) 0%, rgba(201,169,110,0.3) 50%, rgba(201,169,110,0) 100%);
  background-size: 300% 300%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s;
}

.asy-practice-card:hover::after {
  opacity: 1;
  animation: gradientBorderShift 3s ease infinite;
}

@keyframes gradientBorderShift {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}


/* ========================================================
   ENHANCED SECTION TRANSITIONS
   ======================================================== */

/* Section heading text reveal */
.asy-section-header h2 {
  overflow: hidden;
}

/* Parallax-ready elements */
[data-parallax] {
  will-change: transform;
  transition: transform 0.1s linear;
}


/* ========================================================
   ENHANCED CTA WITH ANIMATED GRADIENT
   ======================================================== */

.asy-cta-block {
  background: var(--navy);
  background-image:
    radial-gradient(ellipse at 0% 50%, rgba(201,169,110,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(201,169,110,0.06) 0%, transparent 50%);
  background-size: cover, 200% 200%, 200% 200%;
  background-position: center;
}

@keyframes ctaGradientPulse {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}


/* ========================================================
   ENHANCED FIGURE COUNTER SECTION
   ======================================================== */

.asy-figure-number {
  position: relative;
}

.asy-figure-number::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 40px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.asy-figure-item.visible .asy-figure-number::after {
  transform: translateX(-50%) scaleX(1);
}


/* ========================================================
   WHY CARD
   ======================================================== */

.asy-why-card__icon {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s;
}

.asy-why-card:hover .asy-why-card__icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(201, 169, 110, 0.2);
}


/* ========================================================
   INSIGHT CARD
   ======================================================== */

.asy-insight-card__image {
  overflow: hidden;
}

.asy-insight-card:hover .asy-insight-card__image img {
  transform: scale(1.06);
}


/* ========================================================
   PARTNER CARD
   ======================================================== */

.asy-partner-card__portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,42,40,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}

.asy-partner-card:hover .asy-partner-card__portrait::after {
  opacity: 1;
}


/* ========================================================
   GENERIC PAGE CONTENT
   ======================================================== */

.asy-page-content {
  padding-top: 40px;
}

.asy-page-content h1 {
  margin-bottom: 32px;
}

.asy-default-article {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 20px;
  transition: all var(--t-base) var(--ease-out);
}

.asy-default-article:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.asy-default-article h2 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.asy-default-article h2 a {
  color: var(--text-dark);
  text-decoration: none;
}

.asy-default-article h2 a:hover {
  color: var(--gold-dark);
}


/* ========================================================
   WORDPRESS DEFAULTS
   ======================================================== */

.wp-block-image { margin: 2em 0; }
.wp-block-image img { border-radius: var(--radius); }

.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.nav-links a,
.nav-links span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--text-body);
  text-decoration: none;
  transition: all var(--t-fast);
}

.nav-links a:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.nav-links .current {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}


/* ========================================================
   LOGO IMAGE SUPPORT
   ======================================================== */

/* Original logo stays in flow, sizes the container */
.asy-logo-img {
  height: 48px;
  width: auto;
  max-width: none;
  display: block;
  transition: opacity var(--t-base) var(--ease-out), height var(--t-base) var(--ease-out);
}

.asy-logo:hover .asy-logo-img {
  opacity: 0.85;
}

/* White logo layered on top of original */
.asy-logo-white {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

/* Original always in flow (visible or invisible) */
.asy-logo-original {
  opacity: 1;
}

/* Transparent header: show white, make original invisible (but still in flow) */
.asy-site-header--transparent .asy-logo-white {
  opacity: 1;
}

.asy-site-header--transparent .asy-logo-original {
  opacity: 0;
}

/* Scrolled: crossfade back to original */
.asy-site-header--transparent.scrolled .asy-logo-white {
  opacity: 0;
}

.asy-site-header--transparent.scrolled .asy-logo-original {
  opacity: 1;
}

.asy-logo-img--footer {
  height: 36px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}



/* ========================================================
   RICH PAGE HERO
   ======================================================== */

.asy-page-hero--rich {
  padding: 180px 0 80px;
}

.asy-page-hero__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.asy-page-hero__line {
  position: absolute;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(201, 169, 110, 0.15), transparent);
}

.asy-page-hero__line--1 {
  left: 15%;
  top: -20%;
  height: 140%;
  animation: heroLineFloat 18s ease-in-out infinite;
}

.asy-page-hero__line--2 {
  right: 20%;
  top: -10%;
  height: 120%;
  animation: heroLineFloat 22s ease-in-out infinite reverse;
  opacity: 0.5;
}

.asy-page-hero__geo {
  position: absolute;
  right: 8%;
  top: 20%;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(201, 169, 110, 0.08);
  transform: rotate(45deg);
  animation: heroDiamondFloat 20s ease-in-out infinite;
}

.asy-partner-hero__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}


/* ========================================================
   ARTICLE HERO
   ======================================================== */

.asy-article-hero {
  position: relative;
  padding: 160px 0 60px;
  background: var(--navy);
  overflow: hidden;
}

.asy-article-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(201, 169, 110, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 70%, rgba(201, 169, 110, 0.03) 0%, transparent 60%);
}

.asy-article-hero--has-image {
  padding: 200px 0 80px;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
}

.asy-article-hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.asy-article-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.5) contrast(1.05) brightness(0.9);
}

/* Warm radial light on article hero */
.asy-article-hero__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(201, 169, 110, 0.12) 0%, transparent 55%);
  z-index: 1;
}

.asy-article-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(28,37,54,0.85) 0%,
      rgba(28,37,54,0.55) 35%,
      rgba(28,37,54,0.88) 100%);
  z-index: 2;
}

.asy-article-hero .asy-container {
  position: relative;
  z-index: 5;
}

.asy-article-hero__inner {
  max-width: 760px;
}

.asy-article-hero .asy-breadcrumb {
  padding: 0 0 20px;
}

.asy-article-hero .asy-breadcrumb a,
.asy-article-hero .asy-breadcrumb .asy-breadcrumb-sep {
  color: rgba(255, 255, 255, 0.5);
}

.asy-article-hero .asy-breadcrumb a:hover {
  color: var(--gold-light);
}

.asy-article-hero .asy-breadcrumb .asy-breadcrumb-current {
  color: rgba(255, 255, 255, 0.7);
}

.asy-article-hero .asy-lang-badge {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.asy-article-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.12;
}

.asy-article-hero .asy-article-meta {
  color: rgba(255, 255, 255, 0.5);
}

.asy-article-hero .asy-article-meta time {
  color: rgba(255, 255, 255, 0.7);
}

.asy-article-hero .asy-article-meta .asy-meta-sep {
  color: rgba(255, 255, 255, 0.2);
}


/* Article hero badges row */
.asy-article-hero__badges {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  align-items: center;
}

.asy-article-hero__cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  padding: 3px 10px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: var(--radius-sm);
}

/* Article hero excerpt */
.asy-article-hero__excerpt {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 680px;
}

/* Article meta author links */
.asy-article-meta__authors a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.asy-article-meta__authors a:hover { color: #fff; }

/* Article author card at bottom of content */
.asy-article-author-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  margin-top: 48px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
}

.asy-article-author-card__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.asy-article-author-card__info h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 4px 0;
}

.asy-article-author-card__info h3 a {
  color: var(--navy);
  text-decoration: none;
}

.asy-article-author-card__info h3 a:hover { color: var(--gold); }

.asy-article-author-card__info p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Article sidebar cards */
.asy-article-side-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}

.asy-article-side-card h3 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.asy-article-side-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.asy-article-side-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  color: var(--text-body);
}

.asy-article-side-card ul li:last-child { border-bottom: none; }

.asy-article-side-card ul li svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* Sidebar CTA card */
.asy-article-side-card--cta {
  background: var(--navy);
  border-color: var(--navy);
}

.asy-article-side-card--cta h3 {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: none;
  font-family: var(--font-serif);
  font-weight: 600;
}

.asy-article-side-card--cta p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 16px;
}

.asy-article-side-card--cta .asy-btn-primary {
  display: block;
  text-align: center;
  font-size: 14px;
}

/* Sidebar author avatars */
.asy-article-side-authors li {
  display: flex !important;
  align-items: center;
  gap: 12px !important;
}

.asy-article-side-author__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}

.asy-article-side-authors a {
  color: var(--text-body);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.asy-article-side-authors a:hover { color: var(--gold); }


/* ========================================================
   ENHANCED PARTNER PLACEHOLDER
   ======================================================== */

.asy-partner-card__placeholder {
  position: relative;
  overflow: hidden;
}

.asy-partner-card__placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(201, 169, 110, 0.08) 0%, transparent 60%);
}

.asy-partner-card__placeholder::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.15), transparent);
}

.asy-partner-portrait-placeholder {
  position: relative;
  overflow: hidden;
}

.asy-partner-portrait-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(201, 169, 110, 0.1) 0%, transparent 60%);
}


/* ========================================================
   ENHANCED HERO FALLBACK (no-media)
   ======================================================== */

.asy-hero--no-media {
  background-image: none;
  background: var(--navy-deep);
}

.asy-hero--no-media .asy-hero-bg::before {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(28, 37, 54, 0.9) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 169, 110, 0.10) 0%, transparent 40%),
    radial-gradient(ellipse at 40% 80%, rgba(201, 169, 110, 0.06) 0%, transparent 40%),
    radial-gradient(ellipse at 70% 60%, rgba(201, 169, 110, 0.04) 0%, transparent 50%);
}

/* Noise texture for all dark heroes */
.asy-hero::after,
.asy-page-hero--rich::after,
.asy-article-hero::after {
  content: '';
  position: absolute;
  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.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 4;
}

.asy-hero .asy-hero-inner,
.asy-hero .asy-hero-stats {
  position: relative;
  z-index: 10;
}


/* ========================================================
   SECONDARY BUTTON
   ======================================================== */

.asy-btn-secondary {
  border-color: rgba(201, 169, 110, 0.4);
}


/* ========================================================
   HERO MEDIA
   ======================================================== */

.asy-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.asy-hero-media img,
.asy-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.6) contrast(1.05) brightness(0.95);
}

/* Warm golden light layer */
.asy-hero-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(201, 169, 110, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(212, 149, 106, 0.12) 0%, transparent 50%);
  z-index: 1;
}

/* Strong readable gradient */
.asy-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(28,37,54,0.7) 0%,
      rgba(28,37,54,0.4) 30%,
      rgba(28,37,54,0.45) 55%,
      rgba(28,37,54,0.88) 100%);
  z-index: 2;
}

/* Subtle grain */
.asy-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.025;
  pointer-events: none;
  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)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}


/* ========================================================
   SPLIT ABOUT
   ======================================================== */

.asy-split-about__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.45;
  filter: saturate(0.5) contrast(1.05);
}

.asy-split-about__visual {
  position: relative;
}

.asy-split-about__stat-block {
  position: relative;
  z-index: 2;
}


/* ========================================================
   CTA CINEMATIC
   ======================================================== */

.asy-cta-cinematic__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
  filter: saturate(0.4) contrast(1.05) brightness(0.95);
}

/* Duotone gold tint for CTA */
.asy-cta-cinematic__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.15) 0%, transparent 100%);
  mix-blend-mode: overlay;
  z-index: 1;
}


/* ========================================================
   PAGE HERO
   ======================================================== */

.asy-page-hero--about {
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 72px;
}

.asy-page-hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.asy-page-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(0.5) contrast(1.05) brightness(0.9);
}

/* Warm light layer for page hero photos */
.asy-page-hero__photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 40% 50%, rgba(201, 169, 110, 0.15) 0%, transparent 55%);
  z-index: 1;
}

.asy-page-hero__photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(28,37,54,0.85) 0%,
      rgba(28,37,54,0.6) 30%,
      rgba(28,37,54,0.4) 50%,
      rgba(28,37,54,0.85) 100%);
  z-index: 2;
}

/* Film grain on page heroes */
.asy-page-hero--about::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0.03;
  pointer-events: none;
  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)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

.asy-page-hero--about .asy-container {
  position: relative;
  z-index: 5;
}

.asy-page-hero--compact {
  padding: 160px 0 64px;
}


/* ========================================================
   ABOUT PAGE
   ======================================================== */

.asy-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.asy-about-content h2 {
  margin-bottom: 20px;
}

.asy-about-content p {
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.asy-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.asy-about-stat__number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.asy-about-stat__label {
  font-size: 13px;
  color: var(--text-muted);
}

.asy-about-visual {
  position: relative;
}

.asy-about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.asy-about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.asy-about-accent-card {
  position: absolute;
  bottom: -32px;
  left: -32px;
  background: var(--navy);
  color: #fff;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: 2;
}

.asy-about-accent-card__number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.asy-about-accent-card__text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 160px;
  display: block;
  line-height: 1.5;
}


/* Values grid (reuse why-card styles) */
.asy-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.asy-value-card {
  padding: 40px 32px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--t-base) var(--ease-out);
  position: relative;
}

.asy-value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transition: transform var(--t-base) var(--ease-out);
}

.asy-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.asy-value-card:hover::after {
  transform: scaleX(1);
}

.asy-value-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-glow);
  color: var(--gold-dark);
  margin-bottom: 20px;
}

.asy-value-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.asy-value-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}


/* About grid reverse (visual on left, content on right) */
.asy-about-grid--reverse {
  direction: rtl;
}

.asy-about-grid--reverse > * {
  direction: ltr;
}

/* Memberships grid */
.asy-memberships-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.asy-membership-card {
  padding: 36px 32px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all var(--t-base) var(--ease-out);
  position: relative;
}

.asy-membership-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 32px;
  right: 32px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--t-base) var(--ease-out);
}

.asy-membership-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.asy-membership-card:hover::after {
  transform: scaleX(1);
}

.asy-membership-card__icon {
  width: 48px;
  height: 48px;
  background: var(--gold-glow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold-dark);
}

.asy-membership-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.asy-membership-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}


/* Photo break */
.asy-photo-break {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.asy-photo-break > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.asy-photo-break__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(28,37,54,0.6) 0%,
      rgba(28,37,54,0.75) 100%);
  display: flex;
  align-items: center;
}

.asy-photo-break__quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #fff;
  font-style: italic;
  max-width: 700px;
  line-height: 1.4;
  margin: 0;
}


/* ========================================================
   CONTACT PAGE
   ======================================================== */

.asy-contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}

.asy-contact-card {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  transition: all var(--t-base);
}

.asy-contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.asy-contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--gold-glow);
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.asy-contact-card h3 {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.asy-contact-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.asy-contact-card a {
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--t-fast);
}

.asy-contact-card a:hover {
  color: var(--gold);
}

.asy-contact-languages {
  margin-top: 24px;
}

.asy-contact-languages h3 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.asy-contact-languages__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.asy-contact-form {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.asy-contact-form h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.asy-contact-form__intro {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.asy-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.asy-form-group {
  margin-bottom: 20px;
}

.asy-form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.asy-form-group input,
.asy-form-group select,
.asy-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-dark);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  line-height: 1.5;
}

.asy-form-group input:focus,
.asy-form-group select:focus,
.asy-form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.12);
}

.asy-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.asy-form .asy-btn-primary {
  width: 100%;
  text-align: center;
  justify-content: center;
}


/* Contact map section */
.asy-contact-map {
  position: relative;
  height: 360px;
  overflow: hidden;
}

.asy-contact-map > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.asy-contact-map__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(28,37,54,0.4) 0%,
      rgba(28,37,54,0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.asy-contact-map__pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: pinBounce 2s ease-in-out infinite;
}

.asy-contact-map__pin span {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: rgba(28,37,54,0.7);
  padding: 6px 16px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

@keyframes pinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}


/* ========================================================
   RESPONSIVE
   ======================================================== */

/* -- Practice Area Detail -- */
.asy-practice-detail {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0 40px;
  padding: 56px 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
}
.asy-practice-detail:last-child { border-bottom: none; }

.asy-practice-detail--alt {
  direction: ltr; /* keep text LTR */
}

.asy-practice-detail__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), rgba(201, 169, 110, 0.04));
  color: var(--gold);
  flex-shrink: 0;
  border: 1px solid rgba(201, 169, 110, 0.15);
}

.asy-practice-detail__content h2 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.asy-practice-detail__content p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 680px;
}

.asy-practice-detail__points {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
}

.asy-practice-detail__points li {
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
}

.asy-practice-detail__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}

/* -- 404 Page -- */
.asy-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: var(--bg-cream);
  position: relative;
  overflow: hidden;
}

.asy-404__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.asy-404__number {
  font-family: var(--font-heading);
  font-size: clamp(8rem, 20vw, 16rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px rgba(201, 169, 110, 0.15);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}

.asy-404__inner h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.asy-404__inner p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.asy-404__links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.asy-404__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy);
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid rgba(201, 169, 110, 0.15);
  text-decoration: none;
  transition: all 0.3s ease;
}

.asy-404__link:hover {
  background: rgba(201, 169, 110, 0.15);
  border-color: var(--gold);
  color: var(--gold-dark);
}

/* -- Search Results -- */
.asy-search-form-hero {
  max-width: 640px;
  margin: 24px auto 0;
  position: relative;
}

.asy-search-form-hero input[type="search"] {
  width: 100%;
  padding: 16px 56px 16px 24px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1.05rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
  backdrop-filter: blur(8px);
}

.asy-search-form-hero input[type="search"]::placeholder {
  color: rgba(255,255,255,0.5);
}

.asy-search-form-hero input[type="search"]:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}

.asy-search-form-hero button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--gold);
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}

.asy-search-form-hero button:hover {
  background: var(--gold-dark);
}

.asy-search-results-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.asy-search-result {
  padding: 32px 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.asy-search-result:first-child { padding-top: 0; }
.asy-search-result:last-child { border-bottom: none; }

.asy-search-result__type {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 8px;
}

.asy-search-result h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.asy-search-result h2 a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.3s ease;
}

.asy-search-result h2 a:hover {
  color: var(--gold);
}

.asy-search-result__excerpt {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 720px;
}

.asy-search-result__meta {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.asy-search-count {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
}

.asy-search-count strong {
  color: var(--navy);
}

.asy-search-empty {
  text-align: center;
  padding: 64px 24px;
}

.asy-search-empty__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  color: rgba(201, 169, 110, 0.4);
}

.asy-search-empty h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.asy-search-empty p {
  color: var(--text-secondary);
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  :root {
    --section-gap: 80px;
  }

  .asy-practice-detail {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .asy-practice-detail__points { grid-template-columns: 1fr; }

  /* Hero */
  .asy-hero-inner {
    padding: 160px 24px 180px;
  }

  .asy-hero-stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .asy-hero-stat:nth-child(2) {
    border-right: none;
  }

  .asy-hero-scroll { display: none; }

  .asy-hero-geo--diamond,
  .asy-hero-geo--diamond-2,
  .asy-hero-geo--circle {
    display: none;
  }

  .asy-hero-particle { display: none; }
  .asy-cursor-glow { display: none; }
  .asy-page-hero__geo { display: none; }

  .asy-page-hero--rich { padding: 140px 0 60px; }
  .asy-page-hero--about { min-height: auto; padding: 140px 0 60px; }
  .asy-article-hero { padding: 130px 0 48px; }
  .asy-article-hero--has-image { padding: 150px 0 60px; min-height: auto; }
  .asy-tilt-card { transform: none !important; }

  /* About page */
  .asy-about-grid { grid-template-columns: 1fr; gap: 48px; }
  .asy-about-grid--reverse { direction: ltr; }
  .asy-about-image img { height: 360px; }
  .asy-about-accent-card { position: relative; bottom: auto; left: auto; margin-top: -24px; display: inline-block; }
  .asy-values-grid { grid-template-columns: 1fr; }
  .asy-memberships-grid { grid-template-columns: 1fr; }
  .asy-awards-grid { grid-template-columns: 1fr; gap: 10px; }
  .asy-award-card { padding: 10px 14px; }
  .asy-photo-break { height: 300px; }

  /* Contact page */
  .asy-contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .asy-contact-form { padding: 32px; }

  /* Split about */
  .asy-split-about {
    grid-template-columns: 1fr;
  }

  .asy-split-about__visual {
    padding: 60px 40px;
    min-height: 320px;
  }

  .asy-split-about__content {
    padding: 60px 40px;
  }

  /* Practice list */
  .asy-practice-row {
    grid-template-columns: 36px 20px 1fr 40px;
  }

  .asy-practice-row__desc {
    display: none;
  }

  /* Practice grid */
  .asy-practice-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .asy-practice-card__desc {
    font-size: 12px;
  }

  /* Home contact */
  .asy-home-contact {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Figures */
  .asy-figures-strip {
    flex-wrap: wrap;
  }

  .asy-figure-mega__sep {
    display: none;
  }

  .asy-figure-mega {
    flex: 0 0 50%;
    padding: 24px 16px;
  }

  /* Sectors */
  .asy-sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Figures */
  .asy-figures-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  /* Why */
  .asy-why-grid {
    grid-template-columns: 1fr;
  }

  /* Insights */
  .asy-home-insights-grid,
  .asy-insights-grid {
    grid-template-columns: 1fr;
  }

  .asy-insight-card--featured,
  .asy-insights-grid .asy-insight-card--spotlight {
    grid-column: auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .asy-insights-grid .asy-insight-card--spotlight .asy-insight-card__image {
    min-height: 280px;
  }

  .asy-insights-grid .asy-insight-card--spotlight .asy-insight-card__excerpt {
    font-size: 15px;
    line-height: 1.65;
    max-width: none;
  }

  /* Partners */
  .asy-partners-grid,
  .asy-partners-grid--archive {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Article */
  .asy-article-layout {
    grid-template-columns: 1fr;
  }

  .asy-article-side {
    position: static;
    order: 1;
  }

  .asy-article-content {
    padding: 32px;
    order: 0;
  }

  /* CTA */
  .asy-cta-block {
    flex-direction: column;
    text-align: center;
    padding: 48px 32px;
  }

  .asy-cta-content p {
    margin: 0 auto 24px;
  }

  /* Footer */
  .asy-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  /* Partner profile */
  .asy-partner-hero-inner {
    grid-template-columns: 220px 1fr;
    gap: 36px;
  }

  .asy-partner-body-inner {
    grid-template-columns: 1fr;
  }

  .asy-partner-bio {
    position: static;
  }

  .asy-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Mobile header: ensure logo left, hamburger right, nothing overflows */
  .asy-header-inner {
    padding: 0 16px !important;
    gap: 12px !important;
    flex-wrap: nowrap !important;
    overflow: hidden;
  }

  .asy-logo {
    flex-shrink: 0 !important;
    min-width: 0;
  }

  .asy-logo-img {
    max-height: 32px !important;
    width: auto !important;
    max-width: 160px !important;
  }

  .asy-header-lang {
    margin-left: auto !important;
    flex-shrink: 0 !important;
  }

  .asy-menu-toggle {
    flex-shrink: 0 !important;
  }

  /* Mobile nav */
  .asy-menu-toggle {
    display: flex;
    flex-shrink: 0;
  }

  .asy-header-cta {
    display: none;
  }

  .asy-main-nav {
    position: fixed !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: #141D2B !important;
    padding: 120px 40px 60px !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 105 !important;
    flex: none !important;
    display: none !important;
  }

  .asy-main-nav.open {
    display: flex !important;
  }

  .asy-nav-list {
    flex-direction: column;
    gap: 0;
    align-items: center;
    width: 100%;
    max-width: 280px;
  }

  .asy-nav-list a,
  .asy-nav-list li a {
    display: block;
    padding: 20px 0;
    font-size: 22px;
    font-family: var(--font-serif);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    letter-spacing: 0.02em;
    transition: color var(--t-fast);
  }

  .asy-nav-list li:last-child a {
    border-bottom: none;
  }

  .asy-nav-list a:hover,
  .asy-nav-list li a:hover {
    color: var(--gold) !important;
  }

  .asy-nav-list a::after,
  .asy-nav-list li a::after {
    display: none;
  }

  .asy-mobile-nav-cta {
    display: block;
    margin-top: 32px;
    text-align: center;
  }

  .asy-mobile-nav-cta a {
    display: inline-block;
    padding: 14px 40px;
    background: var(--gold);
    color: var(--navy-deep, #141D2B) !important;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: var(--radius);
    transition: background var(--t-fast);
  }

  .asy-mobile-nav-cta a:hover {
    background: var(--gold-light);
  }
}

@media (max-width: 640px) {
  :root {
    --section-gap: 56px;
  }

  .asy-practice-detail { padding: 32px 0; }
  .asy-practice-detail__content h2 { font-size: 1.35rem; }
  .asy-practice-detail__icon { width: 56px; height: 56px; border-radius: 12px; }
  .asy-404__number { -webkit-text-stroke-width: 1px; }
  .asy-404__links { flex-direction: column; align-items: center; }
  .asy-search-form-hero input[type="search"] { padding: 14px 48px 14px 16px; font-size: 0.95rem; }

  .asy-hero-inner {
    padding: 140px 24px 160px;
  }

  .asy-hero-stats-inner {
    grid-template-columns: 1fr 1fr;
  }

  .asy-hero-stat {
    padding: 20px 16px;
  }

  .asy-stat-number {
    font-size: 2rem;
  }

  .asy-about-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .asy-awards-showcase--sm { padding: 36px 0 32px; }
  .asy-awards-grid { grid-template-columns: 1fr; gap: 8px; }
  .asy-award-card { padding: 10px 12px; }
  .asy-award-card__badge { width: 64px; height: 64px; }
  .asy-award-card__title { font-size: 12px; }

  .asy-practice-row {
    grid-template-columns: 28px 1fr 32px;
    gap: 8px;
  }

  .asy-practice-row__divider { display: none; }

  /* Practice grid mobile */
  .asy-practice-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .asy-practice-card {
    padding: 20px 16px;
  }

  .asy-practice-card__desc {
    display: none;
  }

  .asy-practice-card__arrow {
    display: none;
  }

  /* Home contact mobile */
  .asy-home-contact__form {
    padding: 24px;
  }

  .asy-split-about__mini-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .asy-split-about__content {
    padding: 40px 24px;
  }

  .asy-split-about__visual {
    padding: 48px 24px;
  }

  .asy-sectors-grid {
    grid-template-columns: 1fr;
  }

  .asy-figures-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .asy-partners-grid,
  .asy-partners-grid--archive {
    grid-template-columns: 1fr;
  }

  .asy-footer-grid {
    grid-template-columns: 1fr;
  }

  .asy-footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .asy-partner-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .asy-partner-portrait {
    max-width: 240px;
    margin: 0 auto;
  }

  .asy-partner-focus-chips {
    justify-content: center;
  }

  .asy-article-content {
    padding: 24px 20px;
  }

  .asy-related-grid {
    grid-template-columns: 1fr;
  }

  .asy-section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .asy-hub-filters {
    gap: 8px;
  }

  .asy-cta-block {
    padding: 40px 24px;
    border-radius: var(--radius-lg);
  }

  .asy-page-hero--rich { padding: 120px 0 48px; }
  .asy-page-hero--about { min-height: auto; padding: 120px 0 40px; }
  .asy-article-hero { padding: 110px 0 32px; }
  .asy-article-hero--has-image { padding: 120px 0 40px; }
  .asy-logo-img { height: 34px; }

  .asy-about-stats { grid-template-columns: 1fr; gap: 16px; }
  .asy-about-image img { height: 280px; }
  .asy-photo-break { height: 240px; }
  .asy-photo-break__quote p { font-size: 1.2rem; }

  .asy-form-row { grid-template-columns: 1fr; }
  .asy-contact-form { padding: 24px; }
  .asy-contact-map { height: 260px; }
}

/* ========================================================
   HOMEPAGE REFINEMENT - VISUAL ONLY PASS
   ======================================================== */

.home {
  --home-paper: #f4efe8;
  --home-paper-deep: #e8ded2;
  --home-limestone: #ddcfbc;
  --home-ink: #151a1d;
  --home-charcoal: #203039;
  --home-sage: #6e8790;
  --home-sage-deep: #203039;
  --home-copper: #b07e62;
  --home-line: rgba(31, 36, 43, 0.1);
  --home-accent-soft: rgba(95, 119, 128, 0.12);
  --home-accent-line: rgba(95, 119, 128, 0.28);
  background: linear-gradient(180deg, #eee7de 0%, #f4efe8 18%, #faf6f0 100%);
}

.home .asy-accent-bar {
  display: none;
}

.home .asy-site-header {
  top: 0;
}

body.logged-in.home .asy-site-header {
  top: 32px;
}

.home .asy-site-header::before {
  background: rgba(14, 18, 21, 0.16);
  box-shadow: none;
  opacity: 0;
}

.home .asy-site-header.scrolled::before {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 0 rgba(28, 37, 54, 0.06), 0 18px 36px rgba(7, 10, 11, 0.12);
  opacity: 1;
}

.home .asy-section--white,
.home .asy-section--cream {
  background: transparent;
}

.home .asy-section--cream::before {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(95, 111, 134, 0.1) 0%, transparent 52%),
    radial-gradient(ellipse at 20% 80%, rgba(95, 119, 128, 0.07) 0%, transparent 44%);
}

.home .asy-section-header {
  margin-bottom: 52px;
}

.home .asy-section-header--center > div,
.home .asy-section-header:not(.asy-section-header--center) > div:first-child {
  position: relative;
  padding-top: 18px;
}

.home .asy-section-header--center > div::before,
.home .asy-section-header:not(.asy-section-header--center) > div:first-child::before {
  content: '';
  display: block;
  width: 86px;
  height: 1px;
  margin-bottom: 16px;
  background: linear-gradient(90deg, rgba(95, 119, 128, 0.18) 0%, rgba(95, 119, 128, 0.46) 55%, transparent 100%);
}

.home .asy-section-header--center > div::before {
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, transparent 0%, rgba(95, 119, 128, 0.16) 24%, rgba(95, 119, 128, 0.46) 50%, rgba(95, 119, 128, 0.16) 76%, transparent 100%);
}

.home .asy-section-eyebrow {
  color: var(--home-sage-deep);
  letter-spacing: 0.28em;
}

.home .asy-section-eyebrow::before {
  width: 42px;
  background: linear-gradient(90deg, rgba(95, 119, 128, 0.62) 0%, transparent 100%);
}

.home .asy-section-subtitle {
  color: #5f666d;
}

.home .asy-section-link {
  color: var(--home-charcoal);
  border-bottom-color: rgba(31, 36, 43, 0.12);
}

.home .asy-section-link:hover {
  color: var(--home-sage-deep);
  border-bottom-color: rgba(108, 116, 130, 0.45);
}

.home .asy-btn-primary {
  background: var(--home-charcoal);
  border-color: var(--home-sage);
  box-shadow: none;
}

.home .asy-btn-primary:hover {
  background: var(--home-sage-deep);
  border-color: var(--home-sage-deep);
  box-shadow: 0 14px 28px rgba(84, 93, 108, 0.22);
}

.home .asy-btn-secondary {
  color: #f5efe5;
  border-color: rgba(245, 239, 229, 0.42);
  background: rgba(255, 255, 255, 0.04);
}

.home .asy-btn-secondary:hover {
  background: rgba(245, 239, 229, 0.12);
  border-color: rgba(245, 239, 229, 0.6);
  color: #fff;
  box-shadow: none;
}

.home .asy-btn-secondary--dark {
  color: var(--home-charcoal);
  border-color: rgba(31, 36, 43, 0.16);
  background: transparent;
}

.home .asy-btn-secondary--dark:hover {
  background: var(--home-charcoal);
  border-color: var(--home-charcoal);
  color: #fff;
}

.home .asy-site-header--transparent .asy-logo-text,
.home .asy-site-header--transparent .asy-logo-suffix {
  color: #f7f1e7;
}

.home .asy-site-header--transparent .asy-nav-list a,
.home .asy-site-header--transparent .asy-nav-list li a {
  color: rgba(247, 241, 231, 0.82);
}

.home .asy-site-header--transparent .asy-nav-list a:hover,
.home .asy-site-header--transparent .asy-nav-list li a:hover {
  color: #fff;
}

.home .asy-site-header--transparent .asy-nav-list a::after,
.home .asy-site-header--transparent .asy-nav-list li a::after {
  background: rgba(247, 241, 231, 0.7);
}

.home .asy-site-header--transparent .asy-header-cta {
  background: rgba(16, 20, 23, 0.24);
  border-color: rgba(247, 241, 231, 0.18);
  color: #f7f1e7;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.home .asy-site-header--transparent .asy-header-cta:hover {
  background: rgba(247, 241, 231, 0.12);
  border-color: rgba(247, 241, 231, 0.28);
  color: #fff;
}

.home .asy-site-header.scrolled .asy-nav-list a,
.home .asy-site-header.scrolled .asy-nav-list li a,
.home .asy-site-header.scrolled .asy-logo-text,
.home .asy-site-header.scrolled .asy-logo-suffix {
  color: var(--home-charcoal);
}

.home .asy-site-header.scrolled .asy-nav-list a::after,
.home .asy-site-header.scrolled .asy-nav-list li a::after {
  background: var(--home-sage-deep);
}

.home .asy-site-header.scrolled .asy-header-cta {
  background: transparent;
  border-color: var(--home-sage-deep);
  color: var(--home-sage-deep);
}

.home .asy-site-header.scrolled .asy-header-cta:hover {
  background: var(--home-sage-deep);
  border-color: var(--home-sage-deep);
  color: #fff;
}

.home .asy-site-header.scrolled .asy-menu-toggle span {
  background: var(--home-charcoal);
}

.home .asy-hero {
  min-height: 100svh;
  background: linear-gradient(120deg, #151a1d 0%, #203039 40%, #6e8790 100%);
}

.home .asy-hero::before {
  opacity: 0.03;
}

.home .asy-hero-media img,
.home .asy-hero-media video {
  object-position: center 36%;
  filter: saturate(0.26) grayscale(0.12) contrast(1.08) brightness(0.78);
}

.home .asy-hero-media::before {
  background:
    linear-gradient(90deg, rgba(18, 22, 24, 0.9) 0%, rgba(18, 22, 24, 0.58) 46%, rgba(18, 22, 24, 0.14) 100%),
    radial-gradient(circle at 82% 20%, rgba(95, 119, 128, 0.36) 0%, transparent 34%),
    radial-gradient(circle at 16% 78%, rgba(95, 119, 128, 0.16) 0%, transparent 40%);
}

.home .asy-hero-media::after {
  background: linear-gradient(180deg, rgba(15, 19, 22, 0.28) 0%, rgba(15, 19, 22, 0.06) 34%, rgba(15, 19, 22, 0.58) 100%);
}

.home .asy-hero-bg::before {
  background:
    radial-gradient(circle at 76% 22%, rgba(95, 119, 128, 0.18) 0%, transparent 24%),
    linear-gradient(90deg, rgba(15, 19, 22, 0) 0%, rgba(15, 19, 22, 0) 54%, rgba(15, 19, 22, 0.16) 100%);
}

.home .asy-hero-bg::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0, rgba(255, 255, 255, 0.045) 1px, transparent 1px, transparent 124px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 124px),
    linear-gradient(180deg, rgba(16, 19, 22, 0.16) 0%, transparent 24%, transparent 76%, rgba(16, 19, 22, 0.42) 100%);
  background-size: 124px 124px, 124px 124px, auto;
}

.home .asy-hero-line--2,
.home .asy-hero-line--3,
.home .asy-hero-geo--diamond,
.home .asy-hero-geo--diamond-2,
.home .asy-hero-geo--circle {
  opacity: 0.08;
}

.home .asy-hero-orb {
  display: none;
}

.home .asy-hero-inner {
  max-width: var(--container-max);
  padding: 176px 32px 136px;
  justify-content: flex-start;
}

.home .asy-hero-content {
  position: relative;
  max-width: 760px;
  text-align: left;
}

.home .asy-hero-content::after {
  content: '';
  position: absolute;
  top: 26px;
  left: calc(100% + 46px);
  width: min(22vw, 250px);
  height: 1px;
  background: linear-gradient(90deg, rgba(247, 241, 231, 0.45) 0%, transparent 100%);
}

.home .asy-hero-eyebrow {
  justify-content: flex-start;
  margin-bottom: 28px;
  color: rgba(247, 241, 231, 0.72);
  letter-spacing: 0.34em;
}

.home .asy-hero-eyebrow::before {
  width: 52px;
  background: linear-gradient(90deg, rgba(247, 241, 231, 0.46) 0%, transparent 100%);
}

.home .asy-hero-eyebrow::after {
  display: none;
}

.home .asy-hero-title {
  max-width: 740px;
  margin-bottom: 24px;
  font-size: clamp(3.6rem, 6.3vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.home .asy-hero-title em {
  color: #ddcfbc;
}

.home .asy-hero-subtitle {
  max-width: 570px;
  margin: 0 0 34px;
  color: rgba(247, 241, 231, 0.72);
  font-size: 1.05rem;
}

.home .asy-hero-actions {
  justify-content: flex-start;
  gap: 14px;
}

.home .asy-hero-stats {
  left: auto;
  right: max(32px, calc((100vw - var(--container-max)) / 2));
  bottom: 38px;
  width: min(390px, calc(100% - 48px));
  border: 1px solid rgba(247, 241, 231, 0.18);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(247, 242, 233, 0.14) 0%, rgba(31, 36, 43, 0.32) 100%);
  box-shadow: 0 28px 64px rgba(7, 10, 11, 0.24);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.home .asy-hero-stats::before {
  content: 'Reference';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(247, 241, 231, 0.48);
}

.home .asy-hero-stats-inner {
  max-width: none;
  padding: 42px 0 0;
  grid-template-columns: repeat(2, 1fr);
}

.home .asy-hero-stat {
  min-height: 112px;
  padding: 22px 24px;
  align-items: flex-start;
  text-align: left;
  border-right: 1px solid rgba(247, 241, 231, 0.08);
  border-bottom: 1px solid rgba(247, 241, 231, 0.08);
}

.home .asy-hero-stat:nth-child(2n) {
  border-right: none;
}

.home .asy-hero-stat:nth-last-child(-n + 2) {
  border-bottom: none;
}

.home .asy-stat-number {
  font-size: 2.2rem;
  color: #f2e6d5;
}

.home .asy-stat-label {
  max-width: none;
  color: rgba(247, 241, 231, 0.56);
}

.home .asy-hero-scroll {
  display: none;
}

.home .asy-memberships-bar {
  position: relative;
  z-index: 14;
  margin-top: -42px;
  background: rgba(244, 239, 232, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  border-bottom: 1px solid var(--home-line);
  box-shadow: 0 20px 42px rgba(38, 48, 56, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.home .asy-memberships-bar__label {
  color: var(--home-charcoal);
}

.home .asy-memberships-bar__rule,
.home .asy-marquee-divider {
  background: rgba(31, 36, 43, 0.16);
}

.home .asy-trust-logo {
  color: rgba(31, 36, 43, 0.8);
}

.home .asy-awards-showcase--sm {
  padding-top: 72px;
}

.home .asy-awards-grid {
  gap: 16px;
}

.home .asy-award-card {
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(246, 241, 233, 0.94) 100%);
  border-color: rgba(31, 36, 43, 0.08);
  box-shadow: 0 14px 30px rgba(31, 36, 43, 0.05);
}

.home .asy-split-about {
  position: relative;
  max-width: calc(var(--container-max) + 20px);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: 0;
  border: 1px solid rgba(31, 36, 43, 0.1);
  border-radius: 34px;
  overflow: hidden;
  background: rgba(252, 249, 244, 0.9);
  box-shadow: 0 24px 60px rgba(31, 36, 43, 0.07);
}

.home .asy-split-about::before {
  content: '';
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(31, 36, 43, 0.07);
  border-radius: 26px;
  pointer-events: none;
  z-index: 1;
}

.home .asy-split-about__visual {
  padding: 52px;
  background:
    radial-gradient(circle at 18% 20%, rgba(95, 119, 128, 0.11) 0%, transparent 32%),
    radial-gradient(circle at 78% 82%, rgba(95, 119, 128, 0.08) 0%, transparent 26%),
    linear-gradient(145deg, #d6d6d2 0%, #ebe5dd 100%);
}

.home .asy-split-about__visual::before {
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 24px;
  z-index: 1;
}

.home .asy-split-about__photo {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: 24px;
  opacity: 1;
  object-fit: cover;
  filter: saturate(0.42) contrast(1.02) brightness(0.94);
  box-shadow: 0 18px 40px rgba(31, 36, 43, 0.12);
  z-index: 2;
}

.home .asy-split-about__content {
  padding: 82px 72px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(250, 246, 239, 0.96) 100%);
}

.home .asy-split-about__content h2 {
  max-width: 430px;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
}

.home .asy-split-about__content p {
  max-width: 520px;
  color: #596068;
}

.home #practices {
  position: relative;
}

.home #practices::before {
  content: '';
  position: absolute;
  inset: 92px 0 0;
  background:
    radial-gradient(circle at 16% 24%, rgba(95, 119, 128, 0.09) 0%, transparent 24%),
    radial-gradient(circle at 82% 68%, rgba(95, 119, 128, 0.06) 0%, transparent 26%);
  pointer-events: none;
}

.home .asy-practice-grid {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.home .asy-practice-card {
  position: relative;
  min-height: 208px;
  grid-column: span 1;
  padding: 26px 22px 22px;
  border-radius: 22px;
  border-color: rgba(38, 48, 56, 0.08);
  background: rgba(255, 252, 248, 0.88);
  box-shadow: 0 10px 24px rgba(38, 48, 56, 0.04);
  overflow: hidden;
}

.home .asy-practice-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(95, 119, 128, 0.05) 0%, rgba(95, 119, 128, 0) 56%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.46) 0%, transparent 48%);
  opacity: 1;
  transition: opacity var(--t-base) var(--ease-out);
}

.home .asy-practice-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  border-radius: 999px;
  background: rgba(95, 119, 128, 0.55);
  opacity: 0.95;
  transform: scaleX(0.52);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease-out);
}

.home .asy-practice-card:hover {
  transform: translateY(-4px);
  border-color: rgba(95, 119, 128, 0.24);
  box-shadow: 0 18px 34px rgba(38, 48, 56, 0.08);
}

.home .asy-practice-card:hover::before {
  opacity: 1;
}

.home .asy-practice-card:hover::after {
  transform: scaleX(1);
}

.home .asy-practice-card:nth-child(1) {
  grid-column: span 1;
  min-height: 208px;
  padding: 26px 22px 22px;
  background: var(--home-sage);
  box-shadow: 0 16px 30px rgba(72, 96, 104, 0.18);
}

.home .asy-practice-card:nth-child(1) h3,
.home .asy-practice-card:nth-child(1) p,
.home .asy-practice-card:nth-child(1) .asy-practice-card__arrow {
  color: #fff;
}

.home .asy-practice-card:nth-child(1)::after {
  background: var(--home-limestone);
}

.home .asy-practice-card__icon {
  background: rgba(95, 119, 128, 0.12);
  color: var(--home-charcoal);
}

.home .asy-practice-card:hover .asy-practice-card__icon {
  background: var(--home-sage);
  color: #fff;
}

.home .asy-practice-card:nth-child(1) .asy-practice-card__icon {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.home .asy-practice-card:nth-child(1):hover .asy-practice-card__icon {
  background: rgba(255, 255, 255, 0.2);
}

.home .asy-practice-card__name {
  font-size: 1.08rem;
}

.home .asy-practice-card:nth-child(1) .asy-practice-card__name {
  font-size: 1.32rem;
  margin-bottom: 12px;
}

.home .asy-practice-card__desc {
  font-size: 12.5px;
  line-height: 1.68;
  color: #5d666a;
}

.home .asy-practice-card:nth-child(1) .asy-practice-card__desc {
  font-size: 13px;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.8);
}

.home .asy-practice-card__arrow {
  margin-top: 14px;
  color: var(--home-sage-deep);
}

.home .asy-practice-card:nth-last-child(2):nth-child(4n + 1),
.home .asy-practice-card:last-child:nth-child(4n + 2) {
  grid-column: span 2;
}

.home #industries {
  position: relative;
  overflow: visible;
  background: transparent;
}
.home #industries::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(110, 135, 144, 0.12) 0%, transparent 24%),
    radial-gradient(circle at 84% 78%, rgba(221, 207, 188, 0.12) 0%, transparent 24%);
  pointer-events: none;
}
.home #industries .asy-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 28px 56px;
  align-items: start;
}
.home #industries .asy-section-header {
  position: sticky;
  top: 116px;
  margin-bottom: 0;
}
.home #industries .asy-section-header--center {
  align-items: flex-start;
  text-align: left;
}
.home #industries .asy-section-header h2 {
  color: var(--home-charcoal);
}
.home #industries .asy-section-subtitle {
  max-width: 360px;
  color: #5c666d;
}
.home #industries .asy-section-eyebrow {
  color: var(--home-sage-deep);
}
.home #industries .asy-section-eyebrow::before {
  background: linear-gradient(90deg, rgba(110, 135, 144, 0.58) 0%, rgba(221, 207, 188, 0.56) 100%);
}
.home #why-asy {
  position: relative;
}
.home .asy-sectors-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.home #industries .asy-sector-card {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  min-height: 0;
  padding: 22px 22px 20px;
  border-radius: 22px;
  background: rgba(255, 252, 248, 0.9);
  border: 1px solid rgba(32, 48, 57, 0.1);
  box-shadow: 0 14px 28px rgba(21, 26, 29, 0.05);
}
.home #industries .asy-sector-card::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 0;
  bottom: auto;
  width: 56px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(110, 135, 144, 0.82) 0%, rgba(221, 207, 188, 0.86) 100%);
}
.home #industries .asy-sector-card:hover {
  transform: translateY(-3px);
  border-color: rgba(32, 48, 57, 0.16);
  box-shadow: 0 18px 32px rgba(21, 26, 29, 0.08);
}
.home #industries .asy-sector-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(110, 135, 144, 0.12);
  color: var(--home-charcoal);
}
.home #industries .asy-sector-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--home-charcoal);
}
.home #industries .asy-sector-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #5c666d;
}

.home #why-asy .asy-why-grid {
  gap: 18px;
}

.home #why-asy .asy-why-card {
  position: relative;
  padding: 40px 28px 30px;
  text-align: left;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 252, 248, 0.9);
  box-shadow: 0 12px 28px rgba(31, 36, 43, 0.04);
}

.home #why-asy .asy-why-card::after {
  left: 28px;
  right: auto;
  width: 52px;
  background: linear-gradient(90deg, rgba(221, 207, 188, 0.72) 0%, transparent 100%);
}

.home #why-asy .asy-why-card:nth-child(1)::before,
.home #why-asy .asy-why-card:nth-child(2)::before,
.home #why-asy .asy-why-card:nth-child(3)::before {
  position: absolute;
  top: 18px;
  right: 24px;
  font-family: var(--font-serif);
  font-size: 2.6rem;
  line-height: 1;
  color: rgba(31, 36, 43, 0.08);
}

.home #why-asy .asy-why-card:nth-child(1)::before {
  content: '01';
}

.home #why-asy .asy-why-card:nth-child(2)::before {
  content: '02';
}

.home #why-asy .asy-why-card:nth-child(3)::before {
  content: '03';
}

.home #why-asy .asy-why-card__icon {
  margin-bottom: 18px;
  background: rgba(110, 135, 144, 0.12);
  color: var(--home-sage-deep);
}

.home #why-asy .asy-why-card h3 {
  color: var(--home-charcoal);
}

.home #why-asy .asy-why-card p {
  color: #5d666a;
}

.home .asy-partners-grid {
  gap: 20px;
}

.home .asy-partner-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border-color: rgba(38, 48, 56, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 30px rgba(38, 48, 56, 0.04);
}

.home .asy-partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 26px;
  right: 26px;
  height: 2px;
  background: linear-gradient(90deg, rgba(221, 207, 188, 0.9) 0%, transparent 100%);
  z-index: 3;
}

.home .asy-partner-card__info::before {
  content: 'Partner Profile';
  display: inline-block;
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9b7a2;
}

.home .asy-partner-card__portrait {
  aspect-ratio: 0.92 / 1.02;
  background: linear-gradient(180deg, #e3dad0 0%, #d7cdc0 100%);
}

.home .asy-partner-card__info {
  padding: 26px 26px 28px;
}

.home .asy-home-insights-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.home .asy-insight-card {
  position: relative;
  grid-column: span 2;
  border-radius: 24px;
  border-color: rgba(38, 48, 56, 0.08);
  background: rgba(255, 252, 248, 0.92);
  box-shadow: 0 12px 30px rgba(38, 48, 56, 0.04);
}

.home .asy-insight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 2px;
  background: linear-gradient(90deg, rgba(95, 119, 128, 0.56) 0%, transparent 100%);
}

.home .asy-insight-card--featured {
  grid-column: span 4;
  grid-row: span 2;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  background: linear-gradient(180deg, rgba(255, 254, 252, 0.96) 0%, rgba(246, 241, 233, 0.98) 100%);
}

.home .asy-insight-card__body {
  padding: 28px;
}

.home .asy-insight-card--featured .asy-insight-card__body {
  padding: 38px 34px;
}

.home .asy-insight-card__meta {
  flex-wrap: wrap;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(31, 36, 43, 0.08);
}

.home .asy-insight-card--featured .asy-insight-card__title {
  font-size: 2.1rem;
  line-height: 1.18;
}

.home .asy-insight-card__read-more {
  margin-top: 10px;
  color: var(--home-limestone);
}

.home .asy-home-contact-section {
  padding: 116px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #1b2a31 0%, #203039 100%);
}

.home .asy-home-contact-section__bg::before {
  background:
    radial-gradient(circle at 18% 24%, rgba(110, 135, 144, 0.2) 0%, transparent 32%),
    radial-gradient(circle at 84% 72%, rgba(221, 207, 188, 0.12) 0%, transparent 26%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0, rgba(255, 255, 255, 0.045) 1px, transparent 1px, transparent 140px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 140px);
  background-size: auto, auto, 140px 140px, 140px 140px;
}

.home .asy-home-contact {
  gap: 28px;
  align-items: stretch;
  position: relative;
  z-index: 1;
  padding: 24px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 24px 54px rgba(7, 10, 11, 0.22);
}

.home .asy-home-contact__text {
  position: relative;
  padding: 44px 36px;
  border-radius: 26px;
  background: var(--home-charcoal);
}

.home .asy-home-contact__text::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  pointer-events: none;
}

.home .asy-home-contact__text::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 100%);
  background-size: 120px 120px;
  opacity: 0.3;
  pointer-events: none;
}

.home .asy-home-contact__text .asy-section-eyebrow--contact {
  color: rgba(245, 239, 229, 0.76);
}

.home .asy-home-contact__text .asy-section-eyebrow--contact::before {
  background: linear-gradient(90deg, rgba(221, 207, 188, 0.74) 0%, transparent 100%);
}

.home .asy-home-contact__text h2 {
  color: #f7f2e9;
}

.home .asy-home-contact__text > p {
  max-width: 440px;
  color: rgba(247, 242, 233, 0.7);
}

.home .asy-home-contact__detail {
  color: rgba(247, 242, 233, 0.6);
}

.home .asy-home-contact__detail svg {
  color: rgba(245, 239, 229, 0.7);
}

.home .asy-home-contact__detail a {
  color: rgba(247, 242, 233, 0.84);
}

.home .asy-home-contact__detail a:hover {
  color: #fff;
}

.home .asy-home-contact__form {
  padding: 34px 34px 36px;
  border-radius: 26px;
  background: rgba(255, 252, 248, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.home .asy-home-contact__form .asy-form-group label {
  color: #4f575f;
}

.home .asy-home-contact__form .asy-form-group input,
.home .asy-home-contact__form .asy-form-group select,
.home .asy-home-contact__form .asy-form-group textarea {
  background: #fff;
  border-color: rgba(31, 36, 43, 0.14);
  color: var(--home-charcoal);
}

.home .asy-home-contact__form .asy-form-group input::placeholder,
.home .asy-home-contact__form .asy-form-group textarea::placeholder {
  color: rgba(42, 48, 56, 0.34);
}

.home .asy-home-contact__form .asy-btn-primary { background: #243f57; border-color: #243f57; color: #fffdf9; }
.home .asy-home-contact__form .asy-btn-primary:hover { background: #6e8790; border-color: #6e8790; color: #fffdf9; }
.home .asy-home-contact__form .asy-form-group input:focus,
.home .asy-home-contact__form .asy-form-group select:focus,
.home .asy-home-contact__form .asy-form-group textarea:focus {
  border-color: rgba(108, 116, 130, 0.6);
  box-shadow: 0 0 0 3px rgba(108, 116, 130, 0.12);
}

.home .asy-home-contact__form .asy-form-group select option {
  background: #fff;
  color: var(--home-charcoal);
}

.home .asy-home-contact__form .asy-btn-primary {
  width: auto;
  min-width: 220px;
}

.home .asy-site-footer {
  background: linear-gradient(120deg, #151a1d 0%, #203039 40%, #6e8790 100%);
  color: rgba(247, 242, 233, 0.7);
}

.home .asy-site-footer::before {
  background: linear-gradient(90deg, transparent, rgba(221, 207, 188, 0.48), transparent);
  opacity: 0.7;
}

.home .asy-site-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21, 26, 29, 0.06) 0%, rgba(21, 26, 29, 0.18) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.045) 1px, transparent 1px, transparent 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 100%);
  background-size: auto, 140px 140px, 140px 140px;
  pointer-events: none;
  opacity: 0.35;
}

.home .asy-site-footer .asy-container {
  position: relative;
  z-index: 1;
}

.home .asy-footer-brand .asy-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home .asy-site-footer .asy-logo-white {
  opacity: 0;
}

.home .asy-site-footer .asy-logo-original {
  opacity: 1;
}

.home .asy-site-footer .asy-logo-img--footer {
  height: 34px;
  filter: none;
  opacity: 1;
}

.home .asy-footer-brand p,
.home .asy-footer-col li,
.home .asy-footer-col p,
.home .asy-footer-bottom,
.home .asy-footer-lang {
  color: rgba(247, 242, 233, 0.68);
}

.home .asy-footer-col h3 {
  color: rgba(247, 242, 233, 0.82);
}

.home .asy-footer-col a,
.home .asy-footer-lang a {
  color: rgba(247, 242, 233, 0.82);
}

.home .asy-footer-col a:hover,
.home .asy-footer-lang a:hover,
.home .asy-footer-cta {
  color: #fff !important;
}

.home .asy-footer-cta:hover {
  color: rgba(247, 242, 233, 0.84) !important;
}

/* Mobile stats hidden on desktop */
.home .asy-hero-stats-mobile {
  display: none;
}

@media (max-width: 1180px) {
  .home .asy-hero-inner {
    padding-bottom: 100px;
  }

  .home .asy-hero-content::after {
    display: none;
  }

  /* Hide desktop stats, show mobile stats */
  .home .asy-hero-stats {
    display: none !important;
  }
  .home .asy-hero-stats-mobile {
    display: block !important;
  }

  .home .asy-hero-stats-mobile {
    display: block !important;
    position: static !important;
    width: 100%;
    margin: 28px 0;
    border: 1px solid rgba(247, 241, 231, 0.18);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(247, 242, 233, 0.14) 0%, rgba(31, 36, 43, 0.32) 100%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 1;
    transform: none;
  }

  .home .asy-hero-stats-mobile .asy-hero-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0 24px;
    max-width: none;
  }

  .home .asy-hero-stats-mobile .asy-hero-stat {
    padding: 20px 16px;
    text-align: center;
    border-right: 1px solid rgba(247, 241, 231, 0.08);
  }

  .home .asy-hero-stats-mobile .asy-hero-stat:last-child {
    border-right: none;
  }

  /* Buttons centered, equal width */
  .home .asy-hero-actions {
    display: flex !important;
    justify-content: center;
    gap: 12px;
    width: 100%;
  }

  .home .asy-hero-actions .asy-btn-primary,
  .home .asy-hero-actions .asy-btn-secondary {
    text-align: center;
    justify-content: center;
    padding: 16px 32px;
    flex: 0 1 auto;
  }

  .home .asy-memberships-bar {
    margin-top: 0;
  }

  .home .asy-split-about {
    margin: 0 24px;
  }

  .home .asy-split-about__content {
    padding: 72px 56px;
  }
}

@media (max-width: 1024px) {
  .home .asy-practice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home .asy-home-insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home .asy-practice-card,
  .home .asy-insight-card,
  .home .asy-insight-card--featured {
    grid-column: span 1;
    grid-row: auto;
    min-height: 0;
  }

  .home .asy-practice-card:nth-last-child(2):nth-child(4n + 1),
  .home .asy-practice-card:last-child:nth-child(4n + 2) {
    grid-column: span 1;
  }

  .home .asy-insight-card--featured {
    grid-template-columns: 1fr;
  }

  .home .asy-sectors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home #industries .asy-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home #industries .asy-section-header {
    position: static;
  }

  .home .asy-home-contact,
  .home .asy-split-about {
    grid-template-columns: 1fr;
  }

  .home .asy-home-contact__text {
    padding: 36px 30px;
  }
}

@media (max-width: 640px) {
  .home .asy-hero-inner {
    padding: 120px 20px 56px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .home .asy-hero-content {
    text-align: left !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  .home .asy-hero-eyebrow {
    justify-content: flex-start;
  }

  .home .asy-hero-title {
    font-size: clamp(2.4rem, 10vw, 3.6rem);
  }

  .home .asy-hero-subtitle {
    font-size: 15px;
  }

  /* Stack buttons vertically, centered */
  .home .asy-hero-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px;
    width: 100%;
  }

  .home .asy-hero-actions .asy-btn-primary,
  .home .asy-hero-actions .asy-btn-secondary {
    width: 100%;
    max-width: 320px;
    text-align: center;
    justify-content: center;
    font-size: 14px;
    padding: 16px 20px;
  }

  /* Mobile stats: 2x2 grid, full width viewport stretch */
  .home .asy-hero-stats-mobile {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
    margin-top: 32px !important;
  }

  .home .asy-hero-stats-mobile .asy-hero-stats-inner {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch;
    padding: 16px 0 16px 24px !important;
    gap: 0 !important;
    scrollbar-width: none;
  }

  .home .asy-hero-stats-mobile .asy-hero-stats-inner::-webkit-scrollbar {
    display: none;
  }

  .home .asy-hero-stats-mobile .asy-hero-stat {
    flex: 0 0 50% !important;
    scroll-snap-align: start;
    border-bottom: none;
    border-right: 1px solid rgba(247, 241, 231, 0.08);
    padding: 16px 20px;
  }

  .home .asy-hero-stats-mobile .asy-hero-stat:last-child {
    border-right: none;
  }

  .home .asy-hero-stats-mobile .asy-hero-stat:nth-child(odd) {
    padding-left: 24px;
  }

  .home .asy-hero-stats {
    max-width: 100% !important;
    border-radius: 16px;
    margin-top: 28px;
  }

  .home .asy-hero-stats-inner {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    padding: 42px 0 0;
  }

  .home .asy-hero-stat {
    flex: 0 0 50%;
    scroll-snap-align: start;
    min-height: 90px;
  }

  .home .asy-hero-stats-inner,
  .home .asy-practice-grid,
  .home .asy-home-insights-grid {
    grid-template-columns: 1fr;
  }

  .home .asy-hero-stat {
    border-right: none;
  }

  .home .asy-split-about {
    margin: 0 16px;
    border-radius: 24px;
  }

  .home .asy-split-about::before {
    inset: 14px;
  }

  .home .asy-split-about__visual,
  .home .asy-split-about__content,
  .home .asy-home-contact,
  .home .asy-home-contact__form {
    padding: 24px;
  }

  .home .asy-practice-card:nth-child(1) {
    padding: 28px 24px 26px;
  }

  .home .asy-split-about__photo {
    min-height: 320px;
  }

  .home #industries .asy-sector-card {
    grid-template-columns: 1fr;
  }
}



/* ========================================================
   HOMEPAGE PALETTE PREVIEW MODES
   ======================================================== */

body.home.palette-pearl {
  --home-paper: #f8f4ec;
  --home-paper-deep: #ede4d8;
  --home-limestone: #e1d7ca;
  --home-charcoal: #28313a;
  --home-sage: #6d7d8f;
  --home-sage-deep: #556577;
  --home-copper: #ad8f71;
}

body.home.palette-pearl .asy-hero {
  background: linear-gradient(120deg, #171d24 0%, #273544 40%, #78889a 100%);
}

body.home.palette-pearl .asy-hero-media::before {
  background:
    linear-gradient(90deg, rgba(20, 24, 28, 0.88) 0%, rgba(20, 24, 28, 0.56) 46%, rgba(20, 24, 28, 0.14) 100%),
    radial-gradient(circle at 82% 20%, rgba(109, 125, 143, 0.34) 0%, transparent 34%),
    radial-gradient(circle at 16% 78%, rgba(173, 143, 113, 0.24) 0%, transparent 40%);
}

body.home.palette-pearl .asy-memberships-bar,
body.home.palette-pearl .asy-split-about,
body.home.palette-pearl .asy-home-contact {
  box-shadow: 0 24px 50px rgba(38, 49, 58, 0.08);
}

body.home.palette-nocturne {
  --home-paper: #f4ede8;
  --home-paper-deep: #e7ddd8;
  --home-limestone: #d8ccc6;
  --home-charcoal: #292630;
  --home-sage: #5a6286;
  --home-sage-deep: #424967;
  --home-copper: #b07c68;
}

body.home.palette-nocturne .asy-section--cream::before {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(90, 98, 134, 0.12) 0%, transparent 52%),
    radial-gradient(ellipse at 20% 80%, rgba(176, 124, 104, 0.12) 0%, transparent 44%);
}

body.home.palette-nocturne .asy-hero {
  background: linear-gradient(120deg, #14151c 0%, #201f2d 38%, #5e6388 100%);
}

body.home.palette-nocturne .asy-hero-media::before {
  background:
    linear-gradient(90deg, rgba(17, 18, 24, 0.9) 0%, rgba(17, 18, 24, 0.6) 46%, rgba(17, 18, 24, 0.14) 100%),
    radial-gradient(circle at 78% 18%, rgba(90, 98, 134, 0.38) 0%, transparent 34%),
    radial-gradient(circle at 20% 82%, rgba(176, 124, 104, 0.24) 0%, transparent 42%);
}

body.home.palette-nocturne .asy-hero-title em {
  color: #f0c9bc;
}

body.home.palette-nocturne .asy-practice-card:nth-child(1) {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 100%),
    linear-gradient(140deg, #1b1d28 0%, #30365a 58%, #a97463 100%);
  background-size: 120px 120px, auto;
}

body.home.palette-nocturne .asy-home-contact__text {
  background: linear-gradient(180deg, #232333 0%, #3b3f63 100%);
}

body.home.palette-harbor {
  --home-paper: #f4efe8;
  --home-paper-deep: #e8ded2;
  --home-limestone: #ddcfbc;
  --home-charcoal: #203039;
  --home-sage: #6e8790;
  --home-sage-deep: #203039;
  --home-copper: #b07e62;
}

body.home.palette-harbor .asy-section--cream::before {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(95, 119, 128, 0.11) 0%, transparent 52%),
    radial-gradient(ellipse at 20% 80%, rgba(176, 126, 98, 0.09) 0%, transparent 44%);
}

body.home.palette-harbor .asy-hero {
  background: linear-gradient(120deg, #151a1d 0%, #203039 40%, #6e8790 100%);
}

body.home.palette-harbor .asy-hero-media::before {
  background:
    linear-gradient(90deg, rgba(18, 22, 24, 0.9) 0%, rgba(18, 22, 24, 0.58) 46%, rgba(18, 22, 24, 0.14) 100%),
    radial-gradient(circle at 82% 20%, rgba(95, 119, 128, 0.36) 0%, transparent 34%),
    radial-gradient(circle at 16% 78%, rgba(95, 119, 128, 0.16) 0%, transparent 40%);
}

body.home.palette-harbor .asy-practice-card:nth-child(1) {
  background: var(--home-sage);
}

body.home.palette-harbor .asy-home-contact__text {
  background: var(--home-charcoal);
}






















/* ========================================================
   INNER PAGE HARBOR ALIGNMENT
   ======================================================== */

.page-template-page-about .asy-page-hero,
.page-template-page-practices .asy-page-hero,
.page-template-page-contact .asy-page-hero,
.post-type-archive-partner .asy-page-hero,
.post-type-archive-insight .asy-page-hero,
.tax-insight_category .asy-page-hero,
.search .asy-page-hero,
.page:not(.home) .asy-page-hero,
.single-insight .asy-article-hero,
.single-partner .asy-partner-hero,
.error404 .asy-404,
body:not(.home) .asy-site-footer {
  position: relative;
  overflow: hidden;
}

.page-template-page-about .asy-page-hero::after,
.page-template-page-practices .asy-page-hero::after,
.page-template-page-contact .asy-page-hero::after,
.post-type-archive-partner .asy-page-hero::after,
.post-type-archive-insight .asy-page-hero::after,
.tax-insight_category .asy-page-hero::after,
.search .asy-page-hero::after,
.page:not(.home) .asy-page-hero::after,
.single-insight .asy-article-hero::after,
.single-partner .asy-partner-hero::after,
.error404 .asy-404::after,
body:not(.home) .asy-site-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0, rgba(255, 255, 255, 0.045) 1px, transparent 1px, transparent 132px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 132px);
  background-size: 132px 132px, 132px 132px;
  pointer-events: none;
  opacity: 0.22;
}

.page-template-page-about .asy-page-hero__photo-overlay,
.page-template-page-practices .asy-page-hero__photo-overlay,
.page-template-page-contact .asy-page-hero__photo-overlay,
.post-type-archive-partner .asy-page-hero__photo-overlay,
.post-type-archive-insight .asy-page-hero__photo-overlay,
.tax-insight_category .asy-page-hero__photo-overlay {
  background:
    linear-gradient(120deg, rgba(21, 26, 29, 0.92) 0%, rgba(32, 48, 57, 0.82) 44%, rgba(110, 135, 144, 0.6) 100%),
    linear-gradient(180deg, rgba(21, 26, 29, 0.18) 0%, rgba(21, 26, 29, 0.52) 100%);
}

.page-template-page-about .asy-page-hero .asy-section-eyebrow,
.page-template-page-practices .asy-page-hero .asy-section-eyebrow,
.page-template-page-contact .asy-page-hero .asy-section-eyebrow,
.post-type-archive-partner .asy-page-hero .asy-section-eyebrow,
.post-type-archive-insight .asy-page-hero .asy-section-eyebrow,
.tax-insight_category .asy-page-hero .asy-section-eyebrow,
.search .asy-page-hero .asy-section-eyebrow,
.page:not(.home) .asy-page-hero .asy-section-eyebrow {
  color: rgba(247, 241, 231, 0.74);
}

.page-template-page-about .asy-page-hero .asy-section-eyebrow::before,
.page-template-page-practices .asy-page-hero .asy-section-eyebrow::before,
.page-template-page-contact .asy-page-hero .asy-section-eyebrow::before,
.post-type-archive-partner .asy-page-hero .asy-section-eyebrow::before,
.post-type-archive-insight .asy-page-hero .asy-section-eyebrow::before,
.tax-insight_category .asy-page-hero .asy-section-eyebrow::before,
.search .asy-page-hero .asy-section-eyebrow::before,
.page:not(.home) .asy-page-hero .asy-section-eyebrow::before {
  background: linear-gradient(90deg, rgba(221, 207, 188, 0.7) 0%, transparent 100%);
}

.page-template-page-about .asy-page-hero h1,
.page-template-page-practices .asy-page-hero h1,
.page-template-page-contact .asy-page-hero h1,
.post-type-archive-partner .asy-page-hero h1,
.post-type-archive-insight .asy-page-hero h1,
.tax-insight_category .asy-page-hero h1,
.search .asy-page-hero h1,
.page:not(.home) .asy-page-hero h1 {
  color: #f7f2e9;
}

.page-template-page-about .asy-page-hero__subtitle,
.page-template-page-practices .asy-page-hero__subtitle,
.page-template-page-contact .asy-page-hero__subtitle,
.post-type-archive-partner .asy-page-hero__subtitle,
.post-type-archive-insight .asy-page-hero__subtitle,
.tax-insight_category .asy-page-hero__subtitle,
.search .asy-page-hero__subtitle,
.page:not(.home) .asy-page-hero__subtitle {
  color: rgba(247, 241, 231, 0.72);
}

body:not(.home) .asy-site-footer {
  background: linear-gradient(120deg, #151a1d 0%, #203039 40%, #6e8790 100%);
}

body:not(.home) .asy-site-footer::before {
  background: linear-gradient(90deg, transparent, rgba(221, 207, 188, 0.48), transparent);
  opacity: 0.7;
}

body:not(.home) .asy-site-footer .asy-footer-brand .asy-logo {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

body:not(.home) .asy-site-footer .asy-logo-img--footer {
  filter: none;
}

.page-template-page-about .asy-about-grid,
.page-template-page-about .asy-memberships-grid,
.page-template-page-about .asy-values-grid,
.page-template-page-contact .asy-contact-grid,
.page-template-page-practices .asy-practice-detail,
.post-type-archive-partner .asy-partners-grid--archive,
.post-type-archive-insight .asy-insights-grid,
.tax-insight_category .asy-insights-grid,
.search .asy-search-results-list,
.page:not(.home) .asy-container-narrow,
.single-insight .asy-article-layout,
.single-partner .asy-partner-body-inner {
  position: relative;
  z-index: 1;
}

.page-template-page-about .asy-about-content,
.page-template-page-about .asy-membership-card,
.page-template-page-about .asy-value-card,
.page-template-page-contact .asy-contact-card,
.page-template-page-contact .asy-contact-form,
.page-template-page-practices .asy-practice-detail__content,
.post-type-archive-partner .asy-partner-card,
.post-type-archive-insight .asy-insight-card,
.tax-insight_category .asy-insight-card,
.search .asy-search-result,
.page:not(.home) .asy-article-content,
.single-insight .asy-article-content,
.single-insight .asy-article-side-card,
.single-partner .asy-partner-bio,
.single-partner .asy-partner-sidebar-card {
  border-radius: 24px;
  border: 1px solid rgba(32, 48, 57, 0.08);
  box-shadow: 0 14px 34px rgba(21, 26, 29, 0.05);
}

.page-template-page-about .asy-about-content {
  position: relative;
  padding-top: 28px;
}

.page-template-page-about .asy-about-content::before {
  content: '';
  display: block;
  width: 72px;
  height: 2px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, rgba(110, 135, 144, 0.88) 0%, rgba(221, 207, 188, 0.8) 100%);
}

.page-template-page-about .asy-about-image {
  border-radius: 30px;
  box-shadow: 0 24px 48px rgba(21, 26, 29, 0.12);
}

.page-template-page-about .asy-about-accent-card {
  background: linear-gradient(160deg, #203039 0%, #6e8790 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.page-template-page-about .asy-membership-card,
.page-template-page-about .asy-value-card {
  background: rgba(255, 252, 248, 0.92);
  text-align: left;
}

.page-template-page-about .asy-membership-card::after,
.page-template-page-about .asy-value-card::after {
  left: 28px;
  right: auto;
  width: 56px;
  background: linear-gradient(90deg, rgba(110, 135, 144, 0.78) 0%, rgba(221, 207, 188, 0.92) 100%);
}

.page-template-page-about .asy-photo-break {
  height: 460px;
}

.page-template-page-about .asy-photo-break__overlay {
  background: linear-gradient(180deg, rgba(21, 26, 29, 0.34) 0%, rgba(32, 48, 57, 0.82) 100%);
}

.page-template-page-about .asy-photo-break__quote {
  position: relative;
  padding-left: 28px;
}

.page-template-page-about .asy-photo-break__quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, rgba(221, 207, 188, 0.92) 0%, transparent 100%);
}

.page-template-page-practices .asy-section--white {
  counter-reset: practice-page;
}

.page-template-page-practices .asy-practice-detail {
  gap: 0 48px;
  padding: 44px 0;
  border-bottom-color: rgba(32, 48, 57, 0.1);
}

.page-template-page-practices .asy-practice-detail__content {
  position: relative;
  padding: 28px 30px 30px;
  background: rgba(255, 252, 248, 0.86);
}

.page-template-page-practices .asy-practice-detail__content::before {
  counter-increment: practice-page;
  content: counter(practice-page, decimal-leading-zero);
  position: absolute;
  top: 18px;
  right: 24px;
  font-family: var(--font-serif);
  font-size: 2.7rem;
  line-height: 1;
  color: rgba(32, 48, 57, 0.08);
}

.page-template-page-practices .asy-practice-detail__icon {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  background: rgba(110, 135, 144, 0.12);
  color: #203039;
  border-color: rgba(110, 135, 144, 0.2);
}

.page-template-page-practices .asy-practice-detail__points li::before {
  background: #ddcfbc;
}

.page-template-page-practices .asy-cta-cinematic__bg::before {
  background: linear-gradient(120deg, rgba(21, 26, 29, 0.86) 0%, rgba(32, 48, 57, 0.82) 50%, rgba(110, 135, 144, 0.58) 100%);
}

.page-template-page-practices .asy-cta-cinematic__inner {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
}

.page-template-page-practices .asy-cta-cinematic__inner .asy-section-eyebrow--contact::before {
  background: linear-gradient(90deg, rgba(221, 207, 188, 0.82) 0%, transparent 100%);
}

.page-template-page-contact .asy-contact-grid {
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: 40px;
}

.page-template-page-contact .asy-contact-info {
  position: sticky;
  top: 104px;
}

.page-template-page-contact .asy-contact-card,
.page-template-page-contact .asy-contact-form {
  background: rgba(255, 252, 248, 0.92);
}

.page-template-page-contact .asy-contact-card {
  position: relative;
  padding-top: 28px;
}

.page-template-page-contact .asy-contact-card::before {
  content: '';
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(110, 135, 144, 0.76) 0%, rgba(221, 207, 188, 0.92) 100%);
}

.page-template-page-contact .asy-contact-form {
  position: relative;
  overflow: hidden;
}

.page-template-page-contact .asy-contact-form::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 88% 14%, rgba(110, 135, 144, 0.08) 0%, transparent 24%);
  pointer-events: none;
}

.page-template-page-contact .asy-contact-languages__list .asy-chip {
  border-color: rgba(110, 135, 144, 0.18);
  color: #203039;
  background: rgba(110, 135, 144, 0.08);
}

.page-template-page-contact .asy-contact-map__overlay {
  background: linear-gradient(180deg, rgba(21, 26, 29, 0.22) 0%, rgba(32, 48, 57, 0.74) 100%);
}

.page-template-page-contact .asy-contact-map__pin {
  background: rgba(255, 252, 248, 0.94);
  color: #203039;
  box-shadow: 0 20px 40px rgba(21, 26, 29, 0.14);
}

.post-type-archive-partner .asy-partner-card--detailed {
  background: rgba(255, 252, 248, 0.92);
  overflow: hidden;
}

.post-type-archive-partner .asy-partner-card--detailed::before {
  background: linear-gradient(90deg, rgba(110, 135, 144, 0.82) 0%, rgba(221, 207, 188, 0.82) 100%);
}

.post-type-archive-partner .asy-partner-card__link {
  color: #203039;
}

.post-type-archive-partner .asy-cta-block {
  background: linear-gradient(145deg, #203039 0%, #6e8790 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.post-type-archive-partner .asy-cta-block::before {
  border-color: rgba(255, 255, 255, 0.12);
}

.post-type-archive-partner .asy-cta-content h2,
.post-type-archive-partner .asy-cta-content p {
  color: #f7f2e9;
}

.post-type-archive-insight .asy-hub-filters,
.tax-insight_category .asy-hub-filters {
  gap: 10px;
  padding: 18px 0 28px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(32, 48, 57, 0.08);
}

.post-type-archive-insight .asy-hub-filter,
.tax-insight_category .asy-hub-filter {
  border-radius: 999px;
  border: 1px solid rgba(110, 135, 144, 0.16);
  background: rgba(255, 252, 248, 0.84);
  color: #203039;
}

.post-type-archive-insight .asy-hub-filter--active,
.tax-insight_category .asy-hub-filter--active {
  background: #203039;
  border-color: #203039;
  color: #f7f2e9;
}

.post-type-archive-insight .asy-insight-card--spotlight {
  border-color: rgba(110, 135, 144, 0.18);
  box-shadow: 0 20px 40px rgba(21, 26, 29, 0.08);
}

.post-type-archive-insight .asy-hub-cta,
.tax-insight_category .asy-hub-cta {
  margin-top: 44px;
  padding: 36px 40px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 252, 248, 0.96) 0%, rgba(236, 243, 246, 0.96) 100%);
  border: 1px solid rgba(32, 48, 57, 0.08);
  box-shadow: 0 16px 34px rgba(21, 26, 29, 0.06);
}

.single-insight .asy-article-hero__overlay {
  background: linear-gradient(120deg, rgba(21, 26, 29, 0.9) 0%, rgba(32, 48, 57, 0.82) 46%, rgba(110, 135, 144, 0.56) 100%);
}

.single-insight .asy-article-content,
.single-insight .asy-article-side-card,
.single-insight .asy-article-author-card {
  background: rgba(255, 252, 248, 0.94);
}

.single-insight .asy-article-content {
  padding: 38px 40px;
}

.single-insight .asy-article-side-card {
  border-radius: 22px;
}

.single-insight .asy-article-side-card::before,
.single-insight .asy-article-author-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, rgba(110, 135, 144, 0.84) 0%, rgba(221, 207, 188, 0.92) 100%);
}

.single-insight .asy-related-insights {
  margin-top: 56px;
  padding-top: 8px;
}

.single-insight .asy-related-insights h2 {
  position: relative;
  padding-top: 18px;
}

.single-insight .asy-related-insights h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, rgba(110, 135, 144, 0.84) 0%, rgba(221, 207, 188, 0.92) 100%);
}

.single-partner .asy-partner-hero {
  background: linear-gradient(120deg, #151a1d 0%, #203039 42%, #6e8790 100%);
  padding: 120px 0 56px;
}

.single-partner .asy-partner-hero-inner {
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: center;
}

.single-partner .asy-partner-portrait {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(201, 169, 110, 0.15);
}

.single-partner .asy-partner-hero::before {
  background:
    radial-gradient(ellipse at 18% 76%, rgba(221, 207, 188, 0.1) 0%, transparent 48%),
    radial-gradient(ellipse at 82% 18%, rgba(110, 135, 144, 0.18) 0%, transparent 46%);
}

.single-partner .asy-chip--gold {
  background: rgba(221, 207, 188, 0.16);
  border-color: rgba(221, 207, 188, 0.24);
  color: #f7f2e9;
}

.single-partner .asy-partner-quote {
  background: linear-gradient(180deg, rgba(246, 241, 233, 0.94) 0%, rgba(255, 252, 248, 0.96) 100%);
}

.single-partner .asy-partner-sidebar-card {
  background: rgba(255, 252, 248, 0.94);
}

.single-partner .asy-partner-cta__inner {
  border-radius: 28px;
  background: linear-gradient(145deg, #203039 0%, #6e8790 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(21, 26, 29, 0.12);
}

.single-partner .asy-partner-cta__inner h2,
.single-partner .asy-partner-cta__inner p {
  color: #f7f2e9;
}

.page:not(.home):not(.page-template-page-about):not(.page-template-page-practices):not(.page-template-page-contact) .asy-article-content {
  padding: 38px 40px;
  background: rgba(255, 252, 248, 0.94);
}

.search .asy-search-count {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(110, 135, 144, 0.1);
  color: #203039;
}

.search .asy-search-result {
  padding: 26px 28px;
  margin-bottom: 14px;
  border-bottom: none;
  background: rgba(255, 252, 248, 0.92);
}

.search .asy-search-result__type {
  color: #6e8790;
}

.search .asy-search-empty {
  padding: 48px 40px;
  border-radius: 28px;
  background: rgba(255, 252, 248, 0.94);
  border: 1px solid rgba(32, 48, 57, 0.08);
  box-shadow: 0 16px 34px rgba(21, 26, 29, 0.06);
}

.error404 .asy-404 {
  background: linear-gradient(120deg, #151a1d 0%, #203039 44%, #6e8790 100%);
}

.error404 .asy-404__inner {
  position: relative;
  z-index: 1;
  padding: 42px 40px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.error404 .asy-404__inner h1,
.error404 .asy-404__inner p,
.error404 .asy-404__link {
  color: #f7f2e9;
}

.error404 .asy-404__number {
  -webkit-text-stroke-color: rgba(221, 207, 188, 0.22);
}

.error404 .asy-404__link {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.error404 .asy-404__link:hover {
  background: rgba(221, 207, 188, 0.14);
  border-color: rgba(221, 207, 188, 0.28);
}

@media (max-width: 1024px) {
  .page-template-page-contact .asy-contact-grid,
  .page-template-page-about .asy-about-grid,
  .page-template-page-about .asy-memberships-grid,
  .page-template-page-about .asy-values-grid,
  .single-insight .asy-article-layout,
  .single-partner .asy-partner-body-inner,
  .post-type-archive-insight .asy-insights-grid,
  .tax-insight_category .asy-insights-grid {
    grid-template-columns: 1fr;
  }

  .page-template-page-contact .asy-contact-info,
  .page-template-page-practices .asy-practice-detail__content::before,
  .post-type-archive-insight .asy-hub-filters,
  .tax-insight_category .asy-hub-filters {
    position: static;
  }
}

@media (max-width: 640px) {
  .page-template-page-practices .asy-practice-detail__content,
  .single-insight .asy-article-content,
  .page:not(.home):not(.page-template-page-about):not(.page-template-page-practices):not(.page-template-page-contact) .asy-article-content,
  .error404 .asy-404__inner,
  .search .asy-search-empty {
    padding: 28px 24px;
  }

  .page-template-page-about .asy-about-accent-card {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .page-template-page-about .asy-photo-break {
    height: 360px;
  }
}

/* HARBOR SYSTEM REFINEMENT */
body:not(.home) .asy-accent-bar { display: none; }
body:not(.home) .asy-site-header { top: 0; }
body.logged-in:not(.home) .asy-site-header { top: 32px; }
body:not(.home) .asy-site-header::before { background: rgba(255, 255, 255, 0.72); box-shadow: 0 1px 0 rgba(36, 63, 87, 0.07), 0 14px 28px rgba(9, 14, 18, 0.07); opacity: 0; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
body:not(.home) .asy-site-header.scrolled::before { opacity: 1; }
body:not(.home) .asy-site-header--transparent .asy-header-cta { background: rgba(255, 255, 255, 0.04); border-color: rgba(247, 243, 236, 0.24); color: #f7f3ec; }
body:not(.home) .asy-site-header--transparent .asy-header-cta:hover { background: rgba(247, 243, 236, 0.14); border-color: rgba(247, 243, 236, 0.38); color: #fff; }
body:not(.home) .asy-site-header.scrolled .asy-nav-list a,
body:not(.home) .asy-site-header.scrolled .asy-nav-list li a,
body:not(.home) .asy-site-header.scrolled .asy-logo-text,
body:not(.home) .asy-site-header.scrolled .asy-logo-suffix { color: #243f57; }
body:not(.home) .asy-site-header.scrolled .asy-nav-list a::after,
body:not(.home) .asy-site-header.scrolled .asy-nav-list li a::after,
body:not(.home) .asy-site-header.scrolled .asy-logo-line { background: #243f57; }
body:not(.home) .asy-site-header.scrolled .asy-header-cta { background: #26495f; border-color: #26495f; color: #fffdf9; }
body:not(.home) .asy-site-header.scrolled .asy-header-cta:hover { background: #6e8790; border-color: #6e8790; color: #fff; }
body:not(.home) .asy-site-header.scrolled .asy-menu-toggle span { background: #26495f; }
body:not(.home) .asy-section { padding: 86px 0; }
body:not(.home) .asy-site-footer,
.home .asy-site-footer { background: linear-gradient(120deg, #151a1d 0%, #243f57 42%, #7e97ac 100%); }
body:not(.home) .asy-site-footer .asy-logo-img--footer,
.home .asy-site-footer .asy-logo-img--footer { height: 34px; filter: none; opacity: 1; }

.home { background: #f5f1ea; }
.home .asy-section { padding: 78px 0; }
.home .asy-section-header { margin-bottom: 30px; }
.home .asy-section-header--center > div::before,
.home .asy-section-header:not(.asy-section-header--center) > div:first-child::before { background: #7e97ac; height: 2px; width: 72px; margin-bottom: 14px; }
.home .asy-section-header--center > div::before { margin-left: auto; margin-right: auto; }
.home .asy-section-eyebrow { color: #243f57; }
.home .asy-section-subtitle { color: #5f6d79; }
.home .asy-site-header.scrolled::before { background: rgba(255, 255, 255, 0.72); box-shadow: 0 1px 0 rgba(36, 63, 87, 0.07), 0 14px 28px rgba(9, 14, 18, 0.07); opacity: 1; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.home .asy-site-header.scrolled .asy-nav-list a,
.home .asy-site-header.scrolled .asy-nav-list li a,
.home .asy-site-header.scrolled .asy-logo-text,
.home .asy-site-header.scrolled .asy-logo-suffix { color: #243f57; }
.home .asy-site-header.scrolled .asy-nav-list a::after,
.home .asy-site-header.scrolled .asy-nav-list li a::after { background: #243f57; }
.home .asy-site-header.scrolled .asy-header-cta { background: #26495f; border-color: #26495f; color: #fffdf9; }
.home .asy-site-header.scrolled .asy-header-cta:hover { background: #6e8790; border-color: #6e8790; color: #fff; }
.home .asy-site-header.scrolled .asy-menu-toggle span { background: #26495f; }
.home .asy-section--cream::before,
.home .asy-home-contact-section__bg::before,
.home .asy-home-contact__text::after { display: none; }

.home .asy-awards-showcase--sm { padding-top: 44px; padding-bottom: 44px; }
.home .asy-awards-reel { display: grid; gap: 18px; overflow: hidden; }
.home .asy-awards-reel__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.home .asy-awards-reel__intro h2 { margin-top: 6px; }
.home .asy-awards-reel__controls { display: flex; gap: 10px; flex-shrink: 0; }
.home .asy-awards-reel__control { width: 44px; height: 44px; border-radius: 999px; border: 1px solid rgba(38, 73, 95, 0.16); background: #eef3f6; color: #26495f; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, opacity 0.25s ease, transform 0.25s ease; }
.home .asy-awards-reel__control:hover { border-color: #6e8790; background: #6e8790; color: #fff; transform: translateY(-1px); }
.home .asy-awards-reel__control:disabled { border-color: rgba(38, 73, 95, 0.08); background: #f6f1ea; color: rgba(38, 73, 95, 0.38); cursor: default; transform: none; }
.home .asy-awards-reel__viewport { overflow: hidden; }
.home .asy-awards-rail { display: flex; gap: 14px; width: max-content; padding: 0 2px 6px; transition: transform 0.45s ease; will-change: transform; }
.home .asy-awards-rail::-webkit-scrollbar { display: none; }
.home .asy-award-card { flex: 0 0 clamp(260px, 24vw, 300px); width: clamp(260px, 24vw, 300px); max-width: 320px; gap: 12px; min-height: 96px; padding: 14px 16px; background: #fffdf9; border: 1px solid rgba(38, 73, 95, 0.1); box-shadow: 0 10px 24px rgba(20, 29, 37, 0.04); }
.home .asy-award-card:hover { border-color: rgba(36, 63, 87, 0.24); box-shadow: 0 16px 30px rgba(20, 29, 37, 0.07); }
.home .asy-award-card__badge { width: 58px; height: 58px; background: #eef3f6; border-color: rgba(126, 151, 172, 0.2); }
.home .asy-award-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; }
.home .asy-award-card__body { gap: 6px; }
.home .asy-award-card__title { font-size: 13px; line-height: 1.35; }
.home .asy-award-card__summary { margin: 0; font-size: 12px; line-height: 1.45; color: #5f6d79; }
.home .asy-award-card__year { color: #243f57; background: transparent; padding: 0; border-radius: 0; font-size: 11px; }
.home .asy-award-card__arrow { color: #7e97ac; opacity: 1; }

.home #why-asy .asy-why-grid { gap: 18px; }
.home #why-asy .asy-why-card {
  padding: 40px 30px 36px;
  background: linear-gradient(145deg, #203039 0%, #2d4350 100%);
  border: 1px solid rgba(110, 135, 144, 0.22);
  box-shadow: 0 16px 40px rgba(9, 14, 18, 0.15);
  color: #fff;
}
.home #why-asy .asy-why-card:hover {
  border-color: rgba(110, 135, 144, 0.4);
  box-shadow: 0 20px 48px rgba(9, 14, 18, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.home #why-asy .asy-why-card::after { transform: scaleX(1); height: 2px; background: linear-gradient(90deg, #dcc7ad 0%, rgba(110, 135, 144, 0.4) 100%); }
.home #why-asy .asy-why-card:nth-child(1)::before,
.home #why-asy .asy-why-card:nth-child(2)::before,
.home #why-asy .asy-why-card:nth-child(3)::before { color: rgba(110, 135, 144, 0.18); }
.home #why-asy .asy-why-card__icon {
  background: #6e8790;
  color: #fffaf4;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.home #why-asy .asy-why-card h3 { color: #fffdf9; }
.home #why-asy .asy-why-card p { color: rgba(255, 255, 255, 0.6); }

.home .asy-home-contact-section { padding: 72px 0 78px; background: #26495f; }
.home .asy-home-contact-section__bg { opacity: 0.42; }
.home .asy-home-contact { gap: 30px; padding: 0; border: none; border-radius: 0; background: transparent; box-shadow: none; align-items: center; }
.home .asy-home-contact__text { display: flex; flex-direction: column; justify-content: center; gap: 18px; padding: 20px 18px 20px 0; border-radius: 0; background: transparent; }
.home .asy-home-contact__text::before { display: none; }
.home .asy-home-contact__text h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.4rem); }
.home .asy-home-contact__text .asy-section-eyebrow { color: #dcc7ad; }
.home .asy-home-contact__text .asy-section-eyebrow::before { background: #dcc7ad; }
.home .asy-home-contact__detail,
.home .asy-home-contact__detail a,
.home .asy-home-contact__detail span { color: rgba(247, 243, 236, 0.82); }
.home .asy-home-contact__detail svg { color: #7e97ac; }
.home .asy-home-contact__form { position: relative; padding: 38px 36px 40px; background: #f3ede4; border: 1px solid rgba(24, 43, 59, 0.14); box-shadow: 0 22px 48px rgba(9, 14, 18, 0.16); border-radius: var(--radius-lg); }
.home .asy-home-contact__form::before { display: none; }
.home .asy-home-contact__form .asy-form-group label { color: #243f57; }
.home .asy-home-contact__form .asy-form-group input,
.home .asy-home-contact__form .asy-form-group select,
.home .asy-home-contact__form .asy-form-group textarea { background: rgba(255, 255, 255, 0.94); border-color: rgba(36, 63, 87, 0.12); color: #243f57; }
.home .asy-home-contact__form .asy-btn-primary { min-width: 220px; background: #26495f; border-color: #26495f; color: #fffdf9; }
.home .asy-home-contact__form .asy-btn-primary:hover { background: #6e8790; border-color: #6e8790; color: #fffdf9; }
.home .asy-home-contact__form .asy-form-group input:focus,
.home .asy-home-contact__form .asy-form-group select:focus,
.home .asy-home-contact__form .asy-form-group textarea:focus { border-color: rgba(126, 151, 172, 0.7); box-shadow: 0 0 0 3px rgba(126, 151, 172, 0.18); }

.home #practices { padding-top: 82px; }
.home .asy-practice-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.home .asy-practice-card,
.home .asy-practice-card:nth-child(1) { grid-column: span 1; min-height: 204px; padding: 24px 22px 20px; }
.home .asy-practice-card { background: #fffdf9; border: 1px solid rgba(36, 63, 87, 0.08); box-shadow: 0 12px 28px rgba(20, 29, 37, 0.04); }
.home .asy-practice-card::before { display: none; }
.home .asy-practice-card::after { left: 22px; right: 22px; height: 2px; transform: none; background: #7e97ac; }
.home .asy-practice-card:hover { transform: translateY(-4px); border-color: rgba(36, 63, 87, 0.16); box-shadow: 0 18px 36px rgba(20, 29, 37, 0.07); }
.home .asy-practice-card:hover::after { transform: none; }
.home .asy-practice-card__icon { background: #eef3f6; border: 1px solid rgba(126, 151, 172, 0.18); color: #243f57; transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease; }
.home .asy-practice-card:hover .asy-practice-card__icon { background: #7e97ac; border-color: #7e97ac; color: #fff; box-shadow: 0 12px 24px rgba(126, 151, 172, 0.24); }
.home .asy-practice-card__name { font-size: 1.04rem; }
.home .asy-practice-card__desc { color: #5f6d79; }
.home .asy-practice-card__arrow { color: #243f57; }
.home .asy-practice-card:nth-child(1) { background: #26495f; border-color: rgba(126, 151, 172, 0.34); box-shadow: 0 18px 34px rgba(20, 29, 37, 0.14); }
.home .asy-practice-card:nth-child(1)::after { background: #dcc7ad; }
.home .asy-practice-card:nth-child(1) .asy-practice-card__icon,
.home .asy-practice-card:nth-child(1):hover .asy-practice-card__icon { background: rgba(255, 255, 255, 0.08); border-color: rgba(126, 151, 172, 0.22); color: #f7f3ec; box-shadow: none; }
.home .asy-practice-card:nth-child(1) .asy-practice-card__name,
.home .asy-practice-card:nth-child(1) .asy-practice-card__arrow { color: #f7f3ec; }
.home .asy-practice-card:nth-child(1) .asy-practice-card__desc { color: rgba(247, 243, 236, 0.78); }

.home #industries { padding: 74px 0; background: #26495f; }
.home #industries::before { display: none; }
.home #industries .asy-container { display: block; position: relative; z-index: 1; }
.home #industries .asy-section-header h2,
.home #industries .asy-industries-head h2 { color: #fffdf9; }
.home .asy-industries-head__title .asy-section-eyebrow::before { background: #dcc7ad; }
.home .asy-industries-head { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: 28px; align-items: end; margin-bottom: 24px; }
.home .asy-industries-head__title .asy-section-eyebrow { margin-bottom: 10px; color: #dcc7ad; }
.home .asy-industries-head__text { max-width: 620px; margin: 0; color: rgba(247, 243, 236, 0.78); }
.home .asy-sectors-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.home #industries .asy-sector-card { min-height: 0; padding: 18px 16px 16px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(126, 151, 172, 0.22); box-shadow: none; }
.home #industries .asy-sector-card::before { left: 16px; width: 44px; background: #dcc7ad; }
.home #industries .asy-sector-card__icon { width: 44px; height: 44px; background: rgba(110, 135, 144, 0.2); color: #f1f5f7; }
.home #industries .asy-sector-card:hover { transform: translateY(-4px); border-color: rgba(126, 151, 172, 0.38); background: rgba(255, 255, 255, 0.08); box-shadow: 0 18px 32px rgba(14, 22, 28, 0.16); }
.home #industries .asy-sector-card:hover .asy-sector-card__icon { background: #7e97ac; color: #fff; }
.home #industries .asy-sector-card h3 { color: #fffdf9; font-size: 1rem; }
.home #industries .asy-sector-card p { color: rgba(247, 243, 236, 0.74); font-size: 14px; }

.home .asy-partner-card,
.home .asy-insight-card,
.post-type-archive-insight .asy-insight-card,
.tax-insight_category .asy-insight-card,
.page-template-page-about .asy-membership-card,
.page-template-page-about .asy-value-card,
.page-template-page-practices .asy-practice-detail__content,
.post-type-archive-partner .asy-partner-card--detailed,
.search .asy-search-result,
.search .asy-search-empty,
.single-insight .asy-article-content,
.single-insight .asy-article-side-card,
.single-insight .asy-article-author-card,
.single-partner .asy-partner-bio,
.single-partner .asy-partner-sidebar-card,
.single-practice .asy-practice-single__content,
.single-practice .asy-article-side-card,
.page:not(.home):not(.page-template-page-about):not(.page-template-page-practices):not(.page-template-page-contact) .asy-article-content { background: #fffdf9; border-color: rgba(36, 63, 87, 0.08); }
.home .asy-partner-card::before { background: #7e97ac; }
.home .asy-partner-card__info::before { color: #dcc7ad; }
.home .asy-partner-card__portrait { background: #e8eef2; }
.home .asy-insight-card::before { background: #dcc7ad; }
.home .asy-insight-card__read-more,
.post-type-archive-insight .asy-insight-card__read-more,
.tax-insight_category .asy-insight-card__read-more { color: #243f57; }

.single-partner .asy-partner-cta { padding: 24px; background: #243f57; border: 1px solid rgba(126, 151, 172, 0.2); box-shadow: 0 24px 48px rgba(12, 18, 25, 0.12); }
.single-partner .asy-partner-cta__inner { padding: 34px 38px; border-radius: 26px; background: #1d3244; border: 1px solid rgba(255, 255, 255, 0.08); }
.single-partner .asy-partner-cta h2,
.single-partner .asy-partner-cta__inner h2 { color: #dcc7ad; }
.single-partner .asy-partner-cta p,
.single-partner .asy-partner-cta__inner p { color: rgba(247, 243, 236, 0.78); }
.single-partner .asy-partner-cta .asy-btn-primary { background: #f7f3ec; border-color: #f7f3ec; color: #243f57; }
.single-partner .asy-partner-cta .asy-btn-primary:hover { background: #dcc7ad; border-color: #dcc7ad; color: #243f57; }

.page-template-page-contact .asy-contact-card { background: #243f57; border-color: rgba(126, 151, 172, 0.24); }
.page-template-page-contact .asy-contact-card::before { background: #dcc7ad; }
.page-template-page-contact .asy-contact-card,
.page-template-page-contact .asy-contact-card h3,
.page-template-page-contact .asy-contact-card p,
.page-template-page-contact .asy-contact-card a,
.page-template-page-contact .asy-contact-card li,
.page-template-page-contact .asy-contact-card strong { color: #f7f3ec; }
.page-template-page-contact .asy-contact-languages__list .asy-chip { background: #1d3244; border-color: rgba(126, 151, 172, 0.24); color: #f7f3ec; }
.page-template-page-contact .asy-contact-form { background: #dbe4eb; }
.page-template-page-contact .asy-contact-form input,
.page-template-page-contact .asy-contact-form select,
.page-template-page-contact .asy-contact-form textarea { background: rgba(255, 255, 255, 0.94); }

@media (max-width: 1180px) {
  .home .asy-practice-grid,
  .home .asy-sectors-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1024px) {
  .home .asy-section { padding: 72px 0; }
  .home .asy-awards-reel__head,
  .home .asy-industries-head,
  .home .asy-practice-grid,
  .home .asy-sectors-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home .asy-industries-head { display: grid; }
  .home .asy-home-contact { grid-template-columns: 1fr; }
  .single-partner .asy-partner-cta__inner { padding: 28px 30px; }
}

@media (max-width: 640px) {
  body:not(.home) .asy-section,
  .home .asy-section,
  .home .asy-home-contact-section { padding: 64px 0; }
  .home .asy-awards-reel__head,
  .home .asy-practice-grid,
  .home .asy-sectors-grid,
  .home #why-asy .asy-why-grid,
  .home .asy-industries-head { display: block; }
  .home .asy-awards-reel__controls { margin-top: 16px; }
  .home .asy-home-contact,
  .home .asy-home-contact__text,
  .home .asy-home-contact__form,
  .single-partner .asy-partner-cta,
  .single-partner .asy-partner-cta__inner { padding-left: 24px; padding-right: 24px; }
}





/* FINAL HERO-PALETTE ALIGNMENT */
.home .asy-site-header.scrolled .asy-nav-list a,
.home .asy-site-header.scrolled .asy-nav-list li a,
.home .asy-site-header.scrolled .asy-logo-text,
.home .asy-site-header.scrolled .asy-logo-suffix { color: #203039; }
.home .asy-site-header.scrolled .asy-nav-list a::after,
.home .asy-site-header.scrolled .asy-nav-list li a::after,
.home .asy-site-header.scrolled .asy-logo-line { background: #203039; }
.home .asy-practice-card:nth-child(1) { background: #203039; }

body:not(.home) .asy-site-header.scrolled .asy-nav-list a,
body:not(.home) .asy-site-header.scrolled .asy-nav-list li a,
body:not(.home) .asy-site-header.scrolled .asy-logo-text,
body:not(.home) .asy-site-header.scrolled .asy-logo-suffix { color: #203039; }
body:not(.home) .asy-site-header.scrolled .asy-nav-list a::after,
body:not(.home) .asy-site-header.scrolled .asy-nav-list li a::after,
body:not(.home) .asy-site-header.scrolled .asy-logo-line { background: #203039; }

body:not(.home) .asy-site-header.scrolled .asy-header-cta,
.home .asy-site-header.scrolled .asy-header-cta,
.home .asy-home-contact-section,
.home #industries,
.home .asy-practice-card:nth-child(1),
.single-partner .asy-partner-cta,
.page-template-page-contact .asy-contact-card {
  background: #203039;
  border-color: #203039;
}

body:not(.home) .asy-site-header.scrolled .asy-header-cta:hover,
.home .asy-site-header.scrolled .asy-header-cta:hover,
.home .asy-home-contact__form .asy-btn-primary:hover {
  background: #6e8790;
  border-color: #6e8790;
}

body:not(.home) .asy-site-header.scrolled .asy-menu-toggle span,
.home .asy-site-header.scrolled .asy-menu-toggle span {
  background: #203039;
}

.home .asy-site-footer,
body:not(.home) .asy-site-footer {
  background: linear-gradient(120deg, #151a1d 0%, #203039 42%, #6e8790 100%);
}

.home .asy-section-eyebrow,
.home .asy-award-card__year,
.home #why-asy .asy-why-card__icon,
.home .asy-home-contact__form .asy-form-group label,
.home .asy-home-contact__form .asy-form-group input,
.home .asy-home-contact__form .asy-form-group select,
.home .asy-home-contact__form .asy-form-group textarea,
.home .asy-practice-card__icon,
.home .asy-practice-card__arrow,
.tax-insight_category .asy-insight-card__read-more,
.single-partner .asy-partner-cta .asy-btn-primary,
.single-partner .asy-partner-cta .asy-btn-primary:hover {
  color: #203039;
}

.home .asy-home-contact__form .asy-btn-primary {
  background: #203039;
  border-color: #203039;
}

.single-partner .asy-partner-cta__inner,
.page-template-page-contact .asy-contact-languages__list .asy-chip {
  background: rgba(110, 135, 144, 0.12);
  border-color: rgba(110, 135, 144, 0.22);
}
/* SUBTLE HERO ECHO ON DARK SECTIONS */
.home .asy-home-contact-section,
.home #industries,
.home .asy-practice-card:nth-child(1) {
  position: relative;
  overflow: hidden;
}

.home .asy-home-contact-section::before,
.home #industries::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 0, rgba(255, 255, 255, 0.028) 1px, transparent 1px, transparent 128px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.024) 0, rgba(255, 255, 255, 0.024) 1px, transparent 1px, transparent 128px),
    radial-gradient(circle at 84% 18%, rgba(110, 135, 144, 0.12) 0%, transparent 30%),
    radial-gradient(circle at 16% 82%, rgba(220, 199, 173, 0.08) 0%, transparent 24%);
  opacity: 0.72;
}

.home .asy-home-contact-section .asy-container,
.home #industries .asy-container {
  position: relative;
  z-index: 1;
}

.home .asy-home-contact {
  border-top: 1px solid rgba(110, 135, 144, 0.16);
}

.home #industries .asy-sector-card,
.home .asy-practice-card:nth-child(1) {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.home .asy-practice-card:nth-child(1)::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 18%, rgba(110, 135, 144, 0.16) 0%, transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0) 38%);
}
/* LIFTED HERO MID-TONE REFINEMENT */
.home .asy-home-contact-section,
.home #industries,
.home .asy-practice-card:nth-child(1) {
  background: #35505f;
  border-color: #35505f;
}

.home .asy-home-contact-section::before,
.home #industries::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.038) 0, rgba(255, 255, 255, 0.038) 1px, transparent 1px, transparent 128px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 128px),
    radial-gradient(circle at 84% 18%, rgba(110, 135, 144, 0.16) 0%, transparent 32%),
    radial-gradient(circle at 16% 82%, rgba(220, 199, 173, 0.1) 0%, transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 42%);
  opacity: 0.9;
}

.home .asy-home-contact {
  border-top: 1px solid rgba(110, 135, 144, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.home #industries .asy-sector-card {
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(110, 135, 144, 0.28);
}

.home #industries .asy-sector-card:hover {
  background: rgba(255, 255, 255, 0.095);
  border-color: rgba(110, 135, 144, 0.42);
}

.home .asy-practice-card:nth-child(1)::before {
  background:
    radial-gradient(circle at 82% 18%, rgba(110, 135, 144, 0.22) 0%, transparent 36%),
    radial-gradient(circle at 18% 78%, rgba(220, 199, 173, 0.08) 0%, transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0) 40%);
}
/* PRACTICE + INDUSTRIES ACCENT CORRECTIONS */
.home .asy-practice-card:nth-child(1) .asy-practice-card__name {
  color: #dcc7ad;
}

.home #industries .asy-sector-card h3 {
  color: #dcc7ad;
}

.home #industries .asy-sector-card:hover h3 {
  color: #dcc7ad;
}

.home #industries .asy-sector-card:hover,
.home #industries .asy-sector-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(110, 135, 144, 0.42);
  background: rgba(255, 255, 255, 0.095);
  box-shadow: 0 18px 32px rgba(14, 22, 28, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.home #industries .asy-sector-card:hover .asy-sector-card__icon,
.home #industries .asy-sector-card:focus-within .asy-sector-card__icon {
  background: #7e97ac;
  color: #fff;
}
/* SLIGHTLY DARKER MID-HARBOR TONE */
.home .asy-home-contact-section,
.home #industries,
.home .asy-practice-card:nth-child(1) {
  background: #314856;
  border-color: #314856;
}
/* DARKER MID-HARBOR + INDUSTRIES HEADING CORRECTION */
.home .asy-home-contact-section,
.home #industries,
.home .asy-practice-card:nth-child(1) {
  background: #2d4350;
  border-color: #2d4350;
}

.home #industries .asy-section-header h2,
.home #industries .asy-industries-head h2,
.home .asy-industries-head__title .asy-section-eyebrow {
  color: #dcc7ad;
}

.home .asy-industries-head__title .asy-section-eyebrow::before {
  background: #dcc7ad;
}

.home #industries .asy-sector-card h3,
.home #industries .asy-sector-card:hover h3 {
  color: #fffdf9;
}
/* INDUSTRIES EYEBROW LIMESTONE FIX */
.home #industries .asy-section-eyebrow,
.home #industries .asy-industries-head .asy-section-eyebrow {
  color: #dcc7ad;
}
/* DARK SECTION PARALLAX DRIFT */
.home .asy-home-contact-section::before,
.home #industries::before,
.home .asy-practice-card:nth-child(1)::before {
  transform: translate3d(var(--dark-drift-x, 0px), var(--dark-drift-y, 0px), 0);
  will-change: transform;
}
/* LIMESTONE SHIMMER ON DARK SECTION ACCENTS */
@keyframes asyLimestoneShimmer {
  0% { background-position: -180px 0; opacity: 0.62; }
  50% { opacity: 0.96; }
  100% { background-position: 180px 0; opacity: 0.62; }
}

.home .asy-home-contact__text .asy-section-eyebrow::before,
.home #industries .asy-section-eyebrow::before,
.home .asy-practice-card:nth-child(1)::after {
  background-image: linear-gradient(90deg, rgba(220, 199, 173, 0.65) 0%, rgba(247, 241, 231, 0.92) 50%, rgba(220, 199, 173, 0.65) 100%);
  background-size: 220px 100%;
  animation: asyLimestoneShimmer 9s ease-in-out infinite alternate;
}

.home .asy-home-contact-section::before,
.home #industries::before {
  opacity: 1;
}
/* CONTACT HERO-ECHO ANIMATION TEST */
@keyframes asyContactGridDrift {
  0% { background-position: 0 0, 0 0, 0 0; }
  100% { background-position: 26px 18px, 26px 18px, 0 0; }
}

@keyframes asyContactGlowShift {
  0% { transform: translate3d(-1.5%, -1.5%, 0) scale(1); opacity: 0.42; }
  100% { transform: translate3d(1.5%, 1.5%, 0) scale(1.04); opacity: 0.7; }
}

.home .asy-home-contact-section__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.home .asy-home-contact-section::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 128px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0, rgba(255, 255, 255, 0.045) 1px, transparent 1px, transparent 128px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0) 42%);
  background-size: 128px 128px, 128px 128px, auto;
  animation: asyContactGridDrift 18s linear infinite alternate;
  opacity: 0.92;
}

.home .asy-home-contact-section__bg::after {
  content: '';
  position: absolute;
  inset: -8%;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 18%, rgba(110, 135, 144, 0.18) 0%, transparent 28%),
    radial-gradient(circle at 18% 78%, rgba(220, 199, 173, 0.12) 0%, transparent 20%);
  animation: asyContactGlowShift 13s ease-in-out infinite alternate;
}

.home .asy-home-contact-section .asy-hero-line--1,
.home .asy-home-contact-section .asy-hero-line--2 {
  opacity: 0.1;
  animation-duration: 16s;
}

.home .asy-home-contact-section .asy-hero-line--1 {
  top: 14%;
  left: 8%;
  width: 32%;
}

.home .asy-home-contact-section .asy-hero-line--2 {
  top: auto;
  bottom: 18%;
  right: 10%;
  left: auto;
  width: 26%;
}

.home .asy-home-contact-section .asy-hero-geo--diamond,
.home .asy-home-contact-section .asy-hero-geo--circle {
  opacity: 0.09;
}

.home .asy-home-contact-section .asy-hero-geo--diamond {
  top: 14%;
  right: 12%;
  width: 180px;
  height: 180px;
  animation-duration: 19s;
}

.home .asy-home-contact-section .asy-hero-geo--circle {
  left: 52%;
  bottom: 10%;
  width: 120px;
  height: 120px;
  animation-duration: 16s;
}

.home .asy-home-contact-section .asy-container {
  position: relative;
  z-index: 1;
}
/* INDUSTRIES + FOOTER HERO-ECHO CONTINUATION */
@keyframes asyIndustriesGridDrift {
  0% { background-position: 0 0, 0 0, 0 0; }
  100% { background-position: 20px 14px, 20px 14px, 0 0; }
}

@keyframes asyFooterGridDrift {
  0% { background-position: 0 0, 0 0, 0 0; }
  100% { background-position: 24px 16px, 24px 16px, 0 0; }
}

@keyframes asyFooterGlowShift {
  0% { transform: translate3d(-1.5%, 0, 0) scale(1); opacity: 0.34; }
  100% { transform: translate3d(1.5%, 0.5%, 0) scale(1.04); opacity: 0.58; }
}

.home #industries {
  position: relative;
  overflow: hidden;
}

.home .asy-industries-echo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.home #industries::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0, rgba(255, 255, 255, 0.045) 1px, transparent 1px, transparent 128px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 128px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.022) 0%, rgba(255, 255, 255, 0) 44%);
  background-size: 128px 128px, 128px 128px, auto;
  animation: asyIndustriesGridDrift 20s linear infinite alternate;
  opacity: 0.82;
}

.home #industries .asy-hero-line--1,
.home #industries .asy-hero-line--2 {
  opacity: 0.085;
  animation-duration: 18s;
}

.home #industries .asy-hero-line--1 {
  top: 16%;
  left: 10%;
  width: 26%;
}

.home #industries .asy-hero-line--2 {
  top: auto;
  right: 12%;
  bottom: 16%;
  left: auto;
  width: 24%;
}

.home #industries .asy-hero-geo--diamond,
.home #industries .asy-hero-geo--circle {
  opacity: 0.075;
}

.home #industries .asy-hero-geo--diamond {
  top: 12%;
  right: 10%;
  width: 160px;
  height: 160px;
  animation-duration: 20s;
}

.home #industries .asy-hero-geo--circle {
  left: 14%;
  bottom: 12%;
  width: 100px;
  height: 100px;
  animation-duration: 17s;
}

.home .asy-site-footer {
  overflow: hidden;
}

.home .asy-site-footer::before {
  animation: asyLimestoneShimmer 11s ease-in-out infinite alternate;
}

.home .asy-site-footer::after {
  animation: asyFooterGridDrift 24s linear infinite alternate;
}

.home .asy-site-footer .asy-container::before {
  content: '';
  position: absolute;
  inset: -10% -6%;
  pointer-events: none;
  background:
    radial-gradient(circle at 84% 18%, rgba(110, 135, 144, 0.18) 0%, transparent 28%),
    radial-gradient(circle at 14% 82%, rgba(220, 199, 173, 0.12) 0%, transparent 20%);
  animation: asyFooterGlowShift 16s ease-in-out infinite alternate;
}

.home .asy-site-footer .asy-container {
  position: relative;
  z-index: 1;
}


/* ========================================================
   PRELOADER
   ======================================================== */

.asy-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--navy-deep, #141D2B);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1) 0.15s, visibility 1s 0.15s;
}

.asy-preloader--done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.asy-preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.asy-preloader__logo {
  width: 220px;
  opacity: 0;
  transform: translateY(16px);
  animation: asyPreloaderLogoIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

.asy-preloader__logo img {
  width: 100%;
  height: auto;
}

.asy-preloader__bar {
  width: 160px;
  height: 2px;
  background: rgba(201, 169, 110, 0.15);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: asyPreloaderFadeIn 0.5s 0.6s forwards;
}

.asy-preloader__bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  animation: asyPreloaderBarFill 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
}

@keyframes asyPreloaderLogoIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes asyPreloaderFadeIn {
  to { opacity: 1; }
}

@keyframes asyPreloaderBarFill {
  0% { width: 0%; }
  60% { width: 70%; }
  100% { width: 100%; }
}


/* ========================================================
   PAGE TRANSITIONS
   ======================================================== */

.asy-page-transition {
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: var(--navy-deep, #141D2B);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.asy-page-transition--active {
  opacity: 1;
  pointer-events: all;
}


/* ========================================================
   404 PAGE Ã¢Â€Â” IMMERSIVE
   ======================================================== */

.asy-404 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-deep, #141D2B);
  overflow: hidden;
  padding: 120px 24px 80px;
}

.asy-404__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.asy-404__constellation {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Geometric shapes */
.asy-404__geo {
  position: absolute;
  border: 1px solid rgba(201, 169, 110, 0.08);
}

.asy-404__geo--diamond {
  top: 15%;
  right: 12%;
  width: 180px;
  height: 180px;
  transform: rotate(45deg);
  animation: asy404GeoFloat 18s ease-in-out infinite alternate;
}

.asy-404__geo--diamond-2 {
  bottom: 20%;
  left: 8%;
  width: 100px;
  height: 100px;
  transform: rotate(45deg);
  animation: asy404GeoFloat 14s ease-in-out infinite alternate-reverse;
}

.asy-404__geo--circle {
  top: 60%;
  right: 20%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  animation: asy404CircleFloat 22s ease-in-out infinite alternate;
}

@keyframes asy404GeoFloat {
  0% { transform: rotate(45deg) translateY(0); }
  100% { transform: rotate(45deg) translateY(-20px); }
}

@keyframes asy404CircleFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-15px); }
}

/* Orbs */
.asy-404__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.asy-404__orb--1 {
  top: 20%;
  left: 15%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.08), transparent 70%);
  animation: asy404OrbPulse 8s ease-in-out infinite alternate;
}

.asy-404__orb--2 {
  bottom: 10%;
  right: 10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(110, 135, 144, 0.06), transparent 70%);
  animation: asy404OrbPulse 10s ease-in-out infinite alternate-reverse;
}

@keyframes asy404OrbPulse {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.15); }
}

/* Content */
.asy-404__inner {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 600px;
}

/* 404 Number */
.asy-404__number-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.asy-404__digit {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  letter-spacing: -0.04em;
}

.asy-404__digit--accent {
  position: relative;
  width: clamp(4rem, 10vw, 7.5rem);
  height: clamp(5rem, 12vw, 9rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.asy-404__compass {
  width: 80%;
  height: 80%;
  color: rgba(255, 255, 255, 0.12);
  animation: asy404CompassSpin 30s linear infinite;
}

@keyframes asy404CompassSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.asy-404__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.asy-404__subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 40px;
}

.asy-404__actions {
  margin-bottom: 48px;
}

.asy-404__actions .asy-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.asy-404__actions .asy-btn-primary svg {
  flex-shrink: 0;
}

/* Navigation links */
.asy-404__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.asy-404__nav-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.3);
  margin-right: 4px;
}

.asy-404__nav-link {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--t-fast);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

.asy-404__nav-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.asy-404__nav-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

/* 404 responsive */
@media (max-width: 639px) {
  .asy-404 {
    padding: 100px 20px 60px;
  }

  .asy-404__nav {
    flex-direction: column;
    gap: 8px;
  }

  .asy-404__nav-dot {
    display: none;
  }
}


/* ========================================================
   SINGLE PRACTICE PAGE
   ======================================================== */

/* Hero Ã¢Â€Â” uses site-wide harbor gradient (matches about, contact, etc.) */
.asy-practice-hero {
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 56px;
  background: linear-gradient(120deg, #151a1d 0%, #203039 42%, #6e8790 100%);
  position: relative;
  overflow: hidden;
}

.asy-practice-hero h1 {
  max-width: none;
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #f7f2e9;
  text-shadow: 0 2px 20px rgba(21, 26, 29, 0.6), 0 1px 4px rgba(21, 26, 29, 0.4);
}

.asy-practice-hero .asy-section-eyebrow {
  color: #d4b691;
  margin-bottom: 16px;
  text-shadow: 0 1px 12px rgba(21, 26, 29, 0.6);
}

.asy-practice-hero .asy-section-eyebrow::before {
  background: linear-gradient(90deg, rgba(212, 182, 145, 0.8) 0%, transparent 100%);
}

/* Hero partner info */
.asy-practice-hero__partners {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.asy-practice-hero__partners-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d4b691;
  white-space: nowrap;
  text-shadow: 0 1px 12px rgba(21, 26, 29, 0.6);
}

.asy-practice-hero__partners-list {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.asy-practice-hero__partner {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: opacity var(--t-fast);
}

.asy-practice-hero__partner:hover {
  opacity: 0.8;
}

.asy-practice-hero__partner-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(221, 207, 188, 0.5);
}

.asy-practice-hero__partner-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #dcc7ad;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
}

.asy-practice-hero__partner-name {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
  color: #f7f2e9;
}

.asy-practice-hero .asy-breadcrumb {
  margin-bottom: 20px;
}

.single-practice .asy-practice-hero .asy-breadcrumb .asy-breadcrumb-current {
  color: #d4b691;
  font-weight: 600;
  text-shadow: 0 1px 12px rgba(21, 26, 29, 0.65);
}

.asy-practice-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.asy-practice-hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 128px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0, rgba(255, 255, 255, 0.045) 1px, transparent 1px, transparent 128px);
  background-size: 128px 128px;
  opacity: 0.24;
}

.asy-practice-hero__bg::after {
  content: '';
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 18% 72%, rgba(212, 182, 145, 0.18) 0%, transparent 24%),
    radial-gradient(circle at 86% 24%, rgba(110, 135, 144, 0.22) 0%, transparent 26%);
  opacity: 0.92;
}

.asy-practice-hero .asy-page-hero__line {
  display: block;
  opacity: 0.1;
}

.asy-practice-hero .asy-page-hero__line--1 {
  left: 16%;
  top: -14%;
  height: 136%;
}

.asy-practice-hero .asy-page-hero__line--2 {
  left: 62%;
  top: -8%;
  height: 124%;
}

.asy-practice-hero__geo-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.asy-practice-hero__geo-diamond {
  position: absolute;
  top: 18%;
  right: 28%;
  width: 110px;
  height: 110px;
  border: 1.5px solid rgba(212, 182, 145, 0.15);
  transform: rotate(45deg);
}

.asy-practice-hero__geo-diamond--sm {
  top: auto;
  bottom: 26%;
  right: auto;
  left: 48%;
  width: 54px;
  height: 54px;
  border-color: rgba(212, 182, 145, 0.1);
}

.asy-practice-hero__geo-circle {
  position: absolute;
  bottom: 22%;
  right: 18%;
  width: 160px;
  height: 160px;
  border: 1.5px solid rgba(110, 135, 144, 0.14);
  border-radius: 50%;
}

.asy-practice-hero__geo-circle--sm {
  bottom: auto;
  top: 28%;
  right: auto;
  left: 32%;
  width: 80px;
  height: 80px;
  border-color: rgba(212, 182, 145, 0.1);
}

.asy-practice-hero__geo-line--1 {
  position: absolute;
  top: 34%;
  left: 22%;
  width: 52%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 182, 145, 0.18) 30%, rgba(212, 182, 145, 0.05) 80%, transparent 100%);
  transform: rotate(-3deg);
}

.asy-practice-hero__geo-line--2 {
  position: absolute;
  bottom: 28%;
  left: 34%;
  width: 48%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(110, 135, 144, 0.14) 40%, transparent 100%);
  transform: rotate(2.5deg);
}

.asy-practice-hero__geo-line--3 {
  position: absolute;
  top: 52%;
  left: 18%;
  width: 58%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 182, 145, 0.1) 20%, rgba(110, 135, 144, 0.08) 50%, rgba(212, 182, 145, 0.05) 80%, transparent 100%);
  transform: rotate(-1.5deg);
}

.asy-practice-hero__geo-dots {
  position: absolute;
  top: 58%;
  right: 12%;
  width: 52px;
  height: 52px;
  background-image: radial-gradient(rgba(212, 182, 145, 0.2) 1.3px, transparent 1.3px);
  background-size: 10px 10px;
}

.asy-practice-hero__geo-dots--2 {
  top: 22%;
  right: auto;
  left: 42%;
  width: 44px;
  height: 44px;
  background-image: radial-gradient(rgba(110, 135, 144, 0.16) 1.2px, transparent 1.2px);
  background-size: 10px 10px;
}

.asy-practice-hero__geo-arc {
  position: absolute;
  top: 12%;
  left: 56%;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(212, 182, 145, 0.08);
  border-radius: 50%;
  clip-path: polygon(0 0, 55% 0, 55% 100%, 0 100%);
  pointer-events: none;
}

/* Key Info Strip */
.asy-practice-strip {
  background: var(--cream);
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(28, 37, 54, 0.04);
  position: sticky;
  top: 68px;
  z-index: 20;
}

.asy-practice-strip__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 18px 0;
  flex-wrap: wrap;
}

.asy-practice-strip__partners {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.asy-practice-strip__label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  white-space: nowrap;
}

.asy-practice-strip__partner-list {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.asy-practice-strip__partner {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: opacity var(--t-fast);
}

.asy-practice-strip__partner:hover {
  opacity: 0.8;
}

.asy-practice-strip__partner-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.asy-practice-strip__partner-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
}

.asy-practice-strip__partner-name {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

.asy-practice-strip__stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 40px;
  border-left: 1px solid var(--border);
}

.asy-practice-strip__stat-number {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1;
}

.asy-practice-strip__action {
  margin-left: auto;
}

/* Practice page: compact section padding Ã¢Â€Â” body prefix for specificity over body:not(.home) */
body.single-practice .asy-section {
  padding: 56px 0;
}

body.single-practice .asy-practice-single__services {
  padding-top: 48px;
  padding-bottom: 48px;
}

body.single-practice .asy-practice-single__overview {
  padding-top: 48px;
}

/* Content card styling */
.single-practice .asy-practice-single__content {
  background: rgba(255, 252, 248, 0.94);
  border: 1px solid rgba(32, 48, 57, 0.08);
  border-radius: 22px;
  padding: 32px 36px;
}

.single-practice .asy-prose {
  font-size: 15.5px;
  line-height: 1.85;
}

.single-practice .asy-prose h2 {
  font-size: 1.5rem;
  margin: 2em 0 0.7em;
}

.single-practice .asy-prose h3 {
  font-size: 1.2rem;
  margin: 1.6em 0 0.5em;
}

.single-practice .asy-prose h2:first-child {
  margin-top: 0;
}

/* Sidebar-only layout (no post content) */
.asy-practice-single__layout--sidebar-only {
  grid-template-columns: 1fr;
  max-width: 420px;
}

.asy-practice-single__overview--sidebar-only {
  padding-top: 32px;
  padding-bottom: 32px;
}

/* Sidebar related links */
.asy-practice-single__related-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.asy-practice-single__related-links li {
  border-bottom: 1px solid var(--border-light);
}

.asy-practice-single__related-links li:last-child {
  border-bottom: none;
}

.asy-practice-single__related-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  transition: color var(--t-fast);
}

.asy-practice-single__related-links a:hover {
  color: var(--gold-dark);
}

.asy-practice-single__related-links a span {
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
  margin-left: 8px;
}

/* Breadcrumb */
.asy-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  margin-bottom: 20px;
}

.asy-breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color var(--t-fast);
}

.asy-breadcrumb a:hover {
  color: var(--gold-light);
}

.asy-breadcrumb-sep {
  color: rgba(255, 255, 255, 0.25);
}

.asy-breadcrumb-current {
  color: rgba(255, 255, 255, 0.8);
}

/* Layout: content + sidebar */
.asy-practice-single__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.asy-practice-single__sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Lead Partners card */
.asy-practice-single__partners-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.asy-practice-single__partner-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--border-light);
  transition: background var(--t-fast);
}

.asy-practice-single__partner-row:last-child {
  border-bottom: none;
}

.asy-practice-single__partner-row:hover {
  color: var(--gold-dark);
}

.asy-practice-single__partner-photo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.asy-practice-single__partner-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
}

.asy-practice-single__partner-info {
  flex: 1;
  min-width: 0;
}

.asy-practice-single__partner-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
}

.asy-practice-single__partner-role {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.asy-practice-single__partner-arrow {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

/* Key Services section */
.asy-practice-single__services-heading {
  margin-bottom: 40px;
}

.asy-practice-single__services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
}

.asy-practice-single__service-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-body);
}

.asy-practice-single__service-item svg,
.asy-practice-single__service-check {
  flex-shrink: 0;
  margin-top: 3px;
  color: #243f57;
  width: 20px;
  height: 20px;
}

/* Related insights */
.asy-practice-single__insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Related practices */
.asy-practice-single__related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.asy-practice-single__related-card {
  display: block;
  padding: 28px 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
}

.asy-practice-single__related-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.asy-practice-single__related-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.asy-practice-single__related-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.asy-practice-single__related-card .asy-practice-single__related-arrow {
  display: block;
  margin-top: 12px;
  color: var(--gold);
  font-size: 14px;
}

/* Sidebar cards Ã¢Â€Â” match insight page styling exactly */
.single-practice .asy-article-side-card {
  background: #fffdf9;
  border: 1px solid rgba(110, 135, 144, 0.08);
  border-radius: 18px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.single-practice .asy-article-side-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, rgba(110, 135, 144, 0.84) 0%, rgba(221, 207, 188, 0.92) 100%);
}

/* Sidebar CTA card Ã¢Â€Â” harbor gradient, matching insight pages */
.single-practice .asy-article-side-card--cta {
  background: linear-gradient(160deg, #203039 0%, #1d3244 60%, #2a4a56 100%);
  border: 1px solid rgba(110, 135, 144, 0.15);
  padding: 26px 22px;
}

.single-practice .asy-article-side-card--cta::before {
  background: linear-gradient(90deg, #6e8790 0%, #dcc7ad 100%);
  transform: scaleX(1);
}

.single-practice .asy-article-side-card--cta::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -30%;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(212, 182, 145, 0.07);
  border-radius: 50%;
  pointer-events: none;
}

.single-practice .asy-article-side-card--cta h3 {
  color: #dcc7ad;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.single-practice .asy-article-side-card--cta p {
  font-size: 13.5px;
  color: rgba(247, 243, 236, 0.72);
  line-height: 1.6;
  margin-bottom: 16px;
}

.single-practice .asy-article-side-card--cta .asy-btn-primary {
  background: #dcc7ad;
  color: #1a2a35;
  border-color: #dcc7ad;
  display: block;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.single-practice .asy-article-side-card--cta .asy-btn-primary:hover {
  background: #e4cba8;
  border-color: #e4cba8;
  box-shadow: 0 6px 20px rgba(212, 182, 145, 0.35);
  transform: translateY(-2px);
}


/* Related Insights section Ã¢Â€Â” tighter typography */
.single-practice .asy-practice-single__insights h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.single-practice .asy-insight-card__title {
  font-size: 1rem;
}

.single-practice .asy-insight-card__title a {
  color: var(--text-dark);
}

.single-practice .asy-insight-card__excerpt {
  font-size: 13.5px;
  line-height: 1.6;
}

.single-practice .asy-insight-card__read-more {
  color: #243f57;
  font-size: 13px;
}

.single-practice .asy-insight-card__meta time {
  font-size: 12px;
}

/* "View All Insights" secondary button Ã¢Â€Â” dark variant on cream bg */
.single-practice .asy-btn-secondary {
  color: #243f57;
  border-color: rgba(36, 63, 87, 0.3);
}

.single-practice .asy-btn-secondary:hover {
  background: #243f57;
  border-color: #243f57;
  color: #fff;
}

/* Related links Ã¢Â€Â” harbor teal */
.single-practice .asy-practice-single__related-links a {
  font-size: 14px;
  padding: 11px 0;
}

.single-practice .asy-practice-single__related-links a:hover {
  color: #243f57;
}

.single-practice .asy-practice-single__related-links a span {
  color: #7e97ac;
}

/* Practice hub page: actions row */
.asy-pd-card__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
}

.asy-pd-card__cta--secondary {
  font-size: 13px;
  color: var(--text-muted);
  border-bottom: none;
}

.asy-pd-card__cta--secondary:hover {
  color: var(--gold);
}

/* Responsive */
@media (max-width: 900px) {
  .asy-practice-single__layout {
    grid-template-columns: 1fr;
  }

  .asy-practice-single__sidebar {
    position: static;
  }

  .asy-practice-single__services-grid {
    grid-template-columns: 1fr;
  }

  .asy-practice-single__insights-grid {
    grid-template-columns: 1fr;
  }

  .asy-practice-single__related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .asy-practice-strip__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .asy-practice-strip__stat {
    padding-left: 0;
    border-left: none;
  }

  .asy-practice-strip__action {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .asy-practice-hero {
    min-height: auto;
    padding: 120px 0 40px;
  }

  .asy-practice-hero h1 {
    font-size: 2rem;
  }

  .asy-practice-hero__partners {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .asy-practice-hero__geo-diamond,
  .asy-practice-hero__geo-circle,
  .asy-practice-hero__geo-line--1,
  .asy-practice-hero__geo-line--2,
  .asy-practice-hero__geo-dots {
    display: none;
  }

  .asy-practice-single__related-grid {
    grid-template-columns: 1fr;
  }

  .asy-pd-card__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}


/* ========================================================
   MOBILE SLIDERS (Ã¢Â‰Â¤ 1024px)
   Cards become horizontal swipeable carousels on mobile/tablet.
   One card visible at a time, centered, swipeable.
   Desktop grid layouts are untouched.
   ======================================================== */

@media (max-width: 1024px) {
  /* --- Convert grids to horizontal scroll containers --- */
  .home .asy-practice-grid,
  .home .asy-sectors-grid,
  .home #why-asy .asy-why-grid,
  .home .asy-home-insights-grid,
  .home .asy-partners-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 8px;
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
  }

  /* Hide scrollbar */
  .home .asy-practice-grid::-webkit-scrollbar,
  .home .asy-sectors-grid::-webkit-scrollbar,
  .home #why-asy .asy-why-grid::-webkit-scrollbar,
  .home .asy-home-insights-grid::-webkit-scrollbar,
  .home .asy-partners-grid::-webkit-scrollbar {
    display: none;
  }

  /* --- All cards: one full card at a time --- */
  .home .asy-practice-grid > .asy-practice-card,
  .home .asy-sectors-grid > .asy-sector-card,
  .home #why-asy .asy-why-grid > .asy-why-card,
  .home .asy-home-insights-grid > .asy-insight-card,
  .home .asy-home-insights-grid > .asy-insight-card--featured,
  .home .asy-partners-grid > .asy-partner-card {
    flex: 0 0 calc(100vw - 48px);
    max-width: calc(100vw - 48px);
    scroll-snap-align: start;
    min-height: 0;
  }

  /* Featured insight Ã¢Â€Â” stack image/text vertically in slider */
  .home .asy-insight-card--featured {
    display: flex;
    flex-direction: column;
    grid-column: auto;
    grid-row: auto;
  }

  /* Prevent reveal animation delays from breaking slider layout */
  .home .asy-practice-grid > *,
  .home .asy-sectors-grid > *,
  .home #why-asy .asy-why-grid > *,
  .home .asy-home-insights-grid > *,
  .home .asy-partners-grid > * {
    flex-shrink: 0;
  }
}

/* Phone-specific: remove gap so next card is fully hidden */
@media (max-width: 640px) {
  .home .asy-practice-grid,
  .home .asy-sectors-grid,
  .home #why-asy .asy-why-grid,
  .home .asy-home-insights-grid,
  .home .asy-partners-grid {
    gap: 24px;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: -16px;
    margin-right: -16px;
  }

  .home .asy-practice-grid > .asy-practice-card,
  .home .asy-sectors-grid > .asy-sector-card,
  .home #why-asy .asy-why-grid > .asy-why-card,
  .home .asy-home-insights-grid > .asy-insight-card,
  .home .asy-home-insights-grid > .asy-insight-card--featured,
  .home .asy-partners-grid > .asy-partner-card {
    flex: 0 0 calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
  }
}

/* ==========================================================
   SWIPE INDICATOR DOTS (mobile sliders)
   ========================================================== */
@media (max-width: 1024px) {
  .asy-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 12px 0 0;
  }

  .asy-slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border, #DDD8CE);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    opacity: 0.5;
  }

  .asy-slider-dot.active {
    background: var(--gold, #C9A96E);
    opacity: 1;
    transform: scale(1.3);
  }

  /* On dark sections */
  .asy-section--cream .asy-slider-dot,
  .asy-section--white .asy-slider-dot {
    background: var(--border, #DDD8CE);
  }

  .asy-section--cream .asy-slider-dot.active,
  .asy-section--white .asy-slider-dot.active {
    background: var(--gold, #C9A96E);
  }

  /* Dark background sections */
  .asy-home-sectors .asy-slider-dot {
    background: rgba(255, 255, 255, 0.2);
  }

  .asy-home-sectors .asy-slider-dot.active {
    background: var(--gold, #C9A96E);
  }
}

@media (min-width: 1025px) {
  .asy-slider-dots {
    display: none !important;
  }
}


/* ==========================================================
   FLOATING WHATSAPP BUTTON
   ========================================================== */
.asy-whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9990;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35), 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s var(--ease-spring, cubic-bezier(0.34, 1.56, 0.64, 1)), box-shadow 0.3s ease, opacity 0.4s ease;
  cursor: pointer;
  text-decoration: none;
  opacity: 1;
}

.asy-whatsapp-float.faded {
  opacity: 0.35;
}

.asy-whatsapp-float.faded:hover {
  opacity: 1;
}

.asy-whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.asy-whatsapp-float:active {
  transform: scale(0.95);
}

.asy-whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* Subtle pulse animation on first load */
@keyframes asyWhatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35), 0 2px 8px rgba(0, 0, 0, 0.1); }
  50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.55), 0 2px 8px rgba(0, 0, 0, 0.1), 0 0 0 8px rgba(37, 211, 102, 0.12); }
}

.asy-whatsapp-float {
  animation: asyWhatsappPulse 3s ease-in-out 3;
}

/* Mobile: slightly smaller and tighter to corner */
@media (max-width: 640px) {
  .asy-whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 20px;
    right: 20px;
  }

  .asy-whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}


/* ==========================================================
   CONTACT FORM STATUS MESSAGES
   ========================================================== */
.asy-form-status {
    margin-top: 16px;
    padding: 0;
    font-size: 14px;
    line-height: 1.5;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.asy-form-status:empty {
    display: none;
}

.asy-form-status--success {
    padding: 16px 20px;
    background: rgba(34, 139, 34, 0.08);
    border: 1px solid rgba(34, 139, 34, 0.2);
    color: #1a6b1a;
}

.asy-form-status--error {
    padding: 16px 20px;
    background: rgba(200, 50, 50, 0.08);
    border: 1px solid rgba(200, 50, 50, 0.2);
    color: #8b1a1a;
}

.asy-contact-concierge .asy-form-status--success {
    background: rgba(34, 139, 34, 0.15);
    border-color: rgba(34, 139, 34, 0.3);
    color: #90ee90;
}

.asy-contact-concierge .asy-form-status--error {
    background: rgba(200, 50, 50, 0.15);
    border-color: rgba(200, 50, 50, 0.3);
    color: #ffa0a0;
}

/* Hide duplicate final CTA on mobile; sidebar contact card remains visible. */
@media (max-width: 700px) {
  body.single-practice .asy-partner-cta {
    display: none;
  }
}

/* ==========================================================
   HOMEPAGE MOBILE SLIDER REGRESSION GUARD
   Keep homepage card groups swipeable on mobile even when older grid
   breakpoints are loaded before this final override.
   ========================================================== */
@media (max-width: 1024px) {
  .home .asy-practice-grid,
  .home .asy-sectors-grid,
  .home #why-asy .asy-why-grid,
  .home .asy-home-insights-grid,
  .home .asy-partners-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    grid-template-columns: none !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch;
    gap: 16px !important;
    margin-left: -24px !important;
    margin-right: -24px !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    padding-bottom: 8px !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .home .asy-practice-grid::-webkit-scrollbar,
  .home .asy-sectors-grid::-webkit-scrollbar,
  .home #why-asy .asy-why-grid::-webkit-scrollbar,
  .home .asy-home-insights-grid::-webkit-scrollbar,
  .home .asy-partners-grid::-webkit-scrollbar {
    display: none;
  }

  .home .asy-practice-grid > .asy-practice-card,
  .home .asy-sectors-grid > .asy-sector-card,
  .home #why-asy .asy-why-grid > .asy-why-card,
  .home .asy-home-insights-grid > .asy-insight-card,
  .home .asy-home-insights-grid > .asy-insight-card--featured,
  .home .asy-partners-grid > .asy-partner-card {
    flex: 0 0 calc(100vw - 48px) !important;
    width: calc(100vw - 48px) !important;
    max-width: calc(100vw - 48px) !important;
    min-width: 0 !important;
    scroll-snap-align: start !important;
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .home .asy-home-insights-grid > .asy-insight-card--featured {
    display: flex !important;
    flex-direction: column !important;
  }
}

@media (max-width: 640px) {
  .home .asy-practice-grid,
  .home .asy-sectors-grid,
  .home #why-asy .asy-why-grid,
  .home .asy-home-insights-grid,
  .home .asy-partners-grid {
    gap: 24px !important;
    margin-left: -16px !important;
    margin-right: -16px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .home .asy-practice-grid > .asy-practice-card,
  .home .asy-sectors-grid > .asy-sector-card,
  .home #why-asy .asy-why-grid > .asy-why-card,
  .home .asy-home-insights-grid > .asy-insight-card,
  .home .asy-home-insights-grid > .asy-insight-card--featured,
  .home .asy-partners-grid > .asy-partner-card {
    flex-basis: calc(100vw - 32px) !important;
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
  }
}

/* Mobile language dropdown guard: keep the details menu visible outside the compact header row. */
@media (max-width: 1024px) {
  .asy-header-inner {
    overflow: visible !important;
  }

  .asy-header-lang {
    position: relative;
    z-index: 160;
  }

  .asy-header-lang[open] .asy-lang-menu {
    z-index: 1000;
  }
}

/* Mobile Latest Publications: remove the spotlight treatment so cards stay compact. */
@media (max-width: 640px) {
  body.home .asy-home-insights-grid > .asy-insight-card--featured {
    min-height: 0 !important;
    height: auto !important;
    background: rgba(255, 252, 248, 0.92) !important;
  }

  body.home .asy-home-insights-grid > .asy-insight-card--featured .asy-insight-card__image {
    display: none !important;
  }

  body.home .asy-home-insights-grid > .asy-insight-card--featured .asy-insight-card__body {
    min-height: 0 !important;
    padding: 28px !important;
  }

  body.home .asy-home-insights-grid > .asy-insight-card--featured .asy-insight-card__title {
    font-size: 1.35rem !important;
    line-height: 1.3 !important;
  }

  body.home .asy-home-insights-grid > .asy-insight-card--featured .asy-insight-card__excerpt {
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden !important;
  }
}

html[lang="tr-TR"] body.home .asy-partner-card__info::before {
  content: 'Ortak Profili';
}
