/* nav ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pearl: #F2F1ED; --black: #161616; --crimson: #710014;
  --white: #FFFFFF; --mid: #6A6A6A; --light: #ABABAB;
  --border: rgba(22,22,22,0.08); --border-s: rgba(22,22,22,0.16);
}

html { font-size: 16px; scroll-behavior: smooth; }
body { background: var(--white); color: var(--black); font-family: 'Red Hat Display', sans-serif; font-weight: 300; line-height: 1.6; overflow-x: hidden; }

/* nav ─── */
.site-topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 210;
  height: 38px; background: #4a000d;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 56px; gap: 24px;
}
.topbar-contact { display: flex; align-items: center; gap: 24px; }
.topbar-item { display: flex; align-items: center; gap: 7px; font-size: 10.5px; font-weight: 300; letter-spacing: 0.06em; color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.2s; white-space: nowrap; }
.topbar-item:hover { color: #fff; }
.topbar-item svg { width: 13px; height: 13px; flex-shrink: 0; }
.topbar-social { display: flex; align-items: center; gap: 16px; }
.topbar-social a { display: flex; align-items: center; color: rgba(255,255,255,0.88); transition: color 0.2s; }
.topbar-social a:hover { color: #fff; }
.topbar-social svg { width: 14px; height: 14px; }

.site-nav {
  position: fixed; top: 38px; left: 0; right: 0; z-index: 200;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 56px; height: 68px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(16px);
  border-bottom: 0.5px solid var(--border);
}
.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.logo-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--black); }
.logo-name { font-weight: 400; font-size: 13px; letter-spacing: 0.1em; color: var(--black); }
.logo-img { height: 36px; width: auto; display: block; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { font-size: 11px; font-weight: 400; letter-spacing: 0.13em; text-transform: uppercase; color: var(--mid); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active, .nav-links .current-menu-item > a { color: var(--black); }
.nav-cta { font-size: 11px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; color: var(--white); background: var(--crimson); text-decoration: none; padding: 10px 22px; transition: background 0.2s; }
.nav-cta:hover { background: #8a0018; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-hamburger span { width: 22px; height: 1px; background: var(--black); display: block; transition: all 0.3s; }
main { padding-top: 106px; }

/* mobile-nav ─── */
.mobile-nav { display: none; position: fixed; inset: 0; z-index: 190; background: var(--black); padding: 88px 32px 48px; flex-direction: column; justify-content: center; gap: 4px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 400; font-style: italic; color: rgba(255,255,255,0.4); text-decoration: none; padding: 12px 0; border-bottom: 0.5px solid rgba(255,255,255,0.08); transition: color 0.2s; }
.mobile-nav a:hover { color: var(--white); }
.mobile-nav .m-cta { font-family: 'Red Hat Display', sans-serif; font-size: 11px; font-style: normal; letter-spacing: 0.13em; text-transform: uppercase; color: var(--white); background: var(--crimson); padding: 16px 24px; text-align: center; margin-top: 24px; }
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* footer ─── */
footer { border-top: 0.5px solid var(--border); padding: 18px 56px; display: flex; justify-content: space-between; align-items: center; gap: 24px; min-height: 64px; }
.footer-copy { font-size: 11px; font-weight: 300; color: var(--light); white-space: nowrap; }
.footer-right { display: flex; align-items: center; gap: 0; flex-shrink: 0; }
.footer-legal { display: flex; align-items: center; gap: 20px; }
.footer-legal:empty { display: none; }
.footer-legal a { font-size: 11px; font-weight: 300; color: var(--mid); text-decoration: none; letter-spacing: 0.06em; transition: color 0.2s; white-space: nowrap; }
.footer-legal a:hover { color: var(--black); }
.footer-anpc { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.footer-legal:not(:empty) + .footer-anpc { padding-left: 24px; margin-left: 24px; border-left: 0.5px solid var(--border); }
.footer-anpc a { display: flex; align-items: center; opacity: 0.65; transition: opacity 0.2s; }
.footer-anpc a:hover { opacity: 1; }
.footer-anpc img { height: 38px; width: auto; display: block; }

/* animations ─── */
@keyframes heroZoom { to { transform: scale(1); } }
@keyframes slowzoom { to { transform: scale(1); } }
@keyframes rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* common elements ─── */
.eyebrow { display: flex; align-items: center; gap: 12px; font-size: 10px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--crimson); margin-bottom: 24px; }
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--crimson); }
h1 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(40px, 5vw, 68px); line-height: 0.95; letter-spacing: -0.03em; color: var(--black); margin-bottom: 24px; }
h1 em { font-style: italic; color: var(--crimson); }
.section-tag { font-size: 10px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--crimson); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.section-tag::before { content: ''; width: 20px; height: 1px; background: var(--crimson); }
.body-text { font-size: 15px; font-weight: 300; color: var(--mid); line-height: 1.82; margin-bottom: 16px; }
.btn-primary { font-size: 11px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; color: var(--white); background: var(--crimson); text-decoration: none; padding: 13px 26px; transition: background 0.2s; display: inline-block; }
.btn-primary:hover { background: #8a0018; }
.btn-text { font-size: 11px; font-weight: 400; letter-spacing: 0.13em; text-transform: uppercase; color: var(--mid); text-decoration: none; display: flex; align-items: center; gap: 7px; transition: color 0.2s; }
.btn-text:hover { color: var(--black); }
.btn-text::after { content: '→'; font-size: 13px; transition: transform 0.2s; }
.btn-text:hover::after { transform: translateX(3px); }
.btn-secondary { font-size: 11px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; color: var(--black); border: 0.5px solid var(--black); text-decoration: none; padding: 12px 24px; display: inline-block; transition: all 0.2s; }
.btn-secondary:hover { background: var(--black); color: var(--white); }
.btn-white { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--black); background: var(--white); text-decoration: none; padding: 16px 36px; flex-shrink: 0; transition: background 0.2s; }
.btn-white:hover { background: var(--pearl); }

/* ── HOMEPAGE ── */
.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 106px); border-bottom: 0.5px solid var(--border); }
.hero-photo { position: relative; overflow: hidden; border-right: 0.5px solid var(--border); background: var(--pearl); min-height: 560px; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; display: block; transform: scale(1.05); animation: heroZoom 10s ease forwards; }
.award-badge { position: absolute; bottom: 28px; left: 28px; z-index: 10; opacity: 0; animation: rise 0.7s ease 1s forwards; }
.award-badge-inner { background: rgba(255,255,255,0.88); backdrop-filter: blur(12px); border: 0.5px solid var(--border-s); padding: 11px 16px; display: flex; align-items: center; gap: 10px; }
.award-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--crimson); flex-shrink: 0; }
.award-text { font-size: 10px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid); }
.award-text strong { color: var(--black); font-weight: 500; }
.hero-text { padding: 72px 56px; display: flex; flex-direction: column; justify-content: flex-end; opacity: 0; animation: rise 0.9s ease 0.1s forwards; }
.hero-lead { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.82; max-width: 400px; margin-bottom: 40px; }
.hero-lead strong { color: var(--black); font-weight: 400; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-bottom: 52px; }
.hero-stats { display: flex; gap: 0; border-top: 0.5px solid var(--border); padding-top: 28px; }
.stat-item { flex: 1; }
.stat-item + .stat-item { border-left: 0.5px solid var(--border); padding-left: 28px; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 400; color: var(--black); line-height: 1; margin-bottom: 4px; }
.stat-num em { font-style: italic; color: var(--crimson); }
.stat-label { font-size: 10px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: var(--light); }

.why-section { padding: 100px 56px; border-bottom: 0.5px solid var(--border); }
.why-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 72px; }
.why-header h2 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(32px, 3.5vw, 52px); line-height: 1.0; color: var(--black); }
.why-header h2 em { font-style: italic; color: var(--crimson); }
.why-header p { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.85; max-width: 400px; }
.why-header p strong { color: var(--black); font-weight: 400; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 0.5px solid var(--border); }
.why-item { padding: 48px 0; border-right: 0.5px solid var(--border); padding-right: 48px; }
.why-item:nth-child(2) { padding-left: 48px; padding-right: 48px; }
.why-item:last-child { border-right: none; padding-left: 48px; padding-right: 0; }
.why-num { font-family: 'Playfair Display', serif; font-size: 16px; font-style: italic; color: var(--crimson); margin-bottom: 18px; }
.why-title { font-size: 15px; font-weight: 500; color: var(--black); margin-bottom: 10px; letter-spacing: -0.01em; }
.why-desc { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.75; }
.why-desc strong { color: var(--black); font-weight: 400; }
.why-desc em { font-style: italic; color: var(--crimson); }

.projects-section { padding: 0 56px 100px; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; padding: 72px 0 48px; border-bottom: 0.5px solid var(--border); margin-bottom: 48px; }
.section-mini { font-size: 10px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--crimson); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.section-mini::before { content: ''; width: 18px; height: 1px; background: var(--crimson); }
.section-header h2 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(28px, 3vw, 44px); line-height: 1.0; color: var(--black); }
.section-header h2 em { font-style: italic; color: var(--crimson); }
.see-all { font-size: 11px; font-weight: 400; letter-spacing: 0.13em; text-transform: uppercase; color: var(--mid); text-decoration: none; display: flex; align-items: center; gap: 8px; transition: color 0.2s; white-space: nowrap; }
.see-all::after { content: '→'; font-size: 13px; transition: transform 0.2s; }
.see-all:hover { color: var(--black); }
.see-all:hover::after { transform: translateX(4px); }
.projects-featured { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 2px; }
.feat-card { display: block; text-decoration: none; color: inherit; position: relative; overflow: hidden; background: var(--pearl); }
.feat-card.large { grid-row: span 2; }
.feat-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 8s ease, filter 0.4s ease; filter: brightness(0.82); }
.feat-card.large img { height: 700px; }
.feat-card.small img { height: 340px; }
.feat-card:hover img { transform: scale(1.04); filter: brightness(0.65); }
.feat-card-info { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; background: linear-gradient(to top, rgba(22,22,22,0.68) 0%, transparent 55%); }
.feat-cat { font-size: 10px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 7px; }
.feat-name { font-family: 'Playfair Display', serif; font-size: clamp(18px, 2vw, 28px); font-weight: 400; color: var(--white); line-height: 1.15; margin-bottom: 12px; }
.feat-name em { font-style: italic; }
.feat-meta { display: flex; gap: 12px; align-items: center; font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.45); }
.feat-meta .sep { color: rgba(255,255,255,0.2); }
.feat-arrow { position: absolute; top: 24px; right: 24px; width: 34px; height: 34px; border: 0.5px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 13px; opacity: 0; transform: translateY(-6px); transition: all 0.3s; }
.feat-card:hover .feat-arrow { opacity: 1; transform: translateY(0); color: var(--white); border-color: rgba(255,255,255,0.5); }

.social-proof { background: var(--pearl); border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); padding: 88px 56px; }
.social-proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.testimonial-rating { display: flex; gap: 3px; margin-bottom: 20px; }
.star { width: 11px; height: 11px; background: var(--crimson); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.quote-mark { font-family: 'Playfair Display', serif; font-size: 64px; font-style: italic; color: var(--crimson); line-height: 1; margin-bottom: -8px; opacity: 0.25; }
blockquote { font-family: 'Playfair Display', serif; font-size: clamp(17px, 2vw, 23px); font-style: italic; font-weight: 400; color: var(--black); line-height: 1.5; margin-bottom: 28px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-name { font-size: 13px; font-weight: 500; color: var(--black); margin-bottom: 2px; }
.author-desc { font-size: 11px; font-weight: 300; color: var(--light); }
.proof-right h3 { font-family: 'Playfair Display', serif; font-size: clamp(22px, 2.4vw, 34px); font-weight: 400; color: var(--black); line-height: 1.15; margin-bottom: 18px; }
.proof-right h3 em { font-style: italic; color: var(--crimson); }
.proof-right p { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.8; margin-bottom: 28px; }
.proof-right p strong { color: var(--black); font-weight: 400; }
.proof-right p em { font-style: italic; color: var(--crimson); }
.proof-highlights { display: flex; flex-direction: column; gap: 12px; }
.phi { display: flex; align-items: flex-start; gap: 12px; }
.phi-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--crimson); margin-top: 6px; flex-shrink: 0; }
.phi-text { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.6; }
.phi-text strong { color: var(--black); font-weight: 500; }

.process-section { padding: 100px 56px; border-bottom: 0.5px solid var(--border); }
.process-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 72px; }
.process-header h2 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(30px, 3.2vw, 48px); line-height: 1.0; color: var(--black); }
.process-header h2 em { font-style: italic; color: var(--crimson); }
.process-header p { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.82; margin-bottom: 20px; }
.process-header p strong { color: var(--black); font-weight: 400; }
.process-header p em { font-style: italic; color: var(--crimson); }
.process-header a { font-size: 11px; font-weight: 400; letter-spacing: 0.13em; text-transform: uppercase; color: var(--crimson); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: gap 0.2s; }
.process-header a:hover { gap: 12px; }
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 0.5px solid var(--border); }
.step-item { padding: 36px 0; border-right: 0.5px solid var(--border); padding-right: 28px; }
.step-item:nth-child(n+2) { padding-left: 28px; }
.step-item:last-child { border-right: none; }
.step-num { font-family: 'Playfair Display', serif; font-size: 13px; font-style: italic; color: var(--crimson); margin-bottom: 14px; display: block; }
.step-name { font-size: 13px; font-weight: 500; color: var(--black); margin-bottom: 7px; }
.step-desc { font-size: 12px; font-weight: 300; color: var(--light); line-height: 1.65; }
.step-desc strong { color: var(--black); font-weight: 400; }
.step-desc em { font-style: italic; color: var(--crimson); }

.about-strip { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 0.5px solid var(--border); }
.about-visual { position: relative; overflow: hidden; min-height: 520px; border-right: 0.5px solid var(--border); background: var(--pearl); }
.about-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; display: block; transition: transform 8s ease; }
.about-visual:hover img { transform: scale(1.03); }
.about-label { position: absolute; bottom: 24px; left: 24px; font-size: 10px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: var(--light); }
.about-content { padding: 72px 56px; display: flex; flex-direction: column; justify-content: center; }
.about-content h2 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(32px, 3.5vw, 52px); line-height: 0.95; letter-spacing: -0.03em; color: var(--black); margin-bottom: 24px; }
.about-content h2 em { font-style: italic; color: var(--crimson); }
.about-content p { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.82; margin-bottom: 14px; }
.about-content p strong { color: var(--black); font-weight: 400; }
.about-content p em { font-style: italic; color: var(--crimson); }
.about-credentials { display: flex; flex-direction: column; gap: 10px; margin: 28px 0; border-left: 2px solid var(--crimson); padding-left: 20px; }
.credential { font-size: 12px; font-weight: 300; color: var(--mid); line-height: 1.5; }
.credential strong { color: var(--black); font-weight: 500; display: block; font-size: 13px; }

