@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    --paper: #f2ebdd;
    --ink: #231f20;
    --blue: #0e4a80;
    --yellow: #f1d600;
    --line: rgba(35, 31, 32, .22);
    --serif: 'Playfair Display', Georgia, serif;
    --display: 'Oswald', Impact, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--serif); font-size: 16px; line-height: 1.55; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.hero { display: grid; grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr); gap: clamp(48px, 8vw, 132px); align-items: start; max-width: 1240px; margin: 0 auto; padding: 8vw 6vw 10vw; min-height: 100vh; }
.hero-portrait-wrap { padding-top: 5vw; }
.hero-portrait { width: min(100%, 480px); margin: 0 auto; aspect-ratio: 1; object-fit: contain; }
.hero-copy { max-width: 690px; }
.brand-lockup { display: block; max-width: min(100%, 453px); }
.brand-title-image { width: 100%; height: auto; }
.hero-tagline { margin: 1.8rem 0 3.4rem 8%; font-family: var(--display); font-size: clamp(1.45rem, 2.4vw, 2.3rem); line-height: 1.22; text-transform: uppercase; }
.hero-tagline strong { font-weight: 600; }
.prose { font-size: clamp(1rem, 1.2vw, 1.16rem); }
.prose p { margin: 0 0 1.5rem; }

