:root {
    --red-ral: #A2231D;
    --red-dark: #7A1A15;
    --anthracite: #1F1F1F;
    --anthracite-2: #2A2A2A;
    --anthracite-3: #333333;
    --text: #F5F5F5;
    --muted: #C9C9C9;
    --border: rgba(255, 255, 255, 0.08);
    --glass: rgba(23, 23, 23, 0.75);
    --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.2);
    --shadow-strong: 0 28px 70px rgba(0, 0, 0, 0.35);
    --radius-lg: 1.25rem;
    --radius-xl: 1.8rem;
    --font-display: "Space Grotesk", sans-serif;
    --font-body: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    --header-height: 4rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red-ral);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    outline: 2px solid #fff;
    outline-offset: 2px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: #0F0F0F;
    background-image:
        radial-gradient(900px 500px at 10% -10%, rgba(162, 35, 29, 0.35), transparent 60%),
        radial-gradient(700px 400px at 95% 0%, rgba(31, 31, 31, 0.7), transparent 60%),
        radial-gradient(900px 600px at 50% 105%, rgba(162, 35, 29, 0.18), transparent 60%);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overscroll-behavior-y: none;
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

a {
    color: inherit;
    text-decoration: none;
    touch-action: manipulation;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--red-ral);
    outline-offset: 2px;
}

img {
    max-width: 100%;
    display: block;
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
}

/* Active states for touch feedback */
.btn:active {
    transform: scale(0.97);
}

.nav__link:active {
    opacity: 0.7;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.section {
    padding: 6rem 0 3rem;
}

.section__head {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.section__head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 2vw + 1.2rem, 2.6rem);
    letter-spacing: -0.02em;
}

.section__head p {
    color: var(--muted);
}

.glass {
    background: var(--glass);
    border: 1px solid var(--border);
    backdrop-filter: blur(14px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    min-height: 44px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    cursor: pointer;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    position: relative;
    overflow: hidden;
}

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

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

.btn--primary {
    background: linear-gradient(135deg, var(--red-ral) 0%, var(--red-dark) 100%);
    color: #fff;
    box-shadow: 
        0 4px 15px rgba(162, 35, 29, 0.4),
        0 1px 3px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn--primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(162, 35, 29, 0.5),
        0 4px 10px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, #b8281f 0%, var(--red-ral) 100%);
}

.btn--primary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 
        0 2px 10px rgba(162, 35, 29, 0.4),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn--ghost:hover {
    transform: translateY(-3px);
    background: rgba(162, 35, 29, 0.1);
    border-color: rgba(162, 35, 29, 0.5);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(162, 35, 29, 0.2);
}

.btn--ghost:active {
    transform: translateY(-1px);
    background: rgba(162, 35, 29, 0.15);
}

/* Icon inside button */
.btn svg {
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: scale(1.1);
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(162, 35, 29, 0.18);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: linear-gradient(
        180deg,
        rgba(17, 17, 17, 0.95) 0%,
        rgba(17, 17, 17, 0.85) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(162, 35, 29, 0.5) 50%,
        transparent 100%
    );
}

.nav {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--red-ral) 0%, #fff 60%, var(--red-light) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoShimmer 8s ease-in-out infinite;
    transition: all 0.3s ease;
    position: relative;
}

@keyframes logoShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.nav__logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(162, 35, 29, 0.4));
}

.nav__menu {
    display: flex;
}

.nav__list {
    display: flex;
    gap: 0.25rem;
    list-style: none;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.35rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.nav__item {
    position: relative;
}

.nav__link {
    display: block;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.nav__link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(162, 35, 29, 0.2), rgba(162, 35, 29, 0.05));
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red-ral), transparent);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav__link:hover {
    color: #fff;
}

.nav__link:hover::before {
    opacity: 1;
}

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

