/* ==========================================================================
   Aqua Designs Winterthur — Premium Aquaristik
   Design: Deep Ocean, Underwater Aesthetics, Luxury Feel
   ========================================================================== */

/* --- Custom Properties --- */
:root {
    --ocean-deep:    #0a1628;
    --ocean-mid:     #0d2847;
    --ocean-blue:    #0d3b66;
    --teal:          #1a8a7d;
    --teal-light:    #40e0d0;
    --teal-glow:     rgba(64, 224, 208, 0.3);
    --gold:          #c8a855;
    --gold-light:    #e0c878;
    --pearl:         #f0f4f8;
    --pearl-dim:     #c8d6e5;
    --surface:       #f8fafb;
    --charcoal:      #1a1a2e;
    --glass:         rgba(255, 255, 255, 0.06);
    --glass-border:  rgba(255, 255, 255, 0.1);
    --glass-strong:  rgba(255, 255, 255, 0.12);

    --font-heading:  'Playfair Display', Georgia, serif;
    --font-body:     'Inter', -apple-system, sans-serif;

    --nav-height:    72px;
    --section-pad:   clamp(50px, 7vw, 90px);
    --container:     1200px;

    --ease-out:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-smooth:   cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce:   cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--pearl);
    background: var(--ocean-deep);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-light); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-light); }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 clamp(20px, 4vw, 40px);
    transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

.nav--scrolled {
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--glass-border);
}

.nav__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
}

.nav__logo { display: flex; align-items: center; }
.nav__logo-img { height: 36px; width: auto; filter: invert(1) brightness(1.2); mix-blend-mode: screen; }

.nav__links {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2.5vw, 32px);
    list-style: none;
}

.nav__link {
    color: var(--pearl-dim);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 6px 0;
    position: relative;
    transition: color 0.3s;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--teal-light);
    transition: width 0.3s var(--ease-out);
}

.nav__link:hover { color: var(--pearl); }
.nav__link:hover::after { width: 100%; }

.nav__link--cta {
    color: var(--ocean-deep);
    background: linear-gradient(135deg, var(--teal-light), var(--teal));
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.nav__link--cta::after { display: none; }
.nav__link--cta:hover {
    color: var(--ocean-deep);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--teal-glow);
}

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

.nav__toggle span {
    width: 24px; height: 2px;
    background: var(--pearl);
    transition: transform 0.3s, opacity 0.3s;
    border-radius: 2px;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.35) saturate(1.2);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 120%, rgba(26, 138, 125, 0.25) 0%, transparent 60%),
        linear-gradient(180deg, rgba(10, 22, 40, 0.3) 0%, rgba(10, 22, 40, 0.7) 100%);
    z-index: 1;
}

.hero__particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero__pretitle {
    font-family: var(--font-body);
    font-size: clamp(0.75rem, 1.2vw, 0.9rem);
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s 0.3s var(--ease-out) forwards;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s 0.5s var(--ease-out) forwards;
}

.hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--teal-light), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: var(--pearl-dim);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s 0.7s var(--ease-out) forwards;
}

.hero__ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s 0.9s var(--ease-out) forwards;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
    animation: fadeUp 0.8s 1.2s var(--ease-out) forwards;
}

.hero__scroll-dot {
    width: 24px; height: 40px;
    border: 2px solid var(--pearl-dim);
    border-radius: 12px;
    position: relative;
}

.hero__scroll-dot::after {
    content: '';
    position: absolute;
    top: 6px; left: 50%;
    transform: translateX(-50%);
    width: 4px; height: 8px;
    background: var(--teal-light);
    border-radius: 4px;
    animation: scrollBounce 2s infinite;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.35s var(--ease-smooth);
    text-decoration: none;
}

.btn--primary {
    background: linear-gradient(135deg, var(--teal-light), var(--teal));
    color: var(--ocean-deep);
    box-shadow: 0 4px 24px rgba(64, 224, 208, 0.25);
}

.btn--primary:hover {
    color: var(--ocean-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(64, 224, 208, 0.4);
}

.btn--glass {
    background: var(--glass);
    color: var(--pearl);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
}

.btn--glass:hover {
    color: var(--pearl);
    background: var(--glass-strong);
    border-color: var(--teal-light);
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--ocean-deep);
}

.btn--gold:hover {
    color: var(--ocean-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(200, 168, 85, 0.35);
}

.btn--large { padding: 18px 40px; font-size: 1.05rem; }

/* ==========================================================================
   SECTIONS (General)
   ========================================================================== */

.section {
    padding: var(--section-pad) 0;
    position: relative;
}

.section--dark {
    background: var(--ocean-deep);
}

.section--mid {
    background: linear-gradient(180deg, var(--ocean-mid) 0%, var(--ocean-deep) 100%);
}

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

.section--gradient {
    background: linear-gradient(180deg, var(--ocean-deep) 0%, var(--ocean-mid) 50%, var(--ocean-deep) 100%);
}

.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto clamp(32px, 4vw, 56px);
}

