/* =========================================================
   COSMIN DUICA — Editorial Photography Theme
   Palette: ink, cream, gold. Serif display + clean sans body.
   ========================================================= */

:root {
    --ink:        #14161b;
    --ink-soft:   #2a2d35;
    --paper:      #fafaf7;
    --cream:      #f4ede4;
    --cream-2:    #ece3d3;
    --gold:       #c9a36a;
    --gold-soft:  #e2c79a;
    --muted:      #6b6f78;
    --line:       #e8e2d8;
    --danger:     #c0392b;
    --success:    #2e8b57;

    --shadow-sm:  0 1px 2px rgba(20,22,27,.05), 0 2px 8px rgba(20,22,27,.04);
    --shadow-md:  0 6px 24px -8px rgba(20,22,27,.18);
    --shadow-lg:  0 30px 80px -30px rgba(20,22,27,.35);

    --r-sm: 6px;
    --r-md: 12px;
    --r-lg: 22px;

    --ease:       cubic-bezier(.2,.7,.2,1);
    --transition: all .35s var(--ease);

    --serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --sans:  'Poppins', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

    /* Compatibility aliases used by inline classes */
    --primary-color: var(--ink);
    --secondary-color: var(--gold);
    --dark-color: var(--ink);
    --light-color: var(--paper);
    --accent-color: var(--gold);
    --text-color: var(--ink);
    --text-light: var(--muted);
    --border-color: var(--line);
    --gradient-1: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
    --gradient-2: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
    --gradient-3: linear-gradient(135deg, var(--cream) 0%, var(--paper) 100%);
}

/* ---------- reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--sans);
    font-weight: 400;
    line-height: 1.6;
    color: var(--ink);
    background: var(--paper);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
button { font-family: inherit; }
ul { list-style: none; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ---------- typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; letter-spacing: -.01em; color: var(--ink); }

.section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}
.section-title.center { display: block; text-align: center; }
.section-title::after {
    content: '';
    display: block;
    width: 56px; height: 2px;
    margin-top: 1rem;
    background: var(--gold);
}
.section-title.center::after { margin-left: auto; margin-right: auto; }
.section-subtitle {
    font-size: 1.05rem;
    color: var(--muted);
    margin-bottom: 3rem;
    max-width: 620px;
}
.section-subtitle.center { text-align: center; margin-left: auto; margin-right: auto; }

section { padding: 7rem 0; }

/* ---------- buttons ---------- */
.btn-primary, .btn-secondary, .btn-nav, .view-btn, .btn-submit {
    font-family: var(--sans);
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: .82rem;
    border: none;
    cursor: pointer;
    border-radius: 999px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
}
.btn-primary {
    background: var(--ink);
    color: var(--paper);
    padding: 1.05rem 2.2rem;
    box-shadow: 0 12px 30px -12px rgba(20,22,27,.45);
}
.btn-primary:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
.btn-secondary {
    background: transparent;
    color: var(--ink);
    padding: .85rem 1.8rem;
    border: 1.5px solid var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--paper); }

/* ---------- navigation ---------- */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1.4rem 0;
    background: transparent;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(250, 250, 247, .92);
    backdrop-filter: saturate(140%) blur(12px);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
    padding: .8rem 0;
    box-shadow: 0 1px 0 var(--line);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.logo h1 {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--paper);
    display: flex; align-items: center; gap: .5rem;
    margin: 0;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: currentColor;
}
.logo h1 i { color: var(--gold); font-size: 1.2rem; }
.logo-tagline {
    display: block;
    font-family: var(--sans);
    font-size: .68rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: .15rem;
}
.navbar.scrolled .logo h1 { color: var(--ink); }
.navbar.scrolled .logo-tagline { color: var(--muted); }

.nav-menu { display: flex; gap: 2.2rem; align-items: center; }
.nav-menu a {
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.92);
    position: relative;
    padding: .25rem 0;
}
.nav-menu a i { display: none; }   /* keep icons subtle / hidden */
.navbar.scrolled .nav-menu a { color: var(--ink); }
.nav-menu a:not(.btn-nav):not(.phone-link)::after {
    content: '';
    position: absolute; left: 0; bottom: -6px;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width .3s var(--ease);
}
.nav-menu a:not(.btn-nav):not(.phone-link):hover::after { width: 100%; }
.nav-menu a:not(.btn-nav):not(.phone-link):hover { color: var(--gold); }