.cta-section { background: var(--black); padding: 96px 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.cta-left h2 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(32px, 4vw, 56px); line-height: 0.95; letter-spacing: -0.03em; color: var(--white); margin-bottom: 24px; }
.cta-left h2 em { font-style: italic; color: rgba(255,255,255,0.3); }
.cta-left p { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.82; margin-bottom: 36px; max-width: 400px; }
.cta-left p strong { color: rgba(255,255,255,0.8); font-weight: 400; }
.cta-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.btn-cta { font-size: 11px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; color: var(--white); background: var(--crimson); text-decoration: none; padding: 14px 28px; transition: background 0.2s; display: inline-block; }
.btn-cta:hover { background: #8a0018; }
.cta-note { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.3); letter-spacing: 0.06em; }
.cta-box { border: 0.5px solid rgba(255,255,255,0.12); padding: 44px; }
.cta-box h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 400; font-style: italic; color: var(--white); margin-bottom: 14px; }
.cta-box p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.4); line-height: 1.75; margin-bottom: 24px; }
.cta-box p strong { color: rgba(255,255,255,0.75); font-weight: 400; }
.cta-box p em { font-style: italic; }
.cta-box ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.cta-box ul li { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.45); display: flex; align-items: center; gap: 10px; }
.cta-box ul li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--crimson); flex-shrink: 0; }

/* ── ARCHIVE (portofoliu) ── */
.page-hero { padding: 80px 56px 64px; border-bottom: 0.5px solid var(--border); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.page-hero h1 { font-size: clamp(44px, 6vw, 80px); margin-bottom: 0; }
.hero-right { text-align: right; }
.hero-right p { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.8; max-width: 340px; margin-left: auto; margin-bottom: 28px; }
.hero-stats-row { display: flex; gap: 40px; justify-content: flex-end; }
.hero-stats-row .stat-num { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 400; color: var(--black); line-height: 1; margin-bottom: 3px; }
.hero-stats-row .stat-label { font-size: 10px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: var(--light); }

.filters-bar { position: sticky; top: 68px; z-index: 90; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); border-bottom: 0.5px solid var(--border); padding: 0 56px; display: flex; align-items: center; justify-content: space-between; }
.filters-left { display: flex; gap: 0; }
.filter-btn { font-size: 11px; font-weight: 400; letter-spacing: 0.13em; text-transform: uppercase; color: var(--light); background: none; border: none; border-bottom: 2px solid transparent; padding: 18px 20px; cursor: pointer; transition: all 0.2s; position: relative; top: 0.5px; }
.filter-btn:first-child { padding-left: 0; }
.filter-btn:hover { color: var(--mid); }
.filter-btn.active { color: var(--black); font-weight: 500; border-bottom-color: var(--crimson); }
.filter-count { font-size: 10px; color: var(--light); margin-left: 5px; font-weight: 300; }
.filter-btn.active .filter-count { color: var(--crimson); }
.filters-right { font-size: 11px; font-weight: 300; color: var(--light); letter-spacing: 0.06em; }

.projects-section { padding: 48px 56px 96px; }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.project-card { display: block; text-decoration: none; color: inherit; opacity: 0; animation: fadeIn 0.5s ease forwards; }
.project-card:nth-child(1)  { animation-delay: 0.05s; }
.project-card:nth-child(2)  { animation-delay: 0.10s; }
.project-card:nth-child(3)  { animation-delay: 0.15s; }
.project-card:nth-child(4)  { animation-delay: 0.20s; }
.project-card:nth-child(5)  { animation-delay: 0.25s; }
.project-card:nth-child(6)  { animation-delay: 0.30s; }
.project-card:nth-child(7)  { animation-delay: 0.35s; }
.project-card:nth-child(8)  { animation-delay: 0.40s; }
.project-card:nth-child(9)  { animation-delay: 0.45s; }
.project-card:nth-child(10) { animation-delay: 0.50s; }
.project-card:nth-child(11) { animation-delay: 0.55s; }
.project-card:nth-child(12) { animation-delay: 0.60s; }
.card-img { position: relative; width: 100%; padding-bottom: 125%; overflow: hidden; background: var(--pearl); }
.card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 7s ease, filter 0.4s ease; filter: brightness(1); }
.project-card:hover .card-img img { transform: scale(1.05); filter: brightness(0.88); }
.card-badge { position: absolute; top: 16px; left: 16px; font-size: 9px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); background: rgba(22,22,22,0.55); padding: 5px 10px; backdrop-filter: blur(6px); z-index: 2; }
.card-badge.soon { background: rgba(113,0,20,0.6); }
.card-hover-overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 20px; opacity: 0; transition: opacity 0.35s ease; background: linear-gradient(transparent 40%, rgba(22,22,22,0.55)); z-index: 1; }
.project-card:hover .card-hover-overlay { opacity: 1; }
.hover-cta { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); display: flex; align-items: center; gap: 8px; }
.hover-cta::after { content: '→'; font-size: 13px; transition: transform 0.2s; }
.project-card:hover .hover-cta::after { transform: translateX(3px); }
.card-info { padding: 16px 0 0; }
.card-type { font-size: 10px; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase; color: var(--light); margin-bottom: 5px; }
.card-name { font-family: 'Playfair Display', serif; font-size: clamp(16px, 1.8vw, 20px); font-weight: 400; color: var(--black); line-height: 1.2; margin-bottom: 8px; }
.card-name em { font-style: italic; }
.card-meta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.card-meta span { font-size: 11px; font-weight: 300; color: var(--light); }
.card-meta .sep { color: var(--border-s); font-size: 10px; }
.card-meta .invest { color: var(--mid); }
.project-card.hidden { display: none; }
.no-results { display: none; grid-column: 1/-1; text-align: center; padding: 80px 0; }
.no-results.show { display: block; }
.no-results p { font-family: 'Playfair Display', serif; font-size: 24px; font-style: italic; color: var(--light); }
.cta-band { background: var(--black); padding: 72px 56px; display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.cta-band h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 48px); font-weight: 400; color: var(--white); line-height: 1.05; }
.cta-band h2 em { font-style: italic; color: rgba(255,255,255,0.4); }
.cta-band p { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.4); max-width: 360px; line-height: 1.8; margin-top: 10px; }

/* ── SINGLE PROJECT ── */
.hero-cover { position: relative; height: calc(100vh - 106px); overflow: hidden; }
.hero-cover img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.45); transform: scale(1.04); animation: slowzoom 12s ease forwards; object-position: center 40%; }
.hero-cover-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 64px 56px; }
.back-link { position: absolute; top: 32px; left: 56px; font-size: 11px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); text-decoration: none; display: flex; align-items: center; gap: 8px; transition: color 0.2s; }
.back-link:hover { color: rgba(255,255,255,0.85); }
.back-link::before { content: '←'; font-size: 13px; }
.hero-type { display: inline-flex; align-items: center; gap: 10px; font-size: 10px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.hero-type::before { content: ''; width: 20px; height: 1px; background: var(--crimson); }
.hero-cover h1 { font-size: clamp(44px, 6vw, 88px); color: var(--white); margin-bottom: 28px; max-width: 700px; }
.hero-cover h1 em { color: rgba(255,255,255,0.55); }
.hero-meta { display: flex; gap: 40px; flex-wrap: wrap; }
.meta-label { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 4px; }
.meta-value { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.85); }
.meta-etaje { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.5); }
.scroll-hint { position: absolute; bottom: 32px; right: 56px; font-size: 10px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.3); display: flex; align-items: center; gap: 8px; }
.scroll-hint::after { content: '↓'; font-size: 14px; animation: bounce 2s infinite; }

.intro-section { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 0.5px solid var(--border); }
.intro-left { padding: 80px 56px; border-right: 0.5px solid var(--border); opacity: 0; animation: rise 0.8s ease 0.1s forwards; }
.intro-right { padding: 80px 56px; opacity: 0; animation: rise 0.8s ease 0.25s forwards; }
.intro-left h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 2.8vw, 38px); font-weight: 400; line-height: 1.15; color: var(--black); margin-bottom: 24px; }
.intro-left h2 em { font-style: italic; }
.challenge-list { list-style: none; margin-top: 24px; }
.challenge-list li { display: flex; gap: 12px; padding: 12px 0; border-bottom: 0.5px solid var(--border); font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.6; }
.challenge-list li:first-child { border-top: 0.5px solid var(--border); }
.challenge-list li::before { content: '—'; color: var(--crimson); flex-shrink: 0; }
.client-box { margin-top: 36px; padding: 28px 32px; border: 0.5px solid var(--border); }
.client-box-label { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--light); margin-bottom: 16px; }
.client-profile { display: flex; flex-direction: column; gap: 10px; }
.profile-item { display: flex; gap: 12px; align-items: flex-start; }
.profile-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--crimson); flex-shrink: 0; margin-top: 6px; }
.profile-text { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.65; }
.duration-box { margin-top: 32px; background: var(--black); padding: 28px 32px; display: flex; align-items: center; gap: 24px; }
.duration-num { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 400; color: var(--white); line-height: 1; flex-shrink: 0; }
.duration-text { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.7; }
.duration-text strong { color: rgba(255,255,255,0.85); font-weight: 400; display: block; margin-bottom: 4px; font-size: 13px; }

.gallery-header { padding: 56px 56px 0; display: flex; align-items: flex-end; justify-content: space-between; border-top: 0.5px solid var(--border); }
.gallery-header h3 { font-family: 'Playfair Display', serif; font-size: clamp(24px, 2.5vw, 36px); font-weight: 400; color: var(--black); }
.gallery-header h3 em { font-style: italic; color: var(--crimson); }
.gallery-header p { font-size: 13px; font-weight: 300; color: var(--mid); max-width: 320px; text-align: right; line-height: 1.65; }
.phase-divider { padding: 24px 56px; display: flex; align-items: center; gap: 20px; border-top: 0.5px solid var(--border); background: var(--pearl); }
.phase-divider span { font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mid); }
.phase-line { flex: 1; height: 0.5px; background: var(--border-s); }

.gallery-grid-1 { display: grid; grid-template-columns: 1fr 1fr; height: 560px; margin-top: 32px; border-top: 0.5px solid var(--border); }
.gallery-grid-1 .g-item { position: relative; overflow: hidden; border-right: 0.5px solid var(--border); }
.gallery-grid-1 .g-item:last-child { border-right: none; }
.gallery-grid-2 { display: grid; grid-template-columns: repeat(3,1fr); height: 420px; border-top: 0.5px solid var(--border); }
.gallery-grid-2 .g-item { position: relative; overflow: hidden; border-right: 0.5px solid var(--border); }
.gallery-grid-2 .g-item:last-child { border-right: none; }
.gallery-grid-3 { display: grid; grid-template-columns: 1fr 1fr; height: 480px; border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); }
.gallery-grid-3 .g-item { position: relative; overflow: hidden; border-right: 0.5px solid var(--border); }
.gallery-grid-3 .g-item:last-child { border-right: none; }
.gallery-grid-4 { display: grid; grid-template-columns: repeat(3,1fr); height: 440px; border-top: 0.5px solid var(--border); }
.gallery-grid-4 .g-item { position: relative; overflow: hidden; border-right: 0.5px solid var(--border); }
.gallery-grid-4 .g-item:last-child { border-right: none; }
.gallery-grid-5 { display: grid; grid-template-columns: 2fr 1fr; height: 520px; border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); }
.gallery-grid-5 .g-item { position: relative; overflow: hidden; border-right: 0.5px solid var(--border); }
.gallery-grid-5 .g-item:last-child { border-right: none; }
.g-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 7s ease; }
.g-item:hover img { transform: scale(1.04); }
.g-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 24px; background: linear-gradient(transparent, rgba(22,22,22,0.65)); opacity: 0; transition: opacity 0.3s; }
.g-item:hover .g-label { opacity: 1; }
.g-label span { font-size: 10px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.85); }

.data-section { display: grid; grid-template-columns: repeat(5,1fr); border-bottom: 0.5px solid var(--border); }
.data-item { padding: 40px 36px; border-right: 0.5px solid var(--border); }
.data-item:last-child { border-right: none; }
.data-label { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--light); margin-bottom: 12px; }
.data-value { font-family: 'Playfair Display', serif; font-size: clamp(18px, 2vw, 26px); font-weight: 400; color: var(--black); line-height: 1.1; }
.data-sub { font-size: 11px; font-weight: 300; color: var(--mid); margin-top: 4px; }

.spaces-section { padding: 72px 56px; border-bottom: 0.5px solid var(--border); background: var(--pearl); }
.spaces-label { font-size: 10px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--light); margin-bottom: 36px; }
.spaces-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 0.5px solid var(--border); }
.space-item { padding: 24px 28px; border-right: 0.5px solid var(--border); background: var(--white); }
.space-item:last-child { border-right: none; }
.space-name { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--black); margin-bottom: 6px; }
.space-desc { font-size: 12px; font-weight: 300; color: var(--mid); line-height: 1.65; }

.next-section { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 0.5px solid var(--border); }
.next-cta { padding: 72px 56px; border-right: 0.5px solid var(--border); display: flex; flex-direction: column; justify-content: center; }
.next-cta h3 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3vw, 42px); font-weight: 400; line-height: 1.1; color: var(--black); margin-bottom: 16px; }
.next-cta h3 em { font-style: italic; color: var(--crimson); }
.next-cta p { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.8; max-width: 360px; margin-bottom: 32px; }
.next-project { position: relative; overflow: hidden; cursor: pointer; text-decoration: none; display: block; }
.next-project img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.42); transition: transform 7s ease; }
.next-project:hover img { transform: scale(1.04); }
.next-project-overlay { position: absolute; inset: 0; padding: 48px; display: flex; flex-direction: column; justify-content: flex-end; }
.next-label { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 12px; }
.next-title { font-family: 'Playfair Display', serif; font-size: clamp(24px, 2.5vw, 36px); font-weight: 400; font-style: italic; color: var(--white); margin-bottom: 8px; }
.next-meta { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.4); }
.next-arrow { position: absolute; top: 48px; right: 48px; font-size: 20px; color: rgba(255,255,255,0.4); transition: transform 0.3s, color 0.3s; }
.next-project:hover .next-arrow { transform: translateX(4px); color: var(--white); }

