* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --page-bg: #F4F1E4;
    --surface: #fff8eb;
    --surface-strong: #E3D7AC;
    --text-main: #0A0E2F;
    --text-muted: #6b6a6a;
    --accent: #163384;
    --accent-soft: #0A0E2F;
    --border: rgba(10, 14, 47, 0.12);
    --shadow: 0 20px 50px rgba(10, 14, 47, 0.08);
    --font-body: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Monument Extended', 'Montserrat', sans-serif;
}

body.theme-dark {
    --page-bg: #090C18;
    --surface: #1B2750;
    --surface-strong: #163384;
    --text-main: #EAE8DC;
    --text-muted: rgba(234, 232, 220, 0.7);
    --accent: #EAE8DC;
    --accent-soft: #1B2750;
    --border: rgba(234, 232, 220, 0.12);
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

body {
    font-family: var(--font-body);
    background: var(--page-bg);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    transition: background 0.4s ease, color 0.4s ease;
    overflow-x: hidden;
}

.nav-open {
    overflow: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.35), transparent 55%),
                radial-gradient(circle at 70% 0%, rgba(255, 255, 255, 0.2), transparent 60%),
                radial-gradient(circle at 80% 80%, rgba(22, 51, 132, 0.18), transparent 60%);
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
}

img {
    width: 100%;
    display: block;
}

button,
input,
textarea {
    font: inherit;
    color: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

ul { list-style: none; }

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

.hero {
    min-height: 100vh;
    padding: clamp(2rem, 4vw, 4rem) clamp(1.5rem, 6vw, 5rem) clamp(4rem, 7vw, 6rem);
    display: flex;
    flex-direction: column;
}

.site-nav {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    z-index: 20;
    backdrop-filter: blur(14px);
}
.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    position: relative;
}

.logo-symbol {
    width: 56px;
    height: 56px;
    object-fit: contain;
    transition: opacity 0.3s ease;
    position: absolute;
    inset: 0;
}

.logo-toned {
    position: absolute;
    left: 0;
    opacity: 0;
}

.logo-toned-dark {
    opacity: 1;
}

.logo-toned-light {
    opacity: 0;
}

body.theme-dark .logo-toned-dark {
    opacity: 0;
}

body.theme-dark .logo-toned-light {
    opacity: 1;
}

.nav-panel {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 60;
}

.nav-close {
    display: none;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav-links a {
    position: relative;
    padding-bottom: 0.3rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: transparent;
    opacity: 0;
    pointer-events: none;
    transition: none;
    z-index: -1;
    display: none;
}

body.theme-dark .nav-overlay {
    background: transparent;
}

body.nav-open .nav-overlay {
    opacity: 0;
    pointer-events: none;
}

.nav-cta {
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.nav-cta:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.nav-toggle {
    display: none;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: transparent;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.nav-toggle.active span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.hero-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2rem;
    margin-top: 3rem;
}

.hero-copy {
    max-width: 720px;
    text-align: center;
}

.eyebrow {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.hero-copy h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.hero-copy h1 span {
    color: var(--accent);
}

.lede {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 38ch;
    margin: 0 auto 2rem;
    text-align: center;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.theme-fab {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-main);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    pointer-events: auto;
    touch-action: manipulation;
}

.theme-fab:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(10, 14, 47, 0.2);
}

.theme-icon {
    position: absolute;
    font-size: 1.2rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.theme-icon-moon {
    opacity: 0;
    transform: scale(0.4) rotate(-20deg);
}

body.theme-dark .theme-icon-sun {
    opacity: 0;
    transform: scale(0.4) rotate(20deg);
}

body.theme-dark .theme-icon-moon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

@media (max-width: 600px) {
    .theme-fab {
        display: none;
    }
}

.btn {
    border: none;
    border-radius: 999px;
    padding: 0.85rem 1.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
    background: transparent;
    color: var(--text-main);
}

.btn.primary {
    background: var(--accent);
    color: #fff;
    box-shadow: var(--shadow);
}

.btn.ghost {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border);
}

.btn:hover {
    transform: translateY(-3px);
}

.hero .btn,
.contact-form .btn,
.appointment-hero .btn,
.appointment-form .btn {
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-main);
    box-shadow: none;
}

.hero .btn.primary,
.contact-form .btn.primary,
.appointment-hero .btn.primary,
.appointment-form .btn.primary {
    color: var(--text-main);
    box-shadow: none;
}

body.theme-dark .hero .btn:hover,
body.theme-dark .hero .btn:focus-visible,
body.theme-dark .contact-form .btn:hover,
body.theme-dark .contact-form .btn:focus-visible,
body.theme-dark .appointment-hero .btn:hover,
body.theme-dark .appointment-hero .btn:focus-visible,
body.theme-dark .appointment-form .btn:hover,
body.theme-dark .appointment-form .btn:focus-visible {
    background: #EAE8DC;
    color: #090C18;
    border-color: #EAE8DC;
    box-shadow: 0 12px 30px rgba(234, 232, 220, 0.3);
}

body.theme-light .hero .btn:hover,
body.theme-light .hero .btn:focus-visible,
body.theme-light .contact-form .btn:hover,
body.theme-light .contact-form .btn:focus-visible,
body.theme-light .appointment-hero .btn:hover,
body.theme-light .appointment-hero .btn:focus-visible,
body.theme-light .appointment-form .btn:hover,
body.theme-light .appointment-form .btn:focus-visible {
    background: #0A0E2F;
    color: #F4F1E4;
    border-color: #0A0E2F;
    box-shadow: 0 12px 30px rgba(10, 14, 47, 0.2);
}

.hero-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    justify-content: center;
}

