:root {
--gold: #C9A84C;
--gold-light: #E8C97A;
--gold-pale: #FDF6E3;
--navy: #1A2744;
--navy-light: #243560;
--cream: #FAFAF7;
--stone: #F0EDE6;
--charcoal: #2E2E2E;
--muted: #7A7A6E;
--white: #FFFFFF;
--border: rgba(201,168,76,0.2);
--shadow: 0 4px 40px rgba(26,39,68,0.08);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--charcoal); overflow-x: hidden; }

/* ─── NAV ─── */
nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
background: rgba(250,250,247,0.96); backdrop-filter: blur(12px);
border-bottom: 1px solid var(--border);
padding: 0 5vw;
display: flex; align-items: center; justify-content: space-between;
height: 70px; transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: var(--shadow); }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-icon {
width: 42px; height: 42px; border-radius: 50%;
background: var(--navy); display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
}
.nav-logo-icon svg { width: 22px; height: 22px; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-main { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.15rem; color: var(--navy); line-height: 1.1; }
.nav-logo-sub { font-size: 0.62rem; font-weight: 500; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { text-decoration: none; font-size: 0.88rem; font-weight: 500; color: var(--charcoal); position: relative; transition: color 0.2s; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1.5px; background: var(--gold); transition: width 0.3s; }
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--navy); color: var(--white) !important; padding: 9px 22px; border-radius: 6px; font-size: 0.85rem !important; transition: background 0.2s !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
display: none; position: fixed; top: 70px; left: 0; right: 0; z-index: 99;
background: var(--cream); border-bottom: 1px solid var(--border);
padding: 24px 5vw; flex-direction: column; gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { text-decoration: none; font-size: 1rem; font-weight: 500; color: var(--charcoal); padding: 8px 0; border-bottom: 1px solid var(--border); }

/* ─── PAGES ─── */
.page { display: none; min-height: 100vh; padding-top: 70px; animation: fadeIn 0.4s ease; }
.page.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ─── HERO ─── */
.hero {
min-height: calc(100vh - 70px);
background: var(--navy);
display: grid; grid-template-columns: 1fr 1fr;
align-items: center;
position: relative; overflow: hidden;
}
.hero-bg-pattern {
position: absolute; inset: 0; opacity: 0.04;
background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
background-size: 30px 30px;
}
.hero-left { padding: 80px 5vw 80px 8vw; position: relative; z-index: 1; }
.hero-badge {
display: inline-flex; align-items: center; gap: 8px;
background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.4);
color: var(--gold-light); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
text-transform: uppercase; padding: 7px 16px; border-radius: 100px; margin-bottom: 28px;
}
.hero-badge::before { content: '✦'; font-size: 0.6rem; }
.hero h1 {
font-family: 'Cormorant Garamond', serif; font-weight: 700;
font-size: clamp(2.6rem, 5vw, 4.2rem); line-height: 1.08;
color: var(--white); margin-bottom: 12px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-tagline {
font-size: 0.9rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
color: rgba(255,255,255,0.45); margin-bottom: 24px;
}
.hero-desc { color: rgba(255,255,255,0.7); font-size: 1.05rem; line-height: 1.75; max-width: 460px; margin-bottom: 40px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
background: var(--gold); color: var(--navy); font-weight: 600; font-size: 0.9rem;
padding: 14px 30px; border-radius: 8px; border: none; cursor: pointer;
text-decoration: none; display: inline-block; transition: all 0.25s;
letter-spacing: 0.01em;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }
.btn-outline {
background: transparent; color: var(--white); font-weight: 500; font-size: 0.9rem;
padding: 14px 30px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.3);
cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.25s;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }
.hero-right { display: flex; align-items: center; justify-content: center; padding: 60px 6vw; position: relative; z-index: 1; }
.hero-card {
background: rgba(255,255,255,0.06); border: 1px solid rgba(201,168,76,0.25);
border-radius: 20px; padding: 48px 40px; width: 100%; max-width: 380px;
backdrop-filter: blur(8px);
}
.hero-card-icon { width: 64px; height: 64px; background: var(--gold); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.hero-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--white); font-weight: 700; margin-bottom: 8px; }
.hero-card p { color: rgba(255,255,255,0.6); font-size: 0.92rem; line-height: 1.6; margin-bottom: 28px; }
.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-stat { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 16px; }
.hero-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.hero-stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em; }

