/* ==========================================================================
   Punjab Archery Association — design system
   ========================================================================== */
:root {
    --bg: #f5f2ea;
    --bg-alt: #ece6d8;
    --surface: #ffffff;
    --surface-2: #faf8f2;
    --ink: #15211b;
    --ink-soft: #44574d;
    --ink-faint: #6f7e75;
    --green: #0f3d2e;
    --green-600: #16553f;
    --green-400: #2c7a5b;
    --gold: #b8860b;
    --gold-soft: #d8b14e;
    --gold-tint: #f3e6c4;
    --accent: #c0392b;
    --line: rgba(15, 61, 46, 0.12);
    --line-soft: rgba(15, 61, 46, 0.07);

    --font-sans: "Outfit", system-ui, -apple-system, sans-serif;
    --font-display: "Instrument Serif", Georgia, serif;

    --shadow-sm: 0 1px 2px rgba(15, 61, 46, 0.06), 0 2px 8px rgba(15, 61, 46, 0.05);
    --shadow-md: 0 10px 30px -12px rgba(15, 61, 46, 0.25);
    --shadow-lg: 0 24px 60px -20px rgba(15, 61, 46, 0.35);

    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 26px;
    --max: 74rem;
    --max-prose: 44rem;
    --header-h: 4.5rem;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    line-height: 1.65;
    color: var(--ink);
    background: var(--bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 { font-weight: 600; line-height: 1.12; color: var(--ink); }

a { color: var(--green-600); text-underline-offset: 0.2em; text-decoration-thickness: 1px; }
a:hover { color: var(--green-400); }

::selection { background: var(--gold-soft); color: var(--green); }

:focus-visible {
    outline: 3px solid var(--gold-soft);
    outline-offset: 2px;
    border-radius: 4px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0.5rem;
    padding: 0.6rem 1.1rem;
    background: var(--green);
    color: #fff;
    z-index: 1000;
    border-radius: 8px;
}
.skip-link:focus { left: 0.75rem; }

/* ------------------------------------------------------------- layout */
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding-inline: 1.5rem; }

.section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section-tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section-alt { background: var(--bg-alt); }

.section-head { max-width: 42rem; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }
.section-head h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 2.9rem);
    margin: 0.4rem 0 0.6rem;
    letter-spacing: -0.01em;
}
.section-head p { color: var(--ink-soft); font-size: 1.08rem; margin: 0; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}
.eyebrow::before {
    content: "";
    width: 1.6rem;
    height: 2px;
    background: var(--gold-soft);
}
.section-head.center .eyebrow,
.section-head:not(.left) .eyebrow { justify-content: center; }

/* ------------------------------------------------------------- buttons */
.btn {
    --btn-bg: var(--green);
    --btn-fg: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    font: inherit;
    font-weight: 600;
    font-size: 0.98rem;
    line-height: 1;
    border: 1px solid transparent;
    border-radius: 999px;
    background: var(--btn-bg);
    color: var(--btn-fg);
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }
.btn-primary { --btn-bg: var(--green); --btn-fg: #fff; }
.btn-primary:hover { background: var(--green-600); }
.btn-gold { --btn-bg: var(--gold); --btn-fg: #1c1403; }
.btn-gold:hover { background: var(--gold-soft); }
.btn-secondary {
    --btn-bg: transparent;
    --btn-fg: var(--green);
    border-color: var(--line);
    background: var(--surface);
}
.btn-secondary:hover { background: var(--surface); border-color: var(--green-400); color: var(--green); }
.btn-ghost { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); color: #fff; }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.9rem; }

/* ------------------------------------------------------------- header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(245, 242, 234, 0.85);
    border-bottom: 1px solid var(--line-soft);
}
/* Blur on a pseudo-element so fixed mobile nav is not trapped in the header box */
.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    backdrop-filter: saturate(1.4) blur(14px);
    pointer-events: none;
}
.header-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0.6rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; color: inherit; }
.brand:hover { color: inherit; }
.brand-mark--logo img { height: 2.35rem; width: auto; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-weight: 700; font-size: 1.02rem; color: var(--green); letter-spacing: -0.01em; }
.brand-tagline { font-size: 0.82rem; color: var(--ink-faint); }

