:root {
    --bg-dark: #1a1a1a;
    --bg-darker: #111111;
    --bg-light: #f5f0eb;
    --bg-card: #222222;
    --text-white: #ffffff;
    --text-gray: #acacac;
    --text-dark: #070707;
    --accent-orange: #e87c3e;
    --accent-green: #4a7c59;
    --border-subtle: rgba(255, 255, 255, 0.1);

    --font-body: 'Inter Tight', sans-serif;

    --h1: clamp(2.5rem, 5vw, 4.5rem);
    --h2: clamp(2rem, 4vw, 3.5rem);
    --h3: clamp(1.5rem, 3vw, 2.5rem);
    --h4: clamp(1.25rem, 2.5vw, 1.75rem);
    --h5: clamp(1rem, 1.5vw, 1.25rem);
    --body: 1rem;
    --small: 1rem;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --section-gap: clamp(4rem, 8vw, 8rem);

    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-xl: 40px;
    --radius-full: 50%;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: var(--body);
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--text-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 600;
}

h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }
h4 { font-size: var(--h4); }
h5 { font-size: var(--h5); }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-md {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---- NAVBAR ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2.25rem 0;
    background: transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease, -webkit-backdrop-filter 0.4s ease, padding 0.3s ease;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.9rem 0;
}

.nav-container {
    padding: 0 4rem;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav-logo a { display: flex; }

.nav-logo {
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.navbar.menu-open {
    pointer-events: none;
}

.navbar.menu-open .hamburger {
    pointer-events: auto;
}

.navbar.menu-open .nav-logo {
    opacity: 0;
    transform: translateX(-20px);
}

.logo-img {
    width: 130px;
    height: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    color: var(--text-white);
    font-size: var(--body);
    font-weight: 500;
    letter-spacing: 0.02em;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 0;
    position: relative;
    font-family: inherit;
    transition: opacity 0.2s;
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-orange);
}

.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: default;
}

.dropdown-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
}

.dropdown-arrow-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
}

.dropdown-icon {
    transition: transform 0.2s;
}

.nav-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.6rem 1.25rem;
    color: var(--text-white);
    font-size: var(--small);
    transition: background 0.15s;
}

.dropdown-item:hover {
    background: rgba(255,255,255,0.05);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--text-white);
    transition: all 0.3s;
}

