@charset "UTF-8";
/* ===================================================================
 * LH Supervision - Complete Redesign
 * Light Burgundy Theme with Refined Typography
 * ------------------------------------------------------------------- */

/* ===================================================================
 * # FONTS
 * Cormorant Garamond - Elegant serif for headings
 * Crimson Pro - Warm, readable serif for body
 * ------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Crimson+Pro:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

:root {
    --font-heading: "Cormorant Garamond", Georgia, serif;
    --font-body: "Crimson Pro", Georgia, serif;
    --font-mono: Consolas, "Andale Mono", Courier, monospace;

    /* ===================================================================
     * # LIGHT BURGUNDY COLOR PALETTE
     * ------------------------------------------------------------------- */

    /* Primary - Light Burgundy/Dusty Rose */
    --burgundy-50: #fdf8f8;
    --burgundy-100: #f9ecec;
    --burgundy-200: #f2d5d5;
    --burgundy-300: #e8b8b8;
    --burgundy-400: #d99393;
    --burgundy-500: #c46b6b;
    --burgundy-600: #a85454;
    --burgundy-700: #8c4545;
    --burgundy-800: #753c3c;
    --burgundy-900: #633636;
    --burgundy-950: #351a1a;

    /* Cream/Warm Neutrals */
    --cream-50: #fefdfb;
    --cream-100: #fcf9f3;
    --cream-200: #f8f2e8;
    --cream-300: #f0e6d6;
    --cream-400: #e5d4bd;
    --cream-500: #d4bc9e;

    /* Gold Accents */
    --gold-400: #c9a962;
    --gold-500: #b8954d;
    --gold-600: #9a7a3d;

    /* Semantic Colors */
    --color-text: #4a3f3f;
    --color-text-dark: #2d2525;
    --color-text-light: #7a6b6b;
    --color-text-muted: #9d8e8e;

    --color-bg: var(--cream-50);
    --color-bg-alt: var(--burgundy-50);
    --color-bg-warm: var(--cream-100);

    --color-border: rgba(140, 69, 69, 0.15);
    --color-border-light: rgba(140, 69, 69, 0.08);

    /* Links */
    --color-link: var(--burgundy-600);
    --color-link-hover: var(--burgundy-700);

    /* Buttons */
    --color-btn-primary: var(--burgundy-600);
    --color-btn-primary-hover: var(--burgundy-700);
    --color-btn-primary-text: var(--cream-50);

    /* Feedback */
    --color-error: #fce4e4;
    --color-success: #e8f5e8;
    --color-info: #e8f0f5;
    --color-notice: #fef8e8;

    /* Preloader */
    --color-preloader-bg: var(--burgundy-800);
    --color-loader: var(--cream-100);

    /* ===================================================================
     * # SPACING & TYPOGRAPHY SCALE
     * ------------------------------------------------------------------- */
    --base-size: 62.5%;
    --multiplier: 1;
    --base-font-size: calc(1.9rem * var(--multiplier));
    --space: calc(3.2rem * var(--multiplier));

    /* Vertical Spacing */
    --vspace-0_25: calc(0.25 * var(--space));
    --vspace-0_5: calc(0.5 * var(--space));
    --vspace-0_75: calc(0.75 * var(--space));
    --vspace-1: var(--space);
    --vspace-1_5: calc(1.5 * var(--space));
    --vspace-2: calc(2 * var(--space));
    --vspace-2_5: calc(2.5 * var(--space));
    --vspace-3: calc(3 * var(--space));
    --vspace-4: calc(4 * var(--space));
    --vspace-5: calc(5 * var(--space));
    --vspace-6: calc(6 * var(--space));
    --vspace-8: calc(8 * var(--space));

    /* Type Scale - 1.25 ratio */
    --text-xs: 1.4rem;
    --text-sm: 1.6rem;
    --text-base: var(--base-font-size);
    --text-md: 2.2rem;
    --text-lg: 2.6rem;
    --text-xl: 3.2rem;
    --text-xxl: 4rem;
    --text-xxxl: 5rem;
    --text-display-1: 6rem;
    --text-display-2: 7.5rem;
    --text-display-3: 9rem;
    --text-huge: 12rem;

    /* Grid */
    --width-sixteen-cols: 1760px;
    --width-default: 1320px;
    --width-wide: 1600px;
    --width-narrow: 1100px;
    --width-narrower: 900px;
    --width-narrowest: 700px;
    --gutter: 2.4rem;

    /* Other */
    --border-radius: 4px;
    --border-radius-lg: 8px;
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 4px 20px rgba(99, 54, 54, 0.08);
    --shadow-medium: 0 8px 40px rgba(99, 54, 54, 0.12);
}

