/* =============================================================
   GOLD POWER VENTURES — Master Stylesheet (All 5 Pages)
   © 2026 Gold Power Ventures (Pvt) Ltd.
   Designed & built by D-KODE (https://d-kode.lk)
   ============================================================= */

/* ─── CSS Custom Properties ────────────────────────────────── */
:root {
    /* Green palette - Muted & balanced */
    --g-950: #1c2b23;
    --g-900: #22362b;
    --g-800: #2a4736;
    --g-700: #335a43;
    --g-600: #427255;
    --g-500: #548c69;
    --g-400: #6ba681;
    --g-300: #90c2a3;
    --g-200: #bedbc9;
    --g-100: #e2f0e8;
    --g-50:  #f2f7f4;

    /* Gold / Brass palette - Muted & softer */
    --au-800: #7a633a;
    --au-700: #8f764a;
    --au-600: #a68c5b;
    --au-500: #c0a672;
    --au-400: #d1ba8e;
    --au-300: #dfceab;
    --au-200: #ebe0c7;
    --au-100: #f7f3eb;

    /* Neutrals */
    --n-950: #111110;
    --n-900: #1a1a18;
    --n-800: #2a2a27;
    --n-700: #3d3d39;
    --n-500: #6b6b66;
    --n-600: #545450;
    --n-400: #8f8f8a;
    --n-300: #b5b5b0;
    --n-200: #d8d8d3;
    --n-100: #f0f0eb;
    --n-50:  #f9f9f6;
    --white: #ffffff;

    /* Typography */
    --f-sans:  'Inter', system-ui, -apple-system, sans-serif;
    --f-serif: 'Cormorant Garamond', Georgia, serif;

    /* Spacing scale */
    --sp-xs:  0.5rem;
    --sp-sm:  1rem;
    --sp-md:  1.5rem;
    --sp-lg:  2.5rem;
    --sp-xl:  4rem;
    --sp-2xl: 6rem;
    --sp-3xl: 8rem;

    /* Layout */
    --max-w:     1800px;
    --px:        clamp(1rem, 3vw, 2rem);
    --section-y: clamp(4rem, 8vw, 7rem);

    /* Radii */
    --r-sm:  6px;
    --r-md:  12px;
    --r-lg:  20px;
    --r-xl:  32px;
    --r-full: 9999px;

    /* Shadows */
    --sh-xs:   0 1px 4px rgba(0,0,0,0.06);
    --sh-sm:   0 2px 12px rgba(0,0,0,0.08);
    --sh-md:   0 8px 32px rgba(0,0,0,0.10);
    --sh-lg:   0 20px 60px rgba(0,0,0,0.14);
    --sh-gold: 0 8px 28px rgba(197,154,56,0.30);
    --sh-green:0 8px 28px rgba(26,80,48,0.25);

    /* Motion */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
    --dur: 0.4s;

    /* Navbar height reference */
    --nav-h: 90px;
}

[data-theme="dark"] {
    --white: #121614; 
    --n-900: #f2f7f4; 
    --n-800: #e2f0e8; 
    --n-500: #90c2a3; 
    --n-200: #2a4736; 
    --n-100: #22362b; 
    --n-50:  #1c2b23; 
    --g-800: #dfceab; 
    --g-700: #d1ba8e;
    --g-100: #22362b; 
    --g-50:  #1a241e;
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--f-sans);
    color: var(--n-900);
    background: linear-gradient(135deg, var(--g-200) 0%, var(--au-200) 100%);
    background-attachment: fixed;
    line-height: 1.7;
    overflow-x: hidden;
    transition: background 0.4s var(--ease), color 0.4s var(--ease);
}

[data-theme="dark"] body {
    background: linear-gradient(135deg, #0a110d 0%, #1c2b23 100%);
}

.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--n-900);
    font-size: 1.1rem;
    transition: all var(--dur) var(--ease);
}
.navbar.scrolled .theme-toggle { background: var(--n-100); }
.theme-toggle:hover { background: var(--au-200); color: var(--au-700); transform: translateY(-2px); }
[data-theme="dark"] .theme-toggle { color: var(--au-400); }
body.no-scroll { overflow: hidden; }
img  { max-width: 100%; display: block; object-fit: cover; }
a    { text-decoration: none; color: inherit; transition: color var(--dur) var(--ease); }
ul   { list-style: none; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ─── Layout Utilities ───────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--px);
}
.section       { padding: var(--section-y) 0; position: relative; }
.section--dark { background: var(--g-900); }
.section--soft { background: var(--n-50);  }
.section--green{ background: var(--g-100); }
.text-center   { text-align: center; }
.text-left     { text-align: left;   }
.mt-sm { margin-top: var(--sp-sm); }
.mt-md { margin-top: var(--sp-md); }
.mt-lg { margin-top: var(--sp-lg); }
.w-full { width: 100%; }

