﻿@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap&subset=latin,latin-ext');

:root {
  --cream:       #F5F2ED;
  --cream-2:     #EDE8E0;
  --cream-3:     #E5DED4;
  --dark:        #1C1C1C;
  --dark-2:      #2F2F2F;
  --charcoal:    #4A4640;
  --muted:       #8A847A;
  --oak:         #C9A96E;
  --oak-2:       #B5966C;
  --teal:        #1E4D4D;
  --teal-2:      #2E6B6B;
  --teal-light:  rgba(30,77,77,0.08);
  --border:      #E2D9C8;
  --border-dark: #D0C8BA;
  --white:       #FFFFFF;
  --shadow:      0 2px 24px rgba(28,28,28,0.08);
  --shadow-lg:   0 8px 48px rgba(28,28,28,0.13);
  --radius:      4px;
  --radius-lg:   8px;
  --tr:          0.28s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; font-size: 17px; line-height: 1.75; color: var(--charcoal); background: var(--cream); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; color: var(--dark); font-weight: 600; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.container-sm { max-width: 960px; margin: 0 auto; padding: 0 2rem; }

/* ── NAVBAR ── */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(245,242,237,0); backdrop-filter: blur(0px); transition: all 0.4s ease; }
#navbar.scrolled { background: rgba(245,242,237,0.97); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); box-shadow: 0 1px 20px rgba(28,28,28,0.06); }
/* Homepage: navbar transparent cu text alb */
body.home #navbar:not(.scrolled) .nav-brand { color: #FFFFFF; }
body.home #navbar:not(.scrolled) .nav-brand span { color: rgba(255,255,255,0.8); }
body.home #navbar:not(.scrolled) .nav-link { color: rgba(255,255,255,0.88); }
body.home #navbar:not(.scrolled) .nav-link:hover,
body.home #navbar:not(.scrolled) .nav-link.active { color: #FFFFFF; }
body.home #navbar:not(.scrolled) .hamburger span { background: #FFFFFF; }
/* Pagini interioare: navbar mereu cu fundal crem si text inchis */
body:not(.home) #navbar { background: rgba(245,242,237,0.97) !important; backdrop-filter: blur(16px) !important; border-bottom: 1px solid var(--border); }
body:not(.home) #navbar .nav-brand { color: var(--dark) !important; }
body:not(.home) #navbar .nav-brand span { color: var(--teal) !important; }
body:not(.home) #navbar .nav-link { color: var(--charcoal) !important; }
body:not(.home) #navbar .nav-link:hover,
body:not(.home) #navbar .nav-link.active { color: var(--dark) !important; }
body:not(.home) #navbar .hamburger span { background: var(--dark) !important; }
/* Scrolled (toate paginile) */
#navbar.scrolled .nav-brand { color: var(--dark); }
#navbar.scrolled .nav-brand span { color: var(--teal); }
#navbar.scrolled .nav-link { color: var(--charcoal); }
#navbar.scrolled .nav-link:hover, #navbar.scrolled .nav-link.active { color: var(--dark); }
#navbar.scrolled .hamburger span { background: var(--dark); }
.nav-inner { display: flex; align-items: center; height: 80px; }
.nav-brand { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--dark); letter-spacing: 0.02em; transition: color 0.4s ease; }
.nav-brand span { color: var(--teal); transition: color 0.4s ease; }
.nav-menu { display: flex; align-items: center; gap: 0.25rem; margin-left: auto; }
.nav-link { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal); padding: 0.5rem 1rem; border-radius: var(--radius); transition: all var(--tr); }
.nav-link:hover, .nav-link.active { color: var(--dark); }
.nav-cta { background: var(--teal); color: var(--white) !important; padding: 0.55rem 1.4rem; border-radius: var(--radius); }
.nav-cta:hover { background: var(--teal-2); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; z-index: 1600; position: relative; }
.hamburger span { width: 24px; height: 1.5px; background: var(--dark); display: block; transition: all var(--tr); }
.mobile-menu { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100vh; background: var(--cream); z-index: 1500; padding: 6rem 2.5rem 3rem; }
.mobile-menu.open { display: flex; }
.mob-close { position: absolute; top: 1.5rem; right: 1.5rem; color: var(--dark); background: var(--cream-2); border-radius: 50%; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; }
.mob-link { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 600; color: var(--dark); padding: 0.75rem 0; border-bottom: 1px solid var(--border); }
.mob-cta { color: var(--teal) !important; border-bottom: none; margin-top: 0.5rem; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border-radius: var(--radius); transition: all var(--tr); white-space: nowrap; cursor: pointer; }
.btn-dark { background: var(--dark); color: var(--white); padding: 0.85rem 2.2rem; }
.btn-dark:hover { background: var(--dark-2); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-teal { background: var(--teal); color: var(--white); padding: 0.85rem 2.2rem; }
.btn-teal:hover { background: var(--teal-2); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(30,77,77,0.25); }
.btn-outline { border: 1.5px solid var(--dark); color: var(--dark); padding: 0.8rem 2.1rem; }
.btn-outline:hover { background: var(--dark); color: var(--white); }
.btn-outline-white { border: 1.5px solid rgba(255,255,255,0.6); color: var(--white); padding: 0.8rem 2.1rem; }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-full { width: 100%; justify-content: center; }

/* ── SECTION LABELS ── */
.label { display: inline-block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.75rem; }
.label-light { color: rgba(245,242,237,0.65); }
.section-title { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 1rem; }
.section-subtitle { font-size: 1rem; color: var(--muted); max-width: 540px; line-height: 1.8; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .section-subtitle { margin: 0 auto; }

/* ── HERO ── */
#hero { position: relative; height: 100vh; min-height: 600px; max-height: 960px; overflow: hidden; }
#hero::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 220px; background: linear-gradient(to bottom, rgba(0,0,0,0.52) 0%, transparent 100%); z-index: 3; pointer-events: none; }
.hero-slider { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.04); transition: transform 8s ease; }
.hero-slide.active .hero-slide-bg { transform: scale(1); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(15,15,15,0.88) 0%, rgba(15,15,15,0.60) 55%, rgba(15,15,15,0.25) 100%); }

