/* ============================================================
   STRATEGI+ — Complete Stylesheet
   Design: Professional · Creative · Confident
   ============================================================ */

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

/* Variables */
:root {
    --teal:         #0B9E9E;
    --teal-dark:    #087878;
    --teal-light:   #E6F5F5;
    --orange:       #F05A22;
    --orange-light: #FFF2EE;
    --dark:         #1A1A2E;
    --text:         #46465C;
    --text-light:   #888899;
    --bg-light:     #F8F8F6;
    --white:        #FFFFFF;

    --font-display: 'Poppins', sans-serif;
    --font-body:    'Poppins', sans-serif;

    --max-width:    1160px;
    --radius:       14px;
    --radius-sm:    8px;
    --shadow-sm:    0 2px 10px rgba(0,0,0,0.07);
    --shadow-md:    0 8px 30px rgba(0,0,0,0.11);
    --shadow-lg:    0 24px 60px rgba(0,0,0,0.14);
    --transition:   all 0.28s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--dark);
    line-height: 1.12;
    letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.65rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--teal); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--teal-dark); }
strong { font-weight: 600; color: var(--dark); }

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    height: 72px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav__inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 72px; max-width: var(--max-width); margin: 0 auto; padding: 0 40px;
}
.nav__logo {
    font-family: var(--font-display); font-size: 1.35rem; font-weight: 800;
    color: var(--dark); letter-spacing: -0.02em;
}
.nav__logo span { color: var(--orange); }
.nav__links {
    display: flex; align-items: center; gap: 2rem; list-style: none;
}
.nav__links a {
    font-size: 0.82rem; font-weight: 600; color: var(--text);
    letter-spacing: 0.06em; text-transform: uppercase;
}
.nav__links a:hover, .nav__links a.active { color: var(--teal); }
.nav__cta {
    background: var(--orange) !important;
    color: var(--white) !important;
    padding: 10px 22px; border-radius: 100px;
}
.nav__cta:hover { background: var(--dark) !important; transform: translateY(-1px); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 30px; border-radius: 100px;
    font-family: var(--font-body); font-size: 0.92rem; font-weight: 600;
    cursor: pointer; transition: var(--transition);
    border: 2px solid transparent; text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover {
    background: var(--dark); color: var(--white);
    transform: translateY(-2px); box-shadow: 0 8px 24px rgba(240,90,34,0.3);
}
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-outline:hover { background: var(--white); color: var(--dark); border-color: var(--white); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-ghost:hover { background: var(--teal); color: var(--white); }

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
}
.hero__bg-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    z-index: 0;
}
.hero__inner {
    position: relative; z-index: 2;
    max-width: var(--max-width); margin: 0 auto;
    padding: 120px 40px 80px;
    width: 100%;
}
.hero__eyebrow {
    font-family: var(--font-display); font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: rgba(255,255,255,0.65); margin-bottom: 1rem; display: block;
}
.hero__title { color: var(--white); margin-bottom: 1.5rem; }
.hero__sub {
    color: rgba(255,255,255,0.82); font-size: 1.1rem;
    line-height: 1.75; margin-bottom: 2.2rem; max-width: 480px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   PAGE HERO (smaller — interior pages) — full bleed image
   ============================================================ */
.page-hero {
    position: relative; min-height: 380px;
    padding: 150px 40px 80px;
    overflow: hidden;
    background: var(--teal);
    display: flex; align-items: flex-end;
}
.page-hero__bg-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    z-index: 0;
}
.page-hero::after {
    content: none;
}
.page-hero__inner {
    position: relative; z-index: 2;
    max-width: var(--max-width); margin: 0 auto; width: 100%;
}
.page-hero__eyebrow {
    font-family: var(--font-display); font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: rgba(255,255,255,0.6); margin-bottom: 0.75rem; display: block;
}
.page-hero__title { color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; }

/* ============================================================
   SECTIONS — General
   ============================================================ */
