/* ═══════════════════════════════════════════════════
   Casa Oca — Main Stylesheet
   ═══════════════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
	--gold: #D3AA7E;
	--gold-light: #e6c9a8;
	--primary: #D3AA7E;
	--primary-light: #E8CFAF;
	--primary-dark: #B8864E;
	--primary-rgb: 211,170,126;
	--dark: #1a1a1a;
	--secondary: #262626;
	--secondary-rgb: 38,38,38;
	--bg-dark: #0E0F0F;
	--text: #3E3E3E;
	--text-light: #6B6B6B;
	--text-muted: #ABA8A5;
	--border: #DFDBD5;
	--border-light: #F0EDE8;
	--bg: #ffffff;
	--bg-alt: #FBF7F2;
	--radius: 16px;
	--radius-sm: 8px;
	--radius-xs: 4px;
	--r-sm: 4px;
	--r-md: 8px;
	--r-lg: 16px;
	--r-xl: 24px;
	--r-full: 9999px;
	--grad: linear-gradient(135deg, #D3AA7E, #B8864E);
	--shadow: 0 2px 20px rgba(0,0,0,.06);
	--shadow-lg: 0 8px 40px rgba(0,0,0,.10);
	--shadow-glow: 0 0 40px rgba(211,170,126,.3);
	--font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--transition: .35s cubic-bezier(.4,0,.2,1);
	--ease: cubic-bezier(.16,1,.3,1);
	--max-w: 1340px;
}

/* ─── Reset / Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
	font-family: var(--font);
	font-size: 15px;
	line-height: 1.7;
	color: var(--text);
	background: var(--bg);
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all .3s var(--ease); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-muted); display: inline-block; vertical-align: middle; margin: 0 6px; }

/* ─── Particles (decorative) ─── */
.particles { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.particle { position: absolute; width: 2px; height: 2px; background: var(--gold); border-radius: 50%; opacity: 0; animation: pFloat 12s infinite; }
.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 14s; }
.particle:nth-child(2) { left: 25%; animation-delay: 2s; animation-duration: 11s; }
.particle:nth-child(3) { left: 42%; animation-delay: 4s; animation-duration: 16s; }
.particle:nth-child(4) { left: 58%; animation-delay: 1s; animation-duration: 13s; }
.particle:nth-child(5) { left: 73%; animation-delay: 3s; animation-duration: 15s; }
.particle:nth-child(6) { left: 88%; animation-delay: 5s; animation-duration: 12s; }
@keyframes pFloat { 0% { transform: translateY(100vh) scale(0); opacity: 0; } 10% { opacity: .5; } 90% { opacity: .08; } 100% { transform: translateY(-10vh) scale(1.5); opacity: 0; } }

/* ─── Custom Cursor ─── */
.cursor { position: fixed; width: 18px; height: 18px; border: 1.5px solid var(--gold); border-radius: 50%; pointer-events: none; z-index: 10000; transition: transform .12s var(--ease), opacity .3s; transform: translate(-50%, -50%); opacity: 0; }
.cursor.big { transform: translate(-50%, -50%) scale(2.5); opacity: .3; }
@media (max-width: 768px) { .cursor { display: none; } }

/* ─── Reading Progress Bar ─── */
.reading-bar { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 10001; background: rgba(0,0,0,.06); }
.reading-bar-fill { height: 100%; background: var(--grad); width: 0; transition: width .1s linear; }

/* ─── Glow Line Divider ─── */
.glow-line { height: 1px; background: linear-gradient(90deg, transparent 5%, var(--primary) 50%, transparent 95%); box-shadow: 0 0 24px rgba(var(--primary-rgb), .2); }

/* ─── Aurora / Noise ─── */
.aurora { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.aurora::before, .aurora::after { content: ''; position: absolute; width: 150%; height: 150%; border-radius: 40%; animation: auroraR 20s linear infinite; }
.aurora::before { top: -50%; left: -25%; background: radial-gradient(ellipse, rgba(var(--primary-rgb), .05) 0%, transparent 60%); }
.aurora::after { bottom: -50%; right: -25%; background: radial-gradient(ellipse, rgba(184,134,78,.035) 0%, transparent 60%); animation-direction: reverse; animation-duration: 25s; }
@keyframes auroraR { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.noise { position: absolute; inset: 0; opacity: .03; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); pointer-events: none; z-index: 0; }

/* ═══════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════ */
.nav {
	position: fixed; top: 0; left: 0; right: 0; z-index: 100;
	display: flex; align-items: center; justify-content: space-between;
	padding: 0 36px; height: 68px;
	background: rgba(255,255,255,.92); backdrop-filter: blur(24px);
	border-bottom: 1px solid rgba(240,237,232,.6);
	transition: all .5s var(--ease);
}
.nav.scrolled { box-shadow: 0 1px 20px rgba(0,0,0,.04); }
.nav.nav-hidden { transform: translateY(-100%); }
.nav-spacer { height: 68px; }

/* Single post: no spacer so hero fills under nav */
.single-post .nav-spacer { display: none; }

.nav--dark { background: transparent; border-bottom-color: rgba(255,255,255,.08); }
.nav--dark .nav-link, .nav--dark .nav-icon svg, .nav--dark .nav-social a svg { color: #fff; fill: #fff; }
.nav--dark .nav-sub { color: #fff; border-color: rgba(255,255,255,.3); }
.nav--dark .nav-sub::before { background: #fff; }
.nav--dark .nav-sub:hover { color: var(--secondary); }
.nav--dark .nav-ham span { background: #fff; }
.nav--dark .nav-ham:hover { background: rgba(255,255,255,.08); }
.nav--dark .nav-social a { color: rgba(255,255,255,.6); }
.nav--dark .nav-social a:hover { color: var(--gold); }
.nav--dark.scrolled { background: rgba(14,15,15,.92); backdrop-filter: blur(24px); }

.nav-logo img.nav-logo-white { display: none; }
.nav--dark .nav-logo img.nav-logo-dark { display: none; }
.nav--dark .nav-logo img.nav-logo-white { display: block; }

/* Hamburger */
.nav-ham { display: flex; flex-direction: column; gap: 5px; width: 38px; height: 38px; align-items: center; justify-content: center; flex-shrink: 0; border-radius: var(--radius-xs); margin-right: 16px; transition: background .3s; z-index: 10; }
.nav-ham:hover { background: var(--bg-alt); }
.nav-ham span { display: block; width: 18px; height: 1.5px; background: var(--secondary); transition: all .4s var(--ease); transform-origin: center; }
.nav-ham.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-ham.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Logo */
.nav-logo { flex-shrink: 0; }
.nav-logo img { width: 148px; height: auto; display: block; }
@media(max-width:480px) { .nav-logo img { width: 110px; } }

/* Center links */
.nav-center { display: flex; gap: 26px; align-items: center; position: absolute; left: 50%; transform: translateX(-50%); }
.nav-link { font-size: .6rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--secondary); transition: color .3s; position: relative; padding: 4px 0; }
.nav-link:hover, .nav-link.current-menu-item, .nav-link.current_page_item { color: var(--gold); }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width var(--transition); }
.nav-link:hover::after, .nav-link.current-menu-item::after { width: 100%; }

/* Right side */
.nav-right { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.nav-social { display: flex; gap: 8px; }
.nav-social a { display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; color: var(--secondary); transition: color .3s; }
.nav-social a:hover { color: var(--gold); }
.nav-social svg { width: 14px; height: 14px; }
.nav-icon { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--secondary); transition: background .3s; }
.nav-icon:hover { background: var(--bg-alt); }
.nav-icon svg { width: 16px; height: 16px; }
.nav-sub { font-size: .55rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 9px 20px; border: 1.5px solid var(--secondary); border-radius: 9999px; color: var(--secondary); position: relative; overflow: hidden; transition: color .3s; }
.nav-sub::before { content: ''; position: absolute; inset: 0; background: var(--secondary); transform: translateY(100%); transition: transform .35s var(--ease); z-index: -1; }
.nav-sub:hover { color: #fff; }
.nav-sub:hover::before { transform: translateY(0); }

/* ═══════════════════════════════════════════════════
   FULLSCREEN MENU
   ═══════════════════════════════════════════════════ */
.fs-menu {
	position: fixed; inset: 0; z-index: 500;
	display: flex; flex-direction: column;
	background: var(--bg-dark);
	pointer-events: none;
	clip-path: circle(0% at 55px 34px);
	transition: clip-path .75s var(--ease);
}
.fs-menu.open { clip-path: circle(150% at 55px 34px); pointer-events: all; }
.fs-menu::before { content: ''; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); opacity: .035; pointer-events: none; z-index: 0; }
.fs-menu::after { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(var(--primary-rgb),.08) 0%, transparent 65%); top: -120px; right: -80px; pointer-events: none; animation: orbF 18s ease-in-out infinite; }
@keyframes orbF { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(20px,-15px) scale(1.05); } 66% { transform: translate(-15px,10px) scale(.95); } }
.fs-menu-inner { position: relative; z-index: 1; display: flex; flex-direction: column; height: 100%; padding: 0 7vw; }
@media(max-width:480px) { .fs-menu-inner { padding: 0 6vw; } }
.fs-menu-bar { display: flex; align-items: center; justify-content: space-between; height: 72px; flex-shrink: 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.fs-logo img { width: 140px; height: auto; }
.fs-close { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); color: #fff; transition: all .3s var(--ease); cursor: pointer; }
.fs-close:hover { border-color: var(--gold); color: var(--gold); transform: rotate(90deg); }
.fs-close svg { width: 18px; height: 18px; }

.fs-menu-content { flex: 1; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 0; }
@media(max-width:768px) { .fs-menu-content { grid-template-columns: 1fr; } }
.fs-nav { display: flex; flex-direction: column; gap: 0; padding-right: 8vw; border-right: 1px solid rgba(255,255,255,.06); }
@media(max-width:768px) { .fs-nav { border-right: none; padding-right: 0; } }
.fs-link { display: flex; align-items: center; gap: 20px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.05); cursor: pointer; text-decoration: none; overflow: hidden; position: relative; }
.fs-link-num { font-size: .5rem; font-weight: 700; letter-spacing: .2em; color: rgba(var(--primary-rgb),.5); width: 24px; flex-shrink: 0; transform: translateY(20px); opacity: 0; transition: transform .6s var(--ease), opacity .6s var(--ease); }
.fs-link-text { font-weight: 400; font-size: clamp(1.6rem, 4.5vw, 3.5rem); color: #fff; letter-spacing: -.02em; line-height: 1; transform: translateY(40px); opacity: 0; transition: transform .65s var(--ease), opacity .65s var(--ease), color .3s; }
.fs-link-arrow { margin-left: auto; width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); flex-shrink: 0; transform: translateY(20px) translateX(-8px); opacity: 0; transition: transform .6s var(--ease), opacity .6s var(--ease), border-color .3s, color .3s; }
.fs-link-arrow svg { width: 12px; height: 12px; transition: transform .3s var(--ease); }
.fs-link:hover .fs-link-text { color: #fff; }
.fs-link:hover .fs-link-arrow { border-color: var(--gold); color: var(--gold); }
.fs-link:hover .fs-link-arrow svg { transform: translate(2px, -2px); }
.fs-menu.open .fs-link-num, .fs-menu.open .fs-link-text, .fs-menu.open .fs-link-arrow { transform: translateY(0) translateX(0); opacity: 1; }
.fs-menu.open .fs-link:nth-child(1) .fs-link-num, .fs-menu.open .fs-link:nth-child(1) .fs-link-text, .fs-menu.open .fs-link:nth-child(1) .fs-link-arrow { transition-delay: .28s; }
.fs-menu.open .fs-link:nth-child(2) .fs-link-num, .fs-menu.open .fs-link:nth-child(2) .fs-link-text, .fs-menu.open .fs-link:nth-child(2) .fs-link-arrow { transition-delay: .35s; }
.fs-menu.open .fs-link:nth-child(3) .fs-link-num, .fs-menu.open .fs-link:nth-child(3) .fs-link-text, .fs-menu.open .fs-link:nth-child(3) .fs-link-arrow { transition-delay: .42s; }
.fs-menu.open .fs-link:nth-child(4) .fs-link-num, .fs-menu.open .fs-link:nth-child(4) .fs-link-text, .fs-menu.open .fs-link:nth-child(4) .fs-link-arrow { transition-delay: .49s; }
.fs-menu.open .fs-link:nth-child(5) .fs-link-num, .fs-menu.open .fs-link:nth-child(5) .fs-link-text, .fs-menu.open .fs-link:nth-child(5) .fs-link-arrow { transition-delay: .56s; }
.fs-menu.open .fs-link:nth-child(6) .fs-link-num, .fs-menu.open .fs-link:nth-child(6) .fs-link-text, .fs-menu.open .fs-link:nth-child(6) .fs-link-arrow { transition-delay: .63s; }

.fs-aside { padding-left: 8vw; display: flex; flex-direction: column; justify-content: center; gap: 40px; }
@media(max-width:768px) { .fs-aside { display: none; } }
.fs-aside-label { font-size: .48rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: rgba(var(--primary-rgb),.6); margin-bottom: 16px; }
.fs-featured { position: relative; border-radius: var(--radius); overflow: hidden; display: block; aspect-ratio: 4/3; transform: translateY(24px); opacity: 0; transition: transform .8s var(--ease) .5s, opacity .8s var(--ease) .5s; }
.fs-menu.open .fs-featured { transform: translateY(0); opacity: 1; }
.fs-featured img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.7); }
.fs-featured-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.7), transparent 55%); }
.fs-featured-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 22px; color: #fff; }
.fs-featured-cat { font-size: .44rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--primary-light); margin-bottom: 6px; }
.fs-featured-title { font-weight: 500; font-size: .9rem; color: #fff; line-height: 1.35; }

.fs-menu-foot { flex-shrink: 0; border-top: 1px solid rgba(255,255,255,.06); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; }
.fs-foot-copy { font-size: .52rem; color: rgba(255,255,255,.5); letter-spacing: .06em; }
.fs-foot-social { display: flex; gap: 12px; }
.fs-foot-social a { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); transition: all .3s var(--ease); }
.fs-foot-social a:hover { border-color: var(--gold); background: var(--gold); color: #fff; }
.fs-foot-social svg { width: 12px; height: 12px; }

/* ═══════════════════════════════════════════════════
   SECTIONS (Generic)
   ═══════════════════════════════════════════════════ */
.section { position: relative; padding: 88px 40px; overflow: hidden; }
.section > * { position: relative; z-index: 1; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.sec-head { display: flex; align-items: center; margin-bottom: 48px; }
.sec-label { font-weight: 600; font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--secondary); white-space: nowrap; }
.sec-line { flex: 1; height: 1px; background: var(--border-light); margin: 0 24px; }
.sec-more { font-size: .6rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); white-space: nowrap; transition: color .3s; }
.sec-more:hover { color: var(--primary); }
@media (max-width: 768px) { .section { padding: 56px 24px; } .sec-head { margin-bottom: 32px; } }
@media (max-width: 480px) { .section { padding: 44px 16px; } }

