/*
Theme Name: Bottega dei Talenti
Theme URI: https://bottegadeitalenti.com
Author: Adil Marketing
Author URI: https://adilmarketing.net
Description: Tema custom per Bottega dei Talenti — Talent Management per Food Creator. Design elegante con palette crema, terracotta e gold.
Version: 1.3.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bottega
*/

/* ==================== VARIABLES ==================== */
:root {
  --color-bg: #FAF7F2;
  --color-bg-warm: #F3EDE4;
  --color-text: #2C2420;
  --color-text-muted: #7A6E65;
  --color-accent: #C4633F;
  --color-accent-hover: #A8512F;
  --color-accent-light: rgba(196, 99, 63, 0.08);
  --color-cream: #EDE6DA;
  --color-dark: #1E1915;
  --color-gold: #B8965A;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
}

/* ==================== RESET ==================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ==================== NAV ==================== */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 2.5rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(44, 36, 32, 0.06);
}

.nav-logo {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  letter-spacing: 0.02em; color: var(--color-text); text-decoration: none;
}
.nav-logo span { color: var(--color-accent); }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--color-text-muted);
  text-decoration: none; transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--color-accent); }

.nav-back {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--color-text-muted);
  text-decoration: none; display: flex; align-items: center; gap: 0.5rem;
  transition: color 0.3s ease;
}
.nav-back:hover { color: var(--color-accent); }
.nav-back svg { transition: transform 0.3s ease; }
.nav-back:hover svg { transform: translateX(-3px); }

/* ==================== HERO (HOME) ==================== */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  padding: 8rem 2rem 4rem; position: relative;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(196, 99, 63, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero .section-tag {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--color-accent);
  margin-bottom: 2rem; position: relative;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 400; line-height: 1.15;
  max-width: 800px; margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--color-accent); }
.hero p {
  font-size: 1.1rem; font-weight: 300; color: var(--color-text-muted);
  max-width: 520px; margin: 0 auto 3rem; line-height: 1.85;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--color-bg);
  background: var(--color-accent); text-decoration: none;
  padding: 1.1rem 2.5rem; border-radius: 100px;
  transition: all 0.3s ease;
}
.hero-cta:hover {
  background: var(--color-accent-hover); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196, 99, 63, 0.25);
}
.hero-cta svg { transition: transform 0.3s ease; }
.hero-cta:hover svg { transform: translateX(3px); }

/* ==================== STATS BAR ==================== */
.stats-bar {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(44, 36, 32, 0.06);
  border-bottom: 1px solid rgba(44, 36, 32, 0.06);
}
.stat-item {
  text-align: center; padding: 3rem 2rem;
  border-right: 1px solid rgba(44, 36, 32, 0.06);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400; color: var(--color-text); line-height: 1; margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--color-text-muted);
}

/* ==================== SECTION COMMON ==================== */
.section-tag {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--color-accent); margin-bottom: 1.5rem;
}

.section-wrap { max-width: 1100px; margin: 0 auto; padding: 5rem 2rem; }
.section-wrap.centered { text-align: center; }

.section-title {
  font-family: var(--font-display); font-size: 2rem; font-weight: 400;
  margin-bottom: 3rem;
}

/* ==================== ABOUT ==================== */
.about { max-width: 720px; margin: 0 auto; text-align: center; padding: 5rem 2rem; }
.about h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400; line-height: 1.35; margin-bottom: 1.5rem;
}
.about p {
  font-size: 1rem; font-weight: 300; color: var(--color-text-muted); line-height: 1.85;
}

/* ==================== TALENT CARD (HOME) ==================== */
.talent { padding: 5rem 0; background: var(--color-dark); color: var(--color-bg); }
.talent-inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.talent .section-tag { color: var(--color-gold); text-align: center; }
.talent h2 {
  font-family: var(--font-display); font-size: 2rem; font-weight: 400;
  text-align: center; margin-bottom: 3rem;
}

.talent-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.talent-visual { position: relative; }
.talent-photo-wrap {
  aspect-ratio: 4/5; border-radius: 12px; overflow: hidden;
}
.talent-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.talent-stats-grid {
  display: flex; gap: 1.5rem; margin-top: 1.5rem;
  justify-content: flex-end; align-items: center;
}
.talent-stat { text-align: center; }
.talent-stat-num {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 400;
  color: var(--color-gold); line-height: 1;
}
.talent-stat-label {
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(250, 247, 242, 0.4); margin-top: 0.3rem;
}