section { padding: 100px 0; }
.section-label {
    display: block; font-family: var(--font-display);
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--teal); margin-bottom: 1rem;
}
.section-intro {
    font-size: 1.05rem; color: var(--text); max-width: 580px; line-height: 1.8;
}

/* ============================================================
   INTRO / WELCOME
   ============================================================ */
.intro-grid {
    display: grid; grid-template-columns: 1fr 0.7fr;
    gap: 80px; align-items: center;
}
.intro-text p { font-size: 1.05rem; line-height: 1.85; color: var(--text); margin-bottom: 1.2rem; }
.intro-text h2 { margin-bottom: 1.5rem; }
.intro-image img {
    width: 100%; border-radius: var(--radius);
    object-fit: cover; object-position: top center;
}
.intro-image__ph {
    width: 100%; height: 520px; background: var(--teal-light); border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: var(--teal); font-size: 0.88rem; border: 2px dashed rgba(11,158,158,0.3);
}

/* ============================================================
   VENN DIAGRAMS
   ============================================================ */
.venn-wrap { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.venn-row { display: flex; justify-content: center; }
.venn-circles { position: relative; width: 320px; height: 160px; }
.venn-c {
    position: absolute; width: 140px; height: 140px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 0.88rem; font-weight: 700;
    color: white; text-align: center; line-height: 1.2;
    opacity: 0.9;
}
.venn-c.c1 { background: var(--teal); left: 0; top: 10px; }
.venn-c.c2 { background: var(--orange); left: 110px; top: 10px; }
.venn-c.c3 { background: #3BBFBF; left: 55px; top: 10px; }

.venn3-wrap { position: relative; width: 300px; height: 200px; }
.venn3-wrap .vc {
    position: absolute; width: 140px; height: 140px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 0.82rem; font-weight: 700;
    color: white; text-align: center; line-height: 1.2; opacity: 0.88;
}
.venn3-wrap .va { background: #3BBFBF; left: 0; top: 30px; }
.venn3-wrap .vs { background: var(--teal-dark); left: 80px; top: 0; z-index: 2; }
.venn3-wrap .vk { background: var(--orange); left: 160px; top: 30px; }
.venn-caption {
    font-size: 0.84rem; color: var(--text-light); font-style: italic;
    text-align: center; line-height: 1.5;
}
.diagram-box {
    background: var(--white); border-radius: var(--radius);
    padding: 48px 36px 32px; display: flex; flex-direction: column;
    align-items: center; gap: 0;
}
.diagram-byline {
    font-size: 0.82rem; color: var(--text-light); text-align: center;
    margin-top: 16px; margin-bottom: 0; line-height: 1.5;
}

/* ============================================================
   STRATEGY / BALANCE SECTIONS
   ============================================================ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.two-col p { font-size: 1.02rem; line-height: 1.85; margin-bottom: 1.1rem; }
.two-col h2 { margin-bottom: 1.5rem; }

/* ============================================================
   PILLARS / THREE FEATURES
   ============================================================ */
.pillars-section { background: var(--dark); }
.pillars-header { text-align: center; margin-bottom: 56px; }
.pillars-header .section-label { color: rgba(255,255,255,0.4); }
.pillars-header h2 { color: var(--white); }
.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.pillar-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--radius); padding: 40px 34px;
    transition: var(--transition); display: flex; flex-direction: column;
}
.pillar-card:hover {
    background: rgba(255,255,255,0.07); border-color: var(--teal);
    transform: translateY(-5px);
}
.pillar-card__dot {
    width: 44px; height: 44px; background: var(--teal); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 24px; flex-shrink: 0;
}
.pillar-card__tag {
    font-family: var(--font-display); font-size: 0.62rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 0.7rem; display: block;
}
.pillar-card h3 { color: var(--white); margin-bottom: 1rem; font-size: 1.35rem; }
.pillar-card p { color: rgba(255,255,255,0.58); font-size: 0.93rem; line-height: 1.72; flex: 1; margin-bottom: 1.5rem; }
.pillar-card__link {
    color: var(--teal); font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.07em; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 6px;
    align-self: flex-start; transition: var(--transition);
}
.pillar-card__link:hover { color: var(--white); gap: 12px; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-header { max-width: 680px; margin-bottom: 56px; }
.faq-header h2 { margin-bottom: 1rem; }
.faq-list { max-width: 780px; }
.faq-item { border-bottom: 1px solid #E6E6E8; }
.faq-question {
    width: 100%; background: none; border: none;
    padding: 22px 0; display: flex; justify-content: space-between;
    align-items: center; cursor: pointer; text-align: left;
    font-family: var(--font-body); font-size: 1.02rem; font-weight: 600;
    color: var(--dark); gap: 20px; transition: var(--transition);
}
.faq-question:hover { color: var(--teal); }
.faq-icon {
    width: 28px; height: 28px; min-width: 28px;
    background: var(--teal-light); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--teal); font-size: 1.3rem; font-weight: 300;
    line-height: 1; transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--teal); color: white; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.38s ease; }
.faq-answer-inner {
    padding: 4px 0 22px 0; color: var(--text);
    line-height: 1.82; font-size: 0.95rem;
}
.faq-answer-inner a { color: var(--teal); font-weight: 500; text-decoration: underline; }

/* ============================================================
   CONTACT FORM SECTION
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { font-size: 1.02rem; line-height: 1.8; }
.contact-info .note { font-size: 0.85rem; color: var(--text); font-style: italic; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form .btn { width: fit-content; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--text);
}
.form-group input, .form-group textarea {
    padding: 14px 16px; border: 1.5px solid #DDDDE0; border-radius: var(--radius-sm);
    font-family: var(--font-body); font-size: 0.95rem;
    color: var(--dark); background: var(--white); transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-light);
}
.form-group textarea { height: 140px; resize: vertical; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); color: var(--white); padding: 64px 0 40px; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    gap: 60px; margin-bottom: 48px; padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.09);
}
.footer-logo {
    font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
    color: var(--white); display: block; margin-bottom: 14px; letter-spacing: -0.02em;
}
.footer-logo span { color: var(--orange); }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.9rem; line-height: 1.72; }
.footer-col h4 {
    font-family: var(--font-display); font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.4); margin-bottom: 18px;
}
.footer-col p, .footer-col address {
    color: rgba(255,255,255,0.65); font-size: 0.9rem;
    line-height: 1.8; font-style: normal;
}
.footer-col a { color: var(--teal); }
.footer-col a:hover { color: var(--white); }
.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav-list a { color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.footer-nav-list a:hover { color: var(--teal); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    color: rgba(255,255,255,0.28); font-size: 0.8rem;
}

/* ============================================================
   ARTICLES PAGE
   ============================================================ */
.articles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.article-card {
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-sm);
    transition: var(--transition); display: flex; flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
}
.article-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.article-card__img {
    height: 200px; overflow: hidden; background: var(--teal-light);
    position: relative;
}
.article-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.article-card:hover .article-card__img img { transform: scale(1.06); }
.article-card__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.article-card__byline {
    font-size: 0.72rem; color: var(--text-light);
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px;
    flex: none;
}
.article-card__header { min-height: 5.5rem; }
.article-card h3 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.35; }
.article-card p { color: var(--text); font-size: 0.9rem; line-height: 1.7; flex: 1; margin-bottom: 20px; }
.read-more { margin-top: auto; }
.read-more {
    color: var(--teal); font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
}
.read-more:hover { color: var(--orange); gap: 12px; }