@media screen and (max-width: 1200px) {
    :root {
        --text-display-3: 7rem;
        --text-huge: 9rem;
    }
}

@media screen and (max-width: 900px) {
    :root {
        --multiplier: 0.95;
        --text-display-1: 4.8rem;
        --text-display-2: 5.5rem;
        --text-display-3: 6rem;
        --text-huge: 7rem;
    }
}

@media screen and (max-width: 600px) {
    :root {
        --multiplier: 0.9;
        --gutter: 1.6rem;
        --text-display-1: 3.6rem;
        --text-display-2: 4.2rem;
        --text-display-3: 4.8rem;
        --text-huge: 5.5rem;
    }
}

/* ===================================================================
 * # CSS RESET
 * ------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption, footer,
header, hgroup, menu, nav, output, ruby, section,
summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

html {
    font-size: var(--base-size);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: var(--base-font-size);
    font-weight: 400;
    line-height: 1.75;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

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

/* ===================================================================
 * # GRID SYSTEM
 * ------------------------------------------------------------------- */
.row {
    display: flex;
    flex-wrap: wrap;
    max-width: var(--width-default);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

.row.width-sixteen-col { max-width: var(--width-sixteen-cols); }
.row.width-wide { max-width: var(--width-wide); }
.row.width-narrow { max-width: var(--width-narrow); }
.row.width-narrower { max-width: var(--width-narrower); }
.row.width-narrowest { max-width: var(--width-narrowest); }
.row.width-full { max-width: 100%; }

.row-x-center { justify-content: center; }
.row-y-center { align-items: center; }

.column {
    flex: 1;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

/* Column widths */
.xl-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.xl-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.xl-3 { flex: 0 0 25%; max-width: 25%; }
.xl-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.xl-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.xl-6 { flex: 0 0 50%; max-width: 50%; }
.xl-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.xl-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.xl-9 { flex: 0 0 75%; max-width: 75%; }
.xl-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.xl-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.xl-12 { flex: 0 0 100%; max-width: 100%; }

@media screen and (max-width: 1200px) {
    .lg-6 { flex: 0 0 50%; max-width: 50%; }
    .lg-12 { flex: 0 0 100%; max-width: 100%; }
}

@media screen and (max-width: 900px) {
    .md-12 { flex: 0 0 100%; max-width: 100%; }
}

@media screen and (max-width: 600px) {
    .column { flex: 0 0 100%; max-width: 100%; }
}

/* ===================================================================
 * # TYPOGRAPHY
 * ------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6,
.text-display-title {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-text-dark);
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: var(--vspace-0_75);
}

h1 { font-size: var(--text-display-1); letter-spacing: -0.02em; }
h2 { font-size: var(--text-xxl); letter-spacing: -0.01em; }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }
h5 { font-size: var(--text-md); }
h6 { font-size: var(--text-base); font-weight: 600; }

.text-display-title {
    font-size: var(--text-xxl);
    font-weight: 500;
    letter-spacing: -0.02em;
}

p {
    margin-bottom: var(--vspace-1);
}

p:last-child {
    margin-bottom: 0;
}

.lead {
    font-size: var(--text-md);
    line-height: 1.65;
    color: var(--color-text);
}

.text-pretitle {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--burgundy-500);
    margin-bottom: var(--vspace-0_5);
}

strong, b {
    font-weight: 600;
}

em, i {
    font-style: italic;
}

a {
    color: var(--color-link);
    text-decoration: none;
    transition: color var(--transition-base);
}

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

.attention-getter {
    font-size: var(--text-md);
    line-height: 1.6;
}

/* Lists */
.pagecontent ul,
.pagecontent ol {
    margin-bottom: var(--vspace-1);
    padding-left: var(--vspace-1);
}

.pagecontent ul {
    list-style: disc;
}

.pagecontent ol {
    list-style: decimal;
}

.pagecontent li {
    margin-bottom: var(--vspace-0_25);
}

/* ===================================================================
 * # PRELOADER
 * ------------------------------------------------------------------- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-preloader-bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.ss-loaded #preloader {
    opacity: 0;
    visibility: hidden;
}

#loader.dots-fade {
    display: flex;
    gap: 0.8rem;
}

#loader.dots-fade div {
    width: 1rem;
    height: 1rem;
    background-color: var(--color-loader);
    border-radius: 50%;
    animation: dotsFade 1.4s infinite ease-in-out both;
}

#loader.dots-fade div:nth-child(1) { animation-delay: -0.32s; }
#loader.dots-fade div:nth-child(2) { animation-delay: -0.16s; }
#loader.dots-fade div:nth-child(3) { animation-delay: 0s; }

@keyframes dotsFade {
    0%, 80%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    40% {
        opacity: 1;
        transform: scale(1);
    }
}

.ss-preload body {
    overflow: hidden;
}

/* ===================================================================
 * # BUTTONS
 * ------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.4rem 3rem;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

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

.btn--primary:hover {
    background-color: var(--color-btn-primary-hover);
    border-color: var(--color-btn-primary-hover);
    color: var(--color-btn-primary-text);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.btn--primary svg {
    fill: currentColor;
}

.btn--stroke {
    background-color: transparent;
    color: var(--color-text-dark);
    border-color: var(--color-text-dark);
}

.btn--stroke:hover {
    background-color: var(--color-text-dark);
    color: var(--cream-50);
}

.u-fullwidth {
    width: 100%;
}

/* ===================================================================
 * # SITE HEADER
 * ------------------------------------------------------------------- */
.s-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--vspace-0_75) 0;
    background-color: rgba(254, 253, 251, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
}

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

.s-header__block {
    display: flex;
    align-items: center;
}

.s-header__logo {
    margin-right: var(--vspace-2);
}

.s-header__logo a {
    display: block;
}

.s-header__logo img {
    height: 4.4rem;
    width: auto;
}

.s-header__nav {
    margin-left: auto;
}

.s-header__menu-links {
    display: flex;
    gap: var(--vspace-1_5);
    list-style: none;
    margin: 0;
    padding: 0;
}

.s-header__menu-links li {
    position: relative;
}

.s-header__menu-links a {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color var(--transition-base);
}

.s-header__menu-links a:hover,
.s-header__menu-links li.current a {
    color: var(--burgundy-600);
}

.s-header__menu-links li.current a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--burgundy-500);
}