.talent-info h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 400;
  line-height: 1.3; margin-bottom: 1.5rem;
}
.talent-info h3 em { font-style: italic; color: var(--color-gold); }
.talent-info p {
  font-size: 0.92rem; font-weight: 300; color: rgba(250, 247, 242, 0.65);
  line-height: 1.85; margin-bottom: 1rem;
}

.talent-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.talent-tag {
  font-size: 0.72rem; letter-spacing: 0.05em;
  padding: 0.4rem 1rem; border: 1px solid rgba(250, 247, 242, 0.12);
  border-radius: 100px; color: rgba(250, 247, 242, 0.6);
}

.talent-cta {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-top: 1.8rem;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--color-gold); text-decoration: none;
  padding: 0.75rem 1.8rem; border: 1.5px solid var(--color-gold);
  border-radius: 100px; transition: all 0.3s ease;
}
.talent-cta:hover { background: var(--color-gold); color: var(--color-dark); }
.talent-cta svg { transition: transform 0.3s ease; }
.talent-cta:hover svg { transform: translateX(3px); }

/* ==================== SERVICES (HOME) ==================== */
.services { max-width: 1100px; margin: 0 auto; padding: 5rem 2rem; }
.services .section-tag { text-align: center; }
.services h2 {
  font-family: var(--font-display); font-size: 2rem; font-weight: 400;
  text-align: center; margin-bottom: 3rem;
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  padding: 2.5rem 2rem; border: 1px solid rgba(44, 36, 32, 0.06);
  border-radius: 16px; transition: all 0.4s ease;
}
.service-card:hover { border-color: rgba(196, 99, 63, 0.12); box-shadow: 0 12px 40px rgba(44, 36, 32, 0.06); transform: translateY(-4px); }
.service-icon { color: var(--color-accent); margin-bottom: 1.5rem; }
.service-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.88rem; font-weight: 300; color: var(--color-text-muted); line-height: 1.7; }

/* ==================== PROCESS (HOME) ==================== */
.process { padding: 5rem 2rem; background: var(--color-bg-warm); }
.process-inner { max-width: 1100px; margin: 0 auto; }
.process .section-tag { text-align: center; }
.process h2 {
  font-family: var(--font-display); font-size: 2rem; font-weight: 400;
  text-align: center; margin-bottom: 3rem;
}
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.process-step { text-align: center; }
.step-number {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 1.25rem;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  color: var(--color-accent); border: 2px solid var(--color-accent);
}
.process-step h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.85rem; font-weight: 300; color: var(--color-text-muted); line-height: 1.7; }

/* ==================== CTA SECTION ==================== */
.cta-section { text-align: center; padding: 6rem 2rem; }
.cta-section .section-tag { text-align: center; }
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400; margin-bottom: 1.5rem;
}
.cta-section h2 em { font-style: italic; color: var(--color-accent); }
.cta-section p {
  font-size: 1rem; font-weight: 300; color: var(--color-text-muted);
  max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.8;
}
.cta-email {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 1rem; font-weight: 500; color: var(--color-accent); text-decoration: none;
  padding: 1rem 2.5rem; border: 2px solid var(--color-accent); border-radius: 100px;
  transition: all 0.3s ease;
}
.cta-email:hover {
  background: var(--color-accent); color: var(--color-bg);
  transform: translateY(-2px); box-shadow: 0 8px 30px rgba(196, 99, 63, 0.2);
}

/* ==================== PROFILE HERO (TALENT PAGE) ==================== */
.profile-hero {
  padding: 8rem 2rem 4rem; display: grid;
  grid-template-columns: 400px 1fr; gap: 4rem;
  max-width: 1100px; margin: 0 auto; align-items: center;
}
.profile-photo-wrap {
  aspect-ratio: 4/5; border-radius: 16px; overflow: hidden;
}
.profile-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.profile-intro .section-tag { margin-bottom: 1rem; }
.profile-intro h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400; line-height: 1.15; margin-bottom: 0.5rem;
}
.profile-intro h1 em { font-style: italic; color: var(--color-accent); }
.profile-handle { font-size: 1rem; color: var(--color-text-muted); margin-bottom: 1.5rem; }
.profile-handle a { color: var(--color-accent); text-decoration: none; }
.profile-handle a:hover { text-decoration: underline; }
.profile-bio { font-size: 1rem; font-weight: 300; color: var(--color-text-muted); line-height: 1.85; margin-bottom: 2rem; }
.profile-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }
.profile-tag {
  font-size: 0.72rem; letter-spacing: 0.05em;
  padding: 0.4rem 1rem; border: 1px solid rgba(44, 36, 32, 0.12);
  border-radius: 100px; color: var(--color-text-muted);
}
.profile-cta {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-bg); background: var(--color-accent);
  text-decoration: none; padding: 1rem 2.2rem; border-radius: 100px;
  transition: all 0.3s ease;
}
.profile-cta:hover { background: var(--color-accent-hover); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(196, 99, 63, 0.25); }

