/* ============================================
   MEISTERFRISEURE STIEFEL & STIEFEL
   Premium One-Pager — Charcoal + Gold
   Font: Playfair Display + Jost
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Colors */
    --color-bg: #FAF8F5;
    --color-bg-alt: #F2EFEB;
    --color-dark: #2C2C2C;
    --color-dark-soft: #3A3A3A;
    --color-text: #4A4A4A;
    --color-text-light: #7A7A7A;
    --color-gold: #C9A96E;
    --color-gold-dark: #B8954F;
    --color-gold-light: #DFC89A;
    --color-white: #FFFFFF;
    --color-whatsapp: #25D366;
    --color-whatsapp-dark: #1DA851;

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

    /* Spacing */
    --section-padding: 6rem 0;
    --container-width: 1200px;
    --container-padding: 1.5rem;

    /* Transitions */
    --transition: 0.3s ease;
    --transition-slow: 0.6s ease;

    /* Border radius */
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    color: var(--color-dark);
    line-height: 1.3;
    font-weight: 500;
}

em {
    font-style: italic;
    color: var(--color-gold);
}

strong {
    font-weight: 600;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

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

.btn--gold:hover {
    background: var(--color-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.35);
}

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

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

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

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

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

.btn--whatsapp:hover {
    background: var(--color-whatsapp-dark);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn--sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
}

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

/* --- Section Base --- */
.section {
    padding: var(--section-padding);
}

.section__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

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

.section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
}

.section__subtitle {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   COOKIE CONSENT BANNER
============================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 1.25rem;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.cookie-banner--hidden {
    transform: translateY(100%);
    pointer-events: none;
}

.cookie-banner__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-banner__inner p {
    flex: 1;
    min-width: 280px;
    font-size: 0.875rem;
    line-height: 1.6;
}

.cookie-banner__inner a {
    color: var(--color-gold);
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* ============================================
   HEADER / NAVIGATION
============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition);
    background: transparent;
}

.header--scrolled {
    background: rgba(44, 44, 44, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.625rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.header__logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    z-index: 1001;
}

.header__logo-text {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 0.02em;
}

.header__logo-sub {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    font-weight: 500;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header__nav-list {
    display: flex;
    gap: 1.75rem;
}

.header__nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding: 0.25rem 0;
}

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

.header__nav-link:hover::after,
.header__nav-link--active::after {
    width: 100%;
}

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

.header__cta {
    padding: 0.625rem 1.5rem;
    font-size: 0.8125rem;
}

/* Burger */
.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

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

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

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

.header__burger--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: linear-gradient(135deg, #2C2C2C 0%, #1a1a1a 50%, #2C2C2C 100%);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 44, 44, 0.65);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 0;
}

.hero__tagline {
    font-family: var(--font-body);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--color-white);
    margin-bottom: 1.25rem;
    font-weight: 400;
    line-height: 1.15;
}

.hero__title em {
    color: var(--color-gold);
    font-style: italic;
}

.hero__subtitle {
    font-size: 1.1875rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; height: 40px; }
    50% { opacity: 1; height: 55px; }
}

/* ============================================
   ABOUT
============================================= */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__image {
    position: relative;
}

.about__image-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.about__image-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about__badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--color-gold);
    color: var(--color-white);
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
}

.about__badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
}

.about__badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.about__heading {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1.5rem;
}

.about__content p {
    margin-bottom: 1rem;
    font-size: 1.0625rem;
}

.about__highlights {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.about__highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about__highlight-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 110, 0.12);
    border-radius: var(--radius);
    color: var(--color-gold);
}

.about__highlight strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--color-dark);
    margin-bottom: 0.125rem;
    font-family: var(--font-body);
}

.about__highlight p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* ============================================
   SERVICES
============================================= */
.services {
    background: var(--color-bg-alt);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.service-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.12) 0%, rgba(201, 169, 110, 0.06) 100%);
    border-radius: 12px;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
}

.service-card__title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card__desc {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.service-card__prices {
    border-top: 1px solid var(--color-bg-alt);
    padding-top: 1rem;
}

.service-card__price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    border-bottom: 1px dotted var(--color-bg-alt);
}

.service-card__price-row:last-child {
    border-bottom: none;
}

.service-card__price {
    font-weight: 600;
    color: var(--color-gold-dark);
    white-space: nowrap;
    margin-left: 1rem;
}

.services__note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: 2rem;
    font-style: italic;
}

/* ============================================
   TEAM — Schwarz-Weiß → Farbe bei Hover
============================================= */
.team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

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

.team-card__image {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1.25rem;
    position: relative;
}

.team-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.team-card:hover .team-card__image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.team-card__name {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.team-card__role {
    display: block;
    font-size: 0.875rem;
    color: var(--color-gold);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.team-card__since {
    display: block;
    font-size: 0.8125rem;
    color: var(--color-text-light);
    margin-bottom: 0.75rem;
}

.team-card__desc {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ============================================
   GALLERY
============================================= */
.gallery {
    background: var(--color-bg-alt);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 1rem;
}

.gallery__item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition);
}

.gallery__item:hover {
    transform: scale(1.02);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery__item:hover img {
    transform: scale(1.08);
}

.gallery__item--tall {
    grid-row: span 2;
}

.gallery__item--wide {
    grid-column: span 2;
}

.gallery__hint {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--color-text-light);
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(201, 169, 110, 0.08);
    border-radius: var(--radius);
    border: 1px dashed var(--color-gold-light);
}

/* ============================================
   REVIEWS
============================================= */
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all var(--transition);
}

