/*
Theme Name: AVEYAH Corporate
Theme URI: https://aveyahventures.com/
Author: AVEYAH Ventures
Description: A custom, ultra-lightweight corporate theme for AVEYAH Ventures.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: aveyah-corporate
*/

/* Reset and Custom Design System Properties */
:root {
    --navy: #002147;
    --navy-dark: #00152e;
    --gold: #C5A059;
    --gold-light: #E2C285;
    --gold-dark: #A68442;
    --orange: #F58220;
    --magenta: #B01E78;
    --purple: #4E2884;
    --slate: #2C3E50;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --text-main: #1A1A1A;
    --text-muted: #546E7A;
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
    --gradient-primary: linear-gradient(90deg, var(--orange) 0%, var(--magenta) 50%, var(--purple) 100%);
}

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

html, body {
    max-width: 100%;
    overflow-x: hidden;
    height: auto;
    position: relative;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    line-height: 1.8;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

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

/* Header & Logo Styles */
.site-header {
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 1.2rem 3rem;
    transition: padding 0.3s ease;
}

.logo {
    flex: 0 0 auto;
}

.main-navigation {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.header-actions {
    flex: 0 0 auto;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.02);
}

/* Default Logo Visibility */
.logo-dark { display: block; }
.logo-light { display: none; }

/* Transparent Header styles */
.site-header.header-transparent-light {
    position: absolute;
    background: transparent;
    box-shadow: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-header.header-transparent-light .nav-menu a {
    color: var(--white);
}
.site-header.header-transparent-light .logo-dark { display: none; }
.site-header.header-transparent-light .logo-light { display: block; }
.site-header.header-transparent-light .menu-toggle .icon-bar {
    background-color: var(--white);
}

.site-header.header-transparent-dark {
    position: absolute;
    background: transparent;
    box-shadow: none;
    border-bottom: 1px solid rgba(0, 33, 71, 0.1);
}
.site-header.header-transparent-dark .nav-menu a {
    color: var(--navy);
}
.site-header.header-transparent-dark .logo-dark { display: block; }
.site-header.header-transparent-dark .logo-light { display: none; }
.site-header.header-transparent-dark .menu-toggle .icon-bar {
    background-color: var(--navy);
}

/* Sticky Header Behavior */
.site-header.is-sticky,
.site-header.is-scrolled,
.av-header.is-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    animation: headerSlideDown 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.site-header.is-sticky .header-container,
.site-header.is-scrolled .header-container,
.av-header.is-scrolled .header-container {
    padding: 0.9rem 2.5rem;
}

.site-header.is-sticky .nav-menu a,
.site-header.is-scrolled .nav-menu a,
.av-header.is-scrolled .nav-menu a {
    color: var(--text-main) !important;
}

.site-header.is-sticky .logo-dark,
.site-header.is-scrolled .logo-dark,
.av-header.is-scrolled .logo-dark { display: block !important; }

.site-header.is-sticky .logo-light,
.site-header.is-scrolled .logo-light,
.av-header.is-scrolled .logo-light { display: none !important; }

.site-header.is-sticky .menu-toggle .icon-bar,
.site-header.is-scrolled .menu-toggle .icon-bar,
.av-header.is-scrolled .menu-toggle .icon-bar {
    background-color: var(--navy) !important;
}

@keyframes headerSlideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* Navigation Menu Layout */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    align-items: center;
}

.nav-menu a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--navy);
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: var(--gold) !important;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu .current-menu-item a {
    color: var(--gold) !important;
}

.nav-menu .current-menu-item a::after {
    width: 100%;
}