/* ── CONTACT ── */
.hero-intro { padding: 88px 56px 0; border-bottom: 0.5px solid var(--border); opacity: 0; animation: rise 0.9s ease 0.05s forwards; }
.hero-intro h1 { font-size: clamp(54px, 7.5vw, 104px); max-width: 860px; }
.hero-sub-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; padding: 44px 0 52px; }
.hero-body { font-size: 15px; font-weight: 300; color: var(--mid); line-height: 1.82; max-width: 460px; }
.hero-body strong { color: var(--black); font-weight: 400; }
.hero-body em { font-style: italic; color: var(--crimson); }
.hero-stats-contact { display: flex; gap: 48px; flex-shrink: 0; }
.stat { text-align: right; }
.stat .stat-num { font-size: 38px; }
.split { display: grid; grid-template-columns: 3fr 2fr; border-bottom: 0.5px solid var(--border); }
.steps-col { padding: 60px 56px; border-right: 0.5px solid var(--border); opacity: 0; animation: rise 0.7s ease 0.2s forwards; }
.col-label { font-size: 10px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--light); margin-bottom: 36px; }
.step { display: grid; grid-template-columns: 36px 1fr; gap: 0 18px; padding: 22px 0; border-bottom: 0.5px solid var(--border); }
.step:last-of-type { border-bottom: none; }
.step .step-num { font-family: 'Playfair Display', serif; font-size: 13px; font-style: italic; color: var(--crimson); padding-top: 2px; }
.step-title { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--black); margin-bottom: 6px; }
.step-desc { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.75; }
.phil-col { position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; opacity: 0; animation: rise 0.7s ease 0.3s forwards; min-height: 480px; }
.phil-col-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.38); transition: transform 8s ease; }
.phil-col:hover .phil-col-img { transform: scale(1.04); }
.phil-col-content { position: relative; z-index: 1; padding: 60px 52px; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; }
.phil-accent { width: 28px; height: 2px; background: var(--crimson); margin-bottom: 36px; }
.phil-col blockquote { font-size: clamp(17px, 2vw, 24px); color: var(--white); margin-bottom: 28px; }
.phil-col cite { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); font-style: normal; }
.phil-col-credit { position: absolute; top: 24px; right: 24px; z-index: 1; font-size: 10px; font-weight: 300; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.contact-wrap { display: grid; grid-template-columns: 2fr 3fr; }
.channels { padding: 60px 56px; border-right: 0.5px solid var(--border); opacity: 0; animation: rise 0.7s ease 0.1s forwards; }
.section-heading { font-size: 10px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--light); margin-bottom: 36px; padding-bottom: 16px; border-bottom: 0.5px solid var(--border); }
.channel { display: flex; align-items: flex-start; gap: 16px; padding: 20px 0; border-bottom: 0.5px solid var(--border); text-decoration: none; color: inherit; cursor: pointer; }
.channel:first-of-type { border-top: 0.5px solid var(--border); }
.channel-icon { width: 36px; height: 36px; border: 0.5px solid var(--border-s); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.2s; }
.channel:hover .channel-icon { background: var(--crimson); border-color: var(--crimson); }
.channel:hover .channel-icon svg { stroke: var(--white); }
.channel-icon svg { width: 15px; height: 15px; stroke: var(--black); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.2s; }
.channel-label { font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--light); margin-bottom: 3px; }
.channel-value { font-size: 14px; font-weight: 400; color: var(--black); margin-bottom: 2px; }
.channel-note { font-size: 12px; font-weight: 300; color: var(--mid); }
.channel-arrow { margin-left: auto; font-size: 13px; color: var(--light); padding-top: 10px; transition: color 0.2s, transform 0.2s; flex-shrink: 0; }
.channel:hover .channel-arrow { color: var(--crimson); transform: translateX(4px); }
.status { margin-top: 28px; display: flex; align-items: flex-start; gap: 10px; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: #4CAF50; flex-shrink: 0; margin-top: 5px; }
.status p { font-size: 12px; font-weight: 300; color: var(--mid); line-height: 1.7; }
.status p strong { color: var(--black); font-weight: 400; }
.form-side { padding: 60px 56px; background: var(--pearl); opacity: 0; animation: rise 0.7s ease 0.2s forwards; }
.form-group { margin-bottom: 16px; }
label { display: block; font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mid); margin-bottom: 7px; }
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%; padding: 11px 14px;
  background: var(--white); border: 0.5px solid var(--border-s); border-radius: 0;
  font-family: 'Red Hat Display', sans-serif; font-size: 14px; font-weight: 300;
  color: var(--black); outline: none; appearance: none; -webkit-appearance: none;
  transition: border-color 0.2s;
}
input::placeholder, textarea::placeholder { color: var(--light); }
input:focus, select:focus, textarea:focus { border-color: var(--crimson); }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23ABABAB' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-color: var(--white); padding-right: 36px; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.submit-btn { width: 100%; padding: 14px 32px; background: var(--black); color: var(--white); border: none; font-family: 'Red Hat Display', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; margin-top: 8px; transition: background 0.2s; }
.submit-btn:hover { background: var(--crimson); }
.form-note { font-size: 11px; font-weight: 300; color: var(--light); margin-top: 14px; line-height: 1.7; text-align: center; }
.form-note strong { color: var(--mid); font-weight: 400; }
.success { display: none; text-align: center; padding: 48px 0; }
.success.show { display: block; }
.success h3 { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 400; font-style: italic; color: var(--black); margin-bottom: 12px; }
.success p { font-size: 14px; font-weight: 300; color: var(--mid); }
.success p strong { color: var(--black); font-weight: 400; }

/* ── DESPRE ── */
.photo-credit { position: absolute; bottom: 24px; left: 24px; font-size: 10px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--light); }
.hero-subtitle { font-size: 13px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); margin-bottom: 36px; }
.hero-voice { margin-bottom: 36px; }
.voice-text { font-size: 15px; font-weight: 300; color: var(--mid); line-height: 1.82; margin-bottom: 14px; }
.voice-text strong { color: var(--black); font-weight: 400; }
.voice-text em { font-style: italic; color: var(--crimson); }
.voice-text:last-child { margin-bottom: 0; }
.philosophy-section { padding: 88px 56px; border-bottom: 0.5px solid var(--border); display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.phil-label { font-size: 10px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--light); margin-bottom: 20px; }
.phil-left h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3vw, 42px); font-weight: 400; line-height: 1.1; color: var(--black); }
.phil-left h2 em { font-style: italic; color: var(--crimson); }
.phil-right { display: flex; flex-direction: column; gap: 0; }
.phil-item { padding: 24px 0; border-bottom: 0.5px solid var(--border); display: flex; gap: 28px; }
.phil-item:first-child { border-top: 0.5px solid var(--border); }
.phil-num { font-family: 'Playfair Display', serif; font-size: 16px; font-style: italic; color: var(--crimson); min-width: 28px; flex-shrink: 0; padding-top: 2px; }
.phil-title { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--black); margin-bottom: 8px; }
.phil-body { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.78; }
.phil-body strong { color: var(--black); font-weight: 400; }
.phil-body em { font-style: italic; color: var(--crimson); }
.numbers-section { display: grid; grid-template-columns: repeat(5, 1fr); border-bottom: 0.5px solid var(--border); }
.number-item { padding: 48px 36px; border-right: 0.5px solid var(--border); }
.number-item:last-child { border-right: none; }
.number-big { font-family: 'Playfair Display', serif; font-size: clamp(36px, 4vw, 56px); font-weight: 400; color: var(--black); line-height: 1; margin-bottom: 8px; }
.number-label { font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--light); margin-bottom: 6px; }
.number-sub { font-size: 12px; font-weight: 300; color: var(--mid); line-height: 1.6; }
.expertise-section { display: grid; grid-template-columns: 1fr 2fr; gap: 0; border-bottom: 0.5px solid var(--border); }
.exp-left { padding: 64px 56px; border-right: 0.5px solid var(--border); display: flex; flex-direction: column; justify-content: center; }
.exp-left h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 2.8vw, 38px); font-weight: 400; line-height: 1.15; color: var(--black); margin-bottom: 16px; }
.exp-left h2 em { font-style: italic; }
.exp-left p { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.8; }
.exp-left p strong { color: var(--black); font-weight: 400; }
.exp-left p em { font-style: italic; color: var(--crimson); }
.exp-right { padding: 64px 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.exp-item { padding: 28px 0; border-bottom: 0.5px solid var(--border); padding-right: 40px; }
.exp-item:nth-child(odd) { border-right: 0.5px solid var(--border); }
.exp-item:nth-child(even) { padding-left: 40px; padding-right: 0; }
.exp-item:nth-last-child(-n+2) { border-bottom: none; }
.exp-icon { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--crimson); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.exp-icon::before { content: ''; width: 16px; height: 1px; background: var(--crimson); }
.exp-name { font-size: 14px; font-weight: 500; color: var(--black); margin-bottom: 6px; }
.exp-desc { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.7; }
.exp-desc strong { color: var(--black); font-weight: 400; }
.exp-desc em { font-style: italic; color: var(--crimson); }
.testimonials-section { background: var(--black); padding: 88px 56px; border-bottom: 0.5px solid var(--border); }
.t-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; }
.t-label { font-size: 10px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.25); }
.t-accent { width: 28px; height: 2px; background: var(--crimson); margin-top: 12px; }
.t-header p { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.35); max-width: 320px; text-align: right; line-height: 1.75; }
.t-header p strong { color: rgba(255,255,255,0.65); font-weight: 400; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.t-card { padding: 36px 32px; border-right: 0.5px solid rgba(255,255,255,0.08); }
.t-card:last-child { border-right: none; }
.t-quote { font-family: 'Playfair Display', serif; font-size: clamp(15px, 1.6vw, 19px); font-style: italic; font-weight: 400; color: var(--white); line-height: 1.6; margin-bottom: 24px; }
.t-quote strong { color: var(--white); font-weight: 500; }
.t-quote em { font-style: normal; }
.t-quote.placeholder { color: rgba(255,255,255,0.2); }
.t-name { font-size: 13px; font-weight: 500; color: var(--white); margin-bottom: 3px; }
.t-name.placeholder { color: rgba(255,255,255,0.2); font-style: italic; }
.t-role { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.3); }
.t-project { display: inline-block; margin-top: 12px; font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--crimson); border-bottom: 1px solid rgba(113,0,20,0.4); padding-bottom: 1px; }
.team-section { padding: 88px 56px; border-bottom: 0.5px solid var(--border); }
.team-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 56px; }
.team-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3vw, 42px); font-weight: 400; line-height: 1.1; color: var(--black); }
.team-header h2 em { font-style: italic; color: var(--crimson); }
.team-header p { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.8; align-self: end; }
.team-header p strong { color: var(--black); font-weight: 400; }
.team-header p em { font-style: italic; color: var(--crimson); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 0.5px solid var(--border); }
.team-member { border-right: 0.5px solid var(--border); }
.team-member:last-child { border-right: none; }
.member-photo { aspect-ratio: 3/4; overflow: hidden; background: var(--pearl); }
.member-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; filter: grayscale(10%); transition: filter 0.3s; }
.team-member:hover .member-photo img { filter: grayscale(0%); }
.member-info { padding: 20px 24px; border-top: 0.5px solid var(--border); }
.member-name { font-size: 14px; font-weight: 500; color: var(--black); margin-bottom: 3px; }
.member-role { font-size: 11px; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--crimson); margin-bottom: 8px; }
.member-desc { font-size: 12px; font-weight: 300; color: var(--mid); line-height: 1.65; }
.member-desc strong { color: var(--black); font-weight: 400; }
.member-desc em { font-style: italic; color: var(--crimson); }
.page-template-template-despre .cta-section { background: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.page-template-template-despre .cta-left { padding: 80px 56px; display: flex; flex-direction: column; justify-content: center; background: none; }
.page-template-template-despre .cta-left h2 { color: var(--black); }
.page-template-template-despre .cta-left h2 em { font-style: italic; color: var(--crimson); }
.page-template-template-despre .cta-left p { color: var(--mid); margin-bottom: 36px; }
.page-template-template-despre .cta-left p strong { color: var(--black); font-weight: 400; }
.page-template-template-despre .cta-right { padding: 80px 56px; background: var(--black); display: flex; flex-direction: column; justify-content: center; }
.page-template-template-despre .cta-right blockquote { font-family: 'Playfair Display', serif; font-size: clamp(18px, 2.2vw, 26px); font-style: italic; font-weight: 400; color: var(--white); line-height: 1.5; margin-bottom: 20px; }
.page-template-template-despre .cta-right cite { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.28); font-style: normal; }
.cta-accent { width: 28px; height: 2px; background: var(--crimson); margin-bottom: 32px; }

/* ── PROCES ── */
.page-template-template-proces .hero { min-height: 92vh; }
.page-template-template-proces .hero-left { padding: 80px 56px; display: flex; flex-direction: column; justify-content: flex-end; border-right: 0.5px solid var(--border); opacity: 0; animation: rise 0.9s ease 0.05s forwards; }
.hero-desc { font-size: 15px; font-weight: 300; color: var(--mid); line-height: 1.82; max-width: 400px; margin-bottom: 48px; }
.hero-desc strong { color: var(--black); font-weight: 400; }
.hero-desc em { font-style: italic; color: var(--crimson); }
.hero-stats-proces { display: flex; gap: 40px; padding-top: 28px; border-top: 0.5px solid var(--border); }
.page-template-template-proces .hero-right { position: relative; overflow: hidden; opacity: 0; animation: rise 0.9s ease 0.2s forwards; }
.hero-img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.45); }
.hero-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 56px; }
.promise-line { width: 28px; height: 2px; background: var(--crimson); margin-bottom: 28px; }
.hero-overlay blockquote { font-size: clamp(18px, 2.2vw, 26px); line-height: 1.45; color: var(--white); margin-bottom: 20px; }
.hero-overlay blockquote strong { color: var(--white); font-weight: 500; }
.hero-overlay cite { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); font-style: normal; }
.hero-credit { position: absolute; top: 28px; right: 28px; font-size: 10px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.35); }

.wants-section { padding: 88px 56px; border-bottom: 0.5px solid var(--border); opacity: 0; animation: rise 0.7s ease 0.1s forwards; }
.wants-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 72px; align-items: end; }
.wants-intro h2 { font-family: 'Playfair Display', serif; font-size: clamp(30px, 3.2vw, 44px); font-weight: 400; line-height: 1.1; color: var(--black); }
.wants-intro h2 em { font-style: italic; color: var(--crimson); }
.wants-intro p { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.8; max-width: 380px; }
.wants-intro p strong { color: var(--black); font-weight: 400; }
.wants-intro p em { font-style: italic; color: var(--crimson); }
.wants-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 0.5px solid var(--border); }
.want-item { padding: 40px 0; border-right: 0.5px solid var(--border); padding-right: 40px; }
.want-item:nth-child(2) { padding-left: 40px; padding-right: 40px; }
.want-item:last-child { border-right: none; padding-left: 40px; padding-right: 0; }
.want-big { font-family: 'Playfair Display', serif; font-size: clamp(34px, 3.8vw, 52px); font-weight: 400; font-style: italic; color: var(--black); line-height: 1; margin-bottom: 14px; display: block; }
.want-tag { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--crimson); margin-bottom: 12px; }
.want-desc { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.72; }
.want-desc strong { color: var(--black); font-weight: 400; }
.want-desc em { font-style: italic; color: var(--crimson); }
.want-answer { margin-top: 14px; padding: 11px 14px; border-left: 2px solid var(--crimson); font-size: 12px; font-weight: 400; color: var(--black); line-height: 1.6; }

