/* ============================================
   LEADING FROM BEING — Ghost Theme Stylesheet
   ============================================ */

:root {
    --white: #FAFAF7;
    --charcoal: #2C2C2A;
    --gold: #9A7F4E;
    --slate: #8A9BA8;
    --parchment: #F2EDE4;
    --tan: #D4C4A8;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --max-width: 760px;
}

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

html { font-size: 16px; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; }

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
}
.fade-in.visible {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .fade-up { opacity: 1; transform: none; transition: none; }
    .fade-in { opacity: 1; transition: none; }
}

/* ============================================
   NAVIGATION
   ============================================ */

.site-nav {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--tan);
    transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
}
.nav-inner { transition: padding 0.3s ease; }
.nav-logo img { transition: width 0.3s ease; }
.nav-inner {
    max-width: 100%;
    margin: 0;
    padding: 8px 36px 8px 10.5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo img { width: 157px; height: auto; }
.nav-links { display: flex; gap: 32px; }
.nav-link {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--charcoal);
    position: relative;
    padding-bottom: 4px;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
}
.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

@media (max-width: 768px) {
    .nav-inner { padding: 8px 16px; }
    .nav-logo img { width: 130px; }
    .nav-hamburger { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--tan);
        transition: background 0.3s ease;
    }
    .nav-links.open { display: flex; }

    /* Scrolled state — shrinks and blurs */
    .site-nav.nav-scrolled {
        background: rgba(250, 248, 244, 0.92);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-color: rgba(212, 196, 168, 0.5);
    }
    .site-nav.nav-scrolled .nav-inner {
        padding-top: 4px;
        padding-bottom: 4px;
    }
    .site-nav.nav-scrolled .nav-logo img { width: 108px; }
    .site-nav.nav-scrolled .nav-links { background: rgba(250, 248, 244, 0.97); }
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--charcoal);
    padding: 60px 40px 40px;
    color: #fff;
}
.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}
.footer-logo img {
    width: 100px;
    height: auto;
    filter: brightness(0) saturate(100%) invert(55%) sepia(30%) saturate(500%) hue-rotate(10deg) brightness(90%);
}
.footer-nav { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; justify-content: center; }
.footer-nav a {
    font-family: var(--font-body);
    font-size: 14px;
    color: #fff;
    transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-dot { color: var(--slate); font-size: 12px; }
.footer-email a {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 18px;
    color: #fff;
    transition: color 0.2s;
}
.footer-email a:hover { color: var(--gold); }

.footer-subscribe { margin-bottom: 32px; }
.subscribe-form {
    display: flex;
    max-width: 420px;
    margin: 0 auto;
    gap: 0;
}
.subscribe-form input[type="email"] {
    flex: 1;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    color: #fff;
    outline: none;
}
.subscribe-form input::placeholder { color: var(--slate); }
.subscribe-form button {
    padding: 12px 24px;
    background: var(--charcoal);
    border: 1px solid rgba(255,255,255,0.3);
    border-left: none;
    color: #fff;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: background 0.2s;
}
.subscribe-form button:hover { background: #3c3c3a; }

.footer-rule {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 20px;
}
.footer-legal-links {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.footer-legal-links a {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--slate);
    transition: color 0.2s;
}
.footer-legal-links a:hover { color: #fff; }
.footer-bottom {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--slate);
}

@media (max-width: 768px) {
    .site-footer { padding: 40px 24px 32px; }
    .footer-top { flex-direction: column; text-align: center; }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 16px 40px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}
.btn-charcoal {
    background: var(--charcoal);
    color: #fff;
    border: none;
}
.btn-charcoal:hover { background: #3c3c3a; }
.btn-gold-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}
.btn-gold-outline:hover { background: rgba(154,127,78,0.08); }
.btn-white-outline {
    background: transparent;
    color: #fff;
    border: 1px solid var(--gold);
}
.btn-white-outline:hover { background: rgba(154,127,78,0.15); }

/* ============================================
   SECTION UTILITIES
   ============================================ */

.section { padding: 100px 40px; }
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.section-wide { max-width: 1100px; margin: 0 auto; }
.bg-white { background: var(--white); }
.bg-parchment { background: var(--parchment); }
.bg-charcoal { background: var(--charcoal); color: #fff; }
.bg-offwhite { background: #F5F4F0; }

.gold-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.section-headline {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 24px;
}
.section-body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.8;
    color: var(--charcoal);
}
.section-body p { margin-bottom: 20px; }

.tan-rule {
    border: none;
    border-top: 1px solid var(--tan);
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-slate { color: var(--slate); }
.text-white { color: #fff; }

@media (max-width: 768px) {
    .section { padding: 60px 24px; }
    .section-headline { font-size: 36px; }
}

/* ============================================
   HOMEPAGE
   ============================================ */

.hero {
    padding: 120px 60px 100px 14vw;
    text-align: left;
}
.hero .section-inner {
    max-width: 55vw;
    margin: 0;
}
.hero-headline {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 32px;
}
.hero-headline .gold { color: var(--gold); }
.hero-headline .slate { color: var(--slate); }
.hero-signature {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}
.hero-signature-rule { width: 40px; height: 1px; background: var(--gold); }
.hero-signature-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 20px;
    color: var(--gold);
}
.hero-body {
    max-width: 620px;
    margin: 0 0 40px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--charcoal);
}

.breathing-room {
    position: relative;
    width: 100%;
    height: 25vh;
    min-height: 180px;
    overflow: hidden;
}
.breathing-room img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.breathing-room-overlay {
    position: absolute;
    inset: 0;
    background: rgba(250, 248, 244, 0.75);
    z-index: 1;
}
@supports (overflow: clip) {
    .parallax-wrap {
        overflow: clip;
    }
    .parallax-wrap video,
    .parallax-wrap .parallax-bg {
        position: absolute;
        inset: -20% 0;
        height: 140%;
        width: 100%;
        object-fit: cover;
        will-change: transform;
    }
}

.mirror-quote {
    border: 1px solid var(--gold);
    padding: 48px;
    max-width: 640px;
    margin: 40px auto 0;
    text-align: center;
}
.mirror-quote p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 24px;
    line-height: 1.5;
    color: var(--charcoal);
}

.home-work-section {
    position: relative;
}
.home-work-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
}

.offer-item {
    padding: 40px 0;
    border-bottom: 1px solid var(--gold);
}
.offer-item:last-child { border-bottom: none; }
.offer-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}
.offer-title {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 8px;
}
.offer-price {
    font-family: var(--font-body);
    font-size: 15px;
    font-style: italic;
    color: var(--slate);
    margin-bottom: 12px;
}
.offer-desc {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}
.offer-link {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 18px;
    color: var(--gold);
    transition: color 0.2s;
}
.offer-link:hover { color: var(--charcoal); }

