/* ==========================================================================
   VIP Hair Lounge — styles.css
   Premium kapper & barber Leuven · gold-on-black luxury theme
   ========================================================================== */

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

:root {
    --gold: #d4af37;
    --gold-light: #f0d97a;
    --gold-dark: #b8941f;
    --gold-soft: rgba(212, 175, 55, 0.15);
    --black: #0a0a0a;
    --black-soft: #141414;
    --black-card: #181818;
    --black-elevated: #1f1f1f;
    --border: rgba(212, 175, 55, 0.2);
    --border-strong: rgba(212, 175, 55, 0.4);
    --white: #ffffff;
    --text: #f5f5f5;
    --text-muted: #b8b8b8;
    --text-dim: #888888;

    --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.18);

    --container: 1200px;
    --radius: 4px;
    --radius-lg: 8px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Base
   ========================================================================== */

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

body {
    font-family: var(--sans);
    font-weight: 300;
    color: var(--text);
    background: var(--black);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
svg,
iframe {
    max-width: 100%;
    display: block;
}

img {
    height: auto;
}

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--serif);
    font-weight: 600;
    line-height: 1.2;
    color: var(--white);
    letter-spacing: 0.02em;
}

p {
    color: var(--text-muted);
}

strong {
    color: var(--text);
    font-weight: 500;
}

::selection {
    background: var(--gold);
    color: var(--black);
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--gold);
    color: var(--black);
    padding: 12px 20px;
    font-weight: 600;
    z-index: 10000;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 0;
    color: var(--black);
}

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

/* Section base */
.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 72px;
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
}

.title-underline {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 24px;
    position: relative;
}

.title-underline::before,
.title-underline::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: translateY(-50%) rotate(45deg);
}

.title-underline::before {
    left: -12px;
}

.title-underline::after {
    right: -12px;
}

.section-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.97);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
}

.nav-logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text);
    position: relative;
    padding: 4px 0;
}

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

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

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

.nav-cta {
    background: var(--gold);
    color: var(--black) !important;
    padding: 12px 24px;
    border-radius: var(--radius);
    transition: all var(--transition);
}

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

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--gold);
    transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.85) 70%, var(--black) 100%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.7) 0%, transparent 30%, transparent 60%, var(--black) 100%);
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top, rgba(212, 175, 55, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at bottom, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.hero-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero-ornament .line {
    width: 60px;
    height: 1px;
    background: var(--gold);
    display: block;
}

.hero-eyebrow {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #f0d97a 0%, #d4af37 50%, #b8941f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    color: var(--text);
    margin-bottom: 16px;
    font-weight: 300;
}

.hero-subtitle strong {
    color: var(--gold);
    font-weight: 500;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 24px;
    height: 40px;
    border: 1px solid var(--gold);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.hero-scroll span {
    width: 2px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* ==========================================================================
   About
   ========================================================================== */

.about-section {
    background: var(--black);
}

.about-content {
    max-width: 820px;
    margin: 0 auto 72px;
    text-align: center;
}

.lead-text {
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 20px;
}

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

.feature-card {
    background: var(--black-card);
    border: 1px solid var(--border);
    padding: 48px 32px;
    text-align: center;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.feature-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold-soft);
    color: var(--gold);
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--white);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Team
   ========================================================================== */

.team-section {
    background: var(--black-soft);
    position: relative;
}

.team-section::before,
.team-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.team-section::before { top: 0; }
.team-section::after { bottom: 0; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}

.team-card {
    background: var(--black-card);
    border: 1px solid var(--border);
    padding: 48px 32px;
    text-align: center;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.team-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-gold);
}

.team-card h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.team-role {
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ==========================================================================
   Services
   ========================================================================== */

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

.services-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-column {
    background: var(--black-card);
    border: 1px solid var(--border);
    padding: 56px 48px;
    border-radius: var(--radius-lg);
    position: relative;
}

.service-column-header {
    text-align: center;
    margin-bottom: 40px;
}

.service-column-header h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.column-divider {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto;
    position: relative;
}

.column-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 5px;
    height: 5px;
    background: var(--gold);
    border: 1px solid var(--black);
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.price-list li {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.12);
    transition: all var(--transition);
}

.price-list li:hover {
    border-bottom-color: var(--border-strong);
}

.price-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.price-name {
    color: var(--text);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.price-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(212, 175, 55, 0.25);
    margin-bottom: 6px;
    min-width: 16px;
}

.price-value {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 600;
    flex-shrink: 0;
}

.services-cta {
    text-align: center;
    margin-top: 64px;
}

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery-section {
    background: var(--black-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    aspect-ratio: 3 / 2;
    background: var(--black-card);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10, 10, 10, 0.7) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

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

.gallery-item:hover {
    border-color: var(--gold);
}

/* ==========================================================================
   Why
   ========================================================================== */

.why-section {
    background: var(--black);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.why-item {
    padding: 32px;
    border-left: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
}

.why-item:hover {
    border-left-color: var(--gold);
    background: var(--black-card);
}

.why-number {
    font-family: var(--serif);
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1;
}

.why-item h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.why-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-section {
    background: var(--black-soft);
    border-top: 1px solid var(--border);
}

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

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

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-soft);
    border: 1px solid var(--border-strong);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--white);
    font-family: var(--sans);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.contact-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-item a {
    color: var(--text-muted);
}

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

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 4px;
}

