/* ==========================================================================
   Vekris Law Firm - Inspired by mmlegal.gr
   BEM naming, Stimulus controllers, no external libraries
   ========================================================================== */

/* --------------------------------------------------------------------------
   Variables
   -------------------------------------------------------------------------- */
:root {
    /* Vekrislaw.gr Brand Colors */
    --color-primary: #014163;
    --color-primary-dark: #012e47;
    --color-navy: #014163;
    --color-navy-dark: #012e47;
    --color-blue: #2371b1;

    --color-dark: #171a21;
    --color-text: #222733;
    --color-text-light: #5a5e6b;
    --color-text-muted: #a5a6aa;

    --color-bg: #ffffff;
    --color-bg-light: #f6f6f6;
    --color-bg-cream: #fafaf8;
    --color-border: #e5e5e5;

    --color-success: #c49b3c;
    --color-error: #e54d4d;

    /* Accent - warm gold */
    --color-accent: #b8860b;
    --color-accent-light: #c49b3c;

    /* Typography */
    --font-serif: 'Playfair Display', 'Georgia', serif;
    --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

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

    /* Layout */
    --container: 1200px;
    --header-height: 80px;

    /* Effects - no border-radius like mmlegal */
    --radius: 0;
    --radius-sm: 0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --transition: 0.4s ease;
}

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

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

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

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

ul,
ol {
    list-style: none;
}

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

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-navy);
}

h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    line-height: 1.2;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    line-height: 1.3;
}

h4 {
    font-size: 1.25rem;
    line-height: 1.4;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-block-end: var(--space-md);
}

p:last-child {
    margin-block-end: 0;
}

/* Massive headlines for modern look */
.section__headline {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-navy);
    margin: 0;
    letter-spacing: -0.02em;
}

.section__tagline {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    margin: 0;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 50px;
}

@media (max-width: 768px) {
    .container {
        padding-inline: 20px;
    }
}

.main {
    flex: 1;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    inset-inline: 0;
    z-index: 1000;
    background: var(--color-bg);
    height: var(--header-height);
    transition: box-shadow var(--transition);
}

.header.is-scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav__logo {
    display: flex;
    align-items: center;
}

.nav__logo-img {
    height: 50px;
    width: auto;
}

.nav__logo-text {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--color-navy);
    letter-spacing: -0.02em;
}

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

.nav__link {
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--color-text);
    position: relative;
    padding: var(--space-sm) 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition);
}

.nav__link:hover {
    color: var(--color-navy);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__cta .btn {
    padding: 12px 24px;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-navy);
    transition: var(--transition);
}

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

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

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

.nav__lang-btn {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    padding: var(--space-sm);
}

.nav__lang-btn:hover {
    color: var(--color-primary);
}

@media (max-width: 900px) {
    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: var(--header-height);
        inset-inline: 0;
        bottom: 0;
        flex-direction: column;
        background: var(--color-bg);
        padding: var(--space-xl);
        gap: var(--space-md);
        transform: translateX(100%);
        transition: transform var(--transition);
    }

    .nav__menu.is-open {
        transform: translateX(0);
    }

    .nav__link {
        font-size: 1.25rem;
        padding: var(--space-md) 0;
    }

    .nav__cta {
        margin-top: var(--space-lg);
    }
}

body {
    padding-top: var(--header-height);
}

/* --------------------------------------------------------------------------
   Buttons - Square like mmlegal
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 28px;
    font-weight: 600;
    font-size: 0.9375rem;
    border: none;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

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

.btn--primary:hover {
    background: var(--color-primary-dark);
}

.btn--navy {
    background: var(--color-navy);
    color: white;
}

.btn--navy:hover {
    background: var(--color-navy-dark);
}

.btn--outline {
    background: transparent;
    color: var(--color-navy);
    border: 2px solid var(--color-navy);
}

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

.btn--white {
    background: white;
    color: var(--color-navy);
}

.btn--white:hover {
    background: var(--color-bg-light);
}

.btn--lg {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn--sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn--block {
    width: 100%;
}

.btn svg {
    width: 20px;
    height: 20px;
}

/* --------------------------------------------------------------------------
   Hero - Playful design with parallax like mmlegal
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, #fdfcfa 0%, #f5f0e8 40%, #eee8d8 100%);
    overflow: hidden;
    padding: var(--space-4xl) 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light), var(--color-navy));
}

/* Decorative background elements */
.hero__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.hero__circle {
    position: absolute;
    border-radius: 50%;
    will-change: transform;
}