/* ─── SECTIONS ─── */
section { padding: 45px 8vw; }
.section-tag {
display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--navy); line-height: 1.15; margin-bottom: 16px; }
.section-desc { font-size: 1.05rem; color: var(--muted); line-height: 1.75; max-width: 560px; }
.section-header { max-width: 640px; margin-bottom: 20px; }
.divider { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin: 16px 0 20px; }

/* ─── ABOUT ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-block { position: relative; }
.about-img-frame {
background: var(--navy); border-radius: 20px; aspect-ratio: 4/3;
display: flex; align-items: center; justify-content: center; overflow: hidden;
position: relative;
}
.about-img-pattern {
position: absolute; inset: 0; opacity: 0.08;
background-image: repeating-linear-gradient(0deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 40px);
}
.about-img-inner { position: relative; z-index: 1; text-align: center; color: var(--white); }
.about-img-inner p { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-style: italic; opacity: 0.7; }
.about-badge-float {
position: absolute; bottom: -20px; right: -20px;
background: var(--gold); color: var(--navy); border-radius: 16px; padding: 20px 24px;
box-shadow: 0 8px 32px rgba(201,168,76,0.4); font-weight: 700;
}
.about-badge-float .num { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; line-height: 1; }
.about-badge-float .lbl { font-size: 0.75rem; letter-spacing: 0.05em; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.value-chip {
display: flex; align-items: center; gap: 10px;
background: var(--stone); border-radius: 10px; padding: 12px 16px;
font-size: 0.85rem; font-weight: 500; color: var(--navy);
}
.value-chip::before { content: '✦'; color: var(--gold); font-size: 0.7rem; flex-shrink: 0; }

/* ─── BENEFITS ─── */
#benefits { background: var(--stone); }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.benefit-card {
background: var(--white); border-radius: 16px; padding: 32px 28px;
border: 1px solid var(--border); transition: all 0.3s; cursor: default;
position: relative; overflow: hidden;
}
.about-card {
background: var(--white); border-radius: 16px; padding: 24px 20px;
border: 1px solid var(--border); transition: all 0.3s; cursor: default;
position: relative; overflow: hidden;
}

.benefit-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700; color:#983A1E; line-height: 1; margin-bottom: 12px; }
.benefit-title { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.benefit-list { list-style: none; }
.benefit-list li { font-size: 0.88rem; color: var(--muted); padding: 5px 0; border-bottom: 1px solid var(--stone); display: flex; align-items: flex-start; gap: 8px; }
.benefit-list li::before { content: '→'; color: var(--gold); flex-shrink: 0; font-size: 0.8rem; margin-top: 2px; }
.benefit-list li:last-child { border-bottom: none; }

/* ─── SECTORS ─── */
.sectors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
.sector-chip {
background: var(--white); border: 1px solid var(--border); border-radius: 12px;
padding: 20px 16px; text-align: center; font-size: 0.85rem; font-weight: 600;
color: var(--navy); transition: all 0.25s; cursor: default;
}
.sector-chip:hover { background: var(--navy); color: var(--white); border-color: var(--navy); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(26,39,68,0.2); }
.sector-chip .icon { font-size: 1.6rem; display: block; margin-bottom: 8px; }
.global-row { margin-top: 60px; background: var(--navy); border-radius: 20px; padding: 48px; display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.global-row-text { flex: 1; min-width: 260px; }
.global-row-text h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--white); font-weight: 700; margin-bottom: 10px; }
.global-row-text p { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.7; }
.global-pills { display: flex; gap: 12px; flex-wrap: wrap; }
.global-pill { background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.35); color: var(--gold-light); padding: 10px 18px; border-radius: 100px; font-size: 0.82rem; font-weight: 500; }

