/* ============================================
   LAUDATO SI' — MAIN STYLESHEET
   Design tokens locked from Proof A v10
   ============================================ */

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ---- TOKENS ---- */
:root {
    --cream:       #f7f4ef;
    --stone:       #9a9186;
    --earth:       #5c4f3d;
    --forest:      #2d4a35;
    --forest-deep: #2e4a2c;
    --water:       #4a7c8a;
    --text:        #2a2520;
    --light-text:  #6b6057;
}

/* ---- BASE ---- */
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; font-weight: 300; background: var(--cream); color: var(--text); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ============================================
   NAV
   ============================================ */
.site-header { position: relative; z-index: 100; }
.site-nav { background: rgba(247,244,239,0.92); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-bottom: 1px solid rgba(154,145,134,0.2); }
.site-nav__inner { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 3rem; }
.site-nav__logo { font-family: 'Cormorant Garamond', serif; font-size: 1.32rem; font-weight: 700; font-style: italic; letter-spacing: 0.08em; color: var(--earth); text-decoration: none; }
.site-nav__logo--image { display: flex; align-items: center; }
.site-nav__logo--image .custom-logo-link { display: block; line-height: 0; }
.site-nav__logo--image .custom-logo { display: block; height: 80px; width: auto; }
.site-nav__logo--text { display: inline-flex; align-items: baseline; gap: 0.65rem; }
.site-nav__logo-divider { color: var(--stone); font-weight: 300; font-style: normal; font-size: 1.2rem; line-height: 1; }
.site-nav__logo-tagline { font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 400; font-style: normal; letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone); }
.site-nav__brand { display: flex; align-items: center; gap: 1rem; }
.site-nav__menu { display: flex; gap: 2.5rem; list-style: none; }
.site-nav__menu a { text-decoration: none; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--earth); font-weight: 400; transition: color 0.3s; }
.site-nav__menu a:hover { color: var(--forest); }
.site-nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.site-nav__toggle-bar { display: block; width: 24px; height: 1px; background: var(--earth); transition: transform 0.3s, opacity 0.3s; }

/* ============================================
   HERO
   ============================================ */
.hero { height: 100vh; position: relative; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }

.hero__text { position: absolute; bottom: 8vh; left: 3rem; right: 3rem; max-width: 680px; }

.hero__title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3.2rem, 5.5vw, 5.2rem); font-weight: 400; line-height: 1.05; color: #ffffff; margin-bottom: 1rem; text-shadow: 0 2px 24px rgba(0,0,0,0.35), 0 1px 4px rgba(0,0,0,0.2); }
.hero__title em { font-style: italic; color: #ffffff; }

.hero__eyebrow { font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: #ffffff; margin-bottom: 0.8rem; margin-top: 1rem; font-weight: 400; text-shadow: 0 1px 8px rgba(0,0,0,0.25); transform: translate(10px, -5px); animation-name: fadeUpEyebrow; }
@keyframes fadeUpEyebrow { from { opacity: 0; transform: translate(10px, 15px); } to { opacity: 1; transform: translate(10px, -5px); } }

.hero__toggle { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; min-width: 48px; min-height: 48px; border: 1px solid rgba(255,255,255,0.6); border-radius: 50%; background: rgba(255,255,255,0.9); cursor: pointer; margin-top: 1.2rem; transition: background 0.3s; color: var(--text); font-size: 1.4rem; line-height: 1; padding: 0; }
.hero__toggle:hover { background: white; }
.hero__toggle-icon { display: block; font-style: italic; font-weight: 700; font-family: 'Cormorant Garamond', Georgia, serif; line-height: 1; }

.hero__panel { margin-top: 0.8rem; }
.hero__panel[hidden] { display: none; }
.hero__panel p { background: rgba(247,244,239,0.92); color: var(--text); font-size: 0.9rem; line-height: 1.7; padding: 1rem 1.4rem; max-width: 480px; font-weight: 300; }

.hero__scroll { position: absolute; bottom: 3rem; right: 3rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.7); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; }
.hero__scroll-line { width: 1px; height: 48px; background: rgba(255,255,255,0.6); animation: scrollDown 2s ease-in-out infinite; }

@keyframes scrollDown {
    0%   { transform: scaleY(0); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: top; }
    51%  { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   FADE IN
   ============================================ */
.fade-in { opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ============================================
   INTRO SPLIT
   ============================================ */
.intro { display: grid; grid-template-columns: 1fr 1fr; min-height: 60vh; }
.intro__image { overflow: hidden; }
.intro__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; }
.intro__image:hover img { transform: scale(1.04); }
.intro__content { padding: 6rem 5rem; display: flex; flex-direction: column; justify-content: center; background: var(--cream); }

.section-label { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--stone); margin-bottom: 2rem; display: flex; align-items: center; gap: 1rem; }
.section-label::before { content: ''; display: block; width: 32px; height: 1px; background: var(--stone); flex-shrink: 0; }

.intro__heading { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 300; line-height: 1.25; color: var(--text); margin-bottom: 1.8rem; }
.intro__heading em { font-style: italic; color: var(--forest); }
.intro__body { font-size: 0.92rem; line-height: 1.85; color: var(--light-text); margin-bottom: 2.5rem; font-weight: 300; }

.btn-primary { display: inline-flex; align-items: center; gap: 0.8rem; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--forest); text-decoration: none; border-bottom: 1px solid var(--forest); padding-bottom: 0.3rem; transition: gap 0.3s; font-weight: 400; width: fit-content; }
.btn-primary:hover { gap: 1.4rem; }

/* ============================================
   QUOTE SECTION
   ============================================ */
.quote-section { padding: 7rem 3rem; text-align: center; background: var(--forest-deep); position: relative; overflow: hidden; }
.quote-section__mark { font-family: 'Cormorant Garamond', serif; font-size: 8rem; line-height: 0.5; color: rgba(255,255,255,0.1); display: block; margin-bottom: 2rem; }
.quote-section__text { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 300; font-style: italic; color: rgba(255,255,255,0.9); max-width: 700px; margin: 0 auto 1.5rem; line-height: 1.5; }
.quote-section__source { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.45); }