.credibility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.credibility-portrait { width: 100%; }
.credibility-portrait img { width: 100%; max-height: 480px; object-fit: cover; }
.credibility-text .section-body { font-size: 17px; }

@media (max-width: 768px) {
    .hero { padding: 80px 24px 60px; }
    .hero .section-inner { max-width: 100%; }
    .hero-headline { font-size: clamp(28px, 9vw, 40px); }
    .credibility-grid { grid-template-columns: 1fr; gap: 40px; }
    .mirror-quote { padding: 32px 24px; }
}

/* ============================================
   WRITING / TAG PAGE
   ============================================ */

.writing-tabs {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
}
.writing-tab {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--charcoal);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 0 8px;
    position: relative;
    opacity: 0.45;
    transition: opacity 0.25s;
    text-decoration: none;
}
.writing-tab:hover { opacity: 0.75; }
.writing-tab.active { opacity: 1; }
.writing-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}
.writing-tab.active::after { width: 100%; }

.writing-search {
    margin-bottom: 40px;
}
.writing-search input {
    width: 100%;
    max-width: 480px;
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 15px;
    border: 1px solid var(--charcoal);
    background: transparent;
    outline: none;
    transition: border-color 0.3s;
}
.writing-search input:focus { border-color: var(--gold); }

.tab-content { display: none; opacity: 0; transition: opacity 0.3s; }
.tab-content.active { display: block; opacity: 1; }