/* ============================================================
   SINGLE ARTICLE
   ============================================================ */
.article-top { padding: 140px 40px 50px; background: var(--bg-light); }
.article-top__inner { max-width: 780px; margin: 0 auto; }
.article-top__byline {
    font-size: 0.78rem; color: var(--text-light);
    text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 16px;
}
.article-top h1 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); margin-bottom: 0; line-height: 1.15; }
.article-feat-img { max-width: 780px; margin: 0 auto; padding: 40px 40px 0; }
.article-feat-img img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.article-body { padding: 52px 40px 100px; }
.article-body__inner { max-width: 700px; margin: 0 auto; }
.article-body p { font-size: 1.05rem; line-height: 1.92; color: var(--text); margin-bottom: 1.5rem; }
.article-body h2 { font-size: 1.55rem; margin: 2.5rem 0 1rem; }
.article-body h3 { font-size: 1.2rem; margin: 2rem 0 0.75rem; }
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 1.5rem; }
.article-body li { margin-bottom: 0.6rem; font-size: 1.02rem; line-height: 1.8; }
.article-body strong { color: var(--dark); font-weight: 600; }

/* ============================================================
   BIO PAGE
   ============================================================ */
.bio-intro { display: grid; grid-template-columns: 0.8fr 2fr; gap: 80px; align-items: start; }
.bio-photo-wrap { position: sticky; top: 96px; }
.bio-photo-wrap img { width: 100%; border-radius: var(--radius); object-fit: cover; }
.bio-photo-ph {
    width: 100%; height: 420px; background: var(--teal-light);
    border-radius: var(--radius); display: flex; align-items: center;
    justify-content: center; color: var(--teal); font-size: 0.88rem;
    border: 2px dashed rgba(11,158,158,0.35);
}
.bio-quote {
    font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
    color: var(--dark); line-height: 1.55; font-style: italic;
    margin-bottom: 40px;
}
.bio-quote cite { display: none; }
.bio-section-block { margin-bottom: 44px; padding-bottom: 44px; border-bottom: 1px solid #EAEAEC; }
.bio-section-block:last-child { border-bottom: none; margin-bottom: 0; }
.bio-section-block h3 {
    font-family: var(--font-display); font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 14px;
}
.bio-section-block p { font-size: 1.02rem; line-height: 1.85; color: var(--text); }
.client-tags { margin-top: 14px; }
.client-tag { font-size: 1.02rem; color: var(--text); line-height: 1.85; }
.client-tag:not(:last-child)::after { content: ', '; }

/* ============================================================
   PROCESS PAGE
   ============================================================ */
.process-intro { max-width: 640px; margin: 0 auto; text-align: center; margin-bottom: 70px; }
.process-intro h2 { margin-bottom: 1rem; }
.process-intro p { font-size: 1.05rem; line-height: 1.8; }
.process-intro p em { font-style: italic; }
.process-steps { display: flex; flex-direction: column; gap: 0; max-width: 700px; margin: 0 auto 80px; }
.process-step {
    display: flex; gap: 28px; padding: 40px 0;
    border-bottom: 1px solid #E8E8EA;
}
.process-step:last-child { border-bottom: none; }
.step-num {
    font-family: var(--font-display); font-size: 3.5rem; font-weight: 800;
    color: var(--teal-light); line-height: 1; min-width: 64px;
}
.step-content h3 { margin-bottom: 12px; }
.step-content p { font-size: 0.97rem; line-height: 1.82; color: var(--text); }
.step-content strong { color: var(--dark); }

/* ============================================================
   BOOKING / KONTAKT PAGE
   ============================================================ */
.booking-intro { text-align: center; max-width: 580px; margin: 0 auto 56px; }
.booking-intro h2 { margin-bottom: 1rem; }
.booking-intro p { font-size: 1.02rem; line-height: 1.8; }
.booking-embed {
    max-width: 900px; margin: 0 auto; background: var(--white);
    border-radius: var(--radius); box-shadow: var(--shadow-md); overflow: hidden;
}
.booking-embed iframe { width: 100%; min-height: 640px; border: none; display: block; }

/* ============================================================
   UTILITIES
   ============================================================ */
.bg-light { background: var(--bg-light); }
.bg-dark  { background: var(--dark); }
.text-center { text-align: center; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }

/* ============================================================
   HAMBURGER / MOBILE NAV
   ============================================================ */
.nav__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}
.nav__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}
.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); }

