/* =========================================
   RAWSON UTILITIES - Main Stylesheet
   Industrial/Utilitarian Design System
   ========================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Work+Sans:wght@300;400;500;600;700&display=swap');

/* =========================================
   CSS Custom Properties
   ========================================= */
:root {
    /* Brand Colors */
    --scarlet: #fe1817;
    --scarlet-dark: #d91413;
    --cod-gray: #131313;
    --swiss-coffee: #e2dbdb;
    --dove-gray: #727272;
    --persimmon: #fe5957;
    --sundown: #ffb1b0;

    /* Functional Colors */
    --white: #ffffff;
    --off-white: #f8f7f7;
    --black: #000000;

    /* Typography */
    --font-display: 'Bebas Neue', Impact, sans-serif;
    --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing Scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;

    /* Layout */
    --container-max: 1400px;
    --header-height: 140px; /* top bar (40px) + header (100px) */

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.25);
}

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

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

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* =========================================
   Typography
   ========================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(3rem, 8vw, 7rem);
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

.text-large {
    font-size: 1.25rem;
    line-height: 1.7;
}

.text-small {
    font-size: 0.875rem;
}

.text-muted {
    color: var(--dove-gray);
}

/* =========================================
   Layout Utilities
   ========================================= */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-4xl) 0;
}

.section--dark {
    background-color: var(--cod-gray);
    color: var(--white);
}

.section--light {
    background-color: var(--off-white);
}

.section--scarlet {
    background-color: var(--scarlet);
    color: var(--white);
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--space-lg);
}

.grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid--5 {
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1200px) {
    .grid--5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .grid--5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid--2,
    .grid--3,
    .grid--4,
    .grid--5 {
        grid-template-columns: 1fr;
    }
}

/* Flex Utilities */
.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 2px solid transparent;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

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

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

.btn--outline {
    background-color: transparent;
    color: var(--cod-gray);
    border-color: var(--cod-gray);
}

.btn--outline:hover {
    background-color: var(--cod-gray);
    color: var(--white);
}

.btn--outline-white {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn--outline-white:hover {
    background-color: var(--white);
    color: var(--cod-gray);
}

.btn--white {
    background-color: var(--white);
    color: var(--cod-gray);
    border-color: var(--white);
}

.btn--white:hover {
    background-color: var(--swiss-coffee);
    border-color: var(--swiss-coffee);
    transform: translateY(-2px);
}

/* =========================================
   Top Bar
   ========================================= */
.top-bar {
    background-color: var(--cod-gray);
    padding: 0.5rem 0;
}

.top-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar__contact {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.top-bar__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--swiss-coffee);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.top-bar__link:hover {
    color: var(--white);
}

.top-bar__link svg {
    width: 16px;
    height: 16px;
}

.top-bar__social {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.top-bar__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: var(--swiss-coffee);
    transition: color var(--transition-fast);
}

.top-bar__social-link:hover {
    color: var(--scarlet);
}

.top-bar__social-link svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 600px) {
    .top-bar__contact {
        display: none;
    }
}

/* =========================================
   Header & Navigation
   ========================================= */
.header {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    height: 100px;
    background-color: var(--white);
    z-index: 1000;
    transition: all var(--transition-base);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header--scrolled {
    top: 0;
    box-shadow: var(--shadow-md);
}

@media (max-width: 968px) {
    .header--scrolled {
        height: 65px;
    }

    .header--scrolled .header__logo {
        height: 50px;
    }
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header__logo {
    height: 80px;
    width: auto;
}

.header__logo img {
    height: 100%;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav__list > li {
    position: relative;
}

.nav__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--cod-gray);
    padding: 1.5rem 1rem;
    transition: color var(--transition-fast);
}

.nav__link:hover,
.nav__link--active {
    color: var(--scarlet);
}

.nav__arrow {
    width: 14px;
    height: 14px;
    transition: transform var(--transition-fast);
}

.nav__item--dropdown:hover .nav__arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    z-index: 100;
}

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