.site-nav { display: flex; align-items: center; gap: 1.75rem; }
.nav-list { display: flex; align-items: center; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.nav-list a {
    position: relative;
    font-weight: 500;
    font-size: 0.97rem;
    color: var(--ink-soft);
    text-decoration: none;
    padding: 0.35rem 0;
}
.nav-list a::after {
    content: "";
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.25s ease;
}
.nav-list a:hover { color: var(--green); }
.nav-list a:hover::after,
.nav-list a.is-active::after { width: 100%; }
.nav-list a.is-active { color: var(--green); font-weight: 600; }

.nav-cta { margin-left: 0.25rem; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 44px; height: 44px;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}
.nav-toggle-bar { width: 20px; height: 2px; background: var(--green); transition: transform 0.25s, opacity 0.2s; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
    .nav-toggle { display: flex; }
    .site-nav {
        position: fixed;
        inset: var(--header-h) 0 0 auto;
        z-index: 95;
        width: min(78vw, 320px);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 1.25rem;
        background: var(--surface);
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }
    .site-nav.is-open { transform: translateX(0); }
    .nav-list { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
    .nav-list a { padding: 0.9rem 0.25rem; border-bottom: 1px solid var(--line-soft); }
    .nav-list a::after { display: none; }
    .nav-cta { margin: 1rem 0 0; }
    .nav-cta .btn { width: 100%; }
    body.nav-open::after {
        content: "";
        position: fixed; inset: 0;
        background: rgba(15, 33, 27, 0.4);
        z-index: 90;
    }
}

/* ------------------------------------------------------------- hero */
.hero { position: relative; overflow: hidden; background: var(--green); color: #fff; }
.hero::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(900px 480px at 85% -10%, rgba(216, 177, 78, 0.28), transparent 60%),
        radial-gradient(700px 500px at 5% 110%, rgba(44, 122, 91, 0.5), transparent 55%);
}
.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    padding-block: clamp(3.5rem, 8vw, 6.5rem);
}
.hero .eyebrow { color: var(--gold-soft); }
.hero .eyebrow::before { background: var(--gold-soft); }
.hero h1 {
    font-family: var(--font-display);
    font-weight: 400;
    color: #fff;
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -0.015em;
    margin: 1rem 0 1.1rem;
}
.hero-lead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: rgba(255,255,255,0.82); max-width: 34rem; margin: 0 0 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 2.75rem; }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--gold-soft); line-height: 1; }
.hero-stat span { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }

.hero-logo-frame {
    position: relative;
    padding: clamp(1.1rem, 2.5vw, 1.75rem) clamp(1.35rem, 3vw, 2rem);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(165deg, #fffef8 0%, var(--gold-tint) 48%, #f5e8c8 100%);
    border: 1px solid rgba(216, 177, 78, 0.5);
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    animation: floaty 6s ease-in-out infinite;
}
.hero-logo-frame::before {
    content: "";
    position: absolute;
    inset: -18%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 177, 78, 0.22), transparent 68%);
    z-index: -1;
    pointer-events: none;
}
.hero-logo {
    width: min(280px, 64vw);
    height: auto;
    display: block;
}
@keyframes floaty { 0%,100% { transform: translateY(-6px); } 50% { transform: translateY(6px); } }
@media (prefers-reduced-motion: reduce) { .hero-logo-frame { animation: none; } }

@media (max-width: 820px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { order: -1; margin-bottom: 0.5rem; }
    .hero-logo { width: min(200px, 52vw); }
    .hero-logo-frame { padding: 1rem 1.15rem; }
}

/* ------------------------------------------------------------- cards grid */
.cards { display: grid; gap: 1.5rem; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 880px) { .cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cols-2, .cols-3 { grid-template-columns: 1fr; } }