.post-card {
    padding: 32px 0;
    border-bottom: 1px solid var(--tan);
}
.post-card:first-child { padding-top: 0; }
.post-card-date {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--slate);
    margin-bottom: 8px;
}
.post-card-title {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 8px;
    transition: color 0.2s;
}
.post-card-title a { color: var(--charcoal); }
.post-card-title a:hover { text-decoration: underline; text-decoration-color: var(--gold); }
.post-card-excerpt {
    font-size: 15px;
    color: var(--slate);
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.post-card-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.post-card-tag {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--slate);
    background: rgba(138,155,168,0.12);
    padding: 4px 12px;
    border-radius: 20px;
}

.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.concept-card {
    border: 1px solid var(--charcoal);
    padding: 28px;
    transition: border-color 0.3s;
}
.concept-card:hover { border-color: var(--gold); }
.concept-card-title {
    font-family: var(--font-display);
    font-size: 26px;
    margin-bottom: 8px;
}
.concept-card-desc {
    font-size: 15px;
    color: var(--slate);
    margin-bottom: 12px;
}
.concept-card-count {
    font-size: 13px;
    color: var(--gold);
}

.topics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 40px;
}
.topic-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--tan);
}
.topic-name {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
}
.topic-count {
    font-size: 14px;
    color: var(--gold);
}

.load-more {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 20px;
    color: var(--gold);
    margin-top: 32px;
    display: inline-block;
}

@media (max-width: 768px) {
    .concept-grid { grid-template-columns: 1fr; }
    .topics-grid { grid-template-columns: 1fr; }
}

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

.about-hero {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: auto;
}
.about-hero-image { overflow: hidden; max-height: 520px; }
.about-hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.about-hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}
.about-hero-text .section-headline { font-size: 44px; }
.about-hero-text .subheading {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 20px;
    color: var(--slate);
}

.dark-pullquote {
    background: var(--charcoal);
    padding: 80px 40px;
    text-align: center;
    background-attachment: fixed;
    background-size: cover;
}
.dark-pullquote p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 36px;
    line-height: 1.4;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
}
.dark-pullquote p:last-child { margin-bottom: 0; }
.dark-pullquote .gold { color: var(--gold); }
.dark-pullquote .slate { color: var(--slate); }

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.video-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 60px;
}
.video-section video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44,44,42,0.35);
    z-index: 1;
}
.video-credentials {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 380px;
}
.credential-box {
    background: rgba(242,237,228,0.9);
    border: 1px solid var(--gold);
    padding: 24px;
}
.credential-box .gold-label { margin-bottom: 8px; }
.credential-box p { font-size: 15px; line-height: 1.6; }
.credential-box .gold { color: var(--gold); font-weight: 500; }
.video-caption {
    text-align: center;
    padding: 24px 40px;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 18px;
    color: var(--slate);
}

.ocean-section {
    position: relative;
    overflow: hidden;
}
.ocean-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.ocean-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.15; }
.ocean-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(250,250,247,0.85);
}
.ocean-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}
.ocean-content p {
    font-family: var(--font-display);
    font-size: 22px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-hero { grid-template-columns: 1fr; }
    .about-hero-image { height: 50vh; }
    .about-hero-text { padding: 40px 24px; }
    .two-col { grid-template-columns: 1fr; }
    .dark-pullquote p { font-size: 28px; }
    .video-section { height: auto; min-height: 0; padding: 40px 24px; flex-direction: column; }
    .video-credentials { max-width: 100%; }
}

