/*
 * Provada — compiled frontend styles (slice v1.1 — dark premium).
 * Source: /assets/scss/main.scss — edit there and recompile.
 * Aesthetic reference: dark, bold, full-bleed, oversized type, gold accent.
 */
:root {
	--pv-primary: #0A0A0B;
	--pv-secondary: #121214;
	--pv-accent: #C9A227;
	--pv-accent-2: #B07D42;
	--pv-surface: #16161A;
	--pv-text: #EDEDED;
	--pv-text-muted: #8A8A92;
	--pv-line: rgba(255, 255, 255, 0.08);
	--pv-radius: 16px;
	--pv-radius-sm: 10px;
	--pv-shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 12px 32px rgba(0, 0, 0, .25);
	--pv-shadow-lg: 0 24px 60px rgba(0, 0, 0, .5);
	--pv-max: 1320px;
	--pv-ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--pv-text);
	background: var(--pv-primary);
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { margin: 0 0 .5em; line-height: 1.1; font-weight: 700; color: #fff; letter-spacing: -.015em; }
p { margin: 0 0 1em; }
a { color: var(--pv-accent); text-decoration: none; transition: color .2s; }
a:hover { color: #fff; }
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0 0 1em; padding: 0 0 0 1.2em; }

/* ---------- Layout ---------- */
.pv-container { max-width: var(--pv-max); margin: 0 auto; padding: 0 40px; }
.pv-section { padding: 120px 0; position: relative; }
.pv-skip-link { position: absolute; left: -9999px; top: 0; background: var(--pv-accent); color: #000; padding: 10px 16px; z-index: 100; }
.pv-skip-link:focus { left: 8px; top: 8px; }

/* ---------- Eyebrow / labels ---------- */
.pv-eyebrow {
	display: inline-flex; align-items: center; gap: 10px;
	font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
	color: var(--pv-accent); margin-bottom: 24px;
}
.pv-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pv-accent); display: inline-block; }
.pv-eyebrow-light { color: rgba(255, 255, 255, .85); }

/* ---------- Section titles ---------- */
.pv-h2 { font-size: clamp(32px, 4.5vw, 56px); line-height: 1.05; margin: 0; font-weight: 700; }

/* ---------- Header ---------- */
.pv-header {
	position: fixed; top: 0; left: 0; right: 0; z-index: 50;
	background: transparent;
	border-bottom: 1px solid transparent;
	transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.pv-header.is-scrolled {
	background: rgba(10, 10, 11, .9);
	backdrop-filter: blur(14px);
	border-bottom-color: var(--pv-line);
}
.pv-header-inner {
	max-width: var(--pv-max); margin: 0 auto; padding: 0 40px;
	display: flex; align-items: center; justify-content: space-between; gap: 24px;
	min-height: 84px;
}
.pv-logo { display: flex; align-items: center; gap: 12px; color: #fff; font-weight: 700; font-size: 22px; letter-spacing: .01em; }
.pv-logo:hover { color: #fff; }
.pv-logo-mark { color: var(--pv-accent); display: grid; place-items: center; }
.pv-logo-img { max-height: 40px; width: auto; filter: brightness(0) invert(1); }
.pv-nav { display: flex; align-items: center; }
.pv-menu { list-style: none; margin: 0; padding: 0; display: flex; gap: 2px; }
.pv-menu li { position: relative; }
.pv-menu a {
	display: block; padding: 10px 18px; border-radius: 6px;
	color: rgba(255, 255, 255, .85); font-weight: 500; font-size: 15px; letter-spacing: .01em;
}
.pv-menu a:hover { color: var(--pv-accent); }
.pv-menu .sub-menu { position: absolute; top: 100%; left: 0; background: var(--pv-secondary); border: 1px solid var(--pv-line); border-radius: 10px; box-shadow: var(--pv-shadow-lg); min-width: 240px; padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .2s; }
.pv-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.pv-menu .sub-menu a { padding: 10px 14px; border-radius: 6px; }
.pv-header-actions { display: flex; align-items: center; gap: 16px; }
.pv-nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.pv-nav-toggle span { width: 26px; height: 2px; background: #fff; transition: all .25s; }

/* ---------- Language switcher ---------- */
.pv-lang-switcher { display: flex; gap: 2px; background: rgba(255, 255, 255, .06); border: 1px solid var(--pv-line); border-radius: 24px; padding: 3px; }
.pv-lang-link { font-size: 11px; font-weight: 700; letter-spacing: .06em; color: var(--pv-text-muted); padding: 5px 11px; border-radius: 20px; transition: all .15s; }
.pv-lang-link.is-active { background: var(--pv-accent); color: #000; }

/* ---------- Buttons ---------- */
.pv-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-family: inherit; font-size: 15px; font-weight: 600; letter-spacing: .01em; border: none; border-radius: 100px; padding: 14px 28px; cursor: pointer; transition: all .25s var(--pv-ease); text-decoration: none; }
.pv-btn-primary { background: var(--pv-accent); color: #0A0A0B; box-shadow: 0 8px 24px rgba(201, 162, 39, .3); }
.pv-btn-primary:hover { color: #0A0A0B; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201, 162, 39, .45); background: #D8B337; }
.pv-btn-line { background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, .25); }
.pv-btn-line:hover { border-color: var(--pv-accent); color: var(--pv-accent); }
.pv-btn-ghost { background: rgba(255, 255, 255, .06); color: #fff; border: 1px solid var(--pv-line); }
.pv-btn-ghost:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.pv-arrow { transition: transform .25s var(--pv-ease); }
.pv-btn:hover .pv-arrow { transform: translateX(4px); }

/* ---------- HERO ---------- */
.pv-hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--pv-primary); }
.pv-hero-slides { position: absolute; inset: 0; z-index: 1; }
.pv-hero-slide {
	position: absolute; inset: 0;
	background-size: cover; background-position: center;
	opacity: 0; transition: opacity 1.2s ease;
}
.pv-hero-slide.is-active { opacity: 1; }
.pv-hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(10, 10, 11, .94) 0%, rgba(10, 10, 11, .7) 50%, rgba(10, 10, 11, .5) 100%); }
.pv-hero-inner { position: relative; z-index: 2; max-width: 880px; padding-top: 100px; padding-bottom: 100px; }
.pv-hero-title { font-size: clamp(44px, 7vw, 96px); line-height: 1.02; margin: 0 0 28px; color: #fff; font-weight: 800; letter-spacing: -.025em; }
.pv-hero-sub { font-size: clamp(17px, 2vw, 21px); color: rgba(255, 255, 255, .78); margin: 0 0 40px; max-width: 60ch; line-height: 1.5; }
.pv-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.pv-hero-cta-center { justify-content: center; }

.pv-hero-scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 12px; color: rgba(255, 255, 255, .5); font-size: 10px; letter-spacing: .25em; text-transform: uppercase; }
.pv-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--pv-accent), transparent); position: relative; overflow: hidden; }
.pv-scroll-line::after { content: ""; position: absolute; top: -40px; left: 0; width: 100%; height: 40px; background: var(--pv-accent); animation: pv-scroll 1.8s ease-in-out infinite; }
@keyframes pv-scroll { 0% { top: -40px; } 100% { top: 100%; } }