.nav__dropdown li {
    border-bottom: 1px solid var(--swiss-coffee);
}

.nav__dropdown li:last-child {
    border-bottom: none;
}

.nav__dropdown a {
    display: block;
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
    color: var(--cod-gray);
    transition: all var(--transition-fast);
}

.nav__dropdown a:hover {
    background-color: var(--off-white);
    color: var(--scarlet);
    padding-left: 1.5rem;
}

/* Mobile Menu Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    cursor: pointer;
    background: none;
    border: none;
}

.nav__toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--cod-gray);
    transition: all var(--transition-base);
}

.nav__toggle--active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle--active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle--active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 968px) {
    .top-bar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1001;
    }

    .header {
        top: 40px;
    }

    .header--scrolled {
        top: 0;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__list {
        position: fixed;
        top: 140px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: var(--space-lg);
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
        overflow-y: auto;
    }

    .nav__list--open {
        opacity: 1;
        visibility: visible;
    }

    .nav__list > li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--swiss-coffee);
    }

    .nav__link {
        display: block;
        padding: 1.25rem;
        font-size: 1.125rem;
    }

    .nav__arrow {
        display: none;
    }

    .nav__dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: var(--off-white);
        border-top: 1px solid var(--swiss-coffee);
    }

    .nav__dropdown li {
        border-bottom: 1px solid var(--swiss-coffee);
    }

    .nav__dropdown li:last-child {
        border-bottom: none;
    }

    .nav__dropdown a {
        padding: 0.875rem 1rem;
        font-size: 0.9375rem;
        text-transform: none;
    }

    .nav__dropdown a:hover {
        padding-left: 1rem;
        background-color: var(--swiss-coffee);
    }
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--cod-gray);
    overflow: hidden;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Hexagonal Grid Pattern */
.hero__pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23fe1817' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Gradient Overlay */
.hero__gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--cod-gray) 0%, rgba(19,19,19,0.9) 50%, var(--cod-gray) 100%);
}

/* Animated Lines */
.hero__lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero__line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--scarlet), transparent);
    opacity: 0.3;
    animation: lineMove 8s infinite linear;
}

.hero__line:nth-child(1) {
    top: 20%;
    width: 40%;
    animation-delay: 0s;
}

.hero__line:nth-child(2) {
    top: 40%;
    width: 60%;
    animation-delay: 2s;
}

.hero__line:nth-child(3) {
    top: 60%;
    width: 30%;
    animation-delay: 4s;
}

.hero__line:nth-child(4) {
    top: 80%;
    width: 50%;
    animation-delay: 6s;
}

@keyframes lineMove {
    0% {
        left: -50%;
    }
    100% {
        left: 100%;
    }
}

.hero__content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 900px;
    padding-top: var(--header-height);
}

.hero__label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--scarlet);
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero__label::before {
    content: '';
    width: 40px;
    height: 2px;
    background-color: var(--scarlet);
}

.hero__title {
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.hero__title span {
    color: var(--scarlet);
}

.hero__description {
    font-size: 1.25rem;
    color: var(--swiss-coffee);
    max-width: 600px;
    margin-bottom: var(--space-xl);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.hero__actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: var(--white);
    opacity: 0.6;
    transition: opacity var(--transition-base);
    cursor: pointer;
}

.hero__scroll:hover {
    opacity: 1;
}

.hero__scroll-text {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--white), transparent);
    position: relative;
}

.hero__scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background-color: var(--scarlet);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(40px);
        opacity: 0;
    }
}

/* =========================================
   Services Section
   ========================================= */
.services {
    position: relative;
}

.services__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.services__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--scarlet);
    margin-bottom: var(--space-sm);
}

.services__title {
    margin-bottom: var(--space-md);
}

.services__description {
    color: var(--dove-gray);
    font-size: 1.125rem;
}