/* ─── Typography Scale ───────────────────────────────────────── */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--au-500);
    margin-bottom: 0.85rem;
}
.eyebrow--light { color: var(--au-300); }
.eyebrow--center { display: flex; justify-content: center; }

.eyebrow::before {
    content: '';
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    flex-shrink: 0;
}

.heading-xl {
    font-family: var(--f-serif);
    font-size: clamp(2.8rem, 5.5vw, 5.5rem);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.01em;
    color: var(--g-800);
}

.heading-lg {
    font-family: var(--f-serif);
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--g-800);
}

.heading-md {
    font-family: var(--f-serif);
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--g-800);
}

.heading-sm {
    font-family: var(--f-serif);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--g-800);
}

.heading-xl em,
.heading-lg em,
.heading-md em { font-style: italic; color: var(--au-500); }

.heading-xl--light,
.heading-lg--light { color: var(--white); }

.lead {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    color: var(--n-500);
    line-height: 1.85;
    max-width: 680px;
}
.lead--light { color: rgba(255,255,255,0.72); }

.body-text {
    font-size: 0.96rem;
    color: var(--n-500);
    line-height: 1.85;
}
.body-text--light { color: rgba(255,255,255,0.65); }

.gold-bar {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--au-500), var(--au-300));
    border-radius: var(--r-full);
    margin-bottom: 1.5rem;
}
.gold-bar--center { margin-left: auto; margin-right: auto; }

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--r-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--dur) var(--ease);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.btn i { transition: transform var(--dur) var(--ease); }
.btn:hover i { transform: translateX(3px); }

/* Shimmer sweep */
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.14);
    transform: translateX(-110%) skewX(-15deg);
    transition: transform 0.55s var(--ease);
}
.btn:hover::after { transform: translateX(110%) skewX(-15deg); }

.btn-gold {
    background: linear-gradient(135deg, var(--au-500) 0%, var(--au-600) 100%);
    color: var(--white);
    box-shadow: var(--sh-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(197,154,56,0.42); color: var(--white); }

.btn-ghost {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border-color: rgba(255,255,255,0.45);
    backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.8); transform: translateY(-3px); color: var(--white); }

.btn-green {
    background: linear-gradient(135deg, var(--g-700) 0%, var(--g-600) 100%);
    color: var(--white);
    box-shadow: var(--sh-green);
}
.btn-green:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(26,80,48,0.38); color: var(--white); }

.btn-outline-green {
    background: transparent;
    color: var(--g-700);
    border-color: var(--g-400);
}
.btn-outline-green:hover { background: var(--g-700); color: var(--white); border-color: var(--g-700); transform: translateY(-2px); }

/* ─── Preloader ──────────────────────────────────────────────── */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--g-950);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.7s var(--ease), visibility 0.7s;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-inner { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }

.preloader-logo {
    width: 140px;
    height: auto;
    object-fit: contain;
    animation: pl-pulse 1.6s ease-in-out infinite;
}
@keyframes pl-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.55; transform: scale(0.97); }
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--r-full);
    overflow: hidden;
}
.preloader-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--au-500), var(--au-300));
    border-radius: var(--r-full);
    animation: pl-fill 2s var(--ease-io) forwards;
}
@keyframes pl-fill { from { width: 0; } to { width: 100%; } }