/* ═══════════════════════════════════════════════════
   FIRST FOLD / HERO SLIDER
   ═══════════════════════════════════════════════════ */
.ff { display: grid; grid-template-columns: 1.15fr 1fr; min-height: 76vh; overflow: hidden; }
@media (max-width: 900px) { .ff { grid-template-columns: 1fr; min-height: auto; } }
@media (max-width: 640px) { .ff { display: block; overflow: visible; } }

/* Mobile slider wrapper */
.ff-slider { display: contents; }
@media (max-width: 640px) { .ff-slider { display: flex; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; width: 100%; height: 180vw; } .ff-slider::-webkit-scrollbar { display: none; } }
@media (max-width: 640px) { #ffStack { display: none; } }
.ff-slider-dots { display: none; }
@media (max-width: 640px) { .ff-slider-dots { display: flex; justify-content: center; gap: 7px; padding: 14px 0; background: var(--bg-dark); } }
.ff-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.2); border: none; cursor: pointer; transition: all .3s var(--ease); padding: 0; }
.ff-dot.active { background: var(--gold); width: 18px; border-radius: 3px; }

/* Featured (left) */
.ff-main { position: relative; overflow: hidden; cursor: pointer; min-height: 76vh; }
@media (max-width: 900px) { .ff-main { min-height: 56vw; } }
@media (max-width: 640px) { .ff-main { flex: 0 0 100%; width: 100%; scroll-snap-align: start; min-height: 180vw; height: 180vw; } }
.ff-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s var(--ease), filter .7s; }
.ff-main:hover img { transform: scale(1.05); filter: brightness(.72); }
.ff-main-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.35) 40%, rgba(0,0,0,.06) 70%), linear-gradient(to right, rgba(0,0,0,.18), transparent 55%); }
.ff-main-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 48px 52px; z-index: 2; }
@media (max-width: 640px) { .ff-main-body { padding: 28px 24px; } }
.ff-badge { font-size: .46rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: #fff; background: var(--gold); padding: 5px 14px; border-radius: var(--r-full); display: inline-block; margin-bottom: 16px; }
.ff-main-cat { font-size: .48rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--primary-light); margin-bottom: 10px; }
.ff-main-title { font-weight: 400; font-size: clamp(1.2rem, 2.8vw, 2.9rem); color: #fff; line-height: 1.1; margin-bottom: 14px; letter-spacing: -.025em; max-width: 520px; }
.ff-main-title em { font-style: normal; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ff-main-excerpt { font-weight: 300; font-size: .84rem; line-height: 1.82; color: rgba(255,255,255,.82); max-width: 440px; margin-bottom: 22px; }
@media (max-width: 640px) { .ff-main-excerpt { font-size: .78rem; line-height: 1.65; margin-bottom: 14px; } }
.ff-main-meta { display: flex; align-items: center; gap: 8px; font-size: .53rem; color: rgba(255,255,255,.7); margin-bottom: 18px; }
.ff-main-meta svg { width: 11px; height: 11px; opacity: .4; }
.ff-main-meta span.dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.2); display: inline-block; }
.ff-main-read { display: inline-flex; align-items: center; gap: 8px; font-size: .54rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--primary-light); transition: gap .35s var(--ease); }
.ff-main-read svg { width: 13px; height: 13px; transition: transform .35s var(--ease); }
.ff-main:hover .ff-main-read { gap: 14px; }
.ff-main:hover .ff-main-read svg { transform: translate(4px, -4px); }

/* Side stack (right) */
.ff-stack { display: flex; flex-direction: column; border-left: 1px solid var(--border-light); }
@media (max-width: 900px) { .ff-stack { border-left: none; border-top: 1px solid var(--border-light); } }
.ff-card { flex: 1; position: relative; overflow: hidden; cursor: pointer; display: flex; flex-direction: column; justify-content: flex-end; min-height: 0; }
.ff-card + .ff-card { border-top: 1px solid var(--border-light); }
.ff-card-img-wrap { position: absolute; inset: 0; }
.ff-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease), filter .6s; }
.ff-card:hover .ff-card-img-wrap img { transform: scale(1.07); filter: brightness(.65); }
.ff-card-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.18) 45%, transparent 70%); }
.ff-card-body { position: relative; z-index: 2; padding: 24px 28px; transform: translateY(6px); transition: transform .45s var(--ease); }
.ff-card:hover .ff-card-body { transform: translateY(0); }
.ff-card-cat { font-size: .44rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--primary-light); margin-bottom: 6px; }
.ff-card-title { font-weight: 500; font-size: clamp(.9rem, 1.2vw, 1.05rem); line-height: 1.32; color: #fff; margin-bottom: 8px; transition: color .3s var(--ease); }
.ff-card:hover .ff-card-title { color: var(--primary-light); }
.ff-card-meta { font-size: .5rem; color: rgba(255,255,255,.72); display: flex; align-items: center; gap: 6px; }
.ff-card-meta svg { width: 10px; height: 10px; opacity: .35; }
.ff-card-meta span.dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.2); display: inline-block; }
/* accent line */
.ff-card::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--grad); z-index: 3; transition: width .55s var(--ease); }
.ff-card:hover::after { width: 100%; }
@media (max-width: 900px) { .ff-card { min-height: 200px; } .ff-card + .ff-card { border-top: 1px solid rgba(255,255,255,.06); } }
@media (max-width: 640px) { .ff-card { flex: 0 0 100%; width: 100%; scroll-snap-align: start; min-height: 180vw; height: 180vw; } .ff-card + .ff-card { border-top: none; } }
/* ff-stack card stagger */
.ff-stack .ff-card:nth-child(1) .ff-card-body { transition-delay: 0s; }
.ff-stack .ff-card:nth-child(2) .ff-card-body { transition-delay: .06s; }
.ff-stack .ff-card:nth-child(3) .ff-card-body { transition-delay: .12s; }

