/* ═══════════════════════════════════════════════════════════
   MELISA PANDA — NAIL TRAINER
   Beige / White / Black / Gold
═══════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Inter', system-ui, sans-serif; font-size: 16px; line-height: 1.6; color: var(--black); background: var(--white); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

:root {
    --black:       #0C0B0A;
    --black-soft:  #1A1816;
    --white:       #FAFAF8;
    --beige:       #F4EBE0;
    --beige-mid:   #E8D8C8;
    --beige-dark:  #C8B5A0;
    --gold:        #B8914A;
    --gold-light:  #D4B98A;
    --gold-pale:   #F0E4D0;
    --ff-serif: 'Cormorant Garamond', Georgia, serif;
    --ff-sans:  'Inter', system-ui, sans-serif;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --nav-h: 76px;
    --max-w: 1360px;
}

/* ── UTILITIES ────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; }

.section-label {
    display: inline-block; font-size: 11px; font-weight: 500;
    letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.section-label.light { color: var(--gold-light); }

.section-heading {
    font-family: var(--ff-serif); font-size: clamp(40px, 5vw, 68px);
    font-weight: 500; line-height: 1.1; letter-spacing: -0.02em;
    color: var(--black); margin-bottom: 40px;
}
.section-heading.light { color: var(--white); }
.section-heading em { font-style: italic; font-weight: 300; }

.section-sub { font-size: 17px; color: #888; max-width: 480px; margin-bottom: 60px; line-height: 1.7; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; font-size: 13px; font-weight: 500;
    letter-spacing: 1.5px; text-transform: uppercase;
    transition: all 0.3s var(--ease); white-space: nowrap;
}
.btn-dark { background: var(--black); color: var(--white); border: 1px solid var(--black); }
.btn-dark:hover { background: var(--black-soft); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-outline-dark { background: transparent; color: var(--black); border: 1px solid var(--black); }
.btn-outline-dark:hover { background: var(--gold); color: var(--white); border-color: var(--gold); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--white); border: 1px solid var(--gold); }
.btn-gold:hover { background: #9A7839; border-color: #9A7839; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,145,74,0.3); }
.btn-full { width: 100%; justify-content: center; }

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ── HERO ANIMATIONS ──────────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes scrollAnim { 0% { left: -100%; } 100% { left: 100%; } }

/* ════════════════════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════════════════════ */
#navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    height: var(--nav-h); display: flex; align-items: center;
    justify-content: space-between; padding: 0 48px;
    transition: background 0.4s, box-shadow 0.4s;
}
#navbar.scrolled { background: rgba(250,250,248,0.96); backdrop-filter: blur(12px); box-shadow: 0 1px 0 rgba(0,0,0,0.08); }