/* ─── Navbar ─────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 800;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease), height 0.35s var(--ease);
}

.navbar.at-top {
    background: transparent;
    box-shadow: none;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.90);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06), var(--sh-sm);
    height: 76px;
}
[data-theme="dark"] .navbar.scrolled {
    background: rgba(28, 43, 35, 0.92);
    box-shadow: 0 1px 0 rgba(255,255,255,0.05), 0 8px 32px rgba(0,0,0,0.4);
}
[data-theme="dark"] .navbar.scrolled .nav-logo-wordmark { color: var(--white); }
[data-theme="dark"] .navbar.scrolled .nav-link { color: rgba(255,255,255,0.75); }
[data-theme="dark"] .navbar.scrolled .nav-link:hover,
[data-theme="dark"] .navbar.scrolled .nav-link.active { color: var(--au-400); }

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--px);
    gap: 2rem;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.nav-logo-img {
    height: 64px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
    transition: all var(--dur) var(--ease);
}
.navbar.scrolled .nav-logo-img {
    height: 52px;
    filter: none;
}
.nav-logo-wordmark {
    font-family: var(--f-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    transition: color var(--dur) var(--ease);
}
.navbar.scrolled .nav-logo-wordmark { color: var(--g-800); }
.nav-logo-wordmark em { font-style: normal; color: var(--au-400); }
.nav-logo-wordmark small {
    display: block;
    font-family: var(--f-sans);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    transition: color var(--dur) var(--ease);
}
.navbar.scrolled .nav-logo-wordmark small { color: var(--n-400); }

/* Desktop nav */
.desktop-nav { 
    display: flex; 
    align-items: center; 
    gap: 0.25rem; 
    margin-left: auto; /* Pushes the nav to the right */
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    color: rgba(255,255,255,0.85);
    padding: 0.45rem 0.85rem;
    border-radius: var(--r-sm);
    position: relative;
    transition: color var(--dur) var(--ease);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: calc(100% - 1.7rem);
    height: 2px;
    background: var(--au-400);
    border-radius: var(--r-full);
    transition: transform 0.3s var(--ease);
}
.nav-link:hover::after,
.nav-link.active::after { transform: translateX(-50%) scaleX(1); }
.nav-link:hover { color: var(--white); }

.navbar.scrolled .nav-link         { color: var(--n-500); }
.navbar.scrolled .nav-link:hover   { color: var(--g-700); }
.navbar.scrolled .nav-link.active  { color: var(--g-700); }

.nav-cta {
    background: linear-gradient(135deg, var(--au-500), var(--au-600));
    color: var(--white) !important;
    padding: 0.5rem 1.2rem;
    border-radius: var(--r-sm);
    box-shadow: 0 4px 14px rgba(197,154,56,0.3);
    margin-left: 0.5rem;
}
.nav-cta::after { display: none; }
.nav-cta:hover  { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(197,154,56,0.45); }
.navbar.scrolled .nav-cta { color: var(--white) !important; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border-radius: var(--r-sm);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(6px);
    transition: background var(--dur) var(--ease);
    flex-shrink: 0;
}
.navbar.scrolled .hamburger { background: var(--n-100); }
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: var(--r-full);
    transition: all 0.38s var(--ease);
    transform-origin: center;
}
.navbar.scrolled .hamburger span { background: var(--g-800); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Mobile Sidebar ─────────────────────────────────────────── */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    z-index: 850;
    background: rgba(7,26,15,0.65);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.sidebar-overlay.open { opacity: 1; visibility: visible; }

.sidebar {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(380px, 92vw);
    z-index: 860;
    background: var(--g-950);
    display: flex;
    flex-direction: column;
    padding: 0;
    transform: translateX(105%);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
    overflow-y: auto;
    overflow-x: hidden;
}
.sidebar.open {
    transform: translateX(0);
    box-shadow: -30px 0 100px rgba(0,0,0,0.45);
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.75rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
}

.sidebar-brand {
    font-family: var(--f-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}
.sidebar-brand em { font-style: normal; color: var(--au-400); }

.sidebar-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all var(--dur) var(--ease);
}
.sidebar-close:hover { background: rgba(255,255,255,0.14); color: var(--white); }

.sidebar-nav {
    padding: 1.5rem 1.25rem;
    flex: 1;
}
.sidebar-nav ul { display: flex; flex-direction: column; gap: 2px; }

.sidebar-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border-radius: var(--r-sm);
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    transition: all var(--dur) var(--ease);
}
.sidebar-nav-link .s-num {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--au-500);
    width: 20px;
    flex-shrink: 0;
}
.sidebar-nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.06);
    padding-left: 1.35rem;
}
.sidebar-nav-link.active {
    color: var(--white);
    background: rgba(197,154,56,0.1);
}

.sidebar-contact {
    margin: 0 1.25rem 1.5rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--r-md);
}
.sidebar-contact-title {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--au-400);
    margin-bottom: 1.1rem;
}
.sidebar-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}
.sidebar-contact-row:last-child { margin-bottom: 0; }
.sidebar-contact-row i { color: var(--au-500); flex-shrink: 0; width: 15px; margin-top: 0.1rem; }
.sidebar-contact-row a { color: rgba(255,255,255,0.6); }
.sidebar-contact-row a:hover { color: var(--au-400); }

