/* =============================================
   Chris [Surname] Counselling
   "Verdant Editorial" — 2026 Redesign
   Cormorant Garamond + DM Sans
   ============================================= */



/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--f-body);
    font-size: 16px;
    line-height: 1.78;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--terra); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--terra-dark); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }

h1, h2, h3, h4 {
    font-family: var(--f-head);
    color: var(--text);
    line-height: 1.18;
    margin-bottom: .6rem;
    font-weight: 600;
    overflow-wrap: break-word;
    word-break: break-word;
}

strong { font-weight: 600; }

/* =============================================
   PAGE ENTRANCE ANIMATION
   ============================================= */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* =============================================
   TOP BAR
   ============================================= */
.top-bar { display: flex; gap: 2rem; align-items: center; justify-content: flex-start; flex-wrap: wrap; padding: 0.75rem 1.5rem; background: var(--forest); }
.top-bar-link { display: inline-flex; align-items: center; gap: 0.6rem; color: #fff; text-decoration: none; font-weight: 600; font-size: 1rem; }
.top-bar-link .icon-badge { border-color: rgba(255,255,255,0.6); color: #fff; }
.top-bar-link:hover .top-bar-text { text-decoration: underline; }

.top-bar-logo { display: flex; align-items: center; margin-right: 0.5rem; }
.top-bar-logo-img { height: 84px; width: auto; display: block; }

/* Phone + email pushed to the right; logo stays left */
.top-bar-logo + .top-bar-link { margin-left: auto; }

@media (max-width: 600px) {
  .top-bar { gap: 1rem; padding: 0.6rem 1rem; }
  .top-bar-logo + .top-bar-link { margin-left: 0; }
  .top-bar-text { font-size: 0.85rem; }
  .top-bar .icon-badge--sm { width: 1.9rem; height: 1.9rem; }
  .top-bar .icon-badge--sm svg { width: 1rem; height: 1rem; }
  .top-bar-logo-img { height: 60px; }
}


/* =============================================
   NAVIGATION
   ============================================= */
.main-nav {
    background: var(--surface);
    border-bottom: 1px solid var(--border-soft);
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: 0 2px 16px rgba(0,0,0,.06);
    transition: box-shadow var(--t);
}

.main-nav.scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,.1);
}

.main-nav-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
}

.main-nav-logo-img {
    height: 100px;
    width: auto;
    display: block;
}

.main-nav-tagline {
    display: flex;
    flex-direction: column;
    margin-left: 34px;
    margin-top: 3px;
    line-height: 1.4;
    font-size: 10.5px;
    color: var(--muted);
    letter-spacing: .01em;
    white-space: nowrap;
}

.main-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    flex: 1;
    justify-content: flex-start;
    padding: 0;
}

.main-nav ul li a {
    display: block;
    color: var(--muted);
    padding: 14px 15px;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color var(--t), background var(--t);
    position: relative;
    text-decoration: none;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 2px;
    background: var(--terra);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .3s ease;
    border-radius: 1px;
}

.main-nav ul li a:hover {
    color: var(--forest);
    text-decoration: none;
}

.main-nav ul li a:hover::after {
    transform: scaleX(1);
}

.main-nav ul li a.active {
    color: var(--forest);
}

.main-nav ul li a.active::after {
    transform: scaleX(1);
    background: var(--terra);
}

/* =============================================
   DROPDOWN NAV — click-safe (hover + click/tap)
   ============================================= */
.main-nav ul li.has-dropdown { position: relative; display: flex; align-items: center; flex-shrink: 0; }
.main-nav ul li.has-dropdown > a { display: inline-flex; align-items: center; height: 44px; }

.dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    padding: 0 0.25rem;
    height: 44px;
    display: inline-flex;
    align-items: center;
    vertical-align: top;
    touch-action: manipulation;
    position: relative;
    z-index: 1;
}

.dropdown-toggle svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.25s ease;
    pointer-events: none;
}

.dropdown-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.main-nav ul li.has-dropdown .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    padding: 0.5rem 0;
    z-index: 50;
    flex-direction: column;
}

.main-nav ul li.has-dropdown .dropdown.open,
.main-nav ul li.has-dropdown:hover .dropdown {
    display: flex;
}

.main-nav ul .dropdown li {
    width: 100%;
}