/* ---------- STATEMENT ---------- */
.pv-statement { padding: 140px 0; }
.pv-statement-text { font-size: clamp(26px, 3.6vw, 44px); line-height: 1.3; color: #fff; font-weight: 500; max-width: 22ch; letter-spacing: -.015em; margin: 0 0 60px; }
.pv-statement-meta { display: flex; gap: 60px; flex-wrap: wrap; padding-top: 40px; border-top: 1px solid var(--pv-line); }
.pv-statement-meta > div { display: flex; flex-direction: column; }
.pv-stat-num { font-size: clamp(40px, 5vw, 64px); font-weight: 800; color: var(--pv-accent); line-height: 1; letter-spacing: -.02em; }
.pv-stat-cap { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--pv-text-muted); margin-top: 12px; }

/* ---------- PORTFOLIO ---------- */
.pv-portfolio { background: var(--pv-secondary); }
.pv-portfolio-head { margin-bottom: 64px; }
.pv-portfolio-grid { max-width: var(--pv-max); margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--pv-line); border-left: 1px solid var(--pv-line); }
.pv-port-card {
	position: relative; padding: 44px 36px; min-height: 280px;
	display: flex; flex-direction: column; justify-content: space-between;
	border-right: 1px solid var(--pv-line); border-bottom: 1px solid var(--pv-line);
	color: var(--pv-text); transition: background .3s, color .3s;
	overflow: hidden;
}
.pv-port-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(201, 162, 39, .12), transparent); opacity: 0; transition: opacity .35s; }
.pv-port-card:hover { background: rgba(201, 162, 39, .06); }
.pv-port-card:hover::before { opacity: 1; }
.pv-port-top { display: flex; justify-content: space-between; align-items: flex-start; position: relative; z-index: 1; }
.pv-port-num { font-size: 13px; font-weight: 700; color: var(--pv-accent); letter-spacing: .1em; }
.pv-port-arrow { font-size: 20px; color: var(--pv-text-muted); transition: color .25s, transform .25s; }
.pv-port-card:hover .pv-port-arrow { color: var(--pv-accent); transform: translate(4px, -4px); }
.pv-port-card h3 { font-size: 22px; margin: 0 0 10px; position: relative; z-index: 1; }
.pv-port-card p { font-size: 14px; color: var(--pv-text-muted); margin: 0; position: relative; z-index: 1; }