.phone-link { color: var(--gold) !important; }

.btn-nav {
    padding: .85rem 1.6rem;
    background: var(--gold);
    color: var(--ink) !important;
    border-radius: 999px;
    font-size: .75rem;
}
.btn-nav:hover { background: var(--paper); transform: translateY(-2px); }

.hamburger {
    display: none;
    flex-direction: column; gap: 5px;
    cursor: pointer;
    padding: 6px;
}
.hamburger span {
    width: 26px; height: 1.5px;
    background: var(--paper);
    transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--ink); }

/* hide promo banner — keep markup harmless */
.promo-banner { display: none !important; }

/* ============================================================
   HERO SLIDESHOW (cinematic)
   ============================================================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
    background: var(--ink);
    margin-top: 0;
}
.slideshow-container { position: absolute; inset: 0; }
.slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1.4s ease;
    pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: auto; }
.slide img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    animation: kenburns 12s ease-out forwards;
    transform-origin: center;
}
.slide.active img { animation: kenburns 12s ease-out forwards; }
@keyframes kenburns {
    from { transform: scale(1.04); }
    to   { transform: scale(1.14); }
}
.slide-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(20,22,27,.55) 0%, rgba(20,22,27,.25) 35%, rgba(20,22,27,.85) 100%);
}
.slide-content {
    position: absolute;
    bottom: 22%;
    left: 0; right: 0;
    text-align: center;
    color: var(--paper);
    padding: 0 1.5rem;
    z-index: 3;
}
.slide-title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(2.3rem, 5.8vw, 5rem);
    line-height: 1.05;
    margin: 0 auto .9rem;
    max-width: 900px;
    text-shadow: 0 2px 30px rgba(0,0,0,.35);
    animation: rise .9s var(--ease) both;
}
.slide-subtitle {
    font-size: clamp(.95rem, 1.4vw, 1.15rem);
    font-weight: 300;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    animation: rise .9s var(--ease) .15s both;
}
@keyframes rise {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

.prev, .next {
    position: absolute; top: 50%;
    transform: translateY(-50%);
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    color: var(--paper);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 5;
    backdrop-filter: blur(6px);
    transition: var(--transition);
}
.prev { left: 32px; }
.next { right: 32px; }
.prev:hover, .next:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.dots-container {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex; gap: .6rem;
}
.dot {
    width: 28px; height: 2px;
    background: rgba(255,255,255,.35);
    cursor: pointer;
    transition: var(--transition);
    border-radius: 0;
}
.dot.active { background: var(--gold); width: 48px; }

.hero-cta {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    text-align: center;
}
.hero-cta .btn-primary {
    background: var(--paper);
    color: var(--ink);
    padding: 1.05rem 2.4rem;
}
.hero-cta .btn-primary:hover { background: var(--gold); color: var(--ink); }
.hero-cta-subtext {
    margin-top: .9rem;
    color: rgba(255,255,255,.7);
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.hero-cta-subtext .highlight-text { color: var(--gold); }
.hero-cta-subtext i { display: none; }

/* hide ribbon urgency bait — keep DOM */
.urgency-badge { display: none !important; }

.loading-slides {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: var(--paper);
    font-family: var(--serif);
    font-style: italic;
    letter-spacing: .1em;
}

/* hide pulse-animation glow effects for elegance */
.pulse-animation, .pulse, .glow-effect { animation: none !important; }

/* ============================================================
   TRUST BADGES — refined editorial strip
   ============================================================ */
.trust-badges-section {
    padding: 4rem 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}
.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}
.trust-badge {
    background: transparent;
    text-align: center;
    padding: 1rem;
    box-shadow: none;
    border: none;
    transition: var(--transition);
}
.trust-badge:hover { transform: translateY(-4px); }
.trust-badge i,
.trust-badge .icon-badge {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: .8rem;
    display: block;
}
.trust-badge h4 {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--ink);
    margin: 0 0 .25rem;
}
.trust-badge p {
    margin: 0;
    color: var(--muted);
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
}