.main-nav ul .dropdown li a {
    color: var(--forest);
    padding: 0.6rem 1.25rem;
    font-size: 13px;
    display: block;
    white-space: normal;
    position: static;
}

.main-nav ul .dropdown li a::after {
    display: none !important;
}

.main-nav ul .dropdown li a:hover {
    color: var(--forest-mid);
    background: rgba(0,94,93,.08);
    text-decoration: none;
}

/* Hamburger */
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 14px 20px;
    margin-left: auto;
    flex-direction: column;
    gap: 5px;
    color: var(--forest);
    touch-action: manipulation;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform .3s ease, opacity .3s ease;
    pointer-events: none;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   LAYOUT
   ============================================= */
.content-wrapper {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 28px;
    align-items: flex-start;
}

.main-content { flex: 1; min-width: 0; }
.sidebar      { width: 268px; flex-shrink: 0; }

/* =============================================
   PAGE TITLE
   ============================================= */
.page-title {
    font-family: var(--f-head);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 1.4rem;
    letter-spacing: -.3px;
    line-height: 1.1;
}

/* =============================================
   SECTION HEADER
   ============================================= */
.section-header {
    font-family: var(--f-head);
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--forest);
    margin: 2.8rem 0 1rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--border-soft);
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--terra);
    border-radius: 1px;
}

/* Remove any old ::before if present */
.section-header::before { display: none; }

/* =============================================
   CARDS
   ============================================= */
.card {
    background: var(--surface);
    border-radius: var(--r);
    padding: 28px 32px;
    margin-bottom: 24px;
    box-shadow: var(--sh-sm);
    border: 1px solid var(--border-soft);
    transition: box-shadow var(--t);
}

.card:hover {
    box-shadow: var(--sh-md);
    border-color: var(--border);
}

/* =============================================
   SECTION LEAD (emphasised intro statement)
   ============================================= */
.section-lead {
    font-family: var(--f-head);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    line-height: 1.5;
    color: var(--forest);
    border-left: 3px solid var(--terra);
    padding: 4px 0 4px 22px;
    margin: 1.8rem 0 2.2rem;
}

.text-accent {
    color: var(--terra);
    font-weight: 700;
}

/* =============================================
   INFO BOX
   ============================================= */
.info-box {
    background: var(--sage-light);
    border-left: 3px solid var(--sage);
    border-radius: var(--r-sm);
    padding: 16px 22px;
    margin: 1.6rem 0;
    font-size: .95rem;
    line-height: 1.7;
    color: var(--forest);
}

/* Next step link */
.next-step {
    margin-top: 1.6rem;
    font-size: .95rem;
    color: var(--text);
}
.next-step a {
    color: var(--forest);
    font-style: italic;
}
.next-step a:hover { color: var(--forest-mid); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--forest);
    color: #fff;
    padding: 11px 26px;
    border-radius: var(--r-pill);
    font-size: 13px;
    font-family: var(--f-body);
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
    border: 2px solid var(--forest);
    cursor: pointer;
    transition: background var(--t), color var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
    text-decoration: none;
    line-height: 1.3;
}

.btn:hover {
    background: var(--forest-mid);
    border-color: var(--forest-mid);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--sh-sm);
}

.btn:active { transform: translateY(0); box-shadow: none; }

.btn-secondary {
    background: transparent;
    color: var(--forest);
    border-color: var(--forest);
}
.btn-secondary:hover { background: var(--forest); color: #fff; }

.btn-terra {
    background: var(--terra);
    border-color: var(--terra);
    color: var(--text);
}
.btn-terra:hover { background: var(--terra-dark); border-color: var(--terra-dark); color: var(--text); }

.btn-zoom    { background: var(--zoom); border-color: var(--zoom); }
.btn-zoom:hover { background: var(--zoom-dk); border-color: var(--zoom-dk); }

.btn-invoice { background: var(--inv); border-color: var(--inv); }
.btn-invoice:hover { background: var(--inv-dk); border-color: var(--inv-dk); }

.action-buttons { display: flex; gap: 12px; flex-wrap: wrap; margin: 1.5rem 0; }

/* =============================================
   CONTENT LIST — custom bullets
   ============================================= */
ul.content-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1em;
}

ul.content-list li {
    padding: 5px 0 5px 24px;
    position: relative;
    margin-bottom: 2px;
}

