/* ============================================
   GABRY NEW STYLE — Hair Salon Website
   Design System: Luxury Modern Minimalist
   Mobile-first, touch-optimized
   ============================================ */

/* CSS Variables */
:root {
    --black: #0a0a0a;
    --black-soft: #111111;
    --white: #f9f9f9;
    --bone: #f4f0ec;
    --gold: #C5A059;
    --gold-light: #E0C585;
    --gray: #888888;
    --gray-light: #cccccc;
    --gray-dark: #333333;
    --overlay: rgba(10, 10, 10, 0.65);
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 999px;
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.2);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* ============================================
   CUSTOM CURSOR (desktop only)
   ============================================ */
.custom-cursor {
    position: fixed;
    top: 0; left: 0;
    width: 12px; height: 12px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: difference;
    opacity: 0;
}
.custom-cursor.active {
    width: 40px; height: 40px;
    background: transparent;
    border: 2px solid var(--gold);
    mix-blend-mode: normal;
}
@media (hover: none) {
    .custom-cursor { display: none; }
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--white);
    letter-spacing: 2px;
    animation: fadeUp 0.8s ease both;
}
.preloader-line {
    width: 120px; height: 2px;
    background: var(--gray-dark);
    margin: 1.5rem auto 0;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-pill);
}
.preloader-line::after {
    content: '';
    position: absolute;
    left: -100%; top: 0;
    width: 100%; height: 100%;
    background: var(--gold);
    animation: loadSlide 1.2s ease-in-out forwards;
}
@keyframes loadSlide { to { left: 100%; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================
   LAYOUT
   ============================================ */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 4rem 0; }
.section-header { margin-bottom: 2.5rem; text-align: center; }
.section-header.light { color: var(--white); }
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--black);
}
.section-header.light .section-title { color: var(--white); }
.section-subtitle { color: var(--gray); font-size: 1rem; margin-top: 0.5rem; }
.section-header.light .section-subtitle { color: var(--gray-light); }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-sm);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--white);
    letter-spacing: 1px;
    z-index: 1002;
}
.nav-menu {
    position: fixed;
    inset: 0;
    background: var(--black-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1001;
}
.nav-menu.open { transform: translateX(0); }
.nav-link {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 500;
    transition: color var(--transition);
}
.nav-link:hover { color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: 1rem; z-index: 1002; }
.nav-toggle {
    width: 32px; height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: var(--radius-pill);
    transition: 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

@media (min-width: 1024px) {
    .nav-menu {
        position: static;
        flex-direction: row;
        background: transparent;
        transform: none;
        gap: 2rem;
    }
    .nav-link { font-size: 0.9rem; }
    .nav-toggle { display: none; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
    touch-action: manipulation;
    min-height: 44px;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--white); color: var(--black); }
.btn-primary:hover { background: var(--gold); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { border: 1px solid var(--white); color: var(--white); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-prev { background: transparent; color: var(--gray); border: 1px solid var(--gray-light); }
.btn-prev:hover { border-color: var(--black); color: var(--black); }
.btn-next { background: var(--black); color: var(--white); }
.btn-next:disabled { opacity: 0.4; cursor: not-allowed; }
.btn-next:hover:not(:disabled) { background: var(--gold); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

/* ============================================
   FLOATING BOOKING BUTTON (Mobile)
   ============================================ */
.fab-booking {
    position: fixed;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 998;
    background: var(--gold);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 52px;
}
.fab-booking::before { content: '📅'; font-size: 1.1rem; }
.fab-booking:active { transform: translateX(-50%) scale(0.96); }
@media (min-width: 1024px) {
    .fab-booking { display: none; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../img/hero.jpg') center/cover no-repeat;
    will-change: transform;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.4), rgba(10,10,10,0.7));
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 1.25rem;
    max-width: 900px;
}
.hero-tagline {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero-tagline.revealed { opacity: 1; transform: translateY(0); }
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}
.hero-title .line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero-title .line.revealed { opacity: 1; transform: translateY(0); }
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero-sub.revealed { opacity: 1; transform: translateY(0); }
.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.hero-cta.revealed { opacity: 1; transform: translateY(0); }
@media (min-width: 640px) {
    .hero-cta { flex-direction: row; justify-content: center; }
}
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gray-light);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
}
.scroll-line { width: 1px; height: 40px; background: var(--gray); }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); } 40% { transform: translateX(-50%) translateY(-10px); } 60% { transform: translateX(-50%) translateY(-5px); } }