.section__label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: 12px;
}

.section--light .section__label { color: var(--teal); }

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section--light .section__title { color: var(--charcoal); }

.section__subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--pearl-dim);
    line-height: 1.7;
}

.section--light .section__subtitle { color: #5a6a7a; }

/* ==========================================================================
   STATEMENT (Sektion 2: Problem)
   ========================================================================== */

.statement {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--section-pad) 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(13, 59, 102, 0.5) 0%, transparent 50%),
        var(--ocean-deep);
}

.statement__text {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
    max-width: 900px;
}

.statement__text em {
    font-style: normal;
    color: var(--teal-light);
}

.statement__sub {
    text-align: center;
    margin-top: 24px;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--pearl-dim);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   SOLUTION CARDS (Sektion 3)
   ========================================================================== */

.solutions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.solution-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s, border-color 0.4s;
    backdrop-filter: blur(8px);
}

.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: var(--teal);
}

.solution-card__icon {
    width: 64px; height: 64px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

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

.solution-card__text {
    color: var(--pearl-dim);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */

.cta-banner {
    padding: clamp(40px, 5vw, 70px) 0;
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(26, 138, 125, 0.15) 0%, transparent 70%),
        var(--ocean-deep);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.cta-banner__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600;
    margin-bottom: 12px;
}

.cta-banner__text {
    color: var(--pearl-dim);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

/* ==========================================================================
   SERVICE CARDS (Sektion 5)
   ========================================================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    group: true;
}

.service-card__img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth), filter 0.6s;
    filter: brightness(0.5) saturate(1.1);
}

.service-card:hover .service-card__img {
    transform: scale(1.08);
    filter: brightness(0.35) saturate(1.2);
}

.service-card__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    background: linear-gradient(0deg, rgba(10, 22, 40, 0.85) 0%, transparent 60%);
}

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

.service-card__text {
    font-size: 0.9rem;
    color: var(--pearl-dim);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s var(--ease-smooth), opacity 0.4s;
}

.service-card:hover .service-card__text {
    max-height: 120px;
    opacity: 1;
}

/* ==========================================================================
   PROJEKTE SHOWCASE (Sektion 6)
   ========================================================================== */

.showcase-wrapper {
    overflow: hidden;
    margin: 0 calc(-1 * clamp(20px, 4vw, 40px));
}

.showcase {
    display: flex;
    gap: 20px;
    padding: 0 clamp(20px, 4vw, 40px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 20px;
}

.showcase::-webkit-scrollbar { display: none; }

.showcase__item {
    flex: 0 0 clamp(280px, 30vw, 400px);
    scroll-snap-align: start;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
}

.showcase__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

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

.showcase__label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px;
    background: linear-gradient(0deg, rgba(10, 22, 40, 0.9) 0%, transparent 100%);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
}

.showcase__counter {
    text-align: center;
    margin-top: 32px;
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--teal-light);
}

.showcase__counter span {
    font-size: 1.1rem;
    color: var(--pearl-dim);
    display: block;
    font-family: var(--font-body);
    font-weight: 400;
}

/* ==========================================================================
   SHOWROOM (Sektion 7)
   ========================================================================== */

.showroom-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.showroom__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    border-radius: 20px;
    overflow: hidden;
}

.showroom__gallery img {
    width: 100%; height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    border-radius: 12px;
    transition: transform 0.4s;
}

.showroom__gallery img:hover { transform: scale(1.03); }
.showroom__gallery img:first-child { grid-column: 1 / -1; aspect-ratio: 16/9; }

.showroom__info {
    padding: 20px 0;
}

.showroom__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.showroom__text {
    color: var(--pearl-dim);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.showroom__details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.showroom__detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.95rem;
}

.showroom__detail-icon {
    width: 40px; height: 40px;
    flex-shrink: 0;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.showroom__detail strong {
    display: block;
    color: var(--pearl);
    margin-bottom: 2px;
}

.showroom__detail span {
    color: var(--pearl-dim);
}

/* ==========================================================================
   PROCESS / ABLAUF (Sektion 8)
   ========================================================================== */

.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 44px;
    left: calc(12.5% + 12px);
    right: calc(12.5% + 12px);
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    opacity: 0.4;
}

.process__step {
    text-align: center;
    position: relative;
}

.process__number {
    width: 56px; height: 56px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ocean-deep);
    position: relative;
    z-index: 1;
}

