/* ============================================================
   Stoneledger Advisory Group — Shared Stylesheet
   ============================================================
   Fonts: DM Serif Display (headings) + Inter (body)
   Palette: Navy / Bronze / Warm White
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600&display=swap');

/* ------------------------------------------------------------
   CSS Custom Properties
   ------------------------------------------------------------ */
:root {
    --navy: #1a2332;
    --bronze: #b8894a;
    --bronze-light: #d4a85c;
    --warm-white: #f8f6f3;
    --warm-gray: #e8e2d9;
    --text: #2d3436;
    --text-light: #636e72;
    --white: #ffffff;
    --nav-height: 70px;
    --max-width: 1100px;
    --content-narrow: 700px;
    --transition: 0.3s ease;
}

/* ------------------------------------------------------------
   Reset & Base
   ------------------------------------------------------------ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.8;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    padding-top: var(--nav-height);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ------------------------------------------------------------
   Typography
   ------------------------------------------------------------ */
h1, h2, h3, h4 { font-family: 'DM Serif Display', serif; font-weight: 400; color: var(--navy); line-height: 1.25; }
h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { color: var(--text-light); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--bronze);
    margin-bottom: 1rem;
}
.section-heading {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: var(--navy);
    margin-bottom: 1.5rem;
}
.section-sub {
    color: var(--text-light);
    max-width: 600px;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}
.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Container */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }

/* ------------------------------------------------------------
   Buttons
   ------------------------------------------------------------ */
.btn, .btn-primary {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.9rem 2.2rem;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}
.btn--primary, .btn-primary {
    background: var(--bronze);
    color: var(--white);
}
.btn--primary:hover, .btn-primary:hover {
    background: var(--bronze-light);
    transform: translateY(-1px);
}

.text-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--bronze);
    transition: color var(--transition);
}
.text-link:hover { color: var(--bronze-light); }
.text-link-light {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--bronze-light);
    transition: color var(--transition);
}
.text-link-light:hover { color: var(--white); }

/* ------------------------------------------------------------
   Navigation
   ------------------------------------------------------------ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: var(--navy);
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 2rem;
}
.nav-inner {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    color: var(--white);
    white-space: nowrap;
}
.logo span { color: var(--bronze-light); }

/* Desktop Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-links > li > a {
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.85);
    transition: color var(--transition);
}
.nav-links > li > a:hover { color: var(--bronze-light); }

/* Services Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after {
    content: ' ▾';
    font-size: 0.65rem;
}
.dropdown {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 50%;
    transform: translateX(-50%);
    min-width: 240px;
    background: var(--white);
    border-radius: 4px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    z-index: 100;
}
.dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    width: 12px;
    height: 12px;
    background: var(--white);
    transform: translateX(-50%) rotate(45deg);
}
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
}
.dropdown li a {
    display: block;
    padding: 0.65rem 1.5rem;
    font-size: 0.85rem;
    color: var(--text);
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}
.dropdown li a:hover {
    background: var(--warm-white);
    color: var(--bronze);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: transform var(--transition), opacity var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background: var(--navy);
    padding: 2rem;
    gap: 0;
    overflow-y: auto;
    z-index: 999;
}
.nav-links.open > li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav-links.open > li > a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
}
.nav-links.open .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
    padding: 0 0 0 1.5rem;
    min-width: 0;
}
.nav-links.open .dropdown::before { display: none; }
.nav-links.open .dropdown li a {
    color: rgba(255,255,255,0.65);
    padding: 0.6rem 0;
    font-size: 0.9rem;
}
.nav-links.open .dropdown li a:hover {
    background: transparent;
    color: var(--bronze-light);
}

/* ------------------------------------------------------------
   Homepage Hero
   ------------------------------------------------------------ */
.hero {
    background: var(--navy);
    padding: 6rem 2rem;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-inner { max-width: 750px; margin: 0 auto; }
.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--bronze-light);
    margin-bottom: 1.5rem;
}
.hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
}
.hero-cta {
    display: inline-block;
    background: var(--bronze);
    color: var(--white);
    padding: 0.9rem 2.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 0.2s;
}
.hero-cta:hover { background: var(--bronze-light); }

/* ------------------------------------------------------------
   Page Hero (Subpages)
   ------------------------------------------------------------ */
.page-hero {
    background: var(--navy);
    padding: 3.5rem 2rem 3rem;
    text-align: left;
}
.page-hero .section-inner { max-width: var(--max-width); margin: 0 auto; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 600px; line-height: 1.7; }
.page-hero .section-label { color: var(--bronze-light); }

/* Breadcrumb */
.breadcrumb {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 1.5rem;
}
.breadcrumb a {
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--bronze-light); }

/* ------------------------------------------------------------
   Content Sections
   ------------------------------------------------------------ */
.section { padding: 5rem 2rem; }
.section--white { background: var(--white); }
.section--warm, .alt-bg { background: var(--warm-white); }

