/*
Theme Name: RELO Group
Theme URI: https://relogroup.com
Author: RELO Group
Description: RELO Group WordPress Theme
Version: 1.3.3
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: relo-group
*/

/* =========================================
   GLOBAL VARIABLES
   ========================================= */
:root {
    --color-primary:    #101440;
    --color-accent:     #0068ae;
    --color-pale:       #f4f6f9;
    --color-text:       #1a1a1a;
    --color-text-mid:   #5a6378;
    --color-white:      #ffffff;
    --color-black:      #000000;
    --color-border:     #e2e8f0;

    --font-base:        'Inter', sans-serif;

    --fw-body:          400;
    --fw-heading:       600;

    --max-width:        1300px;
    --pad-x:            24px;
}

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

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

body {
    font-family: var(--font-base);
    font-weight: var(--fw-body);
    font-size: 1rem !important;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-base);
    font-weight: var(--fw-heading);
    line-height: 1.2;
    color: var(--color-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

p { color: var(--color-text-mid); }

/* =========================================
   LAYOUT
   ========================================= */
.theme-wrap {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

.theme-section {
    padding: 90px 0;
}

.theme-section--sm {
    padding: 56px 0;
}

.site-wrapper { display: flex; flex-direction: column; min-height: 100vh; }
.site-main { flex: 1; }

.accent { color: var(--color-accent); }

/* text-underline — see SHARED DESIGN SYSTEM section below */

/* =========================================
   TYPOGRAPHY HELPERS
   ========================================= */
.accent-text      { color: var(--color-accent); }
.accent-underline {
    color: var(--color-accent);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}
.accent-highlight {
    background: var(--color-accent);
    color: var(--color-white);
    padding: 0 5px 2px;
}

/* =========================================
   BUTTONS — no rounding
   ========================================= */
.theme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-base);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 32px;
    border: 2px solid transparent;
    cursor: pointer;
    border-radius: 0;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
    line-height: 1;
}

@media (max-width: 768px) {
    .theme-card__cta, .theme-btn {
        font-size: 11px;
        padding: 11px 20px;
        letter-spacing: 0.05em;
    }
}

/* White solid → accent on hover */
.theme-btn--white {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}
.theme-btn--white:hover {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

/* White outline → white solid on hover */
.theme-btn--white-outline {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}
.theme-btn--white-outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

/* Black solid → accent on hover */
.theme-btn--black {
    background: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}
.theme-btn--black:hover {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

/* Primary solid → accent on hover */
.theme-btn--primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}
.theme-btn--primary:hover {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

/* Accent solid → primary on hover */
.theme-btn--accent {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}
.theme-btn--accent:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

/* Primary outline → primary solid on hover */
.theme-btn--outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.theme-btn--outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* =========================================
   HEADER — blank, sticky
   ========================================= */
#site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}

/* =========================================
   HERO (video / image)
   ========================================= */
.theme-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.theme-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.theme-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.theme-hero__bg--fallback {
    background: var(--color-primary);
}

.theme-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(16,20,64,0.75) 0%,
        rgba(16,20,64,0.25) 50%,
        rgba(16,20,64,0.05) 100%
    );
    z-index: 1;
}

.theme-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 60px;
}

.theme-hero__title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-white);
    max-width: 700px;
}

/* =========================================
   SPLASH PAGE
   ========================================= */
.splash-section {
    background: var(--color-white);
    padding: 72px 0 80px;
}

.splash-section__logo {
    margin-bottom: 10px;
}

.splash-section__logo img {
    width: 100%;
}

.splash-section__heading {
    color: var(--color-primary);
    max-width: 820px;
    margin-bottom: 18px;
}

.splash-section__body {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-text-mid);
    max-width: 560px;
    margin-bottom: 32px;
	margin-top: 20px;
}

/* =========================================
   DIVISION / SPLASH CARDS
   ========================================= */
.theme-cards__grid {
    display: flex;
    gap: 12px;
}

.theme-card {
    position: relative;
    flex: 1;
    min-width: 0;
    min-height: 460px;
    overflow: hidden;
    background: var(--color-primary) center/cover no-repeat;
    cursor: pointer;
    text-decoration: none;
    transition: flex 0.35s ease;
}

.theme-card:hover {
    flex: 2;
}

.theme-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(16,20,64,0.6), rgba(16,20,64,0.15));
    pointer-events: none;
    transition: background 0.35s ease;
    z-index: 1;
}

