@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Merriweather:ital,wght@0,300;0,400;0,700;1,300;1,400&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #2C3E50;
    --secondary: #ECF0F1;
    --neutral-light: #BDC3C7;
    --neutral-mid: #7F8C8D;
    --accent-gold: #F39C12;
    --accent-purple: #9B59B6;
    --text-on-dark: #ECF0F1;
    --text-on-light: #2C3E50;
    --border-subtle: rgba(189, 195, 199, 0.25);
    --shadow-deep: 0 8px 32px rgba(0,0,0,0.38);
    --shadow-card: 0 4px 16px rgba(0,0,0,0.22);
    --container-max: 1440px;
    --radius-sm: 2px;
    --radius-md: 4px;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Merriweather', Georgia, serif;
    background-color: var(--primary);
    color: var(--text-on-dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 48px;
}

.container--narrow {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 48px;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
    color: var(--secondary);
    opacity: 0.88;
}

h1, h2, h3, h4, h5 {
    font-family: 'Lato', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-on-dark);
}

h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    letter-spacing: -0.02em;
    font-weight: 900;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    letter-spacing: -0.01em;
    font-weight: 700;
}

h3 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 700;
}

h4 {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Lato', Arial, sans-serif;
}

p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-on-dark);
    margin-bottom: 1.25rem;
}

p:last-child {
    margin-bottom: 0;
}

ul, ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

li {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 0.97rem;
    line-height: 1.75;
    margin-bottom: 0.5rem;
    color: var(--text-on-dark);
}

strong {
    font-weight: 700;
    color: var(--secondary);
}

.text-accent-gold {
    color: var(--accent-gold);
}

.text-accent-purple {
    color: var(--accent-purple);
}

.text-muted {
    color: var(--neutral-light);
    font-size: 0.875rem;
}

.section-divider {
    width: 64px;
    height: 3px;
    background: var(--accent-gold);
    margin: 1.5rem 0 2rem 0;
    border: none;
    display: block;
}

.section-divider--center {
    margin-left: auto;
    margin-right: auto;
}

.section-divider--purple {
    background: var(--accent-purple);
}


/* ─── HEADER ─── */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(44, 62, 80, 0.97);
    border-bottom: 1px solid var(--border-subtle);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 48px;
}

.site-logo {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--secondary);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.site-logo span {
    color: var(--accent-gold);
}

.site-logo:hover {
    color: var(--accent-gold);
    opacity: 1;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-nav li a {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--neutral-light);
    padding: 8px 16px;
    border: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
    display: block;
}

.main-nav li a:hover,
.main-nav li a.active {
    color: var(--accent-gold);
    border-color: var(--border-subtle);
    opacity: 1;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--secondary);
    transition: all 0.3s ease;
}


/* ─── FOOTER ─── */

.site-footer {
    background: #1a2530;
    border-top: 1px solid var(--border-subtle);
    padding: 80px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 48px 64px 48px;
}

.footer-brand .site-logo {
    font-size: 1.25rem;
    display: inline-block;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--neutral-light);
    line-height: 1.7;
}

.footer-disclaimer {
    background: rgba(44, 62, 80, 0.5);
    border-left: 3px solid var(--accent-gold);
    padding: 20px 24px;
    margin-top: 20px;
    font-size: 0.82rem;
    color: var(--neutral-light);
    line-height: 1.65;
    font-family: 'Merriweather', Georgia, serif;
    font-style: italic;
}

.footer-col h4 {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.875rem;
    color: var(--neutral-light);
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: var(--secondary);
    opacity: 1;
}