/* ═══════════════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════════════ */
.marquee { padding: 14px 0; overflow: hidden; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); background: #f4f4f4; }
.marquee-track { display: flex; animation: marq 50s linear infinite; width: max-content; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { font-weight: 400; font-size: .65rem; letter-spacing: .26em; text-transform: uppercase; color: var(--text-muted); white-space: nowrap; padding: 0 28px; display: flex; align-items: center; gap: 28px; }
.marquee-item::after { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); opacity: .6; flex-shrink: 0; }
@keyframes marq { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Estudio Oca marquee bar */
.mqbar { overflow: hidden; border-top: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.05); padding: 15px 0; background: rgba(0,0,0,.3); }
.mqtrack { display: flex; white-space: nowrap; animation: marqueeScroll 30s linear infinite; }
.mqbar:hover .mqtrack { animation-play-state: paused; }
.mqi { display: inline-flex; align-items: center; gap: 18px; font-size: .58rem; font-weight: 700; letter-spacing: .32em; text-transform: uppercase; color: rgba(255,255,255,.22); padding: 0 44px; flex-shrink: 0; }
.mqd { width: 4px; height: 4px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════════════
   EDITOR'S PICKS
   ═══════════════════════════════════════════════════ */
.ep-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.ep-slider { display: contents; }
.ep-main { position: relative; border-radius: var(--r-xl); overflow: hidden; cursor: pointer; height: 500px; display: block; }
@media (max-width: 860px) { .ep-main { height: 340px; } }
.ep-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease), filter .7s; }
.ep-main:hover img { transform: scale(1.05); filter: brightness(.75); }
.ep-main-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.18) 80%, transparent 100%); }
.ep-main-top { position: absolute; top: 0; left: 0; right: 0; padding: 20px 24px; z-index: 3; }
.ep-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.ep-tag { font-size: .47rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #fff; background: var(--gold); padding: 5px 14px; border-radius: 9999px; }
.ep-tag-alt { font-size: .47rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #fff; background: rgba(255,255,255,.1); backdrop-filter: blur(10px); padding: 5px 14px; border-radius: 9999px; border: 1px solid rgba(255,255,255,.16); }
.ep-main-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 32px; z-index: 2; color: #fff; }
.ep-main-title { font-weight: 600; font-size: clamp(1.1rem, 2vw, 1.75rem); color: #fff; line-height: 1.2; margin-bottom: 10px; }
.ep-main:hover .ep-main-title { color: var(--primary-light); }
.ep-main-excerpt { font-weight: 300; font-size: .82rem; line-height: 1.75; color: rgba(255,255,255,.82); max-width: 420px; margin-bottom: 14px; }
@media (max-width: 640px) { .ep-main-excerpt { display: none; } }
.ep-main-meta { display: flex; align-items: center; gap: 8px; font-size: .52rem; color: rgba(255,255,255,.7); }
.ep-main-meta svg { width: 10px; height: 10px; opacity: .5; }

/* EP slider mobile */
.ep-slider-dots { display: none; }
@media (max-width: 640px) {
	.ep-slider { display: flex; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; gap: 0; border-radius: var(--r-xl); }
	.ep-slider::-webkit-scrollbar { display: none; }
	.ep-slider .ep-main { flex: 0 0 100%; scroll-snap-align: start; border-radius: 0; height: 72vw; }
	.ep-slider-dots { display: flex; justify-content: center; gap: 7px; padding: 12px 0; }
}
.ep-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; transition: all .3s var(--ease); padding: 0; }
.ep-dot.active { background: var(--gold); width: 18px; border-radius: 3px; }

/* EP small cards — 4-column grid below main */
.ep-smalls { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1100px) { .ep-smalls { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .ep-smalls { grid-template-columns: 1fr; } }
.ep-small { display: flex; flex-direction: column; gap: 10px; cursor: pointer; padding: 12px 10px; border-radius: var(--r-lg); border: 1px solid transparent; transition: background .3s, border-color .3s; }
.ep-small:hover { background: #f4f4f4; border-color: var(--border-light); }
.ep-small-img { position: relative; overflow: hidden; border-radius: var(--r-md); aspect-ratio: 4/3; flex-shrink: 0; }
.ep-small-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.ep-small:hover .ep-small-img img { transform: scale(1.08); }
.ep-small-img::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--grad); transition: width .4s var(--ease); }
.ep-small:hover .ep-small-img::after { width: 100%; }
.ep-small-cat { font-size: .46rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.ep-small-title { font-weight: 600; font-size: .85rem; line-height: 1.38; color: var(--secondary); margin-bottom: 5px; transition: color .3s; }
.ep-small:hover .ep-small-title { color: var(--primary-dark); }
.ep-small-meta { font-size: .5rem; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.ep-small-meta svg { width: 10px; height: 10px; opacity: .45; }

/* ═══════════════════════════════════════════════════
   HORIZONTAL SCROLL
   ═══════════════════════════════════════════════════ */
.hscroll { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 4px; padding-right: 40px; }
.hscroll::-webkit-scrollbar { display: none; }

.h-card { flex: 0 0 320px; scroll-snap-align: start; border-radius: var(--r-lg); overflow: hidden; background: #fff; border: 1px solid var(--border-light); transition: all .5s var(--ease); position: relative; }
.h-card:hover { transform: translateY(-6px); box-shadow: 0 20px 52px rgba(0,0,0,.1); border-color: transparent; }
.h-card-img { height: 240px; overflow: hidden; position: relative; }
.h-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.h-card:hover .h-card-img img { transform: scale(1.07); }
.h-card-img-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.4), transparent 50%); opacity: 0; transition: opacity .4s; }
.h-card:hover .h-card-img-ov { opacity: 1; }
.h-card-num { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.1); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; font-size: .6rem; font-weight: 700; color: #fff; z-index: 2; }
.h-card-body { padding: 20px 22px 22px; }
.h-card-cat { font-size: .46rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
.h-card-title { font-weight: 600; font-size: .9rem; line-height: 1.38; color: var(--secondary); margin-bottom: 8px; transition: color .3s; }
.h-card-title a { color: inherit; }
.h-card:hover .h-card-title, .h-card:hover .h-card-title a { color: var(--primary-dark); }
.h-card-text { font-weight: 300; font-size: .8rem; line-height: 1.72; color: var(--text-light); margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.h-card-meta { font-size: .52rem; color: var(--text-muted); }
.h-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--grad); transition: width .5s var(--ease); }
.h-card:hover::after { width: 100%; }

.hscroll-nav { display: flex; gap: 10px; margin-top: 28px; justify-content: flex-end; }
.hscroll-btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--secondary); transition: all .3s var(--ease); cursor: pointer; flex-shrink: 0; }
.hscroll-btn:hover { border-color: var(--gold); background: var(--gold); color: #fff; transform: scale(1.08); }
.hscroll-btn svg { width: 15px; height: 15px; }
@media (max-width: 600px) { .h-card { flex: 0 0 86vw; } .hscroll { padding-right: 16px; padding-left: 2px; } }

/* ═══════════════════════════════════════════════════
   HERO FULL (Feature)
   ═══════════════════════════════════════════════════ */
.hero-full { position: relative; min-height: 90vh; overflow: hidden; display: flex; align-items: flex-end; }
.hero-full img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: heroZoom 22s ease-in-out infinite alternate; }
@keyframes heroZoom { 0% { transform: scale(1); } 100% { transform: scale(1.07); } }
.hero-full-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.3) 42%, rgba(0,0,0,.04) 72%), linear-gradient(to right, rgba(0,0,0,.25), transparent 60%); }
.hero-full-body { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; width: 100%; padding: 0 48px 80px; }
.hero-full-eye { font-size: .48rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.hero-full-eye::after { content: ''; width: 40px; height: 1px; background: var(--gold); opacity: .5; }
.hero-full-badge { font-size: .47rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: #fff; background: rgba(255,255,255,.08); backdrop-filter: blur(16px); padding: 6px 18px; border-radius: var(--r-full); border: 1px solid rgba(255,255,255,.14); display: inline-block; margin-bottom: 22px; }
.hero-full-title { font-weight: 400; font-size: clamp(2.4rem, 5.5vw, 4.2rem); line-height: 1.05; color: #fff; margin-bottom: 20px; letter-spacing: -.025em; max-width: 720px; }
.hero-full-title em { font-style: italic; color: var(--primary-light); }
.hero-full-excerpt { font-weight: 300; font-size: clamp(.88rem, 1.1vw, .98rem); line-height: 1.85; color: rgba(255,255,255,.75); max-width: 520px; margin-bottom: 36px; }
.hero-full-cta { display: inline-flex; align-items: center; gap: 10px; font-size: .6rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #fff; background: var(--grad); padding: 15px 34px; border-radius: var(--r-full); box-shadow: 0 4px 28px rgba(var(--primary-rgb), .4); transition: all .4s var(--ease); position: relative; overflow: hidden; width: fit-content; }
.hero-full-cta::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: rgba(255,255,255,.12); border-radius: 50%; transform: translate(-50%, -50%); transition: width .55s, height .55s; }
.hero-full-cta:hover::before { width: 320px; height: 320px; }
.hero-full-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.hero-full-cta svg { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.hero-full-cta:hover svg { transform: translate(3px, -3px); }
.hero-full-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-full-scroll span { font-size: .52rem; letter-spacing: .32em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.hero-full-scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--gold), transparent); animation: sPulse 2.2s ease-in-out infinite; }
@keyframes sPulse { 0%, 100% { transform: scaleY(1); opacity: .45; } 50% { transform: scaleY(.5); opacity: 1; } }
.hero-full-line { position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); animation: lineGlow 3.5s ease-in-out infinite; z-index: 3; }
@keyframes lineGlow { 0%, 100% { opacity: .25; } 50% { opacity: .7; } }
@media (max-width: 768px) { .hero-full { min-height: 78vh; } .hero-full-body { padding: 0 22px 52px; } }
@media (max-width: 480px) { .hero-full { min-height: 85vh; } .hero-full-body { padding: 0 20px 56px; } }

/* ═══════════════════════════════════════════════════
   VIDEO / DESIGN EM FOCO
   ═══════════════════════════════════════════════════ */
.vid-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.vid-slider { display: contents; }
.vid-main { position: relative; border-radius: var(--r-xl); overflow: hidden; cursor: pointer; height: 500px; display: block; }
@media (max-width: 860px) { .vid-main { height: 340px; } }
.vid-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease), filter .5s; }
.vid-main:hover img { transform: scale(1.04); filter: brightness(.72); }
.vid-main-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.18) 80%, transparent 100%); }
.vid-main-top { position: absolute; top: 0; left: 0; right: 0; padding: 20px 24px; z-index: 3; }
.vid-tag { display: inline-flex; font-size: .45rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #fff; background: var(--gold); padding: 5px 13px; border-radius: var(--r-full); margin-bottom: 10px; }
.vid-main-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 36px 32px; z-index: 2; color: #fff; overflow: hidden; }
.vid-main-title { font-weight: 600; font-size: clamp(1.25rem, 2vw, 1.75rem); color: #fff; line-height: 1.2; margin-bottom: 10px; }
.vid-main:hover .vid-main-title { color: var(--primary-light); }
.vid-main-excerpt { font-weight: 300; font-size: .82rem; line-height: 1.75; color: rgba(255,255,255,.82); max-width: 420px; margin-bottom: 14px; }
@media (max-width: 640px) { .vid-main-excerpt { display: none; } }

/* Vid slider mobile */
.vid-slider-dots { display: none; }
@media (max-width: 640px) {
	.vid-slider { display: flex; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; gap: 0; border-radius: var(--r-xl); }
	.vid-slider::-webkit-scrollbar { display: none; }
	.vid-slider .vid-main { flex: 0 0 100%; scroll-snap-align: start; border-radius: 0; height: 72vw; }
	.vid-slider-dots { display: flex; justify-content: center; gap: 7px; padding: 12px 0; }
}
.vid-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.2); border: none; cursor: pointer; transition: all .3s var(--ease); padding: 0; }
.vid-dot.active { background: var(--gold); width: 18px; border-radius: 3px; }

/* Vid small cards — 4-column grid below main */
.vid-smalls { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1100px) { .vid-smalls { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .vid-smalls { grid-template-columns: 1fr; } }
.vid-small { display: flex; flex-direction: column; gap: 10px; cursor: pointer; background: rgba(255,255,255,.03); padding: 12px 10px; border-radius: var(--r-lg); border: 1px solid rgba(255,255,255,.04); transition: background .3s, border-color .3s; }
.vid-small:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.08); }
.vid-small-img { position: relative; overflow: hidden; border-radius: var(--r-md); aspect-ratio: 4/3; flex-shrink: 0; }
.vid-small-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.vid-small:hover .vid-small-img img { transform: scale(1.07); }
.vid-small-cat { font-size: .46rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.vid-small-title { font-weight: 600; font-size: .85rem; line-height: 1.38; color: #fff; margin-bottom: 5px; transition: color .3s; }
.vid-small:hover .vid-small-title { color: var(--primary-light); }
.vid-small-meta { font-size: .5rem; color: rgba(255,255,255,.65); display: flex; align-items: center; gap: 5px; }
.vid-small-meta svg { width: 10px; height: 10px; opacity: .4; }

/* ═══════════════════════════════════════════════════
   CATEGORY MOSAIC
   ═══════════════════════════════════════════════════ */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 260px 260px; gap: 10px; }
.cat-grid .cat-item:first-child { grid-column: 1 / 3; grid-row: 1 / 3; }
@media (max-width: 960px) { .cat-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; } .cat-grid .cat-item:first-child { grid-column: 1 / 3; grid-row: 1 / 2; } }
@media (max-width: 520px) { .cat-grid { grid-template-columns: 1fr; grid-template-rows: auto; gap: 8px; } .cat-grid .cat-item:first-child { grid-column: auto; grid-row: auto; min-height: 220px; } .cat-item { min-height: 180px; } }

.cat-item { position: relative; border-radius: var(--r-xl); overflow: hidden; cursor: pointer; min-height: 140px; display: block; }
.cat-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease), filter .5s; }
.cat-item:hover img { transform: scale(1.07); filter: brightness(.62); }
.cat-bg { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.7), rgba(0,0,0,.08) 55%, transparent); transition: opacity .4s; }
.cat-item:hover .cat-bg { opacity: .85; }
.cat-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 22px; z-index: 2; color: #fff; }
.cat-eye { font-size: .44rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 6px; }
.cat-name { font-weight: 500; font-size: clamp(.9rem, 1.4vw, 1.2rem); color: #fff; letter-spacing: .02em; transition: transform .35s var(--ease); }
.cat-item:hover .cat-name { transform: translateY(-3px); }
.cat-item::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--grad); z-index: 3; transition: width .6s var(--ease); }
.cat-item:hover::after { width: 100%; }

/* ═══════════════════════════════════════════════════
   INSTAGRAM
   ═══════════════════════════════════════════════════ */
.insta { padding: 0; overflow: hidden; border-top: 1px solid var(--border-light); }
.insta-head { max-width: 1200px; margin: 0 auto; padding: 52px 40px 24px; display: flex; align-items: center; gap: 14px; }
.insta-logo { width: 36px; height: 36px; border-radius: 10px; background: #000; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.insta-logo svg { width: 17px; height: 17px; fill: #fff; }
.insta-label { font-weight: 300; font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--secondary); }
.insta-handle { font-size: .6rem; font-weight: 600; color: var(--text-muted); transition: color .3s; }
.insta-handle:hover { color: var(--gold); }
.insta-line { flex: 1; height: 1px; background: var(--border-light); }
.insta-follow { font-size: .54rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 8px 20px; border: 1.5px solid var(--secondary); border-radius: var(--r-full); color: var(--secondary); white-space: nowrap; transition: all .3s var(--ease); position: relative; overflow: hidden; }
.insta-follow::before { content: ''; position: absolute; inset: 0; background: var(--secondary); transform: translateY(100%); transition: transform .35s var(--ease); z-index: -1; }
.insta-follow:hover { color: #fff; }
.insta-follow:hover::before { transform: translateY(0); }
.insta-track-wrap { position: relative; }
.insta-track { display: flex; gap: 2px; overflow: hidden; cursor: grab; user-select: none; }
.insta-track:active { cursor: grabbing; }
.insta-slide { flex: 0 0 calc((100% - 14px) / 8); position: relative; overflow: hidden; aspect-ratio: 1/1; }
@media (max-width: 900px) { .insta-slide { flex: 0 0 calc((100% - 8px) / 5); } }
@media (max-width: 580px) { .insta-slide { flex: 0 0 calc((100% - 4px) / 3); } }
.insta-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .5s; }
.insta-slide:hover img { transform: scale(1.06); filter: brightness(.65); }
.insta-slide-ov { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; transition: background .4s; }
.insta-slide:hover .insta-slide-ov { background: rgba(0,0,0,.38); }
.insta-ico { opacity: 0; transform: scale(.6); transition: all .4s var(--ease); }
.insta-slide:hover .insta-ico { opacity: 1; transform: scale(1); }
.insta-ico svg { width: 26px; height: 26px; fill: #fff; }
.insta-nav-wrap { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4; display: flex; gap: 8px; right: 20px; }
.insta-btn { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.94); backdrop-filter: blur(8px); border: 1px solid var(--border-light); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .3s var(--ease); color: var(--secondary); box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.insta-btn:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: scale(1.08); }
.insta-btn svg { width: 13px; height: 13px; }
@media (max-width: 768px) { .insta-head { padding: 40px 20px 20px; } }