.nav__link.active-link {
    color: #fff;
    background: linear-gradient(135deg, rgba(162, 35, 29, 0.25), rgba(162, 35, 29, 0.1));
    box-shadow: 
        0 2px 8px rgba(162, 35, 29, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav__link.active-link::after {
    width: 50%;
    background: var(--red-ral);
    box-shadow: 0 0 10px rgba(162, 35, 29, 0.5);
}

.nav__toggle,
.nav__close {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav__toggle:hover,
.nav__close:hover {
    background: rgba(162, 35, 29, 0.2);
    border-color: rgba(162, 35, 29, 0.4);
    transform: scale(1.05);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
}

.theme-toggle:hover {
    border-color: rgba(162, 35, 29, 0.6);
}

/* Hero */
.hero {
    padding: calc(var(--header-height) + 3rem) 0 4rem;
}

.hero--location {
    padding: calc(var(--header-height) + 2.5rem) 0 4rem;
}

.hero__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: stretch;
}

.hero__content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.1;
    margin: 1rem 0;
}

.hero__lead {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 520px;
}

.hero--location .hero__lead {
    max-width: 600px;
}

address {
    font-style: normal;
    color: var(--muted);
    line-height: 1.5;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
    align-items: stretch;
}

.hero__actions .btn {
    flex: 1 1 160px;
    text-align: center;
    justify-content: center;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.stat {
    padding: 1rem 1.2rem;
    border-radius: 1rem;
    background: rgba(31, 31, 31, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-width: 0;
}

.stat__label {
    color: var(--muted);
    font-size: 0.85rem;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stat__value {
    font-weight: 700;
    word-break: break-word;
}

.hero__panel {
    display: grid;
    gap: 1.5rem;
}

.card {
    padding: 1.8rem;
}

.card h2,
.card h3 {
    font-family: var(--font-display);
    margin-bottom: 0.75rem;
}

.card__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.list {
    display: grid;
    gap: 0.6rem;
    color: var(--muted);
}

/* Services */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid--services {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service {
    padding: 1.6rem;
    display: grid;
    gap: 0.6rem;
    position: relative;
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}


.service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.03) 0%,
        transparent 50%,
        rgba(162, 35, 29, 0.03) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service--link {
    cursor: pointer;
}

.service--link:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(162, 35, 29, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.service--link:hover::before {
    opacity: 1;
}

.service--link:active {
    transform: translateY(-4px) scale(1.01);
}

.service__arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--muted);
    opacity: 0;
    background: rgba(162, 35, 29, 0.1);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service--link:hover .service__arrow {
    opacity: 1;
    transform: translateX(4px);
    background: var(--red-ral);
    color: #fff;
}

.service__icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(162, 35, 29, 0.15), rgba(162, 35, 29, 0.05));
    border-radius: 12px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.service--link:hover .service__icon {
    transform: scale(1.1) rotate(-3deg);
    background: linear-gradient(135deg, rgba(162, 35, 29, 0.25), rgba(162, 35, 29, 0.1));
}

.service h3 {
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service--link:hover h3 {
    color: var(--red-ral);
}

.service p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.5;
}

.service__meta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 600;
    margin-top: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.service--link:hover .service__meta {
    background: rgba(162, 35, 29, 0.15);
    border-color: rgba(162, 35, 29, 0.3);
    color: #fff;
}

.service--highlight {
    border: 1px solid var(--red-ral);
    background: linear-gradient(135deg, rgba(162, 35, 29, 0.12), rgba(162, 35, 29, 0.05));
    box-shadow: 
        0 0 30px rgba(162, 35, 29, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: visible;
    margin-top: 0.75rem;
}

.service--highlight::after {
    content: "⭐ Popular";
    position: absolute;
    top: -0.6rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--red-ral), var(--red-dark));
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(162, 35, 29, 0.4);
    z-index: 2;
    pointer-events: none;
}

.service--highlight:hover {
    box-shadow: 
        0 20px 50px rgba(162, 35, 29, 0.3),
        0 0 0 1px rgba(162, 35, 29, 0.4);
}

.service--stop {
    border: 1px dashed rgba(255, 255, 255, 0.15);
    opacity: 0.7;
}

.service--stop .service__icon {
    background: rgba(255, 255, 255, 0.05);
}

.service--stop .service__meta {
    background: rgba(76, 175, 80, 0.1);
    border-color: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.section__note,
.section__tip {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    text-align: center;
    border-radius: var(--radius-lg);
}

.section__note p,
.section__tip p {
    margin: 0;
}

/* Timeline */
.timeline {
    display: grid;
    gap: 1.2rem;
}

.timeline__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.2rem;
    padding: 1.4rem 1.6rem;
    border-radius: var(--radius-lg);
    background: rgba(23, 23, 23, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline__index {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--red-ral);
}

/* Location */
.location {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 2.5rem;
    align-items: stretch;
}

.location__map {
    -webkit-overflow-scrolling: touch;
    overflow: hidden;
    border-radius: var(--radius-xl);
    height: 100%;
    min-height: 480px;
}

.location__map iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border: none;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    pointer-events: auto;
}

.location__info {
    padding: 2rem;
    display: grid;
    gap: 1.5rem;
}

.hero--location .location__info h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 3vw, 3.2rem);
    margin: 0.6rem 0 0.4rem;
}