/* Service Card */
.service-card {
    position: relative;
    background-color: var(--white);
    border: 1px solid var(--swiss-coffee);
    padding: 0;
    transition: all var(--transition-base);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card__image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

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

.service-card__content {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--scarlet);
    transition: height var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card:hover::before {
    height: 100%;
}

.service-card__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--off-white);
    margin-bottom: var(--space-lg);
    position: relative;
}

.service-card__icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--scarlet);
    stroke-width: 1.5;
    fill: none;
}

.service-card__icon::after {
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 15px;
    height: 15px;
    border-top: 2px solid var(--scarlet);
    border-right: 2px solid var(--scarlet);
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--cod-gray);
}

.service-card__text {
    color: var(--dove-gray);
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-weight: 600;
    color: var(--scarlet);
    transition: gap var(--transition-base);
}

.service-card__link:hover {
    gap: var(--space-sm);
}

.service-card__link svg {
    width: 16px;
    height: 16px;
}

/* =========================================
   Stats Section
   ========================================= */
.stats {
    position: relative;
    background-color: var(--cod-gray);
    overflow: hidden;
}

.stats__pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .stats__grid {
        grid-template-columns: 1fr;
    }
}

.stat {
    text-align: center;
    padding: var(--space-lg);
    position: relative;
}

.stat::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, var(--dove-gray), transparent);
}

.stat:last-child::after {
    display: none;
}

@media (max-width: 1024px) {
    .stat:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .stat::after {
        display: none;
    }
}

.stat__number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: var(--scarlet);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat__label {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--swiss-coffee);
}

/* =========================================
   About Preview Section
   ========================================= */
.about-preview {
    position: relative;
    overflow: hidden;
}

.about-preview__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

@media (max-width: 968px) {
    .about-preview__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

.about-preview__content {
    max-width: 550px;
}

.about-preview__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--scarlet);
    margin-bottom: var(--space-sm);
}

.about-preview__title {
    margin-bottom: var(--space-md);
}

.about-preview__text {
    color: var(--dove-gray);
    margin-bottom: var(--space-lg);
}

.about-preview__list {
    margin-bottom: var(--space-xl);
}

.about-preview__list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) 0;
    color: var(--cod-gray);
    font-weight: 500;
}

.about-preview__list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--scarlet);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.about-preview__image {
    position: relative;
}

.about-preview__img-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    background-color: var(--swiss-coffee);
    overflow: hidden;
}

.about-preview__img-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border: 3px solid var(--scarlet);
    z-index: 1;
}

.about-preview__img-wrapper::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background-color: var(--scarlet);
    opacity: 0.1;
    z-index: 1;
}

.about-preview__img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Placeholder for when no image */
.about-preview__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--swiss-coffee) 0%, var(--off-white) 100%);
    color: var(--dove-gray);
}

.about-preview__placeholder svg {
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-md);
    opacity: 0.5;
}

/* =========================================
   CTA Section
   ========================================= */
.cta {
    position: relative;
    background-color: var(--scarlet);
    overflow: hidden;
}

.cta__pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta__title {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta__text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
}

.cta__actions {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background-color: var(--cod-gray);
    color: var(--white);
    padding-top: var(--space-3xl);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 968px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer__grid {
        grid-template-columns: 1fr;
    }
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    height: 50px;
    margin-bottom: var(--space-md);
}

.footer__logo img {
    height: 100%;
    width: auto;
}

.footer__tagline {
    color: var(--dove-gray);
    margin-bottom: var(--space-lg);
}

.footer__social {
    display: flex;
    gap: var(--space-sm);
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--dove-gray);
    color: var(--white);
    transition: all var(--transition-base);
}

.footer__social-link:hover {
    background-color: var(--scarlet);
    border-color: var(--scarlet);
}

.footer__social-link svg {
    width: 18px;
    height: 18px;
}

.footer__heading {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    color: var(--white);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer__link {
    color: var(--dove-gray);
    transition: color var(--transition-fast);
    padding: var(--space-xs) 0;
}

.footer__link:hover {
    color: var(--scarlet);
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    color: var(--dove-gray);
    margin-bottom: var(--space-sm);
}

.footer__contact-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--scarlet);
}