ul.content-list li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--terra);
    opacity: .75;
}

/* =============================================
   ABOUT PORTRAIT
   ============================================= */
.about-card { display: flex; gap: 36px; align-items: stretch; }
.about-portrait { flex-shrink: 0; width: 220px; }

.portrait-img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    border-radius: 22px;
    display: block;
    background: var(--sage-light);
    box-shadow:
        0 6px 28px rgba(30,53,40,.15),
        0 0 0 3px var(--surface),
        0 0 0 5px var(--border-soft);
    transition: box-shadow var(--t);
}

.portrait-img:hover {
    box-shadow:
        0 10px 40px rgba(30,53,40,.22),
        0 0 0 3px var(--surface),
        0 0 0 5px var(--terra);
}

.about-text { flex: 1; min-width: 0; }

@media (max-width: 580px) {
    .about-card { flex-direction: column; align-items: center; }
    .about-portrait { width: 100%; max-width: 280px; }
    .portrait-img { min-height: 280px; border-radius: 18px; }
}

/* =============================================
   SIDEBAR
   ============================================= */
.sidebar {
    position: sticky;
    top: 80px;
}

.sidebar-widget {
    background: var(--surface);
    border-radius: var(--r);
    margin-bottom: 18px;
    box-shadow: var(--sh-xs);
    border: 1px solid var(--border-soft);
    overflow: hidden;
}

.sidebar-widget-title {
    padding: 12px 18px;
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    border-bottom: 1px solid var(--border-soft);
    background: var(--bg);
}

.sidebar-widget ul { list-style: none; padding: 0; margin: 0; }
.sidebar-widget ul li { border-bottom: 1px solid var(--border-soft); }
.sidebar-widget ul li:last-child { border-bottom: none; }

.sidebar-widget ul li a {
    display: block;
    padding: 11px 18px;
    font-size: 13px;
    color: var(--text);
    line-height: 1.45;
    transition: background var(--t), color var(--t), padding-left var(--t);
    text-decoration: none;
}

.sidebar-widget ul li a:hover {
    background: var(--sage-light);
    color: var(--forest);
    text-decoration: none;
    padding-left: 22px;
}

.sidebar-post-date {
    display: block;
    font-size: 10.5px;
    color: var(--muted);
    margin-top: 2px;
    letter-spacing: .02em;
}

.sidebar-cta { padding: 16px 18px; }
.sidebar-cta p { font-size: 13px; color: var(--muted); margin-bottom: 12px; line-height: 1.55; }

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-form .form-group { margin-bottom: 20px; }

.contact-form label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 8px;
}

.contact-form input:not([type="checkbox"]):not([type="radio"]),
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    font-size: 15px;
    font-family: var(--f-body);
    color: var(--text);
    background: var(--surface);
    transition: border-color var(--t), box-shadow var(--t);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.contact-form input[type="checkbox"],
.contact-form input[type="radio"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: var(--forest);
    cursor: pointer;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 4px rgba(94,125,82,.12);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #B5BDB2; font-weight: 300; }
.contact-form textarea { height: 150px; resize: vertical; }

/* =============================================
   ALERTS
   ============================================= */
.alert {
    padding: 16px 22px;
    border-radius: var(--r-sm);
    margin-bottom: 1.5rem;
    font-size: 14.5px;
    line-height: 1.65;
}

.alert-success {
    background: #EAF2EC;
    border: 1px solid #B0D4BA;
    border-left: 4px solid var(--inv);
    color: #174A2A;
}

.alert-error {
    background: #FDF0EF;
    border: 1px solid #F0B8B5;
    border-left: 4px solid #B8504A;
    color: #7A1E1A;
}

/* =============================================
   FAQ ACCORDION
   ============================================= */
.faq-list { margin-top: .5rem; }

.faq-item {
    background: var(--surface);
    border-radius: var(--r-sm);
    margin-bottom: 10px;
    box-shadow: var(--sh-xs);
    border: 1px solid var(--border-soft);
    overflow: hidden;
    transition: box-shadow var(--t);
}

.faq-item:hover { box-shadow: var(--sh-sm); }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 17px 22px;
    cursor: pointer;
    font-size: 15px;
    font-family: var(--f-head);
    font-weight: 600;
    color: var(--text);
    background: var(--surface);
    transition: background var(--t), color var(--t);
    user-select: none;
    -webkit-user-select: none;
}