/* ─── Page Hero (shared) ─────────────────────────────────────── */
.page-hero {
    position: relative;
    padding-top: calc(var(--nav-h) + 4rem);
    padding-bottom: 5rem;
    background: var(--g-900);
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--hero-img, none);
    background-size: cover;
    background-position: center;
    opacity: 0.28;
}
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(7,26,15,0.95) 0%, rgba(7,26,15,0.6) 60%, rgba(7,26,15,0.3) 100%);
}
.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}
.page-hero .heading-lg { color: var(--white); }
.page-hero .lead       { color: rgba(255,255,255,0.72); max-width: 580px; }

/* ─── Hero (full-screen, index only) ────────────────────────── */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-parallax-bg {
    position: absolute;
    inset: -20%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(7,26,15,0.94) 0%, rgba(13,43,24,0.78) 50%, rgba(13,43,24,0.5) 100%);
    z-index: 1;
}
.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--au-500);
    opacity: 0.1;
    animation: float-p linear infinite;
}
.p1  { width:5px;  height:5px;  left:8%;  bottom:18%; animation-duration:20s; animation-delay:0s;  }
.p2  { width:9px;  height:9px;  left:22%; bottom:40%; animation-duration:26s; animation-delay:-6s; }
.p3  { width:4px;  height:4px;  left:58%; bottom:14%; animation-duration:17s; animation-delay:-3s; }
.p4  { width:7px;  height:7px;  left:73%; bottom:55%; animation-duration:22s; animation-delay:-9s; }
.p5  { width:5px;  height:5px;  left:88%; bottom:38%; animation-duration:24s; animation-delay:-2s; }
@keyframes float-p {
    from { transform: translateY(0) rotate(0deg);   opacity: 0.1; }
    50%  { opacity: 0.18; }
    to   { transform: translateY(-130vh) rotate(400deg); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
}

/* Hero entrance animations */
.ha { opacity: 0; transform: translateY(28px); animation: ha-in 0.9s var(--ease) both; animation-delay: var(--d, 0s); }
@keyframes ha-in { to { opacity: 1; transform: translateY(0); } }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--au-300);
    padding: 0.4rem 1.1rem;
    border: 1px solid rgba(197,154,56,0.3);
    border-radius: var(--r-full);
    backdrop-filter: blur(8px);
    background: rgba(197,154,56,0.07);
    margin-bottom: 1.5rem;
}
.badge-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--au-400);
    animation: bdot 2.2s ease-in-out infinite;
}
@keyframes bdot { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

.hero-headline {
    font-family: var(--f-serif);
    font-size: clamp(3.6rem, 8vw, 7rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
}
.hero-headline em { 
    font-style: italic; 
    color: var(--au-400); 
    display: block; 
    text-shadow: 0 4px 24px rgba(209, 186, 142, 0.35);
}

.hero-copy {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.95);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3.5rem; }

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.stat-block { display: flex; flex-direction: column; }
.stat-block strong {
    font-family: var(--f-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--au-300);
    line-height: 1;
}
.stat-block span { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 0.15rem; letter-spacing: 0.04em; }
.stat-divider { width:1px; height:40px; background: rgba(255,255,255,0.14); }

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255,255,255,0.45);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: ha-in 1s var(--ease) 1.4s both;
    transition: color var(--dur) var(--ease);
}
.hero-scroll:hover { color: rgba(255,255,255,0.85); }
.scroll-mouse {
    width: 22px; height: 34px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: var(--r-full);
    display: flex; justify-content: center;
    padding-top: 5px;
}
.scroll-wheel {
    width: 3px; height: 8px;
    background: rgba(255,255,255,0.45);
    border-radius: var(--r-full);
    animation: sw-bounce 1.9s ease-in-out infinite;
}
@keyframes sw-bounce { 0%,100%{transform:translateY(0);opacity:1;} 50%{transform:translateY(10px);opacity:0.3;} }

/* ─── Section Header (reusable) ──────────────────────────────── */
.sec-header { margin-bottom: 3.5rem; }
.sec-header .lead { margin-top: 1rem; }
.sec-header.centered { text-align: center; }
.sec-header.centered .lead { margin-left: auto; margin-right: auto; }
.sec-header.centered .gold-bar { margin-left: auto; margin-right: auto; }