/* Mobile Menu Toggle */
.s-header__menu-toggle {
    display: none;
    width: 4.4rem;
    height: 4.4rem;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 1001;
}

.s-header__menu-toggle span {
    display: block;
    background-color: var(--color-text-dark);
    width: 2.4rem;
    height: 2px;
    margin: 0 auto;
    position: relative;
    transition: background-color 0.3s;
    font-size: 0;
    color: transparent;
}

.s-header__menu-toggle span::before,
.s-header__menu-toggle span::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: inherit;
    position: absolute;
    left: 0;
    transition: all 0.3s;
}

.s-header__menu-toggle span::before {
    top: -8px;
}

.s-header__menu-toggle span::after {
    bottom: -8px;
}

.s-header__menu-toggle.is-clicked span {
    background-color: transparent;
}

.s-header__menu-toggle.is-clicked span::before,
.s-header__menu-toggle.is-clicked span::after {
    background-color: var(--color-text-dark);
}

.s-header__menu-toggle.is-clicked span::before {
    top: 0;
    transform: rotate(135deg);
}

.s-header__menu-toggle.is-clicked span::after {
    bottom: 0;
    transform: rotate(-135deg);
}

@media screen and (max-width: 900px) {
    .s-header__block {
        width: 100%;
    }

    .s-header__menu-toggle {
        display: block;
        position: fixed;
        top: var(--vspace-1_5);
        right: var(--vspace-1);
    }

    .s-header__nav {
        display: block;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-color: var(--cream-50);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: calc(6rem + var(--vspace-1)) var(--vspace-2) var(--vspace-2);
        transform: scaleY(0);
        transform-origin: top center;
        transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
        z-index: 999;
    }

    .menu-is-open .s-header__nav {
        transform: scaleY(1);
    }

    .s-header__menu-links {
        display: block;
        opacity: 0;
        transform: translateY(-1rem);
        transition: all 0.4s ease;
        transition-delay: 0s;
    }

    .menu-is-open .s-header__menu-links {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.2s;
    }

    .s-header__menu-links li {
        padding: var(--vspace-0_5) 0;
        border-bottom: 1px solid var(--color-border-light);
    }

    .s-header__menu-links li:last-child {
        border-bottom: none;
    }

    .s-header__menu-links a {
        display: block;
        font-size: var(--text-md);
        color: var(--color-text-dark);
        padding: var(--vspace-0_5) 0;
    }
}