/* ============================================
   WORK WITH ME
   ============================================ */

.work-offer {
    padding: 80px 40px;
}
.work-offer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.work-offer .offer-title { font-size: 40px; margin-bottom: 8px; }
.work-offer .offer-price {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 24px;
}
.work-offer .section-body { margin-bottom: 32px; }

.closing-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.closing-image {
    border: 1px solid var(--gold);
}
.closing-image img { width: 100%; }

@media (max-width: 768px) {
    .work-offer { padding: 60px 24px; }
    .closing-two-col { grid-template-columns: 1fr; }
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-layout {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 70vh;
}
.contact-text-top {
    grid-column: 1;
    grid-row: 1;
    padding: 80px 60px 0;
    align-self: end;
}
.contact-text-bottom {
    grid-column: 1;
    grid-row: 2;
    padding: 32px 60px 80px;
    align-self: start;
}
.contact-email {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 22px;
    color: var(--gold);
    margin: 24px 0;
    display: block;
}
.contact-image {
    grid-column: 2;
    grid-row: 1 / span 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.contact-image-box {
    border: 1px solid var(--gold);
    width: 420px;
    height: 520px;
    overflow: hidden;
}
.contact-image-box img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

@media (max-width: 768px) {
    .contact-layout { display: flex; flex-direction: column; }
    .contact-text-top { padding: 60px 24px 0; }
    .contact-text-bottom { padding: 24px 24px 60px; }
    .contact-image { padding: 0 24px; }
    .contact-image-box { width: 100%; height: 400px; }
}

/* ============================================
   STRATEGIC INTENSIVE
   ============================================ */

.session-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.session-card {
    border: 1px solid var(--charcoal);
    padding: 32px;
}
.session-card .gold-label { margin-bottom: 12px; }

.form-section { padding: 80px 40px; }
.form-inner { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 24px; }
.form-label {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 8px;
}
.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 16px;
    border: 1px solid var(--charcoal);
    background: transparent;
    color: var(--charcoal);
    outline: none;
    transition: border-color 0.3s;
}
.form-input:focus,
.form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; }

.radio-group { display: flex; flex-direction: column; gap: 12px; }
.radio-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    cursor: pointer;
}
.radio-group input[type="radio"] { accent-color: var(--gold); }

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--charcoal);
    color: #fff;
    border: none;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
}
.form-submit:hover { background: #3c3c3a; }
.form-note {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 14px;
    color: var(--slate);
    text-align: center;
    margin-top: 16px;
}
.form-success {
    text-align: center;
    padding: 60px 20px;
    display: none;
}
.form-success p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 28px;
    color: var(--charcoal);
}

@media (max-width: 768px) {
    .session-cards { grid-template-columns: 1fr; }
    .form-section { padding: 60px 24px; }
}

/* ============================================
   FAQ PAGE
   ============================================ */

.faq-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--tan);
    margin-bottom: 48px;
}
.faq-title-common {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.1;
}
.faq-title-questions {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 400;
    font-style: italic;
    color: var(--gold);
    line-height: 1.1;
}
.faq-header-right {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 20px;
    color: var(--slate);
    text-align: right;
}

.faq-item {
    border: 1px solid var(--charcoal);
    margin-bottom: 12px;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}