.photo-band { display: grid; grid-template-columns: 3fr 2fr; height: 540px; border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); overflow: hidden; }
.photo-band-main { position: relative; overflow: hidden; height: 100%; }
.photo-band-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 6s ease; }
.photo-band-main:hover img { transform: scale(1.03); }
.photo-band-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 120px 36px 28px; background: linear-gradient(transparent, rgba(12,12,12,0.55) 40%, rgba(12,12,12,0.88) 100%); z-index: 1; }
.photo-band-caption p { font-size: 13px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.95); margin-bottom: 5px; }
.photo-band-caption span { font-size: 11.5px; font-weight: 300; color: rgba(255,255,255,0.72); letter-spacing: 0.06em; }
.photo-band-caption span strong { color: rgba(255,255,255,0.95); font-weight: 400; }
.photo-band-side { display: flex; flex-direction: column; height: 100%; }
.photo-band-side-img { flex: 1; overflow: hidden; position: relative; }
.photo-band-side-img:first-child { border-bottom: 0.5px solid rgba(255,255,255,0.12); }
.photo-band-side-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 6s ease; }
.photo-band-side-img:hover img { transform: scale(1.04); }

.etape-section { background: var(--pearl); padding: 88px 56px; border-bottom: 0.5px solid var(--border); opacity: 0; animation: rise 0.7s ease 0.1s forwards; }
.section-label { font-size: 10px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--light); margin-bottom: 52px; }
.etape-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.etapa { background: var(--white); padding: 32px 26px; border: 0.5px solid var(--border); transition: border-color 0.25s; }
.etapa:hover { border-color: var(--border-s); }
.etapa-num { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 400; font-style: italic; color: rgba(113,0,20,0.08); line-height: 1; margin-bottom: 16px; display: block; }
.etapa-title { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--black); margin-bottom: 2px; }
.etapa-sub { font-size: 10px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--crimson); margin-bottom: 16px; }
.etapa-desc { font-size: 12px; font-weight: 300; color: var(--mid); line-height: 1.72; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 0.5px solid var(--border); }
.etapa-desc strong { color: var(--black); font-weight: 400; }
.etapa-desc em { font-style: italic; color: var(--crimson); }
.livrabile { list-style: none; }
.livrabile li { font-size: 11px; font-weight: 300; color: var(--mid); padding: 5px 0; border-top: 0.5px solid var(--border); display: flex; align-items: flex-start; gap: 7px; line-height: 1.5; }
.livrabile li:first-child { border-top: none; }
.livrabile li::before { content: '→'; color: var(--crimson); flex-shrink: 0; font-size: 9px; margin-top: 2px; }

.impl-section { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 0.5px solid var(--border); }
.impl-photo { position: relative; overflow: hidden; min-height: 500px; }
.impl-photo img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.55); }
.impl-photo-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 48px; }
.impl-photo-tag { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--crimson); margin-bottom: 12px; }
.impl-photo-title { font-family: 'Playfair Display', serif; font-size: clamp(22px, 2.5vw, 32px); font-weight: 400; font-style: italic; color: var(--white); line-height: 1.2; margin-bottom: 8px; }
.impl-photo-title em { font-style: normal; }
.impl-photo-sub { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; }
.impl-right { padding: 64px 52px; display: flex; flex-direction: column; justify-content: center; }
.impl-right-title { font-family: 'Playfair Display', serif; font-size: clamp(20px, 2.2vw, 28px); font-weight: 400; color: var(--black); line-height: 1.2; margin-bottom: 36px; }
.impl-right-title em { font-style: italic; color: var(--crimson); }
.scenario-block { padding: 22px 0; }
.s-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 10px; }
.s-dot { width: 5px; height: 5px; border-radius: 50%; }
.s-title { font-size: 13px; font-weight: 600; color: var(--black); margin-bottom: 8px; }
.s-desc { font-size: 12px; font-weight: 300; color: var(--mid); line-height: 1.75; }
.s-desc strong { color: var(--black); font-weight: 400; }
.s-desc em { font-style: italic; color: var(--crimson); }
.pm-list { margin-top: 28px; padding-top: 28px; display: flex; flex-direction: column; gap: 0; }
.pm-item { display: flex; gap: 14px; padding: 13px 0; border-bottom: 0.5px solid var(--border); }
.pm-item:last-child { border-bottom: none; }
.pm-arrow { font-size: 11px; color: var(--crimson); flex-shrink: 0; margin-top: 2px; }
.pm-text { font-size: 12px; font-weight: 300; color: var(--mid); line-height: 1.65; }
.pm-text strong { color: var(--black); font-weight: 500; }

.cta-wrap { display: grid; grid-template-columns: 1fr 1fr; }
.cta-wrap .cta-left { padding: 80px 56px; border-right: 0.5px solid var(--border); display: flex; flex-direction: column; justify-content: center; }
.cta-wrap .cta-left h2 { font-family: 'Playfair Display', serif; font-size: clamp(34px, 3.8vw, 52px); font-weight: 400; line-height: 1.05; color: var(--black); margin-bottom: 20px; }
.cta-wrap .cta-left h2 em { font-style: italic; color: var(--crimson); }
.cta-wrap .cta-left p { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.8; max-width: 380px; margin-bottom: 36px; }
.cta-wrap .btn-primary { background: var(--black); }
.cta-wrap .btn-primary:hover { background: var(--crimson); }
.cta-right { padding: 80px 56px; background: var(--pearl); display: flex; flex-direction: column; gap: 28px; justify-content: center; }
.cta-step { display: flex; gap: 18px; align-items: flex-start; }
.cta-n { font-family: 'Playfair Display', serif; font-size: 13px; font-style: italic; color: var(--crimson); min-width: 20px; flex-shrink: 0; padding-top: 2px; }
.cta-step-title { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--black); margin-bottom: 4px; }
.cta-step-desc { font-size: 12px; font-weight: 300; color: var(--mid); line-height: 1.65; }
.cta-step-desc strong { color: var(--black); font-weight: 400; }
.cta-step-desc em { font-style: italic; color: var(--crimson); }

/* ── HERO AWARDS ── */
.hero-awards { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.award-tag { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.75); border: 0.5px solid rgba(255,255,255,0.25); padding: 5px 12px; }
.award-tag.crimson { border-color: var(--crimson); background: rgba(113,0,20,0.45); color: rgba(255,255,255,0.9); }

/* ── RESULT BIG (intro-right optional) ── */
.result-big { margin-top: 32px; background: var(--black); padding: 32px; }
.result-num { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 400; color: var(--white); line-height: 1; margin-bottom: 8px; }
.result-desc { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.7; }
.result-desc strong { color: rgba(255,255,255,0.85); font-weight: 400; }

/* ── ANCHOR STATEMENT ── */
.anchor-statement { padding: 0 56px; border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); display: flex; align-items: center; justify-content: space-between; min-height: 180px; }
.anchor-word { font-family: 'Playfair Display', serif; font-size: clamp(72px, 12vw, 160px); font-weight: 400; font-style: italic; color: var(--black); line-height: 1; letter-spacing: -0.04em; }
.anchor-right { max-width: 320px; text-align: right; }
.anchor-right p { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.75; }
.anchor-right span { display: block; margin-top: 12px; font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--crimson); }

/* ── RANDARE VS REALITATE (imagini statice alăturate) ── */
.comparator-section { border-bottom: 0.5px solid var(--border); }
.comparator-header { padding: 56px 56px 0; display: flex; align-items: flex-end; justify-content: space-between; }
.comparator-header h3 { font-family: 'Playfair Display', serif; font-size: clamp(24px, 2.5vw, 36px); font-weight: 400; color: var(--black); }
.comparator-header h3 em { font-style: italic; color: var(--crimson); }
.comparator-header p { font-size: 13px; font-weight: 300; color: var(--mid); max-width: 300px; text-align: right; line-height: 1.65; }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; height: 560px; border-top: 0.5px solid var(--border); }
.comparison-grid-second { border-top: 0.5px solid var(--border); }
.comparison-col { position: relative; overflow: hidden; border-right: 0.5px solid var(--border); }
.comparison-col:last-child { border-right: none; }
.comparison-col img { width: 100%; height: 100%; object-fit: cover; display: block; }
.comparison-label-bar { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 20px; background: linear-gradient(transparent, rgba(22,22,22,0.65)); display: flex; align-items: flex-end; }
.comparison-label-bar span { font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); }
.comparison-room { position: absolute; top: 20px; left: 20px; font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.65); z-index: 2; }
.comparison-coming { background: var(--black); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0; }
.comp-coming-text { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.35); text-align: center; line-height: 2; letter-spacing: 0.06em; }
.photos-strip { display: grid; grid-template-columns: repeat(4,1fr); height: 320px; border-top: 0.5px solid var(--border); }
.photos-strip .g-item { position: relative; overflow: hidden; border-right: 0.5px solid var(--border); }
.photos-strip .g-item:last-child { border-right: none; }

/* ── TESTIMONIAL PROIECT (dark bg) ── */
.project-testimonial { background: var(--black); padding: 88px 56px; display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: center; border-bottom: 0.5px solid var(--border); }
.pt-meta .pt-label { font-size: 10px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 20px; }
.pt-accent { width: 28px; height: 2px; background: var(--crimson); margin-bottom: 32px; }
.pt-name { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 4px; }
.pt-role { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.35); }
.pt-quote { font-family: 'Playfair Display', serif; font-size: clamp(18px, 2.2vw, 26px); font-style: italic; font-weight: 400; color: var(--white); line-height: 1.55; }