/* ============================================
   ABOUT
   ============================================ */
.about-grid { display: grid; gap: 3rem; align-items: center; }
.about-image { border-radius: var(--radius-md); overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.about-image:hover img { transform: scale(1.03); }
.about-text .section-title { margin-bottom: 1.25rem; }
.about-text p { color: var(--gray-dark); margin-bottom: 1rem; font-size: 1rem; }
.drop-cap::first-letter {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1;
    float: left;
    margin-right: 0.5rem;
    margin-top: -0.1em;
    color: var(--gold);
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--bone);
}
.stat { text-align: center; }
.stat-num { display: block; font-family: var(--font-display); font-size: 1.75rem; color: var(--gold); font-weight: 600; }
.stat-label { font-size: 0.75rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }
@media (min-width: 1024px) {
    .about-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   SERVICES
   ============================================ */
.services-tabs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
    scrollbar-width: none;
}
.services-tabs::-webkit-scrollbar { display: none; }
.tab-btn {
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    background: var(--bone);
    color: var(--gray-dark);
    transition: var(--transition);
    min-height: 44px;
}
.tab-btn.active { background: var(--black); color: var(--white); }
.tab-btn:hover:not(.active) { background: var(--gray-light); }
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.4s ease; }
.service-list { display: flex; flex-direction: column; gap: 1rem; }
.service-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid var(--bone);
    border-radius: var(--radius-md);
    transition: box-shadow var(--transition), transform var(--transition);
    cursor: pointer;
}
.service-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-info h4 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.25rem; }
.service-info p { font-size: 0.85rem; color: var(--gray); }
.service-meta { text-align: right; flex-shrink: 0; }
.price { display: block; font-weight: 700; color: var(--gold); font-size: 1.1rem; }
.time { font-size: 0.8rem; color: var(--gray); }

/* ============================================
   BOOKING — CRITICAL SECTION
   ============================================ */
.booking { background: var(--black); color: var(--white); position: relative; }
.booking-wrapper { max-width: 800px; margin: 0 auto; }

/* Stepper */
.booking-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    flex-shrink: 0;
}
.step-num {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    background: var(--gray-dark);
    color: var(--gray);
    transition: var(--transition);
}
.step.active .step-num { background: var(--gold); color: var(--white); }
.step.completed .step-num { background: var(--gold-light); color: var(--black); }
.step-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    white-space: nowrap;
}
.step.active .step-label { color: var(--gold); }
.step-line {
    flex: 1;
    min-width: 20px;
    height: 2px;
    background: var(--gray-dark);
    border-radius: var(--radius-pill);
    transition: background var(--transition);
}
.step-line.active { background: var(--gold); }
@media (max-width: 480px) {
    .step-label { display: none; }
    .step-line { min-width: 12px; }
}

/* Panels */
.booking-panel { display: none; animation: fadeIn 0.35s ease; }
.booking-panel.active { display: block; }
.panel-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}
.panel-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}
.panel-actions .btn { min-width: 120px; }

/* Service Grid (Step 1) */
.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
@media (min-width: 640px) {
    .service-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}