/* ============================================
   NAV CARDS
   ============================================ */
.nav-cards { display: grid; grid-template-columns: repeat(4, 1fr); }
.nav-card { position: relative; height: 340px; overflow: hidden; text-decoration: none; display: block; }
.nav-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 6s ease; filter: brightness(0.7); }
.nav-card:hover img { transform: scale(1.06); filter: brightness(0.55); }
.nav-card__content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%); }
.nav-card__label { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 0.4rem; }
.nav-card__title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; color: white; font-style: italic; }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter { padding: 6rem 3rem; background: var(--cream); display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1100px; margin: 0 auto; }
.newsletter__heading { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 2.5vw, 2.4rem); font-weight: 300; line-height: 1.2; color: var(--text); margin-bottom: 1rem; }
.newsletter__heading em { font-style: italic; color: var(--forest); }
.newsletter__sub { font-size: 0.88rem; color: var(--light-text); line-height: 1.7; }

.newsletter__form-wrap input[type="text"],
.newsletter__form-wrap input[type="email"] { width: 100%; padding: 0.9rem 0; border: none; border-bottom: 1px solid rgba(154,145,134,0.4); background: transparent; font-family: 'Jost', sans-serif; font-size: 0.85rem; color: var(--text); font-weight: 300; outline: none; transition: border-color 0.3s; letter-spacing: 0.05em; border-radius: 0; }
.newsletter__form-wrap input::placeholder { color: var(--stone); }
.newsletter__form-wrap input:focus { border-bottom-color: var(--forest); }
.newsletter__form-wrap input[type="submit"] { margin-top: 0.5rem; padding: 0.9rem 2.5rem; background: var(--forest); color: white; border: none; font-family: 'Jost', sans-serif; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; transition: background 0.3s; font-weight: 400; align-self: flex-start; border-radius: 0; }
.newsletter__form-wrap input[type="submit"]:hover { background: var(--earth); }

/* ============================================
   PAGE HEADER (centred)
   ============================================ */