/* ── TIMELINE PROIECT ── */
.timeline-section { border-bottom: 0.5px solid var(--border); }
.timeline-header { padding: 56px 56px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 48px; }
.timeline-header h3 { font-family: 'Playfair Display', serif; font-size: clamp(24px, 2.5vw, 36px); font-weight: 400; color: var(--black); }
.timeline-header h3 em { font-style: italic; color: var(--crimson); }
.timeline-header p { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.8; align-self: end; }
.timeline-track { display: grid; grid-template-columns: repeat(5,1fr); border-top: 0.5px solid var(--border); }
.tl-phase { padding: 36px 32px 40px; border-right: 0.5px solid var(--border); position: relative; }
.tl-phase:last-child { border-right: none; }
.tl-phase::before { content: ''; position: absolute; top: 0; left: 32px; right: 32px; height: 2px; background: var(--border); }
.tl-phase.done::before { background: var(--crimson); }
.tl-num { font-family: 'Playfair Display', serif; font-size: 11px; font-style: italic; color: var(--crimson); margin-bottom: 20px; display: block; margin-top: 16px; }
.tl-phase-name { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--black); margin-bottom: 4px; }
.tl-duration { font-size: 12px; font-weight: 400; color: var(--crimson); margin-bottom: 16px; }
.tl-deliverable { font-size: 12px; font-weight: 300; color: var(--mid); line-height: 1.65; margin-bottom: 12px; }
.tl-livrabil { list-style: none; }
.tl-livrabil li { font-size: 11px; font-weight: 300; color: var(--light); padding: 4px 0; border-top: 0.5px solid var(--border); display: flex; gap: 6px; line-height: 1.5; }
.tl-livrabil li:first-child { border-top: none; }
.tl-livrabil li::before { content: '→'; color: var(--crimson); font-size: 9px; flex-shrink: 0; margin-top: 2px; }
.timeline-total { padding: 28px 56px; background: var(--pearl); display: flex; align-items: center; justify-content: space-between; border-top: 0.5px solid var(--border); }
.tt-label { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--light); }
.tt-value { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 400; color: var(--black); }
.tt-note { font-size: 13px; font-weight: 300; color: var(--mid); max-width: 400px; text-align: right; line-height: 1.65; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .data-section { grid-template-columns: repeat(3,1fr); }
  .timeline-track { grid-template-columns: 1fr 1fr; }
  .tl-phase:nth-child(2) { border-right: none; }
  .tl-phase:nth-child(n+3) { border-top: 0.5px solid var(--border); }
  .tl-phase:nth-child(4), .tl-phase:nth-child(5) { border-right: none; }
  .spaces-grid { grid-template-columns: 1fr 1fr; }
  .spaces-grid .space-item:nth-child(2) { border-right: none; }
  .spaces-grid .space-item:nth-child(3) { border-top: 0.5px solid var(--border); }
  .spaces-grid .space-item:nth-child(4) { border-top: 0.5px solid var(--border); border-right: none; }
  .data-item:nth-child(3n) { border-right: none; }
  .data-item:nth-child(n+4) { border-top: 0.5px solid var(--border); }
}
@media (max-width: 1024px) {
  .site-topbar { display: none; }
  .site-nav { padding: 0 32px; top: 0; }
  main { padding-top: 68px; }
  .hero { min-height: calc(100vh - 68px); }
  .hero-cover { height: calc(100vh - 68px); }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-photo { min-height: 55vw; }
  .hero-text { padding: 48px 32px; }
  .why-section, .process-section, .projects-section, .social-proof, .cta-section { padding-left: 32px; padding-right: 32px; }
  .why-header, .process-header { grid-template-columns: 1fr; gap: 24px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-item:nth-child(3) { grid-column: span 2; border-right: none; border-top: 0.5px solid var(--border); padding-left: 0; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .step-item:nth-child(2) { border-right: none; }
  .step-item:nth-child(n+3) { border-top: 0.5px solid var(--border); }
  .step-item:nth-child(4), .step-item:nth-child(5) { border-right: none; }
  .about-strip { grid-template-columns: 1fr; }
  .about-visual { min-height: 360px; border-right: none; border-bottom: 0.5px solid var(--border); }
  .about-content { padding: 48px 32px; }
  .social-proof-grid { grid-template-columns: 1fr; gap: 48px; }
  .cta-section { grid-template-columns: 1fr; gap: 48px; }
  .projects-featured { grid-template-columns: 1fr; }
  .feat-card.large { grid-row: span 1; }
  .feat-card.large img, .feat-card.small img { height: 280px; }
  footer { flex-direction: column; gap: 16px; align-items: flex-start; padding: 28px 32px; }
  .footer-right { flex-wrap: wrap; gap: 16px; }
  .footer-legal:not(:empty) + .footer-anpc { padding-left: 0; margin-left: 0; border-left: none; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 840px) {
  .site-nav { padding: 0 24px; }
  .page-hero { grid-template-columns: 1fr; gap: 32px; padding: 56px 24px 48px; }
  .hero-right { text-align: left; }
  .hero-stats-row { justify-content: flex-start; }
  .filters-bar { padding: 0 24px; overflow-x: auto; }
  .filters-right { display: none; }
  .projects-section { padding: 32px 24px 64px; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 56px 24px; gap: 28px; }
  .back-link { left: 24px; }
  .hero-cover-overlay { padding: 40px 24px; }
  .scroll-hint { right: 24px; }
  .intro-section, .next-section { grid-template-columns: 1fr; }
  .intro-left { border-right: none; border-bottom: 0.5px solid var(--border); padding: 56px 24px; }
  .intro-right, .next-cta { padding: 56px 24px; }
  .next-cta { border-right: none; border-bottom: 0.5px solid var(--border); }
  .gallery-header { flex-direction: column; align-items: flex-start; gap: 12px; padding: 40px 24px 0; }
  .gallery-header p { text-align: left; }
  .gallery-grid-1, .gallery-grid-2, .gallery-grid-3, .gallery-grid-4, .gallery-grid-5 { grid-template-columns: 1fr; height: auto; }
  .gallery-grid-1 .g-item, .gallery-grid-2 .g-item, .gallery-grid-3 .g-item, .gallery-grid-4 .g-item, .gallery-grid-5 .g-item { height: 280px; border-right: none; border-bottom: 0.5px solid var(--border); }
  .phase-divider { padding: 20px 24px; }
  .spaces-section { padding: 48px 24px; }
  .spaces-grid { grid-template-columns: 1fr; }
  .spaces-grid .space-item { border-right: none; border-bottom: 0.5px solid var(--border); }
  .data-section { grid-template-columns: 1fr 1fr; }
  .data-item:nth-child(n+3) { border-top: 0.5px solid var(--border); }
  .data-item:nth-child(even) { border-right: none; }
  .hero-meta { gap: 20px; }
  .next-project { min-height: 320px; }
  .anchor-statement { padding: 40px 24px; flex-direction: column; align-items: flex-start; gap: 20px; min-height: auto; }
  .anchor-right { text-align: left; max-width: 100%; }
  .comparator-header { flex-direction: column; align-items: flex-start; gap: 16px; padding: 40px 24px 0; }
  .comparator-header p { text-align: left; max-width: 100%; }
  .comparison-grid { grid-template-columns: 1fr; height: auto; }
  .comparison-col { height: 360px; border-right: none; border-bottom: 0.5px solid var(--border); }
  .comparison-col:last-child { border-bottom: none; }
  .photos-strip { grid-template-columns: 1fr 1fr; height: auto; }
  .photos-strip .g-item { height: 200px; }
  .photos-strip .g-item:nth-child(2) { border-right: none; }
  .photos-strip .g-item:nth-child(n+3) { border-top: 0.5px solid var(--border); }
  .project-testimonial { grid-template-columns: 1fr; gap: 32px; padding: 56px 24px; }
  .timeline-header { grid-template-columns: 1fr; gap: 16px; padding: 40px 24px 0; }
  .timeline-track { grid-template-columns: 1fr; }
  .tl-phase { border-right: none; border-bottom: 0.5px solid var(--border); }
  .timeline-total { flex-direction: column; gap: 12px; align-items: flex-start; padding: 28px 24px; }
  .tt-note { text-align: left; }
  .hero-intro { padding: 56px 24px 0; }
  .hero-sub-row { flex-direction: column; align-items: flex-start; padding: 28px 0 36px; }
  .split { grid-template-columns: 1fr; }
  .steps-col { padding: 44px 24px; border-right: none; border-bottom: 0.5px solid var(--border); }
  .phil-col { min-height: 320px; }
  .phil-col-content { padding: 36px 24px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .channels { padding: 44px 24px; border-right: none; border-bottom: 0.5px solid var(--border); }
  .form-side { padding: 44px 24px; }
}
@media (max-width: 640px) {
  .site-nav { padding: 0 20px; }
  .hero-text { padding: 40px 20px; }
  .why-section, .process-section, .social-proof, .cta-section { padding-left: 20px; padding-right: 20px; }
  .why-grid, .process-steps { grid-template-columns: 1fr; }
  .why-item, .step-item { border-right: none; padding-left: 0 !important; padding-right: 0 !important; border-top: 0.5px solid var(--border); }
  .why-item:first-child, .step-item:first-child { border-top: none; }
  .why-item:nth-child(3) { grid-column: span 1; }
  .anchor-word { font-size: clamp(40px, 11vw, 72px); }
  .comparison-col { height: 260px; }
  .gallery-grid-1 .g-item, .gallery-grid-2 .g-item, .gallery-grid-3 .g-item, .gallery-grid-4 .g-item, .gallery-grid-5 .g-item { height: 220px; }
  .intro-left, .intro-right, .next-cta { padding: 40px 20px; }
  .hero-meta { gap: 16px; }
}
@media (max-width: 480px) {
  .projects-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1100px) {
  .numbers-section { grid-template-columns: repeat(3, 1fr); }
  .number-item:nth-child(n+4) { border-top: 0.5px solid var(--border); }
  .etape-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .wants-grid { grid-template-columns: 1fr; }
  .want-item, .want-item:nth-child(2), .want-item:last-child { border-right: none; border-bottom: 0.5px solid var(--border); padding: 28px 0; }
  .want-item:last-child { border-bottom: none; }
  .photo-band { height: 400px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-member:nth-child(2) { border-right: none; }
  .team-member:nth-child(3) { border-top: 0.5px solid var(--border); }
  .team-member:nth-child(4) { border-top: 0.5px solid var(--border); border-right: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .t-card { border-right: none; border-bottom: 0.5px solid rgba(255,255,255,0.08); }
  .t-card:last-child { border-bottom: none; }
  .expertise-section { grid-template-columns: 1fr; }
  .exp-left { border-right: none; border-bottom: 0.5px solid var(--border); }
}
@media (max-width: 840px) {
  .philosophy-section { grid-template-columns: 1fr; gap: 40px; }
  .numbers-section { grid-template-columns: 1fr 1fr; }
  .number-item:nth-child(n+3) { border-top: 0.5px solid var(--border); }
  .number-item:nth-child(odd) { border-right: 0.5px solid var(--border); }
  .number-item:nth-child(even) { border-right: none; }
  .number-item:last-child:nth-child(odd) { grid-column: 1 / -1; border-right: none; }
  .page-template-template-despre .hero { grid-template-columns: 1fr; }
  .page-template-template-despre .hero-photo { min-height: 560px; border-right: none; border-bottom: 0.5px solid var(--border); }
  .page-template-template-despre .hero-photo img { object-fit: cover; object-position: center top !important; }
  .page-template-template-despre .hero-text { padding: 48px 24px; }
  .team-section { padding: 56px 24px; }
  .team-header { grid-template-columns: 1fr; gap: 24px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .exp-left, .exp-right { padding: 48px 24px; }
  .exp-right { grid-template-columns: 1fr; }
  .exp-item:nth-child(odd) { border-right: none; }
  .exp-item { padding-left: 0 !important; padding-right: 0 !important; }
  .philosophy-section { padding: 56px 24px; }
  .wants-section, .etape-section { padding: 56px 24px; }
  .wants-intro { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .etape-grid { grid-template-columns: 1fr; }
  .photo-band { grid-template-columns: 1fr; height: auto; }
  .photo-band-main { height: 280px; }
  .photo-band-side { flex-direction: row; height: 180px; }
  .photo-band-side-img:first-child { border-bottom: none; border-right: 0.5px solid rgba(255,255,255,0.12); }
  .impl-section { grid-template-columns: 1fr; }
  .impl-photo { min-height: 320px; }
  .impl-right { padding: 48px 24px; }
  .cta-wrap { grid-template-columns: 1fr; }
  .cta-wrap .cta-left { padding: 56px 24px; border-right: none; border-bottom: 0.5px solid var(--border); }
  .cta-right { padding: 48px 24px; }
  .page-template-template-despre .cta-section { grid-template-columns: 1fr; }
  .page-template-template-despre .cta-left { padding: 56px 24px; border-right: none; border-bottom: 0.5px solid var(--border); }
  .page-template-template-despre .cta-right { padding: 56px 24px; }
  .page-template-template-proces .hero { grid-template-columns: 1fr; min-height: auto; }
  .page-template-template-proces .hero-left { padding: 56px 24px; border-right: none; border-bottom: 0.5px solid var(--border); }
  .page-template-template-proces .hero-right { min-height: 320px; }
  /* Ce facem — responsive rules moved after desktop CSS to fix cascade order */
}

/* ═══════════════════════════════════════════════════
   PAGE TEMPLATE — CE FACEM
   ═══════════════════════════════════════════════════ */

/* Hero video side */
.hero-video-side { position: relative; overflow: hidden; border-right: 0.5px solid var(--border); background: var(--black); display: flex; align-items: center; justify-content: center; }
.video-bg { position: absolute; inset: 0; }
.video-bg-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-play-trigger { position: relative; z-index: 2; background: none; border: none; cursor: pointer; padding: 0; display: flex; align-items: center; justify-content: center; }
.video-play-circle { width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,0.18); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.35); display: flex; align-items: center; justify-content: center; color: #fff; transition: background 0.25s, transform 0.25s; }
.video-play-trigger:hover .video-play-circle { background: rgba(255,255,255,0.30); transform: scale(1.08); }
.video-play-trigger svg { margin-left: 3px; }
.video-placeholder { width: 100%; height: 100%; min-height: 560px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; background: var(--black); }

/* modal YouTube */
.yt-modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; visibility: hidden; opacity: 0; transition: opacity 0.3s, visibility 0.3s; }
.yt-modal.open { visibility: visible; opacity: 1; }
.yt-modal-overlay { position: absolute; inset: 0; background: rgba(10,10,10,0.88); backdrop-filter: blur(6px); cursor: pointer; }
.yt-modal-box { position: relative; z-index: 1; width: min(880px, 92vw); }
.yt-modal-close { position: absolute; top: -44px; right: 0; background: none; border: none; cursor: pointer; color: rgba(255,255,255,0.7); padding: 8px; transition: color 0.2s; }
.yt-modal-close:hover { color: #fff; }
.yt-modal-player { position: relative; width: 100%; padding-bottom: 56.25%; background: var(--black); }
.yt-modal-player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.play-btn { width: 72px; height: 72px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; background: rgba(255,255,255,0.05); }
.play-btn:hover { background: rgba(255,255,255,0.12); }
.play-btn svg { width: 22px; height: 22px; fill: white; margin-left: 4px; }
.video-caption { font-size: 10px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.video-badge { position: absolute; bottom: 28px; left: 28px; background: rgba(255,255,255,0.08); backdrop-filter: blur(12px); border: 0.5px solid rgba(255,255,255,0.15); padding: 10px 16px; display: flex; align-items: center; gap: 10px; }
.video-badge-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--crimson); }
.video-badge-text { font-size: 10px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.video-badge-text strong { color: white; font-weight: 500; }

/* Tabel comparativ */
.table-section { padding: 88px 56px 0; border-bottom: 0.5px solid var(--border); }
.table-header { margin-bottom: 52px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.table-header h2 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(30px, 3.2vw, 46px); line-height: 1.0; color: var(--black); }
.table-header h2 em { font-style: italic; color: var(--crimson); }
.table-header p { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.82; max-width: 400px; }
.comparison-table { width: 100%; border-collapse: collapse; border: 0.5px solid var(--border-s); }
.comparison-table th, .comparison-table td { text-align: left; vertical-align: middle; border-right: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table th:last-child, .comparison-table td:last-child { border-right: none; }
.comparison-table thead tr { background: var(--black); }
.comparison-table thead th { position: sticky; top: 106px; z-index: 10; box-shadow: 0 1px 0 rgba(255,255,255,0.08), 0 2px 8px rgba(0,0,0,0.18); }
.th-label { padding: 16px 24px; font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.4); width: 220px; border-right-color: rgba(255,255,255,0.08) !important; border-bottom: none !important; background: var(--black); }
.th-service { padding: 16px 20px; border-right-color: rgba(255,255,255,0.08) !important; border-bottom: none !important; background: var(--black); }
.th-label-name { font-family: 'Playfair Display', serif; font-weight: 400; font-size: 13px; font-style: italic; color: rgba(255,255,255,0.85); line-height: 1.2; margin-bottom: 5px; }
.th-label-sub { font-size: 9px; font-weight: 400; letter-spacing: 0.12em; color: rgba(255,255,255,0.5); text-transform: uppercase; }
.th-service-name { font-family: 'Playfair Display', serif; font-weight: 400; font-size: 14px; color: var(--white); line-height: 1.25; margin-bottom: 6px; }
.th-service-name em { font-style: italic; color: rgba(255,255,255,0.7); }
.th-service-fit { font-size: 10px; font-weight: 400; letter-spacing: 0.1em; color: rgba(255,255,255,0.55); }
.th-service.highlight { background: rgba(80,0,14,0.9) !important; border-right-color: rgba(113,0,20,0.3) !important; position: sticky; top: 106px; }
.th-service.highlight::after { content: 'Cel mai ales'; position: absolute; top: -1px; right: 12px; font-size: 9px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; background: var(--crimson); color: white; padding: 3px 8px; }
.td-label { padding: 11px 24px; font-size: 12px; font-weight: 400; letter-spacing: 0.02em; text-transform: none; color: var(--mid); background: var(--pearl); width: 220px; line-height: 1.5; vertical-align: middle; }
.td-label.group-label { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--black); background: #e3e2dd; padding: 8px 24px; border-bottom-color: var(--border-s) !important; }
.td-cell { padding: 11px 16px; font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.6; vertical-align: middle; text-align: center; }
.td-cell.highlight-col { background: rgba(113,0,20,0.03); }
.td-cell strong { color: var(--black); font-weight: 500; }
.check { color: var(--crimson); font-size: 14px; font-weight: 600; line-height: 1; }
.cross { color: rgba(22,22,22,0.2); font-size: 16px; font-weight: 300; line-height: 1; display: inline-block; }
.partial { display: inline-block; color: var(--black); font-size: 10px; font-weight: 400; letter-spacing: 0.04em; background: rgba(22,22,22,0.05); padding: 3px 8px; line-height: 1.5; }
.td-cta { padding: 14px 16px; vertical-align: middle; text-align: center; }
.td-cta.highlight-col { background: rgba(113,0,20,0.03); }
.btn-table-cta { font-size: 10px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; color: var(--white); background: var(--crimson); text-decoration: none; padding: 11px 18px; display: inline-block; transition: background 0.2s; white-space: nowrap; }
.btn-table-cta:hover { background: #8a0018; }
.btn-table-cta.secondary { background: var(--black); }
.btn-table-cta.secondary:hover { background: #333; }
.table-note { padding: 20px 24px; background: var(--pearl); border: 0.5px solid var(--border-s); border-top: none; font-size: 12px; font-weight: 300; color: var(--mid); line-height: 1.7; display: flex; align-items: center; gap: 12px; }
.table-note-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--crimson); flex-shrink: 0; }

/* Servicii — detalii */
.services-detail-header { padding: 88px 56px 0; }
.sdh-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 72px; }
.sdh-inner h2 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(30px, 3.2vw, 46px); line-height: 1.0; color: var(--black); }
.sdh-inner h2 em { font-style: italic; color: var(--crimson); }
.sdh-inner p { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.82; max-width: 400px; }
.services-stack { padding: 0 56px; display: flex; flex-direction: column; gap: 0; border-top: 0.5px solid var(--border); }
.service-card { display: grid; grid-template-columns: 280px 1fr auto; gap: 0; border-bottom: 0.5px solid var(--border); padding: 52px 0; align-items: start; transition: background 0.2s; }
.service-card:hover { background: var(--pearl); margin: 0 -56px; padding-left: 56px; padding-right: 56px; }
.service-tag { display: inline-flex; align-items: center; gap: 7px; font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--crimson); margin-bottom: 16px; }
.service-tag::before { content: ''; width: 14px; height: 1px; background: var(--crimson); }
.service-num { font-family: 'Playfair Display', serif; font-size: 64px; font-weight: 400; line-height: 0.85; color: var(--border-s); letter-spacing: -0.04em; margin-bottom: 16px; }
.service-name { font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(20px, 2.2vw, 28px); line-height: 1.1; color: var(--black); margin-bottom: 8px; }
.service-name em { font-style: italic; color: var(--crimson); }
.service-fit { font-size: 11px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--light); }
.service-middle { padding: 0 60px; border-left: 0.5px solid var(--border); border-right: 0.5px solid var(--border); }
.service-desc { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.85; margin-bottom: 28px; max-width: 520px; }
.service-desc strong { color: var(--black); font-weight: 400; }
.service-includes-label { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--light); margin-bottom: 16px; }
.service-includes { display: flex; flex-direction: column; gap: 10px; }
.service-include-item { display: flex; align-items: flex-start; gap: 12px; }
.si-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--crimson); flex-shrink: 0; margin-top: 7px; }
.si-text { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.65; }
.si-text strong { color: var(--black); font-weight: 500; }
.service-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(113,0,20,0.06); border: 0.5px solid rgba(113,0,20,0.18); padding: 6px 12px; margin-top: 24px; font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--crimson); }
.service-badge-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--crimson); }
.service-right { padding-left: 60px; display: flex; flex-direction: column; align-items: flex-start; gap: 16px; min-width: 200px; }
.btn-service-cta { font-size: 11px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; color: var(--white); background: var(--crimson); text-decoration: none; padding: 12px 22px; transition: background 0.2s; white-space: nowrap; display: inline-block; }
.btn-service-cta:hover { background: #8a0018; }
.btn-service-secondary { font-size: 11px; font-weight: 400; letter-spacing: 0.13em; text-transform: uppercase; color: var(--mid); text-decoration: none; display: flex; align-items: center; gap: 7px; transition: color 0.2s; }
.btn-service-secondary:hover { color: var(--black); }
.btn-service-secondary::after { content: '→'; font-size: 13px; }
.service-price-note { font-size: 11px; font-weight: 300; color: var(--light); line-height: 1.5; }
.service-card.consultanta { background: var(--pearl); border: 0.5px solid var(--border-s); margin: 0 -56px; padding: 52px 56px; border-bottom: none; }
.service-card.consultanta:hover { background: #ebe9e4; }
.consult-tag { display: inline-flex; align-items: center; gap: 7px; font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); background: var(--crimson); padding: 5px 10px; margin-bottom: 16px; }

/* Proof strip */
.proof-strip { padding: 72px 56px; background: var(--black); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.proof-strip blockquote { color: var(--white); font-size: clamp(18px, 2vw, 26px); }
.proof-author { font-size: 11px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.65); }
.proof-author strong { color: rgba(255,255,255,0.9); font-weight: 500; }
.proof-strip-facts { display: flex; flex-direction: column; gap: 0; }
.proof-fact { padding: 20px 0; border-bottom: 0.5px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; align-items: center; }
.proof-fact:first-child { border-top: 0.5px solid rgba(255,255,255,0.12); }
.proof-fact-label { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.7); letter-spacing: 0.08em; }
.proof-fact-val { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 400; color: var(--white); font-style: italic; }