/* Sub-menu Dropdowns (Desktop) */
@media (min-width: 992px) {
    .nav-menu li {
        position: relative;
    }
    
    .nav-menu .sub-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(15px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(0, 33, 71, 0.08);
        border-radius: 8px;
        box-shadow: 0 15px 35px rgba(0, 33, 71, 0.1);
        min-width: 260px;
        padding: 1.2rem 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1000;
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0;
        margin: 0;
    }
    
    .nav-menu li:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
    
    .nav-menu .sub-menu a {
        padding: 0.6rem 1.8rem;
        display: block;
        width: 100%;
        font-size: 0.78rem;
        font-weight: 600;
        color: var(--navy) !important;
        text-transform: none;
        letter-spacing: 0.5px;
        transition: all 0.25s ease;
        position: relative;
    }
    
    .nav-menu .sub-menu a:hover {
        background-color: rgba(197, 160, 89, 0.08);
        color: var(--gold) !important;
        padding-left: 2.2rem;
    }
    
    .nav-menu .sub-menu a::after {
        display: none !important; /* Disable underline effect in dropdowns */
    }
}

/* Sub-menu Dropdowns (Mobile Accordion style) */
@media (max-width: 991px) {
    .nav-menu .sub-menu {
        list-style: none;
        padding-left: 1.2rem;
        margin: 0.5rem 0 0 0;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        width: 100%;
        border-left: 2px solid rgba(197, 160, 89, 0.2);
    }
    
    .nav-menu .sub-menu a {
        font-size: 0.8rem;
        font-weight: 500;
        text-transform: none;
        color: var(--text-muted) !important;
        padding: 0.2rem 0;
    }
}


/* Header CTA Buttons */
.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.3rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: var(--transition);
    cursor: pointer;
}

.header-btn.btn-gold {
    background-color: var(--gold);
    color: var(--navy-dark) !important;
    border: 1px solid var(--gold);
}

.header-btn.btn-gold:hover {
    background-color: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.3);
}

.header-btn.btn-outline {
    background-color: transparent;
    color: var(--navy);
    border: 1px solid var(--navy);
}

.header-btn.btn-outline:hover {
    background-color: var(--navy);
    color: var(--white) !important;
    transform: translateY(-2px);
}

/* Transparent Header states for CTAs */
.site-header.header-transparent-light .header-btn.btn-outline {
    color: var(--white);
    border-color: var(--white);
}

.site-header.header-transparent-light .header-btn.btn-outline:hover {
    background-color: var(--white);
    color: var(--navy-dark) !important;
}

/* Sticky styles for CTAs */
.site-header.is-sticky .header-btn.btn-outline,
.site-header.is-scrolled .header-btn.btn-outline,
.av-header.is-scrolled .header-btn.btn-outline {
    color: var(--navy);
    border-color: var(--navy);
}

.site-header.is-sticky .header-btn.btn-outline:hover,
.site-header.is-scrolled .header-btn.btn-outline:hover,
.av-header.is-scrolled .header-btn.btn-outline:hover {
    background-color: var(--navy);
    color: var(--white) !important;
}

.mobile-header-actions {
    display: none;
}

/* Mobile Toggle Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.menu-toggle .icon-bar {
    width: 100%;
    height: 2px;
    background-color: var(--navy);
    transition: all 0.3s ease;
}

/* Hamburger Transformations when Toggled */
.menu-toggle.active .icon-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active .icon-bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active .icon-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Dual-Footer Styles */
.site-footer {
    font-family: var(--font-main);
}

/* Upper Footer: Structured Columns & Patterned Gradient */
.footer-top {
    background: linear-gradient(135deg, rgba(0, 21, 46, 0.99) 0%, rgba(0, 33, 71, 0.97) 100%), 
                radial-gradient(circle at 90% 10%, rgba(245, 130, 32, 0.12), transparent 45%),
                radial-gradient(circle at 10% 90%, rgba(176, 30, 120, 0.12), transparent 45%);
    position: relative;
    color: var(--white);
    padding: 90px 0 60px 0;
    overflow: hidden;
    border-top: 2px solid var(--gold);
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(197, 160, 89, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

.footer-top .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 2.2fr 1fr 1.5fr 1.3fr;
    gap: 4rem;
}

.footer-column h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-light);
    margin-bottom: 2rem;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--orange);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--gold-light);
    padding-left: 6px;
}