/* ── HERO PROGRESS BAR ── */
.hero-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: rgba(255,255,255,0.12); z-index: 4; }
.hero-progress-bar { height: 100%; background: var(--oak); width: 0%; transition: none; }
.hero-progress-bar.running { width: 100%; transition: width 5.5s linear; }
.hero-content { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; padding-top: 80px; }
.hero-text { max-width: 620px; }
.hero-eyebrow { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--oak); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.75rem; }
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--oak); display: block; }
#hero h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); color: var(--white); font-weight: 600; line-height: 1.1; margin-bottom: 1.5rem; }
#hero h1 em { font-style: italic; color: var(--oak); }
#hero p { font-size: 1.05rem; color: rgba(255,255,255,0.75); max-width: 440px; line-height: 1.8; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-dots { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.5rem; z-index: 3; }
.hero-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.35); border: none; cursor: pointer; transition: all var(--tr); }
.hero-dot.active { background: var(--oak); width: 22px; border-radius: 3px; }
.hero-scroll { position: absolute; bottom: 2.5rem; right: 3rem; z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.5); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; }
.hero-scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4)); }

/* ── INTRO STRIP ── */
.intro-strip { background: var(--dark); padding: 2rem 0; }
.intro-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.intro-stat { text-align: center; }
.intro-stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--oak); line-height: 1; margin-bottom: 0.3rem; }
.intro-stat-label { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.intro-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* ── CATEGORIES ── */
.categories-section { padding: 7rem 0; background: var(--cream); }
.cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; }
.cat-card { position: relative; overflow: hidden; border-radius: var(--radius-lg); cursor: pointer; aspect-ratio: 3/4; }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.cat-card:hover img { transform: scale(1.06); }
.cat-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,28,28,0.75) 0%, rgba(28,28,28,0.1) 55%, transparent 100%); transition: background var(--tr); }
.cat-card:hover .cat-card-overlay { background: linear-gradient(to top, rgba(28,28,28,0.85) 0%, rgba(28,28,28,0.25) 55%, transparent 100%); }
.cat-card-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem 1.25rem; }
.cat-card-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 0.3rem; }
.cat-card-count { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.cat-card-arrow { position: absolute; top: 1.25rem; right: 1.25rem; width: 36px; height: 36px; background: rgba(255,255,255,0); border: 1px solid rgba(255,255,255,0); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); opacity: 0; transition: all var(--tr); }
.cat-card:hover .cat-card-arrow { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); opacity: 1; transform: rotate(-45deg); }

