/* ─────────────────────────────────────────────
   GLOBAL STYLES
   ───────────────────────────────────────────── */


*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --gold-dim: #8B6E2E;
    --ink: #0D0D0B;
    --ink-2: #161610;
    --ink-3: #1E1E17;
    --stone: #2A2A22;
    --muted: #6B6B5A;
    --cream: #F5F0E8;
    --cream-dim: #C8C4B8;
    --white: #FFFFFF;
    --dark: #1A1A1A;
    --light: #F5F5F5;
    --red-csr: #C41E3A;
    --ff-display: 'Cormorant Garamond', Georgia, serif;
    --ff-body: 'DM Sans', sans-serif;
    --nav-h: 60px;
    --section-gap: 100px;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--ink);
    color: var(--cream);
    font-family: var(--ff-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ── UTILITY ── */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 18px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.flex {
    display: flex;
    align-items: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tag {
    display: inline-block;
    font-family: var(--ff-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 4px 0;
    position: relative;
}

.tag::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--gold);
    vertical-align: middle;
    margin-right: 10px;
}

.section-title {
    font-family: var(--ff-display);
    font-size: clamp(30px, 4vw, 56px);
    font-weight: 600;
    line-height: 1.1;
    color: var(--cream);
    letter-spacing: -0.01em;
}

.section-title em {
    font-style: italic;
    color: var(--gold-light);
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--ink);
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
}

/* shimmer sweep */
.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.28) 50%, transparent 100%);
    transform: skewX(-20deg);
    transition: left 0.55s ease;
}

.btn-gold:hover::before {
    left: 130%;
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.btn-gold:active {
    transform: translateY(0) scale(0.97);
    box-shadow: none;
}

/* arrow icon slides right on hover */
.btn-gold svg {
    transition: transform 0.25s ease;
}

.btn-gold:hover svg {
    transform: translateX(4px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 31px;
    background: transparent;
    color: var(--gold);
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid var(--gold-dim);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.3s, border-color 0.3s, transform 0.25s, box-shadow 0.3s;
}

/* fill-in wipe from left */
.btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.btn-outline:hover::before {
    transform: scaleX(1);
}

.btn-outline:hover {
    color: var(--ink);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.25);
}

.btn-outline:active {
    transform: translateY(0) scale(0.97);
}

.btn-outline>* {
    position: relative;
    z-index: 1;
}

.btn-outline svg {
    transition: transform 0.25s ease;
}

.btn-outline:hover svg {
    transform: translateX(4px);
}

.divider-gold {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 20px 0;
}

/* ── TOPBAR ── */
.topbar {
    background: var(--stone);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    padding: 8px 0;
    font-size: 12px;
    color: var(--cream-dim);
}

.topbar a:hover {
    color: var(--gold);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left,
.topbar-right {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* ── NAVBAR ── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 900;
    height: var(--nav-h);
    background: rgba(13, 13, 11, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.navbar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 4px;
}

.logo {
    font-family: var(--ff-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.02em;
}

.logo span {
    color: var(--cream);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--cream-dim);
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--gold-light);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .has-dropdown {
    position: relative;
}

.dropdown {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 210px;
    background: var(--ink-2);
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-top: 2px solid var(--gold);
    padding: 6px 0;
    z-index: 999;
    transform: translateY(6px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}

/* invisible padding bridge so mouse can travel from link → dropdown */
.dropdown::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 11px 22px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cream-dim);
    transition: color 0.18s, background 0.18s, padding-left 0.18s;
}

.dropdown a:hover {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.07);
    padding-left: 28px;
}

.dropdown a::after {
    display: none;
}

.nav-cta {
    margin-left: 20px;
    padding: 10px 22px;
    font-size: 12px;
}

.btn-gold.nav-cta {
    padding: 10px 22px;
    font-size: 12px;
    border-radius: 0;
}

.hamburger {
    display: none;
    background: none;
    border: 1px solid rgba(201, 168, 76, 0.25);
    cursor: pointer;
    color: var(--cream);
    padding: 7px;
    transition: border-color 0.2s;
}

.hamburger:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ── MOBILE SIDEBAR ── */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-overlay.open {
    display: block;
    opacity: 1;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100dvh;
    background: var(--ink-2);
    border-left: 1px solid rgba(201, 168, 76, 0.15);
    z-index: 1001;
    padding: 0;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-sidebar.open {
    transform: translateX(0);
}

.mobile-sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.mobile-close {
    background: none;
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: var(--cream-dim);
    cursor: pointer;
    padding: 6px;
    transition: all 0.2s;
}

.mobile-close:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.mobile-nav {
    list-style: none;
    padding: 12px 0;
    flex: 1;
}

.mobile-nav>li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-nav>li>a,
.mobile-nav>li>button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 24px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cream-dim);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
    text-align: left;
}

.mobile-nav>li>a:hover,
.mobile-nav>li>button:hover {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

.mobile-chevron {
    width: 16px;
    height: 16px;
    transition: transform 0.25s;
    flex-shrink: 0;
}

.mobile-chevron.rotated {
    transform: rotate(180deg);
}

.mobile-sub {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.mobile-sub.open {
    max-height: 400px;
    padding: 4px 0;
}

.mobile-sub a {
    display: block;
    padding: 11px 24px 11px 40px;
    font-size: 12px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.2s;
}

.mobile-sub a::before {
    content: '—';
    margin-right: 8px;
    color: var(--gold-dim);
    font-size: 10px;
}

.mobile-sub a:hover {
    color: var(--gold);
}

.mobile-cta {
    padding: 20px 24px;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.mobile-cta .btn-gold {
    width: 100%;
    justify-content: center;
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(13, 13, 11, 0.92) 0%, rgba(13, 13, 11, 0.7) 55%, rgba(13, 13, 11, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}

.hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    font-family: var(--ff-display);
    font-size: clamp(46px, 7vw, 90px);
    font-weight: 600;
    line-height: 1.0;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold-light);
    display: block;
}

.hero-desc {
    font-size: 17px;
    color: rgba(245, 240, 232, 0.75);
    max-width: 500px;
    margin-bottom: 44px;
    font-weight: 300;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4
    }

    50% {
        opacity: 1
    }
}

/* ── STATS BAR ── */
.stats-bar {
    background: var(--ink-2);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    padding: 36px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0;
}

.stat-item {
    padding: 20px 24px;
    border-right: 1px solid rgba(201, 168, 76, 0.1);
    text-align: center;
}

.stat-item:last-child {
    border-right: none;
}

.stat-value {
    font-family: var(--ff-display);
    font-size: 48px;
    font-weight: 600;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ── DIVISIONS ── */
.section {
    padding: var(--section-gap) 0;
}

.section-header {
    margin-bottom: 56px;
}

.section-header-flex {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
}

.division-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
}

.division-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.division-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.division-card:hover img {
    transform: scale(1.06);
}

.division-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 13, 11, 0.9) 0%, rgba(13, 13, 11, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    transition: background 0.3s;
}

.division-card:hover .division-card-overlay {
    background: linear-gradient(to top, rgba(13, 13, 11, 0.95) 0%, rgba(13, 13, 11, 0.4) 70%, rgba(13, 13, 11, 0.1) 100%);
}

.division-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(201, 168, 76, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s 0.1s;
}

.division-card:hover .division-icon {
    opacity: 1;
    transform: translateY(0);
}