.faq-question-text {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--charcoal);
    flex: 1;
    padding-right: 20px;
}
.faq-icon {
    font-size: 24px;
    color: var(--slate);
    transition: color 0.3s;
    flex-shrink: 0;
}
.faq-item.open .faq-icon { color: var(--gold); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer-inner {
    padding: 0 32px 32px;
    border-top: 1px solid var(--gold);
    margin: 0;
    padding-top: 24px;
}
.faq-answer-inner p {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.8;
    color: #4A4A48;
}

@media (max-width: 768px) {
    .faq-header { grid-template-columns: 1fr; }
    .faq-title-common, .faq-title-questions { font-size: 48px; }
    .faq-header-right { text-align: left; }
    .faq-question { padding: 24px; }
    .faq-answer-inner { margin: 0; padding: 0 24px 24px; padding-top: 20px; }
}

/* ============================================
   POST TEMPLATE
   ============================================ */

.post-hero-image { width: 100%; max-height: 60vh; overflow: hidden; }
.post-hero-image img { width: 100%; height: 100%; object-fit: cover; }

.post-header {
    max-width: 740px;
    margin: 0 auto;
    padding: 60px 24px 0;
}
.post-tags { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.post-tag {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(154,127,78,0.1);
    padding: 4px 12px;
    border-radius: 20px;
}
.post-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 16px;
}
.post-meta {
    font-size: 15px;
    color: var(--slate);
}

.post-content {
    max-width: 740px;
    margin: 0 auto;
    padding: 40px 24px 80px;
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.9;
    color: var(--charcoal);
}
.post-content p { margin-bottom: 24px; }
.post-content h2 {
    font-family: var(--font-display);
    font-size: 32px;
    margin: 48px 0 20px;
}
.post-content h3 {
    font-family: var(--font-display);
    font-size: 26px;
    margin: 40px 0 16px;
}
.post-content blockquote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 28px;
    line-height: 1.4;
    color: var(--gold);
    text-align: center;
    padding: 40px 0;
    margin: 40px 0;
    border: none;
}
.post-content img {
    width: 100%;
    margin: 32px 0;
}
.post-content a { color: var(--gold); text-decoration: underline; }
.post-content ul, .post-content ol { margin-bottom: 24px; padding-left: 24px; }
.post-content li { margin-bottom: 8px; }

.related-posts {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px 80px;
    border-top: 1px solid var(--tan);
}
.related-posts-title {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 32px;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 768px) {
    .post-header { padding: 40px 16px 0; }
    .post-title { font-size: 36px; }
    .post-content { padding: 32px 16px 60px; font-size: 17px; }
    .related-grid { grid-template-columns: 1fr; }
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-header {
    padding: 60px 40px 32px;
    max-width: var(--max-width);
    margin: 0 auto;
}
.legal-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px 80px;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.8;
    color: var(--charcoal);
}
.legal-content p { margin-bottom: 20px; }
.legal-content h2 { font-family: var(--font-display); font-size: 28px; margin: 40px 0 16px; }
.legal-content ul { margin-bottom: 20px; padding-left: 24px; }
.legal-content li { margin-bottom: 8px; }

/* ============================================
   GOLD DOT LIST (replaces bullet points)
   ============================================ */

.gold-list { list-style: none; padding: 0; }
.gold-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 16px;
    font-size: 17px;
    line-height: 1.7;
}
.gold-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

/* ============================================
   GHOST CONTENT WIDTH CLASSES
   ============================================ */

.kg-width-wide {
    width: 85vw;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.kg-width-full {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* ============================================
   WRITING PAGE FULL-BLEED HERO
   ============================================ */

.writing-hero {
    position: relative;
    width: 100%;
    background-image: url('../images/cameron-writing.jpg');
    background-size: cover;
    background-position: center 70%;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
}
.writing-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(250, 248, 244, 0.93);
    z-index: 0;
}
.writing-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    padding: 80px 40px;
    width: 100%;
    margin: 0 auto;
}
.writing-hero-label {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 32px;
    color: var(--gold);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 20px;
}
.writing-hero-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 24px;
    line-height: 1.6;
    color: var(--charcoal);
    margin-bottom: 32px;
}
.writing-hero-form {
    display: flex;
    max-width: 420px;
    margin: 0 auto;
    gap: 0;
}

@media (max-width: 768px) {
    .writing-hero {
        height: auto;
        background-attachment: scroll;
    }
    .writing-hero-inner { padding: 48px 24px; }
    .writing-hero-text { font-size: 18px; margin-bottom: 24px; }
    .writing-hero-label { display: none; }
    .writing-hero-form { max-width: 100%; }

    /* Tag archive page — hide entire writing header and newsletter label; show form only */
    .tag-template .writing-header { display: none; }
    .tag-template .writing-newsletter-label { display: none; }
    .tag-template .writing-newsletter { padding-top: 0; }
}