.faq-question:hover { background: var(--sage-light); }

.faq-question.open {
    background: var(--forest);
    color: #fff;
}

.faq-toggle {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 300;
    font-family: var(--f-body);
    opacity: .5;
    transition: transform .3s ease, opacity var(--t);
}

.faq-question.open .faq-toggle {
    transform: rotate(45deg);
    opacity: 1;
}

.faq-answer {
    display: none;
    padding: 18px 22px 22px;
    font-size: 15px;
    line-height: 1.78;
    background: var(--surface);
    border-top: 1px solid var(--border-soft);
}

.faq-answer.open { display: block; }
.faq-answer a { color: var(--terra); }

/* =============================================
   RESOURCE CARDS
   ============================================= */
.resource-card {
    background: var(--surface);
    border-radius: var(--r);
    padding: 28px 32px;
    margin-bottom: 24px;
    box-shadow: var(--sh-sm);
    border: 1px solid var(--border-soft);
    border-left: 4px solid var(--terra);
    transition: box-shadow var(--t), transform var(--t);
}

.resource-card:hover {
    box-shadow: var(--sh-md);
    transform: translateX(3px);
}

.resource-card h3 {
    font-family: var(--f-head);
    font-size: 1.35rem;
    color: var(--forest);
    margin-bottom: 12px;
}

.resource-card h4 {
    font-family: var(--f-body);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .03em;
    text-transform: uppercase;
    margin: 16px 0 8px;
    color: var(--muted);
}

/* =============================================
   BLOG
   ============================================= */
.blog-post {
    padding-bottom: 36px;
    margin-bottom: 36px;
    border-bottom: 1px solid var(--border-soft);
    position: relative;
}

.blog-post:last-of-type { border-bottom: none; }

.blog-post-title {
    font-family: var(--f-head);
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 6px;
    line-height: 1.2;
}

.blog-post-meta {
    font-size: 11px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-post-meta::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 2px;
    background: var(--terra);
    border-radius: 1px;
    flex-shrink: 0;
}

.blog-post-body {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--border-soft);
}

.blog-post-body h4 {
    font-size: 1rem;
    font-family: var(--f-body);
    font-weight: 600;
    margin: 14px 0 6px;
}

/* =============================================
   JUMP NAV  (inline-styled <nav> elements)
   ============================================= */
nav[style] {
    background: var(--surface) !important;
    border: none !important;
    border-radius: var(--r-sm) !important;
    padding: 14px 20px !important;
    margin-bottom: 28px;
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    box-shadow: var(--sh-xs);
    border: 1px solid var(--border-soft) !important;
}

nav[style] strong { color: var(--muted); font-weight: 600; }

nav[style] a {
    display: inline-block;
    color: var(--forest) !important;
    font-weight: 500;
    font-size: 12.5px;
    padding: 5px 14px;
    border-radius: var(--r-pill);
    background: var(--sage-light);
    margin-left: 0 !important;
    letter-spacing: .02em;
    transition: background var(--t), color var(--t);
}

nav[style] a:hover {
    background: var(--forest);
    color: #fff !important;
    text-decoration: none;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--forest-deep);
    color: rgba(255,255,255,.42);
    padding: 60px 28px 30px;
    margin-top: 60px;
    font-size: 13.5px;
    border-top: 3px solid var(--terra);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col-title {
    font-family: var(--f-body);
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    margin-bottom: 18px;
}

.footer-col p,
.footer-col a {
    display: block;
    color: rgba(255,255,255,.4);
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.55;
}

.footer-col a:hover { color: rgba(255,255,255,.9); text-decoration: none; }

/* Phone/email lines pair an icon-badge with a link inside a <p> — keep the link inline next to
   its icon instead of the block display used for the footer's stacked nav-link columns. */
.footer-col p a { display: inline; }
.footer-col p { display: flex; align-items: center; gap: 8px; }

.footer-bottom {
    max-width: 1200px;
    margin: 44px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
    font-size: 11.5px;
    color: rgba(255,255,255,.22);
}

.footer-bottom a { color: rgba(255,255,255,.3); }
.footer-bottom a:hover { color: rgba(255,255,255,.75); text-decoration: none; }