.hero__circle--1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(196, 155, 60, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    animation: float 45s ease-in-out infinite;
    mix-blend-mode: multiply;
}

.hero__circle--2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(1, 65, 99, 0.12) 0%, transparent 65%);
    bottom: -100px;
    left: -100px;
    animation: floatSlow 38s ease-in-out infinite;
    mix-blend-mode: multiply;
}

.hero__circle--3 {
    width: 200px;
    height: 200px;
    border: 3px solid rgba(196, 155, 60, 0.25);
    top: 15%;
    right: 12%;
    animation: float 30s ease-in-out infinite reverse;
}

.hero__dots {
    position: absolute;
    width: 180px;
    height: 180px;
    background-image: radial-gradient(circle, var(--color-primary) 2px, transparent 2px);
    background-size: 18px 18px;
    opacity: 0.2;
    will-change: transform;
}

.hero__dots--1 {
    right: 18%;
    top: 35%;
    animation: float 35s ease-in-out infinite;
}

.hero__dots--2 {
    left: 8%;
    bottom: 20%;
    animation: floatSlow 40s ease-in-out infinite;
    opacity: 0.15;
}

.hero__icon {
    position: absolute;
    color: var(--color-primary);
    will-change: transform;
    animation: float 25s ease-in-out infinite;
}

.hero__icon--1 {
    top: 25%;
    left: 15%;
    animation-delay: -5s;
}

.hero__icon--2 {
    bottom: 30%;
    right: 20%;
    animation-delay: -10s;
}

.hero__dots {
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(circle, var(--color-primary) 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.4;
    right: 20%;
    top: 30%;
}

.hero__grid {
    max-width: 900px;
    margin-inline: auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero__content {
    max-width: 100%;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero__grid {
        gap: var(--space-2xl);
    }

    .hero__circle--1,
    .hero__circle--2 {
        opacity: 0.5;
    }

    .hero__icon {
        display: none;
    }
}

.hero__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-lg);
    animation: fadeIn 0.8s ease-out 0.2s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: var(--space-xl);
    color: var(--color-navy);
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease-out 0.4s both;
}

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

.hero__text {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
    max-width: 700px;
    margin-inline: auto;
    text-align: center;
}

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

.hero__visual {
    position: relative;
}

.hero__image {
    position: relative;
}

.hero__image img {
    width: 100%;
    box-shadow: var(--shadow-lg);
}

.hero__image-decor {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--color-primary);
    bottom: -20px;
    left: -20px;
    z-index: -1;
}

@media (max-width: 900px) {
    .hero {
        min-height: auto;
        padding: var(--space-3xl) 0;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__visual {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section {
    padding: var(--space-5xl) 0;
}

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

.section--gray {
    background: var(--color-bg-light);
}

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

.section--navy h2,
.section--navy h3 {
    color: white;
}

.section--navy p {
    color: rgba(255, 255, 255, 0.8);
}

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

.section__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-md);
}

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

.section__text {
    font-size: 1.0625rem;
    color: var(--color-text-light);
}

/* Section Decorative Elements */
.section {
    position: relative;
    overflow: hidden;
}

.section__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.section__circle {
    position: absolute;
    border-radius: 50%;
}

.section__dots {
    position: absolute;
    background-image: radial-gradient(circle, var(--color-primary) 2px, transparent 2px);
    background-size: 15px 15px;
}

/* Values section decoration */
.section__circle--values-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(196, 155, 60, 0.2) 0%, transparent 60%);
    bottom: -100px;
    right: -100px;
}

.section__dots--values {
    width: 120px;
    height: 120px;
    opacity: 0.4;
    top: 10%;
    left: 5%;
}