.page-header { padding: 10rem 3rem 4rem; text-align: center; }
.page-header__eyebrow { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--stone); margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: center; gap: 1rem; }
.page-header__eyebrow::before, .page-header__eyebrow::after { content: ''; display: block; width: 40px; height: 1px; background: var(--stone); }
.page-header__title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300; line-height: 1.1; color: var(--text); margin-bottom: 1rem; }
.page-header__title em { font-style: italic; color: var(--forest); }
.page-header__sub { font-size: 0.92rem; color: var(--light-text); line-height: 1.8; max-width: 500px; margin: 0 auto; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--text); }
.site-footer__inner { display: flex; align-items: center; justify-content: space-between; padding: 3rem; }
.site-footer__logo { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic; color: rgba(255,255,255,0.6); font-weight: 300; }
.site-footer__nav { display: flex; gap: 2rem; list-style: none; }
.site-footer__nav a { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.3s; }
.site-footer__nav a:hover { color: rgba(255,255,255,0.8); }
.site-footer__copy { font-size: 0.65rem; color: rgba(255,255,255,0.25); letter-spacing: 0.1em; }

/* ============================================
   GENERAL PAGE WRAP
   ============================================ */
.page-wrap { max-width: 900px; margin: 0 auto; padding: 8rem 3rem 5rem; }
.page-article__title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; color: var(--text); margin-bottom: 2rem; line-height: 1.15; }
.page-article__content { font-size: 0.95rem; line-height: 1.85; color: var(--light-text); font-weight: 300; }
.page-article__content p { margin-bottom: 1.5rem; }

/* ============================================
   SHARED FORM STYLES
   ============================================ */
.form-wrap { max-width: 600px; margin: 0 auto; padding: 2rem 3rem 8rem; }
.form-field { margin-bottom: 2rem; }
.form-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); margin-bottom: 0.6rem; display: block; }
.form-input { width: 100%; padding: 0.9rem 0; border: none; border-bottom: 1px solid rgba(154,145,134,0.35); background: transparent; font-family: 'Jost', sans-serif; font-size: 0.9rem; color: var(--text); font-weight: 300; outline: none; transition: border-color 0.3s; border-radius: 0; }
.form-input::placeholder { color: var(--stone); }
.form-input:focus { border-bottom-color: var(--forest); }
textarea.form-input { resize: none; height: 120px; padding-top: 0.9rem; }
.btn-submit { margin-top: 0.5rem; padding: 1rem 2.8rem; background: var(--forest); color: white; border: none; font-family: 'Jost', sans-serif; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; transition: background 0.3s; font-weight: 400; border-radius: 0; }
.btn-submit:hover { background: var(--earth); }

/* ============================================
   404
   ============================================ */
.error-404 { text-align: center; padding-top: 12rem; }
.error-404__title { font-family: 'Cormorant Garamond', serif; font-size: 8rem; font-weight: 300; color: var(--stone); line-height: 1; margin-bottom: 1rem; }
.error-404__message { font-size: 1rem; color: var(--light-text); margin-bottom: 2rem; }
.error-404__link { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--forest); text-decoration: none; border-bottom: 1px solid var(--forest); padding-bottom: 0.3rem; }


/* Admin bar offset */
.admin-bar .site-header { top: 32px; }

/* ============================================
   ABOUT PAGE
   ============================================ */

.intro__lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    color: var(--text);
    margin-bottom: 2rem;
    border-left: 2px solid var(--forest);
    padding-left: 1.5rem;
}

.intro__body p {
    font-size: 0.92rem;
    line-height: 1.85;
    color: var(--light-text);
    margin-bottom: 1.2rem;
    font-weight: 300;
}

.intro__body p:last-child { margin-bottom: 2rem; }

/* FOUNDERS */
.founders {
    padding: 6rem 3rem;
    background: var(--cream);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-label--centred {
    justify-content: center;
}

.section-label--centred::before,
.section-label--centred::after {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--stone);
}

.founders__heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 300;
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.founders__body {
    font-size: 0.92rem;
    line-height: 1.85;
    color: var(--light-text);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.founders__names {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--earth);
    line-height: 2;
}

/* LINK BLOCKS */
.link-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(154, 145, 134, 0.2);
}

.link-block {
    padding: 4rem 5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-right: 1px solid rgba(154, 145, 134, 0.2);
    text-decoration: none;
    transition: background 0.3s;
}

.link-block:last-child { border-right: none; }
.link-block:hover { background: rgba(45, 74, 53, 0.04); }

.link-block__label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--stone);
}

.link-block__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text);
}

.link-block__arrow {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    color: var(--forest);
    margin-top: auto;
}

/* ============================================
   ACTION PLAN — ACCORDION
   ============================================ */

.accordion {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 6rem;
}

.accordion__item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-top: 1px solid rgba(154, 145, 134, 0.2);
}