.theme-card:hover::before {
    background: linear-gradient(to top, rgba(16,20,64,0.92), rgba(16,20,64,0.35));
}

/* Accent overlay on hover */
.theme-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,104,174,0.15);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;
    pointer-events: none;
}

.theme-card:hover::after {
    opacity: 1;
}

.theme-card__label {
    position: absolute;
    left: 22px;
    bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-white);
    z-index: 2;
    transition: opacity 0.25s ease;
}

.theme-card:hover .theme-card__label {
    opacity: 0;
}

.theme-card__content {
    position: absolute;
    inset: 0;
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 3;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.theme-card:hover .theme-card__content {
    opacity: 1;
    transform: translateY(0);
}

.theme-card__content h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-white);
}

.theme-card__copy {
    margin: 0 0 18px;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.85);
    max-width: 26rem;
}

.theme-card__cta {
    align-self: flex-start;
    padding: 8px 18px;
    border: 1.5px solid rgba(255,255,255,0.8);
    background: transparent;
    color: var(--color-white);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.22s, color 0.22s, border-color 0.22s;
}

.theme-card__cta:hover {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

@media (max-width: 900px) {
    .theme-cards__grid {
        flex-wrap: wrap;
    }
    .theme-card,
    .theme-card:hover {
        flex: 0 0 calc(50% - 6px);
        min-height: 200px;
    }
    .theme-card__copy { display: none; }
}

@media (max-width: 540px) {
    .theme-card,
    .theme-card:hover {
        flex: 0 0 100%;
    }
}

/* =========================================
   LOGO MARQUEE
   ========================================= */
.theme-marquee {
    background: var(--color-pale);
    border-top: 1px solid var(--color-border);
    padding: 32px 0;
    overflow: hidden;
}

.theme-marquee__track {
    display: flex;
    align-items: center;
    gap: 64px;
    width: max-content;
    animation: marquee-scroll 48s linear infinite;
}

.theme-marquee__track:hover {
    animation-play-state: paused;
}

.theme-marquee__item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.theme-marquee__item:hover { opacity: 1; }

.theme-marquee__item img {
    height: 100%;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =========================================
   INTRO / TEXT SECTION
   ========================================= */
.theme-intro__inner {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.theme-intro__heading {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--color-primary);
    margin-bottom: 20px;
}

.theme-intro__body {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--color-text-mid);
}

/* =========================================
   BANNER / CTA STRIP
   ========================================= */
.theme-banner {
    background: var(--color-primary);
}

.theme-banner__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.theme-banner__left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.theme-banner__heading {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--color-white);
    line-height: 1.25;
}

.theme-banner__body {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.7);
}

.theme-banner__right { overflow: hidden; }

.theme-banner__image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* =========================================
   POSTS / PROJECT GRID
   ========================================= */
.theme-grid-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.theme-grid-heading {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--color-primary);
}

.theme-tabs {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.theme-tab {
    font-family: var(--font-base);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 9px 20px;
    background: transparent;
    border: 1.5px solid var(--color-border);
    color: #666;
    cursor: pointer;
    border-radius: 0;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
}

.theme-tab:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.theme-tab.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.theme-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.theme-post-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: transform 0.22s, box-shadow 0.22s;
}

.theme-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(16,20,64,0.1);
}

.theme-post-card__thumb {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
}

.theme-post-card__thumb--placeholder {
    background: var(--color-pale);
}

.theme-post-card__body {
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.theme-post-card__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.theme-post-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.35;
}

.theme-grid-footer {
    text-align: center;
    margin-top: 48px;
}

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.theme-page-hero {
    position: relative;
    height: 220px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.theme-page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.theme-page-hero__bg--fallback {
    background: var(--color-primary);
}

.theme-page-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(16,20,64,0.72);
    z-index: 1;
}

.theme-page-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 48px;
}

.theme-page-hero__title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--color-white);
    line-height: 1.2;
    max-width: 900px;
}

/* =========================================
   CONTACT STRIP (floating card above footer)
   ========================================= */
.theme-contact-strip {
    background: linear-gradient(to bottom, var(--color-pale) 50%, var(--color-primary) 50%) !important;
    padding-bottom: 0;
}


.theme-contact-card {
    background: var(--color-white);
    box-shadow: 0 20px 80px rgba(16,20,64,0.1);
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    position: relative;
}

.theme-contact-card__left {
    padding: 52px 48px;
    border-right: 1px solid var(--color-border);
}