.card {
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line); }
.card h3 { font-size: 1.2rem; margin: 0.85rem 0 0.5rem; }
.card p { color: var(--ink-soft); margin: 0; }
.card-icon {
    width: 2.9rem; height: 2.9rem;
    padding: 0.6rem;
    border-radius: 12px;
    color: var(--green);
    background: var(--gold-tint);
}

/* ------------------------------------------------------------- stats band */
.stats { background: var(--green); color: #fff; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-block: clamp(2.5rem, 5vw, 3.5rem);
}
.stat { text-align: center; padding: 0.5rem; }
.stat strong { display: block; font-family: var(--font-display); font-size: 1.7rem; color: var(--gold-soft); }
.stat span { color: rgba(255,255,255,0.78); font-size: 0.95rem; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: 1fr; gap: 1rem; } }

/* ------------------------------------------------------------- split */
.split { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(2rem, 5vw, 3.5rem); }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------- page header */
.page-header {
    background: linear-gradient(180deg, var(--bg-alt), var(--bg));
    border-bottom: 1px solid var(--line-soft);
    padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
.page-header .eyebrow { margin-bottom: 0.75rem; }
.page-header h1 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.3rem, 5vw, 3.6rem);
    letter-spacing: -0.015em;
    margin: 0 0 0.75rem;
}
.page-header p { color: var(--ink-soft); font-size: 1.1rem; max-width: 44rem; margin: 0; }

/* ------------------------------------------------------------- prose */
.prose { max-width: var(--max-prose); }
.prose h2 { font-family: var(--font-display); font-weight: 400; font-size: 1.9rem; margin: 2.2rem 0 0.8rem; }
.prose h3 { font-size: 1.3rem; margin: 1.8rem 0 0.6rem; }
.prose p { margin: 0 0 1.1rem; color: #28342d; }
.prose ul, .prose ol { margin: 0 0 1.2rem; padding-left: 1.3rem; }
.prose li { margin-bottom: 0.5rem; }
.prose img { border-radius: var(--radius); margin: 1.5rem 0; box-shadow: var(--shadow-sm); }
.prose a { color: var(--green-600); }
.prose blockquote {
    margin: 1.5rem 0;
    padding: 0.6rem 1.4rem;
    border-left: 4px solid var(--gold-soft);
    background: var(--surface-2);
    border-radius: 0 12px 12px 0;
    color: var(--ink-soft);
    font-style: italic;
}
.prose code {
    background: var(--bg-alt);
    padding: 0.15em 0.4em;
    border-radius: 6px;
    font-size: 0.9em;
}

/* ------------------------------------------------------------- blog list */
.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.75rem;
}
.post-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.post-card-media {
    position: relative;
    aspect-ratio: 16 / 9;
    background:
        linear-gradient(135deg, hsl(var(--hue, 150) 38% 26%), hsl(calc(var(--hue, 150) + 35) 45% 18%));
    display: grid;
    place-items: center;
    overflow: hidden;
}
.post-card-media img { width: 100%; height: 100%; object-fit: cover; }
.post-card-media img.post-img--logo,
.article-figure img.post-img--logo {
    object-fit: contain;
    padding: clamp(1rem, 4vw, 2rem);
    background: linear-gradient(160deg, var(--bg-alt), var(--surface));
}
.post-feature .post-card-media img.post-img--logo { padding: clamp(1.25rem, 5vw, 2.5rem); }
.post-card-tag {
    position: absolute;
    top: 0.9rem; left: 0.9rem;
    background: rgba(255,255,255,0.92);
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
}
.post-card-body { display: flex; flex-direction: column; gap: 0.6rem; padding: 1.4rem 1.5rem 1.6rem; flex: 1; }
.post-meta { display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; font-size: 0.82rem; color: var(--ink-faint); }
.post-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-faint); }
.post-card-title { font-size: 1.25rem; line-height: 1.25; margin: 0; }
.post-card-title a { color: var(--ink); text-decoration: none; }
.post-card-title a:hover { color: var(--green-600); }
.post-card-excerpt { color: var(--ink-soft); margin: 0; flex: 1; }
.post-card-more { font-weight: 600; font-size: 0.92rem; color: var(--green-600); text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; }
.post-card-more::after { content: "→"; transition: transform 0.2s; }
.post-card-more:hover::after { transform: translateX(4px); }