/* ─── MEMBERSHIP ─── */
#membership { background: var(--stone); }
.membership-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 60px; }
.membership-form-wrap {
background: var(--white); border-radius: 20px; padding: 40px;
border: 1px solid var(--border); box-shadow: var(--shadow);
}
.membership-form-wrap h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; letter-spacing: 0.03em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 8px;
font-family: 'DM Sans', sans-serif; font-size: 0.92rem; color: var(--charcoal);
background: var(--cream); transition: border-color 0.2s;
outline: none; resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit { width: 100%; background: var(--navy); color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600; padding: 15px; border: none; border-radius: 8px; cursor: pointer; transition: all 0.25s; margin-top: 8px; }
.form-submit:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.membership-perks { }
.perk-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.perk-item:last-child { border-bottom: none; }
.perk-icon { width: 44px; height: 44px; background: var(--gold-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.2rem; }
.perk-text strong { font-weight: 600; color: var(--navy); font-size: 0.95rem; display: block; margin-bottom: 3px; }
.perk-text span { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info-block { }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-detail-icon { width: 44px; height: 44px; background: var(--navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.contact-detail-text strong { display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-detail-text span { font-size: 0.95rem; color: var(--charcoal); line-height: 1.5; }
.contact-map { background: var(--navy); border-radius: 16px; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
.contact-map p { color: rgba(255,255,255,0.4); font-size: 0.9rem; }
.info-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.info-chip { background: var(--stone); border: 1px solid var(--border); border-radius: 8px; padding: 10px 16px; font-size: 0.8rem; color: var(--muted); }
.info-chip strong { color: var(--navy); display: block; font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 2px; }

/* ─── FOOTER ─── */
footer {
background: var(--navy); color: rgba(255,255,255,0.6);
padding: 60px 8vw 30px;
}
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; margin-bottom: 40px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; gap: 12px; }
.footer-bottom p { font-size: 0.8rem; }
.footer-bottom .gold { color: var(--gold); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
.hero { grid-template-columns: 1fr; }
.hero-right { display: none; }
.hero-left { padding: 60px 6vw; text-align: center; }
.hero-desc { margin: 0 auto 32px; }
.hero-btns { justify-content: center; }
.about-grid { grid-template-columns: 1fr; }
.membership-intro { grid-template-columns: 1fr; }
.contact-grid { grid-template-columns: 1fr; }
.footer-top { grid-template-columns: 1fr 1fr; }
.nav-links { display: none; }
.hamburger { display: flex; }
.form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
section { padding: 60px 5vw; }
.footer-top { grid-template-columns: 1fr; gap: 32px; }
.footer-bottom { flex-direction: column; text-align: center; }
.global-row { padding: 32px 24px; }
.hero-stat-grid { grid-template-columns: 1fr 1fr; }
}

.section-label {
	display: inline-block;
	font-size: 0.75rem;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: #6c63ff;
	margin-bottom: 20px;
}

.section-title {
	font-size: 2.8rem;
	font-weight: 700;
	color: #737373;
	margin-bottom: 16px;
	line-height: 1.2;
}

.section-title span {
	background: linear-gradient(135deg, #6c63ff, #48c6ef);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.section-description {
	font-size: 1.1rem;
	color: #888;
	*max-width: 600px;
	margin: 0 auto 50px;
	line-height: 1.7;
}

.images-row {
	display: flex;
	flex-direction: row;
	gap: 24px;
	justify-content: center;
	flex-wrap: wrap;
}

.image-card {
	width: 250px;
	height: 250px;
	border-radius: 16px;
	overflow: hidden;
	position: relative;
	background: #1a1c25;
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(108, 99, 255, 0.15);
}

.image-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.6s ease;
}

.image-card:hover img {
	transform: scale(1.05);
}

.image-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: linear-gradient(to top, rgba(15, 17, 23, 0.95) 0%, transparent 100%);
	pointer-events: none;
}

.card-info {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 24px;
	z-index: 2;
	text-align: left;
}

.card-name {
	font-size: 1.1rem;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 4px;
}

.card-role {
	font-size: 0.85rem;
	color: #E5E5E5;
	font-weight: 500;
	letter-spacing: 0.5px;
}

/* ─── member ─── */
.member-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding-top:10px;}
.member-stat { background:#E7E7E7; border: 1px solid var(--gold); border-radius: 12px; padding: 16px; }
.member-stat-num { font-family: 'Noto Sans', serif; font-size: 0.75rem; font-weight: 700; color:#782A78; line-height: 1.3; }
.member-stat-label { font-size: 0.72rem; color: #8E7128; margin-top: 4px; font-weight: 700;text-transform: uppercase; letter-spacing: 0.08em; }

/* ─── end ─── */