.division-icon svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.division-name {
    font-family: var(--ff-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.division-tagline {
    font-size: 13px;
    color: rgba(245, 240, 232, 0.65);
    transform: translateY(6px);
    opacity: 0;
    transition: all 0.3s;
}

.division-card:hover .division-tagline {
    opacity: 1;
    transform: translateY(0);
}

.division-arrow {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s;
}

.division-card:hover .division-arrow {
    opacity: 1;
}

/* ── PROJECTS ── */
.project-filters {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.filter-btn {
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid var(--stone);
    color: var(--muted);
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2px;
}

.project-card {
    position: relative;
    overflow: hidden;
    background: var(--stone);
}

.project-card-img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.project-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.project-card:hover .project-card-img img {
    transform: scale(1.05);
}

.project-card-body {
    padding: 24px;
}

.project-status {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 3px 10px;
    margin-bottom: 10px;
}

.status-running {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
}

.status-completed {
    background: rgba(89, 169, 97, 0.15);
    color: #82C98A;
}

.status-upcoming {
    background: rgba(100, 140, 200, 0.15);
    color: #8AB0E8;
}

.project-title {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 8px;
    line-height: 1.2;
}

.project-meta {
    font-size: 12px;
    color: var(--muted);
    display: flex;
    gap: 16px;
    align-items: center;
}

.project-meta svg {
    width: 14px;
    height: 14px;
}

/* ── OFFERS ── */
.offers-section {
    background: var(--ink-2);
}

.offer-card {
    background: var(--stone);
    border: 1px solid rgba(201, 168, 76, 0.1);
    overflow: hidden;
    transition: border-color 0.25s;
}

.offer-card:hover {
    border-color: rgba(201, 168, 76, 0.35);
}

.offer-thumb {
    position: relative;
    aspect-ratio: 3/2;
    overflow: hidden;
}

.offer-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--ink);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
}

.offer-discount {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(13, 13, 11, 0.85);
    border: 1px solid var(--gold-dim);
    color: var(--gold-light);
    font-family: var(--ff-display);
    font-size: 28px;
    font-weight: 700;
    padding: 6px 14px;
    line-height: 1;
}

.offer-body {
    padding: 20px;
}

.offer-title {
    font-family: var(--ff-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 6px;
}

.offer-desc {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 14px;
}

.offer-valid {
    font-size: 11px;
    color: var(--gold-dim);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ── CSR ── */
.csr-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--ink-2);
    border: 1px solid rgba(201, 168, 76, 0.08);
}

.csr-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.csr-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.csr-body .section-title {
    font-size: 28px;
    margin-bottom: 12px;
}

.csr-body p {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 20px;
}

.csr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.csr-item {
    background: var(--ink-2);
    border: 1px solid rgba(201, 168, 76, 0.08);
    overflow: hidden;
}

.csr-item-img {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.csr-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.csr-item:hover .csr-item-img img {
    transform: scale(1.04);
}

.csr-item-body {
    padding: 20px;
}

.csr-item-date {
    font-size: 11px;
    color: var(--gold-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.csr-item-title {
    font-family: var(--ff-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--cream);
}

/* ── TESTIMONIALS ── */
.testimonials-section {
    background: var(--ink-3);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--stone);
    padding: 32px;
    border-left: 2px solid var(--gold);
    position: relative;
}

.testimonial-quote {
    font-family: var(--ff-display);
    font-size: 56px;
    color: var(--gold);
    line-height: 0.5;
    margin-bottom: 16px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 15px;
    color: var(--cream-dim);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 24px;
    font-family: var(--ff-display);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold-dim);
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--cream);
}

.testimonial-role {
    font-size: 12px;
    color: var(--muted);
}

.rating-stars {
    color: var(--gold);
    font-size: 12px;
    margin-bottom: 2px;
}

/* ── BLOOD BANK CTA ── */
.blood-cta {
    background: linear-gradient(135deg, #1a0808 0%, #2d0a0a 100%);
    border: 1px solid rgba(200, 60, 60, 0.2);
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.blood-icon {
    font-size: 72px;
    line-height: 1;
    margin-bottom: 20px;
}

.blood-title {
    font-family: var(--ff-display);
    font-size: 40px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 12px;
}

.blood-title span {
    color: #E57373;
}

.blood-groups {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.blood-badge {
    padding: 8px 16px;
    border: 1px solid rgba(200, 60, 60, 0.35);
    color: #E57373;
    font-family: var(--ff-display);
    font-size: 18px;
    font-weight: 700;
}

.btn-blood {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #C62828;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.25s;
}

.btn-blood:hover {
    background: #E53935;
}

/* ── CLIENTS ── */
.clients-section {
    padding: 60px 0;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.clients-label {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 32px;
    text-align: center;
}

.clients-track {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.client-logo {
    opacity: 0.35;
    filter: grayscale(1) brightness(2);
    transition: opacity 0.25s, filter 0.25s;
}

.client-logo:hover {
    opacity: 0.85;
    filter: grayscale(0);
}

.client-logo img {
    height: 36px;
    width: auto;
}

/* ── CONTACT SECTION ── */
.contact-section {
    background: var(--ink-2);
}

.contact-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(201, 168, 76, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
}

.contact-info-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 4px;
}

.contact-info-value {
    font-size: 15px;
    color: var(--cream);
}

.contact-form label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    background: var(--stone);
    border: 1px solid rgba(201, 168, 76, 0.12);
    color: var(--cream);
    padding: 12px 16px;
    font-family: var(--ff-body);
    font-size: 14px;
    outline: none;
    transition: border-color 0.25s;
    margin-bottom: 20px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
}

.contact-form select option {
    background: var(--stone);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-success {
    background: rgba(82, 196, 95, 0.1);
    border: 1px solid rgba(82, 196, 95, 0.25);
    color: #82C98A;
    padding: 16px 20px;
    font-size: 14px;
    margin-bottom: 24px;
}

/* ── FOOTER ── */
footer {
    background: var(--ink);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    font-size: 24px;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.75;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: all 0.25s;
}

.social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-col h4 {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 13px;
    color: var(--muted);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--cream);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--muted);
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .blood-cta {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 999px) {

    .nav-links,
    .nav-cta {
        display: none !important;
    }

    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
    }

}

@media (max-width: 768px) {
    :root {
        --section-gap: 64px;
    }




    .hero h1 {
        font-size: 48px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3,
    .csr-grid {
        grid-template-columns: 1fr;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid,
    .csr-card {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ─────────────────────────────────────────────
   HERO SECTION
   ───────────────────────────────────────────── */

.subpage .hero-section {
    display: flex;
    align-items: center;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
}

.subpage .hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.subpage .hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.subpage .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.subpage .hero-content p {
    font-size: 1.2rem;
    color: var(--gold);
    max-width: 600px;
    line-height: 1.8;
}

/* ─────────────────────────────────────────────
   FILTER BUTTONS
   ───────────────────────────────────────────── */

.subpage .filter-section {
    padding: 3rem 0;
    background: var(--light);
    border-bottom: 1px solid #e0e0e0;
}

.subpage .filter-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    background: #f5f5f5;
    color: var(--dark);
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.subpage .filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.subpage .filter-btn.active {
    background: var(--gold);
    color: var(--dark);
}

/* ─────────────────────────────────────────────
   PROJECTS GRID
   ───────────────────────────────────────────── */

.subpage .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 4rem 0;
}

.subpage .project-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.subpage .project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.subpage .project-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.subpage .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.subpage .project-card:hover .project-image img {
    transform: scale(1.05);
}

.subpage .project-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.subpage .status-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    z-index: 1;
}

.subpage .status-badge.running {
    background: #4CAF50;
}

.subpage .status-badge.completed {
    background: var(--gold);
    color: var(--dark);
}

.subpage .status-badge.upcoming {
    background: #2196F3;
}

.subpage .project-content {
    padding: 1.5rem;
}

.subpage .project-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    color: var(--dark);
}

.subpage .project-category {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 500;
}

.subpage .project-description {
    margin: 1rem 0;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.subpage .project-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin: 1rem 0;
    padding: 1rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    font-size: 0.85rem;
}

.subpage .project-meta-item {
    color: #666;
}

.subpage .project-meta-item span {
    color: #999;
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

.subpage .project-meta-item p {
    margin: 0;
    color: var(--dark);
    font-weight: 500;
}

.subpage .project-cta {
    display: inline-block;
    margin-top: 1rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.subpage .project-cta:hover {
    border-bottom-color: var(--gold);
}

/* ─────────────────────────────────────────────
   ABOUT/STORY PAGE
   ───────────────────────────────────────────── */

.subpage .about-section {
    padding: 4rem 0;
}

.subpage .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.subpage .about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.subpage .about-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.subpage .about-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.subpage .info-box {
    padding: 1.5rem;
    background: #f9f9f9;
    border-left: 4px solid var(--gold);
}

.subpage .info-box h4 {
    margin: 0 0 0.5rem 0;
    color: var(--dark);
}

.subpage .info-box p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.subpage .about-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ─────────────────────────────────────────────
   DIVISIONS GRID
   ───────────────────────────────────────────── */

.subpage .divisions-section {
    padding: 4rem 0;
    background: #f9f9f9;
}

.subpage .divisions-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
}

.subpage .divisions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.subpage .division-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.subpage .division-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.subpage .division-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.subpage .division-card h3 {
    margin: 0 0 0.5rem 0;
    color: var(--dark);
}

.subpage .division-tagline {
    color: #666;
    margin: 0.5rem 0 1rem 0;
}

.subpage .division-description {
    color: #777;
    font-size: 0.9rem;
    margin: 1rem 0;
}

.subpage .division-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.subpage .division-link:hover {
    color: var(--gold-dim);
}

/* ─────────────────────────────────────────────
   STATS SECTION
   ───────────────────────────────────────────── */

.subpage .stats-section {
    padding: 4rem 0;
    background: var(--dark);
    color: white;
}

.subpage .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.subpage .stat-item {
    padding: 2rem;
}

.subpage .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.subpage .stat-label {
    margin: 0;
    color: #ddd;
}

/* ─────────────────────────────────────────────
   TEAM SECTION
   ───────────────────────────────────────────── */

.subpage .team-section {
    padding: 4rem 0;
}

.subpage .team-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
}

.subpage .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.subpage .team-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.subpage .team-card:hover {
    transform: translateY(-4px);
}

.subpage .team-photo {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: opacity 0.3s ease;
}

.subpage .team-card:hover .team-photo {
    opacity: 0.9;
}

.subpage .team-photo-placeholder {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.subpage .team-name {
    margin: 0 0 0.3rem 0;
    color: var(--dark);
    font-weight: 600;
}

.subpage .team-title {
    margin: 0 0 0.5rem 0;
    color: var(--gold);
    font-weight: 500;
    font-size: 0.9rem;
}

.subpage .team-bio {
    margin: 0.5rem 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.subpage .team-social {
    display: inline-block;
    margin-top: 1rem;
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.subpage .team-social:hover {
    color: var(--gold-dim);
}

/* ─────────────────────────────────────────────
   CTA SECTION
   ───────────────────────────────────────────── */

.subpage .cta-section {
    padding: 4rem 0;
    background: var(--dark);
    color: white;
    text-align: center;
}

.subpage .cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.subpage .cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ddd;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.subpage .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.subpage .btn-gold {
    background: var(--gold);
    color: var(--dark);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.subpage .btn-gold:hover {
    background: var(--gold-dim);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.subpage .btn-secondary {
    background: transparent;
    color: var(--gold);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
    cursor: pointer;
}

.subpage .btn-secondary:hover {
    background: var(--gold);
    color: var(--dark);
}

/* ─────────────────────────────────────────────
   CSR PAGE
   ───────────────────────────────────────────── */

.subpage .blood-bank-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f5f5, #f0f0f0);
}

.subpage .blood-bank-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.subpage .blood-bank-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--red-csr);
}

.subpage .blood-bank-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.subpage .blood-bank-list {
    color: #666;
    line-height: 2;
    margin-bottom: 2rem;
}

.subpage .blood-bank-list li {
    margin-bottom: 0.5rem;
}

.subpage .btn-csr {
    background: var(--red-csr);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.subpage .btn-csr:hover {
    background: #a01628;
    transform: translateY(-2px);
}

.subpage .blood-bank-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.subpage .csr-cards-section {
    padding: 4rem 0;
}

.subpage .csr-cards-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
}

.subpage .csr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.subpage .csr-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.subpage .csr-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.subpage .csr-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.subpage .csr-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.subpage .csr-content {
    padding: 1.5rem;
}

.subpage .csr-badge {
    display: inline-block;
    background: #f0f0f0;
    color: var(--red-csr);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.subpage .csr-content h3 {
    margin: 0 0 0.5rem 0;
    color: var(--dark);
}

.subpage .csr-date {
    margin: 0.5rem 0;
    color: #999;
    font-size: 0.9rem;
}

.subpage .csr-description {
    margin: 1rem 0;
    color: #666;
    line-height: 1.6;
}

.subpage .csr-beneficiaries {
    padding: 1rem 0;
    border-top: 1px solid #eee;
    margin-top: 1rem;
}

.subpage .csr-beneficiaries p {
    margin: 0;
    color: var(--red-csr);
    font-weight: 600;
}

.subpage .csr-categories {
    padding: 4rem 0;
    background: #f9f9f9;
}

.subpage .csr-categories h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
}

.subpage .categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.subpage .category-box {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.subpage .category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.subpage .category-box h3 {
    margin: 0 0 0.5rem 0;
    color: var(--dark);
}

.subpage .category-box p {
    margin: 0.5rem 0;
    color: #666;
    font-size: 0.95rem;
}

.subpage .impact-section {
    padding: 4rem 0;
    background: var(--red-csr);
    color: white;
    text-align: center;
}

.subpage .impact-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.subpage .impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.subpage .impact-item {
    padding: 1rem;
}

.subpage .impact-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.subpage .impact-label {
    margin: 0;
    color: #ffd700;
}

/* ─────────────────────────────────────────────
   CONTACT PAGE
   ───────────────────────────────────────────── */

.subpage .contact-section {
    padding: 4rem 0;
}

.subpage .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.subpage .contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

.subpage .info-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.subpage .info-item h3 {
    margin: 0 0 0.5rem 0;
    color: var(--dark);
    font-size: 1.1rem;
}

.subpage .info-item p,
.subpage .info-item a {
    margin: 0.5rem 0;
    color: #666;
    line-height: 1.6;
    text-decoration: none;
    font-weight: 600;
    color: var(--gold);
}

.subpage .social-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.subpage .social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--dark);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.subpage .social-btn:hover {
    transform: translateY(-4px);
}

.subpage .working-hours {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
}

.subpage .working-hours h3 {
    margin: 0 0 1rem 0;
    color: var(--dark);
    font-size: 1.1rem;
}

.subpage .working-hours ul {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #666;
}

.subpage .working-hours li {
    margin-bottom: 0.5rem;
}

/* CONTACT FORM */

.subpage .form-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

.subpage .alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.subpage .alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.subpage .alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.subpage .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.subpage .form-group {
    display: flex;
    flex-direction: column;
}

.subpage .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.subpage .form-group input,
.subpage .form-group textarea,
.subpage .form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.subpage .form-group input:focus,
.subpage .form-group textarea:focus,
.subpage .form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.subpage .form-group textarea {
    resize: vertical;
}

.subpage .form-submit {
    background: var(--gold);
    color: var(--dark);
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subpage .form-submit:hover {
    background: var(--gold-dim);
    transform: translateY(-2px);
}

.subpage .form-note {
    margin: 0;
    color: #999;
    font-size: 0.9rem;
}

/* MAP SECTION */

.subpage .map-section {
    padding: 3rem 0;
}

.subpage .map-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--dark);
}

.subpage .map-iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 8px;
}

/* FAQ SECTION */

.subpage .faq-section {
    padding: 4rem 0;
    background: #f9f9f9;
}

.subpage .faq-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
}

.subpage .faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.subpage .faq-item {
    background: white;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.subpage .faq-toggle {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.subpage .faq-toggle:hover {
    background: #f9f9f9;
    color: var(--gold);
}

.subpage .faq-toggle span:last-child {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.subpage .faq-toggle.active span:last-child {
    transform: rotate(45deg);
}

.subpage .faq-content {
    display: none;
    padding: 1.5rem;
    color: #666;
    line-height: 1.6;
    animation: slideDown 0.3s ease;
}

.subpage .faq-content.active {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─────────────────────────────────────────────
   RESPONSIVE DESIGN
   ───────────────────────────────────────────── */

@media (max-width: 768px) {
    .subpage .hero-section {

        min-height: 60vh;
    }

    .subpage .hero-content h1 {
        font-size: 2.5rem !important;
    }

    .subpage .hero-content p {
        font-size: 1rem !important;
    }

    .subpage .about-grid,
    .subpage .blood-bank-grid,
    .subpage .contact-grid {
        grid-template-columns: 1fr !important;
    }

    .subpage .projects-grid,
    .subpage .divisions-grid,
    .subpage .csr-grid,
    .subpage .team-grid,
    .subpage .categories-grid,
    .subpage .stats-grid,
    .subpage .impact-grid {
        grid-template-columns: 1fr !important;
    }

    .subpage .project-meta {
        grid-template-columns: 1fr !important;
    }

    .subpage .about-boxes {
        grid-template-columns: 1fr !important;
    }

    .subpage .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .subpage .cta-buttons a {
        width: 100%;
        text-align: center;
    }



    .subpage .social-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .subpage .hero-content h1 {
        font-size: 2rem !important;
    }

    .subpage .stats-grid,
    .subpage .impact-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .subpage .stat-number {
        font-size: 2rem;
    }

    .subpage .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* ── PREMIUM CONTACT PAGE ── */
.contact-page {
    --contact-border: rgba(201, 168, 76, 0.18);
    --contact-border-strong: rgba(201, 168, 76, 0.36);
    --contact-panel: rgba(22, 22, 16, 0.78);
    --contact-panel-soft: rgba(245, 240, 232, 0.055);
    --contact-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
    background:
        radial-gradient(circle at 18% 8%, rgba(201, 168, 76, 0.1), transparent 28%),
        radial-gradient(circle at 85% 32%, rgba(232, 201, 122, 0.08), transparent 26%),
        var(--ink);
    color: var(--cream);
}

.contact-page .container {
    width: min(100%, 1240px);
}

.contact-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    line-height: 1.4;
    text-transform: uppercase;
}

.contact-kicker::before {
    content: '';
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.contact-hero {
    min-height: clamp(560px, 82vh, 780px);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.contact-hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--contact-hero-image);
    background-position: center;
    background-size: cover;
    transform: scale(1.04);
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(105deg, rgba(13, 13, 11, 0.96) 0%, rgba(13, 13, 11, 0.78) 48%, rgba(13, 13, 11, 0.34) 100%),
        linear-gradient(180deg, rgba(13, 13, 11, 0.24), var(--ink));
}

.contact-hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.42), transparent);
}

.contact-hero__inner {
    position: relative;
    z-index: 1;
    padding-top: 60px;
    padding-bottom: 60px;
}

.contact-hero__content {
    max-width: 790px;
}

.contact-hero h1,
.contact-section-head h2,
.contact-form-intro h2,
.office-showcase__content h2,
.contact-final-cta h2 {
    font-family: var(--ff-display);
    font-weight: 600;
    line-height: 1;
    color: var(--white);
}

.contact-hero h1 {
    max-width: 860px;
    margin: 24px 0;
    font-size: clamp(54px, 7.3vw, 108px);
}

.contact-hero p {
    max-width: 620px;
    color: rgba(245, 240, 232, 0.78);
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.85;
    font-weight: 300;
}

.contact-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 42px;
}

.contact-primary-btn,
.contact-ghost-btn,
.luxury-submit {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    border: 1px solid transparent;
    font-family: var(--ff-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.contact-primary-btn,
.luxury-submit {
    position: relative;
    overflow: hidden;
    background: var(--gold);
    color: var(--ink);
    box-shadow: 0 16px 42px rgba(201, 168, 76, 0.22);
}

.contact-primary-btn::before,
.luxury-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    transform: translateX(-120%) skewX(-18deg);
    transition: transform 0.6s ease;
}

.contact-primary-btn:hover::before,
.luxury-submit:hover::before {
    transform: translateX(120%) skewX(-18deg);
}

.contact-primary-btn:hover,
.luxury-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 20px 52px rgba(201, 168, 76, 0.32);
}

.contact-ghost-btn {
    color: var(--cream);
    border-color: rgba(245, 240, 232, 0.2);
    background: rgba(245, 240, 232, 0.04);
    backdrop-filter: blur(14px);
}

.contact-ghost-btn:hover {
    color: var(--gold-light);
    border-color: var(--contact-border-strong);
    transform: translateY(-2px);
}

.contact-info-section,
.contact-form-section,
.office-showcase,
.contact-stats,
.contact-map-section,
.contact-final-cta {
    padding: clamp(50px, 8vw, 100px) 0;
}

.contact-section-head {
    max-width: 760px;
    margin-bottom: 40px;
}

.contact-section-head h2,
.contact-form-intro h2,
.office-showcase__content h2,
.contact-final-cta h2 {
    margin-top: 16px;
    font-size: clamp(30px, 4.8vw, 54px);
}

.contact-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.contact-info-card {
    min-height: 236px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 26px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(245, 240, 232, 0.095), rgba(245, 240, 232, 0.035));
    border: 1px solid var(--contact-border);
    box-shadow: var(--contact-shadow);
    backdrop-filter: blur(18px);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.contact-info-card::after {
    content: '';
    position: absolute;
    inset: auto 22px 0 22px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    border-color: var(--contact-border-strong);
    background: linear-gradient(145deg, rgba(245, 240, 232, 0.12), rgba(245, 240, 232, 0.045));
}

.contact-info-card:hover::after {
    opacity: 1;
}

.contact-info-card__icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    border: 1px solid var(--contact-border);
    background: rgba(201, 168, 76, 0.08);
}

.contact-info-card__icon svg {
    width: 22px;
    height: 22px;
}

.contact-info-card__label {
    display: block;
    margin-top: auto;
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-info-card a,
.contact-info-card p {
    margin-top: 10px;
    color: var(--cream);
    font-size: 15px;
    line-height: 1.7;
}

.contact-form-section {
    background:
        linear-gradient(180deg, rgba(22, 22, 16, 0.74), rgba(13, 13, 11, 0.95)),
        var(--ink-2);
}

.contact-form-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.35fr);
    gap: clamp(34px, 6vw, 84px);
    align-items: start;
}

.contact-form-intro {
    position: sticky;
    top: calc(var(--nav-h) + 32px);
}

.contact-form-intro p,
.office-showcase__content p {
    margin-top: 22px;
    color: rgba(245, 240, 232, 0.68);
    font-size: 15px;
    line-height: 1.9;
}

.contact-form-note {
    margin-top: 34px;
    padding: 22px;
    border-left: 2px solid var(--gold);
    background: rgba(245, 240, 232, 0.045);
}

.contact-form-note strong,
.contact-form-note span {
    display: block;
}

.contact-form-note strong {
    color: var(--cream);
    font-size: 14px;
}

.contact-form-note span {
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
}

.luxury-contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: clamp(24px, 4vw, 38px);
    background: linear-gradient(145deg, rgba(245, 240, 232, 0.075), rgba(245, 240, 232, 0.032));
    border: 1px solid var(--contact-border);
    box-shadow: var(--contact-shadow);
    backdrop-filter: blur(20px);
}

.floating-field {
    position: relative;
}

.floating-field--wide,
.luxury-submit {
    grid-column: 1 / -1;
}

.floating-field input,
.floating-field select,
.floating-field textarea {
    width: 100%;
    min-height: 62px;
    padding: 24px 18px 12px;
    background: rgba(13, 13, 11, 0.62);
    border: 1px solid rgba(245, 240, 232, 0.12);
    color: var(--cream);
    font-family: var(--ff-body);
    font-size: 15px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.floating-field textarea {
    min-height: 148px;
    resize: vertical;
}

.floating-field select {
    appearance: none;
}

.floating-field label {
    position: absolute;
    left: 18px;
    top: 20px;
    color: rgba(245, 240, 232, 0.56);
    font-size: 13px;
    line-height: 1;
    pointer-events: none;
    transition: transform 0.2s ease, color 0.2s ease, font-size 0.2s ease;
}

.floating-field input:focus,
.floating-field select:focus,
.floating-field textarea:focus {
    background: rgba(13, 13, 11, 0.82);
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
}

.floating-field input:not(:placeholder-shown)+label,
.floating-field textarea:not(:placeholder-shown)+label,
.floating-field select:valid+label,
.floating-field input:focus+label,
.floating-field select:focus+label,
.floating-field textarea:focus+label {
    color: var(--gold-light);
    font-size: 10px;
    transform: translateY(-11px);
}

.floating-field input:invalid:not(:placeholder-shown),
.floating-field textarea:invalid:not(:placeholder-shown),
.floating-field select:invalid:focus {
    border-color: rgba(229, 83, 83, 0.75);
}

.luxury-submit {
    width: 100%;
    margin-top: 8px;
}

.luxury-submit svg {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 1;
    transition: transform 0.25s ease;
}

.luxury-submit:hover svg {
    transform: translateX(5px);
}

.luxury-submit__text,
.luxury-submit__loading {
    position: relative;
    z-index: 1;
}

.luxury-submit__loading {
    display: none;
}

.luxury-submit.is-loading .luxury-submit__text {
    display: none;
}

.luxury-submit.is-loading .luxury-submit__loading {
    display: inline;
}

.office-showcase {
    background: var(--ink);
}

.office-showcase__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: clamp(32px, 6vw, 80px);
    align-items: center;
}

.office-showcase__image {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    border: 1px solid var(--contact-border);
    box-shadow: var(--contact-shadow);
}

.office-showcase__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(13, 13, 11, 0.56));
}

.office-showcase__image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.office-showcase__image:hover img {
    transform: scale(1.04);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 34px;
}

.trust-grid div {
    padding: 18px;
    border: 1px solid var(--contact-border);
    background: var(--contact-panel-soft);
}

.trust-grid strong,
.trust-grid span {
    display: block;
}

.trust-grid strong {
    color: var(--gold-light);
    font-family: var(--ff-display);
    font-size: 24px;
    line-height: 1.1;
}

.trust-grid span {
    margin-top: 6px;
    color: var(--muted);
    font-size: 12px;
}

.contact-stats {
    padding-top: 0;
}

.contact-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2px;
    background: rgba(201, 168, 76, 0.14);
    border: 1px solid var(--contact-border);
}

.contact-stat-card {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
    background: rgba(22, 22, 16, 0.92);
}

.contact-stat-card strong {
    color: var(--gold-light);
    font-family: var(--ff-display);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 600;
    line-height: 1;
}