/* ---------- STATS BAND ---------- */
.pv-stats-band { background: var(--pv-primary); padding: 80px 0; border-top: 1px solid var(--pv-line); border-bottom: 1px solid var(--pv-line); }
.pv-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.pv-stat { display: flex; flex-direction: column; gap: 10px; }
.pv-stat-cap { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--pv-text-muted); }

/* ---------- MARQUEE ---------- */
.pv-marquee-wrap { padding: 40px 0; border-bottom: 1px solid var(--pv-line); overflow: hidden; }
.pv-marquee { overflow: hidden; }
.pv-marquee-track {
	display: inline-block; white-space: nowrap;
	font-size: clamp(24px, 3vw, 40px); font-weight: 700; letter-spacing: -.01em;
	color: rgba(255, 255, 255, .12); text-transform: uppercase;
	animation: pv-marquee 40s linear infinite;
}
.pv-marquee-wrap:hover .pv-marquee-track { animation-play-state: paused; }
@keyframes pv-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- NEWS ---------- */
.pv-news { background: var(--pv-primary); }
.pv-section-head-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; flex-wrap: wrap; gap: 20px; }
.pv-link-arrow { font-size: 15px; font-weight: 600; color: var(--pv-accent); }
.pv-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pv-news-card { background: var(--pv-surface); border-radius: var(--pv-radius); overflow: hidden; border: 1px solid var(--pv-line); transition: transform .3s var(--pv-ease), border-color .3s; }
.pv-news-card:hover { transform: translateY(-6px); border-color: rgba(201, 162, 39, .4); }
.pv-news-img { height: 220px; background-size: cover; background-position: center; position: relative; }
.pv-news-cat { position: absolute; top: 16px; left: 16px; background: rgba(10, 10, 11, .8); color: var(--pv-accent); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: 20px; backdrop-filter: blur(8px); }
.pv-news-body { padding: 24px; }
.pv-news-date { font-size: 12px; color: var(--pv-text-muted); letter-spacing: .04em; }
.pv-news-body h3 { font-size: 19px; margin: 10px 0 0; line-height: 1.3; }
.pv-news-body h3 a { color: #fff; }
.pv-news-body h3 a:hover { color: var(--pv-accent); }

/* ---------- CONTACT CTA ---------- */
.pv-contact-cta { background: var(--pv-secondary); padding: 140px 0; text-align: center; position: relative; overflow: hidden; }
.pv-contact-cta::before { content: ""; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(201, 162, 39, .15), transparent 70%); pointer-events: none; }
.pv-contact-cta-inner { position: relative; max-width: 760px; margin: 0 auto; }
.pv-contact-title { margin-bottom: 24px; }
.pv-contact-cta p { color: var(--pv-text-muted); font-size: 18px; margin-bottom: 36px; }