/* FAQ */
.faq-section { padding: 88px 56px; border-top: 0.5px solid var(--border); display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.faq-header { position: sticky; top: 130px; }
.faq-header h2 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(28px, 3vw, 40px); line-height: 1.05; color: var(--black); margin-top: 14px; }
.faq-header h2 em { font-style: italic; color: var(--crimson); }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 0.5px solid var(--border); cursor: pointer; }
.faq-item:first-child { border-top: 0.5px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; padding: 24px 0; font-size: 14px; font-weight: 400; color: var(--black); line-height: 1.5; transition: color 0.2s; }
.faq-item:hover .faq-q { color: var(--crimson); }
.faq-icon { font-size: 20px; font-weight: 300; color: var(--light); flex-shrink: 0; transition: transform 0.3s, color 0.2s; line-height: 1; margin-top: 2px; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--crimson); }
.faq-item.open .faq-q { color: var(--crimson); }
.faq-a { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.82; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 24px; }

/* CTA — Ce facem (override .cta-section global care are fundal negru) */
.page-template-template-ce-facem .cta-section { background: var(--white); padding: 88px 56px; border-top: 0.5px solid var(--border); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.page-template-template-ce-facem .cta-section h2 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(32px, 3.5vw, 52px); line-height: 1.0; color: var(--black); margin-bottom: 20px; }
.page-template-template-ce-facem .cta-section h2 em { font-style: italic; color: var(--crimson); }
.cta-left p { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.82; margin-bottom: 32px; }
.cta-left p strong { color: var(--black); font-weight: 400; }
.cta-actions { display: flex; align-items: center; gap: 24px; }
.btn-cta { font-size: 11px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; color: var(--white); background: var(--crimson); text-decoration: none; padding: 14px 28px; transition: background 0.2s; display: inline-block; }
.btn-cta:hover { background: #8a0018; }
.cta-box { border: 0.5px solid var(--border-s); padding: 36px 40px; background: var(--pearl); }
.cta-box h3 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: 20px; color: var(--black); margin-bottom: 8px; }
.cta-box > p { font-size: 13px; font-weight: 300; color: var(--mid); margin-bottom: 24px; line-height: 1.7; }
.cta-box ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.cta-box ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.6; }
.cta-box ul li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--crimson); flex-shrink: 0; margin-top: 7px; }

/* ── CE FACEM — RESPONSIVE (după desktop CSS, altfel cascade-ul le ignoră) ── */
@media (max-width: 1024px) {
  /* hero */
  .hero-video-side { min-height: 280px; border-right: none; border-bottom: 0.5px solid var(--border); }
  /* tabel */
  .table-section { padding: 48px 24px 0; }
  .table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .table-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 36px; }
  /* border-collapse: separate necesar pentru position:sticky pe celule */
  .comparison-table { min-width: 580px; border-collapse: separate; border-spacing: 0; }
  .comparison-table th, .comparison-table td { border-right: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); }
  .comparison-table tr:last-child td { border-bottom: none; }
  .comparison-table th:last-child, .comparison-table td:last-child { border-right: none; }
  .comparison-table thead th { position: static; top: auto; box-shadow: none; }
  .th-service.highlight { position: static; top: auto; }
  .th-label { position: sticky; left: 0; z-index: 12; background: var(--black); width: 100px; min-width: 100px; max-width: 100px; box-shadow: 1px 0 0 rgba(255,255,255,0.08); }
  .td-label:not(.group-label) { position: sticky; left: 0; z-index: 5; background: var(--pearl); width: 100px; min-width: 100px; max-width: 100px; font-size: 11px; padding: 10px 10px; word-break: break-word; box-shadow: 1px 0 0 var(--border); }
  .td-label.group-label { position: static; width: auto; min-width: 0; max-width: none; background: #e3e2dd; padding: 8px 12px; font-size: 9px; }
  .th-service { padding: 12px 8px; }
  .td-cell { padding: 10px 8px; }
  .td-cta { padding: 12px 8px; }
  .btn-table-cta { padding: 8px 10px; font-size: 9px; white-space: nowrap; }
  /* detalii servicii */
  .services-detail-header { padding: 56px 32px 0; }
  .sdh-inner { grid-template-columns: 1fr; gap: 24px; }
  .services-stack { padding: 0 32px; overflow: hidden; }
  .service-card { grid-template-columns: 1fr !important; gap: 24px; padding: 40px 0; }
  .service-card:hover { background: none; margin: 0 !important; padding-left: 0 !important; padding-right: 0 !important; }
  .service-middle { padding: 0; border-left: none; border-right: none; border-top: 0.5px solid var(--border); padding-top: 24px; }
  .service-right { min-width: 0; padding: 0; border-top: 0.5px solid var(--border); padding-top: 24px; }
  .service-card.consultanta { grid-template-columns: 1fr !important; margin: 0 -32px !important; padding: 40px 32px !important; }
  /* proof strip */
  .proof-strip { grid-template-columns: 1fr; gap: 40px; padding: 56px 32px; }
  /* faq */
  .page-template-template-ce-facem .faq-section,
  .page-template-template-despre .faq-section,
  .page-template-template-proces .faq-section,
  .page-template-template-contact .faq-section,
  .home .faq-section,
  .single-proiect .faq-section { grid-template-columns: 1fr; gap: 32px; padding: 56px 32px; }
  .page-template-template-ce-facem .faq-header,
  .page-template-template-despre .faq-header,
  .page-template-template-proces .faq-header,
  .page-template-template-contact .faq-header,
  .home .faq-header,
  .single-proiect .faq-header { position: static; }
  /* cta */
  .page-template-template-ce-facem .cta-section { grid-template-columns: 1fr !important; gap: 40px; padding: 56px 32px; }
  .page-template-template-ce-facem .cta-actions { flex-direction: column; align-items: flex-start; }
  .page-template-template-ce-facem .cta-box { padding: 28px; }
}

@media (max-width: 640px) {
  .service-num { font-size: 48px; }
  .table-section { padding: 40px 20px 0; }
  .table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .services-stack { padding: 0 24px; }
  .service-card.consultanta { margin: 0 -24px !important; padding: 36px 24px !important; }
  .proof-strip { padding: 48px 24px; }
  .page-template-template-ce-facem .faq-section,
  .page-template-template-despre .faq-section,
  .page-template-template-proces .faq-section,
  .page-template-template-contact .faq-section,
  .home .faq-section,
  .single-proiect .faq-section { padding: 48px 24px; }
  .page-template-template-ce-facem .cta-section { padding: 48px 24px !important; }
}

/* ── BLOG — index & category ── */
.blog-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; border-bottom: 0.5px solid var(--border); }
.blog-hero-left { background: var(--pearl); border-right: 0.5px solid var(--border); display: flex; flex-direction: column; justify-content: flex-end; padding: 56px; position: relative; overflow: hidden; opacity: 0; animation: rise 0.9s ease 0.05s forwards; }
.blog-bg-word { font-family: 'Playfair Display', serif; font-size: clamp(120px, 18vw, 220px); line-height: 0.85; color: rgba(22,22,22,0.05); letter-spacing: -0.05em; position: absolute; bottom: -20px; left: 36px; pointer-events: none; user-select: none; }
.blog-hero-content { position: relative; z-index: 2; }
.blog-hero-left h1 { font-size: clamp(36px, 4.5vw, 58px); margin-bottom: 0; }
.blog-hero-right { padding: 56px; display: flex; flex-direction: column; justify-content: flex-end; text-align: left; opacity: 0; animation: rise 0.9s ease 0.15s forwards; }
.blog-hero-right p { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.85; max-width: 420px; margin-bottom: 16px; }
.blog-hero-right p strong { color: var(--black); font-weight: 400; }
.blog-hero-note { font-size: 13px; color: var(--light) !important; border-top: 0.5px solid var(--border); padding-top: 16px; margin-top: 8px; margin-bottom: 0 !important; }

.filter-bar { display: flex; align-items: stretch; border-bottom: 0.5px solid var(--border); overflow-x: auto; }
.filter-bar .filter-btn { padding: 18px 32px; border-right: 0.5px solid var(--border); border-bottom: none; position: static; top: auto; text-decoration: none; display: inline-flex; align-items: center; gap: 0; }
.filter-bar .filter-btn:hover { color: var(--black); background: none; }
.filter-bar .filter-btn.active { color: var(--black); font-weight: 500; background: var(--pearl); border-bottom-color: transparent; }
.filter-bar .filter-btn .filter-count { font-family: 'Playfair Display', serif; font-style: italic; color: var(--crimson); margin-left: 5px; font-size: 11px; font-weight: 400; }
.filter-bar .filter-btn.active .filter-count { color: var(--crimson); }

.section-label { font-size: 10px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--light); margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.section-label::before { content: ''; width: 18px; height: 1px; background: var(--light); }

.featured-section { padding: 72px 56px 0; }
.featured-card { display: grid; grid-template-columns: 1fr 1fr; border: 0.5px solid var(--border); text-decoration: none; color: inherit; transition: border-color 0.3s; }
.featured-card:hover { border-color: var(--border-s); }
.featured-card:hover .featured-img-inner { transform: scale(1.03); }
.featured-card:hover .fc-arrow { transform: translate(3px,-3px); }
.featured-img { overflow: hidden; border-right: 0.5px solid var(--border); min-height: 460px; position: relative; background: var(--pearl); }
.featured-img-inner { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 8s ease; }
.featured-img-placeholder { width: 100%; min-height: 460px; display: flex; align-items: center; justify-content: center; background: var(--pearl); }
.featured-img-placeholder span { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--light); }
.featured-cat { position: absolute; top: 24px; left: 24px; background: var(--black); padding: 5px 12px; font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--white); }
.featured-cat.solutie { background: var(--crimson); }
.featured-content { padding: 52px; display: flex; flex-direction: column; justify-content: space-between; }
.fc-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.fc-meta-cat { font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--crimson); }
.fc-meta-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--light); }
.fc-meta-date, .fc-meta-read { font-size: 10px; font-weight: 300; color: var(--light); letter-spacing: 0.1em; }
.fc-title { font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(22px, 2.8vw, 36px); line-height: 1.1; color: var(--black); margin-bottom: 20px; }
.fc-title em { font-style: italic; color: var(--crimson); }
.fc-excerpt { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.85; flex: 1; }
.fc-excerpt strong { color: var(--black); font-weight: 400; }
.fc-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 36px; padding-top: 28px; border-top: 0.5px solid var(--border); }
.fc-read { font-size: 11px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; color: var(--crimson); display: flex; align-items: center; gap: 8px; }
.fc-arrow { font-size: 16px; transition: transform 0.3s; }
.fc-specs { display: flex; gap: 20px; }
.fc-spec { text-align: right; }
.fc-spec-val { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 400; color: var(--black); font-style: italic; display: block; line-height: 1; }
.fc-spec-label { font-size: 10px; font-weight: 300; color: var(--light); letter-spacing: 0.1em; text-transform: uppercase; }

