/* WedDrop base styles — reset, typography, layout scaffold. */

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

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

body {
    margin: 0;
    min-height: 100dvh;
    background: var(--bg);
    color: var(--fg);
    font-family: var(--font-sans);
    font-size: var(--fs-md);
    line-height: var(--lh-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
}

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

a {
    color: var(--link);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

a:hover {
    text-decoration-thickness: 2px;
}

:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
    border-radius: var(--radius-sm);
}

h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: var(--lh-tight);
    letter-spacing: -0.005em;
    margin: 0 0 var(--sp-4);
    color: var(--fg);
}

h1 { font-size: clamp(var(--fs-2xl), 4vw + 1rem, var(--fs-3xl)); font-weight: 400; }
h2 { font-size: var(--fs-xl); }
h3 { font-size: var(--fs-lg); }

p {
    margin: 0 0 var(--sp-4);
}

hr {
    border: 0;
    border-top: 1px solid var(--border);
    margin: var(--sp-6) 0;
}

.wrap {
    width: 100%;
    max-width: var(--wrap-max);
    margin: 0 auto;
    padding: 0 var(--sp-5);
}

.site-header {
    padding: var(--sp-5) 0;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
}

.site-header .brand {
    font-family: var(--font-serif);
    font-size: var(--fs-lg);
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--fg);
    text-decoration: none;
}

.site-main {
    flex: 1 0 auto;
    padding: var(--sp-8) 0;
}

.site-footer {
    padding: var(--sp-5) 0;
    border-top: 1px solid var(--border);
    color: var(--fg-muted);
    font-size: var(--fs-xs);
    text-align: center;
}

/* Hero — used on the M0 home page. */
.hero {
    max-width: 44rem;
    margin: 0 auto;
    text-align: center;
    padding: var(--sp-7) 0;
}

.hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: var(--fs-xs);
    color: var(--fg-muted);
    margin-bottom: var(--sp-5);
}

.hero__title {
    font-style: italic;
    margin-bottom: var(--sp-5);
}

.hero__lede {
    color: var(--fg-muted);
    font-size: var(--fs-md);
    max-width: 34rem;
    margin: 0 auto var(--sp-6);
}

.hero__ornament {
    font-family: var(--font-serif);
    color: var(--color-forest-soft);
    font-size: var(--fs-xl);
    line-height: 1;
    margin-top: var(--sp-6);
}