.theme-contact-card__title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--color-primary);
    margin-bottom: 14px;
}

.theme-contact-card__body {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-mid);
    margin-bottom: 36px;
}

.theme-contact-card__details {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.theme-contact-card__detail {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-primary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.18s;
}

.theme-contact-card__detail:hover { color: var(--color-accent); }

.theme-contact-card__detail svg {
    flex-shrink: 0;
    color: var(--color-accent);
    opacity: 0.7;
}

.theme-contact-card__right {
    padding: 52px 48px;
}

/* Form */
.theme-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.theme-form__row {
    display: flex;
    gap: 16px;
}

.theme-form__row .theme-form__field { flex: 1; }

.theme-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.theme-form__field label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.theme-form__field input,
.theme-form__field select,
.theme-form__field textarea {
    font-family: var(--font-base);
    font-size: 0.9375rem;
    color: var(--color-text);
    background: var(--color-pale);
    border: 1.5px solid var(--color-border);
    border-radius: 0;
    padding: 12px 14px;
    width: 100%;
    outline: none;
    transition: border-color 0.18s, background 0.18s;
    appearance: none;
    -webkit-appearance: none;
}

.theme-form__field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23101440' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.theme-form__field input:focus,
.theme-form__field select:focus,
.theme-form__field textarea:focus {
    border-color: var(--color-accent);
    background: var(--color-white);
}

.theme-form__field textarea {
    resize: vertical;
    min-height: 110px;
}

.theme-form__submit {
    font-family: var(--font-base);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--color-primary);
    color: var(--color-white);
    border: 2px solid var(--color-primary);
    border-radius: 0;
    padding: 14px 32px;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.theme-form__submit:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.theme-form-success {
    background: #f0f9ff;
    border: 1.5px solid var(--color-accent);
    color: var(--color-primary);
    padding: 20px 24px;
    font-weight: 600;
    font-size: 0.9375rem;
}

@media (max-width: 860px) {
    .theme-contact-card { grid-template-columns: 1fr; }
    .theme-contact-card__left {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        padding: 36px 28px;
    }
    .theme-contact-card__right { padding: 36px 28px; order:-1; }
    .theme-form__row { flex-direction: column; }
}

/* =========================================
   FOOTER
   ========================================= */
#site-footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0;
    /* override sticky header styles */
    position: static;
    border-bottom: none;
}

.theme-footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

.theme-footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 60px;
    padding: 128px 0 52px; /* 64px card offset + 64px breathing room */
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.theme-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.theme-footer-logo {
    max-width: 160px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.theme-footer-logo-link { display: inline-block; width: fit-content; }

.theme-footer-name {
    color: var(--color-white);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.theme-footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.55);
}

.theme-footer-heading {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 18px;
}

.theme-footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.theme-footer-links a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.18s;
}

.theme-footer-links a:hover { color: var(--color-white); }

.theme-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
}

.theme-footer-copy {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.35);
    margin: 0;
}

.theme-footer-socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.theme-footer-socials a {
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    transition: color 0.18s;
}

.theme-footer-socials a:hover { color: var(--color-white); }

/* =========================================
   CONTENT PAGES
   ========================================= */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 { margin: 1.5em 0 0.5em; }

.entry-content p { margin-bottom: 1.25em; }
.entry-content a { text-decoration: underline; }
.entry-content ul,
.entry-content ol { list-style: disc; padding-left: 1.5em; margin-bottom: 1.25em; }

/* =========================================
   WP REQUIRED
   ========================================= */
.alignleft  { float: left; margin-right: 1.5em; margin-bottom: 1em; }
.alignright { float: right; margin-left: 1.5em; margin-bottom: 1em; }
.aligncenter { display: block; margin: 0 auto 1em; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.875rem; color: #666; margin-top: 0.5em; }
.screen-reader-text { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 960px) {
    .theme-banner__inner { grid-template-columns: 1fr; gap: 40px; }
    .theme-banner__right { display: none; }
    .theme-grid { grid-template-columns: repeat(2, 1fr); }
    .theme-grid-header { flex-direction: column; align-items: flex-start; }
    .theme-footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding-top: 100px;
    }
    .theme-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
    .theme-section { padding: 60px 0; }
    .theme-grid { grid-template-columns: 1fr; }
    .theme-tabs { flex-wrap: wrap; }
    .theme-footer-top { grid-template-columns: 1fr; }
}