.bg-warm-linen {
    background-color: #F0EAE0;
    background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='t'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23t)' opacity='0.03'/%3E%3C/svg%3E");
}

/* ============================================
   WRITING PAGE NEWSLETTER PLACEHOLDER
   ============================================ */

.writing-newsletter {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 28px 0 48px;
    border-bottom: 1px solid var(--tan);
    margin-bottom: 40px;
}
.writing-newsletter-label {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 20px;
    color: var(--charcoal);
    white-space: nowrap;
    margin: 0;
}
.writing-newsletter-form {
    display: flex;
    flex: 1;
    max-width: 420px;
    gap: 0;
}
.writing-newsletter-input {
    flex: 1;
    padding: 13px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    border: 1px solid var(--charcoal);
    background: transparent;
    color: var(--charcoal);
    outline: none;
    transition: border-color 0.3s;
}
.writing-newsletter-input:focus { border-color: var(--gold); }
.writing-newsletter-input::placeholder { color: var(--slate); }
.writing-newsletter-btn {
    padding: 13px 28px;
    background: var(--charcoal);
    color: #fff;
    border: 1px solid var(--charcoal);
    border-left: none;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
}
.writing-newsletter-btn:hover { background: #3c3c3a; }

@media (max-width: 768px) {
    .writing-newsletter { flex-direction: column; align-items: flex-start; gap: 16px; }
    .writing-newsletter-label { display: none; }
    .writing-newsletter-form { width: 100%; max-width: 100%; }

    /* Disable CSS parallax on all fixed-background elements — parallax is desktop only */
    .dark-pullquote { background-attachment: scroll !important; }
}

/* ============================================
   HOMEPAGE NEWSLETTER SECTION
   ============================================ */

.home-newsletter { padding: 80px 40px; }
.home-newsletter-inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}
.home-newsletter-heading {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 16px;
}
.home-newsletter-sub {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--slate);
    margin-bottom: 32px;
}
.home-newsletter-form {
    display: flex;
    gap: 0;
    max-width: 420px;
    margin: 0 auto;
}
.home-newsletter-input {
    flex: 1;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    border: 1px solid var(--charcoal);
    background: transparent;
    color: var(--charcoal);
    outline: none;
    transition: border-color 0.3s;
}
.home-newsletter-input:focus { border-color: var(--gold); }
.home-newsletter-input::placeholder { color: var(--slate); }
.home-newsletter-btn {
    padding: 14px 28px;
    background: var(--charcoal);
    color: #fff;
    border: 1px solid var(--charcoal);
    border-left: none;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
}
.home-newsletter-btn:hover { background: #3c3c3a; }

@media (max-width: 768px) {
    .home-newsletter { padding: 60px 24px; }
    .home-newsletter-form { max-width: 100%; }
}

/* ============================================
   TESTIMONIALS CAROUSEL
   ============================================ */

.testimonials-section { padding: 80px 40px; }
.testimonials-carousel {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}
.testimonials-track-wrap {
    flex: 1;
    overflow: hidden;
}
.testimonials-track {
    display: flex;
    gap: 32px;
    transition: transform 0.5s ease;
}
.testimonial-card {
    flex: 0 0 calc(33.333% - 22px);
    background: var(--parchment);
    padding: 36px 32px 28px;
    display: flex;
    flex-direction: column;
}
.testimonial-quote-mark {
    font-family: var(--font-display);
    font-size: 64px;
    line-height: 0.8;
    color: var(--gold);
    margin-bottom: 16px;
}
.testimonial-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 17px;
    line-height: 1.65;
    color: var(--charcoal);
    flex: 1;
    margin-bottom: 24px;
}
.testimonial-rule {
    border: none;
    border-top: 1px solid var(--gold);
    margin-bottom: 16px;
}
.testimonial-name {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--charcoal);
    margin-bottom: 4px;
}
.testimonial-descriptor {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--slate);
}