/* ═══════════════════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════════════════ */
.newsletter { padding: 80px 40px; background: var(--bg-dark); position: relative; overflow: hidden; text-align: center; }
.nl-inner { max-width: 620px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.nl-eye { font-size: .52rem; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--primary); margin-bottom: 16px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.nl-eye::before, .nl-eye::after { content: ''; display: block; width: 22px; height: 1px; background: var(--primary); opacity: .5; }
.nl-label { font-size: .52rem; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--primary); margin-bottom: 16px; }
.nl-title { font-weight: 400; font-size: clamp(1.4rem, 2.8vw, 2.2rem); color: #fff; margin-bottom: 12px; letter-spacing: .03em; }
.nl-desc { font-weight: 300; font-size: .85rem; color: rgba(255,255,255,.62); margin-bottom: 32px; line-height: 1.6; }
.nl-form { display: flex; max-width: 440px; margin: 0 auto; border-radius: var(--r-full); overflow: hidden; border: 1px solid rgba(255,255,255,.1); transition: border-color .3s; }
.nl-form:focus-within { border-color: var(--primary); }
.nl-input { flex: 1; padding: 14px 22px; font-family: var(--font); font-size: .82rem; background: rgba(255,255,255,.04); color: #fff; border: none; outline: none; min-width: 0; }
.nl-input::placeholder { color: rgba(255,255,255,.25); }
.nl-btn { padding: 14px 28px; background: var(--grad); color: #fff; font-family: var(--font); font-size: .62rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; border: none; cursor: pointer; white-space: nowrap; transition: filter .3s; }
.nl-btn:hover { filter: brightness(1.15); }
@media (max-width: 600px) { .newsletter { padding: 60px 20px; } .nl-form { flex-direction: column; border-radius: var(--r-lg); } .nl-btn { border-radius: 0; width: 100%; } }
@media (max-width: 480px) { .newsletter { padding: 48px 16px; } }

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer { padding: 40px; border-top: 1px solid var(--border-light); background: #fff; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-logo img { width: 110px; height: auto; opacity: .45; transition: opacity .4s var(--ease); }
.footer-logo:hover img { opacity: .7; }
.footer-copy { font-size: .6rem; color: var(--text-muted); letter-spacing: .04em; }
.footer-social { display: flex; gap: 8px; }
.footer-social a { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border-light); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all .3s var(--ease); }
.footer-social a:hover { border-color: var(--gold); background: var(--gold); color: #fff; transform: translateY(-1px); }
.footer-social svg { width: 12px; height: 12px; }
@media (max-width: 640px) { .footer { padding: 32px 20px; } .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; } }
@media (max-width: 480px) { .footer { padding: 24px 16px; } }

/* ═══════════════════════════════════════════════════
   SINGLE POST — ARTICLE HERO
   ═══════════════════════════════════════════════════ */
.art-hero { position: relative; min-height: 80vh; display: flex; align-items: flex-end; overflow: hidden; }
@media (max-width: 480px) { .art-hero { min-height: 88vh; } }
.art-hero > img,
.art-hero > .wp-post-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: heroZoom 25s ease-in-out infinite alternate; }
.art-hero-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.45) 45%, rgba(0,0,0,.2) 75%); }
.art-hero-body { position: relative; z-index: 2; width: 100%; max-width: 900px; padding: 80px 60px 80px; margin: 0 auto; text-align: center; }
@media (max-width: 768px) { .art-hero-body { padding: 0 24px 48px; } }
@media (max-width: 480px) { .art-hero-body { padding: 0 16px 40px; } }
.art-hero-crumbs { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .52rem; font-weight: 500; letter-spacing: .08em; color: rgba(255,255,255,.55); margin-bottom: 20px; }
.art-hero-crumbs a:hover { color: var(--primary); }
.art-hero-crumbs svg { width: 10px; height: 10px; opacity: .3; }
.art-hero-cat { display: inline-block; font-size: .5rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: #fff; background: var(--primary); padding: 6px 18px; border-radius: var(--r-full); margin-bottom: 22px; }
.art-hero-title { font-weight: 400; font-size: clamp(2.2rem, 5.5vw, 4rem); line-height: 1.06; color: #fff; letter-spacing: -.03em; margin-bottom: 22px; }
.art-hero-title em { font-style: italic; color: var(--primary-light); font-weight: 400; }
.art-hero-excerpt { font-weight: 300; font-size: clamp(.88rem, 1.1vw, 1rem); line-height: 1.85; color: rgba(255,255,255,.72); max-width: 560px; margin: 0 auto 30px; }
.art-hero-meta { display: flex; align-items: center; justify-content: center; gap: 10px 16px; flex-wrap: wrap; }
@media (max-width: 480px) { .art-hero-meta-sep { display: none; } }
.art-hero-author { display: flex; align-items: center; gap: 12px; }
.art-hero-avatar { width: 42px !important; height: 42px !important; min-width: 42px; min-height: 42px; max-width: 42px; max-height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(var(--primary-rgb),.4); flex-shrink: 0; display: inline-block; vertical-align: middle; }
.art-hero-author-name { font-weight: 600; font-size: .78rem; color: #fff; }
.art-hero-author-role { font-size: .52rem; color: rgba(255,255,255,.55); }
.art-hero-meta-sep { width: 1px; height: 28px; background: rgba(255,255,255,.12); }
.art-hero-date, .art-hero-read { font-size: .54rem; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: 6px; }
.art-hero-date svg, .art-hero-read svg { width: 12px; height: 12px; opacity: .4; }
.art-hero-line { position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--primary), transparent); z-index: 3; animation: lineGlow 3.5s ease-in-out infinite; }

/* ═══════════════════════════════════════════════════
   SINGLE POST — ARTICLE LAYOUT
   ═══════════════════════════════════════════════════ */
.art-layout { display: grid; grid-template-columns: 1fr 340px; gap: 64px; max-width: 1200px; margin: 0 auto; padding: 72px 48px 100px; }
@media (max-width: 1060px) { .art-layout { grid-template-columns: 1fr; gap: 48px; padding: 48px 24px 72px; } }
@media (max-width: 480px) { .art-layout { padding: 36px 16px 56px; } }
.art-layout--full { grid-template-columns: 1fr; max-width: 820px; }

/* ═══════════════════════════════════════════════════
   SINGLE POST — ARTICLE CONTENT
   ═══════════════════════════════════════════════════ */
.art-content h2 { font-weight: 600; font-size: 1.55rem; color: var(--secondary); line-height: 1.25; margin: 48px 0 18px; padding-left: 20px; position: relative; }
@media (max-width: 480px) { .art-content h2 { font-size: 1.25rem; margin: 36px 0 14px; } }
.art-content h2::before { content: ''; position: absolute; left: 0; top: 4px; bottom: 4px; width: 3px; background: var(--grad); border-radius: 2px; }
.art-content h3 { font-weight: 600; font-size: 1.15rem; color: var(--secondary); margin: 36px 0 14px; }
.art-content p { font-weight: 400; font-size: 1.02rem; line-height: 1.9; color: var(--text-light); margin-bottom: 20px; }
@media (max-width: 480px) { .art-content p { font-size: .95rem; line-height: 1.85; } }
.art-content > p:first-of-type { font-size: 1.1rem; font-weight: 400; color: var(--text); line-height: 1.95; }
.art-content > p:first-of-type::first-letter { font-size: 3.8rem; font-weight: 400; float: left; line-height: .8; margin: 6px 14px 0 0; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
@media (max-width: 480px) { .art-content > p:first-of-type::first-letter { font-size: 2.8rem; margin: 4px 10px 0 0; } }
.art-pullquote, .art-content blockquote { position: relative; margin: 48px 0; padding: 36px 40px 36px 44px; border-left: 3px solid var(--primary); background: #f4f4f4; border-radius: 0 var(--r-lg) var(--r-lg) 0; }
@media (max-width: 480px) { .art-pullquote, .art-content blockquote { padding: 24px 20px 24px 24px; margin: 32px 0; } }
.art-pullquote::before, .art-content blockquote::before { content: '\201C'; position: absolute; top: 12px; left: 16px; font-size: 3rem; font-weight: 100; color: var(--primary); opacity: .25; line-height: 1; }
.art-pullquote p, .art-content blockquote p { font-weight: 300; font-size: 1.1rem; font-style: italic; line-height: 1.85; color: var(--secondary); margin-bottom: 0; }
.art-pullquote cite, .art-content blockquote cite { display: block; margin-top: 14px; font-size: .7rem; font-style: normal; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); }
.art-img, .art-content figure { margin: 44px 0; border-radius: var(--r-xl); overflow: hidden; }
.art-img img, .art-content figure img { width: 100%; display: block; transition: transform .8s var(--ease); }
.art-img:hover img, .art-content figure:hover img { transform: scale(1.02); }
.art-img figcaption, .art-content figcaption { padding: 14px 0 0; font-size: .7rem; font-weight: 500; color: var(--text-muted); text-align: center; }
.art-content a { color: var(--primary-dark); text-decoration: underline; text-underline-offset: 2px; transition: color .3s; }
.art-content a:hover { color: var(--primary); }
.art-content ul, .art-content ol { margin: 20px 0; padding-left: 24px; }
.art-content li { font-size: 1.02rem; line-height: 1.9; color: var(--text-light); margin-bottom: 8px; }

/* ═══════════════════════════════════════════════════
   SINGLE POST — TAGS & SHARE
   ═══════════════════════════════════════════════════ */
.art-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border-light); }
.art-tag { font-size: .52rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: 7px 18px; border: 1px solid var(--border); border-radius: var(--r-full); color: var(--text-muted); transition: all .3s var(--ease); }
.art-tag:hover { border-color: var(--primary); color: var(--primary); }
.art-share { display: flex; align-items: center; gap: 14px; margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--border-light); }
.art-share-label { font-size: .55rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); }
.art-share-icons { display: flex; gap: 8px; }
.art-share-icons a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all .3s var(--ease); }
.art-share-icons a:hover { border-color: var(--primary); background: var(--primary); color: #fff; transform: translateY(-2px); }
.art-share-icons svg { width: 14px; height: 14px; }

/* ═══════════════════════════════════════════════════
   SINGLE POST — SIDEBAR
   ═══════════════════════════════════════════════════ */
.art-sidebar { display: flex; flex-direction: column; gap: 28px; min-width: 0; align-self: start; position: sticky; top: 88px; }
@media (max-width: 1060px) { .art-sidebar { order: -1; position: static; } }
@media (max-width: 640px) { .art-sidebar .widget-author, .art-sidebar .widget-nl, .art-sidebar .widget-related, .art-sidebar .widget-tags { display: none; } }
.art-sidebar .widget { border-radius: var(--r-xl); overflow: hidden; position: relative; }
.art-sidebar .widget::before { display: none; }
.widget-toc { background: #f4f4f4; padding: 28px; border: 1px solid var(--border-light); }
.widget-toc-label { font-size: .5rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--primary); margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.widget-toc-label svg { width: 14px; height: 14px; }
.widget-toc-item { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border-light); font-size: .78rem; font-weight: 500; color: var(--text-light); cursor: pointer; transition: all .3s var(--ease); }
.widget-toc-item:last-child { border-bottom: none; }
.widget-toc-item:hover { color: var(--primary); padding-left: 8px; }
.widget-toc-item.active { color: var(--primary); font-weight: 600; }
.widget-toc-num { font-size: .5rem; font-weight: 700; color: var(--text-muted); width: 20px; flex-shrink: 0; transition: color .3s; }
.widget-toc-item:hover .widget-toc-num, .widget-toc-item.active .widget-toc-num { color: var(--primary); }
.widget-author { background: var(--bg-dark); color: #fff; padding: 32px 28px; text-align: center; border: 1px solid rgba(255,255,255,.06); }
.widget-author-avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; border: 2px solid rgba(var(--primary-rgb),.4); }
.widget-author .avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; border: 2px solid rgba(var(--primary-rgb),.4); display: block; }
.widget-author-name { font-weight: 600; font-size: 1rem; margin-bottom: 3px; }
.widget-author-role { font-size: .52rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--primary); margin-bottom: 14px; }
.widget-author-bio { font-weight: 300; font-size: .78rem; line-height: 1.75; color: rgba(255,255,255,.65); margin-bottom: 20px; }
.widget-author-social { display: flex; justify-content: center; gap: 8px; }
.widget-author-social a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.4); transition: all .3s var(--ease); }
.widget-author-social a:hover { border-color: var(--primary); background: var(--primary); color: #fff; }
.widget-author-social svg { width: 12px; height: 12px; }
.widget-nl { background: linear-gradient(145deg, #0E0F0F, #1a1a1a); padding: 32px 28px; border: 1px solid rgba(255,255,255,.06); position: relative; overflow: hidden; }
.widget-nl::before { content: ''; position: absolute; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(var(--primary-rgb),.1), transparent 65%); top: -60px; right: -40px; pointer-events: none; }
.widget-nl-ico { width: 40px; height: 40px; border-radius: 10px; background: var(--grad); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.widget-nl-ico svg { width: 18px; height: 18px; color: #fff; }
.widget-nl-title { font-weight: 600; font-size: .95rem; color: #fff; margin-bottom: 6px; }
.widget-nl-desc { font-weight: 300; font-size: .75rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 18px; }
.widget-nl-input { width: 100%; padding: 12px 16px; font-family: var(--font); font-size: .78rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-md); color: #fff; outline: none; margin-bottom: 10px; transition: border-color .3s; }
.widget-nl-input::placeholder { color: rgba(255,255,255,.2); }
.widget-nl-input:focus { border-color: var(--primary); }
.widget-nl-btn { width: 100%; padding: 12px; font-family: var(--font); font-size: .6rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #fff; background: var(--grad); border: none; border-radius: var(--r-md); cursor: pointer; transition: all .3s var(--ease); }
.widget-nl-btn:hover { filter: brightness(1.12); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(var(--primary-rgb),.3); }
.widget-related { background: #f4f4f4; padding: 28px; border: 1px solid var(--border-light); }
.widget-related-label { font-size: .5rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--primary); margin-bottom: 18px; }
.widget-related-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border-light); cursor: pointer; transition: all .3s; }
.widget-related-item:last-child { border-bottom: none; }
.widget-related-item:hover { padding-left: 6px; }
.widget-related-thumb { width: 68px; height: 68px; border-radius: var(--r-md); overflow: hidden; flex-shrink: 0; }
.widget-related-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.widget-related-item:hover .widget-related-thumb img { transform: scale(1.1); }
.widget-related-cat { font-size: .44rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--primary); margin-bottom: 4px; }
.widget-related-title { font-weight: 600; font-size: .78rem; line-height: 1.38; color: var(--secondary); transition: color .3s; }
.widget-related-item:hover .widget-related-title { color: var(--primary-dark); }
.widget-related-meta { font-size: .5rem; color: var(--text-muted); margin-top: 4px; }
.widget-tags { background: #f4f4f4; padding: 28px; border: 1px solid var(--border-light); }
.widget-tags-label { font-size: .5rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--primary); margin-bottom: 16px; }
.widget-tags-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.widget-tags-cloud a { font-size: .52rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 6px 14px; border: 1px solid var(--border); border-radius: var(--r-full); color: var(--text-muted); transition: all .3s var(--ease); }
.widget-tags-cloud a:hover { border-color: var(--primary); color: var(--primary); background: rgba(var(--primary-rgb),.04); }

/* ═══════════════════════════════════════════════════
   SINGLE POST — PREV / NEXT NAV
   ═══════════════════════════════════════════════════ */
.art-nav { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--border-light); margin-top: 64px; }
@media (max-width: 640px) { .art-nav { grid-template-columns: 1fr; } }
.art-nav-item { display: flex; flex-direction: column; padding: 40px 48px; transition: background .3s; cursor: pointer; }
@media (max-width: 640px) { .art-nav-item { padding: 28px 20px; } }
.art-nav-item + .art-nav-item { border-left: 1px solid var(--border-light); }
@media (max-width: 640px) { .art-nav-item + .art-nav-item { border-left: none; border-top: 1px solid var(--border-light); } }
.art-nav-item:hover { background: #f4f4f4; }
.art-nav-item--empty { pointer-events: none; }
.art-nav-dir { font-size: .5rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--primary); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.art-nav-dir svg { width: 14px; height: 14px; }
.art-nav-item:last-child .art-nav-dir { justify-content: flex-end; }
.art-nav-item:last-child { text-align: right; }
.art-nav-title { font-weight: 600; font-size: 1rem; color: var(--secondary); line-height: 1.35; transition: color .3s; }
.art-nav-item:hover .art-nav-title { color: var(--primary-dark); }

/* ═══════════════════════════════════════════════════
   SINGLE POST — NAV WHITE MODE
   ═══════════════════════════════════════════════════ */
.nav.white-mode { background: rgba(255,255,255,.95); border-bottom-color: var(--border-light); box-shadow: 0 1px 20px rgba(0,0,0,.04); }
.nav.white-mode .nav-ham span { background: var(--secondary); }
.nav.white-mode .nav-link { color: var(--secondary); }
.nav.white-mode .nav-link:hover, .nav.white-mode .nav-link.active { color: var(--primary); }
.nav.white-mode .nav-social a { color: var(--secondary); }
.nav.white-mode .nav-icon { color: var(--secondary); }
.nav.white-mode .nav-sub { border-color: var(--secondary); color: var(--secondary); }
.nav.white-mode .nav-sub::before { background: var(--secondary); }
.nav.white-mode .nav-sub:hover { color: #fff; }
.nav.white-mode .nav-logo-dark { display: block; }
.nav.white-mode .nav-logo-white { display: none; }

/* ═══════════════════════════════════════════════════
   ARCHIVE HERO
   ═══════════════════════════════════════════════════ */
.archive-hero { position: relative; height: 52vh; min-height: 360px; max-height: 520px; overflow: hidden; display: flex; align-items: flex-end; }
.archive-hero-bg { position: absolute; inset: 0; }
.archive-hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: archiveHeroZoom 22s ease-in-out infinite alternate; }
@keyframes archiveHeroZoom { 0% { transform: scale(1.06) translate(0,0); } 100% { transform: scale(1.1) translate(-.8%,-.5%); } }
.archive-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.45) 40%, rgba(0,0,0,.2) 75%, rgba(0,0,0,.1) 100%); }
.archive-hero-noise { position: absolute; inset: 0; opacity: .035; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); pointer-events: none; z-index: 1; }
.archive-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--grad); z-index: 4; }
.archive-hero-content { position: relative; z-index: 3; padding: 0 48px 48px; max-width: 1280px; width: 100%; margin: 0 auto; }
.archive-hero-breadcrumb { font-size: .56rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.archive-hero-breadcrumb a { color: rgba(255,255,255,.6); transition: color .3s; }
.archive-hero-breadcrumb a:hover { color: var(--primary); }
.archive-hero-breadcrumb span { color: #fff; }
.archive-hero-eyebrow { font-size: .5rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--primary); margin-bottom: 12px; display: inline-flex; align-items: center; gap: 10px; }
.archive-hero-eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--primary); }
.archive-hero-title { font-weight: 400; font-size: clamp(2.2rem, 5vw, 4.2rem); color: #fff; line-height: 1.0; letter-spacing: -.02em; margin-bottom: 14px; }
.archive-hero-desc { font-weight: 300; font-size: .9rem; color: rgba(255,255,255,.82); max-width: 500px; line-height: 1.7; }
@media (max-width: 768px) { .archive-hero { height: 46vh; min-height: 320px; } .archive-hero-content { padding: 0 24px 36px; } }
@media (max-width: 480px) { .archive-hero { height: 52vh; min-height: 280px; } .archive-hero-content { padding: 0 16px 28px; } }

/* ═══════════════════════════════════════════════════
   FILTER BAR
   ═══════════════════════════════════════════════════ */
.filter-bar { position: sticky; top: 68px; z-index: 50; background: rgba(255,255,255,.96); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border-light); padding: 0 48px; }
.filter-bar-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 52px; gap: 16px; }
.filter-tags { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; flex: 1; }
.filter-tags::-webkit-scrollbar { display: none; }
.filter-tag { font-size: .58rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: 7px 18px; border-radius: var(--r-full); border: 1px solid var(--border); color: var(--text-muted); transition: all .3s var(--ease); white-space: nowrap; flex-shrink: 0; cursor: pointer; }
.filter-tag:hover { border-color: var(--primary); color: var(--primary); }
.filter-tag.active { background: var(--secondary); border-color: var(--secondary); color: #fff; }
.filter-view { display: flex; gap: 4px; flex-shrink: 0; }
.filter-view-btn { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border-radius: var(--r-md); border: 1px solid var(--border-light); color: var(--text-muted); transition: all .3s var(--ease); cursor: pointer; }
.filter-view-btn.active, .filter-view-btn:hover { border-color: var(--secondary); color: var(--secondary); }
.filter-view-btn svg { width: 15px; height: 15px; }
@media (max-width: 768px) { .filter-bar { padding: 0 24px; } }
@media (max-width: 480px) { .filter-bar { padding: 0 16px; } }

/* ═══════════════════════════════════════════════════
   ARCHIVE LAYOUT
   ═══════════════════════════════════════════════════ */
.archive-layout { max-width: 1280px; margin: 0 auto; padding: 56px 48px 80px; display: grid; grid-template-columns: 1fr 300px; gap: 56px; align-items: start; }
.archive-layout main { min-width: 0; }
@media (max-width: 1100px) { .archive-layout { grid-template-columns: 1fr; padding: 40px 24px 60px; } }
@media (max-width: 480px) { .archive-layout { padding: 28px 16px 48px; } }

/* ─── Featured Article ─── */
.feat-article { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; padding-bottom: 48px; border-bottom: 1px solid var(--border-light); margin-bottom: 48px; opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.feat-article.vis { opacity: 1; transform: translateY(0); }
.feat-article-img { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; position: relative; }
.feat-article-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.feat-article-img:hover img { transform: scale(1.04); }
.feat-article-img-num { position: absolute; top: 20px; right: 20px; font-size: 5rem; font-weight: 900; color: rgba(255,255,255,.06); line-height: 1; pointer-events: none; z-index: 1; }
.feat-article-img::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 35%; background: linear-gradient(to top, rgba(0,0,0,.25), transparent); }
.feat-article-text { display: flex; flex-direction: column; justify-content: center; }
.feat-label { font-size: .5rem; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--primary); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.feat-label::after { content: ''; flex: 1; height: 1px; background: var(--border-light); }
.feat-cat-badge { display: inline-flex; font-size: .5rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #fff; background: var(--secondary); padding: 5px 14px; border-radius: var(--r-sm); margin-bottom: 14px; }
.feat-title { font-weight: 600; font-size: clamp(1.2rem, 1.8vw, 1.65rem); line-height: 1.22; color: var(--secondary); margin-bottom: 12px; }
.feat-title a { color: inherit; transition: color .3s var(--ease); }
.feat-title a:hover { color: var(--primary-dark); }
.feat-meta { font-size: .6rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.feat-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--border); }
.feat-excerpt { font-weight: 300; font-size: .86rem; line-height: 1.8; color: var(--text-light); margin-bottom: 22px; }
.feat-cta { display: inline-flex; align-items: center; gap: 8px; font-size: .65rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--secondary); padding: 10px 0; position: relative; transition: color .3s var(--ease); }
.feat-cta::after { content: ''; position: absolute; bottom: 6px; left: 0; width: 0; height: 1px; background: var(--primary); transition: width .4s var(--ease); }
.feat-cta:hover { color: var(--primary); }
.feat-cta:hover::after { width: calc(100% - 22px); }
.feat-cta svg { width: 13px; height: 13px; transition: transform .3s var(--ease); }
.feat-cta:hover svg { transform: translate(3px, -3px); }
@media (max-width: 760px) { .feat-article { grid-template-columns: 1fr; gap: 24px; } }
@media (max-width: 480px) { .feat-article { padding-bottom: 32px; margin-bottom: 32px; } }