.home-blog { padding: 88px 56px; border-top: 0.5px solid var(--border); }
.home-blog-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; padding-bottom: 20px; border-bottom: 0.5px solid var(--border); }
.home-blog-header h2 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(28px, 3.2vw, 44px); line-height: 1; color: var(--black); margin-bottom: 0; }
.home-blog-header h2 em { font-style: italic; color: var(--crimson); }
.home-blog-header .eyebrow { margin-bottom: 10px; }

.grid-section { padding: 72px 56px 100px; }
.grid-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; padding-bottom: 20px; border-bottom: 0.5px solid var(--border); }
.grid-header h2 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(24px, 2.8vw, 36px); color: var(--black); line-height: 1; margin-bottom: 0; }
.grid-header h2 em { font-style: italic; color: var(--crimson); }
.grid-header-right { font-size: 11px; font-weight: 300; color: var(--light); }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.articles-grid.ap-cols-1 { grid-template-columns: 1fr; max-width: 520px; background: none; }
.articles-grid.ap-cols-1 .article-card { border: 0.5px solid var(--border); }
.articles-grid.ap-cols-2 { grid-template-columns: 1fr 1fr; }
.article-card { background: var(--white); display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: background 0.2s; }
.article-card:hover { background: var(--pearl); }
.article-card:hover .ac-img-inner { transform: scale(1.04); }
.article-card:hover .ac-title { color: var(--crimson); }
.ac-img { overflow: hidden; aspect-ratio: 16/10; background: var(--pearl); position: relative; }
.ac-img-inner { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 7s ease; }
.ac-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--pearl); }
.ac-img-placeholder span { font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--light); }
.ac-cat { position: absolute; top: 14px; left: 14px; padding: 4px 10px; font-size: 9px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; background: var(--black); color: var(--white); }
.ac-cat.solutie { background: var(--crimson); }
.ac-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.ac-meta { display: flex; align-items: center; gap: 10px; }
.ac-date, .ac-read { font-size: 10px; font-weight: 300; color: var(--light); letter-spacing: 0.1em; }
.ac-sep { width: 2px; height: 2px; border-radius: 50%; background: var(--border-s); }
.ac-title { font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(16px, 1.8vw, 20px); line-height: 1.2; color: var(--black); transition: color 0.2s; }
.ac-title em { font-style: italic; }
.ac-excerpt { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.7; flex: 1; }
.ac-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 0.5px solid var(--border); margin-top: auto; }
.ac-link { font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--crimson); display: flex; align-items: center; gap: 6px; }
.ac-link::after { content: '→'; transition: transform 0.2s; }
.article-card:hover .ac-link::after { transform: translateX(3px); }
.ac-type { font-size: 10px; font-weight: 300; color: var(--light); }

.blog-inline-cta { margin: 0; border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); padding: 52px 56px; display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; background: var(--pearl); }
.blog-cta-eyebrow { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--crimson); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.blog-cta-eyebrow::before { content: ''; width: 14px; height: 1px; background: var(--crimson); }
.blog-inline-cta-text h3 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(20px, 2.2vw, 28px); color: var(--black); line-height: 1.1; margin-bottom: 10px; }
.blog-inline-cta-text h3 em { font-style: italic; color: var(--crimson); }
.blog-inline-cta-text p:not(.blog-cta-eyebrow) { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.75; max-width: 480px; margin: 0; }

.blog-newsletter { padding: 72px 56px; background: var(--black); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; border-top: 0.5px solid rgba(255,255,255,0.06); }
.blog-newsletter .nl-content h2 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(26px, 3vw, 38px); line-height: 1.05; color: var(--white); margin-bottom: 12px; }
.blog-newsletter .nl-content h2 em { font-style: italic; color: rgba(255,255,255,0.45); }
.blog-newsletter .nl-content p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.82; }
.nl-form { display: flex; flex-direction: column; gap: 12px; }
.nl-note { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.35); line-height: 1.65; }
.nl-row { display: flex; gap: 0; }
.nl-input { flex: 1; padding: 13px 18px; background: rgba(255,255,255,0.06); border: 0.5px solid rgba(255,255,255,0.12); border-right: none; font-family: 'Red Hat Display', sans-serif; font-size: 13px; font-weight: 300; color: var(--white); outline: none; transition: border-color 0.2s; }
.nl-input:focus { border-color: rgba(255,255,255,0.3); }
.nl-input::placeholder { color: rgba(255,255,255,0.25); }
.nl-btn { font-size: 11px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; color: var(--white); background: var(--crimson); border: none; padding: 13px 22px; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
.nl-btn:hover { background: #8a0018; }
.nl-disclaimer { font-size: 10px; font-weight: 300; color: rgba(255,255,255,0.25); }
.nl-success { display: flex; align-items: center; justify-content: center; }
.nl-success p { font-family: 'Playfair Display', serif; font-size: 24px; font-style: italic; color: rgba(255,255,255,0.6); }

/* ── BLOG — single ── */
.breadcrumb { padding: 20px 56px; border-bottom: 0.5px solid var(--border); display: flex; align-items: center; gap: 10px; opacity: 0; animation: rise 0.6s ease 0.1s forwards; }
.breadcrumb a { font-size: 11px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--light); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--black); }
.breadcrumb-sep { font-size: 11px; color: var(--border-s); }
.breadcrumb-current { font-size: 11px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid); }

.article-header { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; border-bottom: 0.5px solid var(--border); }
.ah-content { padding: 56px; display: flex; flex-direction: column; justify-content: space-between; border-right: 0.5px solid var(--border); opacity: 0; animation: rise 0.8s ease 0.15s forwards; }
.ah-cat { display: inline-flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); background: var(--black); padding: 5px 12px; margin-bottom: 28px; }
.ah-cat.solutie { background: var(--crimson); }
.ah-title { font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(28px, 3.5vw, 48px); line-height: 1.05; letter-spacing: -0.02em; color: var(--black); margin-bottom: 20px; }
.ah-title em { font-style: italic; color: var(--crimson); }
.ah-lead { font-size: 15px; font-weight: 300; color: var(--mid); line-height: 1.85; max-width: 480px; }
.ah-lead strong { color: var(--black); font-weight: 400; }
.ah-meta { display: flex; align-items: center; gap: 20px; padding-top: 28px; border-top: 0.5px solid var(--border); flex-wrap: wrap; }
.ah-meta-item { display: flex; flex-direction: column; gap: 3px; }
.ah-meta-label { font-size: 9px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--light); }
.ah-meta-val { font-size: 12px; font-weight: 400; color: var(--black); }
.ah-meta-sep { width: 1px; height: 28px; background: var(--border-s); }
.ah-image { overflow: hidden; background: var(--pearl); position: relative; opacity: 0; animation: rise 0.8s ease 0.25s forwards; }
.ah-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ah-image-placeholder { width: 100%; min-height: 520px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; background: var(--pearl); }
.ah-image-placeholder span { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--light); }
.ah-image-placeholder small { font-size: 10px; color: var(--border-s); }

.specs-bar { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); border-bottom: 0.5px solid var(--border); }
.spec-item { padding: 24px 28px; border-right: 0.5px solid var(--border); }
.spec-item:last-child { border-right: none; }
.spec-label { font-size: 9px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--light); margin-bottom: 6px; }
.spec-val { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 400; color: var(--black); font-style: italic; }

.article-body { display: grid; grid-template-columns: 1fr 280px; align-items: start; }
.content-col { border-right: 0.5px solid var(--border); padding: 64px 64px 80px 56px; }
.content-col h2 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(22px, 2.4vw, 30px); line-height: 1.1; color: var(--black); margin: 48px 0 20px; }
.content-col h2 em { font-style: italic; color: var(--crimson); }
.content-col h2:first-child { margin-top: 0; }
.content-col h3 { font-size: 14px; font-weight: 600; letter-spacing: 0.06em; color: var(--black); margin: 32px 0 12px; text-transform: uppercase; }
.content-col p { font-size: 15px; font-weight: 300; color: var(--mid); line-height: 1.88; margin-bottom: 20px; }
.content-col p strong { color: var(--black); font-weight: 500; }
.content-col p:last-child { margin-bottom: 0; }
.content-col ul, .content-col ol { margin: 0 0 20px 20px; }
.content-col li { font-size: 15px; font-weight: 300; color: var(--mid); line-height: 1.75; margin-bottom: 6px; }
.content-col img { max-width: 100%; height: auto; display: block; margin: 32px 0; }
.content-col figure { margin: 40px 0; }
.content-col figure figcaption { font-size: 11px; font-weight: 300; color: var(--light); margin-top: 10px; line-height: 1.6; letter-spacing: 0.04em; }

.article-img { margin: 40px 0; }
.article-img img { width: 100%; display: block; }
.article-img-placeholder { width: 100%; aspect-ratio: 16/9; background: var(--pearl); display: flex; align-items: center; justify-content: center; }
.article-img-placeholder span { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--light); }
.img-fullwidth { margin: 48px -56px 48px -64px; }
.img-fullwidth img { width: 100%; display: block; }
.img-fullwidth-placeholder { width: 100%; aspect-ratio: 21/9; background: var(--pearl); display: flex; align-items: center; justify-content: center; }
.img-fullwidth-placeholder span { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--light); }
.img-fullwidth figcaption { font-size: 11px; font-weight: 300; color: var(--light); margin-top: 10px; padding: 0 64px 0 0; line-height: 1.6; }
.img-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: 40px 0; background: var(--border); }
.img-grid-2 .img-slot { overflow: hidden; aspect-ratio: 4/3; background: var(--pearl); display: flex; align-items: center; justify-content: center; }
.img-grid-2 .img-slot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-grid-2 .img-slot span { font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--light); }
.pullquote { margin: 48px 0; padding: 32px 36px; border-left: 2px solid var(--crimson); background: var(--pearl); }
.pullquote p { font-family: 'Playfair Display', serif; font-size: clamp(16px, 1.8vw, 20px); font-weight: 400; font-style: italic; color: var(--black); line-height: 1.5; margin: 0; }
.pullquote cite { display: block; font-size: 11px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--light); margin-top: 12px; font-style: normal; }
.decision-box { margin: 40px 0; border: 0.5px solid var(--border-s); overflow: hidden; }
.decision-box-header { background: var(--black); padding: 14px 24px; display: flex; align-items: center; gap: 10px; }
.decision-box-header span { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.decision-box-header strong { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); }
.decision-box-body { padding: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.decision-col-label { font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--light); margin-bottom: 10px; }
.decision-col-label.red { color: var(--crimson); }
.decision-box-body p { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.7; margin: 0; }
.result-box { margin: 40px 0; background: var(--pearl); border: 0.5px solid var(--border-s); padding: 28px 32px; }
.result-box-label { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--crimson); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.result-box-label::before { content: ''; width: 14px; height: 1px; background: var(--crimson); }
.result-box p { font-size: 14px; font-weight: 300; color: var(--black); line-height: 1.8; margin: 0; }
.result-box p strong { font-weight: 500; }

.sidebar-col { padding: 48px 32px; position: sticky; top: 88px; }
.sidebar-toc { margin-bottom: 48px; }
.sidebar-toc-label { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--light); margin-bottom: 16px; }
.sidebar-toc ul { list-style: none; }
.sidebar-toc ul li a { font-size: 12px; font-weight: 300; color: var(--mid); text-decoration: none; padding: 8px 0; display: block; border-bottom: 0.5px solid var(--border); transition: color 0.2s; line-height: 1.5; }
.sidebar-toc ul li a:hover { color: var(--black); }
.sidebar-toc ul li:last-child a { border-bottom: none; }
.sidebar-toc ul li a.active { color: var(--crimson); font-weight: 400; }
.sidebar-cta { background: var(--pearl); border: 0.5px solid var(--border-s); padding: 24px; margin-bottom: 32px; }
.sidebar-cta-label { font-size: 9px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--crimson); margin-bottom: 10px; }
.sidebar-cta h4 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: 16px; color: var(--black); margin-bottom: 10px; line-height: 1.2; }
.sidebar-cta h4 em { font-style: italic; color: var(--crimson); }
.sidebar-cta p { font-size: 12px; font-weight: 300; color: var(--mid); line-height: 1.7; margin-bottom: 16px; }
.btn-sidebar { font-size: 10px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; color: var(--white); background: var(--crimson); text-decoration: none; padding: 11px 18px; display: inline-block; transition: background 0.2s; }
.btn-sidebar:hover { background: #8a0018; }
.sidebar-specs-label { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--light); margin-bottom: 16px; }
.sidebar-spec-item { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; border-bottom: 0.5px solid var(--border); }
.sidebar-spec-item:last-child { border-bottom: none; }
.sidebar-spec-key { font-size: 11px; font-weight: 300; color: var(--light); }
.sidebar-spec-val { font-size: 12px; font-weight: 400; color: var(--black); text-align: right; }

.article-footer { border-top: 0.5px solid var(--border); }
.more-articles { padding: 72px 56px; }
.more-label { font-size: 10px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--light); margin-bottom: 36px; display: flex; align-items: center; gap: 10px; }
.more-label::before { content: ''; width: 18px; height: 1px; background: var(--light); }
.more-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.more-grid.ap-cols-1 { grid-template-columns: 1fr; max-width: 400px; background: none; }
.more-grid.ap-cols-1 .more-card { border: 0.5px solid var(--border); }
.more-grid.ap-cols-2 { grid-template-columns: 1fr 1fr; }
.more-card { background: var(--white); text-decoration: none; color: inherit; padding: 28px; transition: background 0.2s; }
.more-card:hover { background: var(--pearl); }
.more-card-cat { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--crimson); margin-bottom: 10px; }
.more-card-title { font-family: 'Playfair Display', serif; font-weight: 400; font-size: 17px; line-height: 1.2; color: var(--black); margin-bottom: 8px; }
.more-card-title em { font-style: italic; }
.more-card-read { font-size: 10px; font-weight: 300; color: var(--light); }
.article-cta { padding: 72px 56px; background: var(--black); display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.article-cta h3 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: clamp(22px, 2.5vw, 34px); line-height: 1.1; color: var(--white); margin-bottom: 10px; }
.article-cta h3 em { font-style: italic; color: rgba(255,255,255,0.45); }
.article-cta p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.45); max-width: 480px; line-height: 1.75; }
.btn-cta-white { font-size: 11px; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase; color: var(--black); background: var(--white); text-decoration: none; padding: 14px 28px; transition: background 0.2s; display: inline-block; white-space: nowrap; }
.btn-cta-white:hover { background: var(--pearl); }