/* =============================================
   HERO SECTION  — Full-width background image
   ============================================= */
.hero {
    position: relative;
    overflow: hidden;
    background-image: url('../images/Hero & Welcome.png');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    min-height: 580px;
    display: flex;
    align-items: center;
    border-bottom: 3px solid var(--terra);
}

/* Each page hero just supplies its own background-image; sizing/position/gradient come from
   .hero. These are dedicated, purpose-shot images at 2752×1536, so a plain full-bleed cover
   (same treatment as the welcome hero) renders sharp at any viewport width. */
.hero--about                    { background-image: url('../images/About Me.png'); }
.hero--how-therapy-works        { background-image: url('../images/How Therapy Works.png'); }
.hero--clinical-supervision     { background-image: url('../images/Clinical Supervision.png'); }
.hero--healing-through-reading  { background-image: url('../images/Healing in Reading.png'); }
.hero--training-workshops       { background-image: url('../images/Training & Workshops.png'); }
.hero--faqs                     { background-image: url('../images/Frequently Asked Questions.png'); }
.hero--contact                  { background-image: url('../images/Contact Me.png'); }

/* Gradient overlay — ensures text is always readable */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(17,80,80,.90) 0%,
        rgba(17,80,80,.75) 42%,
        rgba(17,80,80,.35) 72%,
        rgba(17,80,80,.10) 100%
    );
    z-index: 0;
}

.hero::after { display: none; }

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 110px 28px 90px;
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* ---- TEXT on image ---- */
.hero-content {
    flex: 1 1 auto;
    max-width: 600px;
    animation: fadeUp .7s ease both;
}

/* ---- LOGO column ---- */
.hero-logo-col {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: -24px;
    animation: fadeUp .9s ease both;
}

.hero-logo-img {
    max-width: 620px;
    width: 100%;
    filter: drop-shadow(0 8px 32px rgba(0,0,0,.35));
}

/* ---- QUOTE style ---- */
.hero-quote {
    font-family: var(--f-head);
    font-size: clamp(1.9rem, 4.5vw, 3.2rem);
    font-weight: 600;
    font-style: italic;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 22px;
    letter-spacing: -.3px;
    text-shadow: 0 2px 24px rgba(0,0,0,.22);
    border: none;
    padding: 0;
    quotes: none;
}

.hero-eyebrow {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.72);
    margin-top: 28px;
    margin-bottom: 0;
    display: block;
    white-space: nowrap;
}

.hero-eyebrow::before { display: none; }


.hero-desc {
    font-size: 1.08rem;
    line-height: 1.82;
    color: rgba(255,255,255,.84);
    max-width: 520px;
    margin-bottom: 38px;
    text-shadow: 0 1px 12px rgba(0,0,0,.3);
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.btn-hero-primary {
    background: var(--terra);
    border-color: var(--terra);
    color: var(--text);
    font-size: 13.5px;
    padding: 13px 30px;
}

.btn-hero-primary:hover {
    background: var(--terra-dark);
    border-color: var(--terra-dark);
    color: var(--text);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(204,122,96,.38);
}

.btn-hero-outline {
    background: rgba(255,255,255,.14);
    color: #fff;
    border-color: rgba(255,255,255,.55);
    font-size: 13.5px;
    padding: 13px 30px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.btn-hero-outline:hover {
    background: rgba(255,255,255,.26);
    border-color: rgba(255,255,255,.9);
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

.hero-actions .btn-terra,
.hero-actions .btn-hero-primary,
.hero-actions .btn-terra:hover,
.hero-actions .btn-hero-primary:hover {
    color: #fff;
}

.hero-trust {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 11.5px;
    font-weight: 500;
    color: rgba(255,255,255,.62);
    letter-spacing: .04em;
    text-transform: uppercase;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-trust span::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sage);
    flex-shrink: 0;
}

/* hero-visual hidden — layout is now full-bg */
.hero-visual    { display: none; }
.hero-img-wrap  { display: none; }
.hero-img       { display: none; }

/* =============================================
   PAGE HERO BANNER  (inner pages — optional)
   ============================================= */
.page-hero {
    background: var(--forest);
    padding: 48px 28px;
    text-align: center;
}

.page-hero .page-title {
    color: #fff;
    margin-bottom: .4rem;
}

.page-hero .page-subtitle {
    color: rgba(255,255,255,.5);
    font-size: .95rem;
}

/* =============================================
   PAGE HERO — SPLIT (photo + text)
   about.html, how-therapy-works.html
   ============================================= */
.page-hero-split {
    display: flex;
    align-items: stretch;
    min-height: 440px;
    overflow: hidden;
    border-bottom: 3px solid var(--terra);
}

.page-hero-split-media {
    flex: 0 0 42%;
    position: relative;
    min-height: 320px;
}

.page-hero-split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-hero-split-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0) 55%, var(--bg) 100%);
}