.footer-contact-detail {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.875rem;
    color: var(--neutral-light);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-contact-detail strong {
    color: var(--neutral-light);
    font-weight: 400;
    white-space: nowrap;
}

.footer-hours {
    background: rgba(127, 140, 141, 0.15);
    border: 1px solid var(--border-subtle);
    padding: 16px;
    margin-top: 16px;
}

.footer-hours p {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.82rem;
    color: var(--neutral-light);
    margin-bottom: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding: 24px 48px;
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom-left {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.82rem;
    color: var(--neutral-mid);
}

.footer-bottom-msg {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.82rem;
    color: var(--accent-gold);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-wrapper {
    background: #1a2530;
}


/* ─── PAGE WRAPPER ─── */

.page-content {
    padding-top: 72px;
}


/* ─── HERO ─── */

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--primary);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(44, 62, 80, 0.3) 0%,
        rgba(44, 62, 80, 0.55) 40%,
        rgba(44, 62, 80, 0.88) 80%,
        rgba(44, 62, 80, 1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 80px 48px 120px 48px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.hero-eyebrow {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--accent-gold);
}

.hero h1 {
    max-width: 860px;
    margin-bottom: 28px;
    color: var(--secondary);
}

.hero-lead {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.1rem;
    color: var(--neutral-light);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-disclaimer {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.78rem;
    color: var(--neutral-mid);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
    max-width: 600px;
}


/* ─── CTA BUTTONS ─── */

.cta-btn {
    display: inline-block;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 16px 36px;
    border: 2px solid var(--accent-gold);
    color: var(--primary);
    background: var(--accent-gold);
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
    text-decoration: none;
}

.cta-btn:hover {
    background: transparent;
    color: var(--accent-gold);
    opacity: 1;
}

.cta-btn--outline {
    background: transparent;
    color: var(--accent-gold);
}

.cta-btn--outline:hover {
    background: var(--accent-gold);
    color: var(--primary);
    opacity: 1;
}

.cta-btn--secondary {
    border-color: var(--neutral-light);
    background: transparent;
    color: var(--secondary);
}

.cta-btn--secondary:hover {
    background: var(--secondary);
    color: var(--primary);
    opacity: 1;
}


/* ─── CONCEPT PANEL SECTION ─── */

.concept-panel {
    padding: 120px 0;
    background: var(--primary);
}

.concept-panel-header {
    text-align: center;
    margin-bottom: 72px;
}

.concept-panel-header h2 {
    margin-bottom: 16px;
}

.concept-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.concept-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-subtle);
    padding: 40px 32px;
    transition: background 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}

.concept-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--accent-gold);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.concept-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(189, 195, 199, 0.4);
}

.concept-card:hover::before {
    transform: scaleY(1);
}

.concept-card-num {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.concept-card h3 {
    margin-bottom: 16px;
    font-size: 1.15rem;
}

.concept-card p {
    font-size: 0.9rem;
    color: var(--neutral-light);
    line-height: 1.7;
    margin-bottom: 0;
}


/* ─── TWO COLUMN SECTION ─── */

.two-col-section {
    padding: 120px 0;
}

.two-col-section--alt {
    background: rgba(255,255,255,0.03);
}

.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.two-col-grid--reverse .two-col-image {
    order: 2;
}

.two-col-grid--reverse .two-col-text {
    order: 1;
}

.two-col-image {
    position: relative;
}

.two-col-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.two-col-image-caption {
    background: var(--primary);
    border-left: 3px solid var(--accent-gold);
    padding: 16px 20px;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.82rem;
    color: var(--neutral-mid);
    letter-spacing: 0.05em;
}

.two-col-text .eyebrow {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.two-col-text h2 {
    margin-bottom: 24px;
}

.two-col-text p {
    color: var(--neutral-light);
    font-size: 0.97rem;
}

.two-col-text .read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-top: 28px;
    transition: gap 0.25s ease;
}

.two-col-text .read-more::after {
    content: '→';
    transition: transform 0.25s ease;
}

.two-col-text .read-more:hover {
    gap: 14px;
    opacity: 1;
}


/* ─── FULL-WIDTH ACCENT SECTION ─── */

.accent-section {
    position: relative;
    padding: 0;
    overflow: hidden;
    min-height: 540px;
    display: flex;
    align-items: center;
}

.accent-section-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.accent-section-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accent-section-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(44, 62, 80, 0.82);
}

.accent-section-content {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 100px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.accent-section-quote {
    border-left: 4px solid var(--accent-purple);
    padding-left: 32px;
}

.accent-section-quote blockquote {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--secondary);
    line-height: 1.75;
    margin-bottom: 20px;
}

.accent-section-quote cite {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--neutral-mid);
    font-style: normal;
}


/* ─── LISTICLE SECTIONS ─── */

.listicle-section {
    padding: 120px 0;
}

.listicle-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    padding: 48px 0;
    border-bottom: 1px solid var(--border-subtle);
    align-items: start;
}

.listicle-item:first-child {
    border-top: 1px solid var(--border-subtle);
}

.listicle-num {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(243, 156, 18, 0.2);
    line-height: 1;
    padding-top: 4px;
    user-select: none;
}

.listicle-body h3 {
    margin-bottom: 16px;
    color: var(--secondary);
}

.listicle-body p {
    font-size: 0.97rem;
    color: var(--neutral-light);
}

.listicle-body ul {
    margin-top: 12px;
}