/* ==================== STATS GRID (TALENT PAGE) ==================== */
.stats-section { padding: 4rem 2rem; border-top: 1px solid rgba(44, 36, 32, 0.08); border-bottom: 1px solid rgba(44, 36, 32, 0.08); }
.stats-section-inner { max-width: 1100px; margin: 0 auto; }
.stats-section .section-tag { text-align: center; margin-bottom: 2rem; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat-card {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--color-bg-warm); border-radius: 12px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.stat-card-icon { color: var(--color-accent); margin-bottom: 0.75rem; }
.stat-card-num { font-family: var(--font-display); font-size: 2rem; font-weight: 400; color: var(--color-text); line-height: 1; margin-bottom: 0.4rem; }
.stat-card-label { font-size: 0.72rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); }

/* ==================== PLATFORM CARDS ==================== */
.platforms { padding: 5rem 2rem; max-width: 1100px; margin: 0 auto; }
.platforms .section-tag { text-align: center; }
.platforms h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 400; text-align: center; margin-bottom: 3rem; }
.platform-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.platform-card {
  padding: 2.5rem 2rem; border: 1px solid rgba(44, 36, 32, 0.06);
  border-radius: 16px; transition: all 0.4s ease;
  display: flex; flex-direction: column;
}
.platform-card:hover { border-color: rgba(196, 99, 63, 0.15); box-shadow: 0 12px 40px rgba(44, 36, 32, 0.06); transform: translateY(-4px); }
.platform-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: 0.3rem; }
.platform-handle { font-size: 0.85rem; color: var(--color-text-muted); margin-bottom: 1.5rem; }
.platform-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 400; color: var(--color-accent); line-height: 1; margin-bottom: 0.3rem; }
.platform-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: 1.5rem; }
.platform-details { display: flex; flex-direction: column; gap: 0.6rem; margin-top: auto; }
.platform-detail { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; padding: 0.4rem 0; border-bottom: 1px solid rgba(44, 36, 32, 0.05); }
.platform-detail:last-child { border-bottom: none; }
.platform-detail-label { color: var(--color-text-muted); font-weight: 300; }
.platform-detail-value { font-weight: 500; }

/* ==================== FORMATS ==================== */
.formats { padding: 5rem 2rem; background: var(--color-dark); color: var(--color-bg); }
.formats-inner { max-width: 1100px; margin: 0 auto; }
.formats .section-tag { color: var(--color-gold); text-align: center; }
.formats h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 400; text-align: center; margin-bottom: 3rem; }
.formats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.format-card {
  padding: 2rem; border: 1px solid rgba(250, 247, 242, 0.08);
  border-radius: 16px; transition: all 0.3s ease;
  display: flex; flex-direction: column;
}
.format-card:hover { border-color: rgba(184, 150, 90, 0.25); }
.format-icon { color: var(--color-gold); margin-bottom: 1rem; }
.format-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: 0.6rem; }
.format-card p { font-size: 0.88rem; font-weight: 300; color: rgba(250, 247, 242, 0.6); line-height: 1.7; }