.service-card {
    background: var(--black-soft);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    padding: 1.25rem 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-height: 120px;
    justify-content: center;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.service-card:hover { border-color: var(--gray-dark); }
.service-card.selected { border-color: var(--gold); background: rgba(197, 160, 89, 0.08); }
.service-card .icon { font-size: 1.75rem; line-height: 1; }
.service-card .name { font-size: 0.85rem; font-weight: 600; }
.service-card .meta { font-size: 0.7rem; color: var(--gray); }

/* Pro Grid (Step 2) */
.pro-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}
@media (min-width: 640px) {
    .pro-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
}
.pro-card {
    background: var(--black-soft);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.pro-card:hover { border-color: var(--gray-dark); }
.pro-card.selected { border-color: var(--gold); background: rgba(197, 160, 89, 0.08); }
.pro-avatar {
    width: 64px; height: 64px;
    border-radius: 50%;
    margin: 0 auto 0.75rem;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--gray-dark);
    transition: border-color var(--transition);
}
.pro-card.selected .pro-avatar { border-color: var(--gold); }
.pro-name { font-weight: 600; font-size: 0.9rem; }
.pro-role { font-size: 0.75rem; color: var(--gray); }

/* Calendar (Step 3) */
.datetime-picker {
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .datetime-picker { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
.calendar-wrapper { background: var(--black-soft); border-radius: var(--radius-md); padding: 1rem; }
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.calendar-header span { font-weight: 600; font-size: 0.9rem; }
.cal-nav {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--gray-dark);
    color: var(--white);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
    min-height: 44px;
    min-width: 44px;
}
.cal-nav:hover { background: var(--gold); }
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
}
.cal-day-header {
    text-align: center;
    font-size: 0.65rem;
    color: var(--gray);
    padding: 0.4rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    min-height: 40px;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.cal-day:hover:not(.disabled):not(.selected) { background: var(--gray-dark); }
.cal-day.selected { background: var(--gold); color: var(--black); font-weight: 700; }
.cal-day.disabled { color: var(--gray-dark); cursor: not-allowed; opacity: 0.5; }
.cal-day.today { border: 1px solid var(--gold); }

/* Slots */
.slots-wrapper { background: var(--black-soft); border-radius: var(--radius-md); padding: 1rem; }
.slots-title { font-size: 0.9rem; font-weight: 600; margin-bottom: 1rem; }
.slots-title span { color: var(--gold); font-weight: 400; }
.slots-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    max-height: 240px;
    overflow-y: auto;
}
.slot-chip {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    background: var(--gray-dark);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    min-height: 40px;
    min-width: 72px;
    text-align: center;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.slot-chip:hover:not(.selected) { background: #555; }
.slot-chip.selected { background: var(--gold); color: var(--black); font-weight: 700; border-color: var(--gold-light); }
.slots-placeholder { color: var(--gray); font-size: 0.85rem; text-align: center; width: 100%; padding: 1rem; }

/* Form (Step 4) */
.form-grid {
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 640px) {
    .form-grid { grid-template-columns: 1fr 1fr; }
    .form-group.full { grid-column: span 2; }
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.8rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }
.form-group input,
.form-group textarea {
    background: var(--black-soft);
    border: 1px solid var(--gray-dark);
    border-radius: var(--radius-sm);
    padding: 0.875rem 1rem;
    color: var(--white);
    font-size: 1rem; /* Prevents iOS zoom */
    transition: border-color var(--transition), box-shadow var(--transition);
    width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #555; }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group .error-msg { font-size: 0.75rem; color: #ff6b6b; display: none; margin-top: 0.25rem; }
.form-group.invalid .error-msg { display: block; }
.form-group.invalid input { border-color: #ff6b6b; }

/* Summary (Step 5) */
.summary-card {
    background: var(--black-soft);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 480px;
    margin: 0 auto;
}
.summary-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; border-bottom: 1px solid var(--gray-dark); padding-bottom: 0.5rem; }
.summary-row:last-child { border-bottom: none; }
.summary-row span { color: var(--gray); }
.summary-row strong { color: var(--white); font-weight: 600; }

/* Success */
.booking-success {
    display: none;
    text-align: center;
    animation: fadeIn 0.5s ease;
}
.booking-success.active { display: block; }
.success-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.booking-success h3 { font-family: var(--font-display); font-size: 1.75rem; margin-bottom: 0.5rem; }
.booking-success p { color: var(--gray); margin-bottom: 1.5rem; }

/* ============================================
   TEAM
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .team-grid { grid-template-columns: repeat(4, 1fr); }
}
.team-card { text-align: center; }
.team-photo {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1rem;
    aspect-ratio: 3/4;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-card h4 { font-family: var(--font-display); font-size: 1.1rem; }
.team-role { font-size: 0.8rem; color: var(--gold); margin-bottom: 0.5rem; }
.team-card p { font-size: 0.85rem; color: var(--gray); }

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio-filters {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.filter-btn {
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    background: var(--bone);
    color: var(--gray-dark);
    transition: var(--transition);
    min-height: 40px;
}
.filter-btn.active { background: var(--black); color: var(--white); }
.filter-btn:hover:not(.active) { background: var(--gray-light); }
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}
@media (min-width: 768px) {
    .portfolio-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
.portfolio-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; transition: transform 0.5s ease; }
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-item.hidden-item { display: none; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
@media (min-width: 768px) {
    .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial-card {
    background: var(--bone);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-card p { font-size: 0.95rem; color: var(--gray-dark); margin-bottom: 1rem; font-style: italic; }
.testimonial-author { font-weight: 600; font-size: 0.85rem; }
.testimonials-badge { text-align: center; margin-top: 1rem; color: var(--gray); font-size: 0.85rem; }

/* ============================================
   PRODUCTS
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    text-align: center;
}
@media (min-width: 768px) {
    .products-grid { grid-template-columns: repeat(6, 1fr); }
}
.product-logo {
    background: var(--bone);
    border-radius: var(--radius-md);
    padding: 1.5rem 1rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gray-dark);
    letter-spacing: 1px;
    transition: transform var(--transition), box-shadow var(--transition);
}
.product-logo:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--bone); }
.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem 0;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
    width: 20px; height: 20px;
    position: relative;
    flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    transition: transform 0.3s ease;
}
.faq-icon::before { width: 12px; height: 2px; top: 9px; left: 4px; }
.faq-icon::after { width: 2px; height: 12px; top: 4px; left: 9px; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 1.25rem; }
.faq-answer p { color: var(--gray); font-size: 0.95rem; }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
    display: grid;
    gap: 3rem;
    align-items: start;
}
@media (min-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-info .section-title { margin-bottom: 1rem; }
.contact-info > p { color: var(--gray); margin-bottom: 2rem; }
.contact-list { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { font-size: 1.25rem; line-height: 1; margin-top: 0.1rem; }
.contact-list strong { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.25rem; }
.contact-list a { color: var(--black); border-bottom: 1px solid var(--gold); transition: color var(--transition); }
.contact-list a:hover { color: var(--gold); }
.social-links { display: flex; gap: 0.75rem; }
.social-link {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    transition: background var(--transition), transform var(--transition);
}
.social-link:hover { background: var(--gold); transform: translateY(-2px); }
.contact-map { border-radius: var(--radius-md); overflow: hidden; min-height: 320px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 320px; display: block; border: none; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--black); color: var(--white); padding-top: 4rem; overflow: hidden; }
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--gray-dark);
}
@media (min-width: 768px) {
    .footer-grid { grid-template-columns: 2fr repeat(3, 1fr); }
}
.footer-logo { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1rem; color: var(--gold); }
.footer-brand p { color: var(--gray); font-size: 0.9rem; }
.footer-col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; color: var(--gray-light); }
.footer-col a, .footer-col p { display: block; color: var(--gray); font-size: 0.85rem; margin-bottom: 0.5rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { padding: 1.5rem 0; text-align: center; color: var(--gray); font-size: 0.8rem; }
.footer-big-logo {
    font-family: var(--font-display);
    font-size: clamp(3rem, 12vw, 10rem);
    color: var(--black-soft);
    text-align: center;
    line-height: 1;
    padding: 2rem 0 4rem;
    user-select: none;
    pointer-events: none;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Smooth magnetic button hover */
.magnetic-btn { position: relative; overflow: hidden; }
.magnetic-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255,255,255,0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.magnetic-btn:hover::after { opacity: 1; }
