/* Scott Morris — Regenerative Systems */
/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1e4d32;
    --primary-light: #2d6a4a;
    --primary-dark: #143d28;
    --secondary: #7d5c3e;
    --accent: #c4763a;
    --accent-soft: #e8a574;
    --bg-light: #f4efe8;
    --bg-cream: #faf7f2;
    --bg-white: #ffffff;
    --text-dark: #1a1814;
    --text-medium: #4a4540;
    --text-light: #7a736b;
    --border-light: #ddd4c8;
    --font-serif: 'Fraunces', 'Georgia', serif;
    --font-sans: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1140px;
    --header-height: 72px;
    --radius: 14px;
    --radius-sm: 10px;
    --shadow-sm: 0 2px 12px rgba(26, 24, 20, 0.06);
    --shadow-md: 0 12px 40px rgba(26, 24, 20, 0.08);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.75;
    font-size: 1.05rem;
    -webkit-font-smoothing: antialiased;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
}

h2 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    margin-top: 2.5rem;
}

h2:first-child {
    margin-top: 0;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    color: var(--primary);
    margin-bottom: 0.5rem;
    margin-top: 1.75rem;
}

h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-dark);
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-medium);
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.25s var(--ease);
}

a:hover {
    color: var(--accent);
}

ul,
ol {
    margin-bottom: 1.25rem;
    padding-left: 1.35rem;
}

li {
    color: var(--text-medium);
    margin-bottom: 0.45rem;
}

li::marker {
    color: var(--accent);
}

/* ===== CONTAINER ===== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container--narrow {
    max-width: 780px;
}

/* ===== HEADER ===== */
header {
    background: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo,
.logo a {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-dark);
    letter-spacing: -0.03em;
    text-decoration: none;
}

.logo a:hover {
    color: var(--primary);
}

.logo span {
    font-weight: 400;
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0;
}

nav {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-medium);
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

nav a:hover {
    color: var(--primary-dark);
    background: rgba(30, 77, 50, 0.08);
}

nav a.active {
    color: var(--primary-dark);
    background: rgba(30, 77, 50, 0.12);
}

nav a.cta-nav {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.15rem;
    margin-left: 0.35rem;
    font-weight: 600;
}

nav a.cta-nav:hover {
    background: var(--primary-light);
    color: white;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-sans);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
    border: none;
    cursor: pointer;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--primary-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 77, 50, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--bg-cream);
    border: 2px solid rgba(255, 255, 255, 0.45);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.btn-on-light.btn-secondary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-on-light.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

/* ===== HOME HERO ===== */
.hero-home {
    position: relative;
    min-height: min(88vh, 720px);
    display: flex;
    align-items: center;
    padding: 4rem 0 5rem;
    overflow: hidden;
    color: var(--bg-cream);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(155deg, var(--primary-dark) 0%, #1a3d2e 45%, #0f2920 100%);
    z-index: 0;
}

.hero-bg-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(15, 41, 32, 0.92) 0%, rgba(15, 41, 32, 0.72) 45%, rgba(15, 41, 32, 0.55) 100%),
        radial-gradient(ellipse 80% 60% at 70% 20%, rgba(196, 118, 58, 0.15) 0%, transparent 55%);
    opacity: 1;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-soft);
    margin-bottom: 1.25rem;
}

.hero-eyebrow::before {
    content: '';
    width: 2rem;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.hero-home h1 {
    color: white;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.hero-home .subheadline {
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    color: rgba(250, 247, 242, 0.82);
    line-height: 1.65;
    margin-bottom: 2.25rem;
    max-width: 580px;
}

.hero-home .cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    padding: 3.5rem 0 2.5rem;
    border-bottom: 1px solid var(--border-light);
}

.page-hero h1 {
    color: var(--primary-dark);
    font-size: clamp(2rem, 4vw, 2.85rem);
    margin-bottom: 0.75rem;
}

.page-hero .lead {
    font-size: 1.15rem;
    color: var(--text-medium);
    max-width: 640px;
    margin-bottom: 0;
}

/* ===== PAGE CONTENT ===== */
.page-content {
    padding: 4rem 0 5rem;
}

.page-content--tight-top {
    padding-top: 2.5rem;
}

.page-content h2 {
    margin-top: 3.5rem;
}

.page-content h2:first-of-type {
    margin-top: 0;
}

.page-content h3 {
    margin-top: 2.25rem;
}

.content-chunk {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-light);
}

.content-chunk:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.content-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
    margin: 2.5rem 0;
}