/* ── ABOUT PREVIEW ── */
.about-preview { padding: 7rem 0; background: var(--cream-2); }
.about-preview-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 6rem; align-items: center; }
.about-imgs-stack { position: relative; height: 560px; }
.about-img-main { position: absolute; top: 0; left: 0; width: 75%; height: 82%; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent { position: absolute; bottom: 0; right: 0; width: 52%; height: 50%; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 4px solid var(--cream-2); }
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-tag { display: inline-flex; align-items: center; gap: 0.75rem; background: var(--teal-light); border: 1px solid rgba(30,77,77,0.15); padding: 0.5rem 1.25rem; border-radius: 99px; margin-bottom: 2rem; }
.about-tag span { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); }
.about-preview-text h2 { margin-bottom: 1.25rem; }
.about-preview-text p { color: var(--muted); line-height: 1.85; margin-bottom: 1rem; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0 2.5rem; }
.about-value { display: flex; align-items: flex-start; gap: 0.75rem; }
.about-value-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--oak); flex-shrink: 0; margin-top: 0.65rem; }
.about-value span { font-size: 0.88rem; color: var(--charcoal); font-weight: 500; }

/* ── PORTFOLIO PAGE ── */
.portfolio-section { padding: 5rem 0; background: var(--cream); min-height: 80vh; }
.portfolio-filter { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 3.5rem; }
.pf-btn { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.5rem 1.25rem; border-radius: 99px; border: 1.5px solid var(--border-dark); color: var(--muted); background: transparent; cursor: pointer; transition: all var(--tr); }
.pf-btn:hover, .pf-btn.active { background: var(--dark); color: var(--white); border-color: var(--dark); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.pf-item { position: relative; overflow: hidden; border-radius: var(--radius-lg); cursor: pointer; aspect-ratio: 4/3; }
.pf-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.pf-item:hover img { transform: scale(1.05); }
.pf-item-overlay { position: absolute; inset: 0; background: rgba(28,28,28,0); transition: background var(--tr); display: flex; align-items: center; justify-content: center; }
.pf-item:hover .pf-item-overlay { background: rgba(28,28,28,0.4); }
.pf-item-zoom { width: 48px; height: 48px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--dark); opacity: 0; transform: scale(0.7); transition: all var(--tr); }
.pf-item:hover .pf-item-zoom { opacity: 1; transform: scale(1); }
.pf-item-label { position: absolute; bottom: 1rem; left: 1rem; background: rgba(245,242,237,0.95); padding: 0.3rem 0.75rem; border-radius: 99px; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--dark); }

/* ── DESPRE PAGE ── */
.despre-section { padding: 6rem 0; background: var(--cream); }
.despre-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-bottom: 6rem; }
.despre-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.despre-img-grid img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius-lg); }
.despre-img-grid img:first-child { margin-top: 2rem; }
.vmv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; background: var(--cream-2); border-radius: var(--radius-lg); padding: 3rem; margin-bottom: 4rem; }
.vmv-item h3 { font-size: 1.25rem; margin-bottom: 0.85rem; color: var(--dark); }
.vmv-item p { font-size: 0.9rem; color: var(--muted); line-height: 1.8; }
.values-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.25rem; }
.val-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: var(--charcoal); }
.val-item svg { color: var(--teal); flex-shrink: 0; }

