/* =========================================
   VICTÓRIA TLUSTAK — Website CSS
   ========================================= */

@font-face {
  font-family: 'Alta';
  src: url('../fonts/Alta_regular.woff2') format('woff2'),
       url('../fonts/Alta_regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --vt-bg: #101010;
  --vt-panel: #F7F7F7;
  --vt-panel-bg: #1B1B1B;
  --vt-accent: #BD6B31;
  --vt-accent-dark: #9C5726;
  --vt-accent-light: #D8925C;
  --vt-surface: #1B1B1B;
  --vt-border: rgba(247,244,240,.14);
  --vt-text: #F5F2EE;
  --vt-text-secondary: rgba(245,242,238,.76);
  --vt-text-muted: rgba(245,242,238,.64);
  --vt-text-faint: rgba(245,242,238,.46);
  --vt-media-ph: #202020;
  --vt-font-display: 'Alta', serif;
  --vt-font-body: 'Work Sans', sans-serif;
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body { margin: 0; font-family: var(--vt-font-body); color: var(--vt-text); background: var(--vt-bg); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
::selection { background: rgba(189,107,49,.32); color: var(--vt-bg); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--vt-accent); text-decoration: none; }
a:hover { color: var(--vt-accent-light); }
p { margin: 0; }
h1,h2,h3,h4 { margin: 0; }

.vt-container { max-width: 1240px; margin: 0 auto; padding: 0 clamp(20px,4vw,48px); }
.vt-section { padding: 120px 0; }

/* === TYPOGRAPHY === */
.vt-h1 { font-family: var(--vt-font-display); font-weight: 400; font-size: clamp(32px,4.6vw,45px); line-height: 1.18; letter-spacing: -0.3px; }
.vt-h1 h1 { font-family: inherit; font-weight: inherit; font-size: inherit; line-height: inherit; letter-spacing: inherit; margin: 0; }
.vt-h2 { font-family: var(--vt-font-display); font-weight: 400; font-size: clamp(26px,3.2vw,38px); line-height: 1.25; }
.vt-h2 h2 { font-family: inherit; font-weight: inherit; font-size: inherit; line-height: inherit; margin: 0; }
.vt-accent { color: var(--vt-accent); }
.vt-lead { font-size: 18px; line-height: 1.7; color: var(--vt-text-muted); }

/* === EYEBROW BADGE (Advogada Trabalhista) === */
.vt-eyebrow-badge { display: inline-flex; align-items: center; gap: 10px; border: 1.5px solid var(--vt-accent); color: var(--vt-accent); font-family: var(--vt-font-body); font-weight: 600; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; padding: 9px 18px; border-radius: 100px; margin-bottom: 22px; }
/* .vt-eyebrow-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--vt-accent); flex-shrink: 0; } */

/* === BUTTONS === */
.vt-btn { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; border-radius: 6px; font-family: var(--vt-font-body); font-weight: 600; cursor: pointer; border: none; transition: background .2s,border-color .2s,color .2s; white-space: nowrap; line-height: 1; padding: 16px 28px; font-size: 16px; }
.vt-btn--primary { background: var(--vt-accent); color: #fff; }
.vt-btn--primary:hover { background: var(--vt-accent-dark); color: #fff; }
.vt-btn--lg { padding: 22px 42px; font-size: 17.5px; }
.vt-btn--ghost { background: transparent; color: var(--vt-panel); border: 1px solid var(--vt-panel); font-weight: 500; }
.vt-btn--ghost:hover { background: var(--vt-panel); color: var(--vt-bg); }
.vt-btn--dark { background: var(--vt-accent); color: #fff; }
.vt-btn--dark:hover { background: var(--vt-accent-dark); color: #fff; }
.vt-btn--outline-light { background: transparent; color: var(--vt-text); border: 1px solid var(--vt-text); font-weight: 500; padding: 14px 26px; font-size: 15px; }
.vt-btn--outline-light:hover { background: var(--vt-text); color: var(--vt-bg); }
.vt-btn--nav { background: var(--vt-accent); color: #fff; padding: 11px 20px; font-size: 14px; }
.vt-btn--nav:hover { background: var(--vt-accent-dark); color: #fff; }
.vt-btn-row { display: flex; flex-wrap: wrap; gap: 16px; }

/* === HEADER === */
.vt-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 0 clamp(20px,4vw,48px); height: 84px; background: rgba(16,16,16,.9); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-bottom: 1px solid var(--vt-border); }
.vt-header__logo { display: flex; flex-direction: column; line-height: 1; color: var(--vt-text); text-decoration: none; }
.vt-header__logo img { height: 58px; width: auto; }
.vt-header__logo-name { font-family: var(--vt-font-display); font-weight: 400; font-size: 20px; letter-spacing: 0.2px; }
.vt-header__logo-tag { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(245,242,238,.65); margin-top: 4px; }
.vt-header__nav { display: flex; gap: 22px; align-items: center; white-space: nowrap; }
.vt-header__nav a { font-size: 15px; color: var(--vt-text); font-weight: 500; text-decoration: none; }
.vt-header__nav a:hover,.vt-header__nav a.is-active { color: var(--vt-accent); }
.vt-nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; cursor: pointer; }
.vt-nav-toggle span { display: block; width: 22px; height: 2px; background: var(--vt-text); }
.vt-mobile-menu { display: none; position: fixed; top: 84px; left: 0; right: 0; bottom: 0; z-index: 99; background: var(--vt-bg); padding: 32px clamp(20px,4vw,48px); flex-direction: column; gap: 24px; overflow-y: auto; }
.vt-mobile-menu.is-open { display: flex; }
.vt-mobile-menu a:not(.vt-btn) { font-family: var(--vt-font-display); font-size: 22px; color: var(--vt-text); border-bottom: 1px solid var(--vt-border); padding-bottom: 16px; text-decoration: none; }
.vt-mobile-menu .vt-btn { margin-top: 8px; }

/* === HERO === */
.vt-hero { scroll-margin-top: 84px; display: grid; grid-template-columns: repeat(auto-fit,minmax(340px,1fr)); gap: 56px; align-items: center; padding: 116px clamp(20px,4vw,48px) 76px; max-width: 1240px; margin: 0 auto; }
.vt-hero__content h1,.vt-hero__content .vt-h1 { margin: 0; }
.vt-hero__lead { max-width: 540px; margin: 28px 0 0; }
.vt-hero__media { position: relative; }
.vt-hero__media::before { content: ''; position: absolute; top: -22%; right: -30%; width: 110%; height: 110%; background: url('../img/pattern-w.png') center/contain no-repeat; opacity: .16; -webkit-mask-image: radial-gradient(circle at 62% 40%, black 30%, transparent 70%); mask-image: radial-gradient(circle at 62% 40%, black 30%, transparent 70%); z-index: 0; pointer-events: none; }
.vt-hero__img-wrap { position: relative; z-index: 1; width: 100%; height: auto; aspect-ratio: 4/5; border-radius: 20px; overflow: hidden; background: var(--vt-media-ph); }
.vt-hero__img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

/* === TRUST BAR === */
.vt-trust { background: var(--vt-panel-bg); padding: 56px clamp(20px,4vw,48px); }
.vt-trust__grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 40px; }
.vt-trust__n { font-family: var(--vt-font-display); color: var(--vt-accent); font-size: 25px; letter-spacing: 1.5px; margin-bottom: 12px; }
.vt-trust__title { font-family: var(--vt-font-display); font-weight: 400; font-size: 25px; margin-bottom: 8px; color: var(--vt-text); position: relative; padding-bottom: 10px; }
.vt-trust__title::after { content: ''; position: absolute; left: 0; bottom: 0; width: 32px; height: 2px; background: var(--vt-accent); }
.vt-trust__desc { color: var(--vt-text-muted); font-size: 15px; line-height: 1.5; }

/* === SOBRE === */
.vt-sobre { scroll-margin-top: 84px; padding: 96px clamp(20px,4vw,48px); max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit,minmax(340px,1fr)); gap: 64px; align-items: center; }
.vt-sobre__img-wrap { position: relative; z-index: 1; width: 100%; height: auto; aspect-ratio: 4/5; border-radius: 20px; overflow: hidden; background: var(--vt-media-ph); }
.vt-sobre__img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.vt-sobre__title { margin: 0 0 24px; }
.vt-sobre__body p { font-size: 17px; line-height: 1.75; color: var(--vt-text-secondary); margin: 0 0 18px; }
.vt-sobre__body p:last-child { margin-bottom: 28px; }
.vt-sobre__quote { border-left: 3px solid var(--vt-accent); padding-left: 16px; font-size: 15px; color: var(--vt-text-muted); margin-bottom: 32px; }

/* === ÁREAS DE ATUAÇÃO === */
.vt-areas { scroll-margin-top: 84px; background: var(--vt-bg); padding: 96px clamp(20px,4vw,48px) 0; border-top: 1px solid var(--vt-border); }
.vt-areas__title { text-align: center; margin: 0 0 56px; }
.vt-areas__grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 24px; }
.vt-area-card { background: var(--vt-surface); border: 1px solid var(--vt-border); border-top: 3px solid var(--vt-accent); border-radius: 8px; overflow: hidden; transition: transform .25s; }
.vt-area-card:hover { transform: translateY(-4px); }
.vt-area-card__img { width: 100%; height: 160px; background: var(--vt-media-ph); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.vt-area-card__img img { width: 100%; height: 100%; object-fit: cover; }
.vt-area-card__body { padding: 24px 24px 28px; }
.vt-area-card__title { font-family: var(--vt-font-display); font-weight: 400; font-size: 19px; margin-bottom: 12px; color: var(--vt-text); }
.vt-area-card__desc { color: var(--vt-text-muted); font-size: 15px; line-height: 1.6; }
.vt-areas__footer { text-align: center; margin: 56px 0 0; font-size: 16px; color: var(--vt-text-secondary); }
.vt-areas__footer a { font-weight: 600; }

/* === PATTERN DIVIDER === */
.vt-pattern-divider { position: relative; height: 200px; overflow: hidden; background: var(--vt-bg); }
.vt-pattern-divider::before { content: ''; position: absolute; inset: -50px 0; background: url('../img/pattern-w.png') center / auto 300px repeat-x; opacity: .18; -webkit-mask-image: radial-gradient(ellipse 60% 55% at center, black 30%, transparent 88%); mask-image: radial-gradient(ellipse 60% 55% at center, black 30%, transparent 88%); }

/* === COMO FUNCIONA === */
.vt-steps { scroll-margin-top: 84px; padding: 96px clamp(20px,4vw,48px); max-width: 1240px; margin: 0 auto; }
.vt-steps__title { text-align: center; width: fit-content; margin: 0 auto 56px; border: 1.5px solid var(--vt-accent); padding: 16px 36px; border-radius: 2px; }
.vt-steps__grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 36px; }
.vt-step__n { font-family: var(--vt-font-display); font-weight: 400; font-size: 40px; color: var(--vt-accent); line-height: 1; margin-bottom: 16px; }
.vt-step__title { font-weight: 600; font-size: 16px; letter-spacing: .6px; text-transform: uppercase; margin-bottom: 8px; }
.vt-step__desc { color: var(--vt-text-muted); font-size: 15px; line-height: 1.6; }

/* === DIFERENCIAIS === */
.vt-dif { background: var(--vt-panel-bg); padding: 96px clamp(20px,4vw,48px); }
.vt-dif__inner { max-width: 900px; margin: 0 auto; }
.vt-dif__title { margin: 0 0 48px; color: var(--vt-text); }
.vt-dif-item { display: grid; grid-template-columns: 64px 1fr; gap: 24px; padding: 28px 0; border-top: 1px solid var(--vt-border); }
.vt-dif-item__n { font-family: var(--vt-font-display); font-size: 35px; color: var(--vt-accent); }
.vt-dif-item__title { font-weight: 600; font-size: 18px; margin-bottom: 8px; color: var(--vt-text); }
.vt-dif-item__desc { color: var(--vt-text-muted); font-size: 15px; line-height: 1.65; }

/* === DEPOIMENTOS (placeholder) === */
.vt-testimonials { padding: 64px clamp(20px,4vw,48px); text-align: center; }
.vt-testimonials__title { font-family: var(--vt-font-display); font-weight: 400; font-size: clamp(22px,2.6vw,30px); margin: 0 0 12px; }
.vt-testimonials__note { font-style: italic; color: var(--vt-text-muted); font-size: 15px; margin: 0; }
.vt-testimonials__grid { max-width: 1240px; margin: 40px auto 0; display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; text-align: left; }
.vt-testimonial-card { background: var(--vt-surface); border: 1px solid var(--vt-border); border-top: 3px solid var(--vt-accent); border-radius: 8px; padding: 28px 26px; }
.vt-testimonial-card__text { font-size: 15px; line-height: 1.7; color: var(--vt-text-secondary); margin: 0 0 18px; }
.vt-testimonial-card__name { font-weight: 600; font-size: 15px; color: var(--vt-text); }
.vt-testimonial-card__city { font-size: 13px; color: var(--vt-text-faint); margin-top: 2px; }

/* === BLOG (home) === */
.vt-blog-home { scroll-margin-top: 84px; padding: 80px clamp(20px,4vw,48px); max-width: 1240px; margin: 0 auto; }
.vt-blog-home__header { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 16px; margin-bottom: 48px; }
.vt-blog-home__desc { color: var(--vt-text-muted); font-size: 16px; margin: 12px 0 0; max-width: 480px; }
.vt-blog-home__see-all { font-weight: 600; font-size: 15px; white-space: nowrap; }
.vt-blog-home__grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 24px; }

/* === BLOG CARD (shared: home + listing + continue reading) === */
.vt-blog-card { text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.vt-blog-card__img { border-radius: 4px; overflow: hidden; aspect-ratio: 3/2; margin-bottom: 16px; background: var(--vt-media-ph); }
.vt-blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.vt-blog-card:hover .vt-blog-card__img img { transform: scale(1.03); }
.vt-blog-card__img--ph { display: flex; align-items: center; justify-content: center; }
.vt-blog-card__cat { display: block; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--vt-accent); margin-bottom: 6px; }
.vt-blog-card__title { font-family: var(--vt-font-display); font-weight: 400; font-size: 16px; line-height: 1.3; margin-top: 6px; color: var(--vt-text); }
.vt-blog-card__excerpt { font-size: 14.5px; line-height: 1.6; color: var(--vt-text-muted); margin-top: 8px; }
.vt-blog-card__time { font-size: 13px; color: var(--vt-text-faint); margin-top: 10px; }

/* === INSTAGRAM === */
.vt-instagram { background: var(--vt-panel-bg); padding: 80px clamp(20px,4vw,48px); text-align: center; }
.vt-instagram__title { color: var(--vt-text); margin: 0 0 12px; }
.vt-instagram__desc { color: var(--vt-text-muted); font-size: 16px; margin: 0 0 32px; }
.vt-instagram__grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit,minmax(120px,1fr)); gap: 14px; }
.vt-instagram__post { display: block; width: 100%; aspect-ratio: 4/5; background: rgba(247,244,240,.06); overflow: hidden; }
.vt-instagram__post img { width: 100%; height: 100%; object-fit: cover; }

