/* ============================================
   Advokatska kancelarija Elvedina Saburović
   Premium Design — Dark Navy + Gold
   ============================================ */

:root {
    --navy: #1a1a2e;
    --navy-light: #232342;
    --navy-dark: #12121f;
    --gold: #C9A96E;
    --gold-light: #d4bc8a;
    --gold-dark: #b8954f;
    --white: #ffffff;
    --gray-50: #f8f8fa;
    --gray-100: #f0f0f4;
    --gray-200: #e2e2ea;
    --gray-300: #d0d0dc;
    --gray-400: #9999aa;
    --gray-500: #6b6b80;
    --gray-600: #4a4a5e;
    --text: #2c2c3e;
    --text-light: #6b6b80;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideRight {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.3); }
    50% { box-shadow: 0 0 0 8px rgba(201, 169, 110, 0); }
}

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.nav__logo-icon {
    width: 36px;
    height: 36px;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    font-weight: 400;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 0.01em;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 1.5px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.08);
}

.nav-link--cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    font-weight: 500;
    padding: 8px 20px;
}

.nav-link--cta::after { display: none; }

.nav-link--cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(201, 169, 110, 0.4), 0 2px 8px rgba(201, 169, 110, 0.2);
}

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

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

.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); }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(26, 26, 46, 0.4) 0%, rgba(26, 26, 46, 0.7) 50%, rgba(26, 26, 46, 0.95) 100%),
        radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 169, 110, 0.05) 0%, transparent 50%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    border: 1px solid rgba(201, 169, 110, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(201, 169, 110, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.hero__content {
    position: relative;
    text-align: center;
    padding: 0 24px;
    max-width: 720px;
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    animation: fadeUp 0.8s ease both;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeUp 0.8s ease 0.15s both;
}

.hero__divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 28px;
    animation: slideRight 0.6s ease 0.3s both;
    transform-origin: center;
}

.hero__description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    max-width: 520px;
    margin: 0 auto 40px;
    animation: fadeUp 0.8s ease 0.35s both;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease 0.5s both;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: fadeIn 1s ease 1s both;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(201, 169, 110, 0.5), transparent);
    animation: float 2s ease-in-out infinite;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    letter-spacing: 0.01em;
}

.btn--primary {
    background: var(--gold);
    color: var(--navy);
    position: relative;
    overflow: hidden;
}

.btn--primary::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 0.5s ease;
}

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

.btn--primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201, 169, 110, 0.45), 0 4px 12px rgba(201, 169, 110, 0.2);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 169, 110, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 110, 0.15);
}

.btn--full { width: 100%; justify-content: center; }

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 100px 0;
}

.section--services {
    background: var(--gray-50);
}

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

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

.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section--contact .section__title {
    color: var(--white);
}

.section__subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.section--contact .section__subtitle {
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__text {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about__stats {
    display: flex;
    gap: 40px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.stat {
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.12);
}

.stat__number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
    transition: transform 0.4s ease, text-shadow 0.4s ease;
}

.stat:hover .stat__number {
    transform: scale(1.08);
    text-shadow: 0 0 20px rgba(201, 169, 110, 0.3);
}

.stat__label {
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

.about__image-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s ease;
}

.about__image-frame:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-xl);
}

.about__image-frame:hover .about__photo {
    transform: scale(1.03);
}

.about__photo {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about__image-frame::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--gold), transparent 50%, var(--gold-dark));
    border-radius: 18px;
    z-index: -1;
    opacity: 0.4;
}

.about__photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 0;
    border: 1px solid var(--gray-200);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.service-card__body {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 10px 25px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(201, 169, 110, 0.1);
    border-color: rgba(201, 169, 110, 0.2);
}

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

.service-card__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), rgba(201, 169, 110, 0.05));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--gold);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-card__icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    transform: scale(1.10) rotate(5deg);
    box-shadow: 0 8px 20px rgba(201, 169, 110, 0.3);
    box-shadow: 0 6px 20px rgba(201, 169, 110, 0.3);
}

.service-card__icon svg {
    width: 28px;
    height: 28px;
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.service-card__text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gold);
    transition: all var(--transition);
    margin-top: auto;
}