/* ─── Articles Heading ─── */
.articles-heading { display: flex; align-items: center; margin-bottom: 32px; }
.articles-heading-title { font-weight: 400; font-size: .95rem; letter-spacing: .16em; text-transform: uppercase; color: var(--secondary); white-space: nowrap; }
.articles-heading-line { flex: 1; height: 1px; background: var(--border-light); margin: 0 20px; }

/* ─── Articles Grid (3-col) ─── */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 48px; }
@media (max-width: 900px) { .articles-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .articles-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .articles-grid { gap: 20px; } }

.a-card { display: flex; flex-direction: column; opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.a-card.vis { opacity: 1; transform: translateY(0); }
.a-card:nth-child(2) { transition-delay: .07s; }
.a-card:nth-child(3) { transition-delay: .14s; }
.a-card:nth-child(4) { transition-delay: .21s; }
.a-card:nth-child(5) { transition-delay: .28s; }
.a-card:nth-child(6) { transition-delay: .35s; }

.a-card-img { position: relative; overflow: hidden; border-radius: var(--r-lg); margin-bottom: 16px; aspect-ratio: 3/4; }
.a-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease), filter .5s var(--ease); }
.a-card:hover .a-card-img img { transform: scale(1.05); filter: brightness(.9); }
.a-card-img::before { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--grad); z-index: 2; transition: width .45s var(--ease); }
.a-card:hover .a-card-img::before { width: 100%; }
.a-card-img::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 45%; background: linear-gradient(to top, rgba(0,0,0,.28), transparent); opacity: 0; transition: opacity .4s var(--ease); }
.a-card:hover .a-card-img::after { opacity: 1; }
.a-card-float { position: absolute; bottom: 12px; left: 12px; z-index: 3; font-size: .52rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: #fff; background: rgba(0,0,0,.38); backdrop-filter: blur(10px); padding: 6px 14px; border-radius: var(--r-full); opacity: 0; transform: translateY(6px); transition: all .35s var(--ease); }
.a-card:hover .a-card-float { opacity: 1; transform: translateY(0); }
.a-card-featured-badge { position: absolute; top: 12px; right: 12px; z-index: 3; font-size: .48rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: #fff; background: var(--gold); padding: 6px 14px; border-radius: var(--r-full); box-shadow: 0 2px 8px rgba(0,0,0,.15); }
.a-card.is-featured { border: 2px solid var(--gold); }
.a-card-body-lv { display: contents; }
.a-card-num-lv { display: none; }
.a-card-cat { font-size: .48rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--primary); margin-bottom: 7px; }
.a-card-title { font-weight: 600; font-size: .9rem; line-height: 1.38; color: var(--secondary); margin-bottom: 7px; transition: color .3s var(--ease); }
.a-card:hover .a-card-title { color: var(--primary-dark); }
.a-card-title a { color: inherit; }
.a-card-excerpt { font-weight: 300; font-size: .78rem; line-height: 1.65; color: var(--text-light); margin-bottom: 10px; flex: 1; }
.a-card-meta { font-size: .56rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; margin-top: auto; }
.dot { width: 3px; height: 3px; border-radius: 50%; background: var(--border); flex-shrink: 0; }

/* ─── List View ─── */
.articles-grid.list-view { grid-template-columns: 1fr; gap: 10px; }
.articles-grid.list-view .a-card { flex-direction: row; align-items: center; gap: 0; padding: 0; margin-bottom: 0; border-bottom: none; border: 1px solid var(--border-light); border-radius: var(--r-lg); position: relative; overflow: hidden; background: #fff; transition: background .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease); }
.articles-grid.list-view .a-card:hover { background: #fafafa; transform: translateX(6px); box-shadow: -6px 0 0 0 var(--primary); }
.articles-grid.list-view .a-card::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 2px; background: var(--grad); transition: width .5s var(--ease); z-index: 2; }
.articles-grid.list-view .a-card:hover::before { width: 100%; }
.articles-grid.list-view .a-card .a-card-img::after { display: none; }
.articles-grid.list-view .a-card-img { flex: 0 0 260px; height: 160px; aspect-ratio: unset; border-radius: 0; margin-bottom: 0; overflow: hidden; }
.articles-grid.list-view .a-card-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; transition: transform 1s var(--ease), filter .5s; }
.articles-grid.list-view .a-card:hover .a-card-img img { transform: scale(1.07); filter: brightness(.92); }
.articles-grid.list-view .a-card-body-lv { flex: 1; padding: 0 32px; display: flex; flex-direction: column; justify-content: center; gap: 6px; min-width: 0; }
.articles-grid.list-view .a-card-cat { margin-bottom: 0; font-size: .44rem; }
.articles-grid.list-view .a-card-title { font-size: 1.05rem; font-weight: 600; line-height: 1.3; margin-bottom: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.articles-grid.list-view .a-card-excerpt { font-size: .78rem; line-height: 1.6; margin-bottom: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.articles-grid.list-view .a-card-meta { margin-top: 0; }
.articles-grid.list-view .a-card-num-lv { flex-shrink: 0; width: 72px; text-align: center; font-size: 2rem; font-weight: 700; letter-spacing: -.04em; color: var(--border); line-height: 1; padding: 0 24px 0 0; transition: color .4s var(--ease); display: block; }
.articles-grid.list-view .a-card:hover .a-card-num-lv { color: var(--primary); }
.articles-grid.list-view .a-card-float { display: none; }
@media (max-width: 768px) { .articles-grid.list-view .a-card-img { flex: 0 0 180px; height: 130px; } .articles-grid.list-view .a-card-body-lv { padding: 0 20px; } .articles-grid.list-view .a-card-num-lv { display: none; } .articles-grid.list-view .a-card-title { white-space: normal; } }
@media (max-width: 560px) { .articles-grid.list-view .a-card { flex-direction: column; } .articles-grid.list-view .a-card-img { flex: none; width: 100%; height: 200px; } .articles-grid.list-view .a-card-body-lv { padding: 16px; } .articles-grid.list-view .a-card:hover { transform: none; box-shadow: none; } .articles-grid.list-view .a-card:hover::before { width: 100%; } }

/* ─── Load More / Pagination ─── */
.load-more-wrap { text-align: center; padding: 16px 0 0; }
.load-more-btn { display: inline-flex; align-items: center; gap: 10px; font-size: .62rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--secondary); padding: 13px 36px; border: 1.5px solid var(--border); border-radius: var(--r-full); transition: all .35s var(--ease); cursor: pointer; }
.load-more-btn:hover { border-color: var(--primary); color: var(--primary); }
.load-more-wrap .nav-links { display: flex; gap: 6px; justify-content: center; }
.load-more-wrap .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; border: 1.5px solid var(--border); border-radius: var(--r-full); font-size: .62rem; font-weight: 600; letter-spacing: .08em; transition: all .35s var(--ease); padding: 0 14px; }
.load-more-wrap .page-numbers.current { background: var(--secondary); color: #fff; border-color: var(--secondary); }
.load-more-wrap .page-numbers:hover { border-color: var(--primary); color: var(--primary); }

/* ─── Sidebar Widgets ─── */
.sidebar { display: flex; flex-direction: column; gap: 32px; position: sticky; top: calc(68px + 52px + 24px); }
.widget { background: #f4f4f4; border-radius: var(--r-xl); padding: 28px; position: relative; overflow: hidden; }
.widget::before { content: ''; position: absolute; bottom: -40px; right: -40px; width: 120px; height: 120px; border-radius: 50%; background: rgba(var(--primary-rgb), .05); pointer-events: none; }
.widget-title { font-size: .55rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--primary); margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.widget-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.widget-about-text { font-weight: 300; font-size: .82rem; line-height: 1.7; color: var(--text-light); }

.widget-posts { display: flex; flex-direction: column; gap: 0; }
.widget-post { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--border-light); }
.widget-post:last-child { border-bottom: none; padding-bottom: 0; }
.widget-post:first-child { padding-top: 0; }
.widget-post-img { flex-shrink: 0; width: 68px; height: 68px; border-radius: var(--r-md); overflow: hidden; }
.widget-post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.widget-post:hover .widget-post-img img { transform: scale(1.08); }
.widget-post-text { min-width: 0; }
.widget-post-cat { font-size: .44rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--primary); margin-bottom: 4px; }
.widget-post-title { font-weight: 600; font-size: .76rem; line-height: 1.3; color: var(--secondary); transition: color .3s; }
.widget-post:hover .widget-post-title { color: var(--primary-dark); }
.widget-post-date { font-size: .56rem; color: var(--text-muted); margin-top: 5px; }

.widget-cats { display: flex; flex-direction: column; gap: 0; }
.widget-cat { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border-light); transition: color .3s var(--ease); }
.widget-cat:last-child { border-bottom: none; padding-bottom: 0; }
.widget-cat:first-child { padding-top: 0; }
.widget-cat-name { font-size: .72rem; font-weight: 500; color: var(--text); transition: color .3s; }
.widget-cat:hover .widget-cat-name { color: var(--primary); }
.widget-cat-arrow { color: var(--text-muted); transition: all .3s var(--ease); }
.widget-cat:hover .widget-cat-arrow { color: var(--primary); transform: translateX(3px); }
.widget-cat-arrow svg { width: 13px; height: 13px; }