@media (max-width: 1024px) {
  .blog-hero { grid-template-columns: 1fr; min-height: auto; }
  .blog-hero-left { min-height: 280px; border-right: none; border-bottom: 0.5px solid var(--border); padding: 48px 32px; }
  .blog-hero-right { padding: 40px 32px; }
  .filter-bar .filter-btn { padding: 16px 20px; font-size: 10px; }
  .featured-section { padding: 52px 32px 0; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-img { min-height: 280px; border-right: none; border-bottom: 0.5px solid var(--border); }
  .featured-content { padding: 36px 32px; }
  .fc-specs { display: none; }
  .home-blog { padding: 60px 32px; }
  .home-blog-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .grid-section { padding: 52px 32px 72px; }
  .articles-grid { grid-template-columns: 1fr 1fr; }
  .blog-inline-cta { grid-template-columns: 1fr; gap: 28px; padding: 44px 32px; }
  .blog-newsletter { grid-template-columns: 1fr; gap: 40px; padding: 56px 32px; }
  .breadcrumb { padding: 16px 32px; }
  .article-header { grid-template-columns: 1fr; }
  .ah-content { padding: 40px 32px; border-right: none; border-bottom: 0.5px solid var(--border); }
  .ah-image-placeholder { min-height: 280px; }
  .specs-bar { grid-template-columns: repeat(3, 1fr); }
  .article-body { grid-template-columns: 1fr; }
  .content-col { padding: 40px 32px 60px; border-right: none; }
  .img-fullwidth { margin: 40px -32px; }
  .decision-box-body { grid-template-columns: 1fr; }
  .sidebar-col { padding: 0 32px 40px; position: static; border-top: 0.5px solid var(--border); }
  .sidebar-toc { display: none; }
  .more-articles { padding: 52px 32px; }
  .more-grid { grid-template-columns: 1fr; }
  .article-cta { grid-template-columns: 1fr; gap: 32px; padding: 52px 32px; }
}

@media (max-width: 640px) {
  .articles-grid { grid-template-columns: 1fr; }
  .specs-bar { grid-template-columns: 1fr 1fr; }
}

/* social links */
.contact-social { display: flex; align-items: center; gap: 12px; margin-top: 28px; padding-top: 24px; border-top: 0.5px solid var(--border); }
.contact-social a { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border: 0.5px solid var(--border-s); color: var(--mid); text-decoration: none; transition: color 0.2s, border-color 0.2s; }
.contact-social a:hover { color: var(--black); border-color: var(--black); }
.contact-social svg { width: 17px; height: 17px; }

/* admin bar — offset topbar + nav + sticky thead + hero */
body.admin-bar .site-topbar { top: 32px; }
body.admin-bar .site-nav { top: 70px; }
body.admin-bar .comparison-table thead th { top: 138px; }
body.admin-bar .th-service.highlight { top: 138px; }
body.admin-bar .hero { min-height: calc(100vh - 138px); }
body.admin-bar .hero-cover { height: calc(100vh - 138px); }
body.admin-bar .faq-header { top: 162px; }
@media (max-width: 1024px) {
  body.admin-bar .site-nav { top: 32px; }
  body.admin-bar .comparison-table thead th { top: 100px; }
  body.admin-bar .th-service.highlight { top: 100px; }
  body.admin-bar .hero { min-height: calc(100vh - 100px); }
  body.admin-bar .hero-cover { height: calc(100vh - 100px); }
}
@media (max-width: 782px) {
  body.admin-bar .site-nav { top: 46px; }
  body.admin-bar .comparison-table thead th { top: 114px; }
  body.admin-bar .th-service.highlight { top: 114px; }
  body.admin-bar .hero { min-height: calc(100vh - 114px); }
  body.admin-bar .hero-cover { height: calc(100vh - 114px); }
}

/* ─── Consultanță form modal ─────────────────────────────────────────────── */
.cf-modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; visibility: hidden; opacity: 0; transition: opacity 0.3s, visibility 0.3s; }
.cf-modal.open { visibility: visible; opacity: 1; }
.cf-modal-overlay { position: absolute; inset: 0; background: rgba(22,22,22,0.72); backdrop-filter: blur(4px); cursor: pointer; }
.cf-modal-box { position: relative; z-index: 1; background: var(--white); width: min(600px, 96vw); max-height: 92vh; overflow-y: auto; padding: 48px 52px; }
.cf-modal-close { position: absolute; top: 16px; right: 20px; background: none; border: none; cursor: pointer; color: var(--mid); padding: 6px; line-height: 1; transition: color 0.2s; }
.cf-modal-close:hover { color: var(--black); }
.cf-modal-header { margin-bottom: 28px; padding-bottom: 24px; border-bottom: 0.5px solid var(--border); }
.cf-modal-eyebrow { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--crimson); margin-bottom: 10px; }
.cf-modal-h2 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: 30px; line-height: 1.1; letter-spacing: -0.02em; color: var(--black); margin-bottom: 10px; }
.cf-modal-h2 em { font-style: italic; }
.cf-modal-desc { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.75; }
@media (max-width: 600px) {
  .cf-modal-box { padding: 36px 24px; }
}
.cf-success { text-align: center; padding: 40px 0 16px; }
.cf-success-mark { width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--crimson); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.cf-success-mark svg { width: 22px; height: 22px; stroke: var(--crimson); stroke-width: 2; fill: none; }
.cf-success h3 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: 38px; font-style: italic; color: var(--black); letter-spacing: -0.02em; line-height: 1; margin-bottom: 14px; }
.cf-success p { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.75; max-width: 340px; margin: 0 auto; }
/* btn-*-cta as <button> — reset browser defaults */
button.btn-service-cta,
button.btn-table-cta { cursor: pointer; font-family: inherit; border: none; appearance: none; }

/* ─── Thank-you pages ─────────────────────────────────────────────────────── */
.ty-main { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; }
.confirm-side { padding: 48px 56px; border-right: 0.5px solid var(--border); display: flex; flex-direction: column; justify-content: flex-start; overflow-y: auto; }
.confirm-inner { max-width: 480px; opacity: 0; animation: rise 0.8s ease 0.1s forwards; }
.confirm-mark { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--crimson); display: flex; align-items: center; justify-content: center; margin-bottom: 28px; }
.confirm-mark svg { width: 20px; height: 20px; stroke: var(--crimson); stroke-width: 2; fill: none; }
.confirm-desc { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.85; margin-bottom: 32px; }
.confirm-desc strong { color: var(--black); font-weight: 400; }
.next-steps { display: flex; flex-direction: column; gap: 0; border-top: 0.5px solid var(--border); margin-bottom: 32px; }
.next-step { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 0.5px solid var(--border); }
.ns-num { font-family: 'Playfair Display', serif; font-size: 13px; font-style: italic; color: var(--crimson); flex-shrink: 0; width: 18px; margin-top: 1px; }
.ns-text { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.65; }
.ns-text strong { color: var(--black); font-weight: 500; }
.prepare-list { display: flex; flex-direction: column; gap: 0; border-top: 0.5px solid var(--border); margin-bottom: 32px; }
.prepare-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 0.5px solid var(--border); }
.pi-num { font-family: 'Playfair Display', serif; font-size: 13px; font-style: italic; color: var(--crimson); flex-shrink: 0; width: 18px; margin-top: 1px; }
.pi-text { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.65; }
.pi-text strong { color: var(--black); font-weight: 500; }
.confirm-contact { background: var(--pearl); border: 0.5px solid var(--border-s); padding: 20px 24px; }
.cc-label { font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--light); margin-bottom: 10px; }
.cc-text { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.7; margin-bottom: 12px; }
.cc-links { display: flex; flex-direction: column; gap: 6px; }
.cc-links a { font-size: 13px; font-weight: 300; color: var(--black); text-decoration: none; transition: color 0.2s; }
.cc-links a:hover { color: var(--crimson); }
.ty-next-side { padding: 48px 56px; background: var(--pearl); display: flex; flex-direction: column; justify-content: flex-start; gap: 24px; opacity: 0; animation: rise 0.8s ease 0.25s forwards; overflow-y: auto; }
.ns-divider-label { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--light); }
.ns-card { background: var(--white); border: 0.5px solid var(--border-s); padding: 24px 28px; text-decoration: none; color: inherit; transition: border-color 0.2s, background 0.2s; display: block; }
.ns-card:hover { background: #f8f7f3; }
.ns-card-label { font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--crimson); margin-bottom: 8px; }
.ns-card-title { font-family: 'Playfair Display', serif; font-weight: 400; font-size: 18px; color: var(--black); line-height: 1.2; margin-bottom: 6px; }
.ns-card-title em { font-style: italic; }
.ns-card-desc { font-size: 12px; font-weight: 300; color: var(--mid); line-height: 1.65; }
.ns-card-arrow { display: flex; justify-content: flex-end; margin-top: 12px; font-size: 13px; color: var(--crimson); }
@media (max-width: 1024px) {
  .ty-main { grid-template-columns: 1fr; min-height: auto; }
  .confirm-side { padding: 48px 32px; border-right: none; border-bottom: 0.5px solid var(--border); overflow-y: visible; }
  .ty-next-side { padding: 48px 32px; overflow-y: visible; }
}

/* ─── Page template (page.php) ─────────────────────────── */
.page-main { padding: 72px 56px 100px; }
.page-wrap { width: 100%; }

.page-header { margin-bottom: 32px; }
.page-title { font-family: 'Playfair Display', serif; font-weight: 400; font-size: 36px; color: var(--black); letter-spacing: -0.02em; line-height: 1.2; margin: 0 0 16px; }
.page-intro { font-size: 17px; font-weight: 300; color: var(--mid); line-height: 1.75; margin: 0; }

/* ─── Entry content — Gutenberg blocks ─────────────────── */
.entry-content { font-size: 16px; font-weight: 300; color: var(--black); line-height: 1.8; }

.entry-content > * + * { margin-top: 1.5em; }
.entry-content > * { max-width: 100%; }

/* Headings */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 { font-family: 'Playfair Display', serif; font-weight: 400; color: var(--black); line-height: 1.2; letter-spacing: -0.02em; margin-top: 2em; margin-bottom: 0.5em; }
.entry-content h1 { font-size: 20px; }
.entry-content h2 { font-size: 24px; }
.entry-content h3 { font-size: 20px; }
.entry-content h4 { font-size: 17px; font-family: 'Red Hat Display', sans-serif; font-weight: 600; letter-spacing: 0; }
.entry-content h5 { font-size: 15px; font-family: 'Red Hat Display', sans-serif; font-weight: 600; letter-spacing: 0; }
.entry-content h6 { font-size: 13px; font-family: 'Red Hat Display', sans-serif; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mid); }
.entry-content em { font-style: italic; }
.entry-content strong { font-weight: 600; }

/* Links */
.entry-content a { color: var(--crimson); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.entry-content a:hover { text-decoration: none; }

/* Lists */
.entry-content ul,
.entry-content ol { padding-left: 1.6em; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li + li { margin-top: 0.4em; }
.entry-content li { line-height: 1.75; }

/* Blockquote */
.entry-content blockquote,
.entry-content .wp-block-quote { border-left: 3px solid var(--crimson); padding: 8px 0 8px 28px; margin: 2em 0; }
.entry-content blockquote p,
.entry-content .wp-block-quote p { font-family: 'Playfair Display', serif; font-size: 20px; font-style: italic; font-weight: 400; color: var(--black); line-height: 1.5; margin: 0; }
.entry-content .wp-block-quote cite,
.entry-content blockquote cite { display: block; font-family: 'Red Hat Display', sans-serif; font-size: 12px; font-style: normal; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); margin-top: 12px; }

/* Separator */
.entry-content hr,
.entry-content .wp-block-separator { border: none; border-top: 0.5px solid var(--border-s); margin: 3em 0; }

/* Images */
.entry-content img { max-width: 100%; height: auto; display: block; border-radius: 2px; }
.entry-content figure { margin: 2em 0; }
.entry-content figcaption,
.entry-content .wp-element-caption { font-size: 12px; font-weight: 400; color: var(--light); text-align: center; margin-top: 10px; letter-spacing: 0.04em; }

/* Wide / full align */
.entry-content .alignwide { max-width: min(100vw - 48px, 1100px); margin-left: calc(50% - min(50vw - 24px, 550px)); }
.entry-content .alignfull { max-width: 100vw; margin-left: calc(50% - 50vw); }
.entry-content .alignleft { float: left; margin: 0.5em 28px 1em 0; max-width: 45%; }
.entry-content .alignright { float: right; margin: 0.5em 0 1em 28px; max-width: 45%; }
.entry-content .aligncenter { margin-left: auto; margin-right: auto; text-align: center; }

/* Table */
.entry-content table,
.entry-content .wp-block-table table { width: 100%; border-collapse: collapse; font-size: 14px; }
.entry-content th,
.entry-content .wp-block-table th { font-weight: 600; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); padding: 10px 14px; border-bottom: 1.5px solid var(--border-s); text-align: left; }
.entry-content td,
.entry-content .wp-block-table td { padding: 11px 14px; border-bottom: 0.5px solid var(--border); vertical-align: top; }

/* Code */
.entry-content code { font-family: 'Courier New', monospace; font-size: 13px; background: var(--pearl); padding: 2px 6px; border-radius: 3px; color: var(--black); }
.entry-content pre,
.entry-content .wp-block-code { background: #1a1a1a; color: #f2f1ed; padding: 24px 28px; border-radius: 4px; overflow-x: auto; font-size: 13px; line-height: 1.7; }
.entry-content pre code { background: none; padding: 0; color: inherit; }

/* Columns */
.entry-content .wp-block-columns { display: flex; gap: 32px; flex-wrap: wrap; }
.entry-content .wp-block-column { flex: 1 1 200px; }

/* Button */
.entry-content .wp-block-button__link { display: inline-block; background: var(--black); color: var(--white); padding: 14px 28px; font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-decoration: none; border-radius: 0; transition: background 0.2s; }
.entry-content .wp-block-button__link:hover { background: var(--crimson); color: var(--white); }
.entry-content .wp-block-button.is-style-outline .wp-block-button__link { background: transparent; color: var(--black); border: 1.5px solid var(--black); }
.entry-content .wp-block-button.is-style-outline .wp-block-button__link:hover { background: var(--black); color: var(--white); }

/* Embed */
.entry-content .wp-block-embed__wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.entry-content .wp-block-embed__wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* Paginated content */
.page-links { display: flex; gap: 8px; align-items: center; margin-top: 48px; padding-top: 32px; border-top: 0.5px solid var(--border); font-size: 13px; }
.page-links a { color: var(--crimson); text-decoration: none; }

/* Archive empty state */
.archive-empty { max-width: 480px; margin: 80px auto; padding: 0 24px; text-align: center; }
.archive-empty p { font-size: 16px; font-weight: 300; color: var(--mid); line-height: 1.7; margin-bottom: 24px; }
.archive-empty a { color: var(--black); font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-decoration: none; border-bottom: 1px solid var(--border-s); padding-bottom: 2px; }
.archive-empty a:hover { border-bottom-color: var(--black); }

@media (max-width: 768px) {
  .page-main { padding: 48px 24px 72px; }
  .page-header { margin-bottom: 36px; padding-bottom: 28px; }
  .entry-content .alignleft,
  .entry-content .alignright { float: none; max-width: 100%; margin: 1.5em 0; }
  .entry-content .wp-block-columns { flex-direction: column; gap: 0; }
}
body.admin-bar .ty-main { min-height: calc(100vh - 32px); }