/* ==================== GALLERY ==================== */
.gallery { padding: 5rem 2rem; background: var(--color-bg-warm); }
.gallery-inner { max-width: 1100px; margin: 0 auto; }
.gallery .section-tag { text-align: center; }
.gallery h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 400; text-align: center; margin-bottom: 3rem; }
.gallery-subsection { margin-bottom: 3rem; }
.gallery-subsection:last-child { margin-bottom: 0; }
.gallery-subtitle { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(44, 36, 32, 0.08); }
.gallery-grid { display: grid; gap: 1rem; }
.gallery-photos { grid-template-columns: repeat(3, 1fr); }
.gallery-videos-vertical { grid-template-columns: repeat(3, 1fr); }
.gallery-videos-horizontal { grid-template-columns: repeat(2, 1fr); }
.gallery-placeholder {
  background: var(--color-bg); border: 2px dashed rgba(44, 36, 32, 0.1);
  border-radius: 12px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.75rem;
  color: var(--color-text-muted); opacity: 0.5; transition: all 0.3s ease;
}
.gallery-placeholder:hover { opacity: 0.7; border-color: rgba(196, 99, 63, 0.2); }
.gallery-placeholder span { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }
.gallery-placeholder:not(.gallery-placeholder-vertical):not(.gallery-placeholder-horizontal) { aspect-ratio: 1; }
.gallery-placeholder-vertical { aspect-ratio: 9/16; }
.gallery-placeholder-horizontal { aspect-ratio: 16/9; }
.gallery-img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 12px; transition: transform 0.4s ease; }
.gallery-img:hover { transform: scale(1.02); }
.gallery-video-wrap { border-radius: 12px; overflow: hidden; background: var(--color-dark); }
.gallery-video-wrap video, .gallery-video-wrap iframe { display: block; width: 100%; border: none; }
.gallery-video-wrap.vertical video, .gallery-video-wrap.vertical iframe { aspect-ratio: 9/16; object-fit: cover; }
.gallery-video-wrap.horizontal video, .gallery-video-wrap.horizontal iframe { aspect-ratio: 16/9; object-fit: cover; }
.gallery-item { border-radius: 12px; overflow: hidden; background: var(--color-bg-warm); }
.gallery-item img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; }

/* ==================== AUDIENCE ==================== */
.audience { padding: 5rem 2rem; max-width: 1100px; margin: 0 auto; }
.audience .section-tag { text-align: center; }
.audience h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 400; text-align: center; margin-bottom: 3rem; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.audience-card { padding: 2rem; background: var(--color-bg-warm); border-radius: 12px; display: flex; flex-direction: column; }
.audience-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; margin-bottom: 1rem; color: var(--color-text); }
.audience-bar-group { display: flex; flex-direction: column; gap: 0.6rem; margin-top: auto; }
.audience-bar-label { display: flex; justify-content: space-between; font-size: 0.82rem; margin-bottom: 0.2rem; }
.audience-bar-label span:first-child { color: var(--color-text-muted); font-weight: 300; }
.audience-bar-label span:last-child { font-weight: 500; }
.audience-bar { height: 6px; background: rgba(44, 36, 32, 0.06); border-radius: 3px; overflow: hidden; }
.audience-bar-fill { height: 100%; background: var(--color-accent); border-radius: 3px; }

/* ==================== COLLABORATIONS ==================== */
.collabs { padding: 5rem 2rem; background: var(--color-dark); color: var(--color-bg); }
.collabs-inner { max-width: 1100px; margin: 0 auto; }
.collabs .section-tag { color: var(--color-gold); text-align: center; }
.collabs h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 400; text-align: center; margin-bottom: 1rem; }
.collabs-intro { font-size: 0.95rem; font-weight: 300; color: rgba(250, 247, 242, 0.6); text-align: center; max-width: 540px; margin: 0 auto 2.5rem; line-height: 1.7; }
.collabs-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; }
.collab-brand { font-size: 0.78rem; font-weight: 400; letter-spacing: 0.03em; padding: 0.5rem 1.2rem; border: 1px solid rgba(250, 247, 242, 0.1); border-radius: 100px; color: rgba(250, 247, 242, 0.65); transition: all 0.3s ease; }
.collab-brand:hover { border-color: var(--color-gold); color: var(--color-gold); }
.collab-brand.highlight { border-color: var(--color-gold); color: var(--color-gold); font-weight: 500; }

/* ==================== NEWS / BLOG ==================== */
.news-section { padding: 5rem 2rem; max-width: 1100px; margin: 0 auto; }
.news-section .section-tag { text-align: center; }
.news-section h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 400; text-align: center; margin-bottom: 3rem; }

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.news-card {
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(44, 36, 32, 0.06);
  transition: all 0.4s ease; background: #fff;
}
.news-card:hover { box-shadow: 0 12px 40px rgba(44, 36, 32, 0.08); transform: translateY(-4px); }
.news-card-img { aspect-ratio: 16/10; overflow: hidden; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-card-body { padding: 1.5rem; }
.news-card-meta { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 0.75rem; }
.news-card-body h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; line-height: 1.35; }
.news-card-body h3 a { color: var(--color-text); text-decoration: none; transition: color 0.3s ease; }
.news-card-body h3 a:hover { color: var(--color-accent); }
.news-card-body p { font-size: 0.88rem; font-weight: 300; color: var(--color-text-muted); line-height: 1.7; }