/* Practice areas decoration */
.section__circle--practice-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(196, 155, 60, 0.18) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.section__dots--practice {
    width: 100px;
    height: 100px;
    opacity: 0.3;
    bottom: 10%;
    left: 8%;
}

/* Stats section decoration (navy background) */
.section__circle--stats-1 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    top: 5%;
    left: 5%;
}

.section__circle--stats-2 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(196, 155, 60, 0.15) 0%, transparent 70%);
    top: 15%;
    right: 10%;
}

.section__circle--stats-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    bottom: -80px;
    right: 15%;
}

.section__dots--stats {
    width: 150px;
    height: 150px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.6;
    bottom: 20%;
    left: 20%;
}

/* About grid decoration */
.section__circle--about-1 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, rgba(196, 155, 60, 0.12) 0%, transparent 70%);
    top: 50%;
    left: -150px;
    transform: translateY(-50%);
}

.section__shape--about {
    width: 80px;
    height: 80px;
    background: rgba(1, 65, 99, 0.1);
    position: absolute;
    top: 15%;
    right: 10%;
}

/* Latest posts decoration */
.section__circle--posts-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(196, 155, 60, 0.12) 0%, transparent 70%);
    top: -100px;
    left: -100px;
}

.section__dots--posts {
    width: 120px;
    height: 120px;
    opacity: 0.25;
    bottom: 10%;
    right: 8%;
}

/* Testimonials decoration */
.section__circle--testimonials-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(196, 155, 60, 0.12) 0%, transparent 70%);
    top: -80px;
    left: -80px;
}

.section__circle--testimonials-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(1, 65, 99, 0.1) 0%, transparent 70%);
    bottom: -80px;
    right: -80px;
}

/* CTA section additional decoration */
.section__circle--cta-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}

.section__dots--cta {
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.5;
    top: 20%;
    left: 25%;
}

/* Floating animation for decorative circles */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(10px, -10px);
    }

    66% {
        transform: translate(-10px, 10px);
    }
}

.hero__circle--1 {
    animation: float 40s ease-in-out infinite;
}

.hero__circle--2 {
    animation: floatSlow 35s ease-in-out infinite;
}

.section__circle--cta-2 {
    animation: float 38s ease-in-out infinite;
}

/* Reveal animations for scroll-triggered content */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure section content is above decorations */
.section>.container {
    position: relative;
    z-index: 1;
}

/* --------------------------------------------------------------------------
   Services - 5 Column Grid with numbered cards like mmlegal
   -------------------------------------------------------------------------- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

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

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

.service-card {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    padding: var(--space-xl);
    color: white;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(23, 26, 33, 0.3) 0%, rgba(23, 26, 33, 0.8) 100%);
    transition: background 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-accent-light);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    background: linear-gradient(180deg, rgba(184, 134, 11, 0.35) 0%, rgba(23, 26, 33, 0.92) 100%);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card__number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(196, 155, 60, 0.4);
    line-height: 1;
    position: relative;
    z-index: 1;
}

.service-card__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: white;
}

.service-card__title a {
    color: white;
    text-decoration: none;
}

.service-card__text {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
    color: rgba(255, 255, 255, 0.9);
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: auto;
    transition: color 0.4s ease;
}

.service-card__link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-card__link svg {
    transform: translateX(8px);
}

.service-card:hover .service-card__link {
    color: var(--color-accent-light);
}

/* --------------------------------------------------------------------------
   About / Values
   -------------------------------------------------------------------------- */
.about {
    padding: var(--space-4xl) 0;
}

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

@media (max-width: 900px) {
    .about__grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

.about__content h1 {
    margin-bottom: var(--space-lg);
}

.about__text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    color: var(--color-text);
}

.about__image {
    position: relative;
}

.about__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Value Cards - 3 Column Grid */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
}

@media (min-width: 900px) {
    .value-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    background: var(--color-bg);
    padding: var(--space-2xl);
    text-align: center;
}

.value-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-card__icon svg {
    width: 100%;
    height: 100%;
}

.value-card__title {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    color: var(--color-navy);
}