.hero--location .card {
    padding: 1.4rem;
}

.hero--location .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

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

.location__actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
}

.location__actions .btn {
    font-size: 0.85rem;
    padding: 0.7rem 1rem;
    white-space: nowrap;
}

.location__meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    color: var(--muted);
}

.location__meta strong {
    color: #fff;
}

.section--location {
    padding-top: 6.5rem;
}

.section--location .section__head {
    align-items: flex-start;
}

.section--location .section__head h2 {
    font-size: clamp(2.2rem, 2.4vw + 1.2rem, 3rem);
}

.section--location .location__map iframe {
    border: 1px solid rgba(162, 35, 29, 0.3);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

.section--location .location__info {
    border: 1px solid rgba(162, 35, 29, 0.2);
}

/* Contact */
.grid--contact {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact {
    padding: 1.5rem;
    display: grid;
    gap: 0.4rem;
}

.contact h3 {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--muted);
}

.contact a,
.contact span {
    font-size: 0.95rem;
}

.contact a {
    color: #fff;
    font-weight: 600;
}

/* Footer */
.footer {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: #0A0A0A;
}

.footer__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    color: var(--muted);
}

.footer__links {
    display: flex;
    gap: 1.2rem;
}

.footer__links a {
    color: var(--muted);
}

.footer__links a:hover {
    color: #fff;
}

/* Scroll top */
.scrolltop {
    position: fixed;
    right: 1.5rem;
    bottom: -50px;
    background: var(--red-ral);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, bottom 0.3s ease;
    z-index: 10;
}

.scrolltop.show-scroll {
    bottom: 2rem;
}

/* Responsive */
@media (max-width: 960px) {
    .hero__grid,
    .location {
        grid-template-columns: 1fr;
    }

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

    .section--location .location__map iframe {
        min-height: 360px;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: min(85%, 340px);
        background: linear-gradient(
            180deg,
            rgba(17, 17, 17, 0.98) 0%,
            rgba(26, 26, 26, 0.98) 100%
        );
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 2.5rem 1.5rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        flex-direction: column;
    }

    .nav__menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 1px;
        height: 100%;
        background: linear-gradient(
            180deg,
            transparent 0%,
            rgba(162, 35, 29, 0.5) 50%,
            transparent 100%
        );
    }

    .nav__menu.show-menu {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .nav__link {
        padding: 0.875rem 1rem;
        font-size: 1rem;
    }

    .nav__toggle,
    .nav__close {
        display: flex;
    }

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

    .hero__actions .btn {
        width: 100%;
        border-radius: 14px;
        padding: 0.9rem 1.2rem;
    }

    .hero--location .hero__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .stat {
        padding: 0.75rem 0.9rem;
        font-size: 0.9rem;
    }

    .stat__label {
        font-size: 0.8rem;
    }

    .stat__value {
        font-size: 0.9rem;
        white-space: nowrap;
    }
}