.widget-nl { overflow: hidden; }
.widget-nl-desc { font-weight: 300; font-size: .78rem; line-height: 1.6; color: var(--text-light); margin-bottom: 16px; }
.widget-nl-form { display: flex; flex-direction: column; gap: 8px; }
.widget-nl-input { padding: 11px 16px; font-family: var(--font); font-size: .78rem; background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); outline: none; transition: border-color .3s; color: var(--secondary); }
.widget-nl-input:focus { border-color: var(--primary); }
.widget-nl-input::placeholder { color: var(--text-muted); }
.widget-nl-btn { padding: 11px 16px; background: var(--grad); color: #fff; font-family: var(--font); font-size: .6rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; border-radius: var(--r-md); transition: filter .3s; cursor: pointer; border: none; }
.widget-nl-btn:hover { filter: brightness(1.12); }

.widget-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.widget-tag { font-size: .56rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 6px 14px; border: 1px solid var(--border); border-radius: var(--r-full); color: var(--text-muted); transition: all .3s var(--ease); }
.widget-tag:hover { border-color: var(--primary); color: var(--primary); background: rgba(var(--primary-rgb), .05); }
.widget-tags-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.widget-tags-cloud a { font-size: .56rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 6px 14px; border: 1px solid var(--border); border-radius: var(--r-full); color: var(--text-muted); transition: all .3s var(--ease); }
.widget-tags-cloud a:hover { border-color: var(--primary); color: var(--primary); background: rgba(var(--primary-rgb), .05); }

/* ═══════════════════════════════════════════════════
   SINGLE POST
   ═══════════════════════════════════════════════════ */
.art-hero { position: relative; height: 70vh; min-height: 400px; overflow: hidden; }
.art-hero img { width: 100%; height: 100%; object-fit: cover; }
.art-hero-ov { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.art-hero-body { position: absolute; bottom: 60px; left: 0; right: 0; text-align: center; color: #fff; padding: 0 40px; }
.art-hero-cats { display: flex; gap: 8px; justify-content: center; margin-bottom: 14px; }
.art-hero-cat { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; background: var(--gold); color: var(--dark); padding: 4px 14px; border-radius: 20px; transition: var(--transition); }
.art-hero-cat:hover { background: var(--gold-light); }
.art-hero-title { font-size: clamp(28px, 4vw, 46px); font-weight: 300; line-height: 1.15; letter-spacing: -1px; max-width: 800px; margin: 0 auto 16px; }
.art-hero-meta { display: flex; align-items: center; gap: 12px; justify-content: center; font-size: 12px; color: rgba(255,255,255,.6); }
.art-hero-meta svg { width: 14px; height: 14px; }
.art-hero-date { display: inline-flex; align-items: center; gap: 6px; }

/* Article Layout */
.art-layout { max-width: var(--max-w); margin: 0 auto; padding: 50px 40px; display: grid; grid-template-columns: 1fr 320px; gap: 50px; }
.art-layout--full { grid-template-columns: 1fr; max-width: 800px; }

.art-header { margin-bottom: 30px; }
.art-header-cats { display: flex; gap: 8px; margin-bottom: 12px; }
.art-header-cat { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; color: var(--gold); }
.art-header-title { font-size: 32px; font-weight: 300; line-height: 1.2; margin-bottom: 12px; }
.art-header-meta { display: flex; gap: 12px; font-size: 12px; color: var(--text-muted); }

/* Article Content */
.art-content { font-size: 16px; line-height: 1.85; color: var(--text); }
.art-content h2 { font-size: 24px; font-weight: 400; margin: 40px 0 16px; line-height: 1.3; letter-spacing: -0.3px; }
.art-content h3 { font-size: 20px; font-weight: 500; margin: 30px 0 12px; }
.art-content p { margin-bottom: 20px; }
.art-content blockquote { border-left: 3px solid var(--gold); padding: 16px 24px; margin: 30px 0; background: var(--bg-alt); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: italic; color: var(--text-light); }
.art-content img { border-radius: var(--radius); margin: 24px 0; }
.art-content ul, .art-content ol { margin: 16px 0; padding-left: 24px; }
.art-content li { margin-bottom: 8px; }

/* Tags */
.art-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 30px 0; padding-top: 20px; border-top: 1px solid var(--border-light); }
.art-tag { font-size: 11px; padding: 5px 14px; border: 1px solid var(--border); border-radius: 20px; color: var(--text-light); transition: var(--transition); }
.art-tag:hover { border-color: var(--gold); color: var(--gold); }

/* Share */
.art-share { display: flex; align-items: center; gap: 12px; margin: 20px 0 30px; }
.art-share-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }
.art-share-links { display: flex; gap: 8px; }
.art-share-link { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: var(--transition); }
.art-share-link:hover { border-color: var(--gold); color: var(--gold); }
.art-share-link svg { width: 16px; height: 16px; }

/* Sidebar TOC */
.widget-toc { position: sticky; top: 90px; }
.widget-toc-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; color: var(--text-muted); margin-bottom: 14px; }
.widget-toc-items { display: flex; flex-direction: column; gap: 6px; }
.widget-toc-items a { font-size: 13px; color: var(--text-light); padding: 4px 0; border-left: 2px solid transparent; padding-left: 12px; transition: var(--transition); }
.widget-toc-items a:hover, .widget-toc-items a.active { color: var(--gold); border-left-color: var(--gold); }