.news-more {
  text-align: center; margin-top: 3rem;
}
.news-more a {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-accent); text-decoration: none;
  padding: 0.75rem 1.8rem; border: 1.5px solid var(--color-accent); border-radius: 100px;
  transition: all 0.3s ease;
}
.news-more a:hover { background: var(--color-accent); color: var(--color-bg); }

/* ==================== SINGLE POST ==================== */
.single-post-wrap { max-width: 740px; margin: 0 auto; padding: 8rem 2rem 4rem; }
.single-post-header { margin-bottom: 3rem; }
.single-post-header .section-tag { margin-bottom: 1rem; }
.single-post-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400; line-height: 1.25; margin-bottom: 1rem;
}
.single-post-meta { font-size: 0.85rem; color: var(--color-text-muted); }
.single-post-featured { margin-bottom: 3rem; border-radius: 16px; overflow: hidden; }
.single-post-featured img { width: 100%; height: auto; }

.single-post-content { font-size: 1.05rem; font-weight: 300; line-height: 1.9; color: var(--color-text); }
.single-post-content p { margin-bottom: 1.5rem; }
.single-post-content h2 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; margin: 2.5rem 0 1rem; }
.single-post-content h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; margin: 2rem 0 0.75rem; }
.single-post-content img { border-radius: 12px; margin: 2rem 0; }
.single-post-content blockquote {
  border-left: 3px solid var(--color-accent); padding: 1rem 1.5rem; margin: 2rem 0;
  font-style: italic; color: var(--color-text-muted); background: var(--color-accent-light);
  border-radius: 0 8px 8px 0;
}

/* ==================== ARCHIVE / NEWS LIST ==================== */
.archive-header { padding: 8rem 2rem 3rem; text-align: center; }
.archive-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; margin-bottom: 1rem;
}
.archive-header p { font-size: 1rem; font-weight: 300; color: var(--color-text-muted); max-width: 480px; margin: 0 auto; }

.archive-grid { max-width: 1100px; margin: 0 auto; padding: 0 2rem 5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.pagination { text-align: center; padding: 2rem 2rem 5rem; }
.pagination a, .pagination span {
  display: inline-block; padding: 0.5rem 1rem; margin: 0 0.25rem;
  border-radius: 8px; font-size: 0.85rem; font-weight: 500;
}
.pagination .current { background: var(--color-accent); color: var(--color-bg); }
.pagination a { color: var(--color-text-muted); border: 1px solid rgba(44, 36, 32, 0.1); transition: all 0.3s ease; }
.pagination a:hover { border-color: var(--color-accent); color: var(--color-accent); }

/* ==================== FOOTER ==================== */
.site-footer {
  padding: 3rem 2.5rem; border-top: 1px solid rgba(44, 36, 32, 0.06);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: var(--color-text); }
.footer-logo span { color: var(--color-accent); }
.footer-info { font-size: 0.78rem; color: var(--color-text-muted); text-align: right; line-height: 1.6; }
.footer-info a { color: var(--color-accent); text-decoration: none; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .site-nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1rem; }
  .hero h1 { font-size: 2.2rem; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(44, 36, 32, 0.06); padding: 2rem; }
  .stat-item:last-child { border-bottom: none; }
  .profile-hero { grid-template-columns: 1fr; gap: 2rem; padding: 7rem 1.5rem 3rem; }
  .profile-photo-wrap { max-width: 320px; margin: 0 auto; }
  .talent-card { grid-template-columns: 1fr; }
  .talent-stats-grid { justify-content: center; }
  .platform-grid { grid-template-columns: 1fr; }
  .formats-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .gallery-photos { grid-template-columns: repeat(2, 1fr); }
  .gallery-videos-vertical { grid-template-columns: repeat(2, 1fr); }
  .gallery-videos-horizontal { grid-template-columns: 1fr; }
  .platform-num { font-size: 2rem; }
  .news-grid, .archive-grid { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-info { text-align: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .gallery-photos { grid-template-columns: 1fr; }
  .gallery-videos-vertical { grid-template-columns: 1fr; }
  .stat-card-num { font-size: 1.6rem; }
  .process-grid { grid-template-columns: 1fr; }
}

/* ==================== ANIMATIONS ==================== */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ==================== WP SPECIFIC ==================== */
.screen-reader-text { clip: rect(1px, 1px, 1px, 1px); position: absolute !important; height: 1px; width: 1px; overflow: hidden; }
.alignleft { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.aligncenter { display: block; margin: 0 auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.82rem; color: var(--color-text-muted); text-align: center; margin-top: 0.5rem; }