/* ===================================================================
 * # PAGE WRAP
 * ------------------------------------------------------------------- */
#page {
    min-height: 100vh;
}

.s-pagewrap {
    position: relative;
}

.ss-home .s-content {
    padding-top: 0;
}

/* ===================================================================
 * # INTRO / HERO SECTION
 * ------------------------------------------------------------------- */
.s-intro {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: var(--vspace-6) 0 var(--vspace-4);
    background: linear-gradient(135deg, var(--cream-50) 0%, var(--burgundy-50) 50%, var(--cream-100) 100%);
    overflow: hidden;
}

.s-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(168, 84, 84, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(168, 84, 84, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

/* Subtle grain texture */
.s-intro::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

.s-intro__content {
    position: relative;
    z-index: 1;
}

.s-intro__content-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--vspace-2);
    align-items: center;
    min-height: 70vh;
}

.s-intro__content-text {
    grid-column: 1;
    grid-row: 1 / 3;
    padding-right: var(--vspace-2);
}

.s-intro__content-pretitle {
    margin-bottom: var(--vspace-1);
}

.s-intro__content-title {
    font-family: var(--font-heading);
    font-size: var(--text-huge);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--color-text-dark);
    margin-bottom: var(--vspace-1_5);
}

.s-intro__content-media {
    grid-column: 2;
    grid-row: 1 / 3;
    position: relative;
}

.s-intro__content-media-inner {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.s-intro__content-media-inner img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

/* SVG artwork specific styling */
.s-intro__content-media-inner img[src$=".svg"] {
    filter: drop-shadow(0 20px 40px rgba(99, 54, 54, 0.15));
    transition: transform var(--transition-base);
}

.s-intro__content-media-inner img[src$=".svg"]:hover {
    transform: scale(1.02);
}

.s-intro__content-media-inner .lines {
    display: none;
}

.s-intro__scroll-down {
    position: absolute;
    bottom: var(--vspace-2);
    left: 50%;
    transform: translateX(-50%);
}

.s-intro__scroll-down a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: var(--color-text-light);
    text-decoration: none;
    transition: color var(--transition-base);
}

.s-intro__scroll-down a:hover {
    color: var(--burgundy-600);
}

.s-intro__scroll-down .scroll-icon svg {
    stroke: var(--burgundy-500);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
}

.s-intro__scroll-down span {
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media screen and (max-width: 1000px) {
    .s-intro__content-inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .s-intro__content-text {
        grid-column: 1;
        grid-row: 1;
        padding-right: 0;
        text-align: center;
    }

    .s-intro__content-media {
        grid-column: 1;
        grid-row: 2;
        max-width: 500px;
        margin: 0 auto;
    }

    .s-intro__content-media-inner img {
        height: 300px;
    }

    .s-intro__scroll-down {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: var(--vspace-1);
        text-align: center;
    }
}

@media screen and (max-width: 600px) {
    .s-intro {
        padding: var(--vspace-4) 0 var(--vspace-2);
    }

    .s-intro__content-media-inner img {
        height: 220px;
    }

    .s-intro__scroll-down {
        margin-top: var(--vspace-0_5);
    }
}

/* ===================================================================
 * # CONTENT SECTIONS
 * ------------------------------------------------------------------- */
.s-content {
    padding-top: 8rem;
}

.ss-home .s-content {
    padding-top: 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--vspace-2);
}