/* hide spammy social-proof popups */
.social-proof-popup { display: none !important; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
    background: var(--cream);
    position: relative;
}
.about-section::before {
    content: 'A·';
    position: absolute;
    top: 3rem; right: 5%;
    font-family: var(--serif);
    font-size: 10rem;
    color: rgba(20,22,27,.04);
    line-height: 1;
    pointer-events: none;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}
.about-image { position: relative; }
.about-image img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-lg);
    filter: saturate(.95) contrast(1.03);
}
.about-image::after {
    content: '';
    position: absolute;
    inset: 22px -22px -22px 22px;
    border: 1px solid var(--gold);
    border-radius: var(--r-md);
    z-index: -1;
}
.about-badge {
    position: absolute;
    bottom: -22px; left: 50%;
    transform: translateX(-50%);
    background: var(--paper);
    padding: .85rem 1.6rem;
    border-radius: 999px;
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ink);
    box-shadow: var(--shadow-md);
    white-space: nowrap;
    display: flex; align-items: center; gap: .5rem;
}
.about-badge i { color: var(--gold); }
.about-text .section-title { margin-bottom: .4rem; }
.about-name {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.about-text p {
    color: #4a4d54;
    font-size: 1.02rem;
    line-height: 1.85;
    margin-bottom: 1rem;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}
.about-stats .stat-card {
    background: var(--paper);
    padding: 2rem 1rem;
    border-radius: var(--r-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.about-stats .stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.about-stats .stat-number {
    font-family: var(--serif);
    font-size: 2.6rem;
    font-weight: 500;
    color: var(--ink);
    background: none;
    -webkit-text-fill-color: currentColor;
    background-clip: initial;
    margin-bottom: .25rem;
}
.about-stats .stat-label {
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ============================================================
   GALLERY (new) — auto-rotating cinematic showcase
   ============================================================ */
.gallery-section {
    background: var(--ink);
    color: var(--paper);
    padding: 7rem 0 8rem;
    position: relative;
    overflow: hidden;
}
.gallery-section .section-title { color: var(--paper); }
.gallery-section .section-title::after { background: var(--gold); }
.gallery-section .section-subtitle { color: rgba(255,255,255,.65); }

.gallery-stage {
    position: relative;
    margin-top: 3rem;
    height: 70vh;
    min-height: 480px;
    max-height: 720px;
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.gallery-slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.gallery-slide.active { opacity: 1; }
.gallery-slide img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    animation: kenburns 10s ease-out forwards;
}
.gallery-stage::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(20,22,27,0) 60%, rgba(20,22,27,.7) 100%);
    pointer-events: none;
}
.gallery-counter {
    position: absolute;
    bottom: 1.8rem; left: 2rem;
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--paper);
    letter-spacing: .15em;
    z-index: 3;
}
.gallery-counter span { color: var(--gold); }
.gallery-controls {
    position: absolute;
    bottom: 1.6rem; right: 2rem;
    display: flex; gap: .6rem;
    z-index: 3;
}
.gallery-controls button {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.3);
    color: var(--paper);
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(6px);
}
.gallery-controls button:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.gallery-empty {
    height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.5);
    font-family: var(--serif);
    font-style: italic;
    padding: 2rem;
    text-align: center;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--paper); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.service-card {
    background: var(--paper);
    padding: 2.5rem 2rem;
    border-radius: var(--r-md);
    border: 1px solid var(--line);
    box-shadow: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before { display: none; }
.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}
.service-card.featured {
    background: var(--ink);
    color: var(--paper);
    transform: none;
    border-color: var(--ink);
}
.service-card.featured:hover { transform: translateY(-8px); }
.service-card.featured h3,
.service-card.featured > p { color: var(--paper); }
.service-card.featured .service-features li { color: rgba(255,255,255,.85); }
.service-card.featured .badge { background: var(--gold); color: var(--ink); }
.service-card.featured .btn-primary { background: var(--gold); color: var(--ink); }
.service-card.featured .btn-primary:hover { background: var(--paper); color: var(--ink); }

