:root {
    --ink: #1d1b23;
    --muted: #64606d;
    --paper: #fffdf9;
    --soft: #f5eef8;
    --soft2: #eef7f1;
    --orchid: #7a2f8f;
    --orchid-dark: #51215f;
    --leaf: #2f6846;
    --line: #ded6e4;
    --shadow: 0 12px 30px rgba(29, 27, 35, .12);
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
    color: var(--ink);
    background: var(--paper);
}

a { color: var(--orchid-dark); }
a:hover { color: var(--leaf); }

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

.wrap {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
}
.skip-link:focus {
    left: 1rem;
    top: 1rem;
    background: white;
    padding: .5rem;
    z-index: 999;
}

.site-header {
    border-bottom: 1px solid var(--line);
    background: rgba(255,253,249,.96);
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 78px;
}

.brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
    color: var(--ink);
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--orchid), #d59ce8);
    color: white;
    font-weight: 800;
    letter-spacing: .04em;
}

.brand strong { display: block; font-size: 1.08rem; }
.brand em { display: block; color: var(--muted); font-style: normal; font-size: .88rem; }

.site-nav {
    display: flex;
    gap: .3rem;
    align-items: center;
    flex-wrap: wrap;
}

.site-nav a {
    padding: .55rem .72rem;
    border-radius: 999px;
    text-decoration: none;
    color: var(--ink);
    font-weight: 650;
    font-size: .95rem;
}

.site-nav a.active, .site-nav a:hover {
    background: var(--soft);
    color: var(--orchid-dark);
}

.nav-toggle {
    display: none;
    border: 1px solid var(--line);
    background: white;
    border-radius: 999px;
    padding: .5rem .8rem;
    font-weight: 700;
}

.hero {
    padding: 4.5rem 0 3.5rem;
    background:
        radial-gradient(circle at 82% 18%, rgba(213,156,232,.55), transparent 30%),
        linear-gradient(135deg, var(--soft), var(--soft2));
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 2rem;
    align-items: center;
}

.eyebrow {
    color: var(--leaf);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .82rem;
}

h1, h2, h3 {
    line-height: 1.15;
    margin: 0 0 .7rem;
}

h1 { font-size: clamp(2.2rem, 7vw, 4.8rem); letter-spacing: -.04em; }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); letter-spacing: -.02em; }
h3 { font-size: 1.25rem; }

.lede {
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    color: #403b47;
    max-width: 68ch;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.5rem;
}

.button {
    display: inline-block;
    border-radius: 999px;
    padding: .8rem 1rem;
    background: var(--orchid);
    color: white;
    text-decoration: none;
    font-weight: 800;
    border: 2px solid var(--orchid);
}

.button.secondary {
    background: white;
    color: var(--orchid-dark);
}

.card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 1.35rem;
    box-shadow: var(--shadow);
}

.section {
    padding: 3rem 0;
}

.grid {
    display: grid;
    gap: 1.1rem;
}

.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.two { grid-template-columns: repeat(2, 1fr); }

.notice {
    border-left: 5px solid var(--leaf);
    background: var(--soft2);
    padding: 1rem 1.2rem;
    border-radius: 16px;
}

.table-list {
    display: grid;
    gap: .8rem;
}

.item {
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1rem;
}

.item time {
    display: inline-block;
    font-weight: 800;
    color: var(--leaf);
}

.meta { color: var(--muted); }

.gallery-album {
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 1rem;
}

.photo-card {
    border: 1px solid var(--line);
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 16px rgba(29,27,35,.08);
}

.photo-card button {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.photo-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    background: var(--soft);
}

.caption {
    padding: .75rem;
    font-size: .92rem;
    color: #403b47;
    white-space: pre-line;
}

.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    background: rgba(0,0,0,.86);
    z-index: 100;
    padding: 1rem;
}

.lightbox.open { display: grid; }

.lightbox-inner {
    width: min(1100px, 100%);
    color: white;
    text-align: center;
}

.lightbox img {
    max-height: 78vh;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
}

.lightbox-caption {
    margin-top: .75rem;
    white-space: pre-line;
}

.lightbox button {
    position: fixed;
    border: 0;
    background: rgba(255,255,255,.16);
    color: white;
    border-radius: 999px;
    padding: .8rem 1rem;
    font-size: 1.1rem;
    cursor: pointer;
}

.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1rem; top: 50%; transform: translateY(-50%); }

.form-grid {
    display: grid;
    gap: 1rem;
    max-width: 720px;
}

label { font-weight: 800; display: block; margin-bottom: .25rem; }

input, textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: .8rem;
    font: inherit;
    background: white;
}

.help {
    font-size: .9rem;
    color: var(--muted);
}

.site-footer {
    margin-top: 3rem;
    padding: 2rem 0;
    background: var(--orchid-dark);
    color: white;
}

.site-footer a { color: white; }
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 780px) {
    .header-inner { align-items: flex-start; padding: .7rem 0; }
    .nav-toggle { display: inline-block; margin-top: .5rem; }
    .site-nav {
        display: none;
        position: absolute;
        left: 16px;
        right: 16px;
        top: 72px;
        background: white;
        border: 1px solid var(--line);
        border-radius: 18px;
        padding: .7rem;
        box-shadow: var(--shadow);
    }
    .site-nav.open { display: grid; }
    .site-nav a { border-radius: 12px; }
    .hero-grid, .grid.three, .grid.two, .footer-grid { grid-template-columns: 1fr; }
    .hero { padding-top: 2.5rem; }
    .lightbox-prev, .lightbox-next { top: auto; bottom: 1rem; transform: none; }
}