/* Author Widget */
.widget-author { text-align: center; }
.widget-author-ava { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; margin: 0 auto 10px; }
.widget-author-ava img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.widget-author-name { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.widget-author-role { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.widget-author-social { display: flex; justify-content: center; gap: 10px; }
.widget-author-social a { color: var(--text-muted); transition: color var(--transition); }
.widget-author-social a:hover { color: var(--gold); }
.widget-author-social svg { width: 16px; height: 16px; }

/* Newsletter Widget (inline in single post sidebar) */
.art-layout .widget-nl { background: var(--dark); border-color: transparent; color: #fff; text-align: center; }
.art-layout .widget-nl .widget-title { color: #fff; border-bottom-color: rgba(255,255,255,.1); }
.art-layout .widget-nl .widget-nl-ico { margin-bottom: 8px; }
.art-layout .widget-nl .widget-nl-ico svg { width: 24px; height: 24px; color: var(--gold); }
.art-layout .widget-nl .widget-nl-title { font-size: 16px; font-weight: 500; margin-bottom: 8px; }
.art-layout .widget-nl .widget-nl-desc { color: rgba(255,255,255,.5); }
.art-layout .widget-nl .widget-nl-input { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); color: #fff; }
.art-layout .widget-nl .widget-nl-input::placeholder { color: rgba(255,255,255,.3); }

/* Tags Widget */
.widget-tags-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; color: var(--text-muted); margin-bottom: 12px; }

/* Related Widget */
.widget-related-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; color: var(--text-muted); margin-bottom: 14px; }
.widget-related-item { display: flex; gap: 12px; margin-bottom: 14px; transition: opacity var(--transition); }
.widget-related-item:hover { opacity: .75; }
.widget-related-thumb { width: 80px; min-width: 80px; height: 60px; border-radius: var(--radius-xs); overflow: hidden; }
.widget-related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.widget-related-cat { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); font-weight: 600; margin-bottom: 2px; }
.widget-related-title { font-size: 13px; font-weight: 500; line-height: 1.35; margin-bottom: 2px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.widget-related-meta { font-size: 11px; color: var(--text-muted); }

/* Prev / Next Navigation */
.art-nav { max-width: var(--max-w); margin: 0 auto; padding: 0 40px 50px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.art-nav-item { padding: 24px; border: 1px solid var(--border-light); border-radius: var(--radius); transition: var(--transition); }
.art-nav-item:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.art-nav-item--empty { border-color: transparent; pointer-events: none; }
.art-nav-dir { display: flex; align-items: center; gap: 6px; font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); font-weight: 500; margin-bottom: 8px; }
.art-nav-dir svg { width: 14px; height: 14px; }
.art-nav-title { font-size: 15px; font-weight: 500; line-height: 1.35; }
.art-nav-item:last-child { text-align: right; }
.art-nav-item:last-child .art-nav-dir { justify-content: flex-end; }

/* ═══════════════════════════════════════════════════
   PAGE TEMPLATE
   ═══════════════════════════════════════════════════ */
.page-hero { position: relative; min-height: 300px; display: flex; align-items: center; justify-content: center; background: var(--dark); overflow: hidden; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-ov { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.page-hero-body { position: relative; z-index: 1; text-align: center; color: #fff; padding: 40px; }
.page-hero-title { font-size: clamp(30px, 4vw, 48px); font-weight: 300; letter-spacing: -1px; }
.page-content { max-width: 800px; margin: 0 auto; padding: 50px 40px; }
.page-content-inner { font-size: 16px; line-height: 1.85; }

/* ═══════════════════════════════════════════════════
   ESTÚDIO OCA PAGE
   ═══════════════════════════════════════════════════ */

/* Hero */
.hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; display: flex; align-items: flex-end; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.38) saturate(.8); }
.hero-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.95) 0%, rgba(0,0,0,.38) 42%, rgba(0,0,0,.08) 72%), linear-gradient(to right, rgba(0,0,0,.3), transparent 55%); }
.hero-orb { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(var(--primary-rgb),.07) 0%, transparent 65%); top: -120px; right: -180px; animation: orbF 20s ease-in-out infinite; pointer-events: none; }
.hero-line { position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--primary), transparent); z-index: 4; animation: lineGlow 3.5s ease-in-out infinite; }
.hero-body { position: relative; z-index: 3; max-width: 1200px; margin: 0 auto; width: 100%; padding: 0 60px 100px; }
@media (max-width: 768px) { .hero-body { padding: 0 28px 72px; } }
@media (max-width: 480px) { .hero-body { padding: 0 20px 60px; } }
.hero-eye { font-size: .54rem; font-weight: 700; letter-spacing: .38em; text-transform: uppercase; color: var(--primary); margin-bottom: 20px; display: flex; align-items: center; gap: 16px; opacity: 0; transform: translateY(20px); animation: fadeUp .9s var(--ease) .3s forwards; }
.hero-eye::before { content: ''; width: 32px; height: 1px; background: var(--primary); }
.hero-title { font-weight: 100; font-size: clamp(3rem, 7.5vw, 6.5rem); line-height: .95; color: #fff; letter-spacing: -.04em; margin-bottom: 28px; opacity: 0; transform: translateY(30px); animation: fadeUp 1s var(--ease) .5s forwards; }
.hero-title em { font-style: normal; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 300; }
.hero-sub { font-weight: 300; font-size: clamp(.85rem, 1.2vw, 1rem); color: rgba(255,255,255,.65); max-width: 480px; line-height: 1.85; margin-bottom: 40px; opacity: 0; transform: translateY(20px); animation: fadeUp .9s var(--ease) .7s forwards; }
.hero-ctas { display: flex; gap: 12px 16px; align-items: center; flex-wrap: wrap; opacity: 0; transform: translateY(20px); animation: fadeUp .9s var(--ease) .9s forwards; }
.hero-scroll { position: absolute; bottom: 36px; right: 60px; z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0; animation: fadeUp .8s var(--ease) 1.2s forwards; }
.hero-scroll span { font-size: .5rem; letter-spacing: .38em; text-transform: uppercase; color: rgba(255,255,255,.35); writing-mode: vertical-lr; }
.hero-scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom, var(--primary), transparent); animation: sPulse 2.4s ease-in-out infinite; }
@keyframes sPulse { 0%, 100% { transform: scaleY(1); opacity: .4; } 50% { transform: scaleY(.55); opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 768px) { .hero-scroll { display: none; } }

/* Buttons */
.btn-gold { display: inline-flex; align-items: center; gap: 10px; font-size: .6rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #fff; background: var(--grad); padding: 15px 34px; border-radius: var(--r-full); box-shadow: 0 4px 28px rgba(var(--primary-rgb), .4); transition: all .4s var(--ease); position: relative; overflow: hidden; }
.btn-gold::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: rgba(255,255,255,.1); border-radius: 50%; transform: translate(-50%, -50%); transition: width .55s, height .55s; }
.btn-gold:hover::before { width: 360px; height: 360px; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn-ghost { display: inline-flex; align-items: center; gap: 10px; font-size: .6rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.14); transition: all .4s var(--ease); }
.btn-ghost:hover { color: #fff; border-bottom-color: var(--primary); gap: 16px; }
.btn-ghost svg, .btn-gold svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Studio layout */
.sec { padding: 110px 0; position: relative; overflow: hidden; }
@media (max-width: 768px) { .sec { padding: 72px 0; } }
@media (max-width: 480px) { .sec { padding: 56px 0; } }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
@media (max-width: 768px) { .wrap { padding: 0 24px; } }
.sec-title { font-weight: 100; font-size: clamp(1.8rem, 3.5vw, 3rem); color: #fff; letter-spacing: -.025em; line-height: 1.08; }
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
@media (max-width: 900px) { .g2 { grid-template-columns: 1fr; gap: 44px; } }

/* Intro */
.intro-p { font-weight: 300; font-size: .94rem; line-height: 1.9; color: rgba(255,255,255,.68); margin-bottom: 14px; }
.intro-text { font-weight: 300; font-size: .94rem; line-height: 1.9; color: rgba(255,255,255,.68); }
.intro-text p { margin-bottom: 14px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,.06); }
@media (max-width: 480px) { .stats { grid-template-columns: 1fr 1fr; gap: 16px; } }
.stat-n { font-weight: 100; font-size: clamp(1.8rem, 3.5vw, 3rem); line-height: 1; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-l { font-size: .52rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: 6px; }
.vid-wrap { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 3/4; position: relative; }
.vid-wrap img, .vid-wrap video { width: 100%; height: 100%; object-fit: cover; }
.vid-wrap::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.07); pointer-events: none; border-radius: var(--r-xl); }
.badge { position: absolute; top: 28px; right: -18px; background: rgba(14,15,15,.9); border: 1px solid rgba(var(--primary-rgb),.3); border-radius: var(--r-lg); padding: 14px 18px; backdrop-filter: blur(20px); }
@media (max-width: 900px) { .badge { right: 12px; top: 14px; } }
.badge-n { font-weight: 100; font-size: 1.5rem; color: #fff; line-height: 1; margin-bottom: 3px; }
.badge-t { font-size: .5rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--primary); line-height: 1.5; }

/* Creator / Founder */
.cgal { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 480px) { .cgal { gap: 6px; } }
.ci { border-radius: var(--r-lg); overflow: hidden; }
.ci img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1s var(--ease), filter .6s; }
.ci:hover img { transform: scale(1.07); filter: brightness(.68); }
.ci:nth-child(1) { grid-column: 1 / 3; aspect-ratio: 16/9; }
.ci:nth-child(2) { aspect-ratio: 3/4; }
.ci:nth-child(3) { aspect-ratio: 3/4; }
@media (max-width: 480px) { .ci:nth-child(2), .ci:nth-child(3) { aspect-ratio: 1/1; } }
.ci-placeholder { width: 100%; aspect-ratio: 16/9; background: rgba(255,255,255,.03); }
.c-name { font-weight: 100; font-size: clamp(2rem, 4vw, 3.2rem); color: #fff; letter-spacing: -.03em; line-height: 1.05; margin-bottom: 5px; }
.c-role { font-size: .62rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: rgba(var(--primary-rgb),.75); margin-bottom: 26px; }
.c-bio { font-weight: 300; font-size: .92rem; line-height: 1.9; color: rgba(255,255,255,.65); margin-bottom: 12px; }
.c-bio-wrap { font-weight: 300; font-size: .92rem; line-height: 1.9; color: rgba(255,255,255,.65); margin-bottom: 12px; }
.c-bio-wrap p { margin-bottom: 12px; }
.c-quote { margin: 28px 0; padding: 20px 26px; border-left: 2px solid var(--primary); background: rgba(var(--primary-rgb),.04); border-radius: 0 8px 8px 0; }
.c-quote p { font-weight: 300; font-size: .94rem; font-style: italic; color: rgba(255,255,255,.72); line-height: 1.75; }
.c-skills { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 26px; }
.c-sk { font-size: .52rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; padding: 6px 16px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-full); color: rgba(255,255,255,.42); transition: all .3s var(--ease); }
.c-sk:hover { border-color: var(--primary); color: var(--primary); }