.badge {
    position: absolute;
    top: 20px; right: 20px;
    background: var(--gold);
    color: var(--ink);
    padding: .35rem .9rem;
    border-radius: 999px;
    font-size: .68rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 600;
}
.service-icon {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    opacity: .9;
}
.service-card h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    margin-bottom: .8rem;
    font-weight: 500;
}
.service-card > p {
    color: var(--muted);
    margin-bottom: 1.4rem;
    font-size: .95rem;
}
.service-features { margin: 1.2rem 0 1.6rem; }
.service-features li {
    padding: .45rem 0;
    color: var(--muted);
    font-size: .9rem;
    border-bottom: 1px dashed var(--line);
}
.service-card.featured .service-features li { border-bottom-color: rgba(255,255,255,.12); }
.service-features li:last-child { border-bottom: none; }

/* ============================================================
   WHY
   ============================================================ */
.why-section {
    background: var(--cream-2);
    color: var(--ink);
}
.why-section .section-title { color: var(--ink); }
.why-section .section-title::after { background: var(--gold); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.why-card {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 2.2rem 1.6rem;
    border-radius: var(--r-md);
    text-align: center;
    transition: var(--transition);
    backdrop-filter: none;
}
.why-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow-md); }
.why-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-card h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: .6rem;
}
.why-card p { color: var(--muted); font-size: .92rem; line-height: 1.7; }

/* ============================================================
   STATS (animated)
   ============================================================ */
.stats-section {
    padding: 5rem 0;
    background: var(--ink);
    color: var(--paper);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 2rem;
    text-align: center;
}
.stats-section .stat-card {
    background: transparent;
    border: none;
    border-left: 1px solid rgba(255,255,255,.12);
    border-radius: 0;
    padding: 1rem 1.5rem;
    box-shadow: none;
    display: flex; flex-direction: column; align-items: center; gap: .8rem;
    transition: var(--transition);
}
.stats-section .stat-card:first-child { border-left: none; }
.stats-section .stat-card:hover { transform: translateY(-4px); background: transparent; }
.stats-section .stat-card i {
    font-size: 1.6rem;
    color: var(--gold);
}
.stats-section .stat-number {
    font-family: var(--serif);
    font-size: 3.4rem !important;
    font-weight: 500;
    color: var(--paper) !important;
    background: none !important;
    -webkit-text-fill-color: var(--paper) !important;
    line-height: 1;
}
.stats-section .stat-label {
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7) !important;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-section { background: var(--paper); }
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.filter-btn {
    padding: .7rem 1.4rem;
    background: transparent;
    color: var(--muted);
    border: 1px solid var(--line);
    border-radius: 999px;
    cursor: pointer;
    font-weight: 500;
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: var(--transition);
    display: inline-flex; align-items: center; gap: .5rem;
}
.filter-btn:hover { color: var(--ink); border-color: var(--ink); }
.filter-btn.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.filter-btn i { font-size: .8rem; }

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 1.2rem;
}
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--r-md);
    cursor: pointer;
    background: var(--ink);
}
.portfolio-item:nth-child(4n+1) { grid-row: span 2; }
.portfolio-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
    filter: saturate(.95);
}
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20,22,27,0) 50%, rgba(20,22,27,.85) 100%);
    color: var(--paper);
    padding: 1.6rem;
    display: flex; flex-direction: column; justify-content: flex-end;
    opacity: 0;
    transform: none;
    transition: opacity .4s var(--ease);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--paper);
    margin-bottom: .25rem;
}
.portfolio-overlay p {
    color: var(--gold);
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.view-btn {
    background: var(--paper);
    color: var(--ink);
    padding: .6rem 1.2rem;
    align-self: flex-start;
    font-size: .7rem;
}
.view-btn:hover { background: var(--gold); color: var(--ink); }
.portfolio-item.hidden { display: none; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
    display: none;
    position: fixed; inset: 0;
    background: rgba(10, 11, 14, .96);
    z-index: 10000;
    align-items: center; justify-content: center;
    padding: 2rem;
}
.lightbox.active { display: flex; }
.lightbox-content {
    max-width: 1100px;
    width: 100%;
    animation: lbZoom .4s var(--ease);
}
@keyframes lbZoom { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }
.lightbox-content img {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: var(--r-md);
}
.lightbox-caption {
    text-align: center;
    color: var(--paper);
    margin-top: 1.5rem;
}
.lightbox-caption h3 {
    font-family: var(--serif);
    font-weight: 500;
    color: var(--paper);
    margin: 0 0 .3rem;
}
.lightbox-caption p { color: rgba(255,255,255,.6); margin: 0; }
.lightbox-close {
    position: absolute;
    top: 20px; right: 28px;
    font-size: 2.4rem;
    color: var(--paper);
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-prev, .lightbox-next {
    position: absolute; top: 50%;
    transform: translateY(-50%);
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.25);
    color: var(--paper);
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(6px);
}
.lightbox-prev { left: 32px; }
.lightbox-next { right: 32px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--cream); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.testimonial-card {
    background: var(--paper);
    padding: 2.2rem;
    border-radius: var(--r-md);
    border: 1px solid var(--line);
    box-shadow: none;
    transition: var(--transition);
    position: relative;
}
.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 0; left: 1.4rem;
    font-family: var(--serif);
    font-size: 5rem;
    color: var(--gold-soft);
    line-height: 1;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.stars { font-size: 1rem; margin-bottom: 1rem; letter-spacing: .15em; }
.testimonial-text {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative; z-index: 1;
}
.testimonial-author strong {
    display: block;
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 600;
    margin-bottom: .2rem;
}
.testimonial-author span {
    color: var(--muted);
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.submit-review-section {
    max-width: 820px;
    margin: 5rem auto 0;
    padding: 3rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
}
.submit-review-section h3 {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: .5rem;
}
.submit-review-section p { color: var(--muted); margin-bottom: 2rem; }
.review-form { display: flex; flex-direction: column; gap: 1.4rem; }
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: .4rem;
}
.star-rating input { display: none; }
.star-rating label {
    font-size: 1.8rem;
    cursor: pointer;
    filter: grayscale(100%) opacity(.45);
    transition: all .2s;
}
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    filter: none;
    transform: scale(1.08);
}