.process__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.process__text {
    color: var(--pearl-dim);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ==========================================================================
   FAQ (Sektion 9)
   ========================================================================== */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item--open { border-color: var(--teal); }

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--pearl);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    gap: 16px;
}

.faq-item__icon {
    width: 28px; height: 28px;
    flex-shrink: 0;
    border: 2px solid var(--pearl-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, border-color 0.3s;
}

.faq-item--open .faq-item__icon {
    transform: rotate(45deg);
    border-color: var(--teal-light);
}

.faq-item__icon::before {
    content: '+';
    font-size: 16px;
    line-height: 1;
    color: var(--pearl-dim);
}

.faq-item--open .faq-item__icon::before { color: var(--teal-light); }

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-smooth);
}

.faq-item__answer-inner {
    padding: 0 24px 20px;
    color: var(--pearl-dim);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================================================
   CTA FINAL (Sektion 10)
   ========================================================================== */

.cta-final {
    padding: clamp(50px, 7vw, 90px) 0;
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 80%, rgba(26, 138, 125, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 20%, rgba(13, 59, 102, 0.4) 0%, transparent 40%),
        var(--ocean-deep);
}

.cta-final__title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-final__text {
    font-size: 1.15rem;
    color: var(--pearl-dim);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* ==========================================================================
   CONTACT FORM (Sektion 11)
   ========================================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--pearl-dim);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px 18px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--pearl);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px var(--teal-glow);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(200, 214, 229, 0.4); }

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

.form-success {
    display: none;
    text-align: center;
    padding: 40px;
    background: var(--glass);
    border: 1px solid var(--teal);
    border-radius: 16px;
}

.form-success.show { display: block; }

.contact-info {
    padding: 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.contact-info__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.contact-info__items { display: flex; flex-direction: column; gap: 20px; }

.contact-info__item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-info__icon {
    width: 44px; height: 44px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-info__label {
    font-size: 0.8rem;
    color: var(--pearl-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}

.contact-info__value {
    color: var(--pearl);
    font-size: 1rem;
}

.contact-info__value a { color: var(--pearl); }
.contact-info__value a:hover { color: var(--teal-light); }

.contact-info__map {
    margin-top: 24px;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.contact-info__map iframe {
    width: 100%; height: 100%;
    border: 0;
    filter: brightness(0.8) contrast(1.1) saturate(0);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--glass-border);
    background: rgba(10, 22, 40, 0.5);
}

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

.footer__logo { height: 32px; width: auto; margin-bottom: 16px; filter: invert(1) brightness(1.2); mix-blend-mode: screen; }

.footer__text { color: var(--pearl-dim); font-size: 0.9rem; line-height: 1.6; }

.footer__heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--pearl);
}

.footer__address {
    font-style: normal;
    color: var(--pearl-dim);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer__address a { color: var(--pearl-dim); }
.footer__address a:hover { color: var(--teal-light); }

.footer__hours {
    color: var(--pearl-dim);
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 4px;
}

.footer__hours--note {
    margin-top: 8px;
    font-size: 0.8rem;
    font-style: italic;
    display: block;
}

.footer__nav { list-style: none; }

.footer__nav li { margin-bottom: 8px; }

.footer__nav a {
    color: var(--pearl-dim);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer__nav a:hover { color: var(--teal-light); }

.footer__bottom {
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--pearl-dim);
    font-size: 0.8rem;
}

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

/* ==========================================================================
   REVEAL ANIMATIONS
   ========================================================================== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal--left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal--right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal--left.reveal--visible,
.reveal--right.reveal--visible {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered children */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.reveal-stagger--visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger--visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger--visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger--visible > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger--visible > *:nth-child(5) { transition-delay: 0.35s; }
.reveal-stagger--visible > *:nth-child(6) { transition-delay: 0.4s; }

.reveal-stagger--visible > * {
    opacity: 1;
    transform: translateY(0);
}

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

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

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

@media (max-width: 1024px) {
    .solutions { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .showroom-grid { grid-template-columns: 1fr; }
    .process { grid-template-columns: repeat(2, 1fr); }
    .process::before { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

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

    .nav__links {
        position: fixed;
        top: 0; right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        flex-direction: column;
        background: rgba(10, 22, 40, 0.97);
        backdrop-filter: blur(24px);
        padding: 100px 32px 32px;
        gap: 8px;
        align-items: stretch;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-smooth);
    }

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

    .nav__link {
        font-size: 1.05rem;
        padding: 14px 0;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav__link::after { display: none; }

    .nav__link--cta {
        text-align: center;
        margin-top: 16px;
        border-bottom: none;
    }

    .services-grid { grid-template-columns: 1fr; }
    .process { grid-template-columns: 1fr; gap: 32px; }
    .form-row { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
    .showcase__item { flex: 0 0 85vw; }
}
