/* ─── REVEAL ANIMATION ─── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── DROP CAP ─── */
.drop-cap::first-letter {
    font-family: 'Libre Baskerville', serif;
    float: left;
    font-size: 3.8em;
    line-height: 0.8;
    padding-right: 12px;
    padding-top: 6px;
    color: var(--coral);
    font-weight: 700;
}

/* ─── EYEBROW ─── */
.eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 20px;
}

/* ─── NAV ─── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--cream);
    padding: 0 48px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--rule);
    transition: all 0.3s;
}
.nav.scrolled {
    background: rgba(250,248,245,0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.nav-left { display: flex; align-items: center; gap: 40px; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 44px; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--coral); }

/* ─── NAV DROPDOWN ─── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: inline-flex; align-items: center; gap: 4px; }
.nav-dropdown-toggle .dd-arrow { transition: transform 0.2s; }
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--cream);
    border: 1px solid var(--rule);
    border-radius: 4px;
    padding: 8px 0;
    min-width: 160px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    list-style: none;
    z-index: 1001;
}
.nav-dropdown-menu li { margin: 0; }
.nav-dropdown-menu a {
    display: block;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
}
.nav-dropdown-menu a:hover { color: var(--coral); background: var(--warm-gray); }
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown.open .dd-arrow { transform: rotate(180deg); }
@media (min-width: 769px) {
    .nav-dropdown:hover .nav-dropdown-menu { display: block; }
    .nav-dropdown:hover .dd-arrow { transform: rotate(180deg); }
}

.nav-right { display: flex; align-items: center; gap: 24px; }
.btn-nav {
    padding: 8px 22px;
    background: var(--navy);
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-radius: 3px;
    transition: background 0.2s;
}
.btn-nav:hover { background: var(--coral); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--text); margin: 5px 0; }

/* ─── BUTTONS ─── */
.btn-cta {
    display: inline-block;
    padding: 14px 40px;
    background: var(--coral);
    color: var(--white);
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    width: fit-content;
}
.btn-cta:hover { background: #d04a40; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,90,79,0.3); }

.btn-outline {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    color: var(--coral);
    border: 1.5px solid var(--coral);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    width: fit-content;
}
.btn-outline:hover { background: var(--coral); color: var(--white); }

.btn-navy {
    display: inline-block;
    padding: 14px 40px;
    background: var(--navy);
    color: var(--white);
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    width: fit-content;
}
.btn-navy:hover { background: #253a5e; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,43,76,0.3); }

/* ─── STATS STRIP ─── */
.stats-strip {
    background: var(--navy-deep);
    padding: 56px 48px;
    overflow: hidden;
}
.stats-row {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 32px;
}
.stats-row .stat { text-align: center; flex: 1; }
.stats-row .stat .val {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: clamp(32px, 4vw, 48px);
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}
.stats-row .stat .lbl {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

/* ─── PULL QUOTE TESTIMONIALS ─── */
.pull-quotes {
    background: var(--white);
    padding: 120px 48px;
    border-bottom: 1px solid var(--rule);
}
.pull-quotes-header {
    max-width: 1180px;
    margin: 0 auto 64px;
}
.pull-quotes-header h2 {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(28px, 3vw, 38px);
    color: var(--navy);
}
.pull-quotes-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--rule);
}
.pull-quote-card {
    background: var(--white);
    padding: 48px 36px;
}
.pull-quote-card .stars {
    font-size: 20px;
    color: #F5A623;
    letter-spacing: 3px;
    margin-bottom: 20px;
}
.pull-quote-card .mark {
    font-family: 'Libre Baskerville', serif;
    font-size: 80px;
    line-height: 0.6;
    color: var(--coral);
    opacity: 0.25;
    margin-bottom: 20px;
}
.pull-quote-card blockquote {
    font-family: 'Libre Baskerville', serif;
    font-size: 17px;
    font-style: italic;
    line-height: 1.65;
    color: var(--text);
    margin-bottom: 28px;
}
.pull-quote-card .attr { font-family: 'Inter', sans-serif; font-style: normal; }
.pull-quote-card .attr .name { font-size: 14px; font-weight: 700; color: var(--navy); }
.pull-quote-card .attr .title { font-size: 13px; color: var(--coral); }

/* ─── BLOG CARDS ─── */
.blog-feed {
    padding: 120px 48px;
    border-bottom: 1px solid var(--rule);
}
.blog-feed-header {
    max-width: 1180px;
    margin: 0 auto 56px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.blog-feed-header h2 {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(24px, 2.5vw, 32px);
    color: var(--navy);
}
.blog-feed-header a {
    font-size: 13px;
    font-weight: 600;
    color: var(--coral);
    text-decoration: none;
    border-bottom: 1px solid var(--coral);
    padding-bottom: 1px;
}
.blog-feed-header a:hover { opacity: 0.7; }
.blog-feed-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.blog-card { text-decoration: none; color: inherit; display: block; }
.blog-card:hover .blog-card-title { color: var(--coral); }
.blog-card-thumb {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 16px;
    background: var(--navy);
}
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-meta {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.blog-card-title {
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--navy);
    line-height: 1.4;
    transition: color 0.2s;
}

/* ─── NEWSLETTER ─── */
.newsletter {
    padding: 80px 48px;
    border-bottom: 1px solid var(--rule);
}
.newsletter-inner {
    max-width: 580px;
    margin: 0 auto;
    text-align: center;
}
.newsletter-inner h2 {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 8px;
}
.newsletter-inner > p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 28px;
}
.nl-form { display: flex; gap: 8px; }
.nl-form input[type="email"] {
    flex: 1;
    padding: 13px 16px;
    border: 1px solid var(--rule);
    border-radius: 3px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    background: var(--white);
    transition: border-color 0.2s;
}
.nl-form input[type="email"]:focus { outline: none; border-color: var(--navy); }
.nl-form button {
    padding: 13px 28px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 3px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.nl-form button:hover { background: var(--coral); }

/* ─── CTA SECTION (dark) ─── */
.cta-section {
    background: var(--navy);
    padding: 120px 48px;
}
.cta-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.cta-text h2 {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(28px, 3vw, 40px);
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 20px;
}
.cta-text p {
    font-size: 16px;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
}
.cta-form { display: flex; flex-direction: column; gap: 18px; }
.cta-form label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}
.cta-form input,
.cta-form select,
.cta-form textarea {
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--white);
    border-radius: 0;
    transition: border-color 0.2s;
}
.cta-form input::placeholder,
.cta-form textarea::placeholder { color: rgba(255,255,255,0.2); }
.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus { outline: none; border-bottom-color: var(--coral); }
.cta-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.3)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
}
.cta-form select option { background: var(--navy); color: var(--white); }
.cta-form textarea { resize: vertical; min-height: 140px; }
.cta-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* ─── FOOTER ─── */
.footer {
    background: var(--navy-deep);
    color: var(--white);
    padding: 56px 48px 36px;
}
.footer-top {
    max-width: 1180px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.footer-brand { display: flex; align-items: flex-start; gap: 10px; }
.footer-brand img { height: 72px; filter: brightness(0) invert(1); }
.footer-brand span { font-size: 17px; font-weight: 700; }
.footer-col h4 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 14px;
}
.footer-col a {
    display: block;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--coral); }
.footer-bottom {
    max-width: 1180px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 20px;
    font-size: 11px;
    color: rgba(255,255,255,0.2);
    line-height: 1.6;
}

/* ─── BACK TO TOP ─── */
.back-to-top {
    position: fixed; bottom: 28px; right: 28px;
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--navy); color: var(--white); border: none;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: all 0.3s; z-index: 999;
}
.back-to-top.show { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--coral); }
.back-to-top svg { width: 16px; height: 16px; }

/* ─── FORMS ON LIGHT BACKGROUNDS ─── */
.form-light { display: flex; flex-direction: column; gap: 18px; }
.form-light label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
}
.form-light input,
.form-light select,
.form-light textarea {
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid var(--rule);
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text);
    border-radius: 0;
    transition: border-color 0.2s;
}
.form-light input::placeholder,
.form-light textarea::placeholder { color: var(--text-light); }
.form-light input:focus,
.form-light select:focus,
.form-light textarea:focus { outline: none; border-bottom-color: var(--coral); }
.form-light select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(136,136,136,0.5)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
}
.form-light textarea { resize: vertical; min-height: 72px; }
.form-light .row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