/* Named sections from original homepage */
.services { padding: 6rem 2rem; background: var(--white); }
.industries { padding: 6rem 2rem; background: var(--white); }
.about { padding: 6rem 2rem; background: var(--warm-white); }
.approach { padding: 5rem 2rem; background: var(--navy); }
.approach .section-label { color: var(--bronze-light); }
.approach .section-heading { color: var(--white); }
.approach h2 { color: var(--white); }
.approach p { color: rgba(255,255,255,0.55); }

/* About section (homepage) */
.about-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: center;
}
.about-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--bronze);
    margin-bottom: 1rem;
}
.about h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.2rem);
    margin-bottom: 1.5rem;
    color: var(--navy);
    line-height: 1.25;
}
.about p { color: var(--text-light); margin-bottom: 1.2rem; font-size: 0.95rem; line-height: 1.8; }
.credentials {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--warm-gray);
}
.credential { text-align: center; }
.credential-number {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    color: var(--navy);
}
.credential-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.25rem;
}
.credential-desc {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* Credentials grid (about page) */
.credentials-section { padding: 5rem 2rem; background: var(--white); }
.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
}
.credential-card {
    background: var(--warm-white);
    padding: 1.75rem;
    border-left: 3px solid var(--bronze);
}
.credential-card h4 { margin-bottom: 0.35rem; }
.credential-card p { font-size: 0.85rem; }

/* Approach section (homepage) */
.approach-inner { max-width: var(--max-width); margin: 0 auto; }
.approach-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 3rem;
}
.approach-item {
    padding: 2rem;
    border-left: 1px solid rgba(255,255,255,0.1);
}
.approach-item:first-child { border-left: none; }
.approach-step {
    font-family: 'DM Serif Display', serif;
    font-size: 0.85rem;
    color: var(--bronze-light);
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}
.approach-item h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}
.approach-item p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.approach-link-wrap { margin-top: 2.5rem; text-align: center; }

/* ------------------------------------------------------------
   Two-Column Grid
   ------------------------------------------------------------ */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: var(--max-width);
    margin: 0 auto;
}
.col {} /* Generic column */

/* ------------------------------------------------------------
   Industry Cards (Homepage)
   ------------------------------------------------------------ */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.industry-card {
    display: block;
    background: var(--warm-white);
    border-top: 3px solid var(--bronze);
    padding: 2.5rem 2rem;
    transition: transform var(--transition), box-shadow var(--transition);
}
.industry-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.industry-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
}
.industry-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 1.25rem; }
.card-link {
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--bronze);
    transition: color var(--transition);
}
.card-link:hover { color: var(--bronze-light); }

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.service-card {
    background: var(--warm-white);
    border-top: 3px solid var(--bronze);
    padding: 2.5rem 2rem;
    transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.service-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--navy);
}
.service-card p { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; }

/* ------------------------------------------------------------
   Feature List (Bronze Bullets)
   ------------------------------------------------------------ */
.feature-list { list-style: none; padding: 0; }
.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}
.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--bronze);
}

/* ------------------------------------------------------------
   Founder / About Page
   ------------------------------------------------------------ */
.founder-section {
    max-width: var(--max-width);
    margin: 0 auto;
}
.founder-photo {
    width: 100%;
    max-width: 360px;
    height: auto;
    object-fit: cover;
    border-bottom: 4px solid var(--bronze);
}
.founder-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: var(--bronze);
    margin-bottom: 1.5rem;
}

/* Why the Name */
.why-name-section {
    padding: 5rem 2rem;
    background: var(--navy);
}
.why-name-section h2 { color: var(--white); margin-bottom: 1rem; }
.why-name-section p { color: rgba(255,255,255,0.65); max-width: 700px; }

/* ------------------------------------------------------------
   Process Steps (Approach page)
   ------------------------------------------------------------ */
.process-step {
    padding: 4rem 2rem;
}
.process-step .section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}
.step-number {
    font-family: 'DM Serif Display', serif;
    font-size: 3rem;
    color: var(--warm-gray);
    margin-bottom: 0.5rem;
}
.step-items { margin-top: 1.5rem; }
.step-items li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}
.step-items li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--bronze);
}

/* ------------------------------------------------------------
   CTA Banner
   ------------------------------------------------------------ */
.cta-banner {
    background: var(--navy);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--bronze), transparent);
}
.cta-banner__inner, .cta-inner { max-width: 650px; margin: 0 auto; }
.cta-banner__title, .cta-banner h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.6rem, 3vw, 2rem);
    color: var(--white);
    margin-bottom: 1rem;
}
.cta-banner__text, .cta-banner p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 2rem;
    line-height: 1.7;
}
.cta-email {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--bronze-light);
    transition: color var(--transition);
}
.cta-email:hover { color: var(--white); }

/* ------------------------------------------------------------
   Contact Page
   ------------------------------------------------------------ */
.contact-section { padding: 5rem 2rem; background: var(--white); }
.contact-email {
    display: inline-block;
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    color: var(--bronze);
    border-bottom: 2px solid var(--bronze);
    transition: color 0.2s, border-color 0.2s;
}
.contact-email:hover { color: var(--navy); border-color: var(--navy); }
.contact-location { margin-top: 1rem; color: var(--text-light); }
.contact-free {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: var(--warm-white);
    border-left: 3px solid var(--bronze);
    font-size: 0.9rem;
    color: var(--text);
}
.contact-serving { margin-top: 1rem; font-size: 0.88rem; color: var(--text-light); font-style: italic; }