.value-card__text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
}

.about__content {
    max-width: 500px;
}

.about__text {
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
}

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

    .about__image {
        display: none;
    }
}

/* Values */
.values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.value {
    text-align: center;
    padding: var(--space-xl);
}

.value__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(196, 155, 60, 0.1);
    margin-bottom: var(--space-lg);
    color: var(--color-primary);
}

.value__icon svg {
    width: 36px;
    height: 36px;
}

.value__title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--color-navy);
}

.value__text {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

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

/* --------------------------------------------------------------------------
   Stats
   -------------------------------------------------------------------------- */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    text-align: center;
}

.stat__number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat__label {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

/* --------------------------------------------------------------------------
   Google Reviews Badge
   -------------------------------------------------------------------------- */
.google-reviews-badge {
    margin-top: var(--space-md);
}

.google-reviews-badge__link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: var(--color-bg-alt, #f8f8f8);
    transition: box-shadow 0.2s ease;
}

.google-reviews-badge__link:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.google-reviews-badge__info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.google-reviews-badge__stars {
    display: flex;
    gap: 2px;
}

.google-reviews-badge__rating {
    font-weight: 700;
    font-size: 1.1rem;
}

.google-reviews-badge__count {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonials {
    display: flex;
    gap: var(--space-lg);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--space-md);
    scrollbar-width: thin;
}

.testimonials::-webkit-scrollbar {
    height: 6px;
}

.testimonials::-webkit-scrollbar-track {
    background: var(--color-border, #eee);
    border-radius: 3px;
}

.testimonials::-webkit-scrollbar-thumb {
    background: var(--color-text-muted, #bbb);
    border-radius: 3px;
}

.testimonial {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: var(--color-bg);
    padding: var(--space-lg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

@media (max-width: 600px) {
    .testimonial {
        flex: 0 0 260px;
    }
}

.testimonial__stars {
    display: flex;
    gap: 3px;
    margin-bottom: var(--space-sm);
    color: #fbbf24;
}

.testimonial__stars svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.testimonial__text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.testimonial__photo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--color-bg-light);
}

.testimonial__name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-navy);
}

.testimonial__role {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   Blog / Posts
   -------------------------------------------------------------------------- */
.posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.post-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}

.post-card:hover {
    box-shadow: var(--shadow);
    border-color: transparent;
}

.post-card__image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

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

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

.post-card__body {
    padding: var(--space-xl);
}

.post-card__category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.post-card__title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--color-navy);
}

.post-card__title a {
    color: inherit;
}

.post-card__title a:hover {
    color: var(--color-primary);
}

.post-card__excerpt {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    margin-bottom: var(--space-md);
}

.post-card__meta {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.post-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-primary);
    text-transform: uppercase;
}

.post-card__link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.post-card:hover .post-card__link svg {
    transform: translateX(5px);
}

/* Horizontal post card */
.post-card--horizontal {
    display: grid;
    grid-template-columns: 300px 1fr;
}

@media (max-width: 768px) {
    .post-card--horizontal {
        grid-template-columns: 1fr;
    }
}

/* Blog layout */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-3xl);
}

@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
}

/* Content layout (for practice areas, etc.) */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-3xl);
}

@media (max-width: 1024px) {
    .content-layout {
        grid-template-columns: 1fr;
    }
}

.content-layout__image {
    width: 100%;
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow);
}

.content-layout__block {
    color: var(--color-text-light);
    line-height: 1.8;
}

.posts-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

/* Sidebar */
.sidebar-widget {
    background: var(--color-bg-light);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.sidebar-widget__title {
    font-size: 1rem;
    margin-bottom: var(--space-md);
    color: var(--color-navy);
}

.sidebar-widget__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.sidebar-widget__list a {
    color: var(--color-text-light);
    font-size: 0.9375rem;
    padding: var(--space-xs) 0;
}

.sidebar-widget__list a:hover {
    color: var(--color-primary);
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-3xl);
}

.pagination__link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    font-weight: 500;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

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

.pagination__link.is-active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

/* --------------------------------------------------------------------------
   Article
   -------------------------------------------------------------------------- */