.hours-table th,
.hours-table td {
    text-align: left;
    padding: 6px 0;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
    border-bottom: 1px dashed rgba(212, 175, 55, 0.1);
}

.hours-table th {
    width: 110px;
    color: var(--text);
}

.hours-table tr:last-child th,
.hours-table tr:last-child td {
    border-bottom: none;
}

.cta-box {
    margin-top: 16px;
    padding: 32px;
    background: var(--black-card);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-box h3 {
    color: var(--gold);
    margin-bottom: 12px;
    font-family: var(--serif);
    font-size: 1.5rem;
    text-transform: none;
    letter-spacing: 0;
}

.cta-box p {
    margin-bottom: 20px;
}

.cta-box .btn {
    width: 100%;
}

.contact-map {
    height: 100%;
}

.map-container {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--black-card);
    height: 100%;
    min-height: 500px;
    filter: grayscale(0.3) contrast(1.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-section {
    background: var(--black);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    max-width: 980px;
    margin: 0 auto;
}

.faq-item {
    background: var(--black-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    transition: all var(--transition);
}

.faq-item[open],
.faq-item:hover {
    border-color: var(--border-strong);
}

.faq-item summary {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    color: var(--gold);
    font-size: 1.5rem;
    font-family: var(--sans);
    transition: transform var(--transition);
    flex-shrink: 0;
    line-height: 1;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background: var(--black-soft);
    border-top: 1px solid var(--border);
    padding: 80px 0 24px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-section h3 {
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-section p,
.footer-section li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.7;
}

.footer-section a {
    color: var(--text-muted);
}

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

.footer-logo {
    height: 80px;
    width: auto;
    max-width: 80px;
    margin-bottom: 20px;
}

.footer-brand p {
    margin-bottom: 24px;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin: 0;
}

.footer-link {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-link:hover {
    color: var(--gold-light);
}

/* ==========================================================================
   Back to Top
   ========================================================================== */

.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-gold);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold-light);
    transform: translateY(-4px);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
    .section { padding: 96px 0; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .services-columns { gap: 32px; }
    .service-column { padding: 40px 32px; }
}

@media (max-width: 860px) {
    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--black);
        border-left: 1px solid var(--border);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        padding: 80px 40px;
        transition: right var(--transition);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active { right: 0; }

    .nav-link {
        font-size: 1rem;
    }

    .nav-cta {
        margin-top: 16px;
    }

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

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

    .map-container,
    .map-container iframe {
        min-height: 360px;
    }
}

@media (max-width: 640px) {
    .container { padding: 0 20px; }
    .section { padding: 72px 0; }
    .section-header { margin-bottom: 56px; }

    .hero { padding: 100px 20px 60px; }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-buttons .btn { width: 100%; }

    .feature-card,
    .team-card { padding: 36px 24px; }

    .service-column { padding: 32px 24px; }

    .price-name { font-size: 0.9rem; }
    .price-value { font-size: 1.15rem; }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .why-item { padding: 24px; }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 420px) {
    .hero-ornament .line { width: 36px; }
    .section-title { font-size: 1.8rem; }
    .cta-box { padding: 24px; }
}

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

/* Focus visible */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 2px;
}
