@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Inter:wght@300;400;500&display=swap');

:root {
    --aldw-bg: #07080b;
    --aldw-surface: #12141a;
    --aldw-surface-hover: #181b24;
    --aldw-gold: #d4af37;
    --aldw-gold-muted: rgba(212, 175, 55, 0.4);
    --aldw-text-main: #f0f2f5;
    --aldw-text-muted: #9ba0ab;
    --aldw-border: rgba(255, 255, 255, 0.08);
    --aldw-font-head: 'Cormorant Garamond', serif;
    --aldw-font-body: 'Inter', sans-serif;
    --aldw-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--aldw-bg);
    color: var(--aldw-text-main);
    font-family: var(--aldw-font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background ambient glow */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

/* Typography */
h1, h2, h3, .aldw-hdr-logo {
    font-family: var(--aldw-font-head);
    font-weight: 400;
}

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

/* Layout wrappers */
.aldw-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.aldw-hdr-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(7, 8, 11, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--aldw-border);
}

.aldw-hdr-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.aldw-hdr-brand {
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.aldw-hdr-logo {
    font-size: 28px;
    color: var(--aldw-gold);
    letter-spacing: 2px;
}

.aldw-hdr-title {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--aldw-text-muted);
    font-family: var(--aldw-font-body);
    font-weight: 300;
    display: none;
}

@media (min-width: 768px) {
    .aldw-hdr-title {
        display: block;
    }
}

.aldw-hdr-badge {
    border: 1px solid var(--aldw-gold);
    color: var(--aldw-gold);
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section */
.aldw-hero-wrap {
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.aldw-hero-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--aldw-gold) 0%, transparent 100%);
}

.aldw-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.aldw-hero-kicker {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--aldw-gold);
    margin-bottom: 24px;
    display: block;
}

.aldw-hero-title {
    font-size: clamp(40px, 6vw, 80px);
    line-height: 1.1;
    margin-bottom: 32px;
    color: #fff;
}

.aldw-hero-desc {
    font-size: 18px;
    color: var(--aldw-text-muted);
    font-weight: 300;
}

.aldw-hero-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .aldw-hero-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.aldw-hero-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--aldw-border);
    padding: 24px;
    text-align: center;
    border-radius: 8px;
    transition: var(--aldw-transition);
}

.aldw-hero-card:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--aldw-gold-muted);
    transform: translateY(-5px);
}

.aldw-hc-title {
    font-family: var(--aldw-font-head);
    color: var(--aldw-gold);
    font-size: 20px;
    margin-bottom: 8px;
}

.aldw-hc-desc {
    font-size: 13px;
    color: var(--aldw-text-muted);
}

/* Common Section Styles */
.aldw-sect-wrap {
    padding: 120px 0;
    position: relative;
}

.aldw-sect-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.aldw-sect-title {
    font-size: 42px;
    color: #fff;
    margin-bottom: 24px;
}

.aldw-sect-desc {
    color: var(--aldw-text-muted);
    font-weight: 300;
}

.aldw-grid-wrap {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
}

@media (min-width: 992px) {
    .aldw-grid-wrap {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Feature Cards */
.aldw-grid-card {
    background: var(--aldw-surface);
    border: 1px solid var(--aldw-border);
    padding: 40px;
    border-radius: 12px;
    transition: var(--aldw-transition);
    position: relative;
    overflow: hidden;
}

.aldw-grid-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--aldw-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--aldw-transition);
}

.aldw-grid-card:hover {
    background: var(--aldw-surface-hover);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.aldw-grid-card:hover::before {
    transform: scaleX(1);
}

.aldw-card-kicker {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--aldw-gold);
    margin-bottom: 16px;
    display: inline-block;
}

.aldw-card-title {
    font-size: 26px;
    color: #fff;
    margin-bottom: 16px;
}

.aldw-card-desc {
    color: var(--aldw-text-muted);
    font-size: 14px;
    margin-bottom: 24px;
    min-height: 44px;
}

.aldw-card-list {
    list-style: none;
    padding-top: 24px;
    border-top: 1px solid var(--aldw-border);
}

.aldw-card-list li {
    font-size: 14px;
    color: var(--aldw-text-main);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.aldw-card-list li:last-child {
    margin-bottom: 0;
}

.aldw-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--aldw-gold);
    border-radius: 50%;
}

/* Footer */
.aldw-ftr-wrap {
    background: var(--aldw-surface);
    border-top: 1px solid var(--aldw-border);
    padding: 80px 0 32px;
    margin-top: 60px;
}

.aldw-ftr-slogan {
    font-family: var(--aldw-font-head);
    font-size: 32px;
    color: #fff;
    text-align: center;
    margin-bottom: 64px;
}

.aldw-ftr-cols {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 48px;
    margin-bottom: 64px;
}

@media (min-width: 768px) {
    .aldw-ftr-cols {
        grid-template-columns: repeat(3, 1fr);
    }
}

.aldw-ftr-col h4 {
    font-family: var(--aldw-font-head);
    color: var(--aldw-gold);
    font-size: 20px;
    margin-bottom: 24px;
}

.aldw-ftr-col p {
    color: var(--aldw-text-muted);
    font-size: 14px;
    margin-bottom: 16px;
}

.aldw-ftr-contact ul {
    list-style: none;
}

.aldw-ftr-contact li {
    color: var(--aldw-text-muted);
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
}

.aldw-ftr-contact span {
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.aldw-ftr-nav ul {
    list-style: none;
}

.aldw-ftr-nav li {
    margin-bottom: 12px;
}

.aldw-ftr-nav a {
    color: var(--aldw-text-muted);
    font-size: 14px;
}

.aldw-ftr-nav a:hover {
    color: var(--aldw-gold);
}

.aldw-ftr-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--aldw-border);
    color: var(--aldw-text-muted);
    font-size: 12px;
}