.hamburger.open .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open .hamburger-line:nth-child(2) {
    opacity: 0;
}
.hamburger.open .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Contact flyout */
.contact-flyout {
    position: absolute;
    top: 100%;
    right: 2rem;
    background: var(--text-white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    max-width: 280px;
}

.navbar.show-contact .contact-flyout {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-flyout-inner {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-thumb {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
}

.contact-flyout-title {
    font-size: var(--h5);
    font-weight: 600;
    color: var(--text-dark);
}

.contact-flyout-detail {
    font-size: var(--small);
    color: var(--text-dark);
}

/* ---- HERO ---- */
.hero {
    position: relative;
    height: calc(100vh - 2rem);
    min-height: 600px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    margin: 1rem;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide:nth-child(2),
.hero-slide:nth-child(3) {
    opacity: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 5rem;
}

.hero-content-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 3rem;
}

.hero-left {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    color: var(--text-white);
    font-size: var(--h1);
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.hero-right {
    position: relative;
    width: 420px;
    flex-shrink: 0;
}

.hero-inset {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 320px;
    position: relative;
    border: 3px solid rgba(255,255,255,0.8);
}

.hero-inset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.95);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    margin-top: -3rem;
    position: relative;
    z-index: 3;
    margin-left: 1rem;
    margin-right: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hero-info-card p {
    font-size: var(--h5);
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
}

.hero-info-arrow {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.hero-info-arrow:hover {
    transform: rotate(45deg);
}

/* ---- CONTENT BLOCK (intro + footsteps + features) ---- */
.content-block {
    background: var(--bg-light);
    border-radius: 28px 28px 0 0;
    margin: 0.75rem 1rem 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

/* ---- INTRO SECTION ---- */
.intro-section {
    padding: var(--section-gap) 0;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    margin-bottom: var(--space-md);
    color: #444;
}

.intro-content p {
    color: #565656;
    font-size: 1.1rem;
    line-height: 1.7;
}

.footsteps-section {
    display: flex;
    justify-content: center;
    padding: 2rem 0 1.5rem;
}

.footsteps-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footstep {
    opacity: 0;
}

.foot-left {
    transform: translateX(-14px) rotate(172deg);
}

.foot-right {
    transform: translateX(14px) rotate(188deg);
}

/* ---- BLOG INTRO SECTION ---- */
.blog-intro-section {
    padding: var(--section-gap) 0;
}

.blog-intro-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.blog-intro-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
}

.blog-intro-title {
    font-size: var(--h2);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

.blog-intro-desc {
    color: #565656;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.btn-dark {
    background: var(--text-dark);
    color: var(--text-white);
    text-decoration: none;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.btn-dark:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.blog-intro-right {
    width: 45%;
    flex-shrink: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 380px;
}

.blog-intro-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---- TOPICS SECTION ---- */
.topics-section {
    padding: 0 0 var(--section-gap);
}

.topics-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.topics-header h2 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.topics-header p {
    color: #666;
    font-size: 1.05rem;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.topic-card {
    background: var(--text-white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    text-decoration: none;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    transition: box-shadow 0.3s, transform 0.2s;
}

.topic-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.topic-card-icon {
    color: var(--accent-orange);
    width: 40px;
    height: 40px;
}

.topic-card-body {
    flex: 1;
}

.topic-card-num {
    font-size: var(--small);
    color: #aaa;
    font-weight: 500;
    display: block;
    margin-bottom: 0.25rem;
}

.topic-card-body h3 {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 0.5rem;
    color: var(--text-dark);
}

.topic-card-body p {
    font-size: var(--small);
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.topic-card-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-green);
    color: var(--text-white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.topic-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: var(--small);
    font-weight: 500;
    color: var(--text-dark);
    margin-top: 0.5rem;
    transition: gap 0.2s;
}

.topic-card:hover .topic-card-link {
    gap: 0.7rem;
}

.topic-card-link img {
    width: 12px;
    height: 12px;
    transition: transform 0.2s;
}

/* ---- RECOMMENDED ARTICLES SECTION ---- */
.recommended-section {
    padding: 0 0 var(--section-gap);
}

.recommended-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--space-lg);
}

.recommended-header h2 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.recommended-header p {
    color: #666;
    font-size: 1.05rem;
    margin: 0;
}

.recommended-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: var(--small);
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    white-space: nowrap;
    transition: gap 0.2s;
}

.recommended-all-link:hover {
    gap: 0.7rem;
}

.recommended-grid {
    display: flex;
    gap: 1.25rem;
}

.rec-card {
    text-decoration: none;
    color: var(--text-dark);
    background: var(--text-white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s, transform 0.2s;
}

.rec-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.rec-card-featured {
    flex: 1;
}

.rec-card-img {
    position: relative;
    overflow: hidden;
}

.rec-card-featured .rec-card-img {
    min-height: 320px;
    flex: 1;
}

.rec-card-featured .rec-card-body {
    flex: none;
}

.rec-card-small .rec-card-img {
    height: 190px;
}

.rec-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rec-card-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--accent-orange);
    color: var(--text-white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.rec-card-body {
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 1;
}

.rec-card-body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 0.5rem;
}

.rec-card-small .rec-card-body h3 {
    font-size: 0.95rem;
}

.rec-card-body p {
    font-size: var(--small);
    color: #666;
    line-height: 1.5;
    margin: 0 0 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rec-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: var(--small);
    font-weight: 500;
    color: var(--text-dark);
    transition: gap 0.2s;
}

.rec-card:hover .rec-card-link {
    gap: 0.7rem;
}

.rec-card-stack {
    width: 380px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.rec-card-stack .rec-card {
    flex: 1;
}

/* ---- WAVE DIVIDER: Features → About ---- */
.about-wave-divider {
    position: relative;
    line-height: 0;
    margin: 0 1rem 0;
    z-index: 1;
    background: #ffffff;
}

.about-wave-divider svg {
    width: 100%;
    height: 100px;
    display: block;
}

.about-wave-divider .wave-mobile {
    display: none;
}

.about-wave-junction {
    display: none;
}

/* ---- ABOUT ME SECTION ---- */
.about-section {
    padding: 2rem 0 var(--section-gap);
    background: transparent;
    border-radius: 0;
    margin: -40px 1rem 0;
    position: relative;
    z-index: 3;
}

.about-section > .container {
    padding-left: 0;
    padding-right: 0;
}

.about-shape {
    display: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    position: relative;
}

.about-grid-junction {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -65%);
    z-index: 5;
}

.about-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: row;
    min-height: 420px;
    cursor: pointer;
    transition: box-shadow 0.3s;
    transform-origin: center center;
    border: 1px solid rgba(255,255,255,0.12);
}

.about-card--active {
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}

.about-card:not(.about-card--active) {
    filter: none;
}

.about-card-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
}

.about-name {
    font-size: var(--h2);
    color: var(--text-white);
    font-weight: 700;
}
.about-name-link {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.about-name .team-arrow {
    opacity: 0.85;
    transition: transform 0.2s, opacity 0.2s;
}
.about-name-link:hover .team-arrow,
.about-card:hover .about-name .team-arrow {
    opacity: 1;
    transform: translate(2px, -2px);
}

.about-role {
    color: var(--accent-green);
    font-size: var(--small);
    font-weight: 500;
}

.about-desc {
    color: var(--text-gray);
    font-size: var(--small);
    line-height: 1.7;
}

.about-card-img {
    width: 45%;
    object-fit: cover;
    flex-shrink: 0;
}

/* ---- CAROUSEL SECTION ---- */
.carousel-section {
    padding: var(--section-gap) 0;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    margin: 0.75rem 1rem;
}

.carousel-tagline {
    max-width: 700px;
    margin: 0 auto var(--space-lg);
    text-align: center;
    font-size: var(--h4);
    color: var(--text-dark);
    font-weight: 300;
    line-height: 1.5;
    font-style: italic;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 1rem 0;
}

.carousel-track::-webkit-scrollbar { display: none; }

.carousel-card {
    flex: 0 0 420px;
    scroll-snap-align: start;
    background: var(--text-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.3s;
}

.carousel-card:hover {
    transform: translateY(-4px);
}

.carousel-card-img {
    height: 240px;
    overflow: hidden;
}

.carousel-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-card-body {
    padding: 1.5rem;
}

.carousel-card-body h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.carousel-card-body p {
    color: #565656;
    font-size: var(--small);
    line-height: 1.5;
}

/* ---- NOTFALL CAROUSEL SPLIT LAYOUT ---- */
.notfall-carousel-split {
    display: flex;
    align-items: center;
    gap: clamp(2rem, 4vw, 4rem);
}

.notfall-carousel-text {
    flex: 1;
    min-width: 0;
}

.notfall-carousel-text h2 {
    font-size: var(--h2);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.notfall-carousel-quote {
    font-size: var(--h4);
    font-weight: 300;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-dark);
    margin: 0;
    padding-left: 1.25rem;
    border-left: 3px solid var(--accent-orange);
}

.notfall-carousel-media {
    flex: 1;
    min-width: 0;
}

.notfall-carousel-placeholder {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.notfall-carousel-placeholder img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

/* ---- CMS CAROUSEL (Notfall page) ---- */
.cms-carousel {
    max-width: 100%;
    margin: 0;
    overflow: hidden;
}

.cms-carousel-viewport {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.cms-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.cms-carousel-slide {
    min-width: 100%;
    text-decoration: none;
    display: block;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.cms-carousel-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.cms-carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cms-carousel-body {
    padding: 1.5rem;
    background: var(--text-white);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.cms-carousel-body h4 {
    color: var(--text-dark);
    font-size: var(--h4);
    font-weight: 600;
    margin: 0;
}

.cms-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.cms-carousel-arrow {
    background: rgba(0,0,0,0.06);
    border: none;
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.cms-carousel-arrow:hover {
    background: rgba(0,0,0,0.12);
}

.cms-carousel-dots {
    display: flex;
    gap: 0.4rem;
}

.cms-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.2);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
}

.cms-dot.active {
    background: var(--accent-orange);
}

/* ---- QUOTE TEXT SECTION ---- */
.dark-text-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: var(--text-white);
    margin: 0 1rem;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.dark-text-wrapper {
    position: relative;
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: flex-end;
}

.dark-text-deco {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.dark-text-content {
    max-width: 620px;
    text-align: left;
}

.dark-text-content h2 {
    color: var(--text-dark);
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.dark-text-content .highlight {
    background: var(--accent-green);
    color: var(--text-white);
    padding: 0.1em 0.6em;
    border-radius: var(--radius-lg);
    display: inline-block;
}

.dark-text-star {
    width: 150px;
    height: 150px;
}

.dark-text-circles {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.dark-text-circle {
    width: 14px;
    height: 14px;
    border-radius: var(--radius-full);
    background: var(--text-dark);
}

.dark-text-circle:nth-child(2) {
    margin-left: 18px;
}

/* ---- FOOTER ---- */
.footer {
    padding: var(--space-lg) 0 0;
}

.footer-wrap {
    background: var(--bg-darker);
    border-radius: var(--radius-xl);
    margin: 0.75rem 1rem;
    padding: 3rem;
}

.scroll-top-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-full);
    background: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background-color 0.2s;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    border: none;
    cursor: pointer;
}

.scroll-top-float.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-float:hover {
    background: #f39155;
    transform: translateY(-3px);
}

.scroll-top-float img {
    filter: brightness(0);
    width: 18px;
    height: 20px;
}

.footer-divider {
    height: 1px;
    background: var(--border-subtle);
    margin: 2rem 0;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 400px;
}

.footer-logo {
    width: 130px;
    height: auto;
}

.footer-tagline {
    color: var(--text-gray);
    font-size: var(--small);
    line-height: 1.6;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-heading {
    color: var(--text-white);
    font-size: var(--h5);
    margin-bottom: 0.75rem;
}

.footer-link {
    display: block;
    color: var(--text-gray);
    font-size: var(--small);
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--text-white);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    position: relative;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon-hover {
    position: absolute;
    opacity: 0;
    transition: opacity 0.2s;
}

.social-link:hover .social-icon-default { opacity: 0; }
.social-link:hover .social-icon-hover { opacity: 1; }

.footer-bottom {
    text-align: center;
    color: var(--text-gray);
    font-size: var(--small);
    padding-top: 1rem;
}

/* ---- INNER PAGE HERO ---- */
.inner-hero {
    position: relative;
    height: 70vh;
    min-height: 350px;
    max-height: 650px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    margin: 1rem 1rem 0;
}

.inner-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 4rem;
}

.inner-hero-subtitle {
    font-size: var(--small);
    color: var(--text-white);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.inner-hero h1 {
    color: var(--text-white);
}

/* ---- BLOG GRID ---- */
.blog-section {
    padding: var(--section-gap) 0;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    margin: 0.75rem 1rem;
}

.blog-search-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.blog-search {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.blog-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

.blog-search-input {
    width: 100%;
    padding: 0.7rem 1rem 0.7rem 2.75rem;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.9rem;
    background: var(--text-white);
    color: var(--text-dark);
    transition: border-color 0.2s;
}

.blog-search-input:focus {
    outline: none;
    border-color: var(--accent-green);
}

.blog-search-input::placeholder {
    color: #aaa;
}

.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: var(--space-lg);
    justify-content: center;
}

.tag-pill {
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: var(--small);
    font-weight: 500;
    border: 1px solid var(--border-subtle);
    background: var(--text-white);
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.tag-pill:hover,
.tag-pill.active {
    background: var(--accent-green);
    color: var(--text-white);
    border-color: var(--accent-green);
}

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

.blog-card {
    background: var(--text-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    display: block;
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-4px);
}

.blog-card-img {
    height: 220px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-card-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--small);
    color: #777;
    margin-bottom: 0.75rem;
}

.blog-card-title {
    font-size: var(--h4);
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.blog-card-excerpt {
    color: #565656;
    font-size: var(--small);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.blog-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.blog-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    background: rgba(74, 124, 89, 0.1);
    color: var(--accent-green);
    font-weight: 500;
}

.blog-card-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--small);
    font-weight: 600;
    color: var(--accent-green);
}

.blog-card-link img {
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-link img {
    transform: translateX(4px);
}

.blog-card-border {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: var(--accent-green);
    transition: width 0.3s;
}

.blog-card:hover .blog-card-border {
    width: 100%;
}

.blog-empty {
    text-align: center;
    padding: var(--space-lg);
    color: #777;
    font-size: 1.1rem;
    grid-column: 1 / -1;
}

/* ---- BLOG POST ---- */
.post-section {
    padding: var(--section-gap) 0;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    margin: 0.75rem 1rem 0;
}

.post-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 720px;
    margin: 0 auto;
}

.post-sidebar {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 1rem;
    align-items: center;
}

.post-author {
    display: contents;
}

.post-author > div {
    grid-column: 2;
    text-align: left;
}

.post-author-img {
    width: 65px;
    height: 65px;
    border-radius: var(--radius-full);
    object-fit: cover;
    grid-row: 1 / 3;
}

.post-author-name {
    font-size: var(--h5);
    font-weight: 600;
}

.post-author-role {
    font-size: var(--small);
    color: #777;
}

.post-meta-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #999;
    grid-column: 2;
}

.post-meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #bbb;
}

.blog-card-reading {
    color: #999;
}

.post-main {
    flex: 1;
    min-width: 0;
}

.post-body {
    color: #333;
    line-height: 1.8;
    font-size: 1.05rem;
}

.post-body h2 {
    margin: 2rem 0 1rem;
    font-size: var(--h3);
}

.post-body h3 {
    margin: 1.5rem 0 0.75rem;
    font-size: var(--h4);
}

.post-body p {
    margin-bottom: 1.25rem;
}

.post-body ul, .post-body ol {
    margin: 1rem 0 1.25rem 1.5rem;
}

.post-body li {
    margin-bottom: 0.5rem;
}

.post-body blockquote {
    border-left: 3px solid var(--accent-green);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: rgba(74, 124, 89, 0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: #444;
}

.post-body img {
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
}

.post-body a {
    color: var(--accent-green);
    text-decoration: underline;
}

.post-images {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.post-images img {
    flex: 1;
    border-radius: var(--radius-md);
    height: 280px;
    object-fit: cover;
}

.post-sources {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.sources-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: var(--small);
    font-weight: 600;
    color: var(--text-dark);
    padding: 0;
}

.sources-chevron {
    transition: transform 0.3s;
}

.sources-toggle[aria-expanded="true"] .sources-chevron {
    transform: rotate(180deg);
}

.sources-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.sources-list {
    padding-left: 1.25rem;
    padding-top: 0.75rem;
    font-size: 0.8rem;
    line-height: 1.8;
    color: #666;
}

.sources-list a {
    color: var(--accent-green);
    word-break: break-word;
}

.sources-list a:hover {
    text-decoration: underline;
}

.post-social {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
    border-top: 1px solid #ddd;
    margin-top: 3rem;
}

.post-social h5 {
    font-weight: 600;
}

.post-social-icons {
    display: flex;
    gap: 0.75rem;
}

.post-social-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.post-social-icon:hover {
    background: var(--accent-green);
}

.post-social-icon img {
    width: 14px;
    height: 14px;
    transition: filter 0.2s;
}

.post-social-icon:hover img {
    filter: brightness(0) invert(1);
}

/* Related posts */
.related-section {
    padding: var(--space-lg) 0 var(--section-gap);
    background: var(--bg-light);
    margin: 0 1rem;
    border-radius: 28px;
}

.related-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
}

/* ---- FADE-UP ANIMATION ---- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(5px);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* ---- EMERGENCY PAGE ---- */
.emergency-section {
    padding: var(--section-gap) 0;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    margin: 0.75rem 1rem;
}

.emergency-intro {
    max-width: 700px;
    margin: 0 auto var(--space-lg);
    text-align: center;
}

.emergency-intro p {
    font-size: 1.1rem;
    color: #565656;
    line-height: 1.7;
}

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

.emergency-card {
    background: var(--text-white);
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.emergency-card--urgent {
    border-color: var(--accent-orange);
    border-width: 2px;
}

.emergency-card-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.emergency-card h3 {
    font-size: var(--h4);
    color: var(--text-dark);
    font-weight: 600;
}

.emergency-badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    background: rgba(74, 124, 89, 0.1);
    color: var(--accent-green);
    font-weight: 600;
    white-space: nowrap;
}

.emergency-card p {
    color: #565656;
    font-size: var(--small);
    line-height: 1.6;
}

.emergency-card-link {
    color: var(--text-dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.2s;
}
.emergency-card-link svg {
    opacity: 1;
    transform: translate(0, 0);
    transition: transform 0.2s;
}
.emergency-card-link:hover {
    color: var(--accent-orange);
}
.emergency-card-link:hover svg {
    transform: translate(2px, -2px);
}

.emergency-phone {
    display: inline-block;
    font-size: var(--h2);
    font-weight: 700;
    color: var(--accent-orange);
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.emergency-phone:hover {
    color: #d06a2e;
}

.emergency-card-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-top: auto;
    text-decoration: none;
}

.emergency-email {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent-green);
    text-decoration: none;
    transition: color 0.2s;
}
.emergency-email:hover {
    color: #3a6449;
}

.emergency-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: var(--space-lg);
    justify-content: center;
}

.emergency-filter {
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: var(--small);
    font-weight: 500;
    border: 1px solid #ddd;
    background: var(--text-white);
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.emergency-filter:hover,
.emergency-filter.active {
    background: var(--accent-green);
    color: var(--text-white);
    border-color: var(--accent-green);
}

/* ---- EMERGENCY BENTO SECTION ---- */
.emergency-bento-section {
    padding: var(--section-gap) 0;
    background: var(--bg-darker);
    border-radius: var(--radius-xl);
    margin: 0.75rem 1rem;
}

.emergency-bento-section .section-heading {
    color: var(--text-white);
    margin-bottom: var(--space-lg);
}

.emergency-bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.emergency-bento-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.emergency-bento-card h3 {
    font-size: var(--h3);
    color: var(--accent-orange);
    font-weight: 700;
}

.emergency-bento-card .bento-subtitle {
    font-size: var(--h5);
    color: var(--text-white);
    font-weight: 600;
}

.emergency-bento-card p {
    color: var(--text-gray);
    font-size: var(--small);
    line-height: 1.7;
}

.emergency-search-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 2rem 2.5rem;
    margin-top: 1.5rem;
}

.emergency-search-bar p {
    color: var(--text-gray);
    font-size: var(--small);
    line-height: 1.6;
}

.emergency-search-bar strong {
    color: var(--text-white);
}

/* ---- FAQ PAGE ---- */
.faq-section {
    padding: var(--section-gap) 0;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    margin: 0.75rem 1rem;
}

.faq-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: var(--space-lg);
    justify-content: center;
}

.faq-tab {
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: var(--small);
    font-weight: 500;
    border: 1px solid #ddd;
    background: var(--text-white);
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.faq-tab:hover,
.faq-tab.active {
    background: var(--accent-green);
    color: var(--text-white);
    border-color: var(--accent-green);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: var(--h5);
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    gap: 1.5rem;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background: var(--bg-dark);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1;
    padding-bottom: 3px;
    transition: transform 0.3s, background 0.3s;
}

.faq-item.open .faq-toggle {
    background: var(--accent-orange);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer-inner {
    padding: 0 0 1.5rem;
    color: #565656;
    line-height: 1.7;
    font-size: var(--small);
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

/* ---- ABOUT PAGE: TIMELINE ---- */
.about-timeline-section {
    padding: var(--section-gap) 0;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    margin: 0.75rem 1rem;
}

.about-timeline-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.about-timeline-header h2 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.about-timeline-header p {
    color: #666;
    font-size: 1.05rem;
}

.about-timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 2rem;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(0,0,0,0.1);
}

.timeline-item {
    position: relative;
    padding: 0 0 2.5rem 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 0.35rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent-orange);
    border: 3px solid var(--bg-light);
    z-index: 1;
}

.timeline-content {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.timeline-year {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-orange);
    letter-spacing: 0.02em;
}

.timeline-content h3 {
    font-size: var(--h5);
    color: var(--text-dark);
    font-weight: 600;
}

.timeline-content p {
    color: #565656;
    font-size: var(--small);
    line-height: 1.6;
}

/* ---- ABOUT PAGE: FOCUS / SPECIALIZATIONS ---- */
.about-focus-section {
    padding: var(--section-gap) 0;
    background: var(--bg-darker);
    border-radius: var(--radius-xl);
    margin: 0.75rem 1rem;
}

.about-focus-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.about-focus-header h2 {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.about-focus-header p {
    color: var(--text-gray);
    font-size: 1.05rem;
}

.about-focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.focus-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.focus-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.focus-card-icon {
    color: var(--accent-orange);
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(232, 124, 62, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.focus-card h3 {
    font-size: var(--h5);
    color: var(--text-white);
    font-weight: 600;
}

.focus-card p {
    color: var(--text-gray);
    font-size: var(--small);
    line-height: 1.6;
}

.focus-card-expand {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.focus-card.expanded .focus-card-expand {
    max-height: 300px;
}

.focus-card-toggle {
    background: none;
    border: none;
    color: var(--accent-orange);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    margin-top: 0.5rem;
    transition: opacity 0.2s;
}

.focus-card-toggle:hover {
    opacity: 0.75;
}

/* ---- ABOUT PAGE ---- */
.inner-hero--short {
    max-height: 420px;
}

.about-bio-section {
    padding: var(--section-gap) 0;
    background: var(--bg-darker);
    border-radius: var(--radius-xl);
    margin: 0.75rem 1rem;
}

.about-bio-grid {
    display: flex;
    gap: 3rem;
    align-items: stretch;
}

.about-bio-card {
    flex: 1;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
}

.about-bio-card .about-role {
    color: var(--accent-green);
    font-size: var(--small);
    font-weight: 500;
}

.about-bio-card h2 {
    color: var(--text-white);
    font-weight: 700;
}

.about-bio-subtitle {
    color: var(--accent-orange);
    font-size: var(--small);
    font-weight: 500;
}

.about-bio-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: var(--small);
}

.about-bio-photo {
    flex: 0 0 45%;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.about-bio-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-bio-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0.25rem 0;
}

.about-bio-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-bio-contact-box {
    flex: 1;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    transition: opacity 0.3s;
}

.about-bio-contact-box:hover {
    opacity: 0.8;
}

.about-bio-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-bio-contact-label {
    display: block;
    color: var(--text-white);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.about-bio-contact-value {
    display: block;
    color: var(--text-gray);
    font-size: 0.75rem;
    word-break: break-all;
}

.about-stats-section {
    padding: var(--section-gap) 0;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    margin: 0.75rem 1rem;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-stat {
    padding: 2rem;
}

.about-stat-number {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.about-stat-label {
    font-size: var(--small);
    color: #565656;
    line-height: 1.5;
}

.about-callout-section {
    padding: var(--section-gap) 0;
    background: var(--bg-darker);
    border-radius: var(--radius-xl);
    margin: 0.75rem 1rem;
}

.about-callout {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
}

.about-callout-line {
    width: 4px;
    min-height: 100px;
    background: var(--accent-orange);
    border-radius: 2px;
    flex-shrink: 0;
}

.about-callout h2 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.about-callout p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* ---- SERVICES PAGE ---- */
.services-table-section {
    padding: var(--section-gap) 0;
    background: var(--bg-darker);
    border-radius: var(--radius-xl);
    margin: 3rem 1rem 1.5rem;
}

.services-table {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.services-table-left {
    flex: 0 0 40%;
}

.services-table-left img {
    width: 100%;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.services-table-left p {
    color: var(--text-gray);
    font-size: var(--small);
    line-height: 1.7;
}

.services-table-right {
    flex: 1;
}

.services-list-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-subtle);
    cursor: default;
    transition: all 0.3s;
}

.services-list-item:hover {
    padding-left: 0.5rem;
}

.services-list-num {
    font-size: var(--small);
    color: var(--text-gray);
    font-weight: 500;
    flex-shrink: 0;
    width: 30px;
}

.services-list-name {
    flex: 1;
    font-size: var(--h5);
    color: var(--text-white);
    font-weight: 400;
    transition: font-weight 0.2s;
}

.services-list-item:hover .services-list-name {
    font-weight: 600;
}

.services-list-arrow {
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s;
    flex-shrink: 0;
}

.services-list-item:hover .services-list-arrow {
    opacity: 1;
    transform: translateX(0);
}

.services-cards-section {
    padding: var(--section-gap) 0;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    margin: 0.75rem 1rem;
}

.services-cards-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.services-cards-header h2 {
    color: var(--text-dark);
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--text-white);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    border: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(74, 124, 89, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-green);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    font-size: var(--h5);
    color: var(--text-dark);
    font-weight: 600;
}

.service-card p {
    color: #565656;
    font-size: var(--small);
    line-height: 1.6;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--small);
    font-weight: 600;
    color: var(--accent-orange);
    margin-top: auto;
}

.service-card-link img {
    transition: transform 0.3s;
}

.service-card:hover .service-card-link img {
    transform: translateX(4px);
}

/* ---- CONTACT PAGE ---- */
/* ---- CONTACT BENTO CARDS ---- */
.contact-bento-section {
    padding: var(--section-gap) 0 var(--space-lg);
    background: var(--bg-light);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    margin: 0.75rem 1rem 0;
}

.contact-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.contact-bento-card {
    background: var(--accent-green);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.contact-bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.contact-bento-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.contact-bento-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-white);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-bento-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.contact-bento-value {
    color: var(--text-white);
    font-size: var(--body);
    font-weight: 600;
}

.contact-form-section {
    padding: var(--space-lg) 0 var(--section-gap);
    background: var(--bg-light);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    margin: 0 1rem;
}

.contact-form-grid {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-form-left {
    flex: 0 0 35%;
}

.contact-form-left h2 {
    margin-bottom: 1.25rem;
    color: var(--text-dark);
}

.contact-form-left p {
    color: #565656;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-form-socials {
    display: flex;
    gap: 1rem;
}

.contact-social-link {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.contact-social-link:hover {
    background: var(--accent-green);
}

.contact-social-link img {
    width: 16px;
    height: 16px;
}

.contact-form-right {
    flex: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-form-row {
    display: flex;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}

.form-label {
    font-size: var(--small);
    font-weight: 500;
    color: var(--text-dark);
}

.form-input,
.form-textarea {
    padding: 0.85rem 1rem;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: var(--small);
    background: var(--text-white);
    color: var(--text-dark);
    transition: border-color 0.2s;
    width: 100%;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-green);
}

.form-input.error,
.form-textarea.error {
    border-color: #d44;
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.form-error-msg {
    font-size: 0.75rem;
    color: #d44;
    display: none;
}

.form-group.has-error .form-error-msg {
    display: block;
}

.form-success-msg,
.form-global-error {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: var(--small);
    display: none;
}

.form-success-msg {
    background: rgba(74, 124, 89, 0.1);
    color: var(--accent-green);
    border: 1px solid var(--accent-green);
}

.form-global-error {
    background: rgba(221, 68, 68, 0.1);
    color: #d44;
    border: 1px solid #d44;
}

/* ---- AUTH PAGES ---- */
.auth-section {
    padding: var(--section-gap) 0;
    background: var(--bg-light);
}

.auth-card {
    max-width: 440px;
    margin: 0 auto;
    background: var(--bg-darker);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
}

.auth-alert {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    font-size: var(--small);
}

.auth-alert-error {
    background: rgba(221, 68, 68, 0.12);
    color: #e66;
    border: 1px solid rgba(221, 68, 68, 0.25);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.auth-field label {
    display: block;
    color: var(--text-gray);
    font-size: var(--small);
    font-weight: 500;
    margin-bottom: 0.35rem;
}

.auth-field input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    color: var(--text-white);
    font-family: inherit;
    font-size: var(--body);
}

.auth-field input:focus {
    outline: none;
    border-color: var(--accent-green);
}

.auth-submit {
    width: 100%;
    padding: 0.8rem;
    background: var(--accent-green);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: var(--body);
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background 0.2s;
}

.auth-submit:hover {
    background: #3d6a4b;
}

.auth-switch {
    text-align: center;
    color: var(--text-gray);
    font-size: var(--small);
    margin-top: 1.25rem;
}

.auth-switch a {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 500;
}

.auth-forgot {
    text-align: right;
    margin-top: -0.5rem;
    margin-bottom: 0;
}

.auth-forgot a {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-decoration: none;
}

.auth-forgot a:hover {
    color: var(--accent-green);
}

/* ---- COMMENTS SECTION ---- */
.comments-section {
    padding: var(--space-lg) 0 var(--section-gap);
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    margin: 0.75rem 1rem;
}

.comments-title {
    font-size: var(--h4);
    margin-bottom: 1.5rem;
}

.comment-notice {
    padding: 0.75rem 1rem;
    background: rgba(74, 124, 89, 0.1);
    color: var(--accent-green);
    border: 1px solid var(--accent-green);
    border-radius: 8px;
    font-size: var(--small);
    margin-bottom: 1.5rem;
}

.comment-form-wrap {
    background: var(--bg-darker);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.comment-form-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.comment-user-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    flex-shrink: 0;
}

.comment-form-name {
    color: var(--text-white);
    font-weight: 500;
}

.comment-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    color: var(--text-white);
    font-family: inherit;
    font-size: var(--body);
    resize: vertical;
    min-height: 80px;
}

.comment-form textarea:focus {
    outline: none;
    border-color: var(--accent-green);
}

.comment-form-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.75rem;
}

.comment-submit {
    padding: 0.6rem 1.5rem;
    background: var(--accent-green);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: var(--small);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.comment-submit:hover {
    background: #3d6a4b;
}

.comment-login-prompt {
    background: var(--bg-darker);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.comment-login-prompt p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.comment-login-links {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.comment-login-btn,
.comment-register-btn {
    padding: 0.55rem 1.25rem;
    border-radius: 8px;
    font-size: var(--small);
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.comment-login-btn {
    background: var(--accent-green);
    color: #fff;
}

.comment-login-btn:hover {
    background: #3d6a4b;
}

.comment-register-btn {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255,255,255,0.15);
}

.comment-register-btn:hover {
    background: rgba(255,255,255,0.05);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.comment-item {
    display: flex;
    gap: 1.5rem;
    padding: 0 2rem 1.25rem 0;
    overflow: visible;
}

.comments-list > .comment-item + .comment-item,
.comments-list > .comment-replies + .comment-item {
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 1.25rem;
}

.comment-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    flex-shrink: 0;
}

.comment-body {
    flex: 1;
    min-width: 0;
}

.comment-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.1rem 0.5rem;
    margin-bottom: 0.35rem;
    overflow: hidden;
}

.comment-author {
    font-weight: 600;
    font-size: var(--small);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
    flex-shrink: 1;
}

.comment-date {
    color: var(--text-gray);
    font-size: 0.75rem;
    width: 100%;
}

.comment-text {
    font-size: var(--body);
    line-height: 1.6;
    color: var(--text-dark);
}

.comment-reply-btn {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0.25rem 0;
    margin-top: 0.25rem;
    transition: color 0.2s;
}
.comment-reply-btn:hover {
    color: var(--accent-orange);
}

.comment-replies {
    margin-left: 3.5rem;
    border-left: 2px solid rgba(0,0,0,0.06);
    padding-left: 1.25rem;
}

.comment-reply {
    border-bottom: none;
}

.comment-reply .comment-avatar {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
}

.comment-reply-form {
    margin-top: 0.75rem;
}

.comment-form-inline textarea {
    font-size: 0.9rem;
    padding: 0.75rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    width: 100%;
    resize: vertical;
    font-family: inherit;
}

.comment-cancel-btn {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0.4rem 0.75rem;
}
.comment-cancel-btn:hover {
    color: var(--text-dark);
}

.comment-submit-sm {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
}

.comments-empty {
    color: var(--text-gray);
    font-size: var(--small);
    font-style: italic;
}

.comments-pagination-btns {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.comments-show-more {
    flex: 1;
    padding: 0.75rem;
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-sm);
    color: var(--text-gray);
    font-family: var(--font-body);
    font-size: var(--small);
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.comments-show-more:hover {
    background: rgba(0,0,0,0.08);
    color: var(--text-dark);
}

/* ---- LARGE SCREEN CONSTRAINTS ---- */
@media (min-width: 1200px) {
    .services-table-section .container,
    .services-cards-section .container {
        max-width: 1200px;
    }
}

/* ---- LEGAL PAGES (Impressum, Datenschutz) ---- */
.legal-section {
    padding: var(--section-gap) 0;
    margin: 0 1rem;
    background: var(--text-white);
    border-radius: var(--radius-xl);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: var(--body);
    line-height: 1.8;
    color: var(--text-dark);
}

.legal-content h2 {
    font-size: var(--h3);
    margin: 2.5rem 0 1rem;
}

.legal-content h3 {
    font-size: var(--h4);
    margin: 2rem 0 0.75rem;
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin: 0 0 1rem 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--accent-orange);
    text-decoration: underline;
}

/* ---- ABOUT TEAM GRID ---- */
.about-team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.about-team-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(255,255,255,0.08);
}

.about-team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.about-team-img {
    height: 350px;
    overflow: hidden;
}

.about-team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.about-team-card:hover .about-team-img img {
    transform: scale(1.03);
}

.about-team-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.about-team-info h3 {
    color: var(--text-white);
    font-size: var(--h4);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.about-team-info h3 .team-arrow {
    opacity: 0.85;
    transition: transform 0.2s, opacity 0.2s;
}
.about-team-card:hover h3 .team-arrow {
    opacity: 1;
    transform: translate(2px, -2px);
}

.about-team-info p {
    color: var(--text-gray);
    font-size: var(--small);
    line-height: 1.6;
}

.about-team-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-orange);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.about-team-link img {
    display: inline;
    filter: brightness(0) saturate(100%) invert(55%) sepia(85%) saturate(500%) hue-rotate(345deg);
}