.accordion__item:last-child {
    border-bottom: 1px solid rgba(154, 145, 134, 0.2);
}

/* HEADER */
.accordion__header {
    position: relative;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion__item.is-open .accordion__header {
    height: 320px;
}

.accordion__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease, filter 0.6s ease;
    filter: brightness(0.45);
}

.accordion__item.is-open .accordion__bg {
    filter: brightness(0.35);
    transform: scale(1.03);
}

.accordion__header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.accordion__maori {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.8rem;
    font-weight: 400;
    transition: color 0.4s;
}

.accordion__item.is-open .accordion__maori {
    color: rgba(255, 255, 255, 0.7);
}

.accordion__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: white;
    font-style: italic;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

/* INDICATOR */
.accordion__indicator {
    position: absolute;
    bottom: 1.5rem;
    right: 2.5rem;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease, border-color 0.4s;
}

.accordion__item.is-open .accordion__indicator {
    transform: rotate(45deg);
    border-color: rgba(255, 255, 255, 0.6);
}

.accordion__indicator::before,
.accordion__indicator::after {
    content: '';
    position: absolute;
    background: white;
    border-radius: 2px;
}

.accordion__indicator::before { width: 10px; height: 1px; }
.accordion__indicator::after  { width: 1px; height: 10px; }

/* BODY */
.accordion__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--cream);
}

.accordion__item.is-open .accordion__body {
    max-height: 600px;
}

.accordion__body-inner {
    padding: 4rem 3rem 5rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}

.accordion__item.is-open .accordion__body-inner {
    opacity: 1;
    transform: translateY(0);
}

.accordion__body-inner ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.accordion__body-inner ul li {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 300;
    font-style: italic;
    color: var(--text);
    line-height: 1.4;
    padding-left: 1.5rem;
    position: relative;
}

.accordion__body-inner ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 1px;
    background: var(--stone);
}

/* ============================================
   POPE LEO XIV QUOTE
   ============================================ */
.pope-quote {
    display: grid;
    grid-template-columns: 280px 1fr;
    max-width: 900px;
    margin: 0 auto 6rem;
    border: 1px solid rgba(154, 145, 134, 0.2);
    overflow: hidden;
}

.pope-quote__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pope-quote__content {
    padding: 3.5rem 4rem;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pope-quote__mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    line-height: 0.5;
    color: rgba(45, 74, 53, 0.15);
    display: block;
    margin-bottom: 1.5rem;
}

.pope-quote__text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    font-weight: 300;
    font-style: italic;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pope-quote__source {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--stone);
}

/* ============================================
   EVENTS PAGE
   ============================================ */

.section-heading {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 3rem 1.5rem;
}

.section-heading__line {
    flex: 1;
    height: 1px;
    background: rgba(154, 145, 134, 0.25);
}

.section-heading__text {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--stone);
    white-space: nowrap;
}

/* EVENT LIST */
.events-list {
    display: flex;
    flex-direction: column;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 3rem;
}

.events-empty {
    font-size: 0.88rem;
    color: var(--stone);
    font-style: italic;
    padding: 3rem 0;
    border-top: 1px solid rgba(154, 145, 134, 0.2);
    border-bottom: 1px solid rgba(154, 145, 134, 0.2);
}

/* EVENT CARD */
.event-card {
    display: grid;
    grid-template-columns: 380px 1fr;
    min-height: 280px;
    border-top: 1px solid rgba(154, 145, 134, 0.2);
    overflow: hidden;
}

.event-card:last-child {
    border-bottom: 1px solid rgba(154, 145, 134, 0.2);
}

.event-card__image {
    overflow: hidden;
}

.event-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 8s ease;
    filter: brightness(0.85);
}

.event-card:hover .event-card__image img {
    transform: scale(1.04);
    filter: brightness(0.75);
}

.event-card__content {
    padding: 3rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--cream);
}

.event-card__date {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.event-card__date::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--stone);
}

.event-card__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 300;
    font-style: italic;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