.service-card__link svg {
    transition: transform var(--transition);
}

.service-card__link:hover {
    color: var(--gold-dark);
    gap: 10px;
}

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

/* ============================================
   MEDIATION
   ============================================ */
.mediation {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.mediation__text {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.mediation__benefits {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 400;
    padding: 8px 12px;
    border-radius: 10px;
    transition: all 0.35s ease;
    margin-left: -12px;
}

.benefit:hover {
    background: rgba(201, 169, 110, 0.06);
    transform: translateX(4px);
}

.benefit svg {
    flex-shrink: 0;
    transition: transform 0.35s ease;
}

.benefit:hover svg {
    transform: scale(1.15);
}

/* Testimonial */
.testimonial {
    background: var(--navy);
    border-radius: 20px;
    padding: 40px;
    color: var(--white);
    position: relative;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
}

.testimonial:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18), 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, var(--gold), transparent 60%);
    border-radius: 21px;
    z-index: -1;
    opacity: 0.3;
}

.testimonial__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial__quote {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.testimonial__footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(201, 169, 110, 0.3);
}

.testimonial__author {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 500;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px;
    border-radius: 12px;
    margin: -12px;
    transition: all 0.35s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.08);
}

.contact-item__icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 169, 110, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.contact-item:hover .contact-item__icon {
    background: rgba(201, 169, 110, 0.25);
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 6px 18px rgba(201, 169, 110, 0.2);
}

.contact-item__title {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.contact-item__value {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}

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

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

.form-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    outline: none;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-input:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

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

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

select.form-input option {
    background: var(--navy);
    color: var(--white);
}

.section--contact .btn--primary {
    padding: 16px 32px;
    font-size: 1rem;
}

/* Form Row (two fields side by side) */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Form Label */
.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

/* Date input styling */
input[type="date"].form-input {
    color-scheme: dark;
}

input[type="date"].form-input::-webkit-calendar-picker-indicator {
    filter: invert(0.7) sepia(1) saturate(2) hue-rotate(10deg);
    cursor: pointer;
}

/* Form Messages */
.form-message {
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.form-message--success {
    background: rgba(46, 125, 50, 0.15);
    color: #81c784;
    border: 1px solid rgba(46, 125, 50, 0.3);
}

.form-message--error {
    background: rgba(198, 40, 40, 0.15);
    color: #ef9a9a;
    border: 1px solid rgba(198, 40, 40, 0.3);
}

/* Submit button spinner */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(26, 26, 46, 0.3);
    border-top-color: var(--navy);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy-dark);
    padding: 60px 0 0;
    color: rgba(255, 255, 255, 0.5);
    border-top: 2px solid rgba(201, 169, 110, 0.15);
}

.footer__content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.footer__logo-icon {
    width: 32px;
    height: 32px;
}

.footer__tagline {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer__heading {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.35s ease;
    display: inline-block;
    position: relative;
}

.footer__links a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.35s ease;
}

.footer__links a:hover {
    color: var(--gold-light);
    transform: translateX(6px);
    text-shadow: 0 2px 8px rgba(201, 169, 110, 0.3);
}

.footer__links a:hover::after {
    width: 100%;
}

.footer__links span {
    font-size: 0.9rem;
}

.footer__partner {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
    text-align: center;
}

.partner-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.partner-badge:hover {
    background: rgba(201, 169, 110, 0.08);
    border-color: rgba(201, 169, 110, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.12);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.1);
}

.partner-badge__label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
}

.partner-badge__logo {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 3px;
}

.partner-badge__accent {
    color: #C9A96E;
}

.partner-badge__desc {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.5px;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
    text-align: center;
    font-size: 0.8rem;
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.nav__right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-switcher {
    position: relative;
}

.lang-switcher__btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 6px 12px;
    color: var(--white);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.8rem;
    transition: all var(--transition);
}

.lang-switcher__btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.lang-flag {
    font-size: 1.1rem;
    line-height: 1;
}

.lang-code {
    font-weight: 500;
    letter-spacing: 0.05em;
}