.footer-contact-info li {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact-info strong {
    color: var(--white);
    display: block;
    margin-bottom: 2px;
}

/* Social Media Icons Wrapper */
.footer-social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.social-icon:hover {
    background: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

/* Bottom Footer: Copyright Section */
.footer-bottom {
    background-color: #000d1c;
    color: rgba(255, 255, 255, 0.5);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

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

/* Medium Screen/Laptop Spacing Adjustments */
@media (min-width: 992px) and (max-width: 1240px) {
    .header-container {
        padding: 1.2rem 1.5rem;
    }
    
    .logo-img {
        height: 44px;
    }
    
    .nav-menu {
        gap: 1.1rem;
    }
    
    .nav-menu a {
        font-size: 0.78rem;
        letter-spacing: 0.8px;
    }
    
    .header-actions {
        gap: 0.6rem;
    }
    
    .header-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }

    .header-actions {
        display: none;
    }

    .mobile-header-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        width: 100%;
    }

    .mobile-header-actions .header-btn {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1.3rem;
    }

    .main-navigation {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 2rem;
        border-top: 1px solid #eee;
    }

    .main-navigation.toggled {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .nav-menu a {
        color: var(--navy) !important;
        width: 100%;
        display: block;
    }

    .site-header.header-transparent-light .nav-menu a,
    .site-header.header-transparent-dark .nav-menu a {
        color: var(--navy) !important;
    }

    .footer-top .container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem 2rem;
    }
}

@media (max-width: 575px) {
    .footer-top .container {
        grid-template-columns: 1fr;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}



/* =========================================================
   AVEYAH VENTURES DESIGN SYSTEM - GLOBAL COMPONENTS
   ========================================================= */

/* =========================================================
   AVEYAH VENTURES HOMEPAGE
   GLOBAL CSS
========================================================= */

/* ---------- RESET ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: #181818;
  background: #f7f5f3;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

/* ---------- ROOT ---------- */
:root {
  --bg: #f7f5f3;
  --bg-soft: #efebe7;
  --card: rgba(255, 255, 255, 0.78);
  --card-solid: #ffffff;
  --text: #181818;
  --muted: #5f5a57;
  --line: rgba(24, 24, 24, 0.08);
  --brand: #7b4b35;
  --brand-2: #4e2934;
  --brand-3: #d5b3a1;
  --dark: #111111;
  --white: #ffffff;
  --shadow-1: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-2: 0 20px 60px rgba(0, 0, 0, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1240px;
  --header-height: 88px;
}

/* ---------- UTILITIES ---------- */
.av-container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.av-section {
  position: relative;
  padding: 110px 0;
}

.av-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(123, 75, 53, 0.08);
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.av-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.av-section-head {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 42px;
}

.av-title {
  margin: 18px 0 0;
  font-size: 55px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.av-lead {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  max-width: 560px;
}

.av-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.av-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.av-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.av-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.av-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.av-btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, #9a5f42 100%);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(123, 75, 53, 0.25);
}

.av-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(123, 75, 53, 0.32);
}

.av-btn-secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.av-btn-secondary:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.av-card {
  position: relative;
  background: var(--card-solid);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-1);
}

.av-card-glass {
  background: var(--card);
  backdrop-filter: blur(16px);
}

.av-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(123, 75, 53, 0.1), rgba(78, 41, 52, 0.1));
  color: var(--brand);
  margin-bottom: 20px;
}

.av-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.av-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.av-chip {
  padding: 9px 14px;
  border-radius: 999px;
  background: #f3efec;
  border: 1px solid rgba(24, 24, 24, 0.06);
  font-size: 14px;
  color: #413d3b;
}

.av-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(24,24,24,0), rgba(24,24,24,0.12), rgba(24,24,24,0));
}

/* ---------- HEADER ---------- */
.av-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 999;
  transition: 0.3s ease;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.av-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(24, 24, 24, 0.08);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);
}

.av-header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 24px;
}

.av-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.av-logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #b07a5d 0%, #4e2934 100%);
  box-shadow: 0 12px 24px rgba(78, 41, 52, 0.18);
}

.av-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.av-logo-text {
  font-size: 16px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--text);
}

.av-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  align-items: center;
}

.av-nav a {
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  position: relative;
  padding: 10px 0;
}

.av-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  transition: 0.25s ease;
}