.event-card__location {
    font-size: 0.75rem;
    color: var(--stone);
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.event-card__desc {
    font-size: 0.88rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 2rem;
    max-width: 480px;
}

.event-card__desc a,
.resource-row__desc a {
    color: var(--forest);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}
.event-card__desc a:hover,
.event-card__desc a:focus,
.resource-row__desc a:hover,
.resource-row__desc a:focus {
    color: var(--earth);
}
.event-card__desc a:active,
.resource-row__desc a:active {
    color: var(--water);
}

.btn-register {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: white;
    background: var(--forest);
    text-decoration: none;
    padding: 0.85rem 2rem;
    transition: background 0.3s;
    font-weight: 400;
    width: fit-content;
    border: none;
    cursor: pointer;
}

.btn-register:hover { background: var(--earth); }

/* PAST EVENTS */
.past-events {
    max-width: 1100px;
    margin: 4rem auto 0;
    padding: 0 3rem 2rem;
}

.past-toggle {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(154, 145, 134, 0.2);
    border-bottom: 1px solid rgba(154, 145, 134, 0.2);
    user-select: none;
}

.past-toggle__text {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--stone);
}

.past-toggle__icon {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(154, 145, 134, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    transition: transform 0.3s;
    position: relative;
}

.past-toggle.is-open .past-toggle__icon { transform: rotate(45deg); }

.past-toggle__icon::before,
.past-toggle__icon::after {
    content: '';
    position: absolute;
    background: var(--stone);
}

.past-toggle__icon::before { width: 8px; height: 1px; }
.past-toggle__icon::after  { width: 1px; height: 8px; }

.past-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.past-list.is-open { max-height: 800px; }

.past-event-row {
    display: grid;
    grid-template-columns: 160px 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(154, 145, 134, 0.1);
}

.past-event-row__date {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: var(--stone);
}

.past-event-row__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    font-weight: 300;
    color: var(--light-text);
}

.past-event-row__tag {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--stone);
    border: 1px solid rgba(154, 145, 134, 0.3);
    padding: 0.3rem 0.8rem;
}

/* GOOGLE CALENDAR */
.calendar-section {
    background: var(--forest-deep);
    padding: 5rem 3rem;
    text-align: center;
    margin-top: 4rem;
}

.calendar-section__heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8rem;
}

.calendar-section__heading em { font-style: italic; }

.calendar-section__sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2.5rem;
}

.calendar-embed {
    max-width: 800px;
    margin: 0 auto;
}

.calendar-embed iframe {
    width: 100%;
    border: none;
    border-radius: 0;
}