@media (max-width: 520px) {
    .hero__lead {
        font-size: 0.95rem;
    }

    .location__actions {
        flex-wrap: wrap;
    }

    .location__actions .btn {
        flex: 1 1 calc(50% - 0.25rem);
        font-size: 0.8rem;
        padding: 0.65rem 0.75rem;
    }

    .hero__content h1 {
        font-size: clamp(2rem, 6vw, 2.6rem);
    }

    .hero__actions {
        margin: 1.5rem 0;
        gap: 0.75rem;
    }

    .location__meta {
        grid-template-columns: 1fr;
    }

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

    .contact {
        padding: 0.9rem;
        gap: 0.25rem;
    }

    .contact h3 {
        font-size: 0.75rem;
    }

    .contact a,
    .contact span {
        font-size: 0.8rem;
    }

    .hero--location .hero__stats {
        gap: 0.5rem;
    }

    .hero--location .stat {
        padding: 0.7rem 0.8rem;
    }

    .hero--location .stat__label {
        font-size: 0.75rem;
    }

    .hero--location .stat__value {
        font-size: 0.82rem;
        white-space: nowrap;
    }

    .section--location {
        padding-top: 5.5rem;
    }

    .section--location .location__map iframe {
        min-height: 300px;
    }
}

/* Light theme */
body.theme-light {
    color: #1E1E1E;
    background-color: #F8F8F8;
    background-image:
        radial-gradient(900px 500px at 10% -10%, rgba(162, 35, 29, 0.12), transparent 60%),
        radial-gradient(700px 400px at 95% 0%, rgba(31, 31, 31, 0.08), transparent 60%),
        radial-gradient(900px 600px at 50% 105%, rgba(162, 35, 29, 0.06), transparent 60%);
}

body.theme-light .header {
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.88) 100%
    );
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

body.theme-light .header::before {
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(162, 35, 29, 0.3) 50%,
        transparent 100%
    );
}

body.theme-light .nav__list {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.06);
}

body.theme-light .nav__link {
    color: #555;
}

body.theme-light .nav__link::before {
    background: linear-gradient(135deg, rgba(162, 35, 29, 0.12), rgba(162, 35, 29, 0.03));
}

body.theme-light .nav__link:hover {
    color: #111111;
}

body.theme-light .nav__link.active-link {
    color: #111111;
    background: linear-gradient(135deg, rgba(162, 35, 29, 0.15), rgba(162, 35, 29, 0.05));
}