.section-header .text-pretitle {
    margin-bottom: var(--vspace-0_5);
}

.section-header .text-display-title {
    margin-bottom: 0;
}

/* ===================================================================
 * # ABOUT SECTION
 * ------------------------------------------------------------------- */
.s-about {
    padding: var(--vspace-5) 0;
    background-color: var(--cream-50);
    position: relative;
}

.s-about__content {
    position: relative;
}

.s-about__content-imgbg {
    position: absolute;
    right: -10%;
    top: -20%;
    width: 50%;
    max-width: 400px;
    opacity: 0.06;
    pointer-events: none;
}

.grid-section-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr auto;
    gap: var(--vspace-2);
}

.grid-section-split__header {
    grid-column: 1;
    grid-row: 1;
}

.grid-section-split__primary {
    grid-column: 2;
    grid-row: 1 / 3;
}

.grid-section-split__bottom {
    grid-column: 1;
    grid-row: 3;
}

.s-about__content-main h3 {
    margin-top: var(--vspace-1_5);
    margin-bottom: var(--vspace-0_5);
    font-size: var(--text-lg);
}

.s-about__content-main h3:first-of-type {
    margin-top: var(--vspace-1);
}

@media screen and (max-width: 900px) {
    .grid-section-split {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .grid-section-split__header {
        grid-column: 1;
        grid-row: 1;
    }

    .grid-section-split__primary {
        grid-column: 1;
        grid-row: 2;
    }

    .grid-section-split__bottom {
        grid-column: 1;
        grid-row: 3;
    }
}

/* ===================================================================
 * # PAGE HEADER
 * ------------------------------------------------------------------- */
.s-pageheader {
    padding: var(--vspace-6) 0 var(--vspace-3);
    background: linear-gradient(135deg, var(--cream-50) 0%, var(--burgundy-50) 100%);
    position: relative;
}

.s-pageheader::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 90% 10%, rgba(168, 84, 84, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.page-title {
    font-family: var(--font-heading);
    font-size: var(--text-display-1);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--color-text-dark);
    position: relative;
    z-index: 1;
}

.page-title__small-type {
    display: block;
    margin-bottom: var(--vspace-0_5);
}

/* ===================================================================
 * # PAGE CONTENT
 * ------------------------------------------------------------------- */
.s-pagecontent {
    padding: var(--vspace-3) 0;
}

.pagemain {
    position: relative;
}

.pagemain h2 {
    margin-top: var(--vspace-2);
    margin-bottom: var(--vspace-0_75);
}

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

.pagemain h3 {
    margin-top: var(--vspace-1_5);
    margin-bottom: var(--vspace-0_5);
}

/* About Page Specific */
.about-intro {
    margin-bottom: var(--vspace-2);
    padding-bottom: var(--vspace-2);
    border-bottom: 1px solid var(--color-border);
}

.about-section {
    margin-bottom: var(--vspace-2);
}

/* Team Section */
.s-team {
    padding: var(--vspace-3) 0;
    background-color: var(--burgundy-50);
}

.team-member__role {
    font-weight: 600;
    color: var(--burgundy-600);
    margin-bottom: var(--vspace-0_75);
}

/* Accreditations */
.s-accreditations {
    padding: var(--vspace-3) 0;
}

.accreditations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--vspace-1);
    margin-top: var(--vspace-1);
}

.accreditation-item {
    text-align: center;
    padding: var(--vspace-1);
    background-color: var(--cream-100);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border-light);
}

.accreditation-item h4 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--burgundy-700);
    margin-bottom: var(--vspace-0_25);
}

.accreditation-item p {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    margin-bottom: 0;
}