.calendar-placeholder {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ICS Calendar plugin (list view) — re-skinned for dark forest section */
.calendar-embed .r34ics-ajax-container.loading {
    min-height: 220px;
    color: rgba(255, 255, 255, 0.4);
}
.calendar-embed .ics-calendar {
    /* Override plugin CSS variables so description/location text inherits white */
    --r34ics--element--events--color: rgba(255, 255, 255, 0.88);
    --r34ics--element--events--background: transparent;
    --r34ics--element--events--color--link: #fff;
    --r34ics--element--events--color--link-hover: #fff;
    --r34ics--element--events--accent--background: transparent;
    --r34ics--element--events--accent--color: rgba(255, 255, 255, 0.95);
    --r34ics--element--events--accent--border-color: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.88);
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.55;
}
.calendar-embed .descloc,
.calendar-embed .descloc :not(a) { color: rgba(255, 255, 255, 0.85); background-color: transparent; }
.calendar-embed .descloc a { color: #fff; }
.calendar-embed .descloc .location,
.calendar-embed .descloc .organizer,
.calendar-embed .descloc .resources { color: rgba(255, 255, 255, 0.6); font-size: 0.85rem; }
.calendar-embed .descloc .eventdesc { color: rgba(255, 255, 255, 0.78); font-size: 0.9rem; margin-top: 0.4rem; }
.calendar-embed .descloc .eventdesc p { margin: 0 0 0.5em; }
.calendar-embed .descloc .eventdesc p:last-child { margin-bottom: 0; }
.calendar-embed .ics-calendar-title,
.calendar-embed .ics-calendar-description {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin: 0 0 1.5rem;
}
.calendar-embed .ics-calendar-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
}
.calendar-embed .ics-calendar-description { color: rgba(255, 255, 255, 0.55); font-size: 0.85rem; }
.calendar-embed .ics-calendar-error {
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    font-style: italic;
    padding: 2rem 1rem;
}
.calendar-embed .ics-calendar-list-wrapper { display: block; }
.calendar-embed .ics-calendar-label {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    letter-spacing: 0.03em;
}
.calendar-embed .ics-calendar-list-wrapper > *:first-child .ics-calendar-label,
.calendar-embed .ics-calendar-label:first-child { margin-top: 0; }
.calendar-embed .ics-calendar-date-wrapper {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 1.2rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.calendar-embed .ics-calendar-date-wrapper:last-child { border-bottom: 0; }
.calendar-embed .ics-calendar-date {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    letter-spacing: 0.04em;
}
.calendar-embed .ics-calendar-date-wrapper .events { margin: 0; padding: 0; }
.calendar-embed .ics-calendar-date-wrapper .events dt {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 0.25rem;
}
.calendar-embed .ics-calendar-date-wrapper .events dt.all-day-indicator { font-style: italic; text-transform: none; letter-spacing: 0.02em; }
.calendar-embed .ics-calendar-date-wrapper .events dt .end_time { color: rgba(255, 255, 255, 0.4); }
.calendar-embed .ics-calendar-date-wrapper .events dd {
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 0.9rem;
    padding: 0;
    font-size: 0.95rem;
}
.calendar-embed .ics-calendar-date-wrapper .events dd:last-child { margin-bottom: 0; }
.calendar-embed .ics-calendar-date-wrapper .events dd a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.2s ease;
}
.calendar-embed .ics-calendar-date-wrapper .events dd a:hover { border-bottom-color: #fff; }
.calendar-embed .ics-calendar-date-wrapper .events dd .description,
.calendar-embed .ics-calendar-date-wrapper .events dd .location {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 0.2rem;
}
.calendar-embed .ics-calendar-paginate-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.calendar-embed .ics-calendar-paginate {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}
.calendar-embed .ics-calendar-paginate:hover { color: #fff; }
.calendar-embed .r34ics_toggle {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0.5rem 1rem;
    margin: 1.5rem 0;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
}
.calendar-embed .r34ics_toggle:hover { background: rgba(255, 255, 255, 0.14); }
.calendar-embed .r34ics_event_ics_download { color: rgba(255, 255, 255, 0.55); font-size: 0.8rem; }
.calendar-embed .r34ics_event_ics_download:hover { color: #fff; }

/* Mobile: collapse the date column on top */
@media (max-width: 600px) {
    .calendar-embed .ics-calendar-date-wrapper {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 0.85rem 0;
    }
    .calendar-embed .ics-calendar-date { font-size: 0.95rem; color: rgba(255, 255, 255, 0.7); }
}

/* ============================================
   RESOURCES PAGE
   ============================================ */

.resource-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 3rem 4rem;
}

.resource-section__header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(154, 145, 134, 0.25);
}

.resource-section__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text);
}

.resource-section__count {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--stone);
    margin-left: auto;
}

/* RESOURCE ROWS */
.resource-list {
    display: flex;
    flex-direction: column;
}

.resource-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(154, 145, 134, 0.15);
    transition: padding 0.2s, background 0.2s;
}

.resource-row:hover {
    background: rgba(45, 74, 53, 0.03);
    padding-left: 1rem;
    padding-right: 1rem;
    margin: 0 -1rem;
}

.resource-row__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.resource-row__desc {
    font-size: 0.85rem;
    color: var(--light-text);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 0.5rem;
}

.resource-row__meta {
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--stone);
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--forest);
    text-decoration: none;
    border: 1px solid var(--forest);
    padding: 0.7rem 1.4rem;
    transition: background 0.3s, color 0.3s;
    font-weight: 400;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-download:hover {
    background: var(--forest);
    color: white;
}

.btn-download__icon {
    font-size: 0.8rem;
}

/* EMPTY STATE */
.resource-empty {
    padding: 2.5rem 0;
    font-size: 0.85rem;
    color: var(--stone);
    font-style: italic;
    border-top: 1px solid rgba(154, 145, 134, 0.15);
    border-bottom: 1px solid rgba(154, 145, 134, 0.15);
}

/* SECTION DIVIDER */
.section-divider {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 0 3rem;
    height: 1px;
    background: rgba(154, 145, 134, 0.15);
}

/* ============================================
   CONTACT & REGISTER PAGES
   ============================================ */

.page-header__email {
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    color: var(--stone);
    margin-top: 1rem;
}

.page-header__email a {
    color: var(--forest);
    text-decoration: none;
    border-bottom: 1px solid rgba(45, 74, 53, 0.3);
    padding-bottom: 0.2rem;
    transition: border-color 0.3s;
}