.page-hero-split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px 6% 56px 48px;
    max-width: 680px;
}

.page-hero-split-title {
    font-family: var(--f-head);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -.3px;
    margin-bottom: .9rem;
}

.page-hero-split-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: .7rem;
}

.page-hero-split-text:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
    .page-hero-split { flex-direction: column; min-height: auto; }
    .page-hero-split-media { flex-basis: auto; height: 260px; }
    .page-hero-split-media::after { background: linear-gradient(180deg, rgba(255,255,255,0) 55%, var(--bg) 100%); }
    .page-hero-split-content { padding: 36px 20px 8px; max-width: 100%; }
}

/* =============================================
   DECORATIVE DIVIDER
   ============================================= */
.divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 2.5rem 0;
    opacity: .35;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.divider-leaf {
    width: 16px;
    height: 16px;
    fill: var(--sage);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .footer-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .content-wrapper {
        flex-direction: column;
        padding: 32px 20px;
        gap: 28px;
    }

    .sidebar {
        width: 100%;
        position: static;
    }

    /* Mobile nav */
    .main-nav-inner {
        flex-wrap: wrap;
        padding: 0 16px;
    }

    .main-nav-logo-img {
        height: 34px;
    }

    .main-nav-tagline {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    #nav-list {
        display: none;
        width: 100%;
        background: var(--surface);
        border-top: 1px solid var(--border-soft);
    }

    #nav-list.open {
        display: flex;
        animation: fadeIn .25s ease;
    }

    .main-nav ul {
        flex-direction: column;
        max-width: 100%;
    }

    .main-nav ul li a {
        padding: 13px 20px;
        border-bottom: 1px solid var(--border-soft);
        letter-spacing: .03em;
    }

    .main-nav ul li.has-dropdown > a {
        height: auto;
    }

    .main-nav ul li a::after {
        display: none;
    }

    .main-nav ul li a.active {
        border-left: 3px solid var(--terra);
        padding-left: 17px;
        color: var(--forest);
    }

    /* Mobile dropdown — expand inline instead of overlaying, with tappable toggle */
    .main-nav ul li.has-dropdown .dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        margin: 0 0 4px;
    }

    .dropdown-toggle {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Hero — full-bg layout */
    /* On narrow screens "cover" crops most of the image's width away
       (it's a wide 2752x1536 shot). Switch to "contain" so the whole
       photo is visible, like on desktop, with the brand colour filling
       the letterboxed space behind the overlaid text. */
    .hero {
        min-height: 480px;
        background-size: contain;
        background-position: top center;
        background-color: var(--forest);
    }
    .hero-inner { padding: 72px 20px 56px; }
    .hero-content { max-width: 100%; }
    .hero-desc { max-width: 100%; }
    .hero-actions { justify-content: flex-start; }
    .hero-trust  { justify-content: flex-start; }
    .hero-eyebrow { display: block; }
    .hero-inner { flex-direction: column; gap: 36px; }
    .hero-logo-col { order: -1; }
    .hero-logo-img { max-width: 260px; }
    .hero-badges { gap: 10px; }

    .page-title  { font-size: 2.2rem; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
    .action-buttons { flex-direction: column; }
    .action-buttons .btn { justify-content: center; }
}

@media (max-width: 640px) {
    .footer-inner { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 480px) {
    .card        { padding: 18px 20px; }
    .resource-card { padding: 20px 22px; }
    .btn         { padding: 10px 20px; }
    .page-title  { font-size: 1.85rem; }
    .hero { min-height: 400px; }
    .hero-inner { padding: 56px 16px 44px; }
    .hero-quote { font-size: 1.8rem; }
    .hero-badges { gap: 8px; }
    .hero-logo-img { max-width: 210px; }
}