.listicle-body ul li {
    color: var(--neutral-light);
    font-size: 0.9rem;
}


/* ─── TABLE SECTION ─── */

.table-section {
    padding: 100px 0;
    background: rgba(0,0,0,0.15);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.92rem;
}

.info-table thead th {
    background: var(--accent-gold);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 20px;
    text-align: left;
}

.info-table tbody tr {
    border-bottom: 1px solid var(--border-subtle);
    transition: background 0.2s ease;
}

.info-table tbody tr:hover {
    background: rgba(255,255,255,0.04);
}

.info-table tbody td {
    padding: 16px 20px;
    color: var(--neutral-light);
    vertical-align: top;
}

.info-table tbody td:first-child {
    color: var(--secondary);
    font-weight: 700;
    white-space: nowrap;
}


/* ─── STAT STRIP ─── */

.stat-strip {
    background: var(--neutral-mid);
    padding: 56px 48px;
}

.stat-strip-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 24px;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    opacity: 0.75;
}


/* ─── GLOSSARY ─── */

.glossary-section {
    padding: 120px 0;
    background: rgba(155, 89, 182, 0.06);
    border-top: 1px solid rgba(155, 89, 182, 0.2);
    border-bottom: 1px solid rgba(155, 89, 182, 0.2);
}

.glossary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-top: 56px;
}

.glossary-term {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-subtle);
    padding: 32px;
    transition: background 0.25s ease;
}

.glossary-term:hover {
    background: rgba(155, 89, 182, 0.08);
}

.glossary-term-title {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-purple);
    margin-bottom: 12px;
}

.glossary-term h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--secondary);
}

.glossary-term p {
    font-size: 0.88rem;
    color: var(--neutral-light);
    margin-bottom: 0;
    line-height: 1.7;
}


/* ─── WIDE IMAGE SECTION ─── */

.wide-image-section {
    position: relative;
    height: 480px;
    overflow: hidden;
}

.wide-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.wide-image-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(44,62,80,0.7) 0%, rgba(44,62,80,0.1) 60%, rgba(44,62,80,0.0) 100%);
}

.wide-image-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 0 48px;
    max-width: var(--container-max);
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.wide-image-overlay-text {
    max-width: 480px;
}

.wide-image-overlay-text h2 {
    margin-bottom: 16px;
}

.wide-image-overlay-text p {
    color: var(--neutral-light);
    font-size: 0.95rem;
    max-width: 380px;
}


/* ─── FAQ ─── */

.faq-section {
    padding: 120px 0;
}

.faq-list {
    margin-top: 56px;
}

.faq-item {
    border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    cursor: pointer;
    user-select: none;
    gap: 24px;
}

.faq-question h3 {
    font-size: 1.05rem;
    color: var(--secondary);
    font-weight: 700;
    transition: color 0.2s ease;
}

.faq-question:hover h3 {
    color: var(--accent-gold);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 1.1rem;
    color: var(--accent-gold);
    transition: background 0.2s ease, transform 0.3s ease;
}

.faq-item.open .faq-icon {
    background: var(--accent-gold);
    color: var(--primary);
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 0 28px 0;
}

.faq-answer.open {
    display: block;
}

.faq-answer p {
    color: var(--neutral-light);
    font-size: 0.95rem;
    line-height: 1.75;
}


/* ─── CARDS GRID ─── */

.cards-grid-section {
    padding: 120px 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.info-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover {
    border-color: rgba(243, 156, 18, 0.35);
    box-shadow: var(--shadow-card);
}

.info-card-image {
    height: 220px;
    overflow: hidden;
}

.info-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.info-card:hover .info-card-image img {
    transform: scale(1.03);
}

.info-card-body {
    padding: 28px 24px;
}

.info-card-tag {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.info-card-body h3 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: var(--secondary);
}

.info-card-body p {
    font-size: 0.88rem;
    color: var(--neutral-light);
    line-height: 1.65;
    margin-bottom: 0;
}


/* ─── INFORMATION DISCLAIMER BLOCK ─── */

.info-disclaimer-block {
    background: rgba(243, 156, 18, 0.06);
    border: 1px solid rgba(243, 156, 18, 0.2);
    border-left: 4px solid var(--accent-gold);
    padding: 32px 40px;
    margin: 64px 0;
}

.info-disclaimer-block h4 {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 14px;
}

.info-disclaimer-block p {
    font-size: 0.88rem;
    color: var(--neutral-light);
    line-height: 1.7;
    margin-bottom: 8px;
}

.info-disclaimer-block p:last-child {
    margin-bottom: 0;
}


/* ─── POLICY PAGES ─── */

.policy-page {
    padding: 80px 0 120px 0;
}

.policy-hero {
    background: rgba(0,0,0,0.2);
    border-bottom: 1px solid var(--border-subtle);
    padding: 80px 48px;
    margin-bottom: 80px;
}

.policy-hero-inner {
    max-width: 960px;
    margin: 0 auto;
}

.policy-hero h1 {
    margin-bottom: 16px;
}

.policy-hero .policy-meta {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.82rem;
    color: var(--neutral-mid);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.policy-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 48px;
}

.policy-section {
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--border-subtle);
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section h2 {
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-subtle);
}