.footer__bottom {
    padding: var(--space-lg) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer__copyright {
    color: var(--dove-gray);
    font-size: 0.875rem;
}

.footer__legal {
    display: flex;
    gap: var(--space-lg);
}

.footer__legal a {
    color: var(--dove-gray);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.footer__legal a:hover {
    color: var(--white);
}

/* =========================================
   Page Headers (for inner pages)
   ========================================= */
.page-header {
    position: relative;
    padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
    background-color: var(--cod-gray);
    overflow: hidden;
}

.page-header__pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23fe1817' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header__content {
    position: relative;
    z-index: 1;
}

.page-header__label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--scarlet);
    margin-bottom: var(--space-sm);
}

.page-header__label::before {
    content: '';
    width: 40px;
    height: 2px;
    background-color: var(--scarlet);
}

.page-header__title {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.page-header__description {
    color: var(--swiss-coffee);
    font-size: 1.125rem;
    max-width: 600px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.breadcrumb__link {
    color: var(--dove-gray);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.breadcrumb__link:hover {
    color: var(--white);
}

.breadcrumb__separator {
    color: var(--dove-gray);
    font-size: 0.75rem;
}

.breadcrumb__current {
    color: var(--white);
    font-size: 0.875rem;
}

/* =========================================
   Forms
   ========================================= */
.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--space-xs);
    color: var(--cod-gray);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid var(--swiss-coffee);
    background-color: var(--white);
    transition: border-color var(--transition-fast);
}

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

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

/* =========================================
   Cards (Generic)
   ========================================= */
.card {
    background-color: var(--white);
    border: 1px solid var(--swiss-coffee);
    transition: all var(--transition-base);
}

.card:hover {
    box-shadow: var(--shadow-lg);
}

.card__image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background-color: var(--swiss-coffee);
}

.card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.card__content {
    padding: var(--space-lg);
}

.card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.card__text {
    color: var(--dove-gray);
}

/* =========================================
   Accreditations/Logos Section
   ========================================= */
.accreditations {
    background-color: var(--off-white);
    padding: var(--space-xl) 0;
}

.accreditations__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
}

.accreditations__logo {
    height: 50px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all var(--transition-base);
}

.accreditations__logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* =========================================
   Utility Classes
   ========================================= */
.text-center {
    text-align: center;
}

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

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

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.hidden {
    display: none !important;
}

@media (max-width: 768px) {
    .hidden-mobile {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .hidden-desktop {
        display: none !important;
    }
}

/* =========================================
   Animations
   ========================================= */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.fade-in:nth-child(1) { transition-delay: 0.1s; }
.fade-in:nth-child(2) { transition-delay: 0.2s; }
.fade-in:nth-child(3) { transition-delay: 0.3s; }
.fade-in:nth-child(4) { transition-delay: 0.4s; }

/* =========================================
   Cookie Consent Banner
   ========================================= */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--cod-gray);
    padding: var(--space-md) var(--space-lg);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform var(--transition-base);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-consent.visible {
    transform: translateY(0);
}

.cookie-consent__content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.cookie-consent__text {
    color: var(--swiss-coffee);
    font-size: 0.9375rem;
    margin: 0;
    flex: 1;
    min-width: 280px;
}

.cookie-consent__text a {
    color: var(--scarlet);
    text-decoration: underline;
}

.cookie-consent__text a:hover {
    color: var(--persimmon);
}

.cookie-consent__actions {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.btn--sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.cookie-consent .btn--outline {
    border-color: var(--swiss-coffee);
    color: var(--swiss-coffee);
}

.cookie-consent .btn--outline:hover {
    background-color: var(--swiss-coffee);
    color: var(--cod-gray);
}

@media (max-width: 600px) {
    .cookie-consent__content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent__actions {
        width: 100%;
        justify-content: center;
    }
}