/* ---------- Footer ---------- */
.pv-footer { background: var(--pv-primary); color: var(--pv-text-muted); padding: 80px 0 0; border-top: 1px solid var(--pv-line); }
.pv-footer-inner { max-width: var(--pv-max); margin: 0 auto; padding: 0 40px 50px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
.pv-footer-brand .pv-logo { color: #fff; }
.pv-footer-tag { font-size: 14px; margin: 16px 0; max-width: 40ch; }
.pv-social { display: flex; gap: 10px; margin-top: 8px; }
.pv-social-link { width: 40px; height: 40px; display: grid; place-items: center; background: rgba(255, 255, 255, .05); border: 1px solid var(--pv-line); border-radius: 50%; color: var(--pv-text); transition: all .2s; }
.pv-social-link:hover { background: var(--pv-accent); color: #000; border-color: var(--pv-accent); }
.pv-footer-title { font-size: 12px; text-transform: uppercase; letter-spacing: .14em; color: var(--pv-accent); margin-bottom: 20px; }
.pv-footer-list { list-style: none; padding: 0; margin: 0; font-size: 14px; }
.pv-footer-list li { margin-bottom: 12px; }
.pv-footer-list a { color: var(--pv-text-muted); }
.pv-footer-list a:hover { color: var(--pv-accent); }
.pv-footer-bottom { max-width: var(--pv-max); margin: 0 auto; padding: 24px 40px; border-top: 1px solid var(--pv-line); display: flex; justify-content: space-between; font-size: 13px; }
.pv-footer-powered { color: var(--pv-accent); }

/* ---------- WhatsApp FAB ---------- */
.pv-whatsapp-fab { position: fixed; bottom: 28px; right: 28px; z-index: 90; width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37, 211, 102, .4); transition: transform .25s var(--pv-ease); }
.pv-whatsapp-fab:hover { color: #fff; transform: scale(1.08); }
.pv-whatsapp-fab::before { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); animation: pv-pulse 2s infinite; }
@keyframes pv-pulse { 70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

/* ---------- Blog / pages ---------- */
.pv-page-wrap { padding: 140px 40px 80px; max-width: var(--pv-max); margin: 0 auto; }
.pv-archive-head { margin-bottom: 48px; }
.pv-page-title { font-size: clamp(32px, 5vw, 56px); color: #fff; }
.pv-post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }
.pv-post-card { background: var(--pv-surface); border: 1px solid var(--pv-line); border-radius: var(--pv-radius); overflow: hidden; transition: transform .3s var(--pv-ease), border-color .3s; }
.pv-post-card:hover { transform: translateY(-6px); border-color: rgba(201, 162, 39, .4); }
.pv-post-thumb img { width: 100%; height: 220px; object-fit: cover; }
.pv-post-body { padding: 28px; }
.pv-post-date { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--pv-accent); font-weight: 700; }
.pv-post-title { font-size: 20px; margin: 12px 0 14px; color: #fff; }
.pv-post-title a { color: #fff; }
.pv-post-title a:hover { color: var(--pv-accent); }
.pv-post-excerpt { color: var(--pv-text-muted); font-size: 14px; }
.pv-post-more { font-weight: 600; font-size: 14px; color: var(--pv-accent); }
.pv-pagination { margin-top: 56px; text-align: center; }
.pv-pagination .page-numbers { display: inline-block; padding: 10px 16px; margin: 0 3px; border-radius: 8px; border: 1px solid var(--pv-line); color: var(--pv-text); }
.pv-pagination .page-numbers.current { background: var(--pv-accent); color: #000; border-color: var(--pv-accent); }

.pv-single { max-width: 820px; }
.pv-single-feat { margin: 28px 0; border-radius: var(--pv-radius); overflow: hidden; }
.pv-page-content { font-size: 17px; line-height: 1.8; color: var(--pv-text); }
.pv-page-content h2 { margin-top: 1.5em; color: #fff; }
.pv-page-content img { border-radius: var(--pv-radius-sm); margin: 1.5em 0; }
.pv-link-pages { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--pv-line); }

/* ---------- 404 ---------- */
.pv-404 { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 100px 0; text-align: center; }
.pv-404-inner { max-width: 600px; margin: 0 auto; padding: 0 40px; }
.pv-404-code { font-size: clamp(100px, 18vw, 220px); font-weight: 800; color: var(--pv-accent); line-height: 1; display: block; letter-spacing: -.04em; }
.pv-404 h1 { font-size: clamp(28px, 4vw, 40px); margin: 20px 0 16px; }
.pv-404 p { color: var(--pv-text-muted); margin-bottom: 32px; }

/* ---------- Comments ---------- */
.pv-comments { margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--pv-line); }
.comment-list { list-style: none; padding: 0; }
.comment-list .comment-body { padding: 20px 0; border-bottom: 1px solid var(--pv-line); color: var(--pv-text); }
#respond { margin-top: 32px; color: var(--pv-text); }
.comment-form input, .comment-form textarea { width: 100%; padding: 12px 16px; background: var(--pv-surface); border: 1px solid var(--pv-line); border-radius: 8px; font-family: inherit; color: var(--pv-text); margin-bottom: 14px; }
.comment-form input:focus, .comment-form textarea:focus { outline: none; border-color: var(--pv-accent); }
.comment-form .submit { background: var(--pv-accent); color: #000; border: 0; border-radius: 8px; padding: 14px 28px; cursor: pointer; font-weight: 600; }

/* ---------- Reveal animations ---------- */
.pv-reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--pv-ease), transform .8s var(--pv-ease); }
.pv-reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	.pv-portfolio-grid { grid-template-columns: repeat(2, 1fr); }
	.pv-news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
	.pv-section { padding: 80px 0; }
	.pv-container { padding: 0 24px; }
	.pv-nav, .pv-cta-header { display: none; }
	.pv-nav-toggle { display: flex; }
	.pv-menu { flex-direction: column; position: absolute; top: 84px; left: 0; right: 0; background: var(--pv-secondary); padding: 16px; border-bottom: 1px solid var(--pv-line); gap: 0; }
	.pv-menu a { padding: 14px 18px; }
	.pv-footer-inner { grid-template-columns: 1fr; gap: 36px; padding: 0 24px 40px; }
	.pv-footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 24px; }
	.pv-hero { min-height: 90vh; }
	.pv-statement-meta { gap: 36px; }
	.pv-page-wrap { padding: 120px 24px 60px; }
}
@media (max-width: 600px) {
	.pv-portfolio-grid { grid-template-columns: 1fr; }
	.pv-news-grid { grid-template-columns: 1fr; }
	.pv-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
	.pv-post-grid { grid-template-columns: 1fr; }
	.pv-hero-title { font-size: 44px; }
}