/* =========================================
   REVIEWS STRIP
   ========================================= */
.theme-reviews-strip {
    background: var(--color-pale);
    padding: 56px 0;
    border-top: 1px solid var(--color-border);
}

/* =========================================
   MOBILE FIXES
   ========================================= */
@media (max-width: 768px) {
    .theme-contact-card { grid-template-columns: 1fr; }
    .theme-contact-card__left {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        padding: 32px 24px;
    }
    .theme-contact-card__right { padding: 32px 24px; }
    .theme-form__row { flex-direction: column; }
    .theme-footer-top {
        grid-template-columns: 1fr;
        padding-top: 80px;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .theme-section { padding: 48px 0; }
    .theme-section--sm { padding: 36px 0; }
    .splash-section { padding: 40px 0 48px; }
    .theme-banner__inner { grid-template-columns: 1fr; gap: 24px; }
    .theme-banner__right { display: none; }
    .theme-grid { grid-template-columns: 1fr; }
    .theme-cards__grid { gap: 8px; }
    .theme-card,
    .theme-card:hover { flex: 0 0 100%; min-height: 220px; }
	.theme-reviews-strip {padding-bottom: 1px}
    .theme-contact-card__left { padding: 24px 20px; }
    .theme-contact-card__right { padding: 24px 20px; }
    .theme-footer-top { padding-top: 60px; }
    .theme-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}


/* =========================================
   PAGE HERO — standard navy hero for inner pages
   ========================================= */
.page-hero {
    background: var(--color-primary);
    padding: 56px 0 64px;
}
.page-hero__eyebrow {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 10px;
}
.page-hero__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--color-white);
    margin: 12px 0 16px;
    line-height: 1.1;
}
.page-hero__sub {
    color: rgba(255,255,255,0.65);
    max-width: 640px;
    margin: 0;
}

/* =========================================
   BREADCRUMB — shared
   ========================================= */
.cs-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.cs-breadcrumb a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.18s;
}
.cs-breadcrumb a:hover { color: var(--color-white); }
.cs-breadcrumb span:last-child { color: rgba(255,255,255,0.4); }

/* =========================================
   FAQ ACCORDION — shared
   ========================================= */
.tr-faqs__list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--color-border);
}
.tr-faq { border-bottom: 1px solid var(--color-border); }
.tr-faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-base);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    text-align: left;
    transition: color 0.18s;
}
.tr-faq__q:hover { color: var(--color-accent); }
.tr-faq__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-accent);
    transition: transform 0.25s;
}
.tr-faq__q[aria-expanded="true"] .tr-faq__icon { transform: rotate(180deg); }
.tr-faq__a { padding: 0 0 22px; }
.tr-faq__a p {
    color: var(--color-text-mid);
    max-width: 860px;
    margin: 0;
}
.tr-faq__a[hidden] { display: none; }
.faq-section-heading {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--color-primary);
    margin-bottom: 40px;
}

/* =========================================
   FILTER TABS — shared
   ========================================= */
.ca-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.ca-tab {
    font-family: var(--font-base);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 9px 20px;
    background: transparent;
    border: 1.5px solid var(--color-border);
    color: var(--color-text-mid);
    cursor: pointer;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.ca-tab:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}
.ca-tab.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}
/* Dark background variant — add .ca-tabs--dark to wrapper */
.ca-tabs--dark .ca-tab {
    border-color: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.65);
}
.ca-tabs--dark .ca-tab:hover {
    border-color: var(--color-white);
    color: var(--color-white);
}
.ca-tabs--dark .ca-tab.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
}
@media (max-width: 540px) {
    .ca-tab { padding: 8px 14px; font-size: 0.75rem; }
}

/* =========================================
   TAGS — shared
   ========================================= */
.ca-tag {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}
.ca-tag--type {
    background: rgba(0,104,174,0.1);
    color: var(--color-accent);
    border: 1px solid rgba(0,104,174,0.2);
	width: fit-content;
}

.ca-tag--red {
    background: rgba(192,57,43,0.1);
    color: #c0392b;
    border: 1px solid rgba(192,57,43,0.2);
}

.ca-tag--blue {
    background: rgba(0,104,174,0.1);
    color: var(--color-accent);
    border: 1px solid rgba(0,104,174,0.2);
}
	
.ca-tag--type {
    background: rgba(90,99,120,0.08);
    color: var(--color-text-mid);
    border: 1px solid rgba(90,99,120,0.2);
}