.policy-section p {
    color: var(--neutral-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

.policy-section ul, .policy-section ol {
    margin-top: 12px;
}

.policy-section ul li, .policy-section ol li {
    color: var(--neutral-light);
    font-size: 0.92rem;
    line-height: 1.75;
}


/* ─── ABOUT PAGE ─── */

.about-two-col {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 64px;
    align-items: start;
    padding: 80px 48px 120px 48px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.about-sidebar {
    position: sticky;
    top: 100px;
}

.about-sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.about-sidebar-nav li {
    margin-bottom: 0;
}

.about-sidebar-nav li a {
    display: block;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--neutral-light);
    padding: 14px 20px;
    border-left: 3px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.about-sidebar-nav li a:hover,
.about-sidebar-nav li a.active {
    color: var(--accent-gold);
    border-left-color: var(--accent-gold);
    background: rgba(243, 156, 18, 0.06);
    opacity: 1;
}

.about-sidebar img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    margin-top: 8px;
}

.about-main h1 {
    margin-bottom: 20px;
}

.about-main h2 {
    margin-top: 56px;
    margin-bottom: 20px;
    color: var(--accent-gold);
    font-size: 1.3rem;
}

.about-main h2:first-child {
    margin-top: 0;
}

.about-main p {
    color: var(--neutral-light);
    font-size: 0.97rem;
}

.about-main ul, .about-main ol {
    margin-top: 12px;
    margin-bottom: 16px;
}

.about-main li {
    color: var(--neutral-light);
    font-size: 0.95rem;
    line-height: 1.75;
}


/* ─── CONTACT PAGE ─── */

.contact-page-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 80px 48px 120px 48px;
}

.contact-info-block {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-subtle);
    padding: 40px;
    margin-bottom: 48px;
}

.contact-info-block h2 {
    margin-bottom: 24px;
    font-size: 1.3rem;
    color: var(--accent-gold);
}

.contact-detail-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-subtle);
}

.contact-detail-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-detail-label {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--neutral-mid);
    min-width: 100px;
    padding-top: 2px;
}

.contact-detail-value {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 0.92rem;
    color: var(--secondary);
}

.contact-hours-block {
    background: rgba(127, 140, 141, 0.12);
    border: 1px solid var(--border-subtle);
    padding: 24px 32px;
    margin-top: 24px;
}

.contact-hours-block p {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.85rem;
    color: var(--neutral-light);
    margin-bottom: 6px;
}

.contact-form-block {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-subtle);
    padding: 40px;
}

.contact-form-block h2 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.form-disclaimer {
    font-family: 'Merriweather', Georgia, serif;
    font-style: italic;
    font-size: 0.82rem;
    color: var(--neutral-mid);
    line-height: 1.65;
    margin-bottom: 32px;
    padding: 16px 20px;
    border-left: 3px solid var(--neutral-mid);
    background: rgba(0,0,0,0.15);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--neutral-light);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-subtle);
    color: var(--secondary);
    font-family: 'Merriweather', Georgia, serif;
    font-size: 0.9rem;
    padding: 14px 18px;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-gold);
    background: rgba(255,255,255,0.09);
}

.form-group textarea {
    min-height: 160px;
}


/* ─── THANK YOU PAGE ─── */

.thankyou-page {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 48px;
}

.thankyou-block {
    text-align: center;
    max-width: 560px;
}

.thankyou-icon {
    width: 72px;
    height: 72px;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px auto;
    font-size: 2rem;
    color: var(--accent-gold);
    font-family: 'Lato', Arial, sans-serif;
    font-weight: 300;
}

.thankyou-block h1 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.thankyou-block p {
    color: var(--neutral-light);
    font-size: 0.95rem;
    margin-bottom: 12px;
}