/* featured first post */
.post-feature {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}
.post-feature .post-card-media { aspect-ratio: auto; min-height: 280px; }
.post-feature .post-card-body { padding: clamp(1.5rem, 4vw, 2.75rem); justify-content: center; }
.post-feature .post-card-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-family: var(--font-display); font-weight: 400; }
@media (max-width: 760px) { .post-feature { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------- pagination */
.pagination { display: flex; justify-content: center; gap: 0.4rem; margin-top: 3rem; flex-wrap: wrap; }
.page-link {
    min-width: 2.5rem;
    padding: 0.55rem 0.9rem;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--ink-soft);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    text-align: center;
}
.page-link:hover { border-color: var(--green-400); color: var(--green); }
.page-link.is-current { background: var(--green); color: #fff; border-color: var(--green); }
.page-link.is-disabled { opacity: 0.4; pointer-events: none; }

/* ------------------------------------------------------------- article */
.article-hero { background: linear-gradient(180deg, var(--bg-alt), var(--bg)); border-bottom: 1px solid var(--line-soft); }
.article-head { max-width: var(--max-prose); margin: 0 auto; padding-block: clamp(2.5rem, 5vw, 3.5rem); text-align: center; }
.breadcrumb { font-size: 0.85rem; color: var(--ink-faint); margin-bottom: 1rem; }
.breadcrumb a { color: var(--ink-soft); }
.article-head h1 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.015em;
    margin: 0.5rem 0 1rem;
}
.article-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; align-items: center; color: var(--ink-faint); font-size: 0.92rem; }
.article-cat {
    background: var(--gold-tint);
    color: #7a5a05;
    font-weight: 700;
    font-size: 0.74rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
}
.article-figure { max-width: 64rem; margin: -2rem auto 0; padding-inline: 1.5rem; }
.article-figure img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    aspect-ratio: 16/7;
    object-fit: cover;
}
.article-body { max-width: var(--max-prose); margin: 0 auto; }
.references {
    margin-top: 2.5rem;
    padding: 1.5rem 1.75rem;
    background: var(--surface-2);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
}
.references h2 { font-family: var(--font-sans); font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-faint); margin: 0 0 0.75rem; }
.references ul { margin: 0; padding-left: 1.2rem; font-size: 0.95rem; }
.references li { margin-bottom: 0.5rem; color: var(--ink-soft); }

.article-back { margin-top: 2rem; }
.article-back a { font-weight: 600; text-decoration: none; }