.ca-tag--card {
    background: var(--color-pale);
    color: var(--color-text-mid);
    border: 1px solid var(--color-border);
}

/* =========================================
   COURSE / RESOURCE CARDS — shared
   ========================================= */
.ca-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ca-card {
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.22s, box-shadow 0.22s;
}
.ca-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(16,20,64,0.1);
}
.ca-card__body {
    padding: 20px 22px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ca-card__tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.ca-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.3;
    margin-bottom: 4px;
}
.ca-card__meta { display: flex; flex-direction: column; gap: 6px; }
.ca-card__meta-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8125rem;
    color: var(--color-text-mid);
}
.ca-card__meta-item svg { flex-shrink: 0; opacity: 0.6; }
.ca-card__meta-item--date { color: var(--color-accent); font-weight: 600; }
.ca-card__meta-item--date svg { opacity: 1; stroke: var(--color-accent); }
.ca-card__footer {
    padding: 14px 22px;
    border-top: 1px solid var(--color-border);
    background: var(--color-pale);
}
.ca-card__cta {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.03em;
}
.ca-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--color-text-mid);
    padding: 60px 0;
}
.ca-empty a { color: var(--color-accent); text-decoration: underline; }
@media (max-width: 960px) { .ca-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .ca-grid { grid-template-columns: 1fr; } }

/* =========================================
   PROSE — shared (replaces .cs-prose and .sp-prose)
   ========================================= */
.theme-prose {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--color-text-mid);
}
.theme-prose p { margin-bottom: 1em; }
.theme-prose p:last-child { margin-bottom: 0; }
.theme-prose ul, .theme-prose ol { padding-left: 1.5em; margin-bottom: 1em; }
.theme-prose ul { list-style: disc; }
.theme-prose ol { list-style: decimal; }
.theme-prose li { margin-bottom: 0.5em; color: var(--color-text-mid); }
.theme-prose strong { color: var(--color-primary); font-weight: 700; }
.theme-prose a { color: var(--color-accent); text-decoration: underline; }
.theme-prose img { max-width: 100%; height: auto; margin: 1.5em 0; }
.theme-prose blockquote {
    border-left: 3px solid var(--color-accent);
    padding: 4px 0 4px 20px;
    margin: 1.5em 0;
    font-style: italic;
    color: var(--color-primary);
}
/* Keep legacy aliases working */
.cs-prose, .sp-prose { font-size: 0.9375rem; line-height: 1.8; color: var(--color-text-mid); }
.cs-prose p, .sp-prose p { margin-bottom: 1em; }
.cs-prose ul, .sp-prose ul, .cs-prose ol, .sp-prose ol { padding-left: 1.5em; margin-bottom: 1em; list-style: disc; }
.cs-prose li, .sp-prose li { margin-bottom: 0.5em; }
.cs-prose strong, .sp-prose strong { color: var(--color-primary); font-weight: 700; }
.cs-prose a, .sp-prose a { color: var(--color-accent); text-decoration: underline; }

/* =========================================
   DATES CARD — shared
   ========================================= */
.cs-dates-card {
    background: var(--color-white);
    box-shadow: 0 8px 48px rgba(16,20,64,0.14);
}
.cs-dates-card__header {
    background: var(--color-primary);
    padding: 18px 24px;
}
.cs-dates-card__title {
    color: var(--color-white);
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin: 0;
}
.cs-dates-card__body { padding: 20px 24px; }
.cs-dates-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cs-dates-list__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: var(--color-pale);
    border: 1px solid var(--color-border);
    gap: 12px;
}
.cs-dates-list__date { display: flex; align-items: baseline; gap: 6px; }
.cs-dates-list__day {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}
.cs-dates-list__month {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text-mid);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.cs-book-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.18s;
    white-space: nowrap;
    flex-shrink: 0;
}
.cs-book-btn:hover { background: var(--color-primary); }
.cs-dates-empty {
    font-size: 0.9375rem;
    color: var(--color-text-mid);
    line-height: 1.6;
    margin-bottom: 16px;
}
.cs-dates-card__footer { padding: 0 24px 24px; }
.cs-enquire-btn {
    display: block;
    text-align: center;
    padding: 14px 20px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.18s;
    width: 100%;
}
.cs-enquire-btn:hover { background: var(--color-accent); }
.cs-enquire-btn--full { display: block; }
@media (max-width: 540px) {
    .cs-dates-list__item { flex-direction: column; align-items: flex-start; gap: 10px; }
    .cs-book-btn { width: 100%; justify-content: center; }
}