.page-header__email a:hover {
    border-color: var(--forest);
}

.page-header__back {
    display: inline-block;
    margin-top: 1.2rem;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--stone);
    text-decoration: none;
    transition: color 0.3s;
}

.page-header__back:hover {
    color: var(--forest);
}

/* WPForms — shared baseline (contact, register, newsletter) */
.wpforms-container {
    --wpforms-button-background-color: var(--forest);
    --wpforms-button-background-color-alt: var(--earth);
    --wpforms-button-text-color: #fff;
    --wpforms-button-text-color-alt: #fff;
    --wpforms-label-error-color: rgba(154, 145, 134, 0.6);
}
.wpforms-container .wpforms-form { font-family: 'Jost', sans-serif; font-weight: 300; }
.wpforms-container .wpforms-field { padding: 0 0 1.6rem; margin: 0; }
.wpforms-container .wpforms-field-label {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: var(--earth);
    margin-bottom: 0.5rem;
    text-transform: none;
}
.wpforms-container .wpforms-required-label { color: rgba(154, 145, 134, 0.6); margin-left: 0.2rem; font-weight: 300; }
.wpforms-container .wpforms-field input[type="text"],
.wpforms-container .wpforms-field input[type="email"],
.wpforms-container .wpforms-field input[type="tel"],
.wpforms-container .wpforms-field input[type="url"],
.wpforms-container .wpforms-field textarea {
    width: 100%;
    padding: 0.8rem 0;
    border: none;
    border-bottom: 1px solid rgba(154, 145, 134, 0.4);
    background: transparent;
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 300;
    letter-spacing: 0.03em;
    outline: none;
    transition: border-color 0.3s;
    border-radius: 0;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
}
.wpforms-container .wpforms-field input::placeholder,
.wpforms-container .wpforms-field textarea::placeholder { color: var(--stone); font-weight: 300; font-family: 'Jost', sans-serif; }
.wpforms-container .wpforms-field input:focus,
.wpforms-container .wpforms-field textarea:focus { border-bottom-color: var(--forest); }
.wpforms-container .wpforms-field textarea { resize: none; min-height: 140px; padding-top: 0.8rem; }
.wpforms-container .wpforms-submit-container { padding-top: 1rem; }
.wpforms-container .wpforms-submit,
.wpforms-container button.wpforms-submit {
    display: inline-block;
    padding: 1rem 2.8rem;
    background: var(--forest);
    background-color: var(--forest);
    color: #fff;
    border: none;
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 0;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
}
.wpforms-container .wpforms-submit:hover,
.wpforms-container button.wpforms-submit:hover { background: var(--earth); background-color: var(--earth); }
.wpforms-container .wpforms-confirmation-container-full,
.wpforms-container .wpforms-error-container {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    font-size: 0.85rem;
    border: 1px solid rgba(45, 74, 53, 0.3);
    background: transparent;
    color: var(--forest);
    border-radius: 0;
    font-family: 'Jost', sans-serif;
}
.wpforms-container .wpforms-error { color: rgba(154, 145, 134, 0.8); font-size: 0.78rem; margin-top: 0.4rem; letter-spacing: 0.02em; font-family: 'Jost', sans-serif; }

/* Homepage newsletter — single inline field, no label noise */
.newsletter__form-wrap .wpforms-field { padding-bottom: 1rem; }
.newsletter__form-wrap .wpforms-field-label { display: none; }
.newsletter__form-wrap .wpforms-submit-container { padding-top: 0.5rem; }

/* ============================================
   MOBILE RESPONSIVE
   Breakpoints: 768px (tablet), 480px (phone)
   ============================================ */