/* === FAQ === */
.vt-faq { scroll-margin-top: 84px; padding: 88px clamp(20px,4vw,48px); max-width: 820px; margin: 0 auto; }
.vt-faq__title { text-align: center; margin: 0 0 48px; }
.vt-faq__item { border-bottom: 1px solid var(--vt-border); }
.vt-faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; background: none; border: none; padding: 24px 0; text-align: left; cursor: pointer; font-family: var(--vt-font-body); }
.vt-faq__q-text { font-weight: 600; font-size: 17px; color: var(--vt-text); }
.vt-faq__sign { font-size: 22px; color: var(--vt-accent); flex-shrink: 0; }
.vt-faq__a { margin: 0 0 28px; color: var(--vt-text-muted); font-size: 15px; line-height: 1.7; max-width: 800px; display: none; }
.vt-faq__item.is-open .vt-faq__a { display: block; }
.vt-faq__item.is-open .vt-faq__q-text { color: var(--vt-accent); }

/* === CTA FINAL === */
.vt-cta-final { scroll-margin-top: 84px; background: var(--vt-panel-bg); color: var(--vt-text); padding: 96px clamp(20px,4vw,48px); text-align: center; }
.vt-cta-final__title { margin: 0 auto 20px; max-width: 720px; font-size: clamp(26px,3.6vw,42px); }
.vt-cta-final__desc { font-size: 17px; color: var(--vt-text-muted); margin: 0 auto 40px; max-width: 520px; }
.vt-cta-final .vt-btn { padding: 18px 32px; }