/* ─── Scroll Reveal ──────────────────────────────────────────── */
.rv { opacity: 0; transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.rv-up    { transform: translateY(44px); }
.rv-left  { transform: translateX(-44px); }
.rv-right { transform: translateX(44px); }
.rv.in    { opacity: 1; transform: translate(0); }

/* ─── Philosophy Section (index) ────────────────────────────── */
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.phil-img-wrap {
    position: relative;
    padding: 0 2.5rem 2.5rem 0;
}
.phil-img-frame {
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
}
.phil-img-frame img { width: 100%; height: 100%; transition: transform 0.9s var(--ease); }
.phil-img-frame:hover img { transform: scale(1.04); }

.phil-img-accent {
    position: absolute;
    bottom: 0; right: 0;
    width: 65%; height: 65%;
    border: 3px solid var(--au-500);
    border-radius: var(--r-lg);
    z-index: -1;
    opacity: 0.55;
}
.phil-badge {
    position: absolute;
    bottom: 3rem; right: -0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--g-800);
    color: var(--white);
    padding: 0.85rem 1.2rem;
    border-radius: var(--r-md);
    box-shadow: var(--sh-md);
    z-index: 2;
}
.phil-badge i { color: var(--au-400); font-size: 1.5rem; }
.phil-badge strong { display: block; font-size: 0.95rem; font-weight: 700; line-height: 1; margin-bottom: 0.2rem; }
.phil-badge span   { font-size: 0.72rem; color: rgba(255,255,255,0.55); }

.pillars { display: flex; flex-direction: column; gap: 0.85rem; margin: 1.5rem 0; }
.pillar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.25rem;
    background: var(--n-50);
    border-radius: var(--r-sm);
    border-left: 3px solid var(--au-500);
    box-shadow: var(--sh-xs);
}
.pillar i { font-size: 1.2rem; color: var(--g-600); flex-shrink: 0; }
.pillar strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--g-800); }
.pillar span   { font-size: 0.78rem; color: var(--n-400); }

/* ─── Principle Cards (index) ───────────────────────────────── */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.prin-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--n-200);
    border-radius: var(--r-lg);
    padding: 2.75rem 1.85rem;
    text-align: center;
    transition: all 0.5s var(--ease);
    overflow: hidden;
}
.prin-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: var(--r-lg);
    background: linear-gradient(var(--white), var(--white)) padding-box,
                linear-gradient(135deg, var(--au-500), var(--au-200)) border-box;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    z-index: 0;
}
.prin-card > * {
    position: relative;
    z-index: 1;
}
.prin-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.prin-card:hover::before { opacity: 1; }

.prin-num {
    position: absolute;
    top: 1.25rem; right: 1.5rem;
    font-family: var(--f-serif);
    font-size: 3.8rem;
    font-weight: 700;
    color: rgba(0,0,0,0.04);
    line-height: 1;
    user-select: none;
}
.prin-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--g-100);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--g-600);
    transition: all 0.4s var(--ease);
}
.prin-card:hover .prin-icon { background: var(--au-100); color: var(--au-600); transform: scale(1.1) rotate(-5deg); }

.prin-card .heading-sm { margin-bottom: 0.85rem; }
.prin-card .body-text  { margin-bottom: 1.5rem; }
.prin-rule {
    width: 32px; height: 2px;
    background: linear-gradient(90deg, var(--au-500), var(--au-300));
    border-radius: var(--r-full);
    margin: 0 auto;
    transform: scaleX(0);
    transition: transform 0.4s var(--ease);
}
.prin-card:hover .prin-rule { transform: scaleX(1); }

/* ─── About Page ─────────────────────────────────────────────── */
.about-overview {
    max-width: 900px;
}
.about-overview p { margin-bottom: 1.25rem; }
.about-overview p:last-child { margin-bottom: 0; }

/* Vision / Mission blocks */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}
.vm-card {
    padding: 2.5rem;
    border-radius: var(--r-lg);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.vm-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.vm-card--vision { background: var(--g-800); color: var(--white); }
.vm-card--mission { background: var(--g-950); color: var(--white); border: 1px solid rgba(197,154,56,0.25); }
.vm-card-icon,
.vm-icon {
    width: 52px; height: 52px;
    border-radius: var(--r-md);
    background: rgba(197,154,56,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: var(--au-400);
    margin-bottom: 1.25rem;
}
.vm-card .heading-sm { color: var(--white); margin-bottom: 0.85rem; }
.vm-card p { color: rgba(255,255,255,0.72); font-size: 0.95rem; line-height: 1.8; }
.vm-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--au-400);
    margin-bottom: 0.6rem;
}
.vm-accent {
    position: absolute;
    top: 0; right: 0;
    width: 80px; height: 80px;
    background: radial-gradient(circle at top right, rgba(197,154,56,0.18), transparent 70%);
}