/* related */
.related { border-top: 1px solid var(--line-soft); background: var(--surface-2); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 820px) { .related-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------- events */
.event-list { display: grid; gap: 1rem; }
.event-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.25rem;
    align-items: center;
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-sm);
}
.event-date {
    text-align: center;
    background: var(--green);
    color: #fff;
    border-radius: 12px;
    padding: 0.6rem 0.9rem;
    min-width: 4rem;
}
.event-date .d { display: block; font-family: var(--font-display); font-size: 1.7rem; line-height: 1; }
.event-date .m { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-soft); }
.event-info h3 { font-size: 1.15rem; margin: 0 0 0.3rem; }
.event-info p { margin: 0; color: var(--ink-faint); font-size: 0.9rem; }
.event-badge {
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    white-space: nowrap;
}
.event-badge.open { background: #d8f3e3; color: #146a45; }
.event-badge.soon { background: var(--gold-tint); color: #7a5a05; }
.event-badge.closed { background: #f0e1df; color: #9a3b30; }
@media (max-width: 620px) {
    .event-card { grid-template-columns: auto 1fr; }
    .event-badge { grid-column: 2; justify-self: start; }
}

/* ------------------------------------------------------------- CTA band */
.cta-band { background: var(--green); color: #fff; }
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    padding-block: clamp(2.5rem, 5vw, 3.5rem);
}
.cta-inner h2 { font-family: var(--font-display); font-weight: 400; color: #fff; font-size: clamp(1.7rem, 3.5vw, 2.5rem); margin: 0 0 0.4rem; }
.cta-inner p { color: rgba(255,255,255,0.8); margin: 0; max-width: 34rem; }

/* ------------------------------------------------------------- forms */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 2.5rem; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-box {
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    padding: clamp(1.5rem, 4vw, 2.25rem);
    box-shadow: var(--shadow-sm);
}
.contact-box h2 { font-size: 1.4rem; margin: 0 0 1.25rem; }
.contact-list { margin: 0; display: grid; gap: 1.1rem; }
.contact-list dt { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-faint); margin-bottom: 0.2rem; }
.contact-list dd { margin: 0; font-weight: 500; }

.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.4rem; }
input, select, textarea {
    width: 100%;
    font: inherit;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface-2);
    color: var(--ink);
    transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--green-400);
    box-shadow: 0 0 0 3px rgba(44, 122, 91, 0.15);
}
textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--ink-faint); margin-top: 0.75rem; }

.alert { padding: 0.85rem 1.1rem; border-radius: 10px; margin-bottom: 1.25rem; font-size: 0.95rem; }
.alert-error { background: #f7e2df; color: #9a3b30; border: 1px solid #e3b8b1; }
.alert-success { background: #d8f3e3; color: #146a45; border: 1px solid #aedcc4; }

/* ------------------------------------------------------------- footer */
.site-footer { margin-top: auto; background: #0c2c21; color: rgba(255,255,255,0.78); }
.footer-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: clamp(3rem, 6vw, 4.5rem) 1.5rem 2rem;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    align-items: start;
}
.footer-brand { max-width: 22rem; }
.footer-name {
    margin: 0 0 0.35rem;
    color: #fff;
    font-weight: 600;
    font-size: 1.12rem;
    line-height: 1.3;
}
.footer-tagline {
    margin: 0 0 0.85rem;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.4;
}
.footer-mission { margin: 0; font-size: 0.95rem; line-height: 1.6; }
.footer-col { min-width: 0; }
.footer-heading {
    margin: 0 0 1rem;
    color: #fff;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.2;
}
.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}
.footer-list a {
    color: var(--gold-soft);
    text-decoration: none;
    font-size: 0.97rem;
    transition: color 0.15s ease;
}
.footer-list a:hover { color: #fff; }
.footer-address {
    margin: 0 0 1.1rem;
    font-style: normal;
    font-size: 0.95rem;
    line-height: 1.55;
    display: grid;
    gap: 0.15rem;
}
.footer-address-line { display: block; }
.footer-list--contact { gap: 0.85rem; }
.footer-list--contact li { display: grid; gap: 0.15rem; }
.footer-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.45);
}
.footer-admin {
    margin: 1.25rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.88rem;
}
.footer-admin a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
}
.footer-admin a:hover { color: rgba(255,255,255,0.75); }
.footer-bottom {
    max-width: var(--max);
    margin: 0 auto;
    padding: 1.25rem 1.5rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem 2rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
}
.footer-bottom p { margin: 0; }
.copyright { color: rgba(255,255,255,0.85); }
.footer-meta { color: rgba(255,255,255,0.45); text-align: right; }
@media (max-width: 900px) {
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; max-width: 32rem; }
}
@media (max-width: 560px) {
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-meta { text-align: left; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ------------------------------------------------------------- utilities */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.muted { color: var(--ink-faint); }
.empty-state { text-align: center; padding: 3rem 1rem; color: var(--ink-faint); }