.article-header {
    position: relative;
    background: var(--color-navy);
    color: white;
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

.article-header__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.article-header>.container {
    position: relative;
    z-index: 1;
}

.article-header__category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.article-header__title {
    color: white;
    max-width: 800px;
}

.article-header__meta {
    margin-top: var(--space-md);
    color: rgba(255, 255, 255, 0.7);
}

.article {
    max-width: 800px;
    margin: 0 auto;
}

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

.prose {
    line-height: 1.8;
}

.prose p {
    margin-bottom: var(--space-lg);
}

.prose h2,
.prose h3,
.prose h4 {
    margin: var(--space-2xl) 0 var(--space-md);
    color: var(--color-navy);
}

.prose ul,
.prose ol {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-xl);
}

.prose ul {
    list-style: disc;
}

.prose ol {
    list-style: decimal;
}

.prose li {
    margin-bottom: var(--space-sm);
}

.prose blockquote {
    border-left: 4px solid var(--color-primary);
    padding-left: var(--space-lg);
    margin: var(--space-xl) 0;
    font-style: italic;
    color: var(--color-text-light);
}

.prose a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Page Header
   -------------------------------------------------------------------------- */
.page-header {
    position: relative;
    background: var(--color-navy);
    color: white;
    padding: var(--space-4xl) 0;
    text-align: center;
    overflow: hidden;
}

.page-header__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.page-header__circle {
    position: absolute;
    border-radius: 50%;
}

.page-header__circle--1 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(196, 155, 60, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.page-header__circle--2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    bottom: -80px;
    left: -80px;
}

.page-header__dots {
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.6;
    top: 30%;
    left: 10%;
}

.page-header>.container {
    position: relative;
    z-index: 1;
}

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

.page-header__text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
}

/* --------------------------------------------------------------------------
   Team
   -------------------------------------------------------------------------- */
.team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.team--single {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin-inline: auto;
}

.team--single .team-member {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: var(--space-xl);
    text-align: left;
    align-items: start;
}

.team--single .team-member__photo {
    aspect-ratio: 3 / 4;
    margin-bottom: 0;
}

.team--single .team-member__info {
    padding-top: var(--space-md);
}

.team--single .team-member__name {
    font-size: 1.5rem;
}

.team--single .team-member__bio {
    line-height: 1.7;
}

@media (max-width: 768px) {
    .team--single .team-member {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .team--single .team-member__photo {
        max-width: 320px;
        margin-inline: auto;
        aspect-ratio: 3 / 4;
    }
}

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

.team-member__photo {
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: var(--space-lg);
}

.team-member__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member__name {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    color: var(--color-navy);
}

.team-member__title {
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: var(--space-md);
}

.team-member__bio {
    color: var(--color-text-light);
    font-size: 0.9375rem;
}

/* --------------------------------------------------------------------------
   Success Stories
   -------------------------------------------------------------------------- */
.success-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.success-story {
    padding: var(--space-xl);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}

.success-story:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow);
}

.success-story__icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    color: var(--color-primary);
}

.success-story__title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--color-navy);
}

.success-story__text {
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
    font-size: 0.9375rem;
}

.success-story__result {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-3xl);
}

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

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

.contact-info__text {
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

.contact-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.contact-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(196, 155, 60, 0.1);
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-item__icon svg {
    width: 24px;
    height: 24px;
}

.contact-item__label {
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: var(--space-xs);
}

.contact-item__value {
    color: var(--color-text-light);
}

.contact-item__value a {
    color: inherit;
}

.contact-item__value a:hover {
    color: var(--color-primary);
}

/* Form */
.form {
    background: var(--color-bg-light);
    padding: var(--space-2xl);
}

.form__group {
    margin-bottom: var(--space-lg);
}

.form__label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--color-navy);
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 14px 16px;
    font: inherit;
    font-size: 1rem;
    border: 1px solid var(--color-border);
    background: var(--color-bg);
    transition: border-color var(--transition);
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

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

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

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