/* Manifesto */
.manifesto { padding: 130px 0; text-align: center; position: relative; overflow: hidden; }
@media (max-width: 768px) { .manifesto { padding: 80px 0; } }
@media (max-width: 480px) { .manifesto { padding: 60px 0; } }
.manifesto::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(var(--primary-rgb),.05) 0%, transparent 65%); pointer-events: none; }
.mf { max-width: 840px; margin: 0 auto; padding: 0 60px; position: relative; z-index: 2; }
@media (max-width: 768px) { .mf { padding: 0 24px; } }
.mf-label { font-size: .52rem; font-weight: 700; letter-spacing: .32em; text-transform: uppercase; color: var(--primary); margin-bottom: 26px; display: inline-flex; align-items: center; gap: 12px; }
.mf-label::before, .mf-label::after { content: ''; width: 26px; height: 1px; background: var(--primary); }
.mf-title { font-weight: 100; font-size: clamp(2rem, 5.5vw, 4.8rem); line-height: 1; color: #fff; letter-spacing: -.04em; margin-bottom: 36px; }
.mf-title em { font-style: italic; font-weight: 400; color: var(--primary-light); }
.mf-div { width: 1px; height: 60px; background: linear-gradient(to bottom, var(--primary), transparent); margin: 0 auto 36px; }
.mf-text { font-weight: 400; font-size: clamp(1rem, 1.6vw, 1.2rem); line-height: 2; color: rgba(255,255,255,.62); max-width: 620px; margin: 0 auto; }
.mf-text strong { font-weight: 600; color: rgba(255,255,255,.85); }

/* Process */
.pgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 52px; border: 1px solid rgba(255,255,255,.06); border-radius: var(--r-xl); overflow: hidden; }
@media (max-width: 900px) { .pgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pgrid { grid-template-columns: 1fr; } }
.pst { padding: 40px 32px; border-right: 1px solid rgba(255,255,255,.05); position: relative; overflow: hidden; transition: background .4s; }
.pst:last-child { border-right: none; }
.pst::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(var(--primary-rgb),.05), transparent 60%); opacity: 0; transition: opacity .4s; }
.pst:hover::before { opacity: 1; }
.pst:hover { background: rgba(255,255,255,.02); }
.pst-n { font-weight: 100; font-size: 3.2rem; color: rgba(var(--primary-rgb),.1); line-height: 1; margin-bottom: 18px; transition: color .4s; }
.pst:hover .pst-n { color: rgba(var(--primary-rgb),.26); }
.pst-ico { width: 38px; height: 38px; border-radius: 8px; border: 1px solid rgba(var(--primary-rgb),.2); display: flex; align-items: center; justify-content: center; color: var(--primary); margin-bottom: 16px; }
.pst-ico svg { width: 17px; height: 17px; }
.pst-t { font-weight: 600; font-size: .8rem; color: #fff; margin-bottom: 9px; transition: color .3s; }
.pst:hover .pst-t { color: var(--primary-light); }
.pst-d { font-weight: 300; font-size: .82rem; line-height: 1.7; color: rgba(255,255,255,.55); }

/* Portfolio */
.pf-sec { padding: 110px 0; background: rgba(0,0,0,.28); }
@media (max-width: 768px) { .pf-sec { padding: 72px 0; } }
@media (max-width: 480px) { .pf-sec { padding: 56px 0; } }
.pf-filters { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 24px; margin-bottom: 48px; }
.pf-tag { font-size: .56rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; padding: 7px 18px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-full); color: rgba(255,255,255,.42); transition: all .3s var(--ease); cursor: pointer; }
.pf-tag:hover { border-color: rgba(255,255,255,.25); color: rgba(255,255,255,.65); }
.pf-tag.active { background: var(--grad); border-color: transparent; color: #fff; }
.pgr { display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px; }
@media (max-width: 768px) { .pgr { grid-template-columns: 1fr; } }
.pi { position: relative; border-radius: var(--r-lg); overflow: hidden; cursor: pointer; transition: transform .5s var(--ease), opacity .2s ease; }
.pi:hover { transform: translateY(-4px); }
.pi:nth-child(1) { grid-column: 1 / 8; grid-row: 1 / 3; }
.pi:nth-child(2) { grid-column: 8 / 13; aspect-ratio: 4/3; }
.pi:nth-child(3) { grid-column: 8 / 13; aspect-ratio: 4/3; }
.pi:nth-child(4) { grid-column: 1 / 5; aspect-ratio: 4/3; }
.pi:nth-child(5) { grid-column: 5 / 9; aspect-ratio: 4/3; }
.pi:nth-child(6) { grid-column: 9 / 13; aspect-ratio: 4/3; }
@media (max-width: 768px) { .pi:nth-child(n) { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 4/3; } }
.pi-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.2s var(--ease), filter .6s; filter: brightness(.68) saturate(.8); }
.pi:hover .pi-img { transform: scale(1.08); filter: brightness(.48); }
.pi-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.1) 50%, transparent 72%); }
.pi-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px; transform: translateY(8px); transition: transform .45s var(--ease); color: #fff; }
.pi:hover .pi-body { transform: translateY(0); }
.pi-cat { font-size: .5rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--primary-light); margin-bottom: 6px; }
.pi-title { font-weight: 500; font-size: clamp(.85rem, 1.2vw, 1rem); color: #fff; line-height: 1.3; margin-bottom: 7px; }
.pi-year { font-size: .54rem; color: rgba(255,255,255,.55); }
.pi-badge { position: absolute; top: 12px; left: 12px; font-size: .48rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.9); background: rgba(0,0,0,.45); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-full); padding: 4px 11px; }
.pi-arr { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); background: rgba(0,0,0,.3); backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); opacity: 0; transform: scale(.7) rotate(-45deg); transition: all .4s var(--ease); }
.pi:hover .pi-arr { opacity: 1; transform: scale(1) rotate(0deg); color: #fff; }
.pi-arr svg { width: 13px; height: 13px; }
.pf-cta { text-align: center; margin-top: 48px; }
.pf-cta a { display: inline-flex; align-items: center; gap: 11px; font-size: .6rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.5); padding: 15px 38px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-full); transition: all .4s var(--ease); }
.pf-cta a:hover { border-color: var(--primary); color: var(--primary); }
.pf-cta svg { width: 13px; height: 13px; transition: transform .3s var(--ease); }
.pf-cta a:hover svg { transform: translate(3px, -3px); }

/* Services */
.svgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 48px; border: 1px solid rgba(255,255,255,.06); border-radius: var(--r-xl); overflow: hidden; }
@media (max-width: 900px) { .svgrid { grid-template-columns: 1fr; } }
.svc { padding: 42px 36px; border-right: 1px solid rgba(255,255,255,.05); position: relative; overflow: hidden; transition: background .4s; }
.svc:last-child { border-right: none; }
.svc::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(var(--primary-rgb),.05), transparent 55%); opacity: 0; transition: opacity .4s; }
.svc:hover::before { opacity: 1; }
.svc:hover { background: rgba(255,255,255,.02); }
.svc-ico { width: 44px; height: 44px; border-radius: 8px; border: 1px solid rgba(var(--primary-rgb),.22); display: flex; align-items: center; justify-content: center; color: var(--primary); margin-bottom: 24px; transition: transform .3s var(--ease); }
.svc:hover .svc-ico { transform: scale(1.1); }
.svc-ico svg { width: 21px; height: 21px; }
.svc-t { font-weight: 600; font-size: .95rem; color: #fff; margin-bottom: 11px; transition: color .3s; }
.svc:hover .svc-t { color: var(--primary-light); }
.svc-d { font-weight: 300; font-size: .84rem; line-height: 1.72; color: rgba(255,255,255,.58); margin-bottom: 20px; }
.svc-ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.svc-ul li { font-size: .74rem; color: rgba(255,255,255,.5); display: flex; align-items: center; gap: 9px; }
.svc-ul li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--primary); opacity: .5; flex-shrink: 0; }

/* Contact Band */
.cband { padding: 90px 0; position: relative; overflow: hidden; background: rgba(255,255,255,.012); border-top: 1px solid rgba(255,255,255,.05); }
@media (max-width: 768px) { .cband { padding: 64px 0; } }
@media (max-width: 480px) { .cband { padding: 48px 0; } }
.cband::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 70% at 50%, rgba(var(--primary-rgb),.04) 0%, transparent 65%); pointer-events: none; }
.cband-in { max-width: 840px; margin: 0 auto; padding: 0 60px; text-align: center; position: relative; z-index: 2; }
@media (max-width: 768px) { .cband-in { padding: 0 24px; } }
.cb-label { font-size: .52rem; font-weight: 700; letter-spacing: .32em; text-transform: uppercase; color: var(--primary); margin-bottom: 22px; display: inline-flex; align-items: center; gap: 12px; }
.cb-label::before, .cb-label::after { content: ''; width: 26px; height: 1px; background: var(--primary); }
.cb-title { font-weight: 100; font-size: clamp(2rem, 5vw, 3.8rem); color: #fff; letter-spacing: -.035em; line-height: 1.05; margin-bottom: 14px; }
.cb-sub { font-weight: 300; font-size: .92rem; color: rgba(255,255,255,.6); margin-bottom: 36px; line-height: 1.7; }
.cb-acts { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 480px) { .cb-acts { flex-direction: column; align-items: center; } .btn-gold, .btn-ghost { width: 100%; justify-content: center; } }

/* Estúdio Oca dark page overrides */
.is-estudio-oca {
	background: #0e0f0f;
	color: rgba(255,255,255,.85);
	--bg: #0e0f0f;
	--bg-alt: #131415;
	--text: rgba(255,255,255,.75);
}
.is-estudio-oca .sec { background: #0e0f0f; }
.is-estudio-oca .manifesto { background: #0e0f0f; }
.is-estudio-oca .mqbar { background: #131415; }
.is-estudio-oca .pf-sec { background: #0a0b0b; }
.is-estudio-oca .cband { background: #111213; }
.is-estudio-oca .nav { background: rgba(14,15,15,.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,.05); }
.is-estudio-oca .nav.scrolled { background: rgba(14,15,15,.95); }
.is-estudio-oca .sec-label { font-size: .48rem; font-weight: 700; letter-spacing: .32em; text-transform: uppercase; color: var(--primary); margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }
.is-estudio-oca .sec-label::before { content: ''; width: 28px; height: 1px; background: var(--primary); }
.is-estudio-oca .glow-line { height: 1px; background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb),.35), transparent); }

/* Estúdio dark footer overrides */
.is-estudio-oca .footer { padding: 40px 60px; border-top: 1px solid rgba(255,255,255,.06); background: transparent; }
@media (max-width: 640px) { .is-estudio-oca .footer { padding: 30px 20px; } }
@media (max-width: 480px) { .is-estudio-oca .footer { padding: 24px 16px; } }
.is-estudio-oca .footer-logo img { opacity: .4; }
.is-estudio-oca .footer-logo:hover img { opacity: .65; }
.is-estudio-oca .footer-copy { font-size: .62rem; color: rgba(255,255,255,.42); }
.is-estudio-oca .footer-social a { border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.28); }
.is-estudio-oca .footer-social a:hover { border-color: var(--primary); background: var(--primary); color: #fff; }
.is-estudio-oca .footer-social svg { width: 11px; height: 11px; }

/* ═══════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.vis, .reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-48px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal-left.vis, .reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-scale, .reveal-sc { opacity: 0; transform: scale(.9); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal-scale.vis, .reveal-scale.visible, .reveal-sc.vis, .reveal-sc.visible { opacity: 1; transform: scale(1); }
.stagger .reveal:nth-child(1) { transition-delay: 0s; }
.stagger .reveal:nth-child(2) { transition-delay: .1s; }
.stagger .reveal:nth-child(3) { transition-delay: .2s; }
.stagger .reveal:nth-child(4) { transition-delay: .3s; }

/* No Posts */
.no-posts { text-align: center; padding: 60px 20px; }
.no-posts h2 { font-size: 22px; font-weight: 400; margin-bottom: 10px; }
.no-posts p { color: var(--text-muted); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE (archive / article pages only)
   ═══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
	.nav-center { display: none; }
}

@media (max-width: 1024px) {
	.archive-layout { grid-template-columns: 1fr; }
	.art-layout { grid-template-columns: 1fr; }
	.art-sidebar { order: 2; }
	.feat-article { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
	.nav { padding: 0 20px; }
	.nav-spacer { height: 70px; }
	.articles-grid { grid-template-columns: 1fr; }
	.art-nav { grid-template-columns: 1fr; }
	.art-hero-body { bottom: 30px; padding: 0 20px; }
	.art-layout { padding: 30px 20px; }
	.archive-layout { padding: 20px; gap: 30px; }
}

@media (max-width: 640px) {
	.nav-social { display: none; }
}

@media (max-width: 480px) {
	.nav-sub { display: none; }
}