.contact-stat-card span {
    margin-top: 12px;
    color: var(--cream-dim);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-map-section {
    background: var(--ink-2);
}

.contact-map-frame {
    position: relative;
    overflow: hidden;
    height: clamp(360px, 46vw, 560px);
    border: 1px solid var(--contact-border);
    box-shadow: var(--contact-shadow);
    background: var(--ink);
}

.contact-map-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    box-shadow: inset 0 0 0 1px rgba(201, 168, 76, 0.08), inset 0 0 90px rgba(0, 0, 0, 0.42);
}

.contact-map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) invert(0.88) contrast(0.95) brightness(0.78);
}

.contact-final-cta {
    padding-top: 0;
}

.contact-final-cta__banner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    min-height: 260px;
    padding: clamp(32px, 5vw, 52px);
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(201, 168, 76, 0.18), rgba(245, 240, 232, 0.035)),
        var(--ink-2);
    border: 1px solid var(--contact-border-strong);
    box-shadow: var(--contact-shadow);
}

.contact-final-cta__banner::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact-final-cta__banner h2 {
    margin-top: 12px;
}

.contact-page .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.contact-page .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-page .reveal-delay-1 {
    transition-delay: 0.1s;
}

.contact-page .reveal-delay-2 {
    transition-delay: 0.18s;
}

.contact-page .reveal-delay-3 {
    transition-delay: 0.26s;
}

@media (max-width: 1180px) {

    .contact-card-grid,
    .contact-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {

    .contact-form-layout,
    .office-showcase__grid,
    .contact-final-cta__banner {
        grid-template-columns: 1fr;
    }

    .contact-form-intro {
        position: static;
    }

    .office-showcase__image,
    .office-showcase__image img {
        min-height: 360px;
    }

    .contact-final-cta__banner .contact-primary-btn {
        justify-self: start;
    }
}

.lux-feature-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 16px;

}

.lux-final-banner .lux-primary-btn {
    padding: 18px 40px;
    min-height: 60px;
}

@media (max-width: 720px) {
    .contact-hero {
        min-height: 620px;
    }

    .contact-hero__actions,
    .contact-primary-btn,
    .contact-ghost-btn {
        width: 100%;
    }

    .contact-card-grid,
    .contact-stat-grid,
    .luxury-contact-form,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        min-height: 210px;
    }

    .luxury-contact-form {
        padding: 22px;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 46px;
    }

    .contact-hero p,
    .contact-form-intro p,
    .office-showcase__content p {
        font-size: 14px;
    }

    .contact-info-section,
    .contact-form-section,
    .office-showcase,
    .contact-map-section,
    .contact-final-cta {
        padding: 62px 0;
    }

    .contact-stat-card {
        min-height: 156px;
    }
}

/* ── PREMIUM ABOUT PAGE ── */
.about-page {
    --about-border: rgba(201, 168, 76, 0.18);
    --about-border-strong: rgba(201, 168, 76, 0.36);
    --about-panel: rgba(22, 22, 16, 0.78);
    --about-panel-soft: rgba(245, 240, 232, 0.055);
    --about-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
    background:
        radial-gradient(circle at 16% 12%, rgba(201, 168, 76, 0.11), transparent 26%),
        radial-gradient(circle at 92% 42%, rgba(232, 201, 122, 0.08), transparent 24%),
        var(--ink);
    color: var(--cream);
}

.about-page .container {
    width: min(100%, 1240px);
}

.about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    line-height: 1.4;
    text-transform: uppercase;
}

.about-kicker::before {
    content: '';
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.about-hero {
    min-height: calc(100vh - var(--nav-h));
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.about-hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--about-hero-image);
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(104deg, rgba(13, 13, 11, 0.96) 0%, rgba(13, 13, 11, 0.76) 48%, rgba(13, 13, 11, 0.36) 100%),
        linear-gradient(180deg, rgba(13, 13, 11, 0.08), var(--ink));
}

.about-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 42px;
    align-items: end;
    padding-top: 80px;
    padding-bottom: 70px;
}

.about-hero__content {
    max-width: 880px;
}

.about-hero h1,
.about-story h2,
.about-executive h2,
.about-section-head h2,
.about-values__intro h2,
.about-team-head h2,
.about-final-cta h2 {
    font-family: var(--ff-display);
    font-weight: 600;
    line-height: 1;
    color: var(--white);
}

.about-hero h1 {
    margin: 24px 0;
    font-size: clamp(56px, 7vw, 108px);
    max-width: 900px;
}

.about-hero p {
    max-width: 620px;
    color: rgba(245, 240, 232, 0.78);
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 300;
    line-height: 1.85;
}

.about-hero__proof {
    display: grid;
    gap: 1px;
    border: 1px solid var(--about-border);
    background: rgba(201, 168, 76, 0.16);
    box-shadow: var(--about-shadow);
}

.about-hero__proof span {
    padding: 16px 18px;
    background: rgba(22, 22, 16, 0.78);
    color: var(--cream-dim);
    font-size: 11px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    backdrop-filter: blur(16px);
}

.about-story,
.about-executive,
.about-mission-vision,
.about-stats,
.about-strengths,
.about-values,
.about-timeline,
.about-team-preview,
.about-partners,
.about-final-cta {
    padding: clamp(54px, 8vw, 100px) 0;
}

.about-story__grid,
.about-values__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    gap: clamp(34px, 6vw, 86px);
    align-items: flex-start;
}


.about-executive__grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: start;
}


.about-story__image {
    min-height: 720px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--about-border);
    box-shadow: var(--about-shadow);
}

.about-executive__portrait {
    height: 720px;
    overflow: hidden;
    border-radius: 8px;
    position: sticky;
    /* optional */
    top: 120px;
    /* optional */
}

.about-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.about-story__image {
    height: 100%;
    min-height: 720px;
}

.about-story__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-story__image::after,
.about-executive__portrait::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 46%, rgba(13, 13, 11, 0.58));
}

.about-story__image img,
.about-executive__portrait img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

.about-story__image:hover img,
.about-executive__portrait:hover img {
    transform: scale(1.04);
}




.about-story h2,
.about-executive h2,
.about-section-head h2,
.about-values__intro h2,
.about-team-head h2,
.about-final-cta h2 {
    margin-top: 16px;
    margin-bottom: 10px;
    font-size: 30px;
}

.about-lead {
    margin-top: 26px;
    color: var(--cream);
    font-family: var(--ff-display);
    font-size: clamp(22px, 2.5vw, 32px);
    line-height: 1.35;
}

.about-story__content p:not(.about-lead),
.about-duo-card p,
.about-feature-card p,
.about-value-item p,
.about-timeline-item p {
    color: rgba(245, 240, 232, 0.68);
    font-size: 15px;
    line-height: 1.85;
}

.about-story__content p:not(.about-lead) {
    margin-top: 20px;
}

.about-milestone-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 34px;
}

.about-milestone-row div {
    padding: 18px;
    border: 1px solid var(--about-border);
    background: var(--about-panel-soft);
}

.about-milestone-row strong,
.about-milestone-row span {
    display: block;
}

.about-milestone-row strong {
    color: var(--gold-light);
    font-family: var(--ff-display);
    font-size: 30px;
    line-height: 1;
}

.about-milestone-row span {
    margin-top: 8px;
    color: var(--muted);
    font-size: 12px;
}

.about-executive {
    background: linear-gradient(180deg, rgba(22, 22, 16, 0.82), rgba(13, 13, 11, 0.96));
}

.about-executive__grid {
    grid-template-columns: minmax(280px, 0.98fr) minmax(0, 1.02fr)
}



.about-executive__message {
    padding: clamp(20px, 2vw, 4px);
    border: 1px solid var(--about-border);
    background: linear-gradient(145deg, rgba(245, 240, 232, 0.075), rgba(245, 240, 232, 0.032));
    box-shadow: var(--about-shadow);
    backdrop-filter: blur(18px);
}


.about-executive__message {
    min-height: 720px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/*.about-executive blockquote {*/
/*    margin-top: 30px;*/
/*    font-family: var(--ff-display);*/
/*    font-size: clamp(28px, 3vw, 44px);*/
/*    font-style: italic;*/
/*    line-height: 1.25;*/
/*}*/

/*.about-executive__message blockquote p {*/
/*    font-size: 18px;*/
/*}*/


.about-executive__message-content {
    max-height: 280px;
    overflow: hidden;
    position: relative;
    transition: max-height .4s ease;
}

.about-executive__message-content.expanded {
    max-height: 5000px;
}

.about-executive__message-content::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
    background: linear-gradient(transparent,
            rgba(15, 18, 24, 1));
    pointer-events: none;
}

.about-executive__message-content.expanded::after {
    display: none;
}


.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 24px;
    padding: 14px 30px;

    background: transparent;
    color: var(--gold);

    border: 1px solid var(--gold);

    font-size: 15px;
    font-weight: 600;
    letter-spacing: .04em;

    cursor: pointer;
    transition: all .35s ease;

    border-radius: 50px;
}

.btn-read-more::after {
    content: "→";
    font-size: 18px;
    transition: transform .3s ease;
}

.btn-read-more:hover {
    background: var(--gold);
    color: #111;
    box-shadow: 0 12px 30px rgba(201, 168, 76, .25);
    transform: translateY(-2px);
}

.btn-read-more:hover::after {
    transform: translateX(6px);
}

.btn-read-more:active {
    transform: translateY(0);
}

.btn-read-more:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(201, 168, 76, .18);
}

.about-executive__message {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.btn-read-more {
    width: auto;
    align-self: flex-start;
    display: inline-flex;
}

.about-signature {
    margin-top: 38px;
    padding-top: 24px;
    border-top: 1px solid var(--about-border);
}

.about-signature strong,
.about-signature span {
    display: block;
}

.about-signature strong {
    color: var(--gold-light);
    font-family: var(--ff-display);
    font-size: 30px;
}

.about-signature span {
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}



/* Desktop */
.about-executive__portrait {
    height: 720px;
    overflow: hidden;
}

.about-executive__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Large Tablet */
@media (max-width:1200px) {
    .about-executive__portrait {
        height: 600px;
    }
}

/* Tablet */
@media (max-width:991px) {

    .about-executive__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-executive__portrait {
        height: 500px;
        position: static;
        /* Remove sticky on mobile/tablet */
    }

    .about-executive__message {
        min-height: auto;
    }
}

/* Mobile */
@media (max-width:576px) {

    .about-executive__portrait {
        height: 320px;
    }

    .about-executive h2 {
        font-size: 28px;
    }

    .about-executive__message {
        padding: 18px;
    }

    .about-executive__message-content {
        max-height: 220px;
    }
}

.about-section-head {
    max-width: 780px;
    margin-bottom: 42px;
}

.about-duo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}






/*=========================
  Leadership Message
==========================*/

.about-executive__message-content{
    color:#4b5563;
    font-size:17px;
    line-height:1.9;
    font-weight:400;
}

.about-executive__message-content blockquote{
    position:relative;
    margin:0;
    padding:40px;
    background:#fff;
    border-left:5px solid var(--primary-color,#0d6efd);
    border-radius:14px;
    box-shadow:0 15px 45px rgba(0,0,0,.06);
}

.about-executive__message-content blockquote::before{
    content:"“";
    position:absolute;
    top:-18px;
    left:20px;
    font-size:90px;
    line-height:1;
    color:rgba(13,110,253,.12);
    font-family:Georgia, serif;
    font-weight:700;
}

.about-executive__message-content p{
    margin:0 0 18px;
}

.about-executive__message-content strong{
    color:#111827;
    font-weight:700;
}

.about-executive__message-content h1,
.about-executive__message-content h2,
.about-executive__message-content h3,
.about-executive__message-content h4,
.about-executive__message-content h5,
.about-executive__message-content h6{
    color:#111827;
    margin-bottom:20px;
    font-weight:700;
}

.about-executive__message-content ul,
.about-executive__message-content ol{
    margin:25px 0;
    padding-left:0;
    list-style:none;
}

.about-executive__message-content ul li{
    position:relative;
    margin-bottom:16px;
    padding-left:34px;
}

.about-executive__message-content ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:2px;
    width:22px;
    height:22px;
    border-radius:50%;
    background:#0b8f4d;
    color:#fff;
    font-size:13px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.about-executive__message-content ol{
    counter-reset:item;
}

.about-executive__message-content ol li{
    position:relative;
    padding-left:40px;
    margin-bottom:18px;
    counter-increment:item;
}

.about-executive__message-content ol li::before{
    content:counter(item);
    position:absolute;
    left:0;
    top:0;
    width:26px;
    height:26px;
    border-radius:50%;
    background:#0b8f4d;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    font-weight:600;
}

.about-executive__message-content a{
    color:#0b8f4d;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.about-executive__message-content a:hover{
    color:#083d77;
}

.about-executive__message-content img{
    max-width:100%;
    height:auto;
    border-radius:10px;
    margin:20px 0;
}

.about-executive__message-content table{
    width:100%;
    border-collapse:collapse;
    margin:25px 0;
}

.about-executive__message-content table th,
.about-executive__message-content table td{
    padding:14px 18px;
    border:1px solid #e5e7eb;
}

.about-executive__message-content table th{
    background:#f8fafc;
    color:#111827;
}

.about-executive__message-content hr{
    margin:35px 0;
    border:none;
    border-top:1px solid #e5e7eb;
}


@media (max-width:768px){

    .about-executive__message-content{
        font-size:16px;
        line-height:1.8;
    }

    .about-executive__message-content blockquote{
        padding:18px;
    }

    .about-executive__message-content blockquote::before{
        font-size:65px;
        top:-12px;
    }

    .about-executive__message-content ul li{
        padding-left:30px;
    }

}
.about-duo-card,
.about-feature-card,
.about-value-item,
.about-timeline-item,
.about-team-card,
.about-logo-card {
    border: 1px solid var(--about-border);
    background: linear-gradient(145deg, rgba(245, 240, 232, 0.075), rgba(245, 240, 232, 0.03));
    box-shadow: 0 20px 58px rgba(0, 0, 0, 0.22);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.about-duo-card:hover,
.about-feature-card:hover,
.about-value-item:hover,
.about-timeline-item:hover,
.about-team-card:hover,
.about-logo-card:hover {
    transform: translateY(-7px);
    border-color: var(--about-border-strong);
    background: linear-gradient(145deg, rgba(245, 240, 232, 0.105), rgba(245, 240, 232, 0.04));
}

.about-duo-card {
    min-height: 330px;
    padding: clamp(22px, 4vw, 38px);
}

.about-card-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    border: 1px solid var(--about-border);
    background: rgba(201, 168, 76, 0.08);
}

.about-card-icon svg {
    width: 25px;
    height: 25px;
}

.about-duo-card h3,
.about-feature-card h3,
.about-value-item h3,
.about-timeline-item h3,
.about-team-card h3 {
    color: var(--cream);
    font-family: var(--ff-display);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.1;
}

.about-duo-card h3 {
    margin-top: 30px;
    margin-bottom: 14px;
}

.about-stats {
    padding-top: 0;
}

.about-stat-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 2px;
    border: 1px solid var(--about-border);
    background: rgba(201, 168, 76, 0.14);
}

.about-stat-card {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
    background: rgba(22, 22, 16, 0.94);
}

.about-stat-card strong {
    color: var(--gold-light);
    font-family: var(--ff-display);
    font-size: clamp(40px, 4.8vw, 66px);
    font-weight: 600;
    line-height: 1;
}

.about-stat-card span {
    margin-top: 12px;
    color: var(--cream-dim);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-strengths {
    background: var(--ink-2);
}

.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.about-feature-card {
    min-height: 250px;
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.about-feature-card::after {
    content: '';
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-feature-card:hover::after {
    opacity: 1;
}

.about-feature-card span {
    color: var(--gold);
    font-family: var(--ff-display);
    font-size: 34px;
}

.about-feature-card h3 {
    margin: 46px 0 12px;
}

.about-values__grid {
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    align-items: start;
}

.about-values__intro {
    position: sticky;
    top: calc(var(--nav-h) + 34px);
}

.about-value-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.about-value-item {
    padding: 26px;
}

.about-value-item h3 {
    margin-bottom: 10px;
}

.about-timeline {
    background: linear-gradient(180deg, rgba(22, 22, 16, 0.78), rgba(13, 13, 11, 0.96));
}

.about-timeline-track {
    display: grid;
    grid-template-columns: repeat(5, minmax(220px, 1fr));
    gap: 2px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.about-timeline-item {
    min-height: 290px;
    padding: 28px;
    position: relative;
}

.about-timeline-item::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 28px;
    width: 10px;
    height: 10px;
    background: var(--gold);
    box-shadow: 0 0 0 8px rgba(201, 168, 76, 0.1);
}

.about-timeline-item time {
    display: block;
    padding-left: 28px;
    color: var(--gold-light);
    font-family: var(--ff-display);
    font-size: 36px;
    line-height: 1;
}

.about-timeline-item h3 {
    margin: 54px 0 12px;
}

.about-team-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 42px;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.about-team-card {
    overflow: hidden;
}

.about-team-card img,
.about-team-placeholder {
    width: 100%;
    aspect-ratio: 4 / 4.5;
    object-fit: fill;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.22), rgba(245, 240, 232, 0.06));
}

.about-team-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-family: var(--ff-display);
    font-size: 72px;
}