/* Legal Registry */
.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.legal-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.75rem;
    background: var(--white);
    border: 1px solid var(--n-200);
    border-radius: var(--r-md);
    transition: all 0.4s var(--ease);
    box-shadow: var(--sh-xs);
}
.legal-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--au-300); }
.legal-icon {
    width: 46px; height: 46px; flex-shrink: 0;
    border-radius: var(--r-md);
    background: var(--g-100);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem;
    color: var(--g-600);
}
.legal-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--n-400); margin-bottom: 0.3rem; }
.legal-value { font-size: 0.95rem; font-weight: 600; color: var(--g-800); }

/* ─── Leadership Page ────────────────────────────────────────── */
/* Chairman block */
.chairman-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 4rem;
    align-items: start;
}
.chairman-img-wrap {
    position: relative;
}
.chairman-img-frame {
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: var(--sh-lg);
}
.chairman-img-frame img { width: 100%; height: 100%; }
.chairman-cred {
    position: absolute;
    bottom: -1.5rem;
    left: 1.5rem; right: 1.5rem;
    background: var(--g-800);
    border: 1px solid rgba(197,154,56,0.3);
    border-radius: var(--r-md);
    padding: 1rem 1.25rem;
    box-shadow: var(--sh-md);
    z-index: 2;
}
.cred-name { font-family: var(--f-serif); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.2rem; }
.cred-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--au-400); margin-bottom: 0.6rem; }
.cred-quals { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

.chairman-message {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--g-50);
    border-left: 4px solid var(--au-500);
    border-radius: 0 var(--r-md) var(--r-md) 0;
}
.chairman-message blockquote {
    font-family: var(--f-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--g-800);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}
.chairman-message cite { font-size: 0.8rem; color: var(--n-400); font-style: normal; font-weight: 600; }

/* Executive board */
.exec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}
.exec-card {
    background: var(--white);
    border: 1px solid var(--n-200);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all 0.45s var(--ease);
    box-shadow: var(--sh-xs);
}
.exec-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: rgba(197,154,56,0.35); }
.exec-img {
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, var(--g-100), var(--g-200));
}
.exec-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.exec-card:hover .exec-img img { transform: scale(1.05); }
.exec-info { padding: 1.5rem; }
.exec-name { font-family: var(--f-serif); font-size: 1.1rem; font-weight: 700; color: var(--g-800); margin-bottom: 0.25rem; }
.exec-pos  { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--au-600); margin-bottom: 0.75rem; }
.exec-desc { font-size: 0.855rem; color: var(--n-500); line-height: 1.7; }
.exec-divider { width: 28px; height: 2px; background: linear-gradient(90deg, var(--au-500), var(--au-300)); border-radius: var(--r-full); margin: 0.85rem 0; }

/* ─── Projects Page ──────────────────────────────────────────── */
/* Crops gallery */
.crops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}
.crop-card {
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    box-shadow: var(--sh-sm);
    transition: all 0.5s var(--ease);
    cursor: default;
}
.crop-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.crop-img { width: 100%; height: 100%; position: absolute; inset: 0; }
.crop-img img { width: 100%; height: 100%; transition: transform 0.9s var(--ease); }
.crop-card:hover .crop-img img { transform: scale(1.09); }
.crop-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7,26,15,0.85) 0%, rgba(7,26,15,0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}
.crop-name { font-family: var(--f-serif); font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; }
.crop-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--au-600);
    padding: 0.25rem 0.7rem;
    border-radius: var(--r-full);
}
.crop-desc { font-size: 0.82rem; color: rgba(255,255,255,0.72); margin-top: 0.5rem; display: none; }
.crop-card:hover .crop-desc { display: block; }

/* Investment Matrix */
.investment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}
.invest-card {
    background: var(--white);
    border: 1px solid var(--n-200);
    border-radius: var(--r-lg);
    padding: 2.25rem 1.75rem;
    transition: all 0.45s var(--ease);
    box-shadow: var(--sh-xs);
    position: relative;
    overflow: hidden;
}
.invest-card.featured {
    background: linear-gradient(135deg, var(--g-800), var(--g-700));
    border-color: rgba(197,154,56,0.35);
}
.invest-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.invest-tier {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--au-500);
    margin-bottom: 0.75rem;
}
.invest-card.featured .invest-tier { color: var(--au-300); }
.invest-name { font-family: var(--f-serif); font-size: 1.5rem; font-weight: 700; color: var(--g-800); margin-bottom: 0.5rem; }
.invest-card.featured .invest-name { color: var(--white); }
.invest-desc { font-size: 0.875rem; color: var(--n-500); line-height: 1.75; margin-bottom: 1.5rem; }
.invest-card.featured .invest-desc { color: rgba(255,255,255,0.65); }
.invest-features { display: flex; flex-direction: column; gap: 0.5rem; }
.invest-feat {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: var(--n-600);
}
.invest-card.featured .invest-feat { color: rgba(255,255,255,0.72); }
.invest-feat i { color: var(--au-500); font-size: 0.75rem; flex-shrink: 0; }
.invest-badge {
    position: absolute;
    top: 1.25rem; right: 1.25rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--au-600);
    padding: 0.25rem 0.65rem;
    border-radius: var(--r-full);
}