.testimonials-prev,
.testimonials-next {
    background: none;
    border: 1px solid var(--tan);
    color: var(--charcoal);
    font-size: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.2s, color 0.2s;
}
.testimonials-prev:hover,
.testimonials-next:hover {
    border-color: var(--gold);
    color: var(--gold);
}

@media (max-width: 768px) {
    .testimonials-section { padding: 60px 24px; }
    .testimonial-card { flex: 0 0 100%; }
    .testimonials-carousel { gap: 12px; }
}

/* ============================================
   SIGNUP FORM CARD (Kit-connected, two variants)
   ============================================ */

.signup-card {
    background: var(--white);
    border: 1px solid #E4E0D4;
    border-radius: 4px;
    padding: 40px;
    max-width: 540px;
    margin: 0 auto;
}

.signup-card-header {
    margin-bottom: 28px;
    text-align: center;
}

.signup-eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 10px;
}

.signup-headline {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 10px;
    line-height: 1.2;
}

.signup-subline {
    font-family: var(--font-body);
    font-size: 15px;
    color: #5F5E5A;
    line-height: 1.6;
}

.signup-form { width: 100%; }

.signup-name-row {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.signup-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.signup-label {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5F5E5A;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.signup-input {
    width: 100%;
    padding: 11px 14px;
    font-family: var(--font-body);
    font-size: 14px;
    border: 1px solid #D3D1C7;
    border-radius: 2px;
    background: #fff;
    color: var(--charcoal);
    outline: none;
    transition: border-color 0.25s;
}

.signup-input:focus { border-color: var(--gold); }
.signup-input::placeholder { color: #ADADAA; }

.signup-email-row {
    display: flex;
    gap: 0;
    margin-bottom: 14px;
    margin-top: 10px;
}

.signup-email-input {
    flex: 1;
    border-radius: 2px 0 0 2px;
    border-right: none;
}

.signup-btn {
    padding: 11px 22px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    border-radius: 0 2px 2px 0;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.signup-btn:hover { opacity: 0.85; }

.signup-btn-charcoal {
    background: var(--charcoal);
    color: var(--white);
}

.signup-btn-gold {
    background: var(--gold);
    color: var(--white);
}

.signup-fine-print {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--slate);
    text-align: center;
    line-height: 1.5;
}

.signup-fine-print a {
    color: var(--slate);
    text-decoration: underline;
}

.signup-fine-print a:hover { color: var(--gold); }

/* Compact variant (inside writing hero) */
.writing-hero-inner .signup-card {
    padding: 28px 32px;
    background: rgba(250, 250, 247, 0.96);
}

@media (max-width: 768px) {
    .signup-card { padding: 28px 20px; }
    .signup-name-row { flex-direction: column; gap: 10px; }
    .signup-email-row { flex-direction: column; }
    .signup-email-input {
        border-radius: 2px;
        border-right: 1px solid #D3D1C7;
    }
    .signup-btn {
        border-radius: 2px;
        width: 100%;
        padding: 13px;
    }
}

/* ============================================
   MENTORSHIP PAGE
   ============================================ */

.mentorship-hero {
    padding: 80px 40px 80px;
}

.mentorship-hero .section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.mentorship-hero-title {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 400;
    color: #fff;
    line-height: 1.15;
    margin: 20px 0 24px;
}

.mentorship-hero-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 40px;
    line-height: 1.4;
}

.mentorship-rule {
    border: none;
    border-top: 1px solid rgba(154,127,78,0.4);
    margin: 0 0 40px;
}

.mentorship-hero-sub {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.3;
}

.mentorship-hero-body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.82);
}

.mentorship-hero-body p { margin-bottom: 16px; }
.mentorship-hero-body p:last-child { margin-bottom: 0; }