.about-team-card div:last-child {
    padding: 24px;
}

.about-team-card p {
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
}

.about-outline-btn,
.about-primary-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.about-outline-btn {
    color: var(--gold-light);
    border: 1px solid var(--about-border-strong);
    background: rgba(245, 240, 232, 0.04);
}

.about-outline-btn:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
}

.about-primary-btn {
    position: relative;
    overflow: hidden;
    color: var(--ink);
    background: var(--gold);
    box-shadow: 0 16px 42px rgba(201, 168, 76, 0.24);
}

.about-primary-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 20px 52px rgba(201, 168, 76, 0.34);
}

.about-partners {
    background: var(--ink-2);
}

.about-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.about-logo-card {
    min-height: 136px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    color: var(--cream-dim);
    font-family: var(--ff-display);
    font-size: 24px;
    text-align: center;
}

.about-final-cta__banner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    min-height: 280px;
    padding: clamp(32px, 5vw, 54px);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--about-border-strong);
    background:
        linear-gradient(120deg, rgba(201, 168, 76, 0.18), rgba(245, 240, 232, 0.035)),
        var(--ink-2);
    box-shadow: var(--about-shadow);
}

.about-final-cta__banner::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.about-final-cta__banner h2 {
    margin-top: 12px;
}

.about-page .about-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.about-page .about-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-page .about-delay-1 {
    transition-delay: 0.1s;
}

.about-page .about-delay-2 {
    transition-delay: 0.18s;
}

.about-page .about-delay-3 {
    transition-delay: 0.26s;
}

@media (max-width: 1180px) {
    .about-stat-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .about-feature-grid,
    .about-team-grid,
    .about-logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {

    .about-hero__inner,
    .about-story__grid,
    .about-executive__grid,
    .about-values__grid,
    .about-final-cta__banner {
        grid-template-columns: 1fr;
    }

    .about-hero__proof {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-values__intro {
        position: static;
    }

    .about-story__image,
    .about-executive__portrait,
    .about-story__image img,
    .about-executive__portrait img {
        min-height: 350px;
    }

    .about-final-cta__banner .about-primary-btn {
        justify-self: start;
    }
}

@media (max-width: 720px) {
    .about-hero {
        min-height: 680px;
    }

    .about-hero h1 {
        font-size: 50px;
    }

    .about-hero__proof,
    .about-duo-grid,
    .about-milestone-row,
    .about-stat-grid,
    .about-feature-grid,
    .about-value-list,
    .about-team-grid,
    .about-logo-grid {
        grid-template-columns: 1fr;
    }

    .about-team-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .about-outline-btn,
    .about-primary-btn {
        width: 100%;
    }

    .about-timeline-track {
        grid-template-columns: 1fr;
        overflow: visible;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 44px;
    }

    .about-hero p,
    .about-story__content p:not(.about-lead),
    .about-duo-card p,
    .about-feature-card p,
    .about-value-item p,
    .about-timeline-item p {
        font-size: 14px;
    }

    .about-story,
    .about-executive,
    .about-mission-vision,
    .about-strengths,
    .about-values,
    .about-timeline,
    .about-team-preview,
    .about-partners,
    .about-final-cta {
        padding: 62px 0;
    }

    .about-stat-card {
        min-height: 150px;
    }
}

/* ── LUXURY HOMEPAGE ── */
.lux-home {
    --lux-border: rgba(201, 168, 76, 0.18);
    --lux-border-strong: rgba(201, 168, 76, 0.38);
    --lux-panel: rgba(22, 22, 16, 0.82);
    --lux-panel-soft: rgba(245, 240, 232, 0.055);
    --lux-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
    background:
        radial-gradient(circle at 14% 8%, rgba(201, 168, 76, 0.1), transparent 28%),
        radial-gradient(circle at 88% 30%, rgba(232, 201, 122, 0.08), transparent 26%),
        var(--ink);
    color: var(--cream);
}

.lux-home .container {
    width: min(100%, 1240px);
}

.lux-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    line-height: 1.4;
    text-transform: uppercase;
    white-space: nowrap;
}

.lux-kicker::before {
    content: '';
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.lux-hero {
    min-height: calc(100vh - var(--nav-h));
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.lux-hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--lux-hero-image);
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
}

.lux-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(104deg, rgba(13, 13, 11, 0.97) 0%, rgba(13, 13, 11, 0.78) 50%, rgba(13, 13, 11, 0.34) 100%),
        linear-gradient(180deg, rgba(13, 13, 11, 0.06), var(--ink));
}

.lux-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 42px;
    align-items: end;
    padding-top: 82px;
    padding-bottom: 74px;
}

.lux-hero__content {
    max-width: 930px;
}

.lux-hero h1,
.lux-section-head h2,
.lux-split-head h2,
.lux-about-copy h2,
.lux-executive-copy h2,
.lux-impact-copy h2,
.lux-blood h2,
.lux-contact-copy h2,
.lux-final-banner h2 {
    font-family: var(--ff-display);
    font-weight: 600;
    line-height: 1;
    color: var(--white);
}

.lux-hero h1 {
    margin: 22px 0;
    max-width: 880px;
    font-size: clamp(40px, 7.8vw, 90px);
}

.lux-hero p {
    max-width: 640px;
    color: rgba(245, 240, 232, 0.78);
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.85;
    font-weight: 300;
}

.lux-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 42px;
}

.lux-primary-btn,
.lux-outline-btn,
.lux-blood-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.lux-primary-btn,
.lux-blood-btn {
    position: relative;
    overflow: hidden;
    background: var(--gold);
    color: var(--ink);
    box-shadow: 0 16px 42px rgba(201, 168, 76, 0.24);
}

.lux-primary-btn:hover,
.lux-blood-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 20px 52px rgba(201, 168, 76, 0.34);
}

.lux-outline-btn {
    color: var(--gold-light);
    border-color: var(--lux-border-strong);
    background: rgba(245, 240, 232, 0.04);
}

.lux-outline-btn:hover {
    color: var(--cream);
    border-color: var(--gold);
    transform: translateY(-2px);
}


.lux-primary-btn,
.lux-outline-btn,
.lux-blood-btn {
    white-space: nowrap;
}

.lux-hero__panel {
    padding: 28px;
    border: 1px solid var(--lux-border);
    background: linear-gradient(145deg, rgba(245, 240, 232, 0.09), rgba(245, 240, 232, 0.035));
    box-shadow: var(--lux-shadow);
    backdrop-filter: blur(18px);
}

.lux-hero__panel span {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.lux-hero__panel strong {
    display: block;
    margin-top: 18px;
    color: var(--cream);
    font-family: var(--ff-display);
    font-size: 34px;
    line-height: 1.05;
}

.lux-hero__panel p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.75;
}

.lux-section,
.lux-stats,
.lux-clients,
.lux-final-cta {
    padding: clamp(44px, 8vw, 100px) 0;
}

.lux-stats {
    padding-bottom: 0;
}

.lux-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2px;
    border: 1px solid var(--lux-border);
    background: rgba(201, 168, 76, 0.14);
}

.lux-stat-card {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
    background: rgba(22, 22, 16, 0.94);
}

.lux-stat-card strong {
    color: var(--gold-light);
    font-family: var(--ff-display);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 600;
    line-height: 1;
}

.lux-stat-card span {
    margin-top: 12px;
    color: var(--cream-dim);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.lux-section-head,
.lux-split-head {
    margin-bottom: 44px;
}

.lux-section-head {
    max-width: 820px;
}

.lux-split-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
}

.lux-section-head h2,
.lux-split-head h2,
.lux-about-copy h2,
.lux-executive-copy h2,
.lux-impact-copy h2,
.lux-blood h2,
.lux-contact-copy h2,
.lux-final-banner h2 {
    margin-top: 16px;
    font-size: clamp(30px, 4.8vw, 56px);
}

.lux-division-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2px;
}

.lux-division-card {
    min-height: 520px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.lux-division-card img,
.lux-project-card img,
.lux-about-image img,
.lux-executive-image img,
.lux-impact-card img,
.lux-blog-card img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.lux-division-card>img {
    position: absolute;
    inset: 0;
    z-index: 0;
    transition: transform 0.7s ease;
}

.lux-division-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(13, 13, 11, 0.3), rgba(13, 13, 11, 0.94));
}

.lux-division-card:hover>img {
    transform: scale(1.07);
}

.lux-division-card span,
.lux-division-card div {
    position: relative;
    z-index: 2;
}

.lux-division-card span {
    color: var(--gold-light);
    font-family: var(--ff-display);
    font-size: 38px;
}

.lux-division-card h3 {
    color: var(--white);
    font-family: var(--ff-display);
    font-size: clamp(28px, 2.6vw, 40px);
    line-height: 1.05;
}

.lux-division-card p {
    margin-top: 12px;
    color: rgba(245, 240, 232, 0.72);
    font-size: 14px;
    line-height: 1.75;
}

.lux-projects,
.lux-strengths,
.lux-executive,
.lux-blogs,
.lux-contact-preview {
    background: var(--ink-2);
}

.lux-filterbar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.lux-filterbar button {
    padding: 10px 18px;
    color: var(--cream-dim);
    background: transparent;
    border: 1px solid var(--lux-border);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.lux-filterbar button.active,
.lux-filterbar button:hover {
    color: var(--ink);
    background: var(--gold);
    border-color: var(--gold);
}

.lux-project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.lux-project-card,
.lux-impact-card,
.lux-blog-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--lux-border);
    background: var(--lux-panel);
    box-shadow: 0 20px 58px rgba(0, 0, 0, 0.22);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.lux-project-card:hover,
.lux-impact-card:hover,
.lux-blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--lux-border-strong);
}

.lux-project-card[hidden] {
    display: none;
}

.lux-project-card figure {
    aspect-ratio: 16 / 11;
    overflow: hidden;
}

.lux-project-card img,
.lux-impact-card img,
.lux-blog-card img {
    transition: transform 0.6s ease;
}

.lux-project-card:hover img,
.lux-impact-card:hover img,
.lux-blog-card:hover img {
    transform: scale(1.05);
}

.lux-project-card div {
    padding: 24px;
}

.lux-project-card span,
.lux-blog-card span {
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.lux-project-card h3,
.lux-feature-card h3,
.lux-impact-card h3,
.lux-blog-card h3 {
    margin-top: 10px;
    color: var(--cream);
    font-family: var(--ff-display);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.1;
}

.lux-project-card p,
.lux-feature-card p,
.lux-about-copy p,
.lux-impact-copy p,
.lux-blood p,
.lux-blog-card p,
.lux-contact-copy p {
    color: rgba(245, 240, 232, 0.68);
    font-size: 15px;
    line-height: 1.85;
}

.lux-project-card p {
    margin-top: 8px;
}

.lux-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.lux-feature-card,
.lux-testimonial-card,
.lux-client-logo,
.lux-quick-form {
    border: 1px solid var(--lux-border);
    background: linear-gradient(145deg, rgba(245, 240, 232, 0.075), rgba(245, 240, 232, 0.03));
    box-shadow: 0 20px 58px rgba(0, 0, 0, 0.22);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.lux-feature-card:hover,
.lux-testimonial-card:hover,
.lux-client-logo:hover {
    transform: translateY(-7px);
    border-color: var(--lux-border-strong);
    background: linear-gradient(145deg, rgba(245, 240, 232, 0.105), rgba(245, 240, 232, 0.04));
}

.lux-feature-card {
    min-height: 250px;
    padding: 28px;
}

.lux-feature-card span {
    color: var(--gold);
    font-family: var(--ff-display);
    font-size: 34px;
}

.lux-feature-card h3 {
    margin-top: 44px;
}

.lux-feature-card p {
    margin-top: 12px;
}

.lux-about-grid,
.lux-executive-grid,
.lux-impact-grid,
.lux-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
    gap: clamp(34px, 6vw, 84px);
    align-items: center;
}

.lux-about-image,
.lux-executive-image {
    min-height: 350px;
    overflow: hidden;
    border: 1px solid var(--lux-border);
    box-shadow: var(--lux-shadow);
}

.lux-about-image img,
.lux-executive-image img {
    min-height: 350px;
}

.lux-about-copy p {
    margin: 24px 0 34px;
}

.lux-executive-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
}

.lux-executive-copy {
    padding: clamp(22px, 4vw, 44px);
    border: 1px solid var(--lux-border);
    background: linear-gradient(145deg, rgba(245, 240, 232, 0.075), rgba(245, 240, 232, 0.032));
    box-shadow: var(--lux-shadow);
}

.lux-executive-copy blockquote {
    margin-top: 30px;
    color: var(--cream);
    font-family: var(--ff-display);
    font-size: clamp(28px, 3vw, 44px);
    font-style: italic;
    line-height: 1.25;
}

.lux-executive-copy p {
    margin-top: 28px;
    color: var(--gold-light);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.lux-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.lux-testimonial-card {
    padding: 28px;
}

.lux-stars {
    color: var(--gold-light);
    letter-spacing: 0.08em;
}

.lux-testimonial-card>p {
    margin-top: 20px;
    color: var(--cream);
    font-family: var(--ff-display);
    font-size: 24px;
    font-style: italic;
    line-height: 1.35;
}

.lux-testimonial-card>div:last-child {
    display: grid;
    grid-template-columns: 46px 1fr;
    column-gap: 12px;
    align-items: center;
    margin-top: 26px;
}

.lux-testimonial-card img,
.lux-testimonial-card>div:last-child span {
    width: 46px;
    height: 46px;
    grid-row: span 2;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(201, 168, 76, 0.16);
}

.lux-testimonial-card>div:last-child span {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-family: var(--ff-display);
    font-size: 24px;
}

.lux-testimonial-card strong {
    color: var(--cream);
    font-size: 14px;
}

.lux-testimonial-card small {
    color: var(--muted);
}

.lux-impact-grid {
    align-items: start;
}

.lux-impact-copy {
    position: sticky;
    top: calc(var(--nav-h) + 34px);
}

.lux-impact-copy p {
    margin-top: 24px;
}

.lux-impact-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 34px;
}

.lux-impact-stats div {
    padding: 20px;
    border: 1px solid var(--lux-border);
    background: var(--lux-panel-soft);
}

.lux-impact-stats strong {
    display: block;
    color: var(--gold-light);
    font-family: var(--ff-display);
    font-size: 42px;
}

.lux-impact-stats span {
    color: var(--muted);
    font-size: 12px;
}

.lux-impact-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.lux-impact-card img {
    aspect-ratio: 4 / 3;
}

.lux-impact-card h3 {
    padding: 22px;
}

.lux-blood-banner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    padding: clamp(22px, 5vw, 54px);
    border: 1px solid rgba(229, 83, 83, 0.28);
    background:
        linear-gradient(120deg, rgba(198, 40, 40, 0.22), rgba(245, 240, 232, 0.035)),
        #160808;
    box-shadow: var(--lux-shadow);
}

.lux-blood h2,
.lux-blood p {
    max-width: 760px;
}

.lux-blood p {
    margin-top: 18px;
}

.lux-blood-btn {
    background: #C62828;
    color: var(--white);
    box-shadow: 0 16px 42px rgba(198, 40, 40, 0.24);
}

.lux-blood-btn:hover {
    background: #E53935;
}

.lux-blog-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.85fr;
    grid-template-rows: repeat(2, minmax(250px, 1fr));
    gap: 18px;
}

.lux-blog-card {
    display: grid;
    grid-template-columns: 180px 1fr;
}

.lux-blog-card--featured {
    grid-row: span 2;
    grid-template-columns: 1fr;
}

.lux-blog-card--featured img {
    min-height: 390px;
}

.lux-blog-card div {
    padding: 24px;
}

.lux-blog-card h3 {
    margin-top: 10px;
}

.lux-blog-card p {
    margin-top: 12px;
}

.lux-clients {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(13, 13, 11, 0.98), rgba(22, 22, 16, 0.98)),
        var(--ink-2);
}

.lux-clients::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent 0, rgba(201, 168, 76, 0.08) 1px, transparent 1px),
        linear-gradient(0deg, transparent 0, rgba(245, 240, 232, 0.04) 1px, transparent 1px);
    background-size: 96px 96px;
    mask-image: linear-gradient(180deg, transparent, #000 22%, #000 78%, transparent);
    opacity: 0.26;
}

.lux-clients::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: min(860px, 84vw);
    height: 1px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.5), transparent);
    transform: translateX(-50%);
}

.lux-client-shell {
    position: relative;
    z-index: 1;
    display: grid;
    gap: clamp(30px, 4vw, 56px);
}