/* Contact Form */
.contact-form { background: var(--warm-white); padding: 2rem; border-radius: 3px; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--navy);
    margin-bottom: 0.4rem;
}
.form-group .optional {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-light);
    font-size: 0.78rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--warm-gray);
    padding: 0.75rem 1rem;
    border-radius: 2px;
    transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bronze);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-note { margin-top: 0.75rem; font-size: 0.82rem; color: var(--text-light); }

/* What Happens Next */
.what-next-section { padding: 5rem 2rem; background: var(--warm-white); }
.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: var(--max-width);
    margin: 2rem auto 0;
}
.next-step-card {
    text-align: center;
    padding: 2rem 1.5rem;
}
.next-step-card h3 { margin-bottom: 0.75rem; }
.next-step-card p { font-size: 0.9rem; }

/* ------------------------------------------------------------
   Insights / Blog
   ------------------------------------------------------------ */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}
.insight-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--warm-gray);
    border-radius: 3px;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.insight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.insight-card__body { padding: 1.75rem; }
.insight-card__category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bronze);
    margin-bottom: 0.6rem;
}
.insight-card__title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 0.6rem;
    line-height: 1.35;
}
.insight-card__excerpt {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.insight-card__meta {
    font-size: 0.78rem;
    color: var(--text-light);
    opacity: 0.7;
}

/* Article */
.article-content {
    max-width: var(--content-narrow);
    margin: 0 auto;
    padding: 3.5rem 2rem;
}
.article-content h2 { font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 1rem; }
.article-content h3 { font-size: 1.2rem; margin-top: 2rem; margin-bottom: 0.75rem; }
.article-content p { font-size: 1rem; line-height: 1.9; margin-bottom: 1.25rem; }
.article-content ul, .article-content ol { margin: 1.25rem 0; padding-left: 1.5rem; }
.article-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    color: var(--text-light);
    line-height: 1.7;
}
.article-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bronze);
}
.article-content a { color: var(--bronze); border-bottom: 1px solid var(--bronze); }
.article-content a:hover { color: var(--bronze-light); border-color: var(--bronze-light); }

.article-footer {
    max-width: var(--content-narrow);
    margin: 0 auto;
    padding: 0 2rem 3.5rem;
    border-top: 1px solid var(--warm-gray);
    padding-top: 2rem;
}
.article-footer__back {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--bronze);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color var(--transition);
}
.article-footer__back:hover { color: var(--bronze-light); }

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
footer {
    background: var(--navy);
    padding: 2.5rem 2rem;
}
.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}
.footer-logo {
    font-family: 'DM Serif Display', serif;
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 1rem;
}
.footer-logo span { color: var(--bronze-light); }
.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.footer-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--bronze-light); }
footer p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
}
.footer-location {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    margin-top: 0.25rem;
}

/* ------------------------------------------------------------
   Responsive — Tablet
   ------------------------------------------------------------ */
@media (max-width: 768px) {
    :root { --nav-height: 60px; }

    .nav-links { display: none; }
    .hamburger { display: flex; }

    .hero { padding: 4rem 1.5rem; min-height: 50vh; }
    .page-hero { padding: 2.5rem 1.5rem 2rem; }
    .section, .services, .industries, .about, .approach { padding: 3.5rem 1.5rem; }
    .process-step { padding: 3rem 1.5rem; }

    .two-col, .about-grid, .founder-section { grid-template-columns: 1fr; gap: 2rem; }
    .services-grid, .industries-grid, .insights-grid { grid-template-columns: 1fr; }
    .approach-items { grid-template-columns: 1fr; }
    .approach-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); }
    .approach-item:first-child { border-top: none; }
    .next-steps-grid { grid-template-columns: 1fr; }
    .credentials { gap: 1.5rem; }
    .credentials-grid { grid-template-columns: 1fr; }

    .founder-photo { max-width: 280px; }
    .article-content { padding: 2.5rem 1.5rem; }
    .footer-inner { text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
}

/* ------------------------------------------------------------
   Responsive — Mobile
   ------------------------------------------------------------ */
@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }
    .hero { padding: 3rem 1.25rem; min-height: 45vh; }
    .page-hero { padding: 2rem 1.25rem 1.5rem; }
    .section, .services, .industries, .about, .approach { padding: 2.5rem 1.25rem; }
    .process-step { padding: 2.5rem 1.25rem; }
    .btn, .btn-primary { padding: 0.8rem 1.8rem; font-size: 0.8rem; }
    .service-card, .industry-card { padding: 2rem 1.5rem; }
    .cta-banner { padding: 3rem 1.25rem; }
    .insight-card__body { padding: 1.25rem; }
    .article-content { padding: 2rem 1.25rem; }
    .footer-links { flex-direction: column; gap: 0.75rem; }
    .nav-links.open { padding: 1.5rem 1.25rem; }
}