.loading {
    text-align: center; padding: 3rem;
    color: var(--muted); font-style: italic;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--paper); }
.faq-container { max-width: 820px; margin: 3rem auto 0; }
.faq-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: none;
}
.faq-item:hover { box-shadow: none; }
.faq-question {
    width: 100%;
    padding: 1.6rem 0;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--ink);
    transition: color .25s var(--ease);
}
.faq-question:hover { color: var(--gold); }
.faq-question i { color: var(--gold); transition: transform .3s var(--ease); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height .35s var(--ease), padding .35s var(--ease);
}
.faq-item.active .faq-answer { max-height: 600px; padding: 0 0 1.6rem; }
.faq-answer p {
    color: var(--muted);
    line-height: 1.8;
    font-size: .98rem;
    margin: 0;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--cream); }
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    margin-top: 3rem;
}
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
    background: var(--paper);
    padding: 1.6rem 1.4rem;
    border-radius: var(--r-md);
    border: 1px solid var(--line);
    box-shadow: none;
    transition: var(--transition);
    display: flex; flex-direction: column; gap: .25rem;
}
.contact-card:hover { transform: translateX(6px); border-color: var(--gold); }
.contact-icon { font-size: 1.5rem; margin-bottom: .3rem; }
.contact-card h3 {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}
.contact-card a {
    color: var(--ink);
    font-weight: 500;
    margin-top: .3rem;
    border-bottom: 1px solid transparent;
    align-self: flex-start;
}
.contact-card a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.contact-card p {
    color: var(--muted);
    font-size: .82rem;
    letter-spacing: .08em;
    margin: 0;
}

.contact-form-wrapper {
    background: var(--paper);
    padding: 2.8rem;
    border-radius: var(--r-md);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.contact-form { display: flex; flex-direction: column; gap: 1.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.form-group { display: flex; flex-direction: column; gap: .45rem; }
.form-group label {
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: .9rem 1rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    font-family: var(--sans);
    font-size: .95rem;
    color: var(--ink);
    transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ink);
    box-shadow: 0 0 0 3px rgba(20,22,27,.06);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: var(--ink);
    color: var(--paper);
    margin-top: .5rem;
}
.btn-submit:hover { background: var(--gold); color: var(--ink); }
.form-note {
    font-size: .8rem;
    color: var(--muted);
    text-align: center;
    margin-top: -.4rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--ink);
    color: rgba(255,255,255,.7);
    padding: 5rem 0 1.5rem;
}
.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-section h3 {
    font-family: var(--serif);
    font-size: 1.6rem;
    color: var(--paper);
    margin-bottom: 1rem;
    font-weight: 500;
    display: flex; align-items: center; gap: .5rem;
}
.footer-section h3 i { color: var(--gold); font-size: 1.3rem; }
.footer-section h4 {
    font-family: var(--sans);
    font-size: .78rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
    font-weight: 600;
}
.footer-section p { color: rgba(255,255,255,.6); line-height: 1.8; margin-bottom: 1.2rem; font-size: .92rem; }
.footer-section ul li { margin-bottom: .65rem; }
.footer-section ul li a { color: rgba(255,255,255,.6); font-size: .92rem; transition: color .25s var(--ease); }
.footer-section ul li a:hover { color: var(--gold); }
.contact-list li { display: flex; align-items: center; gap: .5rem; }