.lang-switcher__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 6px;
    min-width: 160px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    z-index: 1001;
    animation: fadeIn 0.15s ease;
}

.lang-switcher__dropdown.hidden {
    display: none;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 8px 12px;
    background: none;
    border: none;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition);
    text-align: left;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

/* ============================================
   PAGE HEADER (Legal pages)
   ============================================ */
.page-header {
    background: var(--navy);
    padding: 140px 0 60px;
    text-align: center;
}

.page-header__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.page-header__subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   LEGAL CONTENT
   ============================================ */
.container--narrow {
    max-width: 800px;
}

.legal-content {
    padding: 80px 0;
}

.legal-block {
    margin-bottom: 40px;
}

.legal-block:last-child {
    margin-bottom: 0;
}

.legal-block h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.legal-block h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin: 20px 0 10px;
}

.legal-block p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-block ul {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.legal-block ul li {
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

/* Cookie Table */
.cookie-table {
    overflow-x: auto;
    margin: 16px 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.cookie-table th {
    font-weight: 600;
    color: var(--text);
    background: var(--gray-50);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cookie-table td {
    color: var(--text-light);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy);
    border-top: 1px solid rgba(201, 169, 110, 0.2);
    padding: 16px 24px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeUp 0.3s ease;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-banner__content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    flex: 1;
}

.cookie-banner__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.cookie-banner__link {
    font-size: 0.85rem;
    color: var(--gold);
    white-space: nowrap;
    transition: color var(--transition);
}

.cookie-banner__link:hover {
    color: var(--gold-light);
}

.btn--sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.hidden {
    display: none;
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 999;
    animation: whatsapp-pulse 3s ease-in-out infinite;
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35); }
    50% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

.whatsapp:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6), 0 4px 12px rgba(37, 211, 102, 0.3);
    animation: none;
}

/* ============================================
   RESPONSIVE — Tablet
   ============================================ */
@media (max-width: 992px) {
    .about {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__image { order: -1; }

    .about__photo {
        aspect-ratio: 4/3;
        object-position: center top;
    }

    .services {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .mediation {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer__content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

/* ============================================
   RESPONSIVE — Mobile
   ============================================ */
@media (max-width: 768px) {
    .nav__toggle { display: flex; }

    .nav__menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }

    .nav__menu.open {
        opacity: 1;
        visibility: visible;
    }

    .nav__menu .nav-link {
        font-size: 1.2rem;
        padding: 12px 24px;
    }

    .section {
        padding: 72px 0;
    }

    .hero__title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .hero__description {
        font-size: 1rem;
    }

    .hero__scroll { display: none; }

    .about__stats {
        gap: 24px;
    }

    .stat__number { font-size: 1.6rem; }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer__brand {
        text-align: center;
    }

    .footer__logo {
        justify-content: center;
    }

    .footer__bottom {
        font-size: 0.75rem;
    }

    .whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp svg {
        width: 24px;
        height: 24px;
    }

    .cookie-banner__content {
        flex-direction: column;
        text-align: center;
    }

    .page-header {
        padding: 120px 0 40px;
    }

    .legal-content {
        padding: 48px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }

    .hero__actions { flex-direction: column; align-items: center; }

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

    .about__stats { flex-wrap: wrap; justify-content: center; }

    .service-card__body { padding: 24px; }
    .service-card__image { height: 180px; }

    .testimonial { padding: 28px; }
}

/* ============================================
   ONLINE CONSULTATIONS PAGE
   ============================================ */
.oc-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.oc-info__title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 20px;
}

.oc-info__text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.oc-price-card {
    background: var(--navy);
    border-radius: 16px;
    padding: 28px 32px;
    text-align: center;
    margin: 28px 0;
    position: relative;
    overflow: hidden;
}

.oc-price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.oc-price-card__amount {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
}

.oc-price-card__amount span {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

.oc-price-card__note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
}

.oc-benefits {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
}

.oc-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text);
}

.oc-benefit svg { flex-shrink: 0; }

/* CTA Card */
.oc-cta-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 36px;
    position: sticky;
    top: 100px;
}

.oc-cta-card__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 24px;
}

.oc-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}