/* ─── COOKIE BANNER ─── */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #1a2530;
    border-top: 1px solid var(--border-subtle);
    padding: 20px 48px;
    display: none;
}

.cookie-banner.visible {
    display: block;
}

.cookie-banner-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.85rem;
    color: var(--neutral-light);
    line-height: 1.6;
    flex: 1 1 auto;
    min-width: 240px;
}

.cookie-banner-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 22px;
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    background: transparent;
    color: var(--neutral-light);
}

.cookie-btn--accept {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary);
}

.cookie-btn--accept:hover {
    background: #d68910;
    border-color: #d68910;
}

.cookie-btn--reject:hover {
    background: rgba(255,255,255,0.08);
    color: var(--secondary);
}

.cookie-btn--more {
    font-size: 0.78rem;
    color: var(--accent-gold);
    border-color: transparent;
    background: transparent;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-btn--more:hover {
    background: transparent;
    color: var(--secondary);
}


/* ─── TIMELINE ─── */

.timeline-section {
    padding: 120px 0;
    background: rgba(0,0,0,0.1);
}

.timeline {
    position: relative;
    margin-top: 64px;
    padding-left: 48px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--border-subtle);
}

.timeline-entry {
    position: relative;
    padding: 0 0 56px 48px;
}

.timeline-entry::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 6px;
    width: 12px;
    height: 12px;
    background: var(--accent-gold);
    border-radius: 50%;
    border: 2px solid var(--primary);
}

.timeline-year {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.timeline-entry h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.timeline-entry p {
    font-size: 0.9rem;
    color: var(--neutral-light);
    max-width: 640px;
}


/* ─── SECTION HEADERS ─── */

.section-header {
    margin-bottom: 64px;
}

.section-header .eyebrow {
    font-family: 'Lato', Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 14px;
}

.section-header h2 {
    max-width: 640px;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--neutral-light);
    font-size: 0.97rem;
    max-width: 560px;
}

.section-header--center {
    text-align: center;
}

.section-header--center h2,
.section-header--center p {
    margin-left: auto;
    margin-right: auto;
}


/* ─── RESPONSIVE ─── */

@media (max-width: 1200px) {
    .concept-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .stat-strip-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .glossary-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .container, .header-inner {
        padding-left: 32px;
        padding-right: 32px;
    }

    .two-col-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .two-col-grid--reverse .two-col-image,
    .two-col-grid--reverse .two-col-text {
        order: unset;
    }

    .accent-section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-two-col {
        grid-template-columns: 1fr;
        padding-left: 32px;
        padding-right: 32px;
    }

    .about-sidebar {
        position: static;
        display: flex;
        gap: 32px;
        align-items: flex-start;
    }

    .about-sidebar img {
        width: 240px;
        height: 180px;
        flex-shrink: 0;
    }

    .about-sidebar-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .header-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: rgba(26, 37, 48, 0.98);
        flex-direction: column;
        padding: 16px 0;
        border-bottom: 1px solid var(--border-subtle);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav li {
        width: 100%;
    }

    .main-nav li a {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        padding: 60px 20px 80px 20px;
    }

    .hero {
        min-height: 80vh;
    }

    .concept-cards-grid {
        grid-template-columns: 1fr;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        padding: 0 20px 48px 20px;
    }

    .footer-bottom {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .stat-strip {
        padding: 40px 20px;
    }

    .stat-strip-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .cookie-banner {
        padding: 16px 20px;
    }

    .cookie-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cookie-banner-actions {
        flex-wrap: wrap;
    }

    .policy-content {
        padding: 0 20px;
    }

    .policy-hero {
        padding: 60px 20px;
    }

    .contact-page-inner {
        padding: 60px 20px 80px 20px;
    }

    .two-col-image img {
        height: 320px;
    }

    .concept-panel {
        padding: 80px 0;
    }

    .two-col-section {
        padding: 80px 0;
    }

    .listicle-section {
        padding: 80px 0;
    }

    .listicle-item {
        grid-template-columns: 56px 1fr;
        gap: 24px;
    }

    .listicle-num {
        font-size: 2.5rem;
    }

    .accent-section-content {
        padding: 60px 20px;
    }

    .about-sidebar {
        flex-direction: column;
    }

    .about-sidebar img {
        width: 100%;
        height: 240px;
    }

    .about-two-col {
        padding: 60px 20px 80px 20px;
    }
}

@media (max-width: 480px) {
    .stat-strip-inner {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .concept-card {
        padding: 28px 20px;
    }
}