/* =========================================
   SIDEBAR — shared sticky pattern
   ========================================= */
.cs-sidebar { position: sticky; top: 96px; }
@media (max-width: 960px) {
    .cs-sidebar { position: static; order: -1; }
}

/* =========================================
   HEADER SHARED — tr- nav and mobile nav
   shared across header.php, header-training.php,
   header-wind.php
   ========================================= */
.tr-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 2000;
    background: var(--color-white);
    box-shadow: 0 2px 24px rgba(16,20,64,0.10);
}
.tr-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
	padding: 0px 12px;
}
.tr-header__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
}
.tr-header__logo-text {
    font-size: 1.425rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0; padding: 0;
}
.tr-nav { margin-left: 0; }
.tr-nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0; padding: 0;
}
.tr-nav__item { position: static; }
.tr-nav__link,
.tr-nav__link--btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    font-family: var(--font-base);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.18s;
    white-space: nowrap;
    line-height: 1;
}
.tr-nav__link:hover,
.tr-nav__link--btn:hover { color: var(--color-accent); }
.tr-nav__chevron {
    width: 11px; height: 7px;
    transition: transform 0.22s;
    flex-shrink: 0;
}
.tr-nav__link--btn[aria-expanded="true"] .tr-nav__chevron { transform: rotate(180deg); }
.tr-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.tr-header__cta { font-size: 0.8125rem; padding: 10px 22px; }

/* Switcher */
.tr-header__switcher {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--color-border);
    overflow: hidden;
}
.tr-switcher__btn {
    padding: 7px 14px;
    font-family: var(--font-base);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-text-mid);
    background: var(--color-white);
    border-right: 1.5px solid var(--color-border);
    transition: background 0.18s, color 0.18s;
    white-space: nowrap;
}
.tr-switcher__btn:last-child { border-right: none; }
.tr-switcher__btn:hover { background: var(--color-pale); color: var(--color-primary); }
.tr-switcher__btn--active { background: var(--color-primary); color: var(--color-white); }
.tr-switcher__btn--active:hover { background: var(--color-primary); color: var(--color-white); }