.nav__mobile-menu {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 8px 24px 24px;
    z-index: 199;
    flex-direction: column;
    box-shadow: var(--shadow-md);
}
.nav__mobile-menu.open { display: flex; }
.nav__mobile-menu a {
    font-size: 0.95rem; font-weight: 600;
    color: var(--dark); padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    letter-spacing: 0.04em; text-decoration: none;
}
.nav__mobile-menu a:last-child { border-bottom: none; }
.nav__mobile-menu .nav__cta-mobile {
    margin-top: 12px;
    background: var(--orange); color: var(--white) !important;
    text-align: center; padding: 14px 22px;
    border-radius: 100px; border-bottom: none;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
    /* Nav */
    .nav__links { display: none; }
    .nav__hamburger { display: flex; }

    /* Container */
    .container { padding: 0 28px; }

    /* Grids → single column */
    .intro-grid,
    .two-col,
    .contact-grid,
    .bio-intro,
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }

    /* Image stacks above text on index intro */
    .intro-grid .intro-image { order: -1; }
    .intro-image img { max-height: 380px; object-fit: cover; }

    /* Skab balance: text between the two diagrams on mobile */
    .two-col--balance .diagram-box { order: 2; }
    .two-col--balance div:not(.diagram-box) { order: 1; }

    /* Pillars + articles → 2 col */
    .pillars-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .articles-grid { grid-template-columns: 1fr 1fr; gap: 20px; }

    /* Hero */
    .hero__inner { padding: 110px 28px 70px; }
    .hero__sub { max-width: 100%; }

    /* Page hero */
    .page-hero { padding: 130px 28px 70px; }

    /* Bio */
    .bio-photo-wrap { position: static; }
    .bio-photo-wrap img { max-height: 380px; object-fit: cover; object-position: top; }

    /* Footer */
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

    /* Process */
    .process-steps { padding: 0 4px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
    /* Container */
    .container { padding: 0 20px; }
    section { padding: 64px 0; }

    /* Grids → all single column */
    .pillars-grid,
    .articles-grid { grid-template-columns: 1fr; }

    /* Nav inner */
    .nav__inner { padding: 0 20px; }

    /* Hero */
    .hero { min-height: 90vh; }
    .hero__inner { padding: 96px 20px 60px; }
    .hero__sub { font-size: 0.97rem; }
    .hero__actions { flex-direction: column; align-items: flex-start; gap: 12px; }
    .hero__actions .btn { width: 100%; justify-content: center; }

    /* Page hero */
    .page-hero { padding: 110px 20px 50px; min-height: 260px; }

    /* Intro grid */
    .intro-grid { gap: 28px; }
    .two-col { gap: 28px; }
    .bio-intro { gap: 28px; }
    .contact-grid { gap: 28px; }

    /* Process */
    .process-step { flex-direction: column; gap: 10px; }
    .step-num { font-size: 2.2rem; min-width: auto; }
    .process-intro { padding: 0 4px; }

    /* Article pages */
    .article-top { padding: 106px 20px 36px; }
    .article-feat-img { padding: 28px 20px 0; }
    .article-body { padding: 40px 20px 80px; }

    /* Diagram */
    .diagram-box { padding: 28px 16px 20px; }
    .venn-circles { width: 260px; }
    .venn3-wrap { width: 240px; }

    /* Footer */
    .footer { padding: 48px 0 32px; }
    .footer-grid { gap: 32px; margin-bottom: 32px; padding-bottom: 32px; }

    /* FAQ */
    .faq-header { margin-bottom: 32px; }

    /* Contact form btn full width */
    .contact-form .btn { width: 100%; justify-content: center; }

    /* Booking embed */
    .booking-embed iframe { min-height: 520px; }
}