.hero-logo-focus {
    width: clamp(300px, 70vw, 900px);
    height: clamp(200px, 35vw, 520px);
    border-radius: 0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: none;
    background: transparent;
    overflow: visible;
    animation: logoFloat 14s ease-in-out infinite;
    user-select: none;
    -webkit-user-select: none;
}

.hero-logo {
    max-width: 100%;
    height: auto;
    position: absolute;
    inset: 0;
    margin: auto;
    transition: opacity 0.3s ease;
    filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.28));
    animation: logoPulse 10s ease-in-out infinite;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 60%);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.8));
    animation: sparkleBlink 6s ease-in-out infinite;
    pointer-events: none;
}

.sparkle::before,
.sparkle::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 1px;
}

.sparkle::before {
    width: 2px;
    height: 24px;
}

.sparkle::after {
    width: 24px;
    height: 2px;
}

.sparkle-1 {
    top: 10%;
    left: 18%;
    animation-delay: 0s;
}

.sparkle-2 {
    bottom: 12%;
    right: 10%;
    animation-delay: 2s;
}

.sparkle-3 {
    top: 25%;
    right: 30%;
    animation-delay: 4s;
}

.hero-logo-light {
    opacity: 0;
}

body.theme-dark .hero-logo-dark {
    opacity: 0;
}

body.theme-dark .hero-logo-light {
    opacity: 1;
}

.gallery-section {
    padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 6vw, 5rem);
}

.section-heading {
    max-width: 700px;
    margin-bottom: 3rem;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-family: var(--font-display);
    text-transform: uppercase;
}

.section-heading p:last-child {
    color: var(--text-muted);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: minmax(100px, auto);
    gap: clamp(1rem, 2vw, 1.8rem);
}

.gallery-card,
.note-card,
.stat-card,
.tape-card {
    border-radius: 1.6rem;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--shadow);
    position: relative;
}

.gallery-card {
    overflow: hidden;
    isolation: isolate;
}

.gallery-card img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    user-select: none;
    -webkit-user-select: none;
}

.gallery-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.45));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-card::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 1.2rem;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background-image: url('images/Lumina%20Logo@4x%20light.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

body.theme-light .gallery-card::before {
    background-image: url('images/Lumina%20Logo@4x%20light.png');
}

body.theme-dark .gallery-card::before {
    background-image: url('images/Lumina%20Logo@4x%20light.png');
}

.gallery-card figcaption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 1.25rem 1.5rem;
    color: #fff;
    z-index: 2;
}