.lux-client-copy {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.lux-client-copy h2 {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 14px;
}

.lux-client-copy p {
    max-width: 660px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 22px;
    color: rgba(245, 240, 232, 0.7);
    font-size: 16px;
    line-height: 1.85;
}

.lux-client-proof {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.lux-client-proof span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 18px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    background: rgba(245, 240, 232, 0.035);
    color: rgba(245, 240, 232, 0.66);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.lux-client-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.lux-client-logo {
    position: relative;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 28px 22px;
    overflow: hidden;
    color: var(--cream-dim);
    text-decoration: none;
    text-align: center;
    isolation: isolate;
}

.lux-client-logo::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(145deg, rgba(245, 240, 232, 0.075), rgba(245, 240, 232, 0.022)),
        rgba(13, 13, 11, 0.56);
    border: 1px solid rgba(201, 168, 76, 0.16);
    transition: inset 0.3s ease, border-color 0.3s ease;
    z-index: -1;
}

.lux-client-logo::after {
    content: "";
    position: absolute;
    inset: auto 24px 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transform: scaleX(0.35);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.lux-client-logo:hover::before,
.lux-client-logo:focus-visible::before {
    inset: -1px;
    border-color: rgba(201, 168, 76, 0.38);
}

.lux-client-logo:hover::after,
.lux-client-logo:focus-visible::after {
    opacity: 1;
    transform: scaleX(1);
}

.lux-client-mark {
    width: min(160px, 100%);
    min-height: 58px;
    display: grid;
    place-items: center;
    color: var(--gold-light);
    font-family: var(--ff-display);
    font-size: 36px;
    line-height: 1;
}

.lux-client-logo img {
    max-width: 150px;
    max-height: 58px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) brightness(1.75) contrast(0.88);
    opacity: 0.62;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.lux-client-logo:hover img,
.lux-client-logo:focus-visible img {
    filter: grayscale(0) brightness(1);
    opacity: 1;
    transform: translateY(-2px);
}

.lux-client-name {
    color: rgba(245, 240, 232, 0.72);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.5;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.lux-client-logo:hover .lux-client-name,
.lux-client-logo:focus-visible .lux-client-name {
    color: var(--gold-light);
}

.lux-contact-copy a,
.lux-contact-copy p {
    display: block;
    margin-top: 14px;
    color: rgba(245, 240, 232, 0.72);
}

.lux-quick-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: clamp(22px, 4vw, 32px);
}

.lux-quick-form textarea,
.lux-quick-form button {
    grid-column: 1 / -1;
}

.lux-quick-form input,
.lux-quick-form select,
.lux-quick-form textarea {
    width: 100%;
    min-height: 56px;
    padding: 14px 16px;
    background: rgba(13, 13, 11, 0.7);
    border: 1px solid rgba(245, 240, 232, 0.12);
    color: var(--cream);
    font-family: var(--ff-body);
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.lux-quick-form input:focus,
.lux-quick-form select:focus,
.lux-quick-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
}

.lux-final-cta {
    padding-top: 0;
}

.lux-final-banner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    min-height: 280px;
    padding: clamp(22px, 5vw, 54px);
    border: 1px solid var(--lux-border-strong);
    background:
        linear-gradient(120deg, rgba(201, 168, 76, 0.18), rgba(245, 240, 232, 0.035)),
        var(--ink-2);
    box-shadow: var(--lux-shadow);
}

.lux-final-banner h2 {
    margin-top: 12px;
}

.lux-home .lux-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.lux-home .lux-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.lux-home .lux-delay-1 {
    transition-delay: 0.1s;
}

.lux-home .lux-delay-2 {
    transition-delay: 0.18s;
}

.lux-home .lux-delay-3 {
    transition-delay: 0.26s;
}

@media (max-width: 1180px) {

    .lux-division-grid,
    .lux-stat-grid,
    .lux-client-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lux-project-grid,
    .lux-feature-grid,
    .lux-testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {

    .lux-hero__inner,
    .lux-about-grid,
    .lux-executive-grid,
    .lux-impact-grid,
    .lux-contact-grid,
    .lux-blood-banner,
    .lux-final-banner {
        grid-template-columns: 1fr;
    }

    .lux-impact-copy {
        position: static;
    }

    .lux-split-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .lux-blog-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .lux-blog-card,
    .lux-blog-card--featured {
        grid-row: auto;
        grid-template-columns: 1fr;
    }

    .lux-blog-card img,
    .lux-blog-card--featured img {
        min-height: 260px;
    }
}

@media (max-width: 420px) {
    .lux-hero {
        min-height: 720px;
    }

    .lux-hero h1 {
        font-size: 50px;
    }

    .lux-hero__actions,
    .lux-primary-btn,
    .lux-outline-btn,
    .lux-blood-btn {
        width: 100%;
    }

    .lux-division-grid,
    .lux-stat-grid,
    .lux-project-grid,
    .lux-feature-grid,
    .lux-testimonial-grid,
    .lux-impact-cards,
    .lux-impact-stats,
    .lux-client-grid,
    .lux-quick-form {
        grid-template-columns: 1fr;
    }

    .lux-division-card {
        min-height: 420px;
    }

    .lux-client-logo {
        min-height: 142px;
    }
}

@media (max-width: 480px) {
    .lux-hero h1 {
        font-size: 38px;
    }

    .lux-section,
    .lux-stats,
    .lux-clients,
    .lux-final-cta {
        padding: 62px 0;
    }

    .lux-stat-card {
        min-height: 150px;
    }
}

/* ── PREMIUM SERVICE DETAIL PAGE ── */
.service-page {
    --service-border: rgba(201, 168, 76, 0.18);
    --service-border-strong: rgba(201, 168, 76, 0.38);
    --service-panel: rgba(22, 22, 16, 0.84);
    --service-panel-soft: rgba(245, 240, 232, 0.055);
    --service-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
    background:
        radial-gradient(circle at 16% 10%, rgba(201, 168, 76, 0.11), transparent 28%),
        radial-gradient(circle at 90% 38%, rgba(232, 201, 122, 0.08), transparent 26%),
        var(--ink);
    color: var(--cream);
}

.service-page .container {
    width: min(100%, 1240px);
}

.service-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    line-height: 1.4;
    text-transform: uppercase;
}

.service-kicker::before {
    content: '';
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.service-hero {
    min-height: calc(100vh - var(--nav-h));
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.service-hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--service-hero-image);
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
}

.service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(104deg, rgba(13, 13, 11, 0.97) 0%, rgba(13, 13, 11, 0.76) 50%, rgba(13, 13, 11, 0.34) 100%),
        linear-gradient(180deg, rgba(13, 13, 11, 0.05), var(--ink));
}

.service-hero__inner {
    padding-top: 80px;
    padding-bottom: 72px;
}

.service-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 72px;
    color: rgba(245, 240, 232, 0.62);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-breadcrumb a:hover {
    color: var(--gold-light);
}

.service-breadcrumb strong {
    color: var(--gold);
    font-weight: 500;
}

.service-hero__content {
    max-width: 920px;
}

.service-hero h1,
.service-overview h2,
.service-section-head h2,
.service-split-head h2,
.service-faq__intro h2,
.service-contact h2 {
    font-family: var(--ff-display);
    font-weight: 600;
    line-height: 1;
    color: var(--white);
}

.service-hero h1 {
    margin: 24px 0;
    max-width: 980px;
    font-size: clamp(56px, 7.4vw, 112px);
}

.service-hero p {
    max-width: 650px;
    color: rgba(245, 240, 232, 0.78);
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.85;
    font-weight: 300;
}

.service-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 42px;
}

.service-primary-btn,
.service-outline-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.service-primary-btn {
    background: var(--gold);
    color: var(--ink);
    box-shadow: 0 16px 42px rgba(201, 168, 76, 0.24);
}

.service-primary-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 20px 52px rgba(201, 168, 76, 0.34);
}

.service-outline-btn {
    color: var(--gold-light);
    border-color: var(--service-border-strong);
    background: rgba(245, 240, 232, 0.04);
}

.service-outline-btn:hover {
    color: var(--cream);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.service-overview,
.service-features,
.service-process,
.service-projects,
.service-team,
.service-stats,
.service-testimonials,
.service-faq,
.service-contact {
    padding: clamp(54px, 8vw, 100px) 0;
}

.service-overview__grid {
    display: grid;
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
    gap: clamp(34px, 6vw, 86px);
}

.service-overview h2,
.service-section-head h2,
.service-split-head h2,
.service-faq__intro h2,
.service-contact h2 {
    margin-top: 16px;
    font-size: clamp(38px, 4.8vw, 66px);
}

.service-overview__content p {
    margin-top: 24px;
    color: var(--cream);
    font-family: var(--ff-display);
    font-size: clamp(24px, 2.8vw, 38px);
    line-height: 1.32;
}

.service-features,
.service-team,
.service-faq {
    background: var(--ink-2);
}

.service-section-head,
.service-split-head {
    margin-bottom: 44px;
}

.service-section-head {
    max-width: 820px;
}

.service-split-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
}

.service-feature-grid,
.service-team-grid,
.service-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-feature-card,
.service-process-item,
.service-project-card,
.service-team-card,
.service-stat-card,
.service-testimonial-card,
.service-faq-list details {
    border: 1px solid var(--service-border);
    background: linear-gradient(145deg, rgba(245, 240, 232, 0.075), rgba(245, 240, 232, 0.03));
    box-shadow: 0 20px 58px rgba(0, 0, 0, 0.22);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.service-feature-card:hover,
.service-process-item:hover,
.service-project-card:hover,
.service-team-card:hover,
.service-testimonial-card:hover,
.service-faq-list details:hover {
    transform: translateY(-7px);
    border-color: var(--service-border-strong);
    background: linear-gradient(145deg, rgba(245, 240, 232, 0.105), rgba(245, 240, 232, 0.04));
}

.service-feature-card {
    min-height: 250px;
    padding: 28px;
}

.service-feature-card span {
    color: var(--gold);
    font-family: var(--ff-display);
    font-size: 34px;
}

.service-feature-card h3,
.service-process-item h3,
.service-project-card h3,
.service-team-card h3 {
    color: var(--cream);
    font-family: var(--ff-display);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.1;
}

.service-feature-card h3 {
    margin-top: 44px;
}

.service-feature-card p,
.service-process-item p,
.service-project-card p,
.service-testimonial-card p,
.service-faq-list p {
    margin-top: 12px;
    color: rgba(245, 240, 232, 0.68);
    font-size: 15px;
    line-height: 1.85;
}

.service-process-track {
    display: grid;
    grid-template-columns: repeat(5, minmax(220px, 1fr));
    gap: 2px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.service-process-item {
    min-height: 300px;
    padding: 28px;
    position: relative;
}

.service-process-item::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 28px;
    width: 10px;
    height: 10px;
    background: var(--gold);
    box-shadow: 0 0 0 8px rgba(201, 168, 76, 0.1);
}

.service-process-item time {
    display: block;
    padding-left: 28px;
    color: var(--gold-light);
    font-family: var(--ff-display);
    font-size: 38px;
    line-height: 1;
}

.service-process-item h3 {
    margin-top: 58px;
}

.service-project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-project-card {
    overflow: hidden;
}

.service-project-card figure {
    aspect-ratio: 16 / 11;
    overflow: hidden;
}

.service-project-card img,
.service-team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-project-card:hover img,
.service-team-card:hover img {
    transform: scale(1.05);
}

.service-project-card div {
    padding: 24px;
}

.service-project-card span {
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.service-project-card h3 {
    margin-top: 10px;
}

.service-team-card {
    overflow: hidden;
}

.service-team-card img,
.service-team-placeholder {
    width: 100%;
    aspect-ratio: 4 / 4.5;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.22), rgba(245, 240, 232, 0.06));
}

.service-team-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-family: var(--ff-display);
    font-size: 72px;
}

.service-team-card div:last-child {
    padding: 24px;
}

.service-team-card p {
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
}

.service-stats {
    padding-top: 0;
}

.service-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2px;
    border: 1px solid var(--service-border);
    background: rgba(201, 168, 76, 0.14);
}

.service-stat-card {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
    background: rgba(22, 22, 16, 0.94);
}

.service-stat-card strong {
    color: var(--gold-light);
    font-family: var(--ff-display);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 600;
    line-height: 1;
}

.service-stat-card span {
    margin-top: 12px;
    color: var(--cream-dim);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-testimonial-card {
    padding: 28px;
}

.service-testimonial-card div {
    color: var(--gold-light);
    letter-spacing: 0.08em;
}

.service-testimonial-card p {
    color: var(--cream);
    font-family: var(--ff-display);
    font-size: 25px;
    font-style: italic;
    line-height: 1.35;
}

.service-testimonial-card strong {
    display: block;
    margin-top: 24px;
    color: var(--gold-light);
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-faq__grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(34px, 6vw, 84px);
    align-items: start;
}

.service-faq__intro {
    position: sticky;
    top: calc(var(--nav-h) + 34px);
}

.service-faq-list {
    display: grid;
    gap: 14px;
}

.service-faq-list details {
    padding: 22px 24px;
}

.service-faq-list summary {
    color: var(--cream);
    cursor: pointer;
    font-family: var(--ff-display);
    font-size: 24px;
    line-height: 1.2;
}

.service-faq-list summary::marker {
    color: var(--gold);
}

.service-contact {
    padding-top: 0;
}

.service-contact__banner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    min-height: 280px;
    padding: clamp(322px, 5vw, 44px);
    border: 1px solid var(--service-border-strong);
    background:
        linear-gradient(120deg, rgba(201, 168, 76, 0.18), rgba(245, 240, 232, 0.035)),
        var(--ink-2);
    box-shadow: var(--service-shadow);
}

.service-contact__banner h2 {
    margin-top: 12px;
}

.service-contact__banner div {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.service-page .service-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.service-page .service-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-page .service-delay-1 {
    transition-delay: 0.1s;
}

.service-page .service-delay-2 {
    transition-delay: 0.18s;
}

.service-page .service-delay-3 {
    transition-delay: 0.26s;
}

@media (max-width: 1180px) {

    .service-feature-grid,
    .service-project-grid,
    .service-team-grid,
    .service-testimonial-grid,
    .service-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {

    .service-overview__grid,
    .service-faq__grid,
    .service-contact__banner {
        grid-template-columns: 1fr;
    }

    .service-faq__intro {
        position: static;
    }

    .service-split-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .service-contact__banner div {
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .service-hero {
        min-height: 680px;
    }

    .service-hero h1 {
        font-size: 48px;
    }

    .service-hero__actions,
    .service-primary-btn,
    .service-outline-btn {
        width: 100%;
    }

    .service-feature-grid,
    .service-project-grid,
    .service-team-grid,
    .service-testimonial-grid,
    .service-stat-grid,
    .service-process-track {
        grid-template-columns: 1fr;
    }

    .service-process-track {
        overflow: visible;
    }
}

@media (max-width: 480px) {
    .service-hero h1 {
        font-size: 42px;
    }

    .service-overview,
    .service-features,
    .service-process,
    .service-projects,
    .service-team,
    .service-testimonials,
    .service-faq,
    .service-contact {
        padding: 62px 0;
    }

    .service-stat-card {
        min-height: 150px;
    }
}

/* ── PREMIUM OFFERS PAGE ── */
.offers-page {
    --offers-border: rgba(201, 168, 76, 0.18);
    --offers-border-strong: rgba(201, 168, 76, 0.38);
    --offers-panel: rgba(22, 22, 16, 0.84);
    --offers-panel-soft: rgba(245, 240, 232, 0.055);
    --offers-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
    background:
        radial-gradient(circle at 16% 10%, rgba(201, 168, 76, 0.11), transparent 28%),
        radial-gradient(circle at 90% 38%, rgba(232, 201, 122, 0.08), transparent 26%),
        var(--ink);
    color: var(--cream);
}

.offers-page .container {
    width: min(100%, 1240px);
}

.offers-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    line-height: 1.4;
    text-transform: uppercase;
}

.offers-kicker::before {
    content: '';
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.offers-hero {
    min-height: calc(100vh - var(--nav-h));
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.offers-hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--offers-hero-image);
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
}

.offers-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(104deg, rgba(13, 13, 11, 0.97) 0%, rgba(13, 13, 11, 0.76) 50%, rgba(13, 13, 11, 0.34) 100%),
        linear-gradient(180deg, rgba(13, 13, 11, 0.05), var(--ink));
}

.offers-hero__inner {
    padding-top: 80px;
    padding-bottom: 72px;
}

.offers-hero__content {
    max-width: 900px;
}

.offers-hero h1,
.offers-section-head h2,
.offers-investment h2,
.offers-faq__intro h2,
.offers-final-cta h2 {
    font-family: var(--ff-display);
    font-weight: 600;
    line-height: 1;
    color: var(--white);
}

.offers-hero h1 {
    margin: 24px 0;
    font-size: clamp(48px, 7.8vw, 106px);
}

.offers-hero p {
    max-width: 640px;
    color: rgba(245, 240, 232, 0.78);
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.85;
}

.offers-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 42px;
}

.offers-primary-btn,
.offers-outline-btn,
.offers-card-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.offers-primary-btn,
.offers-card-btn {
    background: var(--gold);
    color: var(--ink);
    box-shadow: 0 16px 42px rgba(201, 168, 76, 0.24);
}

.offers-primary-btn:hover,
.offers-card-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 20px 52px rgba(201, 168, 76, 0.34);
}

.offers-outline-btn {
    color: var(--gold-light);
    border-color: var(--offers-border-strong);
    background: rgba(245, 240, 232, 0.04);
}