.content-split--wide-photo {
    grid-template-columns: 0.95fr 1.05fr;
}

.content-split__figure {
    margin: 0;
}

.content-split__figure img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    display: block;
}

.content-split__figure img.portrait {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
}

.content-split__figure figcaption,
.media-break figcaption {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.65rem;
    line-height: 1.5;
}

.page-band {
    padding: 4.5rem 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    text-align: left;
    right: 0px;
    align-items: center;
}

.page-band .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.media-break {
    margin: 0;
    border: none;
}

.media-break--wide {
    width: 100%;
}

.media-break--wide img {
    width: 100%;
    max-height: min(52vh, 480px);
    object-fit: cover;
    object-position: center;
    display: block;
}

.media-break--inset {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.media-break--inset img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    display: block;
}

.media-break--inset figcaption {
    max-width: var(--max-width);
    margin: 0.65rem auto 0;
    padding: 0 1.5rem;
}

.photo-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin: 3rem 0;
}

.photo-duo figure {
    margin: 0;
}

.photo-duo img {
    width: 100%;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    display: block;
}

.photo-duo figcaption {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.landmark-item--media {
    display: grid;
    grid-template-columns: 1fr minmax(200px, 280px);
    gap: 1.5rem;
    align-items: start;
}

.landmark-item__photo {
    margin: 0;
}

.landmark-item__photo img {
    width: 100%;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    display: block;
}

.landmark-item__photo figcaption {
    font-size: 0.75rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.4rem;
}

.spacer-section {
    height: 2rem;
}

@media (max-width: 768px) {
    .content-split,
    .content-split--wide-photo {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .content-split--reverse-mobile .content-split__figure {
        order: -1;
    }

    .photo-duo {
        grid-template-columns: 1fr;
    }

    .landmark-item--media {
        grid-template-columns: 1fr;
    }

    .landmark-item__photo {
        max-width: 320px;
    }
}

.prose img,
.prose-img,
.figure-placeholder {
    width: 100%;
    max-width: 560px;
    border-radius: var(--radius);
    margin: 2rem 0 0.75rem;
    display: block;
}

.figure-placeholder {
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, var(--border-light) 0%, var(--bg-cream) 50%, rgba(30, 77, 50, 0.12) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.caption {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: -0.25rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
    background: var(--bg-white);
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}

.social-proof .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-proof .label {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.social-proof .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.social-proof .items span:not(.divider) {
    font-size: 0.875rem;
    color: var(--text-medium);
    background: var(--bg-light);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--border-light);
    white-space: nowrap;
}

.social-proof .divider {
    display: none;
}

/* ===== SECTIONS ===== */
section {
    padding: 4.5rem 0;
}

section.alt-bg {
    background: var(--bg-white);
}

.section-title {
    text-align: center;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 620px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== METHODOLOGY ===== */
.methodology-teaser {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.methodology-card {
    background: var(--bg-white);
    padding: 2rem 1.75rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
    display: flex;
    flex-direction: column;
}

.methodology-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.methodology-card::before {
    content: '';
    display: block;
    width: 2.5rem;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    margin-bottom: 1.25rem;
}

.methodology-card h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

.methodology-card p {
    font-size: 0.95rem;
    flex-grow: 1;
}

.methodology-card .framework-note {
    font-size: 0.82rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 0;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-light);
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-card h3 {
    margin-top: 0;
    font-size: 1.25rem;
}

.service-card .service-subtitle {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-card .landmarks {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
    margin-bottom: 0;
}

/* ===== PORTFOLIO ===== */
.portfolio-tier {
    margin-bottom: 4.5rem;
    padding-bottom: 1rem;
}

.portfolio-tier + .portfolio-tier {
    padding-top: 1rem;
}

.portfolio-tier > h3 {
    font-size: 1.65rem;
    margin-top: 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-light);
}

.portfolio-tier .tier-sub {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    font-style: italic;
}

.landmark-item {
    background: var(--bg-white);
    padding: 1.75rem 2rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--accent);
    transition: border-left-color 0.25s var(--ease);
}

.landmark-item:hover {
    border-left-color: var(--primary);
}

.landmark-item h4 {
    margin-bottom: 0.15rem;
}

.landmark-item .role {
    font-weight: 500;
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.landmark-item .outcome {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.75rem;
    margin-bottom: 0;
    font-style: italic;
    padding-left: 1rem;
    border-left: 2px solid var(--border-light);
}

.current-practice-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.current-practice-item {
    background: var(--bg-white);
    padding: 1.35rem 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.current-practice-item strong {
    display: block;
    color: var(--primary-dark);
    font-family: var(--font-serif);
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.current-practice-item span {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.historical-list {
    columns: 2;
    column-gap: 2rem;
    list-style: none;
    padding: 0;
}

.historical-list li {
    break-inside: avoid;
    margin-bottom: 0.65rem;
    font-size: 0.95rem;
    padding-left: 1.25rem;
    position: relative;
}

.historical-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

/* ===== THOUGHT LEADERSHIP ===== */
.book-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 2rem;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    margin-bottom: 1.5rem;
    transition: box-shadow 0.35s var(--ease);
}

.book-card:hover {
    box-shadow: var(--shadow-md);
}

.book-card .book-cover {
    width: 140px;
    height: 190px;
    border-radius: 6px 10px 10px 6px;
    object-fit: cover;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.15);
}

.book-card .book-content h4 {
    margin-top: 0;
    font-family: var(--font-serif);
    font-size: 1.35rem;
}

.book-card .book-content .book-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.book-card .book-content .book-links {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
}

.teaching-list {
    list-style: none;
    padding: 0;
}

.teaching-list li {
    padding: 1rem 1.35rem;
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    margin-bottom: 0.65rem;
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--primary-light);
}

.teaching-list li strong {
    color: var(--primary-dark);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.tool-card {
    background: var(--bg-white);
    padding: 1.75rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.tool-card h4 {
    margin-top: 0.25rem;
}

.tool-card .tool-preview {
    width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    border: 1px solid var(--border-light);
}

.tool-card .tool-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.35rem;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 0.5rem;
}

.contact-method {
    background: var(--bg-white);
    padding: 1.5rem 1.75rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    height: 50;
}

.contact-method h4 {
    margin-bottom: 0.35rem;
    font-family: var(--font-serif);
}

.contact-method .contact-detail {
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 0.35rem;
}

.contact-method .contact-detail a {
    color: var(--primary);
}

.contact-method .contact-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-cta-box {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 2.75rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.contact-cta-box h3 {
    color: white;
    margin-top: 0;
}

.contact-cta-box p {
    color: rgba(255, 255, 255, 0.88);
}

.contact-cta-box .btn {
    background: white;
    color: var(--primary-dark);
    margin-top: 0.75rem;
}

.contact-cta-box .btn:hover {
    background: var(--bg-cream);
    color: var(--primary-dark);
}

.cta-band {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-white);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    margin-top: 2.5rem;
}

.cta-band p {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FOOTER ===== */
footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.65);
    padding: 3rem 0 2.5rem;
    margin-top: 0;
}

footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

footer .footer-brand {
    max-width: 280px;
}

footer .footer-brand strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0.5rem;
}

footer .footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0;
    line-height: 1.6;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
}

footer a:hover {
    color: var(--accent-soft);
}

footer .footer-links {
    display: flex;
    gap: 1.25rem 1.75rem;
    flex-wrap: wrap;
}

footer .footer-links a {
    font-size: 0.9rem;
}

footer .footer-copy {
    width: 100%;
    padding-top: 2rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

/* ===== UTILITY ===== */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .methodology-teaser,
    .services-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .book-card .book-cover {
        width: 100%;
        max-width: 180px;
        height: 240px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        display: none;
        flex-direction: column;
        background: var(--bg-cream);
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        padding: 1.25rem 1.5rem 1.5rem;
        border-bottom: 1px solid var(--border-light);
        box-shadow: var(--shadow-md);
        gap: 0.25rem;
        align-items: stretch;
    }

    nav.open {
        display: flex;
    }

    nav a {
        padding: 0.65rem 1rem;
        font-size: 1rem;
    }

    nav a.cta-nav {
        margin-left: 0;
        margin-top: 0.5rem;
        text-align: center;
    }

    .hero-home {
        min-height: auto;
        padding: 3rem 0 3.5rem;
    }

    .hero-home .cta-group {
        flex-direction: column;
    }

    .hero-home .cta-group .btn {
        width: 100%;
    }

    section {
        padding: 3rem 0;
    }

    .page-hero {
        padding: 2.5rem 0 2rem;
    }

    .current-practice-list {
        grid-template-columns: 1fr;
    }

    .historical-list {
        columns: 1;
    }

    footer .container {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.1rem;
    }

    .landmark-item {
        padding: 1.25rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
