/* JKS — simplified layout (replaces builder utility CSS) */

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://img1.wsimg.com/gfonts/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://img1.wsimg.com/gfonts/s/playfairdisplay/v40/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7l.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://img1.wsimg.com/gfonts/s/sourcesanspro/v23/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdu.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(https://img1.wsimg.com/gfonts/s/montserrat/v31/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --bg-page: #000;
    --bg-section: #161616;
    --text: #fff;
    --text-muted: #969696;
    --accent: #fff;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans Pro', arial, sans-serif;
    --font-ui: 'Montserrat', sans-serif;
}

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

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

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: var(--text);
    background: var(--bg-page);
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 10000;
    padding: 0.5rem 1rem;
    background: var(--accent);
    color: #000;
}

.skip-link:focus {
    left: 0;
}

/* Hero */
.hero {
    position: relative;
    min-height: min(85vh, 720px);
    display: flex;
    flex-direction: column;
    background-color: #111;
    background-image:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
        url("../images/hero.jpg");
    background-size: cover;
    background-position: center;
}

.hero-top {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1.25rem;
}

.logo {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--text);
}

.logo:hover {
    text-decoration: none;
    opacity: 0.9;
}

.hero-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1.25rem 4rem;
}

.tagline {
    margin: 0;
    max-width: 22ch;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 3.25rem);
    font-weight: 400;
    line-height: 1.2;
    text-shadow: none;
}

/* Contact */
.contact {
    padding: 3.5rem 1.25rem 4rem;
    background: var(--bg-section);
}

.contact-inner {
    max-width: 720px;
    margin: 0 auto;
}

.contact h2 {
    margin: 0 0 0.5rem;
    font-family: var(--font-ui);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact hr {
    width: 72px;
    margin: 0 0 2rem;
    border: none;
    border-top: 2px solid var(--text-muted);
}

.contact h3 {
    margin: 0 0 1.5rem;
    font-family: var(--font-ui);
    font-size: 1.125rem;
    font-weight: 600;
}

.form-notice {
    margin: 0 0 1.25rem;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-notice--sent {
    border-color: rgba(120, 200, 140, 0.6);
    background: rgba(40, 80, 50, 0.35);
}

.form-notice--error,
.form-notice--fail {
    border-color: rgba(220, 120, 100, 0.5);
    background: rgba(80, 30, 25, 0.35);
}

.field {
    margin-bottom: 1.25rem;
}

.field label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.field input,
.field textarea {
    width: 100%;
    padding: 0.5rem 0.65rem;
    font: inherit;
    color: var(--text);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0;
}

.field input:focus,
.field textarea:focus {
    outline: 1px solid var(--text-muted);
    outline-offset: 2px;
}

.field textarea {
    min-height: 8rem;
    resize: vertical;
}

.checkbox {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    margin: 1.5rem 0;
}

.checkbox input {
    margin-top: 0.35rem;
}

.checkbox p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.btn {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.65rem 1.75rem;
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #000;
    background: var(--accent);
    border: none;
    cursor: pointer;
}

.btn:hover {
    opacity: 0.92;
    text-decoration: none;
}

.legal {
    margin-top: 1.5rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.legal a {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    padding: 2rem 1.25rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.site-footer p {
    margin: 0;
}