.oc-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.oc-step__number {
    width: 36px;
    height: 36px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.oc-step h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}

.oc-step p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ============================================
   MODAL OVERLAY
   ============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 46, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--navy);
    border-radius: 16px;
    max-width: 620px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: fadeUp 0.3s ease;
}

.modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal__header h2 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
}

.modal__close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color var(--transition);
}

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

.modal__body {
    padding: 28px;
}

.modal__body .form-label {
    color: var(--gold);
}

.modal__body select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.modal__body select.form-input option {
    background: var(--navy);
    color: var(--white);
}

/* ── Custom Calendar Widget ── */
.calendar {
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    user-select: none;
}

.calendar__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.calendar__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.02em;
}

.calendar__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition);
    font-size: 1rem;
}

.calendar__btn:hover {
    background: rgba(201, 169, 110, 0.15);
    border-color: var(--gold);
    color: var(--gold);
}

.calendar__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar__weekday {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.35);
    padding: 6px 0 10px;
}

.calendar__day {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
}

.calendar__day:hover:not(.calendar__day--disabled):not(.calendar__day--empty) {
    background: rgba(201, 169, 110, 0.15);
    color: var(--gold);
}

.calendar__day--today {
    border: 1.5px solid var(--gold);
    color: var(--gold);
}

.calendar__day--selected {
    background: var(--gold) !important;
    color: var(--navy) !important;
    font-weight: 600;
}

.calendar__day--disabled {
    color: rgba(255, 255, 255, 0.12);
    cursor: not-allowed;
}

.calendar__day--empty {
    cursor: default;
}

.calendar__day--weekend {
    color: rgba(255, 255, 255, 0.35);
}

.calendar__day--weekend.calendar__day--disabled {
    color: rgba(255, 255, 255, 0.08);
}

.calendar__selected-display {
    margin-top: 12px;
    padding: 10px 14px;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gold);
}

.calendar__selected-display svg {
    flex-shrink: 0;
}

.calendar__selected-display:empty {
    display: none;
}

/* ============================================
   OC RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .oc-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .oc-cta-card {
        position: static;
    }
}

@media (max-width: 480px) {
    .oc-price-card {
        padding: 20px 24px;
    }

    .oc-price-card__amount {
        font-size: 2rem;
    }

    .oc-cta-card {
        padding: 24px;
    }

    .modal {
        margin: 16px;
        max-height: calc(100vh - 32px);
    }

    .modal__header {
        padding: 20px;
    }

    .modal__body {
        padding: 20px;
    }
}

/* ============================================
   BLOG LISTING & ARTICLE PAGES
   ============================================ */

.blog-filter {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 24px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-filter__btn {
    padding: 8px 20px;
    border: 1.5px solid var(--gray-200);
    border-radius: 20px;
    background: transparent;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
}

.blog-filter__btn:hover,
.blog-filter__btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light, #d4bc82));
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 10px 25px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(201, 169, 110, 0.15);
    border-color: rgba(201, 169, 110, 0.2);
}

.blog-card:hover::before {
    transform: scaleX(1);
}

.blog-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.blog-card__category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    background: rgba(201, 169, 110, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
}

.blog-card__date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.blog-card__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-card__title a {
    color: var(--text);
    text-decoration: none;
    transition: color var(--transition);
}

.blog-card__title a:hover {
    color: var(--gold);
}

.blog-card__excerpt {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-card__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition);
}

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

/* Article Page */
.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.article-content h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text);
    margin: 48px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.article-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    margin: 32px 0 12px;
}

.article-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 16px;
}

.article-content ul,
.article-content ol {
    padding-left: 24px;
    margin: 16px 0;
}

.article-content li {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 8px;
}

.article-content a {
    color: var(--gold);
    text-decoration: underline;
}

.article-content blockquote {
    border-left: 4px solid var(--gold);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--gray-50, #f8f7f4);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--text);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.article-sidebar {
    background: var(--gray-50, #f8f7f4);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 32px;
    margin-top: 48px;
}

/* Blog Responsive */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .blog-filter {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .blog-filter__btn {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .article-content h2 {
        font-size: 1.3rem;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}