.av-nav a:hover::after,
.av-nav a.is-active::after {
  width: 100%;
}

.av-header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.av-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: rgba(24, 24, 24, 0.06);
  color: var(--text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.av-menu-toggle span,
.av-menu-toggle span::before,
.av-menu-toggle span::after {
  display: block;
  position: relative;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.av-menu-toggle span::before,
.av-menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.av-menu-toggle span::before {
  top: -6px;
}

.av-menu-toggle span::after {
  top: 6px;
}

#what-we-do {
  padding: 50px 0;
}

/* ---------- HERO ---------- */
.av-hero {
  position: relative;
  min-height: 90vh;
  padding: calc(var(--header-height) + 0px) 0 0px;
  background:
    linear-gradient(120deg, rgba(20, 10, 15, 0.82) 0%, rgba(45, 25, 20, 0.65) 50%, rgba(10, 10, 10, 0.68) 100%),
    url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1600&q=80') center center / cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

.av-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.16), transparent 30%),
    radial-gradient(circle at left center, rgba(213,179,161,0.12), transparent 24%);
  pointer-events: none;
}

.av-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 36px;
  align-items: center;
  min-height: calc(80vh - var(--header-height));
}

.av-hero-copy {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  margin-top: -60px;
}

.av-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.av-hero-title {
  margin: 0 0 12px;
  font-size: 50px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.av-hero-title span {
  display: block;
  color: #f1ddd2;
}

.av-hero-text {
  max-width: 620px;
  font-size: 19px;
  color: rgba(255,255,255,0.88);
  margin: 0 0 20px;
}

.av-hero-mini {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.av-mini-stat {
  padding: 12px 14px 10px;
  border-radius: 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
}

.av-mini-stat strong {
  display: block;
  font-size: 26px;
  line-height: 1;
  margin-bottom: 8px;
}

.av-mini-stat span {
  display: block;
  color: rgba(255,255,255,0.84);
  font-size: 13px;
}

.av-hero-panel {
  position: relative;
  margin-top: -60px;
}

.av-hero-card {
  padding: 26px;
  border-radius: 28px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-2);
}

.av-hero-card-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 20px;
}

.av-hero-card-top h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.av-hero-card-top p {
  margin: 8px 0 0;
  color: rgba(255,255,255,0.84);
  font-size: 14px;
}

.av-status-badge {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.av-solution-stack {
  display: grid;
  gap: 8px;
}

.av-solution-item {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
}

.av-solution-item strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
}

.av-solution-item span {
  display: block;
  color: rgba(255,255,255,0.82);
  font-size: 13px;
}

.av-solution-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(241, 221, 210, 0.16);
  font-size: 12px;
  font-weight: 700;
}

/* ---------- TRUST STRIP ---------- */
.av-trust-strip {
  position: relative;
  margin-top: -50px;
  z-index: 10;
}

.av-trust-wrap {
  padding: 18px 24px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-2);
  border: 1px solid rgba(24,24,24,0.06);
}

.av-trust-grid {
  display: grid;
  grid-template-columns: 220px 1fr 220px 220px;
  gap: 20px;
  align-items: center;
}

.av-trust-label {
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.av-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.av-trust-badge {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f5f1ee;
  color: #3e3937;
  font-size: 14px;
  font-weight: 600;
}

.av-trust-stat {
  text-align: center;
  padding: 8px 10px;
}

.av-trust-stat strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
  color: var(--brand);
}

.av-trust-stat span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

/* ---------- INTRO ---------- */
.av-intro-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}

.av-intro-panel {
  padding: 34px;
  min-height: 100%;
}

.av-intro-panel h3 {
  margin: 16px 0 12px;
  font-size: 28px;
  line-height: 1.1;
}

.av-intro-panel p {
  margin: 0 0 22px;
  color: var(--muted);
}