@media screen and (max-width: 900px) {
    .accreditations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 500px) {
    .accreditations-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================================================
 * # ARTICLES PAGE
 * ------------------------------------------------------------------- */
.s-articles-list {
    padding: var(--vspace-2) 0 var(--vspace-4);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--vspace-1_5);
    margin-top: var(--vspace-1);
}

.article-card {
    background-color: var(--cream-50);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: var(--vspace-1_5);
    transition: all var(--transition-base);
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    border-color: var(--burgundy-200);
}

.article-card__tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: var(--burgundy-100);
    color: var(--burgundy-700);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--border-radius);
    margin-bottom: var(--vspace-0_75);
}

.article-card__title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    margin-bottom: var(--vspace-0_25);
}

.article-card__date {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--vspace-0_5);
}

.article-card__excerpt {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    margin-bottom: var(--vspace-1);
}

.article-card .btn {
    padding: 1rem 2rem;
    font-size: var(--text-xs);
}

@media screen and (max-width: 700px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================================================
 * # RESOURCES PAGE
 * ------------------------------------------------------------------- */
.s-resources-list {
    padding: var(--vspace-1) 0 var(--vspace-4);
}

.resource-card {
    background: linear-gradient(135deg, var(--cream-100) 0%, var(--burgundy-50) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: var(--vspace-2);
    margin-bottom: var(--vspace-2);
}

.resource-card--featured {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--vspace-1_5);
    align-items: start;
}

.resource-card__icon {
    width: 8rem;
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--burgundy-100);
    border-radius: 50%;
    color: var(--burgundy-600);
}

.resource-card__content h2 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    margin-bottom: var(--vspace-0_25);
}

.resource-card__subtitle {
    font-size: var(--text-md);
    color: var(--burgundy-600);
    font-weight: 500;
    margin-bottom: var(--vspace-0_75);
}

.resource-card__downloads {
    display: flex;
    gap: var(--vspace-0_75);
    margin-top: var(--vspace-1);
    flex-wrap: wrap;
}

.app-badge img {
    height: 4.4rem;
    width: auto;
}

.resources-info {
    margin-top: var(--vspace-2);
    padding: var(--vspace-1_5);
    background-color: var(--cream-100);
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--burgundy-400);
}

.resources-info h3 {
    margin-top: 0;
    margin-bottom: var(--vspace-0_5);
}

@media screen and (max-width: 600px) {
    .resource-card--featured {
        grid-template-columns: 1fr;
    }

    .resource-card__icon {
        width: 6rem;
        height: 6rem;
    }
}

/* ===================================================================
 * # SERVICES OVERVIEW (Homepage)
 * ------------------------------------------------------------------- */
.s-services {
    padding: var(--vspace-4) 0;
    background-color: var(--burgundy-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--vspace-2);
    margin-top: var(--vspace-2);
}

.service-card {
    background-color: var(--cream-50);
    padding: var(--vspace-2);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
}

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

.service-card h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    margin-bottom: var(--vspace-0_75);
}

.service-card p {
    color: var(--color-text-light);
    margin-bottom: var(--vspace-1);
}

@media screen and (max-width: 700px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================================================
 * # CTA SECTION
 * ------------------------------------------------------------------- */
.s-cta {
    padding: var(--vspace-5) 0;
    background: linear-gradient(135deg, var(--burgundy-700) 0%, var(--burgundy-800) 100%);
    position: relative;
    overflow: hidden;
}

.s-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.03) 0%, transparent 30%);
    pointer-events: none;
}

.s-cta__content {
    position: relative;
    z-index: 1;
}

.s-cta .text-display-title {
    color: var(--cream-50);
    margin-bottom: var(--vspace-1);
}

.s-cta .lead {
    color: var(--burgundy-200);
    margin-bottom: var(--vspace-1_5);
}

.s-cta .btn--primary {
    background-color: var(--cream-50);
    color: var(--burgundy-800);
    border-color: var(--cream-50);
}

.s-cta .btn--primary:hover {
    background-color: var(--cream-100);
    border-color: var(--cream-100);
}

.text-center {
    text-align: center;
}