.section-shell { max-width: 1240px; margin: 0 auto; padding: clamp(76px, 10vw, 150px) 6vw; }
.section-heading { display: grid; grid-template-columns: minmax(180px, .55fr) minmax(0, 1fr); gap: 48px; align-items: start; margin-bottom: 56px; }
.section-heading h2, .newsletter h2, .review-section h2 { margin: 0; font-family: var(--display); font-size: clamp(2.6rem, 5.3vw, 5.3rem); font-weight: 500; line-height: 1.12; text-transform: uppercase; }
.eyebrow { margin: .3rem 0 0; color: var(--blue); font-family: var(--display); font-size: .95rem; letter-spacing: .14em; text-transform: uppercase; }
.inside-section { border-top: 1px solid var(--line); }
.inside-copy { max-width: 840px; margin: 0 0 62px auto; }
.spread-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.spread-grid figure { margin: 0; overflow: hidden; background: #fff; }
.spread-grid picture { display: block; width: 100%; aspect-ratio: 1191 / 765; overflow: hidden; }
.spread-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.spread-grid figure:hover img { transform: scale(1.025); }

.newsletter { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 72px max(6vw, calc((100vw - 1240px) / 2)); color: #fff; background: var(--blue); }
.newsletter .eyebrow { color: var(--yellow); }
.newsletter h2 { font-size: clamp(2.6rem, 5vw, 5rem); }
.newsletter-form label { display: block; max-width: 480px; margin-bottom: 1.1rem; font-size: 1.25rem; }
.newsletter-fields { display: flex; gap: 10px; }
.newsletter input, .newsletter button { min-height: 52px; border: 1px solid #fff; padding: .75rem 1rem; }
.newsletter input { flex: 1; min-width: 0; color: #fff; background: transparent; }
.newsletter input::placeholder { color: rgba(255,255,255,.72); }
.newsletter button { color: var(--blue); background: var(--yellow); border-color: var(--yellow); font-family: var(--display); text-transform: uppercase; }

.why-section { border-top: 1px solid var(--line); }
.reasons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 34px; border-top: 1px solid var(--line); }
.reasons-grid article { min-height: 250px; padding: 26px 0 34px; border-bottom: 1px solid var(--line); }
.reasons-grid article span { color: var(--blue); font-family: var(--display); font-size: 1.2rem; }
.reasons-grid h3 { margin: 18px 0 10px; font-family: var(--display); font-size: 1.55rem; line-height: 1.05; text-transform: uppercase; }
.reasons-grid p { margin: 0; font-size: 1rem; }

.review-section { padding: 92px max(6vw, calc((100vw - 1240px) / 2)); color: var(--paper); background: var(--ink); }
.review-section .eyebrow { color: var(--yellow); }
.review-section h2 { max-width: 850px; margin: 18px 0 26px; }
.review-section p:last-child { max-width: 690px; margin: 0; font-size: 1.2rem; }
.review-section a { color: var(--yellow); }

.subscription-section { border-top: 1px solid var(--line); }
.centered-heading { display: block; text-align: center; }
.centered-heading .eyebrow { margin-bottom: 18px; }
.form-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(40px, 7vw, 100px); }
fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
legend { width: 100%; margin-bottom: 25px; padding-bottom: 12px; border-bottom: 2px solid var(--ink); font-family: var(--display); font-size: 1.55rem; text-transform: uppercase; }
fieldset > label, .field-row label { display: flex; flex-direction: column; gap: 5px; margin-bottom: 17px; font-size: .9rem; }
.field-row { display: grid; gap: 16px; }
.two-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 0; padding: .75rem .8rem; color: var(--ink); background: rgba(255,255,255,.32); }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--blue); outline-offset: 2px; }
textarea { resize: vertical; }
.plans { display: grid; gap: 12px; }
.plan-card { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; padding: 20px; border: 1px solid var(--line); cursor: pointer; transition: border-color .2s, background .2s; }
.plan-card:has(input:checked) { border-color: var(--blue); background: rgba(14, 74, 128, .08); }
.plan-card input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--blue); }
.plan-card span { display: grid; gap: 4px; }
.plan-card strong { font-family: var(--display); font-size: 1.35rem; line-height: 1.1; text-transform: uppercase; }
.plan-card b { color: var(--blue); font-family: var(--display); font-size: 1.2rem; }
.plan-card small { font-size: .92rem; }
.support-choice, .support-amount { display: none; margin-top: 14px; }
.support-choice.is-visible, .support-amount.is-visible { display: flex; }
.commitment-text { margin-top: 32px; padding-top: 22px; border-top: 1px solid var(--line); font-size: .98rem; }
.commitment-text strong { font-family: var(--display); text-transform: uppercase; }
.commitment-text p { margin-bottom: 0; }
.submit-button { display: flex; align-items: center; justify-content: space-between; width: 100%; margin-top: 18px; padding: 20px 24px; border: 0; color: #fff; background: var(--blue); font-family: var(--display); font-size: 1.35rem; text-transform: uppercase; }
.submit-button:disabled { cursor: not-allowed; opacity: .42; }
.submit-button span { font-size: 1.7rem; }
.form-note, .form-error { text-align: center; font-size: .9rem; }
.form-error { color: #9b1c1c; }

.confirmation-page { width: min(720px, calc(100% - 48px)); min-height: 100vh; margin: 0 auto; padding: 12vh 0; text-align: center; }
.confirmation-mark { display: grid; place-items: center; width: 72px; height: 72px; margin: 0 auto 28px; border-radius: 50%; color: var(--blue); background: var(--yellow); font-family: var(--display); font-size: 2.5rem; }
.confirmation-page h1 { margin: 18px 0; font-family: var(--display); font-size: clamp(3rem, 8vw, 6rem); font-weight: 500; line-height: .95; text-transform: uppercase; }
.confirmation-lead { font-size: 1.35rem; }
.confirmation-details { margin: 38px 0; padding: 24px; border: 1px solid var(--line); text-align: left; }
.confirmation-details p { margin: 0 0 18px; }
.confirmation-details p:last-child { margin-bottom: 0; }
.confirmation-button { max-width: 420px; margin: 36px auto 0; text-decoration: none; }

footer { padding: 28px 6vw; color: var(--paper); background: var(--blue); text-align: center; font-size: .9rem; }
footer p { margin: 0; }
footer button { border: 0; padding: 0; color: var(--yellow); background: transparent; text-decoration: underline; }
dialog { width: min(860px, calc(100% - 32px)); max-height: 85vh; padding: 45px; border: 0; background: var(--paper); color: var(--ink); }
dialog::backdrop { background: rgba(35, 31, 32, .7); }
.dialog-close { position: absolute; top: 10px; right: 15px; border: 0; color: var(--ink); background: transparent; font-size: 2rem; }

@media (max-width: 800px) {
    .hero, .newsletter, .form-grid { grid-template-columns: 1fr; }
    .hero { min-height: auto; gap: 48px; padding-top: 55px; }
    .hero-portrait-wrap { padding-top: 0; }
    .hero-portrait { max-width: 300px; }
    .hero-copy { max-width: none; }
    .section-heading { grid-template-columns: 1fr; gap: 18px; }
    .section-heading h2 { font-size: clamp(2.6rem, 12vw, 4.4rem); }
    .newsletter { gap: 35px; }
    .reasons-grid { grid-template-columns: repeat(2, 1fr); gap: 0 24px; }
}

@media (max-width: 520px) {
    body { font-size: 15px; }
    .hero { padding-inline: 24px; }
    .spread-grid, .reasons-grid, .two-columns { grid-template-columns: 1fr; }
    .section-shell, .newsletter, .review-section { padding-inline: 24px; }
    .newsletter-fields { flex-direction: column; }
    .newsletter button { width: 100%; }
    .newsletter h2, .review-section h2 { font-size: 3rem; }
    dialog { padding: 35px 20px; }
}