.av-intro-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.av-pillar-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.av-pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(123,75,53,0.1);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
}
.av-pillar-icon svg {
  width: 22px;
  height: 22px;
}
.av-pillar-item h4 {
  margin: 0;
  font-size: 17px;
  font-family: var(--font-heading);
  color: var(--dark);
}
.av-pillar-item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}
.av-visual-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(24,24,24,0.08);
}
.av-vstat strong {
  display: block;
  font-size: 24px;
  line-height: 1;
  color: var(--brand);
  margin-bottom: 4px;
}
.av-vstat span {
  display: block;
  font-size: 11px;
  line-height: 1.4;
  color: var(--muted);
}
@media (max-width: 991px) {
  .av-hero-panel {
    margin-top: 0 !important;
  }
  .av-hero-copy {
    margin-top: 0 !important;
  }
}
@media (max-width: 767px) {
  .av-intro-pillars {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .av-title {
    font-size: 34px !important;
  }
}

.av-metric {
  padding: 22px;
  border-radius: 20px;
  background: #faf8f7;
  border: 1px solid var(--line);
}

.av-metric strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  color: var(--brand);
  margin-bottom: 8px;
}

.av-metric span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.av-intro-visual {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 28px;
  background:
    linear-gradient(120deg, rgba(17,17,17,0.2), rgba(123,75,53,0.16)),
    url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1400&q=80') center center / cover no-repeat;
  box-shadow: var(--shadow-2);
}

.av-floating-note {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.84);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(24,24,24,0.06);
}

.av-floating-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.av-floating-note p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* ---------- CORE AREAS ---------- */
.av-core-card {
  padding: 28px;
  min-height: 100%;
  overflow: hidden;
}

.av-core-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.av-core-card p {
  margin: 0 0 20px;
  color: var(--muted);
}

.av-core-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.av-core-card li {
  position: relative;
  padding-left: 18px;
  color: #2e2a28;
  font-size: 15px;
}

.av-core-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

/* ---------- SYSTEMS ---------- */
.av-systems-wrap {
  display: grid;
  gap: 18px;
}

.av-system-row {
  display: grid;
  grid-template-columns: 92px 1.15fr 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
}

.av-system-no {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(123,75,53,0.12), rgba(78,41,52,0.1));
  color: var(--brand);
  font-size: 20px;
  font-weight: 800;
}

.av-system-row h3 {
  margin: 0 0 6px;
  font-size: 22px;
  line-height: 1.1;
}

.av-system-row p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.av-system-tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f3efec;
  color: #3d3836;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.av-system-link {
  color: var(--brand);
  font-weight: 700;
  font-size: 15px;
}

/* ---------- WHY ---------- */
.av-why-card {
  padding: 30px;
  min-height: 100%;
}

.av-why-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.av-why-card p {
  margin: 0;
  color: var(--muted);
}

.av-proof-band {
  margin-top: 34px;
  padding: 22px 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, #1c1a19 0%, #2c211f 100%);
  color: var(--white);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: center;
}

.av-proof-band h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.av-proof-band p {
  margin: 0;
  color: rgba(255,255,255,0.8);
}

.av-proof-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.av-proof-items span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
}

/* ---------- PROCESS ---------- */
.av-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.av-process-step {
  position: relative;
  padding: 28px 24px;
}

.av-process-step::after {
  content: "";
  position: absolute;
  top: 40px;
  right: -10px;
  width: 20px;
  height: 2px;
  background: rgba(123,75,53,0.25);
}

.av-process-step:last-child::after {
  display: none;
}

.av-step-no {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.av-process-step h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.av-process-step p {
  margin: 0;
  color: var(--muted);
}

/* ---------- INDUSTRIES ---------- */
.av-industry-card {
  position: relative;
  min-height: 420px;
  border-radius: 26px;
  overflow: hidden;
  color: var(--white);
  box-shadow: var(--shadow-2);
}

.av-industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,0.12) 0%, rgba(17,17,17,0.72) 100%);
  z-index: 1;
}

.av-industry-bg-1 {
  background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1200&q=80') center center / cover no-repeat;
}

.av-industry-bg-2 {
  background: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1200&q=80') center center / cover no-repeat;
}

.av-industry-bg-3 {
  background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1200&q=80') center center / cover no-repeat;
}

.av-industry-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 28px;
}

.av-industry-content h3 {
  margin: 0 0 10px;
  font-size: 28px;
}