/* ── CONTACT PAGE ── */
.contact-section { padding: 6rem 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 380px 1fr; gap: 5rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: var(--muted); line-height: 1.8; margin-bottom: 2.5rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }
.ci { display: flex; align-items: flex-start; gap: 1rem; }
.ci-icon { width: 44px; height: 44px; background: var(--cream-2); border: 1px solid var(--border); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; color: var(--teal); flex-shrink: 0; }
.ci-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.2rem; }
.ci-val { font-size: 0.95rem; font-weight: 500; color: var(--dark); }
a.ci-val:hover { color: var(--teal); }
.contact-form-wrap h2 { margin-bottom: 0.5rem; }
.contact-form-wrap > p { color: var(--muted); margin-bottom: 2.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal); }
.form-group input, .form-group textarea, .form-group select { background: var(--white); border: 1.5px solid var(--border-dark); border-radius: var(--radius); padding: 0.85rem 1rem; font-size: 0.95rem; font-family: 'Inter', sans-serif; color: var(--dark); transition: border-color var(--tr); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(30,77,77,0.08); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }
.form-group textarea { resize: vertical; min-height: 120px; }
#form-response { padding: 0.85rem 1rem; border-radius: var(--radius); font-size: 0.9rem; font-weight: 500; display: none; }
#form-response.success { background: rgba(30,77,77,0.08); border: 1px solid rgba(30,77,77,0.2); color: var(--teal); }
#form-response.error { background: rgba(180,60,40,0.07); border: 1px solid rgba(180,60,40,0.2); color: #B43C28; }

/* ── PAGE HERO ── */
.page-hero { background: var(--dark); padding: 8rem 0 4rem; margin-top: 80px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%); pointer-events: none; }
.page-hero .label { color: var(--oak); }
.page-hero h1 { font-size: clamp(2.2rem, 4vw, 3.8rem); color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.55); max-width: 520px; font-size: 1rem; line-height: 1.8; }

/* ── CTA SECTION ── */
.cta-section { background: var(--dark); padding: 6rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(30,77,77,0.2) 0%, transparent 65%); pointer-events: none; }
.cta-section .label { color: var(--oak); }
.cta-section h2 { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white); margin-bottom: 1.25rem; }
.cta-section p { color: rgba(255,255,255,0.55); max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.8; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── LIGHTBOX ── */
#lightbox { display: none; position: fixed; inset: 0; z-index: 9000; background: rgba(0,0,0,0.95); align-items: center; justify-content: center; cursor: pointer; }
#lightbox.open { display: flex; }
#lightbox #lb-img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius); cursor: default; }
.lb-close { position: absolute; top: 1.5rem; right: 1.5rem; color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.08); border-radius: 50%; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; z-index: 1; }
.lb-close:hover { background: var(--white); color: var(--dark); }
.lb-prev, .lb-next { position: absolute; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); border-radius: 50%; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 1; transition: all var(--tr); }
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-prev:hover, .lb-next:hover { background: var(--white); color: var(--dark); }

/* ── FOOTER ── */
#site-footer { background: var(--dark-2); }
.footer-top { padding: 5rem 0 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--white); margin-bottom: 0.35rem; }
.footer-brand-name span { color: var(--oak); }
.footer-brand-sub { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1.25rem; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.38); line-height: 1.8; max-width: 280px; }
.footer-col h4 { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1.4rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: color var(--tr); }
.footer-col ul li a:hover { color: var(--oak); }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.86rem; color: rgba(255,255,255,0.45); margin-bottom: 0.7rem; line-height: 1.5; }
.footer-contact svg { color: var(--oak); flex-shrink: 0; margin-top: 2px; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom { padding: 1.5rem 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.2); }
.footer-bottom a { color: rgba(255,255,255,0.3); }
.footer-bottom a:hover { color: var(--oak); }