.offers-outline-btn:hover {
    color: var(--cream);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.offers-featured,
.offers-grid-section,
.offers-investment,
.offers-benefits,
.offers-stats,
.offers-testimonials,
.offers-faq,
.offers-final-cta {
    padding: clamp(54px, 8vw, 100px) 0;
}

.offers-section-head {
    max-width: 820px;
    margin-bottom: 44px;
}

.offers-section-head h2,
.offers-investment h2,
.offers-faq__intro h2,
.offers-final-cta h2 {
    margin-top: 16px;
    font-size: clamp(38px, 4.8vw, 66px);
}

.offers-featured-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 0;
    border: 1px solid var(--offers-border);
    background: linear-gradient(145deg, rgba(245, 240, 232, 0.075), rgba(245, 240, 232, 0.03));
    box-shadow: var(--offers-shadow);
    overflow: hidden;
}

.offers-featured-card figure {
    min-height: 540px;
    overflow: hidden;
}

.offers-featured-card img,
.offers-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.offers-featured-card:hover img,
.offers-card:hover img {
    transform: scale(1.05);
}

.offers-featured-card>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(20px, 5vw, 52px);
}

.offers-badge,
.offers-card figure span {
    align-self: flex-start;
    color: var(--ink);
    background: var(--gold);
    padding: 7px 12px;
    font-size: 10px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.offers-featured-card h3,
.offers-card h3,
.offers-benefit-card h3 {
    color: var(--cream);
    font-family: var(--ff-display);
    font-size: clamp(30px, 3vw, 46px);
    font-weight: 600;
    line-height: 1.08;
}

.offers-featured-card h3 {
    margin-top: 26px;
}

.offers-featured-card p,
.offers-card p,
.offers-benefit-card p,
.offers-investment p,
.offers-testimonial-card p,
.offers-faq-list p {
    color: rgba(245, 240, 232, 0.68);
    font-size: 15px;
    line-height: 1.85;
}

.offers-featured-card p {
    margin-top: 18px;
}

.offers-featured-card time,
.offers-card time {
    display: block;
    margin: 22px 0;
    color: var(--gold-light);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.offers-grid-section,
.offers-benefits,
.offers-faq {
    background: var(--ink-2);
}

.offers-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.offers-card,
.offers-benefit-card,
.offers-stat-card,
.offers-testimonial-card,
.offers-faq-list details {
    border: 1px solid var(--offers-border);
    background: linear-gradient(145deg, rgba(245, 240, 232, 0.075), rgba(245, 240, 232, 0.03));
    box-shadow: 0 20px 58px rgba(0, 0, 0, 0.22);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.offers-card:hover,
.offers-benefit-card:hover,
.offers-testimonial-card:hover,
.offers-faq-list details:hover {
    transform: translateY(-7px);
    border-color: var(--offers-border-strong);
    background: linear-gradient(145deg, rgba(245, 240, 232, 0.105), rgba(245, 240, 232, 0.04));
}

.offers-card {
    overflow: hidden;
}

.offers-card figure {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
}

.offers-card figure span {
    position: absolute;
    top: 18px;
    left: 18px;
}

.offers-card>div {
    padding: 24px;
}

.offers-card h3 {
    font-size: 30px;
}

.offers-card p {
    margin-top: 12px;
}

.offers-card-btn {
    width: 100%;
}

.offers-investment__banner,
.offers-final-cta__banner {
    min-height: 330px;
    padding: clamp(24px, 6vw, 52px);
    border: 1px solid var(--offers-border-strong);
    background:
        linear-gradient(120deg, rgba(201, 168, 76, 0.2), rgba(13, 13, 11, 0.76)),
        url('../images/hero.png') center/cover no-repeat;
    box-shadow: var(--offers-shadow);
}

.offers-investment__banner p {
    max-width: 720px;
    margin: 20px 0 34px;
}

.offers-benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.offers-benefit-card {
    min-height: 250px;
    padding: 28px;
}

.offers-benefit-card span {
    color: var(--gold);
    font-family: var(--ff-display);
    font-size: 34px;
}

.offers-benefit-card h3 {
    margin-top: 44px;
    font-size: 28px;
}

.offers-benefit-card p {
    margin-top: 12px;
}

.offers-stats {
    padding-top: 0;
}

.offers-stat-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 2px;
    border: 1px solid var(--offers-border);
    background: rgba(201, 168, 76, 0.14);
}

.offers-stat-card {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
    background: rgba(22, 22, 16, 0.94);
}

.offers-stat-card strong {
    color: var(--gold-light);
    font-family: var(--ff-display);
    font-size: clamp(40px, 4.8vw, 66px);
    font-weight: 600;
    line-height: 1;
}

.offers-stat-card span {
    margin-top: 12px;
    color: var(--cream-dim);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.offers-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.offers-testimonial-card {
    padding: 28px;
}

.offers-testimonial-card div {
    color: var(--gold-light);
    letter-spacing: 0.08em;
}

.offers-testimonial-card p {
    margin-top: 20px;
    color: var(--cream);
    font-family: var(--ff-display);
    font-size: 25px;
    font-style: italic;
    line-height: 1.35;
}

.offers-testimonial-card strong,
.offers-testimonial-card span {
    display: block;
}

.offers-testimonial-card strong {
    margin-top: 24px;
    color: var(--gold-light);
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.offers-testimonial-card span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.offers-faq__grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(34px, 6vw, 84px);
    align-items: start;
}

.offers-faq__intro {
    position: sticky;
    top: calc(var(--nav-h) + 34px);
}

.offers-faq-list {
    display: grid;
    gap: 14px;
}

.offers-faq-list details {
    padding: 22px 24px;
}

.offers-faq-list summary {
    color: var(--cream);
    cursor: pointer;
    font-family: var(--ff-display);
    font-size: 24px;
    line-height: 1.2;
}

.offers-faq-list summary::marker {
    color: var(--gold);
}

.offers-final-cta {
    padding-top: 0;
}

.offers-final-cta__banner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    background:
        linear-gradient(120deg, rgba(201, 168, 76, 0.18), rgba(245, 240, 232, 0.035)),
        var(--ink-2);
}

.offers-final-cta__banner h2 {
    margin-top: 12px;
}

.offers-final-cta__banner div {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.offers-page .offers-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.offers-page .offers-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.offers-page .offers-delay-1 {
    transition-delay: 0.1s;
}

.offers-page .offers-delay-2 {
    transition-delay: 0.18s;
}

.offers-page .offers-delay-3 {
    transition-delay: 0.26s;
}

@media (max-width: 1180px) {

    .offers-card-grid,
    .offers-benefit-grid,
    .offers-testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .offers-stat-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {

    .offers-featured-card,
    .offers-faq__grid,
    .offers-final-cta__banner {
        grid-template-columns: 1fr;
    }

    .offers-featured-card figure {
        min-height: 360px;
    }

    .offers-faq__intro {
        position: static;
    }

    .offers-final-cta__banner div {
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .offers-hero {
        min-height: 660px;
    }

    .offers-hero h1 {
        font-size: 50px;
    }

    .offers-hero__actions,
    .offers-primary-btn,
    .offers-outline-btn {
        width: 100%;
    }

    .offers-card-grid,
    .offers-benefit-grid,
    .offers-testimonial-grid,
    .offers-stat-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .offers-hero h1 {
        font-size: 42px;
    }

    .offers-featured,
    .offers-grid-section,
    .offers-investment,
    .offers-benefits,
    .offers-testimonials,
    .offers-faq,
    .offers-final-cta {
        padding: 62px 0;
    }

    .offers-stat-card {
        min-height: 150px;
    }
}

/* ── LUXURY PROJECT DETAIL PAGE ── */
.project-detail-page {
    --project-border: rgba(201, 168, 76, 0.18);
    --project-border-strong: rgba(201, 168, 76, 0.38);
    --project-panel: rgba(22, 22, 16, 0.84);
    --project-panel-soft: rgba(245, 240, 232, 0.055);
    --project-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
    background:
        radial-gradient(circle at 16% 10%, rgba(201, 168, 76, 0.11), transparent 28%),
        radial-gradient(circle at 90% 38%, rgba(232, 201, 122, 0.08), transparent 26%),
        var(--ink);
    color: var(--cream);
}

.project-detail-page .container {
    width: min(100%, 1240px);
}

.project-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    line-height: 1.4;
    text-transform: uppercase;
}

.project-kicker::before {
    content: '';
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.project-hero {
    min-height: calc(100vh - var(--nav-h));
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.project-hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--project-hero-image);
    background-position: center;
    background-size: cover;
    transform: scale(1.04);
}

.project-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(104deg, rgba(13, 13, 11, 0.97) 0%, rgba(13, 13, 11, 0.76) 52%, rgba(13, 13, 11, 0.34) 100%),
        linear-gradient(180deg, rgba(13, 13, 11, 0.05), var(--ink));
}

.project-hero__inner {
    padding-top: 80px;
    padding-bottom: 72px;
}

.project-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 72px;
    color: rgba(245, 240, 232, 0.62);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.project-breadcrumb a:hover {
    color: var(--gold-light);
}

.project-breadcrumb strong {
    color: var(--gold);
    font-weight: 500;
}

.project-hero__content {
    max-width: 980px;
}

.project-hero h1,
.project-overview h2,
.project-section-head h2,
.project-solution-card h2,
.project-split-head h2,
.project-testimonial h2,
.project-final-cta h2 {
    font-family: var(--ff-display);
    font-weight: 600;
    line-height: 1;
    color: var(--white);
}

.project-hero h1 {
    margin: 24px 0;
    font-size: clamp(56px, 7.6vw, 116px);
}

.project-hero p {
    color: rgba(245, 240, 232, 0.78);
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.85;
}

.project-scroll-indicator {
    position: absolute;
    bottom: 38px;
    left: 50%;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.project-scroll-indicator span {
    width: 1px;
    height: 46px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.project-overview,
.project-info,
.project-gallery,
.project-solution,
.project-stats,
.project-process,
.project-achievements,
.project-related,
.project-testimonial,
.project-final-cta {
    padding: clamp(54px, 8vw, 100px) 0;
}

.project-overview__grid {
    display: grid;
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
    gap: clamp(34px, 6vw, 86px);
}

.project-overview h2,
.project-section-head h2,
.project-solution-card h2,
.project-split-head h2,
.project-testimonial h2,
.project-final-cta h2 {
    margin-top: 16px;
    font-size: clamp(38px, 4.8vw, 66px);
}

.project-overview__content>p {
    margin-top: 24px;
    color: var(--cream);
    font-family: var(--ff-display);
    font-size: clamp(24px, 2.8vw, 38px);
    line-height: 1.32;
}

.project-highlight-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 34px;
}

.project-highlight-row div,
.project-info-card,
.project-solution-card,
.project-process-item,
.project-achievement-card,
.project-related-card,
.project-stat-card {
    border: 1px solid var(--project-border);
    background: linear-gradient(145deg, rgba(245, 240, 232, 0.075), rgba(245, 240, 232, 0.03));
    box-shadow: 0 20px 58px rgba(0, 0, 0, 0.22);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.project-info-card:hover,
.project-solution-card:hover,
.project-process-item:hover,
.project-achievement-card:hover,
.project-related-card:hover {
    transform: translateY(-7px);
    border-color: var(--project-border-strong);
    background: linear-gradient(145deg, rgba(245, 240, 232, 0.105), rgba(245, 240, 232, 0.04));
}

.project-highlight-row div {
    padding: 20px;
}

.project-highlight-row strong,
.project-highlight-row span {
    display: block;
}

.project-highlight-row strong {
    color: var(--gold-light);
    font-family: var(--ff-display);
    font-size: 28px;
}

.project-highlight-row span {
    color: var(--muted);
    font-size: 12px;
}

.project-info,
.project-solution,
.project-achievements,
.project-testimonial {
    background: var(--ink-2);
}

.project-section-head,
.project-split-head {
    margin-bottom: 44px;
}

.project-section-head {
    max-width: 820px;
}

.project-split-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
}

.project-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.project-info-card {
    min-height: 150px;
    padding: 24px;
}

.project-info-card span {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.project-info-card strong {
    display: block;
    margin-top: 28px;
    color: var(--cream);
    font-family: var(--ff-display);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.1;
}

.project-masonry {
    display: grid;
    grid-auto-flow: dense;
    grid-auto-rows: 210px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.project-gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--project-border);
    background: var(--project-panel);
}

.project-gallery-item::after {
    content: 'View';
    position: absolute;
    inset: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    background: rgba(201, 168, 76, 0.82);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.project-gallery-item:hover::after {
    opacity: 1;
}

.project-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.project-gallery-item:hover img {
    transform: scale(1.06);
}

.project-gallery-item--large {
    grid-column: span 2;
    grid-row: span 2;
}

.project-gallery-item--wide {
    grid-column: span 2;
}

.project-gallery-item--tall {
    grid-row: span 2;
}

.project-solution__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.project-solution-card {
    min-height: 360px;
    padding: clamp(20px, 4vw, 40px);
}

.project-solution-card p,
.project-process-item p,
.project-achievement-card p,
.project-related-card p {
    margin-top: 14px;
    color: rgba(245, 240, 232, 0.68);
    font-size: 15px;
    line-height: 1.85;
}

.project-stats {
    padding-top: 0;
}

.project-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2px;
    border: 1px solid var(--project-border);
    background: rgba(201, 168, 76, 0.14);
}

.project-stat-card {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
    background: rgba(22, 22, 16, 0.94);
}

.project-stat-card strong {
    color: var(--gold-light);
    font-family: var(--ff-display);
    font-size: clamp(40px, 4.8vw, 66px);
    font-weight: 600;
    line-height: 1;
}

.project-stat-card span {
    margin-top: 12px;
    color: var(--cream-dim);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.project-process-track {
    display: grid;
    grid-template-columns: repeat(5, minmax(220px, 1fr));
    gap: 2px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.project-process-item {
    min-height: 300px;
    padding: 28px;
    position: relative;
}

.project-process-item::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 28px;
    width: 10px;
    height: 10px;
    background: var(--gold);
    box-shadow: 0 0 0 8px rgba(201, 168, 76, 0.1);
}

.project-process-item time {
    display: block;
    padding-left: 28px;
    color: var(--gold-light);
    font-family: var(--ff-display);
    font-size: 38px;
    line-height: 1;
}

.project-process-item h3,
.project-achievement-card h3,
.project-related-card h3 {
    color: var(--cream);
    font-family: var(--ff-display);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.1;
}

.project-process-item h3 {
    margin-top: 58px;
}

.project-achievement-grid,
.project-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.project-achievement-card {
    min-height: 260px;
    padding: 28px;
}

.project-achievement-card span {
    color: var(--gold);
    font-family: var(--ff-display);
    font-size: 34px;
}

.project-achievement-card h3 {
    margin-top: 44px;
}

.project-related-card {
    overflow: hidden;
}

.project-related-card figure {
    aspect-ratio: 16 / 11;
    overflow: hidden;
}

.project-related-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.project-related-card:hover img {
    transform: scale(1.05);
}

.project-related-card div {
    padding: 24px;
}

.project-primary-btn,
.project-outline-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.project-primary-btn {
    background: var(--gold);
    color: var(--ink);
    box-shadow: 0 16px 42px rgba(201, 168, 76, 0.24);
}

.project-primary-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 20px 52px rgba(201, 168, 76, 0.34);
}

.project-outline-btn {
    color: var(--gold-light);
    border-color: var(--project-border-strong);
    background: rgba(245, 240, 232, 0.04);
}

.project-outline-btn:hover {
    color: var(--cream);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.project-testimonial__box {
    max-width: 980px;
    padding: clamp(32px, 5vw, 64px);
    border: 1px solid var(--project-border);
    background: linear-gradient(145deg, rgba(245, 240, 232, 0.075), rgba(245, 240, 232, 0.03));
    box-shadow: var(--project-shadow);
}

.project-testimonial__box p {
    margin-top: 28px;
    color: var(--gold-light);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.project-final-cta {
    padding-top: 0;
}

.project-final-cta__banner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    min-height: 280px;
    padding: clamp(22px, 5vw, 54px);
    border: 1px solid var(--project-border-strong);
    background:
        linear-gradient(120deg, rgba(201, 168, 76, 0.18), rgba(245, 240, 232, 0.035)),
        var(--ink-2);
    box-shadow: var(--project-shadow);
}

.project-final-cta__banner h2 {
    margin-top: 12px;
}

.project-final-cta__banner div {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.project-detail-page .project-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.project-detail-page .project-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.project-detail-page .project-delay-1 {
    transition-delay: 0.1s;
}

.project-detail-page .project-delay-2 {
    transition-delay: 0.18s;
}

.project-detail-page .project-delay-3 {
    transition-delay: 0.26s;
}

@media (max-width: 1180px) {

    .project-info-grid,
    .project-stat-grid,
    .project-achievement-grid,
    .project-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .project-masonry {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {

    .project-overview__grid,
    .project-solution__grid,
    .project-final-cta__banner {
        grid-template-columns: 1fr;
    }

    .project-split-head {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 720px) {
    .project-hero {
        min-height: 680px;
    }

    .project-hero h1 {
        font-size: 48px;
    }

    .project-info-grid,
    .project-stat-grid,
    .project-achievement-grid,
    .project-related-grid,
    .project-process-track,
    .project-highlight-row {
        grid-template-columns: 1fr;
    }

    .project-process-track {
        overflow: visible;
    }

    .project-masonry {
        grid-auto-rows: 260px;
        grid-template-columns: 1fr;
    }

    .project-gallery-item--large,
    .project-gallery-item--wide,
    .project-gallery-item--tall {
        grid-column: auto;
        grid-row: auto;
    }

    .project-primary-btn,
    .project-outline-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .project-hero h1 {
        font-size: 42px;
    }

    .project-overview,
    .project-info,
    .project-gallery,
    .project-solution,
    .project-process,
    .project-achievements,
    .project-related,
    .project-testimonial,
    .project-final-cta {
        padding: 62px 0;
    }

    .project-stat-card {
        min-height: 150px;
    }
}

/* ── LUXURY PROJECTS LIST PAGE ── */
.projects-page {
    --projects-border: rgba(201, 168, 76, 0.18);
    --projects-border-strong: rgba(201, 168, 76, 0.38);
    --projects-panel: rgba(22, 22, 16, 0.84);
    --projects-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
    background:
        radial-gradient(circle at 16% 10%, rgba(201, 168, 76, 0.11), transparent 28%),
        radial-gradient(circle at 90% 38%, rgba(232, 201, 122, 0.08), transparent 26%),
        var(--ink);
    color: var(--cream);
}

.projects-page .container {
    width: min(100%, 1240px);
}

.projects-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    line-height: 1.4;
    text-transform: uppercase;
}

.projects-kicker::before {
    content: '';
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.projects-hero {
    min-height: clamp(560px, 78vh, 760px);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.projects-hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--projects-hero-image);
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
}

.projects-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(104deg, rgba(13, 13, 11, 0.97) 0%, rgba(13, 13, 11, 0.76) 50%, rgba(13, 13, 11, 0.34) 100%),
        linear-gradient(180deg, rgba(13, 13, 11, 0.05), var(--ink));
}

.projects-hero__inner {
    padding-top: 80px;
    padding-bottom: 72px;
}

.projects-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 64px;
    color: rgba(245, 240, 232, 0.62);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.projects-breadcrumb a:hover,
.projects-breadcrumb strong {
    color: var(--gold-light);
}

.projects-hero__content {
    max-width: 920px;
}

.projects-hero h1,
.projects-section-head h2,
.projects-empty h2,
.projects-final-cta h2 {
    font-family: var(--ff-display);
    font-weight: 600;
    line-height: 1;
    color: var(--white);
}

.projects-hero h1 {
    margin: 24px 0;
    font-size: clamp(56px, 7.4vw, 112px);
}

.projects-hero p {
    max-width: 680px;
    color: rgba(245, 240, 232, 0.78);
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.85;
}

.projects-filter-section {
    position: sticky;
    top: var(--nav-h);
    z-index: 20;
    padding: 16px 0;
    border-top: 1px solid var(--projects-border);
    border-bottom: 1px solid var(--projects-border);
    background: rgba(13, 13, 11, 0.88);
    backdrop-filter: blur(18px);
}

.projects-filterbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.projects-filterbar a {
    padding: 10px 18px;
    color: var(--cream-dim);
    border: 1px solid var(--projects-border);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.projects-filterbar a.active,
.projects-filterbar a:hover {
    color: var(--ink);
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-1px);
}

.projects-portfolio,
.projects-proof,
.projects-final-cta {
    padding: clamp(54px, 8vw, 100px) 0;
}

.projects-section-head {
    max-width: 820px;
    margin-bottom: 44px;
}

.projects-section-head h2,
.projects-empty h2,
.projects-final-cta h2 {
    margin-top: 16px;
    font-size: clamp(38px, 4.8vw, 66px);
}

.projects-lux-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.projects-lux-card {
    min-height: 100%;
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border: 1px solid var(--projects-border);
    background: linear-gradient(145deg, rgba(245, 240, 232, 0.075), rgba(245, 240, 232, 0.03));
    box-shadow: 0 20px 58px rgba(0, 0, 0, 0.22);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.projects-lux-card--featured {
    grid-column: span 2;
}

.projects-lux-card:hover {
    transform: translateY(-8px);
    border-color: var(--projects-border-strong);
    background: linear-gradient(145deg, rgba(245, 240, 232, 0.105), rgba(245, 240, 232, 0.04));
}

.projects-lux-card figure {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
}

.projects-lux-card--featured figure {
    aspect-ratio: 16 / 8.5;
}

.projects-lux-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.projects-lux-card:hover img {
    transform: scale(1.05);
}

.projects-status {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 7px 12px;
    color: var(--ink);
    background: var(--gold);
    font-size: 10px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.projects-status--running {
    background: var(--gold-light);
}

.projects-status--upcoming {
    color: var(--cream);
    background: rgba(100, 140, 200, 0.9);
}

.projects-lux-card__body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 22px;
    padding: 26px;
}

.projects-card-kicker {
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.projects-lux-card h3 {
    margin-top: 10px;
    color: var(--cream);
    font-family: var(--ff-display);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 600;
    line-height: 1.08;
}

.projects-lux-card p {
    margin-top: 12px;
    color: rgba(245, 240, 232, 0.68);
    font-size: 15px;
    line-height: 1.8;
}

.projects-card-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
}

.projects-card-meta div {
    padding-top: 14px;
    border-top: 1px solid var(--projects-border);
}

.projects-card-meta dt {
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.projects-card-meta dd {
    margin: 5px 0 0;
    color: var(--cream-dim);
    font-size: 13px;
}

.projects-view-link {
    color: var(--gold-light);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.projects-empty {
    padding: clamp(24px, 6vw, 50px);
    border: 1px solid var(--projects-border);
    background: linear-gradient(145deg, rgba(245, 240, 232, 0.075), rgba(245, 240, 232, 0.03));
    box-shadow: var(--projects-shadow);
}

.projects-empty p {
    max-width: 560px;
    margin: 18px 0 30px;
    color: rgba(245, 240, 232, 0.68);
}

.projects-primary-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    color: var(--ink);
    background: var(--gold);
    border: 1px solid var(--gold);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 16px 42px rgba(201, 168, 76, 0.24);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.projects-primary-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 20px 52px rgba(201, 168, 76, 0.34);
}

.projects-proof {
    padding-top: 0;
}

.projects-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2px;
    border: 1px solid var(--projects-border);
    background: rgba(201, 168, 76, 0.14);
}

.projects-proof-card {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
    background: rgba(22, 22, 16, 0.94);
}

.projects-proof-card strong {
    color: var(--gold-light);
    font-family: var(--ff-display);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 600;
    line-height: 1;
}

.projects-proof-card span {
    margin-top: 12px;
    color: var(--cream-dim);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.projects-final-cta {
    padding-top: 0;
}

.projects-final-cta__banner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    min-height: 280px;
    padding: clamp(22px, 5vw, 54px);
    border: 1px solid var(--projects-border-strong);
    background:
        linear-gradient(120deg, rgba(201, 168, 76, 0.18), rgba(245, 240, 232, 0.035)),
        var(--ink-2);
    box-shadow: var(--projects-shadow);
}

.projects-final-cta__banner h2 {
    margin-top: 12px;
}

.projects-page .projects-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.projects-page .projects-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.projects-page .projects-delay-1 {
    transition-delay: 0.1s;
}

.projects-page .projects-delay-2 {
    transition-delay: 0.18s;
}

.projects-page .projects-delay-3 {
    transition-delay: 0.26s;
}

@media (max-width: 1180px) {
    .projects-lux-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .projects-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 840px) {

    .projects-lux-grid,
    .projects-proof-grid,
    .projects-final-cta__banner {
        grid-template-columns: 1fr;
    }

    .projects-lux-card--featured {
        grid-column: auto;
    }

    .projects-card-meta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .projects-filter-section {
        position: static;
    }

    .projects-hero {
        min-height: 650px;
    }

    .projects-hero h1 {
        font-size: 48px;
    }

    .projects-filterbar a,
    .projects-primary-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .projects-hero h1 {
        font-size: 42px;
    }

    .projects-portfolio,
    .projects-proof,
    .projects-final-cta {
        padding: 62px 0;
    }

    .projects-proof-card {
        min-height: 150px;
    }
}

/* ── PREMIUM CSR PAGE ── */
.csr-page {
    --csr-red: #C41E3A;
    --csr-red-light: #E57373;
    --csr-border: rgba(201, 168, 76, 0.18);
    --csr-border-strong: rgba(201, 168, 76, 0.38);
    --csr-panel: rgba(22, 22, 16, 0.84);
    --csr-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
    background:
        radial-gradient(circle at 16% 10%, rgba(196, 30, 58, 0.14), transparent 28%),
        radial-gradient(circle at 88% 36%, rgba(201, 168, 76, 0.08), transparent 25%),
        var(--ink);
    color: var(--cream);
}

.csr-page .container {
    width: min(100%, 1240px);
}

.csr-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    line-height: 1.4;
    text-transform: uppercase;
}

.csr-kicker::before {
    content: '';
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.csr-hero {
    min-height: clamp(560px, 78vh, 760px);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.csr-hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--csr-hero-image);
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
}

.csr-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(104deg, rgba(13, 13, 11, 0.96) 0%, rgba(45, 10, 10, 0.78) 52%, rgba(13, 13, 11, 0.4) 100%),
        linear-gradient(180deg, rgba(13, 13, 11, 0.05), var(--ink));
}

.csr-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 42px;
    align-items: end;
    padding-top: 80px;
    padding-bottom: 72px;
}

.csr-hero__content {
    max-width: 900px;
}

.csr-hero h1,
.csr-intro h2,
.csr-blood h2,
.csr-section-head h2,
.csr-empty h2,
.csr-partner h2 {
    font-family: var(--ff-display);
    font-weight: 600;
    line-height: 1;
    color: var(--white);
}

.csr-hero h1 {
    margin: 24px 0;
    font-size: clamp(56px, 7.4vw, 112px);
}

.csr-hero p {
    max-width: 690px;
    color: rgba(245, 240, 232, 0.78);
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.85;
}

.csr-hero__impact {
    padding: 28px;
    border: 1px solid rgba(229, 83, 83, 0.28);
    background: linear-gradient(145deg, rgba(196, 30, 58, 0.2), rgba(245, 240, 232, 0.035));
    box-shadow: var(--csr-shadow);
    backdrop-filter: blur(18px);
}

.csr-hero__impact strong {
    display: block;
    color: var(--csr-red-light);
    font-family: var(--ff-display);
    font-size: 64px;
    line-height: 1;
}

.csr-hero__impact span {
    display: block;
    margin-top: 12px;
    color: var(--cream-dim);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.csr-intro,
.csr-blood,
.csr-activities,
.csr-focus,
.csr-impact,
.csr-partner {
    padding: clamp(54px, 8vw, 100px) 0;
}

.csr-intro__grid,
.csr-blood__grid {
    display: grid;
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
    gap: clamp(34px, 6vw, 86px);
    align-items: center;
}

.csr-blood__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
}

.csr-intro h2,
.csr-blood h2,
.csr-section-head h2,
.csr-empty h2,
.csr-partner h2 {
    margin-top: 16px;
    font-size: clamp(38px, 4.8vw, 66px);
}

.csr-intro__content p {
    margin-top: 24px;
    color: var(--cream);
    font-family: var(--ff-display);
    font-size: clamp(24px, 2.8vw, 38px);
    line-height: 1.32;
}

.csr-blood,
.csr-focus {
    background: var(--ink-2);
}

.csr-blood__content p,
.csr-activity-card p,
.csr-focus-card p,
.csr-partner p {
    color: rgba(245, 240, 232, 0.68);
    font-size: 15px;
    line-height: 1.85;
}

.csr-blood__content p {
    margin-top: 20px;
}

.csr-blood__content ul {
    display: grid;
    gap: 10px;
    margin: 28px 0 34px;
    padding: 0;
    list-style: none;
}

.csr-blood__content li {
    color: var(--cream-dim);
    padding-left: 22px;
    position: relative;
}

.csr-blood__content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: var(--csr-red-light);
}

.csr-blood__image {
    height: 580px;
    overflow: hidden;
    border: 1px solid rgba(229, 83, 83, 0.25);
    box-shadow: var(--csr-shadow);
}

.csr-blood__image img,
.csr-activity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.csr-blood__image:hover img,
.csr-activity-card:hover img {
    transform: scale(1.05);
}

.csr-primary-btn,
.csr-outline-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.csr-primary-btn {
    color: var(--white);
    background: var(--csr-red);
    box-shadow: 0 16px 42px rgba(196, 30, 58, 0.24);
}

.csr-primary-btn:hover {
    background: #E53935;
    transform: translateY(-2px);
}

.csr-outline-btn {
    color: var(--gold-light);
    border-color: var(--csr-border-strong);
    background: rgba(245, 240, 232, 0.04);
}

.csr-outline-btn:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.csr-section-head {
    max-width: 820px;
    margin-bottom: 44px;
}

.csr-activity-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.csr-activity-card,
.csr-focus-card,
.csr-impact-card {
    border: 1px solid var(--csr-border);
    background: linear-gradient(145deg, rgba(245, 240, 232, 0.075), rgba(245, 240, 232, 0.03));
    box-shadow: 0 20px 58px rgba(0, 0, 0, 0.22);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.csr-activity-card:hover,
.csr-focus-card:hover {
    transform: translateY(-7px);
    border-color: var(--csr-border-strong);
    background: linear-gradient(145deg, rgba(245, 240, 232, 0.105), rgba(245, 240, 232, 0.04));
}

.csr-activity-card--featured {
    grid-column: span 2;
}

.csr-activity-card figure {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
}

.csr-activity-card--featured figure {
    aspect-ratio: 16 / 8.5;
}

.csr-activity-card figure span {
    position: absolute;
    left: 18px;
    top: 18px;
    padding: 7px 12px;
    color: var(--white);
    background: var(--csr-red);
    font-size: 10px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.csr-activity-card>div {
    padding: 26px;
}

.csr-activity-card time {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.csr-activity-card h3,
.csr-focus-card h3 {
    margin-top: 12px;
    color: var(--cream);
    font-family: var(--ff-display);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 600;
    line-height: 1.08;
}

.csr-activity-card strong {
    display: block;
    margin-top: 18px;
    color: var(--csr-red-light);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.csr-empty {
    padding: clamp(24px, 6vw, 50px);
    border: 1px solid var(--csr-border);
    background: linear-gradient(145deg, rgba(245, 240, 232, 0.075), rgba(245, 240, 232, 0.03));
}

.csr-empty p {
    max-width: 560px;
    margin-top: 18px;
    color: rgba(245, 240, 232, 0.68);
}

.csr-focus-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.csr-focus-card {
    min-height: 250px;
    padding: 28px;
}

.csr-focus-card span {
    color: var(--csr-red-light);
    font-family: var(--ff-display);
    font-size: 34px;
}

.csr-focus-card h3 {
    margin-top: 44px;
}

.csr-impact {
    padding-top: 0;
}

.csr-impact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2px;
    border: 1px solid rgba(229, 83, 83, 0.24);
    background: rgba(196, 30, 58, 0.18);
}

.csr-impact-card {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
    background: rgba(22, 22, 16, 0.94);
}

.csr-impact-card strong {
    color: var(--csr-red-light);
    font-family: var(--ff-display);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 600;
    line-height: 1;
}

.csr-impact-card span {
    margin-top: 12px;
    color: var(--cream-dim);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.csr-partner {
    padding-top: 0;
}

.csr-partner__banner {
    min-height: 320px;
    padding: clamp(22px, 5vw, 54px);
    border: 1px solid rgba(229, 83, 83, 0.28);
    background:
        linear-gradient(120deg, rgba(196, 30, 58, 0.24), rgba(245, 240, 232, 0.035)),
        var(--ink-2);
    box-shadow: var(--csr-shadow);
}

.csr-partner__banner p {
    max-width: 760px;
    margin: 18px 0 32px;
}

.csr-partner__banner div {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.csr-page .csr-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.csr-page .csr-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.csr-page .csr-delay-1 {
    transition-delay: 0.1s;
}

.csr-page .csr-delay-2 {
    transition-delay: 0.18s;
}

.csr-page .csr-delay-3 {
    transition-delay: 0.26s;
}

@media (max-width: 1180px) {

    .csr-activity-grid,
    .csr-focus-grid,
    .csr-impact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {

    .csr-hero__inner,
    .csr-intro__grid,
    .csr-blood__grid {
        grid-template-columns: 1fr;
    }

    .csr-blood__image {
        min-height: 360px;
    }
}

@media (max-width: 720px) {
    .csr-hero {
        min-height: 660px;
    }

    .csr-hero h1 {
        font-size: 48px;
    }

    .csr-activity-grid,
    .csr-focus-grid,
    .csr-impact-grid {
        grid-template-columns: 1fr;
    }

    .csr-activity-card--featured {
        grid-column: auto;
    }

    .csr-primary-btn,
    .csr-outline-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .csr-hero h1 {
        font-size: 42px;
    }

    .csr-intro,
    .csr-blood,
    .csr-activities,
    .csr-focus,
    .csr-impact,
    .csr-partner {
        padding: 62px 0;
    }

    .csr-impact-card {
        min-height: 150px;
    }
}

/* ── PREMIUM CSR DETAIL PAGE ── */
.csr-detail-page {
    --csr-detail-red: #C41E3A;
    --csr-detail-red-light: #E57373;
    --csr-detail-border: rgba(201, 168, 76, 0.18);
    --csr-detail-border-strong: rgba(201, 168, 76, 0.38);
    --csr-detail-panel: rgba(22, 22, 16, 0.84);
    --csr-detail-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
    background:
        radial-gradient(circle at 12% 10%, rgba(196, 30, 58, 0.16), transparent 28%),
        radial-gradient(circle at 88% 38%, rgba(201, 168, 76, 0.09), transparent 25%),
        var(--ink);
    color: var(--cream);
}

.csr-detail-page .container {
    width: min(100%, 1240px);
}

.csr-detail-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    line-height: 1.4;
    text-transform: uppercase;
}

.csr-detail-kicker::before {
    content: '';
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.csr-detail-hero {
    min-height: clamp(620px, 82vh, 840px);
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    isolation: isolate;
}

.csr-detail-hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--csr-detail-image);
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
}

.csr-detail-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(104deg, rgba(13, 13, 11, 0.97) 0%, rgba(45, 10, 10, 0.82) 54%, rgba(13, 13, 11, 0.42) 100%),
        linear-gradient(180deg, rgba(13, 13, 11, 0.08), var(--ink));
}

.csr-detail-hero__inner {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: clamp(28px, 5vw, 70px);
    align-items: end;
    padding-top: 120px;
    padding-bottom: clamp(58px, 8vw, 96px);
}

.csr-detail-breadcrumb {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    color: rgba(245, 240, 232, 0.58);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.csr-detail-breadcrumb a {
    color: var(--gold-light);
}

.csr-detail-hero__content {
    max-width: 900px;
}

.csr-detail-hero h1,
.csr-detail-article h2,
.csr-detail-showcase h2,
.csr-detail-section-head h2,
.csr-detail-cta h2 {
    color: var(--white);
    font-family: var(--ff-display);
    font-weight: 600;
    line-height: 1;
}

.csr-detail-hero h1 {
    margin: 24px 0;
    font-size: clamp(54px, 7vw, 106px);
}

.csr-detail-hero__content p {
    max-width: 720px;
    color: rgba(245, 240, 232, 0.78);
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.85;
}

.csr-detail-hero__meta {
    display: grid;
    gap: 1px;
    border: 1px solid rgba(229, 83, 83, 0.24);
    background: rgba(196, 30, 58, 0.18);
    box-shadow: var(--csr-detail-shadow);
    backdrop-filter: blur(18px);
}

.csr-detail-hero__meta div {
    padding: 24px;
    background: linear-gradient(145deg, rgba(245, 240, 232, 0.075), rgba(245, 240, 232, 0.025));
}

.csr-detail-hero__meta span {
    display: block;
    color: rgba(245, 240, 232, 0.58);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.csr-detail-hero__meta strong {
    display: block;
    margin-top: 9px;
    color: var(--csr-detail-red-light);
    font-family: var(--ff-display);
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
}

.csr-detail-story,
.csr-detail-impact,
.csr-detail-showcase,
.csr-detail-related,
.csr-detail-cta {
    padding: clamp(54px, 8vw, 100px) 0;
}

.csr-detail-story__grid {
    display: grid;
    grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
    gap: clamp(34px, 6vw, 88px);
    align-items: start;
}

.csr-detail-side {
    position: sticky;
    top: 110px;
}

.csr-detail-side__card {
    margin-top: 18px;
    padding: 24px;
    border: 1px solid var(--csr-detail-border);
    background: linear-gradient(145deg, rgba(245, 240, 232, 0.07), rgba(245, 240, 232, 0.025));
}

.csr-detail-side__card strong {
    display: block;
    color: var(--gold-light);
    font-family: var(--ff-display);
    font-size: 28px;
    font-weight: 600;
}

.csr-detail-side__card p,
.csr-detail-article p,
.csr-detail-showcase__content p,
.csr-detail-related-card p,
.csr-detail-empty p,
.csr-detail-cta p,
.csr-detail-impact-card p {
    color: rgba(245, 240, 232, 0.68);
    font-size: 15px;
    line-height: 1.85;
}

.csr-detail-side__card p {
    margin-top: 10px;
}

.csr-detail-article {
    max-width: 850px;
}

.csr-detail-article h2,
.csr-detail-showcase h2,
.csr-detail-section-head h2,
.csr-detail-cta h2 {
    font-size: clamp(38px, 4.8vw, 66px);
}

.csr-detail-article p {
    margin-top: 22px;
}

.csr-detail-article .csr-detail-lead {
    color: var(--cream);
    font-family: var(--ff-display);
    font-size: clamp(24px, 2.8vw, 38px);
    line-height: 1.32;
}

.csr-detail-impact {
    padding-top: 0;
}

.csr-detail-impact__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2px;
    border: 1px solid rgba(229, 83, 83, 0.24);
    background: rgba(196, 30, 58, 0.18);
}

.csr-detail-impact-card {
    min-height: 230px;
    padding: 30px;
    background: rgba(22, 22, 16, 0.94);
}

.csr-detail-impact-card span {
    color: var(--csr-detail-red-light);
    font-family: var(--ff-display);
    font-size: 34px;
}

.csr-detail-impact-card strong {
    display: block;
    margin-top: 36px;
    color: var(--cream);
    font-family: var(--ff-display);
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 600;
    line-height: 1;
}

.csr-detail-impact-card p {
    margin-top: 14px;
}

.csr-detail-showcase {
    background: var(--ink-2);
}

.csr-detail-showcase__grid {
    display: grid;
    grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(34px, 6vw, 86px);
    align-items: center;
}

.csr-detail-showcase__image {
    height: 520px;
    overflow: hidden;
    border: 1px solid rgba(229, 83, 83, 0.25);
    box-shadow: var(--csr-detail-shadow);
}

.csr-detail-showcase__image img,
.csr-detail-related-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.csr-detail-showcase__image:hover img,
.csr-detail-related-card:hover img {
    transform: scale(1.05);
}

.csr-detail-showcase__content p {
    margin-top: 20px;
}

.csr-detail-showcase__content ul {
    display: grid;
    gap: 10px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.csr-detail-showcase__content li {
    position: relative;
    padding-left: 22px;
    color: var(--cream-dim);
}

.csr-detail-showcase__content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: var(--csr-detail-red-light);
}

.csr-detail-section-head {
    max-width: 780px;
    margin-bottom: 44px;
}

.csr-detail-section-head h2,
.csr-detail-showcase h2,
.csr-detail-cta h2 {
    margin-top: 16px;
}

.csr-detail-related__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.csr-detail-related-card,
.csr-detail-empty {
    border: 1px solid var(--csr-detail-border);
    background: linear-gradient(145deg, rgba(245, 240, 232, 0.075), rgba(245, 240, 232, 0.03));
    box-shadow: 0 20px 58px rgba(0, 0, 0, 0.22);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.csr-detail-related-card:hover {
    transform: translateY(-7px);
    border-color: var(--csr-detail-border-strong);
    background: linear-gradient(145deg, rgba(245, 240, 232, 0.105), rgba(245, 240, 232, 0.04));
}

.csr-detail-related-card figure {
    aspect-ratio: 16 / 11;
    overflow: hidden;
}

.csr-detail-related-card div {
    padding: 26px;
}

.csr-detail-related-card time {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.csr-detail-related-card h3,
.csr-detail-empty h3 {
    margin-top: 12px;
    color: var(--cream);
    font-family: var(--ff-display);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 600;
    line-height: 1.08;
}

.csr-detail-empty {
    padding: clamp(22px, 5vw, 48px);
}

.csr-detail-empty p {
    margin: 14px 0 24px;
}

.csr-detail-cta {
    padding-top: 0;
}

.csr-detail-cta__banner {
    min-height: 320px;
    padding: clamp(22px, 5vw, 54px);
    border: 1px solid rgba(229, 83, 83, 0.28);
    background:
        linear-gradient(120deg, rgba(196, 30, 58, 0.24), rgba(245, 240, 232, 0.035)),
        var(--ink-2);
    box-shadow: var(--csr-detail-shadow);
}

.csr-detail-cta p {
    max-width: 760px;
    margin: 18px 0 32px;
}

.csr-detail-cta__banner div {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.csr-detail-primary-btn,
.csr-detail-outline-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.csr-detail-primary-btn {
    color: var(--white);
    background: var(--csr-detail-red);
    box-shadow: 0 16px 42px rgba(196, 30, 58, 0.24);
}

.csr-detail-primary-btn:hover {
    background: #E53935;
    transform: translateY(-2px);
}

.csr-detail-outline-btn {
    color: var(--gold-light);
    border-color: var(--csr-detail-border-strong);
    background: rgba(245, 240, 232, 0.04);
}

.csr-detail-outline-btn:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.csr-detail-page .csr-detail-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.csr-detail-page .csr-detail-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.csr-detail-page .csr-detail-delay-1 {
    transition-delay: 0.1s;
}

.csr-detail-page .csr-detail-delay-2 {
    transition-delay: 0.18s;
}

@media (max-width: 1180px) {

    .csr-detail-related__grid,
    .csr-detail-impact__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {

    .csr-detail-hero__inner,
    .csr-detail-story__grid,
    .csr-detail-showcase__grid {
        grid-template-columns: 1fr;
    }

    .csr-detail-side {
        position: static;
    }

    .csr-detail-showcase__image {
        min-height: 360px;
    }
}

@media (max-width: 720px) {
    .csr-detail-hero {
        min-height: 680px;
    }

    .csr-detail-hero h1 {
        font-size: 48px;
    }

    .csr-detail-related__grid,
    .csr-detail-impact__grid {
        grid-template-columns: 1fr;
    }

    .csr-detail-primary-btn,
    .csr-detail-outline-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .csr-detail-hero h1 {
        font-size: 42px;
    }

    .csr-detail-story,
    .csr-detail-impact,
    .csr-detail-showcase,
    .csr-detail-related,
    .csr-detail-cta {
        padding: 62px 0;
    }

    .csr-detail-impact-card {
        min-height: 180px;
    }
}

/* ── PREMIUM BLOOD BANK PAGE ── */
.blood-page {
    --blood-red: #C62828;
    --blood-red-light: #E57373;
    --blood-border: rgba(229, 83, 83, 0.22);
    --blood-border-gold: rgba(201, 168, 76, 0.18);
    --blood-panel: rgba(22, 22, 16, 0.84);
    --blood-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
    background:
        radial-gradient(circle at 15% 10%, rgba(198, 40, 40, 0.16), transparent 28%),
        radial-gradient(circle at 88% 36%, rgba(201, 168, 76, 0.07), transparent 26%),
        var(--ink);
    color: var(--cream);
}

.blood-page .container {
    width: min(100%, 1240px);
}

.blood-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--blood-red-light);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    line-height: 1.4;
    text-transform: uppercase;
}

.blood-tag::before {
    content: '';
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, var(--blood-red-light), transparent);
}

.blood-hero {
    min-height: clamp(560px, 78vh, 740px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    background:
        linear-gradient(120deg, rgba(13, 13, 11, 0.96), rgba(45, 10, 10, 0.8), rgba(13, 13, 11, 0.96)),
        var(--ink);
}

.blood-hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(229, 83, 83, 0.55), transparent);
}

.blood-hero h1 {
    margin-top: 20px;
    font-family: var(--ff-display);
    font-size: clamp(58px, 8vw, 112px);
    font-weight: 600;
    line-height: 0.98;
    color: var(--white);
}

.blood-hero h1 span {
    color: var(--blood-red-light);
    display: block;
}

.blood-hero p {
    max-width: 720px;
    margin: 24px auto 0;
    color: rgba(245, 240, 232, 0.74);
    font-size: clamp(16px, 1.8vw, 20px);
    line-height: 1.85;
}

.blood-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.blood-page .btn-blood,
.blood-page .btn-blood-small {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    color: var(--white);
    background: var(--blood-red);
    border: 1px solid var(--blood-red);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 16px 42px rgba(198, 40, 40, 0.24);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.blood-page .btn-blood:hover,
.blood-page .btn-blood-small:hover {
    background: #E53935;
    transform: translateY(-2px);
    box-shadow: 0 20px 52px rgba(198, 40, 40, 0.34);
}

.blood-page .btn-outline {
    min-height: 50px;
    border-color: var(--blood-border);
    color: var(--cream);
    background: rgba(245, 240, 232, 0.04);
}

.blood-groups {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 52px;
}

.blood-groups span {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(145deg, var(--blood-red), #7f1d1d);
    border: 1px solid rgba(229, 83, 83, 0.38);
    border-radius: 50%;
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 12px 32px rgba(198, 40, 40, 0.18);
}

.blood-stats,
.blood-section,
.blood-request-section,
.blood-cta-section {
    padding: clamp(52px, 8vw, 100px) 0;
}

.blood-stats {
    padding-bottom: 0;
}

.blood-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2px;
    border: 1px solid var(--blood-border);
    background: rgba(198, 40, 40, 0.18);
}

.blood-stat-card {
    min-height: 180px;
    padding: 32px;
    text-align: center;
    background: rgba(22, 22, 16, 0.94);
}

.blood-stat-card h2 {
    color: var(--blood-red-light);
    font-family: var(--ff-display);
    font-size: clamp(44px, 5vw, 68px);
    font-weight: 600;
    line-height: 1;
}

.blood-stat-card p {
    margin-top: 12px;
    color: var(--cream-dim);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.blood-page .section-header {
    margin-bottom: 42px;
}

.blood-page .tag {
    color: var(--blood-red-light);
}

.blood-page .tag::before {
    background: var(--blood-red-light);
}

.blood-page .section-title em {
    color: var(--blood-red-light);
}

.donor-grid,
.request-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.donor-card,
.request-card {
    min-height: 280px;
    padding: 28px;
    border: 1px solid var(--blood-border);
    background: linear-gradient(145deg, rgba(245, 240, 232, 0.075), rgba(245, 240, 232, 0.03));
    box-shadow: 0 20px 58px rgba(0, 0, 0, 0.22);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.donor-card:hover,
.request-card:hover {
    transform: translateY(-7px);
    border-color: rgba(229, 83, 83, 0.45);
    background: linear-gradient(145deg, rgba(245, 240, 232, 0.105), rgba(245, 240, 232, 0.04));
}

.blood-type,
.request-badge {
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--white);
    background: linear-gradient(145deg, var(--blood-red), #7f1d1d);
    border: 1px solid rgba(229, 83, 83, 0.38);
    border-radius: 50%;
    font-family: var(--ff-display);
    font-size: 24px;
    font-weight: 700;
}

.donor-card h3,
.request-card h3,
.blood-cta-card h2 {
    color: var(--cream);
    font-family: var(--ff-display);
    font-size: 30px;
    font-weight: 600;
    line-height: 1.1;
}

.donor-card p,
.request-card p,
.blood-cta-card p,
.donor-card small {
    color: rgba(245, 240, 232, 0.68);
    font-size: 14px;
    line-height: 1.75;
}

.donor-card a:not(.btn-blood-small) {
    display: inline-flex;
    margin-top: 18px;
    color: var(--blood-red-light);
    font-size: 13px;
    letter-spacing: 0.08em;
}

.blood-request-section {
    background: var(--ink-2);
}

.blood-cta-section {
    padding-top: 0;
}

.blood-cta-card {
    min-height: 280px;
    padding: clamp(22px, 5vw, 44px);
    border: 1px solid var(--blood-border);
    background:
        linear-gradient(120deg, rgba(198, 40, 40, 0.24), rgba(245, 240, 232, 0.035)),
        var(--ink-2);
    box-shadow: var(--blood-shadow);
    text-align: center;
}

.blood-cta-card p {
    max-width: 680px;
    margin: 18px auto 32px;
}

@media (max-width: 900px) {
    .blood-stat-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {

    .blood-actions,
    .blood-page .btn-blood,
    .blood-page .btn-outline,
    .blood-page .btn-blood-small {
        width: 100%;
    }

    .blood-groups span {
        width: 56px;
        height: 56px;
        font-size: 20px;
    }

    .blood-hero h1 {
        font-size: 48px;
    }
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-left {
    flex: 1;
    min-width: 0;
}

.topbar-address {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.topbar-right a {
    display: block;
    text-align: right;
}

@media (max-width: 768px) {

    /* Hide the entire right side wrapper */
    .topbar-right {
        display: none !important;
    }

    /* Target the text inside topbar-left since there is no .topbar-address class */
    .topbar-left span,
    .topbar-left a {
        font-size: 5px;
    }
}


@media (max-width: 400px) {

    /* Target the text inside topbar-left since there is no .topbar-address class */
    .topbar-left span,
    .topbar-left a {
        font-size: 10px;
    }
}