.av-industry-content p {
  margin: 0 0 16px;
  color: rgba(255,255,255,0.82);
}

.av-industry-content a {
  color: #f2ddd2;
  font-weight: 700;
}

/* ---------- INSIGHT / CTA ---------- */
.av-feature-cta {
  overflow: hidden;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(78,41,52,0.94) 0%, rgba(123,75,53,0.92) 100%);
  color: var(--white);
  box-shadow: var(--shadow-2);
}

.av-feature-cta-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding: 44px;
}

.av-feature-cta h2 {
  margin: 18px 0 14px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.av-feature-cta p {
  margin: 0 0 24px;
  color: rgba(255,255,255,0.84);
  max-width: 620px;
}

.av-feature-panel {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
}

.av-feature-panel h3 {
  margin: 0 0 14px;
  font-size: 22px;
}

.av-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.av-feature-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255,255,255,0.84);
}

.av-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f1ddd2;
}

/* ---------- FOOTER ---------- */
.av-footer {
  background: #121110;
  color: rgba(255,255,255,0.8);
  padding: 80px 0 28px;
}

.av-footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}

.av-footer-brand p {
  margin: 16px 0 0;
  max-width: 420px;
  color: rgba(255,255,255,0.68);
}

.av-footer h4 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 16px;
}

.av-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.av-footer-links a {
  color: rgba(255,255,255,0.72);
}

.av-footer-links a:hover {
  color: var(--white);
}

.av-footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
}

/* ---------- REVEAL ANIMATION ---------- */
.av-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: 0.7s ease;
}

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

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1200px) {
  .av-trust-grid,
  .av-system-row,
  .av-feature-cta-inner,
  .av-footer-top,
  .av-section-head,
  .av-hero-inner,
  .av-intro-layout {
    grid-template-columns: 1fr;
  }

  .av-system-row {
    align-items: start;
  }

  .av-proof-band {
    grid-template-columns: 1fr;
  }

  .av-proof-items {
    justify-content: flex-start;
  }

  .av-trust-grid {
    gap: 14px;
  }
}

@media (max-width: 992px) {
  .av-header-inner {
    grid-template-columns: 1fr auto;
  }

  .av-nav,
  .av-header-actions .av-btn {
    display: none;
  }

  .av-menu-toggle {
    display: inline-flex;
  }

  .av-mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 16px;
    right: 16px;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(24,24,24,0.08);
    border-radius: 24px;
    box-shadow: var(--shadow-2);
    padding: 18px;
    display: none;
    flex-direction: column;
    gap: 6px;
    z-index: 998;
  }

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

  .av-mobile-menu a {
    color: var(--text);
    padding: 14px 12px;
    border-radius: 14px;
    font-weight: 600;
  }

  .av-mobile-menu a:hover {
    background: #f5f1ee;
  }

  .av-grid-4,
  .av-grid-3,
  .av-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .av-hero {
    min-height: auto;
  }

  .av-hero-inner {
    min-height: auto;
    padding: 30px 0 40px;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 78px;
  }

  .av-container {
    width: min(var(--container), calc(100% - 28px));
  }

  .av-section {
    padding: 82px 0;
  }

  .av-hero {
    padding-top: calc(var(--header-height) + 28px);
  }

  .av-hero-title {
    font-size: 46px;
  }

  .av-hero-text {
    font-size: 17px;
  }

  .av-grid-4,
  .av-grid-3,
  .av-grid-2,
  .av-process-grid,
  .av-hero-mini,
  .av-intro-metrics {
    grid-template-columns: 1fr;
  }

  .av-system-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .av-trust-wrap,
  .av-feature-cta-inner,
  .av-hero-card,
  .av-intro-panel,
  .av-floating-note {
    padding: 20px;
  }

  .av-industry-card {
    min-height: 360px;
  }

  .av-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- BREADCRUMBS ---------- */
.av-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.av-breadcrumbs a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.25s ease;
}
.av-breadcrumbs a:hover {
  color: #d5b3a1;
}
.av-breadcrumbs span {
  color: var(--white);
}