/* Strategic SBU */
.sbu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.sbu-card {
    background: var(--white);
    border: 1px solid var(--n-200);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all 0.5s var(--ease);
    box-shadow: var(--sh-xs);
}
.sbu-card:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); border-color: rgba(197,154,56,0.35); }
.sbu-img { aspect-ratio: 16/9; overflow: hidden; }
.sbu-img img { width: 100%; height: 100%; transition: transform 0.9s var(--ease); }
.sbu-card:hover .sbu-img img { transform: scale(1.07); }
.sbu-content { padding: 1.75rem; }
.sbu-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--au-600);
    margin-bottom: 0.75rem;
}
.sbu-status::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--au-500);
    animation: bdot 2s ease-in-out infinite;
}
.sbu-title { font-family: var(--f-serif); font-size: 1.2rem; font-weight: 700; color: var(--g-800); margin-bottom: 0.65rem; }
.sbu-desc  { font-size: 0.875rem; color: var(--n-500); line-height: 1.75; }

/* ─── Contact Page ───────────────────────────────────────────── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.contact-info-card {
    background: var(--g-900);
    border-radius: var(--r-xl);
    padding: 3rem;
    color: var(--white);
    position: sticky;
    top: calc(var(--nav-h) + 2rem);
}
.ci-head .eyebrow { color: var(--au-300); }
.ci-head .heading-md { color: var(--white); margin-bottom: 1rem; }
.ci-head p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.8; margin-bottom: 2rem; }

.ci-items { display: flex; flex-direction: column; gap: 1.5rem; }
.ci-item { display: flex; align-items: flex-start; gap: 1rem; }
.ci-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    border-radius: 50%;
    background: rgba(197,154,56,0.12);
    border: 1px solid rgba(197,154,56,0.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--au-400);
    font-size: 0.95rem;
}
.ci-item-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 0.2rem; }
.ci-item-val   { font-size: 0.9rem; color: rgba(255,255,255,0.78); line-height: 1.55; }
.ci-item-val a { color: rgba(255,255,255,0.78); }
.ci-item-val a:hover { color: var(--au-400); }

.ci-map {
    margin-top: 2rem;
    border-radius: var(--r-md);
    overflow: hidden;
    height: 200px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.3);
    font-size: 0.875rem;
    gap: 0.5rem;
}

/* Contact Form */
.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--n-200);
    border-radius: var(--r-xl);
    padding: 3rem;
    box-shadow: var(--sh-md);
}

.cf-title { font-family: var(--f-serif); font-size: 1.5rem; font-weight: 700; color: var(--g-800); margin-bottom: 0.5rem; }
.cf-sub   { font-size: 0.9rem; color: var(--n-400); margin-bottom: 2rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

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

/* Floating label fields */
.field {
    position: relative;
}
.field input,
.field textarea,
.field select {
    width: 100%;
    padding: 1.1rem 1rem 0.5rem;
    background: var(--n-50);
    border: 1.5px solid var(--n-200);
    border-radius: var(--r-sm);
    font-size: 0.9rem;
    color: var(--n-900);
    outline: none;
    transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
    appearance: none;
}
.field textarea { resize: vertical; min-height: 140px; padding-top: 1.4rem; }
.field label {
    position: absolute;
    top: 1rem; left: 1rem;
    font-size: 0.875rem;
    color: var(--n-400);
    pointer-events: none;
    transition: all 0.25s var(--ease);
    background: transparent;
    padding: 0 0.2rem;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: var(--g-500);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(46,125,82,0.1);
}
.field input:focus + label,
.field textarea:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:not(:placeholder-shown) + label {
    top: 0.35rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--g-600);
}
.field input::placeholder,
.field textarea::placeholder { color: transparent; }
.field select:focus + label { top: 0.35rem; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--g-600); }