.gallery-card p {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.gallery-card span {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.gallery-card:hover::after {
    opacity: 1;
}

.gallery-card:hover::before {
    opacity: 0.8;
}

.note-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.note-card h3 {
    font-size: 1.5rem;
    font-family: var(--font-display);
    text-transform: uppercase;
}

.note-card p:last-child {
    color: var(--text-muted);
}

.note-card a.inline-link {
    color: var(--accent);
    text-decoration: none;
    position: relative;
    font-weight: 600;
}

.note-card a.inline-link::after {
    content: 'Tıkla, sihri gör';
    position: absolute;
    left: 0;
    bottom: 120%;
    transform: translateY(-4px);
    background: var(--surface);
    color: var(--text-main);
    padding: 0.4rem 0.8rem;
    border-radius: 0.6rem;
    border: 1px solid var(--border);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.note-card a.inline-link:hover::after,
.note-card a.inline-link:focus-visible::after {
    opacity: 1;
    transform: translateY(-8px);
}

.stat-card {
    padding: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
    text-align: center;
}

.stat-card strong {
    font-size: 2rem;
    letter-spacing: 0;
}

.tape-card {
    background: var(--surface-strong);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.4em;
    text-align: center;
}

.tape-card span {
    display: block;
    width: 100%;
    text-align: center;
    letter-spacing: 0.3em;
}

.tile-a { grid-column: span 5; grid-row: span 3; }
.tile-b { grid-column: span 3; grid-row: span 2; }
.tile-c { grid-column: span 4; grid-row: span 3; }
.tile-d { grid-column: span 2; grid-row: span 1; }
.tile-e { grid-column: span 6; grid-row: span 4; }
.tile-f { grid-column: span 4; grid-row: span 1; }
.tile-g { grid-column: span 6; grid-row: span 4; }
.tile-h { grid-column: span 4; grid-row: span 2; }
.tile-i { grid-column: span 3; grid-row: span 2; }
.tile-j { grid-column: span 5; grid-row: span 3; }
.tile-k { grid-column: span 3; grid-row: span 2; }

.process-section {
    padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 6vw, 5rem);
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface-strong) 100%);
}

.process-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

.process-layout .section-heading p {
    margin-bottom: 1rem;
}

.faq-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-card {
    border: 1px solid var(--border);
    border-radius: 1.2rem;
    background: var(--surface);
    box-shadow: var(--shadow);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    overflow: hidden;
}

.faq-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(10, 14, 47, 0.15);
    border-color: rgba(22, 51, 132, 0.25);
}

body.theme-dark .faq-card {
    border-color: rgba(234, 232, 220, 0.15);
    background: rgba(9, 12, 24, 0.65);
}

.faq-toggle {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.faq-question {
    font-family: var(--font-display);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-card.open .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 1.5rem;
}

.faq-card.open .faq-content {
    padding: 0 1.5rem 1.5rem;
}

.faq-content p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 600px) {
    .faq-panel {
        gap: 0.6rem;
    }

    .faq-card {
        border-radius: 1rem;
    }

    .faq-toggle {
        padding: 1.2rem;
        gap: 1rem;
    }

    .faq-question {
        font-size: 1rem;
        letter-spacing: 0.05em;
    }

    .faq-icon {
        font-size: 1.2rem;
    }
}

.contact-section {
    padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 6vw, 5rem);
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
    max-width: 720px;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.contact-form label.full {
    grid-column: span 2;
}