/* ── SCROLL TOP ── */
#scroll-top { position: fixed; bottom: 2rem; right: 2rem; width: 44px; height: 44px; background: var(--dark); border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; display: none; align-items: center; justify-content: center; cursor: pointer; z-index: 500; color: var(--white); transition: all var(--tr); }
#scroll-top:hover { background: var(--teal); border-color: var(--teal); transform: translateY(-3px); }
#scroll-top.visible { display: flex; }

/* ── TOAST ── */
.toast { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(80px); background: var(--dark); border: 1px solid rgba(201,169,110,0.3); color: var(--white); padding: 0.75rem 1.5rem; border-radius: 99px; font-size: 0.88rem; display: flex; align-items: center; gap: 0.6rem; z-index: 8000; opacity: 0; transition: all 0.35s ease; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast svg { color: var(--oak); }

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .intro-sep { display: none; }
}
@media(max-width:900px) {
  .about-preview-grid, .despre-hero-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .vmv-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .about-imgs-stack { height: 380px; }
}
@media(max-width:768px) {
  body { font-size: 16px; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }
  .about-values { grid-template-columns: 1fr; }
  .portfolio-filter { gap: 0.4rem; }
  .cta-actions { flex-direction: column; align-items: center; }
}
@media(max-width:480px) {
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .despre-img-grid { grid-template-columns: 1fr; }
  .despre-img-grid img:first-child { margin-top: 0; }
}

/* Footer contact - nume sub numar telefon */
.footer-contact li { align-items: flex-start; }
.footer-contact li > div { display: flex; flex-direction: column; gap: 2px; }
.footer-contact-name { font-size: 0.75rem; color: rgba(255,255,255,0.3); font-style: italic; margin-top: 1px; }

/* ── HERO Google Reviews badge (absolute, right side above scroll indicator) ── */
.hero-google-rating {
  position: absolute;
  right: 3rem;
  bottom: 7.5rem;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.75rem 1.3rem 0.75rem 0.8rem;
  background: rgba(28,28,28,0.55);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  text-decoration: none;
  color: var(--white);
  transition: all var(--tr);
}
.hero-google-rating:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.32);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.hgr-google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  padding: 7px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.22);
}
.hgr-google svg { width: 28px; height: 28px; }
.hgr-content {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1;
}
.hgr-stars {
  display: inline-flex;
  gap: 3px;
  align-items: center;
}
.hgr-stars svg { width: 18px; height: 18px; }
.hgr-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.01em;
}
.hgr-label strong {
  color: var(--white);
  font-weight: 700;
  margin-right: 4px;
  font-size: 1.02rem;
}
.hgr-arrow {
  color: rgba(255,255,255,0.55);
  width: 18px;
  height: 18px;
  transition: transform var(--tr), color var(--tr);
  flex-shrink: 0;
}
.hero-google-rating:hover .hgr-arrow {
  color: var(--oak);
  transform: translate(2px,-2px);
}
@media (max-width: 900px) {
  .hero-google-rating { right: 1.25rem; bottom: 6.5rem; padding: 0.6rem 1.1rem 0.6rem 0.65rem; gap: 0.75rem; }
  .hgr-google { width: 38px; height: 38px; padding: 6px; }
  .hgr-google svg { width: 24px; height: 24px; }
  .hgr-stars svg { width: 15px; height: 15px; }
  .hgr-label { font-size: 0.85rem; }
  .hgr-label strong { font-size: 0.92rem; }
  .hgr-arrow { display: none; }
}
@media (max-width: 480px) {
  .hero-google-rating { right: 0.9rem; bottom: 5.5rem; padding: 0.5rem 0.9rem 0.5rem 0.55rem; gap: 0.6rem; }
  .hgr-google { width: 32px; height: 32px; padding: 5px; }
  .hgr-google svg { width: 20px; height: 20px; }
  .hgr-stars svg { width: 13px; height: 13px; }
  .hgr-label { font-size: 0.78rem; }
  .hgr-label strong { font-size: 0.84rem; }
}