.form__error {
    color: var(--color-error);
    font-size: 0.8125rem;
    margin-top: var(--space-xs);
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq-list {
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: var(--space-lg) 0;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
}

.faq-item__question::-webkit-details-marker {
    display: none;
}

.faq-item__icon {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-item__icon {
    transform: rotate(180deg);
}

.faq-item__answer {
    padding: 0 0 var(--space-lg);
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text);
}

/* --------------------------------------------------------------------------
   CTA
   -------------------------------------------------------------------------- */
.cta {
    background: var(--color-navy);
    color: white;
    padding: var(--space-4xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(196, 155, 60, 0.2) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.cta::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    border-radius: 50%;
    animation: float 38s ease-in-out infinite;
}

.cta__content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

/* --------------------------------------------------------------------------
   Messages
   -------------------------------------------------------------------------- */
.messages {
    position: fixed;
    top: calc(var(--header-height) + var(--space-md));
    right: var(--space-md);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    max-width: 400px;
}

.message {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    box-shadow: var(--shadow-lg);
    animation: slideIn 0.3s ease;
}

.message.is-dismissing {
    animation: slideOut 0.3s ease forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(20px);
    }
}

.message--success {
    background: #dcfce7;
    color: #166534;
}

.message--error {
    background: #fee2e2;
    color: #991b1b;
}

.message--warning {
    background: #fef3c7;
    color: #92400e;
}

.message--info {
    background: #dbeafe;
    color: #1e40af;
}

.message__close {
    padding: var(--space-xs);
    opacity: 0.6;
}

.message__close:hover {
    opacity: 1;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
    background: var(--color-dark);
    color: white;
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

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

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

.footer__brand {
    max-width: 280px;
}

.footer__logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: var(--space-md);
}

.footer__tagline {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-lg);
}

.footer__title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: var(--space-lg);
}

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

.footer__links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

.footer__links a:hover {
    color: white;
}

.footer__text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    margin-bottom: var(--space-sm);
}

.footer__text a {
    color: inherit;
}

.footer__text a:hover {
    color: white;
}

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

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: background var(--transition);
}

.footer__social a:hover {
    background: var(--color-primary);
}

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

.footer__bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   Contact Cards - 3 Column Grid with Images & Dots
   -------------------------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-2xl);
    max-width: 1200px;
    margin-inline: auto;
}

@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-card {
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
}

.contact-card__image {
    position: relative;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.contact-card__dots {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 130px;
    height: 130px;
    color: var(--color-bg-beige);
    opacity: 0.8;
}

.contact-card__circle {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 97px;
    height: 97px;
    border-radius: 50%;
    border: 2px solid rgba(236, 226, 219, 0.5);
}

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

.contact-card__label {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
}

.contact-card__title {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.contact-card__title a {
    color: var(--color-navy);
    text-decoration: none;
}

.contact-card__text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
}

.contact-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
}

/* Innovation Section - Navy Background */
.innovation {
    background: var(--color-dark);
    padding: var(--space-4xl) 0;
    text-align: center;
}

.innovation__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-lg);
}

.innovation__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--color-bg);
    max-width: 900px;
    margin-inline: auto;
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

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

.mb-huge {
    margin-bottom: var(--space-4xl);
}

.mt-huge {
    margin-top: var(--space-4xl);
}

.py-huge {
    padding-block: var(--space-4xl);
}

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

.section--dark {
    background: var(--color-dark);
    color: var(--color-bg);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark .section__label {
    color: var(--color-bg);
}

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

.section__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-md);
    display: block;
}

.section__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: var(--space-xl);
    line-height: 1.2;
}

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

width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
}

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

.no-results {
    text-align: center;
    color: var(--color-text-light);
    padding: var(--space-4xl);
}


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

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

/* --------------------------------------------------------------------------
   Cookie Consent Banner
   -------------------------------------------------------------------------- */
.cookie-consent {
    position: fixed;
    bottom: 0;
    inset-inline: 0;
    z-index: 1001;
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.9);
    padding: var(--space-lg) 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-consent__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}

.cookie-consent__text {
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

.cookie-consent__text a {
    color: white;
    text-decoration: underline;
}

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