/* Dark-hero pages: invert nav elements so they're visible on dark background */
.page-has-dark-hero #navbar:not(.scrolled) .nav-logo-img { filter: brightness(0) invert(1); }
.page-has-dark-hero #navbar:not(.scrolled) .hamburger span { background: var(--white); }

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-img { height: 36px; width: auto; display: block; transition: opacity 0.2s; }
.nav-logo-img:hover { opacity: 0.8; }
.footer-logo-img { height: 68px; width: auto; display: block; filter: brightness(0) invert(1); opacity: 0.85; }
.logo-mark {
    width: 40px; height: 40px; border: 1.5px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--ff-serif); font-size: 16px; font-weight: 600;
    letter-spacing: 1px; color: var(--gold); flex-shrink: 0;
}
.logo-name { font-family: var(--ff-serif); font-size: 17px; font-weight: 500; letter-spacing: 0.5px; color: var(--black); }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 12px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--black); position: relative; transition: color 0.2s; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease); }
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { padding: 10px 22px !important; border: 1px solid var(--gold) !important; color: var(--gold) !important; transition: all 0.3s !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--white) !important; }
.nav-cta::after { display: none !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 4px 0; }
.hamburger span { display: block; height: 1.5px; background: var(--black); transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.mobile-menu {
    position: fixed; top: 0; right: 0; width: min(320px, 80vw); height: 100vh;
    background: var(--white); z-index: 300; padding: 80px 40px 40px;
    display: flex; flex-direction: column; transform: translateX(100%);
    transition: transform 0.4s var(--ease); box-shadow: -20px 0 60px rgba(0,0,0,0.15);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-close { position: absolute; top: 24px; right: 24px; font-size: 20px; color: var(--black); }
.mobile-menu ul { margin-bottom: auto; }
.mobile-menu li { border-bottom: 1px solid var(--beige-mid); }
.mob-link { display: block; padding: 18px 0; font-family: var(--ff-serif); font-size: 26px; font-weight: 400; color: var(--black); transition: color 0.2s, padding-left 0.2s; }
.mob-link:hover { color: var(--gold); padding-left: 8px; }
.mob-social { font-size: 13px; color: var(--gold); letter-spacing: 1px; }
.mob-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 250; opacity: 0; pointer-events: none; transition: opacity 0.4s; }
.mob-overlay.show { opacity: 1; pointer-events: all; }

/* ════════════════════════════════════════════════════════════
   HERO — exactly one viewport height
════════════════════════════════════════════════════════════ */
.hero {
    display: grid;
    grid-template-columns: 56fr 44fr;
    height: 100vh;
    overflow: hidden;
    padding-top: var(--nav-h);
}

.hero-left {
    background: var(--white);
    display: flex; align-items: center;
    padding: 60px 64px 60px 80px;
    position: relative;
    border-right: 1px solid var(--beige-mid);
    overflow: hidden;
}
.hero-inner { max-width: 580px; }

.hero-label { font-size: 11px; font-weight: 500; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; animation: fadeUp 0.7s 0.15s both; }
.hero-heading { font-family: var(--ff-serif); line-height: 0.88; letter-spacing: -0.03em; margin-bottom: 36px; animation: fadeUp 0.9s 0.3s both; }
.h-solid { display: block; font-size: clamp(64px, 10vw, 140px); font-weight: 600; color: var(--black); }
.h-outline { display: block; font-size: clamp(64px, 10vw, 140px); font-weight: 600; color: transparent; -webkit-text-stroke: 2px var(--black); }
.hero-rule { width: 72px; height: 2px; background: var(--gold); margin-bottom: 28px; animation: fadeUp 0.7s 0.5s both; }
.hero-sub { font-size: 16px; line-height: 1.75; color: #555; margin-bottom: 36px; animation: fadeUp 0.7s 0.6s both; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp 0.7s 0.75s both; }

.hero-scroll { position: absolute; bottom: 32px; left: 80px; display: flex; align-items: center; gap: 16px; animation: fadeUp 0.7s 1s both; }
.hero-scroll span { font-size: 10px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--beige-dark); }
.scroll-bar { width: 48px; height: 1px; background: var(--beige-mid); position: relative; overflow: hidden; }
.scroll-dot { position: absolute; left: -100%; top: -2px; width: 100%; height: 4px; background: var(--gold); animation: scrollAnim 2s 1.5s ease-in-out infinite; }

.hero-right { position: relative; overflow: hidden; height: 100%; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; object-position: center 75%; }
.hero-photo-accent { position: absolute; bottom: 40px; right: -12px; width: 60%; height: 55%; border: 1.5px solid var(--gold); pointer-events: none; opacity: 0.5; }
.hero-col-img { display: none; }

/* ════════════════════════════════════════════════════════════
   MARQUEE
════════════════════════════════════════════════════════════ */
.marquee-wrap { background: var(--black); overflow: hidden; padding: 20px 0; }
.marquee-track { display: flex; width: max-content; animation: marqueeScroll 28s linear infinite; }
.marquee-inner { display: flex; align-items: center; white-space: nowrap; }
.marquee-inner span { font-family: var(--ff-serif); font-size: 22px; font-weight: 400; letter-spacing: 4px; color: var(--white); padding: 0 32px; }
.marquee-inner em { color: var(--gold); font-style: normal; font-size: 18px; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

/* ════════════════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════════════════ */
.about { background: var(--beige); padding: 120px 0 80px; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 72px; }

.about-photos { position: relative; height: 560px; }
.about-photo-main { position: absolute; top: 0; left: 0; width: 78%; height: 470px; overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,0.15); }
.about-photo-main img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-photo-accent { position: absolute; bottom: 0; right: 0; width: 54%; height: 300px; overflow: hidden; border: 6px solid var(--beige); box-shadow: 0 16px 48px rgba(0,0,0,0.12); }
.about-photo-accent img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.about-text p { color: #555; line-height: 1.8; font-size: 16px; margin-bottom: 20px; }
.about-text p:last-child { margin-bottom: 0; }

/* Stats — symmetrical 3 columns */
.about-stats {
    display: flex;
    align-items: center;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--beige-mid);
}
.stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.stat-number-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    height: 60px;
    line-height: 1;
}
.stat-n { font-family: var(--ff-serif); font-size: 52px; font-weight: 600; color: var(--black); letter-spacing: -0.02em; }
.stat-plus { font-family: var(--ff-serif); font-size: 32px; color: var(--gold); font-weight: 400; }
.stat-l { display: block; font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: #888; margin-top: 8px; }
.stat-sep { width: 1px; height: 56px; background: var(--beige-mid); flex-shrink: 0; }

/* Infinite photo carousel */
.photo-carousel { overflow: hidden; margin-top: 0; }
.carousel-track { display: flex; animation: carouselAnim 24s linear infinite; }
.carousel-track:hover { animation-play-state: paused; }
.strip-item { width: 220px; height: 290px; flex-shrink: 0; margin-right: 16px; overflow: hidden; }
.strip-item img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.5s var(--ease); display: block; }
.strip-item:hover img { transform: scale(1.04); }
@keyframes carouselAnim { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ════════════════════════════════════════════════════════════
   COURSES — homepage teaser
════════════════════════════════════════════════════════════ */
.courses-home { background: var(--black-soft); padding: 120px 0; }
.courses-header { margin-bottom: 56px; }

.cp-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px; align-items: stretch; }
.cp-left { display: flex; flex-direction: column; gap: 24px; }
.cp-left .cp-card { flex: 1; }
.cp-right { overflow: hidden; border: 1px solid #333; box-shadow: 0 24px 80px rgba(0,0,0,0.4); }
.cp-right img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; background: #0f0e0c; }

.cp-card {
    background: #161410;
    border: 1px solid #2A2520;
    padding: 44px 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.3s;
}
.cp-card:hover { border-color: #3A3028; }
.cp-bg-num {
    position: absolute; top: -10px; right: 20px;
    font-family: var(--ff-serif); font-size: 120px; font-weight: 700;
    color: rgba(255,255,255,0.03); line-height: 1;
    pointer-events: none; user-select: none; letter-spacing: -4px;
}
.cp-tag { font-size: 10px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); border: 1px solid #3A3028; padding: 5px 12px; align-self: flex-start; }
.cp-title { font-family: var(--ff-serif); font-size: 44px; font-weight: 600; color: var(--white); line-height: 1; letter-spacing: -0.02em; }
.cp-sub { font-size: 13px; color: #777; line-height: 1.5; }
.cp-meta { display: flex; align-items: center; gap: 20px; margin-top: 4px; }
.cp-price { font-family: var(--ff-serif); font-size: 26px; color: var(--gold-light); font-weight: 500; }
.cp-avans { font-size: 12px; color: #666; letter-spacing: 0.5px; }

.courses-full-cta { text-align: center; margin-bottom: 32px; }

.coming-soon { border: 1px dashed #3A3028; padding: 28px 36px; display: flex; align-items: center; gap: 24px; }
.cs-label { font-size: 10px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold); padding: 6px 14px; white-space: nowrap; }
.coming-soon p { font-family: var(--ff-serif); font-size: 22px; font-weight: 400; color: #888; font-style: italic; }

/* ════════════════════════════════════════════════════════════
   COURSES — full page (cursuri.html)
════════════════════════════════════════════════════════════ */
.courses-page { background: var(--black-soft); padding: 140px 0 100px; }
.courses-page .courses-header { margin-bottom: 64px; }

.courses-page .courses-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 40px; align-items: stretch; }

.course-card {
    background: #161410;
    border: 1px solid #2A2520;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s;
}
.course-card:hover { border-color: #3A3028; }

.course-num { position: absolute; top: -10px; right: 24px; font-family: var(--ff-serif); font-size: 120px; font-weight: 700; color: rgba(255,255,255,0.03); line-height: 1; pointer-events: none; user-select: none; letter-spacing: -4px; }

/* course-body uses flex-column + flex:1 so "includes" block always aligns */
.course-body {
    padding: 48px 40px 40px;
    position: relative; z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.course-tag { display: inline-block; font-size: 10px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); border: 1px solid #3A3028; padding: 6px 14px; margin-bottom: 24px; }
.course-title { font-family: var(--ff-serif); font-size: 48px; font-weight: 600; color: var(--white); line-height: 1; margin-bottom: 10px; letter-spacing: -0.02em; }
.course-subtitle { font-size: 13px; color: #888; margin-bottom: 36px; line-height: 1.5; }

.price-block { background: rgba(255,255,255,0.03); border: 1px solid #2A2520; padding: 24px 28px; margin-bottom: 36px; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #222; }
.price-row:last-child { border-bottom: none; padding-bottom: 0; }
.price-row:first-child { padding-top: 0; }
.price-lbl { font-size: 12px; color: #777; letter-spacing: 0.5px; }
.price-val { font-family: var(--ff-serif); font-size: 20px; font-weight: 500; color: var(--gold-light); letter-spacing: -0.01em; white-space: nowrap; flex-shrink: 0; }

.curriculum { margin-bottom: 32px; flex: 1; }
.curriculum h4, .includes h4 { font-size: 10px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.curriculum ul { display: flex; flex-direction: column; gap: 14px; }
.curriculum li { display: flex; gap: 16px; align-items: flex-start; }
.d-num { font-family: var(--ff-serif); font-size: 22px; font-weight: 600; color: rgba(184,145,74,0.4); line-height: 1.3; flex-shrink: 0; min-width: 28px; }
.curriculum li span:last-child { font-size: 14px; color: #aaa; line-height: 1.6; }
.curriculum li strong { color: #ccc; }

.includes { margin-bottom: 36px; }
.includes p { font-size: 13px; color: #777; line-height: 1.6; margin-bottom: 16px; }
.tools { display: flex; flex-wrap: wrap; gap: 8px; }
.tools span { font-size: 11px; color: #aaa; border: 1px solid #2A2520; padding: 5px 12px; letter-spacing: 0.5px; }

.course-imgs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; border-top: 1px solid #2A2520; }
.course-imgs img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: filter 0.3s; filter: brightness(0.85) saturate(0.9); }
.course-imgs img:hover { filter: brightness(1) saturate(1); }

.avans-note { display: flex; align-items: flex-start; gap: 16px; padding: 24px 28px; background: rgba(184,145,74,0.05); border-left: 3px solid var(--gold); }
.avans-icon { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.avans-note p { font-size: 14px; color: #888; line-height: 1.7; }
.avans-note strong { color: #bbb; }

/* ════════════════════════════════════════════════════════════
   GALLERY
════════════════════════════════════════════════════════════ */
.gallery { background: var(--white); padding: 120px 0; }

.gal-filters { display: flex; gap: 8px; margin-bottom: 48px; }
.gal-btn { font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; padding: 10px 22px; border: 1px solid var(--beige-mid); color: #888; transition: all 0.25s; background: transparent; }
.gal-btn:hover, .gal-btn.active { background: var(--black); border-color: var(--black); color: var(--white); }

.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gal-item { position: relative; overflow: hidden; aspect-ratio: 3/4; cursor: pointer; }
.gal-item.hidden { display: none; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gal-item:hover img { transform: scale(1.06); }
.gal-ov { position: absolute; inset: 0; background: rgba(12,11,10,0.5); display: flex; align-items: flex-end; padding: 20px; opacity: 0; transition: opacity 0.3s; }
.gal-item:hover .gal-ov { opacity: 1; }
.gal-ov span { font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); }

/* ── Lightbox ─────────────────────────────────────────────── */
.lightbox {
    position: fixed; inset: 0;
    background: rgba(10,9,8,0.96);
    z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lb-img-wrap { max-width: 88vw; max-height: 90vh; display: flex; align-items: center; justify-content: center; }
.lb-img-wrap img { max-width: 100%; max-height: 90vh; object-fit: contain; display: block; }
.lb-close { position: absolute; top: 24px; right: 32px; font-size: 28px; color: #fff; opacity: 0.6; transition: opacity 0.2s; padding: 8px; }
.lb-close:hover { opacity: 1; }
.lb-prev, .lb-next { position: absolute; top: 50%; transform: translateY(-50%); font-size: 56px; color: #fff; opacity: 0.4; padding: 20px; transition: opacity 0.2s; }
.lb-prev { left: 12px; }
.lb-next { right: 12px; }
.lb-prev:hover, .lb-next:hover { opacity: 1; }

/* ════════════════════════════════════════════════════════════
   REVIEWS — text cards
════════════════════════════════════════════════════════════ */
.reviews { background: var(--beige); padding: 120px 0; }

.rev-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 48px; }

.rev-card {
    background: var(--white);
    padding: 40px 32px 32px;
    border: 1px solid var(--beige-mid);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.rev-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }

.rev-quote-mark {
    font-family: var(--ff-serif);
    font-size: 88px; line-height: 1;
    color: var(--gold); opacity: 0.2;
    position: absolute; top: 12px; left: 24px;
    pointer-events: none;
}
.rev-text {
    font-family: var(--ff-serif);
    font-size: 16px; line-height: 1.8;
    color: #444; font-style: italic;
    margin-top: 36px;
    flex: 1;
    position: relative; z-index: 1;
}
.rev-author { display: flex; align-items: center; gap: 14px; margin-top: 24px; }
.rev-line { width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }
.rev-author span { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #999; }

.rev-see-all { text-align: center; }

/* Reviews page — all cards */
.reviews-page { background: var(--beige); padding: 140px 0 100px; }
.rev-all-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ════════════════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════════════════ */
.contact { background: var(--black-soft); padding: 120px 0; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-intro { font-size: 16px; color: #888; line-height: 1.8; margin-bottom: 48px; max-width: 420px; }

.contact-links { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.c-link { display: flex; align-items: center; gap: 16px; padding: 20px 24px; border: 1px solid #2A2520; background: rgba(255,255,255,0.02); transition: border-color 0.3s, background 0.3s; }
.c-link:hover { border-color: var(--gold); background: rgba(184,145,74,0.04); }
.c-icon { width: 36px; height: 36px; border: 1px solid #3A3028; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-icon svg { width: 18px; height: 18px; color: var(--gold); fill: var(--gold); stroke: none; }
.c-icon svg[stroke] { fill: none; stroke: var(--gold); }
.c-lbl { display: block; font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: #666; margin-bottom: 3px; }
.c-val { display: block; font-size: 15px; color: var(--white); letter-spacing: 0.3px; }
.contact-note { font-size: 13px; color: #666; line-height: 1.7; border-top: 1px solid #222; padding-top: 24px; }
.contact-note strong { color: var(--gold); }

.form-wrap { background: rgba(255,255,255,0.02); border: 1px solid #2A2520; padding: 48px 40px; }
.f-group { margin-bottom: 24px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.f-row .f-group { margin-bottom: 0; }
label { display: block; font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: #666; margin-bottom: 10px; }
input, textarea, select { width: 100%; background: rgba(255,255,255,0.04); border: 1px solid #2A2520; color: var(--white); font-family: var(--ff-sans); font-size: 15px; padding: 14px 18px; outline: none; transition: border-color 0.25s; -webkit-appearance: none; appearance: none; }
input::placeholder, textarea::placeholder { color: #555; }
input:focus, textarea:focus, select:focus { border-color: var(--gold); }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; padding-right: 40px; cursor: pointer; }
select option { background: #1A1816; color: var(--white); }
textarea { resize: vertical; min-height: 120px; }
.form-feedback { padding: 16px 20px; font-size: 14px; margin-top: 16px; text-align: center; }
.form-ok { background: rgba(184,145,74,0.08); border: 1px solid rgba(184,145,74,0.3); color: var(--gold-light); }
.form-err { background: rgba(200,50,50,0.06); border: 1px solid rgba(200,50,50,0.2); color: #c88; }

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.footer { background: var(--black); border-top: 1px solid #1E1B18; padding: 44px 0 28px; }
.footer-top { display: flex; align-items: center; justify-content: center; gap: 40px; padding-bottom: 32px; border-bottom: 1px solid #1E1B18; margin-bottom: 20px; flex-wrap: wrap; }
.footer .logo-name { color: var(--white); }
.footer-nav { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { font-size: 12px; font-weight: 400; letter-spacing: 1.5px; text-transform: uppercase; color: #666; transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-ig-icon { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid #2A2520; color: var(--gold); transition: border-color 0.2s, color 0.2s; }
.footer-ig-icon svg { width: 20px; height: 20px; }
.footer-ig-icon:hover { border-color: var(--gold); color: var(--gold-light); }
.footer-bottom p { font-size: 12px; color: #444; text-align: center; letter-spacing: 0.5px; }

/* ════════════════════════════════════════════════════════════
   REZERVARE MODAL
════════════════════════════════════════════════════════════ */
.modal {
    position: fixed; inset: 0; z-index: 500;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s var(--ease);
}
.modal.open { opacity: 1; pointer-events: all; }

.modal-overlay {
    position: absolute; inset: 0;
    background: rgba(8,7,6,0.88);
    backdrop-filter: blur(6px);
}
.modal-box {
    position: relative;
    width: 100%; max-width: 560px;
    max-height: 92vh; overflow-y: auto;
    background: #161410;
    border: 1px solid #3A3028;
    padding: 48px 44px 44px;
    transform: translateY(24px);
    transition: transform 0.35s var(--ease);
    scrollbar-width: thin;
    scrollbar-color: #3A3028 transparent;
}
.modal.open .modal-box { transform: translateY(0); }

.modal-close {
    position: absolute; top: 18px; right: 22px;
    font-size: 20px; color: #555;
    transition: color 0.2s; padding: 4px;
}
.modal-close:hover { color: var(--white); }

.modal-eyebrow {
    font-size: 10px; font-weight: 500; letter-spacing: 3px;
    text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.modal-title {
    font-family: var(--ff-serif); font-size: 38px; font-weight: 500;
    color: var(--white); margin-bottom: 36px; line-height: 1.1;
    letter-spacing: -0.02em;
}

/* Page hero (for inner pages) */
.page-hero { background: var(--black); padding: 140px 0 80px; border-bottom: 1px solid #1E1B18; }
.page-hero .section-label { display: block; margin-bottom: 16px; }
.page-hero .section-heading { margin-bottom: 0; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .gal-grid { grid-template-columns: repeat(3, 1fr); }
    .rev-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .rev-all-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
    .container { padding: 0 32px; }
    #navbar { padding: 0 32px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .hero { grid-template-columns: 1fr; height: auto; min-height: 100svh; overflow: visible; padding-bottom: 80px; }
    .hero-left { order: 2; padding: 48px 40px; border-right: none; border-top: 1px solid var(--beige-mid); }
    .hero-right { order: 1; height: 58vw; max-height: 380px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; position: static; }
    .hero-right img { object-position: center top; }
    .hero-col-img { display: block; }
    .hero-photo-accent { display: none; }
    .hero-scroll { left: 40px; bottom: 24px; }

    .about-grid { grid-template-columns: 1fr; gap: 56px; }
    .about-photos { height: 380px; }
    .about-photo-main { width: 72%; height: 340px; }
    .about-photo-accent { width: 50%; height: 220px; }

    .cp-layout { grid-template-columns: 1fr; }
    .cp-right { max-height: 420px; }
    .courses-poster { padding: 0 32px; max-width: 400px; }
    .courses-page .courses-grid { grid-template-columns: 1fr; }

    .contact-grid { grid-template-columns: 1fr; gap: 60px; }
    .contact-intro { max-width: 100%; }
}

@media (max-width: 680px) {
    .container { padding: 0 20px; }
    #navbar { padding: 0 20px; }

    .hero-left { padding: 36px 20px 40px; }
    .h-solid, .h-outline { font-size: clamp(52px, 16vw, 90px); }
    .hero-btns { flex-direction: column; }
    .hero-scroll { display: none; }

    .about { padding: 80px 0 60px; }
    .about-stats { gap: 0; }
    .stat-sep { width: 1px; height: 40px; }
    .stat-n { font-size: 40px; }
    .strip-item { width: 170px; height: 225px; }

    .courses-home, .courses-page { padding: 80px 0; }
    .course-body { padding: 32px 24px 28px; }
    .course-imgs { grid-template-columns: repeat(3, 1fr); }

    .gallery { padding: 80px 0; }
    .gal-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

    .reviews, .reviews-page { padding: 80px 0; }
    .rev-cards-grid { grid-template-columns: 1fr; }
    .rev-all-grid { grid-template-columns: 1fr; }

    .contact { padding: 80px 0; }
    .form-wrap { padding: 28px 20px; }
    .f-row { grid-template-columns: 1fr; }

    .footer-top { flex-direction: column; align-items: center; gap: 24px; }
    .footer-nav { gap: 14px; justify-content: flex-start; }

    .lb-prev, .lb-next { font-size: 40px; padding: 12px; }
    .lb-prev { left: 4px; }
    .lb-next { right: 4px; }

    .courses-poster { max-width: 260px; }

    .courses-full-cta .btn { white-space: normal; text-align: center; line-height: 1.5; }
    .modal-box { padding: 40px 24px 32px; }
}