@media ( max-width: 768px ) {

    /* NAV */
    .site-nav__inner {
        padding: 1.2rem 1.5rem;
        gap: 0.75rem;
    }

    .site-nav__brand { gap: 0.65rem; min-width: 0; flex: 1 1 auto; }
    .site-nav__logo--image .custom-logo { height: 56px; }
    .site-nav__logo { font-size: 1.1rem; letter-spacing: 0.05em; }
    .site-nav__logo--text { flex-direction: column; align-items: flex-start; gap: 0.15rem; line-height: 1.1; }
    .site-nav__logo-divider { display: none; }
    .site-nav__logo-tagline { font-size: 0.6rem; letter-spacing: 0.18em; }

    .site-nav__toggle {
        display: flex;
    }

    .site-nav__menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: var(--cream);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        z-index: 99;
        margin: 0;
        padding: 0;
    }

    .site-nav__menu.is-open {
        display: flex;
    }

    .site-nav__menu a {
        font-size: 1rem;
        letter-spacing: 0.15em;
    }

    .site-nav__toggle.is-open .site-nav__toggle-bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .site-nav__toggle.is-open .site-nav__toggle-bar:nth-child(2) {
        opacity: 0;
    }

    .site-nav__toggle.is-open .site-nav__toggle-bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    /* HERO */
    .hero__text {
        left: 1.5rem;
        right: 1.5rem;
        bottom: 6vh;
    }

    .hero__title {
        font-size: clamp(2.4rem, 8vw, 3.5rem);
    }

    .hero__scroll {
        display: none;
    }

    /* PAGE HEADER */
    .page-header {
        padding: 8rem 1.5rem 3rem;
    }

    /* INTRO SPLIT */
    .intro {
        grid-template-columns: 1fr;
    }

    .intro__image {
        height: 300px;
        order: -1;
    }

    .intro__content {
        padding: 3rem 1.5rem;
    }

    /* QUOTE SECTION */
    .quote-section {
        padding: 5rem 1.5rem;
    }

    /* NAV CARDS */
    .nav-cards {
        grid-template-columns: 1fr 1fr;
    }

    .nav-card {
        height: 220px;
    }

    /* NEWSLETTER */
    .newsletter {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 4rem 1.5rem;
    }

    /* FOOTER */
    .site-footer__inner {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 2.5rem 1.5rem;
    }

    .site-footer__nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.2rem;
    }

    /* ABOUT — INTRO */
    .intro__lead {
        font-size: 1.2rem;
    }

    /* FOUNDERS */
    .founders {
        padding: 4rem 1.5rem;
    }

    /* LINK BLOCKS */
    .link-blocks {
        grid-template-columns: 1fr;
    }

    .link-block {
        padding: 2.5rem 1.5rem;
        border-right: none;
        border-bottom: 1px solid rgba(154, 145, 134, 0.2);
    }

    .link-block:last-child {
        border-bottom: none;
    }

    /* ACTION PLAN ACCORDION */
    .accordion {
        max-width: 100%;
        margin-bottom: 4rem;
    }

    .accordion__header {
        height: 180px;
    }

    .accordion__item.is-open .accordion__header {
        height: 240px;
    }

    .accordion__body-inner {
        padding: 2.5rem 1.5rem 3rem;
    }

    /* POPE QUOTE */
    .pope-quote {
        grid-template-columns: 1fr;
        margin: 0 1.5rem 4rem;
    }

    .pope-quote__image {
        height: 280px;
    }

    .pope-quote__content {
        padding: 2.5rem 2rem;
    }

    /* EVENTS */
    .events-list {
        padding: 0 1.5rem;
    }

    .event-card {
        grid-template-columns: 1fr;
    }

    .event-card__image {
        height: 240px;
    }

    .event-card__content {
        padding: 2rem 1.5rem;
    }

    .past-events {
        padding: 0 1.5rem 2rem;
    }

    .past-event-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .past-event-row__tag {
        display: none;
    }

    .calendar-section {
        padding: 3.5rem 1.5rem;
    }

    /* SECTION HEADING */
    .section-heading {
        padding: 2rem 1.5rem 1rem;
    }

    /* RESOURCES */
    .resource-section {
        padding: 0 1.5rem 3rem;
    }

    .resource-row {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .resource-row:hover {
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .btn-download {
        align-self: flex-start;
    }

    .section-divider {
        padding: 0 1.5rem;
    }

    /* FORMS */
    .form-wrap {
        padding: 1.5rem 1.5rem 5rem;
    }

    /* PAGE HEADER EMAIL / BACK */
    .page-header__email,
    .page-header__back {
        display: block;
        margin-top: 1rem;
    }
}

@media ( max-width: 480px ) {

    /* NAV CARDS — single column on small phones */
    .nav-cards {
        grid-template-columns: 1fr;
    }

    .nav-card {
        height: 200px;
    }

    /* HERO title slightly smaller */
    .hero__title {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }

    /* ACCORDION */
    .accordion__title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }
}