.contact-form input,
.contact-form textarea {
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 0.9rem 1.2rem;
    background: var(--surface);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn {
    grid-column: span 2;
    justify-self: flex-start;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.info-card {
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 1.5rem;
    background: var(--surface);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(10, 14, 47, 0.15);
}

.info-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.info-link {
    font-family: var(--font-display);
    font-size: 1.4rem;
    text-decoration: none;
    color: var(--text-main);
    display: inline-block;
    margin-bottom: 0.8rem;
}

.info-note {
    color: var(--text-muted);
}

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

    .info-link {
        font-size: 1.1rem;
        word-break: break-word;
    }

    .info-card {
        padding: 1.2rem;
    }

    .faq-toggle {
        padding: 1rem;
    }

    .faq-question {
        font-size: 0.95rem;
        letter-spacing: 0.05em;
    }

    .faq-content {
        padding: 0 1rem;
    }

    .faq-card.open .faq-content {
        padding: 0 1rem 1rem;
    }
}

.appointment-page .hero {
    min-height: 60vh;
    justify-content: center;
}

.appointment-hero-shell {
    position: relative;
}

.appointment-hero {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.appointment-hero h1 {
    font-size: clamp(2.2rem, 6vw, 4rem);
    margin-bottom: 1rem;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.appointment-hero .lede {
    max-width: 640px;
    margin: 0 auto 1.5rem;
}
.appointment-main {
    padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 6vw, 5rem);
}

.appointment-scheduler {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}

.appointment-calendar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 0.75rem;
}

.calendar-day {
    border: 1px solid var(--border);
    border-radius: 0.9rem;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    background: var(--surface);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}


.calendar-day span {
    display: block;
}

.calendar-day .day-name {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.calendar-day .day-number {
    font-size: 1.4rem;
    font-family: var(--font-display);
}

.calendar-day .day-month {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.calendar-day:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 20px 50px rgba(10, 14, 47, 0.16);
}

.calendar-day.active {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
    box-shadow: 0 25px 60px rgba(10, 14, 47, 0.2);
}

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

.appointment-form label {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.appointment-form input,
.appointment-form textarea,
.appointment-form select {
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 0.9rem 1.2rem;
    background: var(--surface);
}

.appointment-form .appointment-hint {
    grid-column: span 2;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.appointment-form .btn {
    justify-self: flex-start;
}
.site-footer {
    padding: 2rem clamp(1.5rem, 6vw, 5rem) 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid var(--border);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-12px) scale(1.02); }
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

@keyframes sparkleBlink {
    0%, 100% { opacity: 0; transform: scale(0.6); }
    20% { opacity: 1; transform: scale(1); }
    40% { opacity: 0; transform: scale(0.6); }
}

@media (max-width: 900px) {
    .nav-panel {
        position: fixed;
        top: 0;
        right: 0;
        background: var(--page-bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        width: min(320px, 85vw);
        height: 100vh;
        transform: translate3d(calc(100% + 3rem), 0, 0);
        transition: transform 0.35s ease, opacity 0.35s ease;
        box-shadow: -20px 0 40px rgba(0, 0, 0, 0.08);
        opacity: 0;
        pointer-events: none;
        will-change: transform;
        z-index: 80;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .nav-links a {
        font-size: 1rem;
    }

    .nav-panel.open {
        transform: translate3d(0, 0, 0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
    }

    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 90;
    }

    .nav-close {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        border: none;
        background: transparent;
        color: var(--text-main);
        font-size: 2rem;
        line-height: 1;
        cursor: pointer;
    }

    .gallery-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .tile-a { grid-column: span 6; grid-row: span 3; }
    .tile-b { grid-column: span 3; grid-row: span 2; }
    .tile-c { grid-column: span 3; grid-row: span 3; }
    .tile-d { grid-column: span 2; grid-row: span 1; }
    .tile-e { grid-column: span 6; grid-row: span 4; }
    .tile-f { grid-column: span 4; grid-row: span 1; }
    .tile-g { grid-column: span 6; grid-row: span 3; }
    .tile-h { grid-column: span 6; grid-row: span 2; }
    .tile-i { grid-column: span 3; grid-row: span 2; }
    .tile-j { grid-column: span 6; grid-row: span 3; }
    .tile-k { grid-column: span 3; grid-row: span 2; }

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

    .contact-form label.full,
    .contact-form .btn {
        grid-column: span 1;
    }
}

@media (max-width: 600px) {
    .hero {
        padding-top: 1rem;
    }

    .hero-tags { letter-spacing: 0.1em; }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: minmax(180px, auto);
    }

    .tile-a,
    .tile-b,
    .tile-c,
    .tile-d,
    .tile-e,
    .tile-f,
    .tile-g,
    .tile-h,
    .tile-i,
    .tile-j,
    .tile-k {
        grid-column: span 2;
        grid-row: span 1;
    }

    .appointment-form .appointment-hint {
        grid-column: span 1;
    }

    .appointment-calendar {
        grid-template-columns: repeat(auto-fit, minmax(68px, 1fr));
        gap: 0.3rem;
    }

    .calendar-day {
        padding: 0.45rem;
        border-radius: 0.6rem;
    }

    .calendar-day .day-number {
        font-size: 1rem;
    }

    .calendar-day .day-name,
    .calendar-day .day-month {
        font-size: 0.65rem;
    }
}