/* Mobile toggle */
.tr-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    width: 36px; height: 36px;
}
.tr-mobile-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--color-primary);
    transition: transform 0.25s, opacity 0.25s;
    transform-origin: center;
}
.tr-mobile-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.tr-mobile-toggle.is-open span:nth-child(2) { opacity: 0; }
.tr-mobile-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.tr-mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--color-primary);
    z-index: 3000;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
}
.tr-mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.tr-mobile-nav__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 72px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
}
.tr-mobile-nav__body {
    padding: 8px 0 48px;
    display: flex;
    flex-direction: column;
}
.tr-mobile-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.18s;
}
.tr-mobile-close:hover { color: var(--color-white); }
.tr-mob-link {
    display: flex;
    align-items: center;
    padding: 18px 24px;
    font-size: 1.0625rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: color 0.18s, background 0.18s;
}
.tr-mob-link:hover { color: var(--color-white); background: rgba(255,255,255,0.05); }
.tr-mob-group { border-bottom: 1px solid rgba(255,255,255,0.08); }
.tr-mob-group__toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    font-family: var(--font-base);
    font-size: 1.0625rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.18s, background 0.18s;
    text-align: left;
}
.tr-mob-group__toggle:hover { color: var(--color-white); background: rgba(255,255,255,0.05); }
.tr-mob-group__toggle svg { flex-shrink: 0; transition: transform 0.25s; color: rgba(255,255,255,0.5); }
.tr-mob-group__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.tr-mob-group__body { background: rgba(0,0,0,0.2); padding: 8px 0 16px; }
.tr-mob-group__body[hidden] { display: none; }
.tr-mob-col-heading {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent);
    padding: 14px 24px 6px;
    display: block;
}
.tr-mob-links { list-style: none; margin: 0; padding: 0; }
.tr-mob-links li a {
    display: block;
    padding: 11px 24px 11px 32px;
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.15s, background 0.15s;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.tr-mob-links li a:hover { color: var(--color-white); background: rgba(255,255,255,0.05); }
.tr-mob-cta-wrap { padding: 32px 24px 0; }
.tr-mob-cta {
    display: block;
    text-align: center;
    padding: 16px 32px;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
}
.tr-mob-cta:hover { background: #0057a0; }
.tr-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(16,20,64,0.45);
    z-index: 2999;
    display: none;
}


@media (max-width: 960px) {
    .tr-nav { display: none; }
    .tr-header__cta { display: flex; font-size: 0.75rem; padding: 7px 10px; }
    .tr-mobile-toggle { display: flex; }
    .tr-header__switcher { display: none; }
	.tr-header__actions {gap: 5px;}
}

/* =========================================================================
   SHARED DESIGN SYSTEM
   All structural, typographic and section patterns used across templates.
   Template <style> blocks should only contain component-specific CSS.
   ========================================================================= */

/* ── SECTION BACKGROUNDS + PADDING ──────────────────────────────────────── */

/* Standard navy hero (archive/inner page headers) */
.section-hero {
    background: var(--color-primary);
    padding: 56px 0 64px;
}

/* White intro section (centred or left) */
.section-intro {
    background: var(--color-white);
    padding: 64px 0;
    border-bottom: 1px solid var(--color-border);
}

/* Light grey content section */
.section-light {
    background: var(--color-pale);
    padding: 64px 0 80px;
}

/* Dark navy content section */
.section-dark {
    background: var(--color-primary);
    padding: 64px 0 80px;
}

/* White content section */
.section-white {
    background: var(--color-white);
    padding: 64px 0 80px;
}

/* Dark CTA strip */
.section-cta {
    background: var(--color-primary);
    padding: 72px 0;
}

/* FAQs section (white) */
.section-faqs {
    background: var(--color-white);
    padding: 72px 0 96px;
}

/* Centred intro wrap modifier */
.section-intro--centered .theme-wrap {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-hero    { padding: 40px 0 52px; }
    .section-intro   { padding: 48px 0; }
    .section-light   { padding: 48px 0 56px; }
    .section-dark    { padding: 48px 0 56px; }
    .section-white   { padding: 48px 0 56px; }
    .section-cta     { padding: 48px 0; }
    .section-faqs    { padding: 48px 0 64px; }
}


/* ── HEADINGS ────────────────────────────────────────────────────────────── */

/* Page hero H1 — white, large */
.hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.1;
    margin: 12px 0 16px;
}

/* Section H2 — primary colour, medium */
.section-heading {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

/* Section H2 on dark background */
.section-heading--white {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
    line-height: 1.2;
}

/* Sub-section H3 — used inside content areas */
.content-heading {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
    line-height: 1.25;
}

/* Eyebrow label above headings */
.section-eyebrow {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 10px;
    display: block;
}


/* ── BODY COPY ───────────────────────────────────────────────────────────── */

/* Standard body copy on white/light bg */
.section-body {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--color-text-mid);
    max-width: 680px;
}

/* Body copy on dark/primary bg */
.section-body--white {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
    max-width: 640px;
}

/* Hero subtitle */
.hero-sub {
    color: rgba(255,255,255,0.65);
    max-width: 640px;
    margin: 0;
}

/* Small supporting text */
.section-sub {
    color: var(--color-text-mid);
    max-width: 640px;
    margin-bottom: 40px;
}


/* ── TEXT UNDERLINE — single standard definition ────────────────────────── */

/* Remove all previous definitions — this is the canonical one.
   Animated: starts invisible, draws in when .is-visible added by JS.
   Static: if you want it always visible, add class .text-underline--static */
.text-underline {
    background-image: linear-gradient(var(--color-accent), var(--color-accent));
    background-repeat: no-repeat;
    background-position: 0 95%;
    background-size: 0% 3px;
    transition: background-size 0.6s ease;
}

.text-underline.is-visible,
.text-underline--static {
    background-size: 100% 3px;
}


/* ── FAQ SECTION HEADING UTILITY ─────────────────────────────────────────── */
/* Use on the H2 above any .tr-faqs__list */
.faqs-heading {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 40px;
    line-height: 1.2;
}


/* ── INTRO SECTION INNER LAYOUT ──────────────────────────────────────────── */
.section-intro__inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.section-intro__heading {
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-intro__body {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--color-text-mid);
    margin: 0;
}


/* ── CTA SECTION INNER ────────────────────────────────────────────────────── */
.section-cta__title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 14px;
    line-height: 1.2;
}

.section-cta__body {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
    max-width: 600px;
    margin: 0;
}

.section-cta__btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}