.review-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.review-card__stars {
    display: flex;
    gap: 0.125rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.review-card__text {
    font-size: 1rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--color-dark-soft);
}

.review-card__author {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-light);
}

.reviews__hint {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--color-text-light);
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(201, 169, 110, 0.08);
    border-radius: var(--radius);
    border: 1px dashed var(--color-gold-light);
}

/* ============================================
   CONTACT
============================================= */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact__block {
    margin-bottom: 2rem;
}

.contact__block h3 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
    color: var(--color-dark);
    font-family: var(--font-body);
    font-weight: 600;
}

.contact__block p {
    font-size: 1rem;
    line-height: 1.8;
}

.contact__route-btn {
    margin-top: 0.75rem;
}

.contact__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-dark);
    font-weight: 500;
    transition: color var(--transition);
}

.contact__link:hover {
    color: var(--color-gold);
}

.contact__link svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

.contact__link-hint {
    font-size: 0.8125rem;
    color: var(--color-text-light);
    font-weight: 400;
}

.contact__hours {
    width: 100%;
    border-collapse: collapse;
}

.contact__hours td {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-bg-alt);
    font-size: 0.9375rem;
}

.contact__hours td:first-child {
    font-weight: 500;
    color: var(--color-dark);
    width: 40%;
}

.contact__hours tr:last-child td {
    border-bottom: none;
}

.contact__actions {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

/* Contact Form */
.contact__form-wrap {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact__form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact__form-note {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

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

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    border: 1px solid #E0DCD6;
    border-radius: var(--radius);
    background: var(--color-bg);
    color: var(--color-dark);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #B5B0A8;
    font-weight: 300;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.form-group textarea {
    resize: vertical;
}

.form-group--checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-group--checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    accent-color: var(--color-gold);
}

.form-group--checkbox label {
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.8125rem;
    color: var(--color-text-light);
    cursor: pointer;
}

.form-group--checkbox label a {
    color: var(--color-gold);
    text-decoration: underline;
}

/* Map Container with Consent */
.contact__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    min-height: 400px;
    position: relative;
}

.contact__map iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

.contact__map-consent {
    width: 100%;
    height: 400px;
    background: var(--color-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact__map-consent-inner {
    text-align: center;
    padding: 2rem;
    color: var(--color-text-light);
}

.contact__map-consent-inner svg {
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.contact__map-consent-inner p {
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
    max-width: 400px;
}

.contact__map-alt-link {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    color: var(--color-gold);
    text-decoration: underline;
}

/* ============================================
   LEGAL (Impressum & Datenschutz)
============================================= */
.legal {
    background: var(--color-bg-alt);
}

.legal + .legal {
    padding-top: 0;
}

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

.legal__content h3 {
    font-size: 1.125rem;
    margin: 2rem 0 0.75rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-dark);
}

.legal__content h3:first-child {
    margin-top: 0;
}

.legal__content h4 {
    font-size: 1rem;
    margin: 1.5rem 0 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-dark-soft);
}

.legal__content p {
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

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

.legal__content a:hover {
    color: var(--color-gold-dark);
}

/* ============================================
   FOOTER
============================================= */
.footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 0;
}

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

.footer__logo-text {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
}

.footer__logo-sub {
    display: block;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.footer__tagline {
    font-size: 0.9375rem;
}

.footer h4 {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-white);
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer__links a {
    font-size: 0.9375rem;
    transition: color var(--transition);
}

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

.footer__contact p {
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

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

.footer__social-links {
    display: flex;
    gap: 0.75rem;
}

.footer__social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    transition: all var(--transition);
}

.footer__social-links a:hover {
    background: var(--color-gold);
    color: var(--color-white);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-size: 0.8125rem;
}

.footer__legal {
    display: flex;
    gap: 1.5rem;
}

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

/* ============================================
   STICKY CTA (Mobile)
============================================= */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 0.75rem 1rem;
    background: var(--color-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-cta .btn {
    border-radius: var(--radius);
}

/* ============================================
   SCROLL ANIMATIONS
============================================= */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ============================================
   RESPONSIVE DESIGN
============================================= */

/* Tablet */
@media (max-width: 1024px) {
    .about__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about__badge {
        bottom: -1rem;
        right: 1rem;
    }

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

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

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

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

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 0;
    }

    .header__burger {
        display: flex;
    }

    .header__nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(44, 44, 44, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition);
    }

    .header__nav--open {
        opacity: 1;
        pointer-events: all;
    }

    .header__nav-list {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .header__nav-link {
        font-size: 1.125rem;
    }

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

    .hero__scroll {
        display: none;
    }

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

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .gallery__item--tall {
        grid-row: span 1;
    }

    .gallery__item--wide {
        grid-column: span 1;
    }

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

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

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

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .contact__actions {
        flex-direction: column;
    }

    .sticky-cta {
        display: block;
    }

    body {
        padding-bottom: 70px;
    }

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

    .cookie-banner__actions {
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .team__grid {
        grid-template-columns: 1fr;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .contact__form-wrap {
        padding: 1.5rem;
    }
}