/* ===================================================================
 * # FOOTER
 * ------------------------------------------------------------------- */
.s-footer {
    background-color: var(--burgundy-900);
    color: var(--burgundy-200);
    padding: var(--vspace-4) 0 var(--vspace-2);
}

.s-footer__content {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: var(--vspace-3);
}

.s-footer__block {
    padding: 0 var(--gutter);
}

.s-footer h3 {
    font-family: var(--font-heading);
    font-size: var(--text-md);
    color: var(--cream-100);
    margin-bottom: var(--vspace-1);
}

.s-footer p {
    color: var(--burgundy-300);
    font-size: var(--text-sm);
    line-height: 1.7;
}

.s-footer .link-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.s-footer .link-list li {
    margin-bottom: var(--vspace-0_25);
    font-size: var(--text-sm);
    color: var(--burgundy-300);
}

.s-footer .link-list a {
    color: var(--burgundy-300);
    transition: color var(--transition-base);
}

.s-footer .link-list a:hover {
    color: var(--cream-100);
}

.s-footer__bottom {
    padding-top: var(--vspace-1_5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ss-copyright {
    font-size: var(--text-sm);
    color: var(--burgundy-400);
}

.ss-copyright span {
    margin-right: var(--vspace-1);
}

.ss-copyright a {
    color: var(--burgundy-400);
}

.ss-copyright a:hover {
    color: var(--cream-100);
}

/* Go Top Button */
.ss-go-top {
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.ss-go-top.link-is-visible {
    opacity: 1;
    visibility: visible;
}

.ss-go-top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    background-color: var(--burgundy-700);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.ss-go-top a:hover {
    background-color: var(--burgundy-600);
    transform: translateY(-4px);
}

.ss-go-top svg {
    stroke: var(--cream-100);
}

@media screen and (max-width: 900px) {
    .s-footer__content {
        flex-direction: column;
    }

    .s-footer__block {
        margin-bottom: var(--vspace-2);
    }

    .s-footer__bottom {
        flex-direction: column;
        gap: var(--vspace-1);
        text-align: center;
    }
}

/* ===================================================================
 * # CONTACT PAGE SPECIFIC
 * ------------------------------------------------------------------- */
.contact-block {
    padding: var(--vspace-1_5);
    background-color: var(--cream-100);
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--burgundy-400);
    height: 100%;
}

.contact-block h3 {
    margin-top: 0;
    margin-bottom: var(--vspace-0_5);
    font-family: var(--font-heading);
    font-size: var(--text-lg);
}

.contact-block a {
    font-size: var(--text-md);
    font-weight: 500;
}

/* ===================================================================
 * # DOWNLOAD BUTTONS
 * ------------------------------------------------------------------- */
.download-buttons {
    display: flex;
    gap: var(--vspace-0_75);
    flex-wrap: wrap;
    margin-top: var(--vspace-1);
}

.download-buttons img {
    height: 4.4rem;
    width: auto;
}

/* Button spacing for forms */
.pagemain .btn {
    margin-right: var(--vspace-0_5);
    margin-bottom: var(--vspace-0_5);
}

@media screen and (max-width: 600px) {
    .pagemain .btn {
        display: flex;
        width: 100%;
        margin-right: 0;
    }
}

/* ===================================================================
 * # UTILITY CLASSES
 * ------------------------------------------------------------------- */
.hide { display: none !important; }
.show { display: block !important; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: var(--vspace-1); }
.mb-1 { margin-bottom: var(--vspace-1); }
.mt-2 { margin-top: var(--vspace-2); }
.mb-2 { margin-bottom: var(--vspace-2); }

/* ===================================================================
 * # ANIMATIONS
 * ------------------------------------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ss-loaded .s-intro__content-text {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.ss-loaded .s-intro__content-media {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.ss-loaded .s-intro__scroll-down {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* ===================================================================
 * # GRID BLOCK (Legacy support)
 * ------------------------------------------------------------------- */
.grid-block {
    display: block;
}

/* Target section for smooth scrolling offset */
.target-section {
    scroll-margin-top: 10rem;
}