.social-links { display: flex; gap: .7rem; margin-top: 1.2rem; }
.social-links a {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255,255,255,.18);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.8);
    transition: var(--transition);
}
.social-links a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); transform: translateY(-2px); }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.4);
    font-size: .82rem;
    letter-spacing: .1em;
}

/* ============================================================
   FLOATING / UTILITIES
   ============================================================ */
.scroll-top {
    position: fixed; bottom: 30px; right: 30px;
    width: 46px; height: 46px;
    background: var(--ink);
    color: var(--paper);
    border: none; border-radius: 50%;
    font-size: 1.1rem; cursor: pointer;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
    z-index: 90;
    box-shadow: var(--shadow-md);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--gold); color: var(--ink); transform: translateY(-3px); }

.whatsapp-float {
    position: fixed; bottom: 30px; left: 30px;
    width: 56px; height: 56px;
    background: #25D366; color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem;
    z-index: 90;
    box-shadow: 0 12px 30px -10px rgba(37,211,102,.6);
    transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08); }

/* hide noise: dark mode toggle (theme is already designed), loader, scroll progress */
.dark-mode-toggle { display: none !important; }
#loading-screen { display: none !important; }
#scroll-progress {
    position: fixed; top: 0; left: 0;
    width: 0%; height: 2px;
    background: var(--gold);
    z-index: 200;
    transition: width .1s linear;
}
.live-notification { display: none; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.loading-spinner { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .about-content { grid-template-columns: 1fr; gap: 3rem; }
    .about-image::after { display: none; }
    .about-image img { height: 460px; }
    .contact-content { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
    .portfolio-item:nth-child(4n+1) { grid-row: span 1; }
}

@media (max-width: 768px) {
    section { padding: 5rem 0; }
    .container { padding: 0 20px; }

    .nav-menu {
        position: fixed;
        inset: 80px 0 auto 0;
        flex-direction: column;
        background: var(--paper);
        padding: 2rem;
        gap: 1.4rem;
        box-shadow: var(--shadow-md);
        transform: translateX(-100%);
        transition: transform .35s var(--ease);
    }
    .nav-menu.active { transform: translateX(0); }
    .nav-menu a { color: var(--ink) !important; }
    .hamburger { display: flex; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px,5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px,-5px); }

    .hero-section { height: 92vh; min-height: 560px; }
    .prev, .next { width: 44px; height: 44px; }
    .prev { left: 14px; } .next { right: 14px; }

    .about-stats { grid-template-columns: 1fr 1fr 1fr; gap: .8rem; }
    .about-stats .stat-number { font-size: 1.9rem; }

    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 1.8rem; }

    .footer-content { grid-template-columns: 1fr; gap: 2rem; }

    .portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }

    .gallery-stage { height: 60vh; min-height: 380px; }
    .gallery-controls { right: 1rem; bottom: 1rem; }
    .gallery-counter { left: 1rem; bottom: 1rem; font-size: .95rem; }

    .scroll-top { bottom: 90px; right: 18px; }
    .whatsapp-float { width: 48px; height: 48px; bottom: 18px; left: 18px; font-size: 1.4rem; }
}

@media (max-width: 480px) {
    .about-stats { grid-template-columns: 1fr; }
    .portfolio-filters { gap: .35rem; }
    .filter-btn { padding: .55rem 1rem; font-size: .7rem; }
    .submit-review-section { padding: 1.8rem; }
}