/* === FOOTER === */
.vt-footer { background: linear-gradient(135deg, var(--vt-accent-dark) 0%, var(--vt-accent) 55%, #C97A3E 100%); padding: 64px clamp(20px,4vw,48px) 32px; color: #FBF3EC; text-align: center; }
.vt-footer__inner { max-width: 1000px; margin: 0 auto; }
.vt-footer__logo { display: flex; flex-direction: column; align-items: center; line-height: 1; margin-bottom: 36px; }
.vt-footer__logo img { height: 68px; width: auto; }
.vt-footer__logo-name { font-family: var(--vt-font-display); font-weight: 400; font-size: 24px; color: #FBF3EC; }
.vt-footer__logo-tag { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(251,243,236,.8); margin-top: 6px; }
.vt-footer__contact { display: flex; flex-wrap: wrap; justify-content: center; gap: 0; margin: 0 0 36px; border-top: 1px solid rgba(251,243,236,.28); border-bottom: 1px solid rgba(251,243,236,.28); }
.vt-footer__contact-item { flex: 1 1 200px; padding: 26px 20px; }
.vt-footer__contact-item + .vt-footer__contact-item { border-left: 1px solid rgba(251,243,236,.28); }
.vt-footer__contact-icon { display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; margin: 0 auto 12px; color: #FBF3EC; }
.vt-footer__contact-icon svg { width: 100%; height: 100%; fill: currentColor; }
.vt-footer__contact-label { font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase; font-weight: 600; color: rgba(251,243,236,.75); margin-bottom: 6px; }
.vt-footer__contact-value { font-size: 15px; font-weight: 600; color: #FBF3EC; }
.vt-footer__contact-value a { color: inherit; }
.vt-footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 28px; margin-bottom: 36px; }
.vt-footer__nav a { font-size: 13px; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; color: rgba(251,243,236,.9); text-decoration: none; }
.vt-footer__nav a:hover { color: #fff; }
.vt-footer__bottom { padding-top: 28px; border-top: 1px solid rgba(251,243,236,.28); display: flex; flex-direction: column; gap: 8px; align-items: center; }
.vt-footer__reg { font-size: 13px; letter-spacing: .6px; text-transform: uppercase; color: #FBF3EC; font-weight: 600; }
.vt-footer__address { font-size: 13px; color: rgba(251,243,236,.85); }
.vt-footer__disclaimer { font-size: 12px; color: rgba(251,243,236,.72); margin-top: 14px; max-width: 640px; line-height: 1.6; }
.vt-footer__credit { font-size: 12px; color: rgba(251,243,236,.72); margin-top: 18px; }
.vt-footer__credit a { color: rgba(251,243,236,.92); font-weight: 600; }

/* === WHATSAPP FLOAT === */
.vt-wa-float { position: fixed; bottom: 28px; right: 28px; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 28px; text-decoration: none; box-shadow: 0 4px 16px rgba(0,0,0,.4); z-index: 99; transition: transform .2s; }
.vt-wa-float:hover { transform: scale(1.08); }

/* === PLACEHOLDER === */
.vt-ph { display: flex; align-items: center; justify-content: center; color: #B8A99C; font-size: 12px; text-align: center; padding: 8px; }

/* === REVEAL ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease,transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }

/* =========================================
   BLOG LISTING PAGE
   ========================================= */
.vt-blog-page { padding: 168px 0 50px; }
.vt-blog-page__hero { max-width: 1240px; margin: 0 auto; padding: 0 clamp(20px,4vw,48px); }
.vt-blog-page__hero h1 { font-family: var(--vt-font-display); font-weight: 400; font-size: clamp(32px,4.6vw,54px); line-height: 1.15; max-width: 760px; margin-bottom: 22px; }
.vt-blog-page__hero p { font-size: 18px; line-height: 1.7; color: var(--vt-text-muted); max-width: 580px; }
.vt-eyebrow { display: block; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--vt-accent); font-weight: 600; margin-bottom: 20px; }

.vt-cat-chips { display: flex; flex-wrap: wrap; gap: 10px; max-width: 1240px; margin: 40px auto 0; padding: 0 clamp(20px,4vw,48px); }
.vt-cat-chip { font-family: var(--vt-font-body); font-size: 13.5px; font-weight: 500; padding: 9px 18px; border-radius: 100px; cursor: pointer; border: 1px solid var(--vt-border); background: var(--vt-surface); color: var(--vt-text-secondary); text-decoration: none; transition: background .15s,border-color .15s,color .15s; }
.vt-cat-chip.is-active,.vt-cat-chip:hover { background: var(--vt-panel); border-color: var(--vt-panel); color: var(--vt-bg); }

.vt-blog-featured { max-width: 1240px; margin: 44px auto 0; padding: 0 clamp(20px,4vw,48px); }
.vt-blog-featured__card { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; background: var(--vt-surface); border: 1px solid var(--vt-border); border-radius: 8px; overflow: hidden; text-decoration: none; color: inherit; transition: box-shadow .2s; gap: 20px; }
.vt-blog-featured__card:hover { box-shadow: 0 24px 54px -30px rgba(0,0,0,.6); }
.vt-blog-featured__img { position: relative; aspect-ratio: 16/11; background: var(--vt-media-ph); overflow: hidden; }
.vt-blog-featured__img img { width: 100%; height: 100%; object-fit: cover; }
.vt-blog-featured__img--ph { display: flex; align-items: center; justify-content: center; }
.vt-blog-featured__body { padding: 8px 48px 8px 0; }
.vt-blog-featured__meta { display: inline-block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--vt-accent); font-weight: 600; margin-bottom: 16px; }
.vt-blog-featured__title { font-family: var(--vt-font-display); font-weight: 400; font-size: 32px; line-height: 1.2; margin-bottom: 16px; }
.vt-blog-featured__desc { font-size: 16px; line-height: 1.65; color: var(--vt-text-muted); margin-bottom: 22px; }
.vt-blog-featured__cta { font-size: 15px; font-weight: 600; color: var(--vt-accent); }

.vt-blog-grid-section { max-width: 1240px; margin: 0 auto; padding: 56px clamp(20px,4vw,48px) 100px; }
.vt-blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px 28px; }

/* =========================================
   ARTICLE PAGE
   ========================================= */
.vt-article-hdr { max-width: 760px; margin: 0 auto; padding: 168px clamp(20px,4vw,48px) 0; }
.vt-article-breadcrumb { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--vt-text-faint); margin-bottom: 26px; }
.vt-article-breadcrumb a { font-weight: 600; }
.vt-article-breadcrumb .cat { letter-spacing: .12em; text-transform: uppercase; color: var(--vt-accent); font-weight: 600; font-size: 11px; }
.vt-article__title { font-family: var(--vt-font-display); font-weight: 400; font-size: clamp(28px,4vw,42px); line-height: 1.2; margin-bottom: 24px; }
.vt-article__lead { font-size: 19px; line-height: 1.55; color: var(--vt-text-secondary); margin-bottom: 32px; }
.vt-article__byline { display: flex; align-items: center; gap: 16px; padding: 22px 0; border-top: 1px solid var(--vt-border); border-bottom: 1px solid var(--vt-border); }
.vt-article__avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--vt-media-ph); overflow: hidden; flex-shrink: 0; }
.vt-article__avatar img { width: 100%; height: 100%; object-fit: cover; }
.vt-article__author-name { font-weight: 600; font-size: 15px; line-height: 1.4; }
.vt-article__meta { font-size: 13px; color: var(--vt-text-faint); }
.vt-article-hero-img { max-width: 980px; margin: 40px auto 8px; padding: 0 clamp(20px,4vw,48px); }
.vt-article-hero-img__wrap { position: relative; aspect-ratio: 16/8; border-radius: 8px; overflow: hidden; background: var(--vt-media-ph); }
.vt-article-hero-img__wrap img { width: 100%; height: 100%; object-fit: cover; }

.vt-prose { max-width: 800px; margin: 0 auto; padding: 40px clamp(20px,4vw,48px) 0; font-size: 18px; line-height: 1.78; color: var(--vt-text); }
.vt-prose p { margin-bottom: 24px; }
.vt-prose p:last-child { margin-bottom: 0; }
.vt-prose h2 { font-family: var(--vt-font-display); font-weight: 400; font-size: 28px; line-height: 1.25; margin: 40px 0 16px; color: var(--vt-text); }
.vt-prose h3 { font-family: var(--vt-font-display); font-weight: 400; font-size: 22px; line-height: 1.3; margin: 32px 0 12px; color: var(--vt-text); }
.vt-prose ul,.vt-prose ol { margin: 0 0 24px; padding-left: 22px; display: flex; flex-direction: column; gap: 10px; }
.vt-prose blockquote { margin: 36px 0; padding: 8px 0 8px 20px; border-left: 2px solid var(--vt-accent); font-family: var(--vt-font-display); font-size: 24px; line-height: 1.4; color: var(--vt-text); }
.vt-prose a { text-decoration: underline; }
.vt-prose img { border-radius: 8px; width: 100%; margin: 24px 0; }

.vt-inline-cta { max-width: 800px; margin: 40px auto 0; padding: 0 clamp(20px,4vw,48px); }
.vt-inline-cta__box { background: var(--vt-surface); border: 1px solid var(--vt-border); border-left: 3px solid var(--vt-accent); border-radius: 8px; padding: 28px 30px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.vt-inline-cta__title { font-family: var(--vt-font-display); font-weight: 400; font-size: 21px; margin-bottom: 4px; }
.vt-inline-cta__desc { font-size: 14.5px; color: var(--vt-text-muted); }

.vt-article-footer { max-width: 800px; margin: 40px auto 0; padding: 0 clamp(20px,4vw,48px); }
.vt-article-footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 0; border-top: 1px solid var(--vt-border); flex-wrap: wrap; }
.vt-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.vt-tag { font-size: 13px; font-weight: 500; padding: 7px 14px; border-radius: 100px; background: var(--vt-surface); border: 1px solid var(--vt-border); color: var(--vt-text-secondary); }
.vt-share { display: flex; align-items: center; gap: 14px; font-size: 14px; color: var(--vt-text-faint); }
.vt-share a { font-weight: 600; }

.vt-continue { max-width: 1240px; margin: 0 auto; padding: 80px clamp(20px,4vw,48px) 100px; }
.vt-continue__title { font-family: var(--vt-font-display); font-weight: 400; font-size: 30px; margin-bottom: 36px; }
.vt-continue__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

/* === MOBILE === */
@media (max-width: 1080px) {
  .vt-header__nav { display: none; }
  .vt-btn--nav { display: none; }
  .vt-nav-toggle { display: flex; }
  .vt-header { justify-content: center; position: relative; }
  .vt-nav-toggle { position: absolute; right: clamp(16px,4vw,40px); top: 50%; transform: translateY(-50%); }
  .vt-header__logo img { height: 46px; }
}

@media (max-width: 768px) {
  .vt-blog-grid,.vt-continue__grid { grid-template-columns: repeat(2,1fr); }
  .vt-blog-featured__card { grid-template-columns: 1fr; gap: 0; }
  .vt-blog-featured__body { padding: 24px; }
  .vt-blog-featured__title { font-size: 24px; }
  .vt-hero__img-wrap { order: -1; }
  .vt-instagram__grid { grid-template-columns: 1fr; }
  .vt-btn-row { flex-direction: column; align-items: center; }
  .vt-btn-row .vt-btn { width: 100%; max-width: 380px; white-space: normal; text-align: center; }
  .vt-btn--lg { padding: 18px 24px; font-size: 16px; }
  .vt-footer__contact-item + .vt-footer__contact-item { border-left: none; border-top: 1px solid rgba(251,243,236,.28); }
}

@media (max-width: 560px) {
  .vt-blog-grid,.vt-continue__grid { grid-template-columns: 1fr; }
  .vt-blog-home__header { flex-direction: column; align-items: flex-start; }
  .vt-instagram__desc,.vt-instagram__title { text-align: center; }
}