body.theme-light .nav__logo {
    background: linear-gradient(135deg, var(--red-ral) 0%, #1E1E1E 60%, var(--red-light) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.theme-light .nav__toggle,
body.theme-light .nav__close {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
    color: #111;
}

body.theme-light .nav__toggle:hover,
body.theme-light .nav__close:hover {
    background: rgba(162, 35, 29, 0.1);
    border-color: rgba(162, 35, 29, 0.3);
}

body.theme-light .pill {
    background: rgba(162, 35, 29, 0.12);
    color: #1E1E1E;
}

body.theme-light .glass,
body.theme-light .timeline__item,
body.theme-light .stat {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

body.theme-light .section__head p,
body.theme-light .hero__lead,
body.theme-light .list,
body.theme-light .section__head p,
body.theme-light .location__meta,
body.theme-light .contact h3 {
    color: #777777;
}

body.theme-light .contact a {
    color: #1E1E1E;
}

body.theme-light .contact a:hover {
    color: var(--red-ral);
}

body.theme-light .contact span,
body.theme-light .location__meta span,
body.theme-light .location__meta strong {
    color: #555555;
}

body.theme-light .footer {
    background: #FFFFFF;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

body.theme-light .footer__content,
body.theme-light .footer__links a {
    color: #555555;
}

body.theme-light .footer__links a:hover {
    color: #111111;
}

body.theme-light .btn--ghost {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.12);
    color: #1E1E1E;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

body.theme-light .btn--ghost:hover {
    background: rgba(162, 35, 29, 0.08);
    border-color: rgba(162, 35, 29, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

body.theme-light .btn--primary {
    box-shadow: 
        0 4px 15px rgba(162, 35, 29, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

body.theme-light .btn--primary:hover {
    box-shadow: 
        0 8px 25px rgba(162, 35, 29, 0.4),
        0 4px 10px rgba(0, 0, 0, 0.1);
}

body.theme-light .theme-toggle {
    color: #111111;
    border-color: rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.04);
}

body.theme-light .location__meta strong {
    color: #111111;
}

body.theme-light .service {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

body.theme-light .service--link:hover {
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(162, 35, 29, 0.15);
}

body.theme-light .service__icon {
    background: linear-gradient(135deg, rgba(162, 35, 29, 0.1), rgba(162, 35, 29, 0.03));
}

body.theme-light .service__meta {
    color: #666666;
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.08);
}

body.theme-light .service--link:hover .service__meta {
    background: rgba(162, 35, 29, 0.1);
    border-color: rgba(162, 35, 29, 0.2);
    color: var(--red-ral);
}

body.theme-light .service--highlight {
    background: linear-gradient(135deg, rgba(162, 35, 29, 0.08), rgba(162, 35, 29, 0.02));
    box-shadow: 0 0 25px rgba(162, 35, 29, 0.1);
}

body.theme-light .service--stop {
    border-color: rgba(0, 0, 0, 0.15);
    background: rgba(0, 0, 0, 0.02);
}

body.theme-light .service--stop .service__meta {
    background: rgba(76, 175, 80, 0.08);
    border-color: rgba(76, 175, 80, 0.15);
}

body.theme-light .section__note,
body.theme-light .section__tip {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* ========================================
   PROGRAM PAGES
   ======================================== */

.program-page {
    padding-top: var(--header-height);
}

.program-hero {
    padding: 4rem 0 3rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(162, 35, 29, 0.15) 0%, transparent 100%);
}

.program-hero--highlight {
    background: linear-gradient(180deg, rgba(162, 35, 29, 0.25) 0%, transparent 100%);
}

.program-back {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--muted);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.program-back:hover {
    color: var(--red-ral);
}

.program-badge {
    display: inline-block;
    background: var(--red-ral);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.program-hero__icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.program-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.5rem;
}

.program-hero__subtitle {
    color: var(--muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.program-hero__meta {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.pill--price {
    background: var(--red-ral);
    color: #fff;
}

.program-content {
    padding: 3rem 0 4rem;
}

.program-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2.5rem;
    align-items: start;
}

.program-main {
    display: grid;
    gap: 3rem;
}

.program-section h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.program-section p {
    color: var(--muted);
    margin-bottom: 1rem;
}

.program-section .list {
    margin-bottom: 1.5rem;
}

/* Steps list */
.steps-list {
    list-style: none;
    display: grid;
    gap: 1.25rem;
}

.steps-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--red-ral);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.steps-list h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text);
}

.steps-list p {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0;
}

.technique-list {
    list-style: none;
    margin: 0.75rem 0 0 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.technique-list li {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid var(--red-ral);
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.5;
}

.technique-list li strong {
    color: var(--text);
    display: block;
    margin-bottom: 0.25rem;
}

body.theme-light .technique-list li {
    background: rgba(0, 0, 0, 0.03);
    color: #555;
}

body.theme-light .technique-list li strong {
    color: #1E1E1E;
}

/* Info boxes */
.info-box,
.warning-box,
.science-box {
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    margin: 1.5rem 0;
}

.info-box {
    background: rgba(162, 35, 29, 0.1);
    border-left: 4px solid var(--red-ral);
}

.warning-box {
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
}

.science-box {
    background: rgba(33, 150, 243, 0.1);
    border-left: 4px solid #2196f3;
}

.info-box h4,
.warning-box h4,
.science-box h4 {
    margin-bottom: 0.5rem;
    color: var(--text);
}

.info-box p,
.warning-box p,
.science-box p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.info-box p:last-child,
.warning-box p:last-child,
.science-box p:last-child {
    margin-bottom: 0;
}

/* Use cases */
.use-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.use-case {
    padding: 1.25rem;
    border-radius: var(--radius-lg);
}

.use-case--yes {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.use-case--no {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.use-case--optional {
    background: rgba(33, 150, 243, 0.1);
    border: 1px solid rgba(33, 150, 243, 0.3);
}

.use-case h4 {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.use-case ul {
    list-style: none;
    display: grid;
    gap: 0.4rem;
}

.use-case li {
    font-size: 0.9rem;
    color: var(--muted);
    padding-left: 0;
}

/* Tips grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.tip {
    padding: 1.25rem;
    display: grid;
    gap: 0.5rem;
}

/* Stop page styles */
.program-hero--stop {
    background: linear-gradient(180deg, rgba(100, 100, 100, 0.2) 0%, rgba(162, 35, 29, 0.1) 50%, transparent 100%);
}

body.theme-light .program-hero--stop {
    background: linear-gradient(180deg, rgba(100, 100, 100, 0.12) 0%, rgba(162, 35, 29, 0.06) 50%, transparent 100%);
}

.pill--free {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.stop-flow {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.stop-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    position: relative;
}

.stop-step::after {
    content: '';
    position: absolute;
    left: 2.25rem;
    bottom: -1rem;
    width: 2px;
    height: 1rem;
    background: rgba(255, 255, 255, 0.1);
}

.stop-step:last-child::after {
    display: none;
}

.stop-step__number {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--red-ral), var(--red-dark));
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.stop-step--reset .stop-step__number {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
}

.stop-step__content h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.stop-step__content p {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.example {
    padding: 1.5rem;
    display: grid;
    gap: 0.5rem;
}

.example__icon {
    font-size: 1.5rem;
}

.example h4 {
    font-size: 1rem;
    margin: 0;
}

.example p {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.use-case {
    padding: 1.25rem;
    display: grid;
    gap: 0.5rem;
}

.use-case__icon {
    font-size: 1.5rem;
}

.use-case h4 {
    font-size: 0.95rem;
    margin: 0;
}

.use-case p {
    color: var(--muted);
    font-size: 0.85rem;
    margin: 0;
}

.info-box--important {
    border-left: 4px solid var(--red-ral);
    background: rgba(162, 35, 29, 0.1);
}

.info-box--warning {
    border-left: 4px solid #FF9800;
    background: rgba(255, 152, 0, 0.1);
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    padding: 1.5rem;
}

.faq-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.faq-item p {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0;
}

.sidebar-card--highlight {
    border: 1px solid var(--red-ral);
    background: rgba(162, 35, 29, 0.1);
}

/* Light theme for stop page */
body.theme-light .stop-step::after {
    background: rgba(0, 0, 0, 0.1);
}

body.theme-light .info-box--important {
    background: rgba(162, 35, 29, 0.08);
}

body.theme-light .info-box--warning {
    background: rgba(255, 152, 0, 0.08);
}

body.theme-light .pill--free {
    background: rgba(76, 175, 80, 0.15);
}

.tip__icon {
    font-size: 1.5rem;
}

.tip h4 {
    font-size: 0.95rem;
    color: var(--text);
}

.tip p {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
}

/* Ingredients/benefits grid */
.ingredients-grid,
.benefits-grid,
.techniques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.ingredient,
.benefit,
.technique {
    padding: 1.25rem;
}

.ingredient h4,
.benefit h4,
.technique h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.ingredient p,
.benefit p,
.technique p {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
}

.benefit__icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* Comparison */
.comparison-table {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: rgba(255, 255, 255, 0.05);
    font-weight: 600;
    font-size: 0.85rem;
}

.comparison-table td {
    font-size: 0.9rem;
    color: var(--muted);
}

.comparison-visual {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.comparison-item h4 {
    margin-bottom: 1rem;
    text-align: center;
}

.comparison-result {
    padding: 1rem;
    border-radius: var(--radius-lg);
}

.comparison-result--good {
    background: rgba(76, 175, 80, 0.1);
}

.comparison-result--bad {
    background: rgba(244, 67, 54, 0.1);
}

.result-icon {
    font-size: 2rem;
    display: block;
    text-align: center;
    margin-bottom: 0.75rem;
}

.comparison-result ul {
    list-style: none;
    display: grid;
    gap: 0.4rem;
}

.comparison-result li {
    font-size: 0.85rem;
    color: var(--muted);
}

/* Sidebar */
.program-sidebar {
    display: grid;
    gap: 1.5rem;
    position: sticky;
    top: calc(var(--header-height) + 1.5rem);
}

.sidebar-card {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
}

.sidebar-card h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.sidebar-card--highlight {
    border: 1px solid var(--red-ral);
}

.sidebar-card--final {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.program-specs {
    display: grid;
    gap: 0.5rem;
}

.program-specs dt {
    font-size: 0.8rem;
    color: var(--muted);
}

.program-specs dd {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

.or-divider {
    display: block;
    text-align: center;
    color: var(--muted);
    font-size: 0.8rem;
    margin: 0.75rem 0;
}

.program-list {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.program-list li {
    font-size: 0.9rem;
}

.program-list li a {
    color: var(--muted);
    transition: color 0.2s ease;
    display: block;
    padding: 0.25rem 0;
}

.program-list li a:hover {
    color: var(--red-ral);
}

.program-list li.active {
    color: var(--text);
    font-weight: 600;
}

.final-checklist {
    list-style: none;
    display: grid;
    gap: 0.4rem;
}

.final-checklist li {
    font-size: 0.9rem;
    color: var(--muted);
}

.process-list {
    list-style: none;
    counter-reset: process;
    display: grid;
    gap: 0.5rem;
    margin: 1rem 0;
    padding-left: 0;
}

.process-list li {
    counter-increment: process;
    font-size: 0.9rem;
    color: var(--muted);
    padding-left: 1.5rem;
    position: relative;
}

.process-list li::before {
    content: counter(process) ".";
    position: absolute;
    left: 0;
    font-weight: 600;
    color: var(--text);
}

/* Program page responsive */
@media (max-width: 960px) {
    .program-grid {
        grid-template-columns: 1fr;
    }

    .program-sidebar {
        position: static;
        order: -1;
    }

    .program-sidebar .sidebar-card:not(:first-child):not(:nth-child(2)) {
        display: none;
    }
}

@media (max-width: 520px) {
    .program-hero {
        padding: 3rem 0 2rem;
    }

    .program-hero__icon {
        font-size: 2.5rem;
    }

    .steps-list li {
        flex-direction: column;
        gap: 0.5rem;
    }

    .step-number {
        width: 2rem;
        height: 2rem;
        font-size: 0.8rem;
    }

    .tips-grid,
    .ingredients-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .use-cases {
        grid-template-columns: 1fr;
    }
}

/* Light theme for program pages */
body.theme-light .program-hero {
    background: linear-gradient(180deg, rgba(162, 35, 29, 0.08) 0%, transparent 100%);
}

body.theme-light .program-hero h1,
body.theme-light .program-section h2,
body.theme-light .sidebar-card h3 {
    color: #1E1E1E;
}

body.theme-light .program-hero__subtitle,
body.theme-light .program-section p,
body.theme-light .steps-list p,
body.theme-light .tip p,
body.theme-light .ingredient p,
body.theme-light .benefit p,
body.theme-light .technique p,
body.theme-light .use-case li,
body.theme-light .comparison-result li,
body.theme-light .program-list li a,
body.theme-light .final-checklist li,
body.theme-light .process-list li {
    color: #555555;
}

body.theme-light .steps-list h4,
body.theme-light .tip h4,
body.theme-light .ingredient h4,
body.theme-light .benefit h4,
body.theme-light .technique h4,
body.theme-light .info-box h4,
body.theme-light .warning-box h4,
body.theme-light .science-box h4 {
    color: #1E1E1E;
}

body.theme-light .program-back {
    color: #666;
}

body.theme-light .program-specs dt {
    color: #777;
}

body.theme-light .program-specs dd {
    color: #1E1E1E;
}

body.theme-light .program-list li.active {
    color: #1E1E1E;
}

body.theme-light .or-divider {
    color: #888;
}

body.theme-light .info-box {
    background: rgba(162, 35, 29, 0.06);
}

body.theme-light .info-box p,
body.theme-light .warning-box p,
body.theme-light .science-box p {
    color: #444;
}

body.theme-light .warning-box {
    background: rgba(255, 193, 7, 0.08);
}

body.theme-light .science-box {
    background: rgba(33, 150, 243, 0.08);
}

body.theme-light .science-box ul li,
body.theme-light .warning-box ul li {
    color: #444;
}

body.theme-light .comparison-table th {
    background: rgba(0, 0, 0, 0.03);
    color: #1E1E1E;
}

body.theme-light .comparison-table td {
    color: #555;
}

body.theme-light .comparison-table td,
body.theme-light .comparison-table th {
    border-color: rgba(0, 0, 0, 0.08);
}

body.theme-light .sidebar-card--final {
    background: rgba(76, 175, 80, 0.08);
}

body.theme-light .use-case h4 {
    color: #1E1E1E;
}

body.theme-light .comparison-item h4 {
    color: #1E1E1E;
}

body.theme-light .list li {
    color: #555;
}