/* ── MOBILE FIX HERO BADGE ── */
@media (max-width: 768px) {
  /* hero spacing & typography */
  #hero { height: auto; min-height: 0; max-height: none; }
  .hero-content { padding-top: 110px; padding-bottom: 2.5rem; align-items: flex-start; min-height: calc(100vh - 0px); }
  #hero h1 { font-size: clamp(2rem, 8vw, 2.6rem); line-height: 1.15; margin-bottom: 1rem; }
  #hero p { font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.75rem; }
  .hero-eyebrow { margin-bottom: 1rem; font-size: 0.68rem; }

  /* google rating: static under hero actions on mobile */
  .hero-google-rating {
    position: static;
    display: inline-flex;
    margin-top: 1.75rem;
    right: auto; bottom: auto;
    width: fit-content;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .hero-content { padding-top: 100px; }
  #hero h1 { font-size: clamp(1.85rem, 8vw, 2.2rem); }
  .hero-google-rating { padding: 0.55rem 1rem 0.55rem 0.6rem; }
}

/* ── NAV INNER — push hamburger to the right ── */
.nav-inner { justify-content: space-between; gap: 1rem; }
.nav-menu { margin-left: auto; }
.hamburger { margin-left: auto; }

/* ── HERO BADGE — force in-flow on mobile (overrides earlier !important-free rules) ── */
@media (max-width: 900px) {
  .hero-google-rating {
    position: static !important;
    right: auto !important;
    bottom: auto !important;
    display: flex !important;
    margin: 1.75rem 0 0 0 !important;
    width: fit-content;
    max-width: 100%;
  }
  .hero-content { padding-bottom: 3rem; }
}

/* ── HERO BADGE & DOTS spacing fix on mobile (≤900px) ── */
@media (max-width: 900px) {
  .hero-google-rating { margin-top: 1rem !important; }
  .hero-content { padding-bottom: 4.5rem !important; }
  .hero-dots { bottom: 1.25rem !important; }
}

/* ── HERO BADGE clears dots: badge is sibling of hero-content, needs bottom margin for dots ── */
@media (max-width: 900px) {
  .hero-google-rating { margin: 0 1.25rem 3.5rem 1.25rem !important; }
  .hero-content { padding-bottom: 1rem !important; }
  .hero-dots { bottom: 1.25rem !important; }
}

/* ── HERO content shrink-wrap on mobile (no extra empty space below buttons) ── */
@media (max-width: 900px) {
  .hero-content { min-height: 0 !important; padding-bottom: 0 !important; }
  .hero-google-rating { margin: 1.25rem 1.25rem 4rem 1.25rem !important; }
}

/* ── DARK SCROLLED HEADER (replace cream/light) ── */
#navbar.scrolled,
body:not(.home) #navbar {
  background: rgba(20, 22, 24, 0.92) !important;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px) !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25) !important;
}
#navbar.scrolled .nav-brand,
body:not(.home) #navbar .nav-brand { color: #FFFFFF !important; }
#navbar.scrolled .nav-brand span,
body:not(.home) #navbar .nav-brand span { color: var(--oak) !important; }
#navbar.scrolled .nav-link,
body:not(.home) #navbar .nav-link { color: rgba(255,255,255,0.85) !important; }
#navbar.scrolled .nav-link:hover,
#navbar.scrolled .nav-link.active,
body:not(.home) #navbar .nav-link:hover,
body:not(.home) #navbar .nav-link.active { color: #FFFFFF !important; }
#navbar.scrolled .hamburger span,
body:not(.home) #navbar .hamburger span { background: #FFFFFF !important; }
#navbar.scrolled .nav-cta,
body:not(.home) #navbar .nav-cta { background: var(--oak); color: #1c1c1c !important; }

/* ── MOBILE MENU — show logo at top ── */
.mobile-menu { padding: 1.5rem 2rem 3rem !important; }
.mobile-menu::before {
  content: "";
  display: block;
  width: 100%;
  height: 80px;
  background-image: url('https://urbanedge.ro/wp-content/themes/tema-custom/assets/images/logo.png');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 70px;
  margin-bottom: 2.5rem;
}
.mob-close { top: 2rem !important; right: 1.5rem !important; }