.form-status {
    text-align: center;
    font-size: 0.875rem;
    padding: 0.75rem;
    border-radius: var(--r-sm);
    min-height: 2rem;
    transition: all var(--dur) var(--ease);
}
.form-status.success { background: var(--g-100); color: var(--g-700); border: 1px solid var(--g-300); }
.form-status.error   { background: #fef2f2; color: #b91c1c; border: 1px solid #fca5a5; }

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
    background: var(--n-950);
    color: rgba(255,255,255,0.6);
}
.footer-body {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1.1fr;
    gap: 4rem;
    padding: 5rem 0 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand-logo {
    height: 42px; width: auto;
    object-fit: contain;
    margin-bottom: 1.25rem;
    filter: brightness(0) invert(1) opacity(0.9);
}
.footer-brand-name {
    font-family: var(--f-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 1.25rem;
}
.footer-brand-name em { font-style: normal; color: var(--au-400); }
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.8; margin-bottom: 1.5rem; max-width: 280px; }

.footer-socials { display: flex; gap: 0.65rem; }
.f-social {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    transition: all var(--dur) var(--ease);
}
.f-social:hover { background: var(--au-500); border-color: var(--au-500); color: var(--white); transform: translateY(-3px); }

.footer-col-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.5rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.48);
    transition: all var(--dur) var(--ease);
}
.footer-links a i { font-size: 0.6rem; color: var(--au-600); transition: transform var(--dur) var(--ease); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-links a:hover i { color: var(--au-400); transform: translateX(3px); }

.footer-contact-items { display: flex; flex-direction: column; gap: 0.9rem; }
.fc-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: rgba(255,255,255,0.48); line-height: 1.6; }
.fc-item i { color: var(--au-500); flex-shrink: 0; width: 14px; margin-top: 0.15rem; }
.fc-item a { color: rgba(255,255,255,0.48); }
.fc-item a:hover { color: var(--au-400); }

.footer-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1.25rem 0;
}
.footer-copy   { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-credit { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-credit a { font-weight: 700; color: var(--au-500); }
.footer-credit a:hover { color: var(--au-300); }

/* ─── Scroll-To-Top ──────────────────────────────────────────── */
.stt-btn {
    position: fixed;
    bottom: 2rem; right: 2rem;
    z-index: 799;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--au-500), var(--au-600));
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 6px 22px rgba(197,154,56,0.4);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.4s var(--ease);
}
.stt-btn.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.stt-btn:hover   { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(197,154,56,0.5); }

/* ─── Divider ────────────────────────────────────────────────── */
.divider { width: 100%; height: 1px; background: var(--n-200); }

/* ─── Tag pill ───────────────────────────────────────────────── */
.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: var(--r-full);
}
.tag-pill--green  { background: var(--g-100);  color: var(--g-700); }
.tag-pill--gold   { background: var(--au-100); color: var(--au-700); }
.tag-pill--dark   { background: var(--n-100);  color: var(--n-700); }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .chairman-grid { grid-template-columns: 280px 1fr; gap: 3rem; }
    .principles-grid { grid-template-columns: 1fr 1fr; }
    .sbu-grid { grid-template-columns: 1fr 1fr; }
    .footer-body { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .footer-body > .footer-col:first-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
    :root { --section-y: clamp(3rem, 6vw, 5rem); }
    .philosophy-grid { grid-template-columns: 1fr; gap: 3rem; }
    .phil-img-wrap { max-width: 460px; padding: 0 2rem 2rem 0; }
    .vm-grid { grid-template-columns: 1fr; }
    .chairman-grid { grid-template-columns: 1fr; }
    .chairman-img-wrap { max-width: 300px; margin: 0 auto; }
    .chairman-cred { position: static; margin-top: 1rem; }
    .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
    .contact-info-card { position: static; }
    /* About overview 2-col becomes 1-col */
    [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
    /* FAQs grid */
    [style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
    .hamburger     { display: flex; }
    .desktop-nav   { display: none; }
    .principles-grid { grid-template-columns: 1fr; }
    .sbu-grid { grid-template-columns: 1fr; }
    .footer-body { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-body > .footer-col:first-child { grid-column: auto; }
    .footer-bar { flex-direction: column; text-align: center; }
    .form-row-2 { grid-template-columns: 1fr; }
    .hero-stats { flex-wrap: wrap; gap: 1.25rem; }
    .stat-divider { display: none; }
}

@media (max-width: 520px) {
    :root { --section-y: 3rem; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { justify-content: center; }
    .contact-form-wrap { padding: 1.75rem 1.25rem; }
    .contact-info-card { padding: 2rem 1.5rem; }
    .phil-img-wrap { padding: 0 0 2rem 0; }
    .stt-btn { bottom: 1.25rem; right: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .hero-parallax-bg { transform: none !important; }
}
