:root {
    --ink: #1d2a22;
    --pine: #1f4d3a;
    --pine-dark: #14352a;
    --gold: #c2972f;
    --cream: #f7f3ea;
    --line: #e3dccb;
}

* {
    box-sizing: border-box;
    margin: 0;
}

body {
    font-family: "Inter", system-ui, sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: "Cormorant Garamond", serif;
    color: var(--pine-dark);
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 1.1;
}

h2 {
    font-size: 2rem;
    margin-bottom: .75rem;
}

a {
    color: var(--pine);
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5vw;
    border-bottom: 1px solid var(--line);
    background: var(--cream);
    position: sticky;
    top: 0;
    z-index: 10;
}

.brand {
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    font-size: 1.3rem;
    text-decoration: none;
    color: var(--pine-dark);
}

.brand span {
    color: var(--gold);
    font-style: italic;
}

.site-header nav {
    display: flex;
    gap: 1.4rem;
    align-items: center;
}

.site-header nav a {
    text-decoration: none;
    font-weight: 500;
    font-size: .95rem;
}

.btn {
    display: inline-block;
    background: var(--pine);
    color: #fff;
    padding: .8rem 1.6rem;
    border: 0;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background .15s;
}

.btn:hover {
    background: var(--pine-dark);
}

.btn-small {
    padding: .5rem 1rem;
    font-size: .9rem;
}

.btn-ghost {
    background: transparent;
    color: var(--pine);
    border: 1.5px solid var(--pine);
}

.btn-ghost:hover {
    background: var(--pine);
    color: #fff;
}

.hero {
    padding: 14vh 5vw 10vh;
    max-width: 820px;
}

.kicker {
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .8rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.lede {
    font-size: 1.15rem;
    margin: 1.2rem 0 2rem;
    max-width: 56ch;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cards,
.about,
.cta {
    padding: 4rem 5vw;
}

.cards {
    background: #fff;
    border-block: 1px solid var(--line);
}

.grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid article {
    padding: 1.5rem;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--cream);
}

.grid h3 {
    margin-bottom: .4rem;
}

.about p {
    max-width: 64ch;
    margin-bottom: 1rem;
}

.cta {
    text-align: center;
    background: var(--pine-dark);
}

.cta h2,
.cta p {
    color: var(--cream);
}

.cta .btn {
    background: var(--gold);
    margin-top: 1rem;
}

.cta .btn:hover {
    background: #a87f22;
}

.form-wrap {
    max-width: 560px;
    margin: 0 auto;
    padding: 4rem 5vw;
}

.form-wrap.wide {
    max-width: 1100px;
}

.form-wrap.center {
    text-align: center;
}

form label {
    display: block;
    margin: 1rem 0;
    font-weight: 500;
    font-size: .95rem;
}

input,
select,
textarea {
    width: 100%;
    padding: .7rem .9rem;
    margin-top: .3rem;
    border: 1px solid var(--line);
    border-radius: 4px;
    font: inherit;
    background: #fff;
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--gold);
    border-color: transparent;
}

.checkline {
    display: flex;
    gap: .6rem;
    align-items: center;
    font-weight: 500;
}

.checkline input {
    width: auto;
    margin-top: 0;
}

.fineprint {
    font-size: .85rem;
    color: #5d6a61;
    margin-top: 1rem;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
}

.admin-table th,
.admin-table td {
    padding: .6rem;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.status-confirmed td {
    background: #eef6ee;
}

.status-declined td {
    opacity: .5;
}

.site-footer {
    padding: 2rem 5vw;
    text-align: center;
    font-size: .9rem;
    color: #5d6a61;
    border-top: 1px solid var(--line);
}

@media (max-width: 600px) {
    .hero {
        padding-top: 8vh;
    }
}