.mentorship-bio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mentorship-bio-image img {
    width: 100%;
    max-height: 540px;
    object-fit: cover;
    object-position: top;
}

.mentorship-invest-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mentorship-invest-list li {
    position: relative;
    padding: 16px 0 16px 28px;
    border-bottom: 1px solid rgba(154,127,78,0.25);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
}

.mentorship-invest-list li:last-child { border-bottom: none; }

.mentorship-invest-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 24px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

.mentorship-invest-list li strong { color: #fff; }

.mentorship-birth-row {
    display: flex;
    gap: 16px;
}

.mentorship-birth-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mentorship-birth-location { flex: 2; }

@media (max-width: 768px) {
    .mentorship-hero { padding: 60px 24px; }
    .mentorship-hero-title { font-size: 36px; }
    .mentorship-hero-sub { font-size: 22px; }
    .mentorship-bio-grid { grid-template-columns: 1fr; gap: 32px; }
    .mentorship-bio-image { order: -1; }
    .mentorship-birth-row { flex-direction: column; }
}

/* ============================================
   YOUTUBE EMBED (responsive 16:9)
   ============================================ */

.yt-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.yt-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================
   HOMEPAGE TEDX LINK
   ============================================ */

.hero-tedx-link {
    margin-top: 20px;
    font-family: var(--font-body);
    font-size: 13px;
}

.hero-tedx-link a {
    color: var(--slate);
    text-decoration: none;
    border-bottom: 1px solid rgba(138,155,168,0.4);
    padding-bottom: 1px;
    transition: color 0.2s, border-color 0.2s;
}

.hero-tedx-link a:hover {
    color: var(--gold);
    border-color: rgba(154,127,78,0.5);
}

/* ============================================
   POST-LEVEL SIGNUP FORM
   ============================================ */

.post-signup {
    max-width: 740px;
    margin: 0 auto;
    padding: 0 24px 60px;
}

.post-signup-prompt {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 20px;
    color: var(--charcoal);
    margin-bottom: 20px;
    text-align: center;
}

.post-signup .signup-card {
    background: var(--parchment);
    border-color: #E4E0D4;
    padding: 28px 32px;
}

@media (max-width: 768px) {
    .post-signup { padding: 0 16px 48px; }
    .post-signup .signup-card { padding: 24px 18px; }
}

/* ============================================
   SUBSCRIBED (THANK-YOU) PAGE
   ============================================ */

.subscribed-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    background: var(--white);
}

.subscribed-card {
    max-width: 480px;
    width: 100%;
    text-align: center;
}

.subscribed-eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 20px;
}

.subscribed-headline {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 20px;
    line-height: 1.2;
}

.subscribed-body {
    font-family: var(--font-body);
    font-size: 15px;
    color: #5F5E5A;
    line-height: 1.6;
    margin-bottom: 28px;
}

.subscribed-link {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--gold);
    text-decoration: underline;
}

/* ============================================
   APPLICATION MODAL
   ============================================ */

.apply-modal {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 16px;
    overflow-y: auto;
}

.apply-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 30, 32, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.apply-modal-card {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 4px;
    width: 100%;
    max-width: 680px;
    padding: 48px 48px 56px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.25);
    margin: auto;
}

.apply-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: var(--slate);
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s;
}

.apply-modal-close:hover { color: var(--charcoal); }

@media (max-width: 600px) {
    .apply-modal { padding: 16px 8px; }
    .apply-modal-card { padding: 32px 24px 40px; }
}

/* Offer cards as full anchor elements — no-js, no positioning tricks */
a.offer-item {
    display: block;
    color: inherit;
    text-decoration: none;
}

@media (max-width: 768px) {
    a.offer-item:active {
        background-color: rgba(154, 127, 78, 0.08);
        border-color: var(--gold);
        transition: background-color 0.1s, border-color 0.1s;
    }
}

.subscribed-link:hover { color: var(--charcoal); }
