/*
 * Мебель Дельта — Layout Components
 * Header, Footer, Hero, Preloader
 */

/* === Preloader v2 === */
.preloader { position: fixed; inset: 0; background: var(--c-ivory); z-index: var(--z-preloader); display: flex; align-items: center; justify-content: center; flex-direction: column; clip-path: inset(0); }
.preloader__logo { font-family: var(--f-heading); font-size: clamp(1.4rem, 4vw, 2.2rem); font-weight: 700; color: var(--c-graphite); letter-spacing: 0.08em; text-align: center; white-space: nowrap; overflow: hidden; }
.preloader__letter { display: inline-block; }
.preloader__sub { font-size: clamp(0.55rem, 1.2vw, 0.7rem); color: var(--c-gold); letter-spacing: 0.25em; margin-top: 12px; text-align: center; text-transform: uppercase; }
.preloader__progress { width: 100px; height: 2px; background: var(--c-border); margin-top: 24px; overflow: hidden; }
.preloader__progress-bar { width: 100%; height: 100%; background: var(--c-gold); transform: scaleX(0); transform-origin: left; }
.preloader__counter { font-family: var(--f-body); font-size: 11px; color: var(--c-text-muted); letter-spacing: 0.1em; margin-top: 8px; }

/* === Header === */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-header); padding: var(--sp-5) 0; transition: padding var(--duration) var(--ease), background var(--duration) var(--ease), box-shadow var(--duration) var(--ease); }
.header--scrolled { background: rgba(44,45,47,0.95); padding: var(--sp-3) 0; box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
@supports (backdrop-filter: blur(12px)) { .header--scrolled { background: rgba(44,45,47,0.88); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); } }
.header--light { background: #fff; box-shadow: 0 1px 8px rgba(0,0,0,0.06); }
.header--light .header__logo, .header--light .header__link { color: var(--c-graphite); }
.header--light .header__cta { background: var(--c-graphite); color: #fff; }
.header--light .header__cta:hover { background: var(--c-gold); color: var(--c-graphite); }
.header--light .header__burger { color: var(--c-graphite); }
.header--light.header--scrolled { background: rgba(44,45,47,0.95); }
.header--light.header--scrolled .header__logo, .header--light.header--scrolled .header__link { color: #fff; }
.header--light.header--scrolled .header__cta { background: var(--c-gold); color: var(--c-graphite); }
.header--light.header--scrolled .header__burger { color: #fff; }
.header__inner { display: flex; align-items: center; justify-content: space-between; }
.header__logo { display: flex; align-items: center; color: #fff; transition: color var(--duration) var(--ease); text-decoration: none; }
.header__logo:hover { color: var(--c-gold); }
.header__logo-title { font-family: var(--f-body); font-size: var(--fs-base); letter-spacing: 0.2em; font-weight: 600; text-transform: uppercase; line-height: 1.2; }
.header__logo-sub { font-size: 0.6rem; color: var(--c-gold); letter-spacing: 0.25em; text-transform: uppercase; }
@media (min-width: 768px) { .header__logo-title { font-size: var(--fs-lg); } }
.header__nav { display: none; align-items: center; gap: var(--sp-8); }
@media (min-width: 1024px) { .header__nav { display: flex; } }
.header__link { color: #fff; font-size: var(--fs-sm); letter-spacing: 0.1em; text-transform: uppercase; position: relative; padding: var(--sp-1) 0; }
.header__link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--c-gold); transition: width var(--duration) var(--ease); }
.header__link:hover { color: var(--c-gold); }
.header__link:hover::after, .header__link--active::after { width: 100%; }
.header__actions { display: flex; align-items: center; gap: var(--sp-4); }
.header__icon { color: #fff; padding: var(--sp-2); transition: color var(--duration) var(--ease); }
.header__icon:hover { color: var(--c-gold); }
.header__icon svg { width: 24px; height: 24px; }
.header__cta { display: none; padding: 10px 24px; background: var(--c-gold); color: var(--c-graphite); font-size: var(--fs-sm); letter-spacing: 0.05em; font-weight: 600; transition: background var(--duration) var(--ease), color var(--duration) var(--ease); }
.header__cta:hover { background: var(--c-gold-hover); color: #fff; }
@media (min-width: 768px) { .header__cta { display: block; } }
.header__burger { display: block; color: #fff; padding: var(--sp-2); }
.header--light .header__burger, .header--light .header__icon { color: var(--c-graphite); }
.header--light.header--scrolled .header__burger, .header--light.header--scrolled .header__icon { color: #fff; }
.header__burger svg { width: 24px; height: 24px; }
@media (min-width: 1024px) { .header__burger { display: none; } }

/* === Mobile Menu === */
.mobile-menu { position: fixed; inset: 0; z-index: var(--z-menu); background: var(--c-graphite); transform: translateX(-100%); transition: transform var(--duration) var(--ease); }
.mobile-menu::before { content: ''; position: fixed; inset: 0; background: rgba(0,0,0,0); transition: background var(--duration) var(--ease); pointer-events: none; z-index: -1; }
.mobile-menu.active { transform: translateX(0); }
.mobile-menu.active::before { background: rgba(0,0,0,0.5); pointer-events: auto; }
.mobile-menu__inner { padding: var(--sp-6); padding-top: max(var(--sp-6), env(safe-area-inset-top, 1.5rem)); }
.mobile-menu__cta { margin-top: var(--sp-8); }
.mobile-menu__close { color: #fff; margin-bottom: var(--sp-8); padding: var(--sp-2); }
.mobile-menu__close svg { width: 32px; height: 32px; }
.mobile-menu__nav { display: flex; flex-direction: column; gap: var(--sp-6); }
.mobile-menu__link { color: #fff; font-family: var(--f-heading); font-size: var(--fs-2xl); transition: color var(--duration) var(--ease); }
.mobile-menu__link:hover { color: var(--c-gold); }

/* === Hero === */
.hero { position: relative; height: 100vh; overflow: hidden; }
.hero__slide { position: relative; height: 100vh; }
/* Images always get parallax via CSS custom properties — works for ALL Swiper slides including clones */
.hero__slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(calc(var(--plx-img-scale, 1.15) * var(--plx-micro-ds, 1))) translateY(var(--plx-img-y, 0%)) translate3d(var(--plx-micro-dx, 0px), var(--plx-micro-dy, 0px), 0); will-change: transform; }
.hero__gradient { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(44,45,47,0.4) 0%, rgba(44,45,47,0.2) 40%, rgba(44,45,47,0.6) 100%); opacity: var(--plx-grad-opacity, 1); }
.hero__content { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 var(--container-px); z-index: 2; }
.hero__title { font-size: var(--fs-4xl); color: #fff; line-height: 1.1; margin-bottom: var(--sp-6); }
.hero__subtitle { font-size: var(--fs-lg); color: rgba(255,255,255,0.9); margin-bottom: var(--sp-4); letter-spacing: 0.05em; }
.hero__text { font-size: var(--fs-base); color: rgba(255,255,255,0.8); margin-bottom: var(--sp-10); max-width: 42rem; margin-left: auto; margin-right: auto; }
@media (min-width: 768px) { .hero__title { font-size: var(--fs-6xl); } .hero__subtitle { font-size: var(--fs-xl); } .hero__text { font-size: var(--fs-lg); } }
@media (min-width: 1024px) { .hero__title { font-size: var(--fs-7xl); } }

/* Hero Navigation (Poliform-style: thin arrows + line bullets) */
.hero__nav { position: absolute; bottom: var(--sp-8); left: 50%; transform: translateX(-50%); z-index: 10; display: flex; align-items: center; gap: var(--sp-6); }
.hero__arrow { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: transparent; border: 1px solid rgba(255,255,255,0.3); color: #fff; cursor: pointer; transition: border-color var(--duration) var(--ease), background var(--duration) var(--ease); }
.hero__arrow svg { width: 20px; height: 20px; }
.hero__arrow:hover { border-color: var(--c-gold); background: rgba(201,169,97,0.15); color: var(--c-gold); }
.hero__pagination { display: flex; gap: var(--sp-2); align-items: center; }
.hero__bullet { width: 32px; height: 2px; background: rgba(255,255,255,0.3); cursor: pointer; transition: background var(--duration) var(--ease), width var(--duration) var(--ease); border: none; padding: 0; display: block; }
.hero__bullet--active { background: var(--c-gold); width: 48px; }
@media (max-width: 767px) { .hero__nav { bottom: var(--sp-4); gap: var(--sp-3); } .hero__arrow { width: 36px; height: 36px; } .hero__bullet { width: 24px; } .hero__bullet--active { width: 36px; } }

/* Hero Scroll Indicator */
.hero__scroll-indicator { position: absolute; bottom: var(--sp-8); right: var(--sp-8); display: flex; flex-direction: column; align-items: center; gap: var(--sp-2); z-index: 10; color: rgba(255,255,255,0.5); font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; font-family: var(--f-body); }
.hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(0.5); opacity: 0.3; } }
@media (max-width: 767px) { .hero__scroll-indicator { display: none; } }

/* === Page Header (inner pages) === */
.page-header { padding-top: 3rem; padding-bottom: var(--sp-16); background: var(--c-light); }
.page-header__title { font-size: var(--fs-4xl); }
@media (min-width: 768px) { .page-header__title { font-size: var(--fs-5xl); } }
.page-header__text { color: var(--c-text-muted); font-size: var(--fs-lg); margin-top: var(--sp-4); max-width: 42rem; }
.page-header__label { font-size: var(--fs-sm); color: var(--c-gold); text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: var(--sp-4); }

/* === Trust Bar === */
.trust-bar { padding: var(--sp-16) 0; background: var(--c-light); }
.trust-item { text-align: center; }
.trust-item__number { font-family: var(--f-heading); font-size: var(--fs-4xl); color: #b8964e; margin-bottom: var(--sp-2); font-weight: 700; }
.trust-item__text { font-size: var(--fs-sm); letter-spacing: 0.03em; }
@media (min-width: 768px) { .trust-item__number { font-size: var(--fs-5xl); } }

/* === Process Steps === */
.step { text-align: center; }
.step__number { width: 80px; height: 80px; border: 2px solid var(--c-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto var(--sp-6); font-family: var(--f-heading); font-size: var(--fs-3xl); color: var(--c-gold); }
.step__title { font-family: var(--f-heading); font-size: var(--fs-xl); margin-bottom: var(--sp-3); }
.step__desc { font-size: var(--fs-sm); opacity: 0.7; line-height: 1.6; }

/* === Testimonial === */
.testimonial { background: var(--c-white); padding: var(--sp-8); box-shadow: var(--shadow-md); }
.testimonial__header { display: flex; align-items: center; gap: var(--sp-4); margin-bottom: var(--sp-6); }
.testimonial__avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.testimonial__name { font-family: var(--f-heading); font-size: var(--fs-xl); }
.testimonial__location { font-size: var(--fs-sm); color: var(--c-text-muted); }
.testimonial__text { color: var(--c-text-muted); line-height: 1.7; margin-bottom: var(--sp-4); }
.testimonial__stars { color: var(--c-gold); font-size: var(--fs-lg); }

/* === Blog Card === */
.blog-card { display: block; }
.blog-card__img { width: 100%; height: 16rem; object-fit: cover; overflow: hidden; margin-bottom: var(--sp-4); }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-slow) var(--ease); }
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__date { font-size: var(--fs-xs); color: var(--c-gold); letter-spacing: 0.1em; margin-bottom: var(--sp-2); }
.blog-card__title { font-family: var(--f-heading); font-size: var(--fs-2xl); margin-bottom: var(--sp-3); transition: color var(--duration) var(--ease); }
.blog-card:hover .blog-card__title { color: var(--c-emerald); }
.blog-card__excerpt { font-size: var(--fs-sm); color: var(--c-text-muted); }

/* === CTA Block === */
.cta { text-align: center; }
.cta__title { font-size: var(--fs-4xl); margin-bottom: var(--sp-6); }
.cta__text { font-size: var(--fs-lg); opacity: 0.85; margin-bottom: var(--sp-10); max-width: 42rem; margin-left: auto; margin-right: auto; }
@media (min-width: 768px) { .cta__title { font-size: var(--fs-5xl); } }

/* === Footer === */
.footer { background: var(--c-graphite); color: #fff; padding: var(--sp-16) 0 var(--sp-8); }
.footer__brand { display: flex; align-items: center; justify-content: center; gap: var(--sp-4); margin-bottom: var(--sp-10); padding-bottom: var(--sp-10); border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer__brand img { height: 48px; width: auto; }
.footer__brand-name { font-family: var(--f-body); font-size: var(--fs-sm); color: #fff; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; }
.footer__brand-tagline { font-size: 0.65rem; color: var(--c-gold); letter-spacing: 0.2em; text-transform: uppercase; margin-top: 2px; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-12); margin-bottom: var(--sp-12); }
@media (min-width: 768px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: repeat(4, 1fr); } }
.footer__title { font-family: var(--f-heading); font-size: var(--fs-2xl); margin-bottom: var(--sp-6); }
.footer__links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__link { color: rgba(255,255,255,0.7); font-size: var(--fs-sm); transition: color var(--duration) var(--ease); }
.footer__link:hover { color: var(--c-gold); }
.footer__contact { color: rgba(255,255,255,0.7); font-size: var(--fs-sm); line-height: 1.8; }
.footer__contact a { color: #fff; }
.footer__contact a:hover { color: var(--c-gold); }
.footer__social { display: flex; gap: var(--sp-4); margin-top: var(--sp-6); }
.footer__social-link { color: rgba(255,255,255,0.7); transition: color var(--duration) var(--ease); }
.footer__social-link:hover { color: var(--c-gold); }
.footer__social-link svg { width: 24px; height: 24px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: var(--sp-8); text-align: center; }
.footer__copy { color: rgba(255,255,255,0.4); font-size: var(--fs-sm); }

/* === Animations === */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* === Before/After Slider === */
.ba-slider { position: relative; overflow: hidden; cursor: ew-resize; }
.ba-slider img { width: 100%; display: block; }
.ba-overlay { position: absolute; top: 0; left: 0; width: 50%; height: 100%; overflow: hidden; }
.ba-overlay img { position: absolute; top: 0; left: 0; width: auto; min-width: 100%; height: 100%; object-fit: cover; }
.ba-handle { position: absolute; top: 0; left: 50%; width: 3px; height: 100%; background: var(--c-gold); transform: translateX(-50%); cursor: ew-resize; z-index: 2; }
.ba-handle::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 40px; height: 40px; background: #fff; border-radius: 50%; box-shadow: var(--shadow-md); }

/* === Responsive helpers === */
.hide-mobile { display: none !important; }
@media (min-width: 768px) { .hide-mobile { display: block !important; } .hide-desktop { display: none !important; } }
@media (min-width: 1024px) { .hide-tablet { display: none !important; } }

/* === Swiper overrides === */
.swiper-pagination-bullet { background: var(--c-graphite); opacity: 0.3; }
.swiper-pagination-bullet-active { background: var(--c-gold); opacity: 1; }
.swiper-button-next, .swiper-button-prev { color: var(--c-gold); }

/* === Text Reveal (Telha Clarke style) === */
.text-reveal-wrap { overflow: hidden; }

/* === Parallax Image Container === */
.parallax-wrap { overflow: hidden; position: relative; }
.parallax-img { /* will-change managed by GSAP during animation */ }

/* === Enhanced Cards — 3D ready === */
.card, .pcard { backface-visibility: hidden; }

/* === Scroll Progress Bar === */
.scroll-progress { position: fixed; top: 0; left: 0; width: 100%; height: 3px; z-index: 999; pointer-events: none; }
.scroll-progress__bar { width: 100%; height: 100%; background: linear-gradient(90deg, var(--c-gold), var(--c-emerald)); transform: scaleX(0); transform-origin: left; }

/* === Back to Top === */
.back-to-top { position: fixed; bottom: 2rem; right: 2rem; width: 48px; height: 48px; background: var(--c-graphite); color: var(--c-gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 90; opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.4s var(--ease); cursor: pointer; box-shadow: var(--shadow-lg); }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--c-gold); color: var(--c-graphite); transform: translateY(-4px); }
.back-to-top svg { width: 20px; height: 20px; }

/* === WhatsApp Widget === */
.whatsapp-widget { position: fixed; bottom: 2rem; left: 2rem; z-index: 90; }
.whatsapp-widget__btn { width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); animation: whatsappPulse 2s ease 3; }
.whatsapp-widget__btn:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
.whatsapp-widget__btn svg { width: 28px; height: 28px; }
.whatsapp-widget__tooltip { position: absolute; bottom: calc(100% + 12px); left: 0; background: #fff; color: var(--c-text); padding: 10px 16px; border-radius: 8px; font-size: var(--fs-sm); box-shadow: var(--shadow-md); white-space: nowrap; opacity: 0; transform: translateY(8px); transition: all 0.3s var(--ease); pointer-events: none; }
.whatsapp-widget__tooltip::after { content: ''; position: absolute; top: 100%; left: 20px; border: 6px solid transparent; border-top-color: #fff; }
.whatsapp-widget:hover .whatsapp-widget__tooltip { opacity: 1; transform: translateY(0); }
@keyframes whatsappPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }

/* === Testimonials section === */
.testimonials-section .swiper { padding-bottom: var(--sp-12); }

/* ================================================================
   EDITORIAL / MAGAZINE LAYOUT COMPONENTS
   Inspired by Sam & Natt + Cutefold
   ================================================================ */

/* === Hero Editorial Enhancements === */
.hero__title--display { font-size: var(--fs-display); line-height: 0.92; letter-spacing: -0.03em; }

/* === Brand Marquee (бегущая лента) === */
.marquee { overflow: hidden; padding: var(--sp-5) 0; border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); background: var(--c-ivory); white-space: nowrap; }
.marquee__track { display: inline-flex; animation: marqueeScroll 25s linear infinite; will-change: transform; width: max-content; }
.marquee__item { display: inline-flex; align-items: center; gap: var(--sp-4); padding: 0 var(--sp-8); font-family: var(--f-heading); font-size: var(--fs-xl); letter-spacing: 0.15em; text-transform: uppercase; color: var(--c-text-muted); }
.marquee__dot { width: 6px; height: 6px; background: var(--c-gold); border-radius: 50%; flex-shrink: 0; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* === Section Dot Navigation === */
.section-dots { position: fixed; right: 1.5rem; top: 50%; transform: translateY(-50%); z-index: 40; display: none; flex-direction: column; align-items: center; gap: 0; }
@media (min-width: 1024px) { .section-dots { display: flex; } }
.section-dots__line { width: 1px; height: 20px; background: rgba(0,0,0,0.1); transition: background 0.5s var(--ease); }
.section-dots__item { position: relative; display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; cursor: pointer; }
.section-dots__dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(0,0,0,0.15); transition: all 0.4s var(--ease); border: 1.5px solid transparent; }
.section-dots__item:hover .section-dots__dot { background: rgba(0,0,0,0.35); transform: scale(1.4); }
.section-dots__item.active .section-dots__dot { background: var(--c-gold); border-color: var(--c-gold); transform: scale(1.3); box-shadow: 0 0 8px rgba(201,169,97,0.4); }
.section-dots__tooltip { position: absolute; right: 100%; margin-right: 12px; white-space: nowrap; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--c-text-muted); background: var(--c-white); padding: 4px 10px; border-radius: 3px; box-shadow: var(--shadow-sm); opacity: 0; transform: translateX(6px); transition: all 0.3s var(--ease); pointer-events: none; }
.section-dots__item:hover .section-dots__tooltip { opacity: 1; transform: translateX(0); }
/* Dark section adaptation */
.section-dots--dark .section-dots__dot { background: rgba(255,255,255,0.2); }
.section-dots--dark .section-dots__item:hover .section-dots__dot { background: rgba(255,255,255,0.5); }
.section-dots--dark .section-dots__line { background: rgba(255,255,255,0.1); }
.section-dots--dark .section-dots__tooltip { background: var(--c-graphite); color: rgba(255,255,255,0.8); }

/* === Product Showcase (Fullscreen, alternating) === */
.showcase { padding: var(--sp-16) 0; overflow: hidden; }
.showcase__item { display: grid; grid-template-columns: 1fr; gap: var(--sp-8); align-items: center; margin-bottom: var(--sp-20); }
.showcase__item:last-child { margin-bottom: 0; }
@media (min-width: 768px) {
  .showcase__item { grid-template-columns: 1.2fr 1fr; gap: var(--sp-12); min-height: 70vh; }
  .showcase__item--reverse { grid-template-columns: 1fr 1.2fr; }
  .showcase__item--reverse .showcase__img { order: 2; }
  .showcase__item--reverse .showcase__info { order: 1; }
}
@media (min-width: 1024px) { .showcase__item { grid-template-columns: 1.4fr 1fr; gap: var(--sp-16); } .showcase__item--reverse { grid-template-columns: 1fr 1.4fr; } }
.showcase__img { position: relative; overflow: hidden; aspect-ratio: 4/3; }
@media (min-width: 768px) { .showcase__img { aspect-ratio: auto; height: 100%; min-height: 450px; } }
.showcase__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.showcase__img:hover img { will-change: transform; }
.showcase__img:hover img { transform: scale(1.03); }
.showcase__img::after { content: ''; position: absolute; inset: 0; background: rgba(44,45,47,0); transition: background 0.5s var(--ease); pointer-events: none; z-index: 1; }
.showcase__img:hover::after { background: rgba(44,45,47,0.15); }
.showcase__tag { position: absolute; top: var(--sp-4); left: var(--sp-4); padding: 4px 14px; font-size: var(--fs-xs); color: #fff; background: var(--c-emerald); z-index: 1; letter-spacing: 0.1em; text-transform: uppercase; }
.showcase__info { padding: var(--sp-4) 0; }
.showcase__label { font-size: var(--fs-xs); color: var(--c-gold); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: var(--sp-4); }
.showcase__title { font-family: var(--f-heading); font-size: var(--fs-4xl); line-height: 1.15; margin-bottom: var(--sp-6); }
@media (min-width: 768px) { .showcase__title { font-size: var(--fs-5xl); } }
.showcase__desc { color: var(--c-text-muted); line-height: 1.7; margin-bottom: var(--sp-6); max-width: 28rem; }
.showcase__price { font-family: var(--f-heading); font-size: var(--fs-3xl); margin-bottom: var(--sp-8); }

/* === Editorial About === */
.editorial-about { display: grid; grid-template-columns: 1fr; gap: var(--sp-8); align-items: start; }
@media (min-width: 768px) { .editorial-about { grid-template-columns: 1.1fr 1fr; gap: var(--sp-16); } }
.editorial-about__img { position: relative; overflow: hidden; }
@media (min-width: 1024px) { .editorial-about__img { margin-left: -3rem; margin-top: -2rem; } }
.editorial-about__img img { width: 100%; height: 500px; object-fit: cover; }
@media (min-width: 768px) { .editorial-about__img img { height: 620px; } }
.editorial-about__text { max-width: 38ch; position: relative; padding-left: var(--sp-8); }
.editorial-about__text::before { content: ''; position: absolute; left: 0; top: 0; width: 2px; height: 100%; background: linear-gradient(to bottom, var(--c-gold), transparent); }
.editorial-about__text p { line-height: 1.85; color: var(--c-text-muted); margin-bottom: var(--sp-6); }

/* === Horizontal Gallery (Marquee of portfolio images) === */
.hgallery { overflow: hidden; padding: var(--sp-12) 0; background: var(--c-graphite); }
.hgallery__title-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--sp-10); padding: 0 var(--container-px); max-width: var(--container-max); margin-left: auto; margin-right: auto; }
.hgallery__track { display: flex; animation: hgalleryScroll 30s linear infinite; width: max-content; }
.hgallery__track:hover { animation-play-state: paused; }
.hgallery__item { flex-shrink: 0; width: min(320px, 80vw); aspect-ratio: 4/3; overflow: hidden; position: relative; margin: 0 calc(var(--sp-6) / 2); }
@media (min-width: 768px) { .hgallery__item { width: 420px; height: 300px; } }
.hgallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.hgallery__item:hover img { transform: scale(1.08); }
.hgallery__item-overlay { position: absolute; inset: 0; background: rgba(44,45,47,0); transition: background 0.4s var(--ease); display: flex; align-items: flex-end; padding: var(--sp-4); }
.hgallery__item:hover .hgallery__item-overlay { background: rgba(44,45,47,0.5); }
.hgallery__item-name { color: #fff; font-family: var(--f-heading); font-size: var(--fs-lg); opacity: 0; transform: translateY(10px); transition: all 0.4s var(--ease); }
.hgallery__item:hover .hgallery__item-name { opacity: 1; transform: translateY(0); }
@keyframes hgalleryScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* === Vertical Timeline (Process) === */
.vtimeline { position: relative; padding: var(--sp-12) 0; max-width: 900px; margin: 0 auto; }
.vtimeline__line { position: absolute; left: 50%; top: 0; width: 2px; height: 100%; background: var(--c-border-light); transform: translateX(-50%); }
.vtimeline__line-fill { position: absolute; top: 0; left: 0; width: 100%; height: 0; background: linear-gradient(to bottom, var(--c-gold), var(--c-emerald)); transition: height 0.1s linear; }
.vtimeline__step { position: relative; display: grid; grid-template-columns: 1fr 40px 1fr; gap: 0; align-items: start; margin-bottom: var(--sp-16); }
.vtimeline__step:last-child { margin-bottom: 0; }
.vtimeline__dot { width: 16px; height: 16px; border: 2px solid var(--c-border); background: var(--c-ivory); border-radius: 50%; position: relative; z-index: 2; margin: 0 auto; transition: all 0.5s var(--ease); }
.vtimeline__dot--active { border-color: var(--c-gold); background: var(--c-gold); box-shadow: 0 0 0 4px rgba(201,169,97,0.2); }
.vtimeline__content { padding: 0 var(--sp-6); }
.vtimeline__step:nth-child(odd) .vtimeline__content:first-child { text-align: right; }
.vtimeline__step:nth-child(even) .vtimeline__content:last-child { text-align: left; }
.vtimeline__step:nth-child(odd) .vtimeline__content:last-child { visibility: hidden; }
.vtimeline__step:nth-child(even) .vtimeline__content:first-child { visibility: hidden; }
.vtimeline__num { font-family: var(--f-heading); font-size: var(--fs-5xl); color: var(--c-gold); opacity: 0.5; line-height: 1; margin-bottom: var(--sp-2); }
.vtimeline__title { font-family: var(--f-heading); font-size: var(--fs-xl); margin-bottom: var(--sp-3); }
.vtimeline__desc { font-size: var(--fs-sm); color: var(--c-text-muted); line-height: 1.6; }
/* Mobile timeline — single column */
@media (max-width: 767px) {
  .vtimeline__line { left: 20px; }
  .vtimeline__step { grid-template-columns: 40px 1fr; }
  .vtimeline__step .vtimeline__content:first-child { display: none; }
  .vtimeline__step .vtimeline__content:last-child { visibility: visible !important; text-align: left !important; }
  .vtimeline__dot { margin: 0; }
}

/* === Statement CTA (Split layout) === */
.statement-cta { display: grid; grid-template-columns: 1fr; gap: var(--sp-8); align-items: center; }
@media (min-width: 768px) { .statement-cta { grid-template-columns: 1.2fr 1fr; gap: var(--sp-16); } }
.statement-cta__text { }
.statement-cta__heading { font-size: var(--fs-4xl); line-height: 1.1; margin-bottom: var(--sp-6); }
@media (min-width: 768px) { .statement-cta__heading { font-size: var(--fs-5xl); } }
.statement-cta__heading em { font-style: normal; background: linear-gradient(135deg, var(--c-gold), var(--c-sand)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.statement-cta__sub { color: rgba(255,255,255,0.7); font-size: var(--fs-lg); line-height: 1.7; margin-bottom: var(--sp-6); }
.statement-cta__form { background: rgba(255,255,255,0.06); backdrop-filter: blur(8px); padding: var(--sp-8); border: 1px solid rgba(255,255,255,0.1); }
.statement-cta__form .form-input { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: #fff; }
.statement-cta__form .form-input::placeholder { color: rgba(255,255,255,0.4); }
.statement-cta__form .form-input:focus { border-color: var(--c-gold); }
.statement-cta__form .form-label { color: rgba(255,255,255,0.7); }

/* === Quote Section (Single large quote) === */
.quote-section { padding: var(--sp-24) 0; }
.quote-section .swiper-slide { display: flex; align-items: center; justify-content: center; min-height: 320px; }
.quote-dots { display: flex; justify-content: center; gap: var(--sp-3); margin-top: var(--sp-10); }
.quote-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-border); cursor: pointer; transition: all 0.3s var(--ease); }
.quote-dot--active { background: var(--c-gold); transform: scale(1.3); }

/* === Featured Blog (Main + sidebar) === */
.featured-blog { display: grid; grid-template-columns: 1fr; gap: var(--sp-8); }
@media (min-width: 768px) { .featured-blog { grid-template-columns: 1.8fr 1fr; gap: var(--sp-8); } .featured-blog__main { max-height: 32rem; } }
.featured-blog__main { position: relative; overflow: hidden; }
.featured-blog__main-img { width: 100%; height: 24rem; object-fit: cover; transition: transform var(--duration-slow) var(--ease); }
@media (min-width: 768px) { .featured-blog__main-img { height: 100%; min-height: 28rem; } }
.featured-blog__main:hover .featured-blog__main-img { transform: scale(1.03); }
.featured-blog__main-body { position: absolute; bottom: 0; left: 0; right: 0; padding: var(--sp-8); background: linear-gradient(to top, rgba(26,26,26,0.85), transparent); color: #fff; }
.featured-blog__main-date { font-size: var(--fs-xs); color: var(--c-gold); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: var(--sp-2); }
.featured-blog__main-title { font-family: var(--f-heading); font-size: var(--fs-3xl); line-height: 1.2; margin-bottom: var(--sp-3); }
.featured-blog__main-excerpt { font-size: var(--fs-sm); opacity: 0.8; }
.featured-blog__sidebar { display: flex; flex-direction: column; gap: var(--sp-8); }
.featured-blog__side-item { display: grid; grid-template-columns: 120px 1fr; gap: var(--sp-4); align-items: start; }
@media (min-width: 768px) { .featured-blog__side-item { grid-template-columns: 1fr; } }
.featured-blog__side-img { width: 100%; height: 100px; object-fit: cover; overflow: hidden; }
.featured-blog__side-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.featured-blog__side-item:hover .featured-blog__side-img img { transform: scale(1.05); }
@media (min-width: 768px) { .featured-blog__side-img { height: 160px; } }
.featured-blog__side-date { font-size: var(--fs-xs); color: var(--c-gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: var(--sp-1); margin-top: var(--sp-2); }
.featured-blog__side-title { font-family: var(--f-heading); font-size: var(--fs-lg); line-height: 1.3; transition: color 0.3s var(--ease); }
.featured-blog__side-item:hover .featured-blog__side-title { color: var(--c-emerald); }

/* === Parallax Divider (fullscreen quote) === */
.parallax-divider { position: relative; height: 70vh; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; }
.parallax-divider__bg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden; }
.parallax-divider__bg img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.parallax-divider__overlay { position: absolute; inset: 0; background: rgba(44,45,47,0.55); }
.parallax-divider__content { position: relative; z-index: 2; padding: 0 var(--container-px); max-width: 48rem; }
.parallax-divider__text { font-family: var(--f-heading); font-size: var(--fs-3xl); font-style: italic; line-height: 1.4; margin-bottom: var(--sp-4); }
@media (min-width: 768px) { .parallax-divider__text { font-size: var(--fs-4xl); } .parallax-divider { height: 80vh; } }
.parallax-divider__author { font-size: var(--fs-sm); letter-spacing: 0.15em; text-transform: uppercase; color: var(--c-gold); }

/* ========================================
 * PINNED CATALOG
 * ======================================== */
.pincat-wrap { position: relative; } /* height set inline from PHP */
.pincat { position: sticky; top: 0; height: 100vh; overflow: hidden; display: flex; align-items: center; }
.pincat__bg { position: absolute; inset: 0; z-index: 0; }
.pincat__bg-slide { position: absolute; inset: 0; opacity: 0; will-change: opacity; }
.pincat__bg-slide--active { opacity: 1; }
.pincat__bg-slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); will-change: transform; }
.pincat__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 100%); z-index: 1; }
.pincat__content { position: relative; z-index: 2; width: 100%; height: 100%; contain: layout style; }
.pincat__panel { position: absolute; top: 0; left: 0; width: 36rem; max-width: calc(100% - 10vw); padding: 15vh 0 0 8vw; visibility: hidden; opacity: 0; }
.pincat__panel--active { visibility: visible; opacity: 1; }
.pincat__panel--active > * { will-change: transform; }
/* Panel child reveal animations are handled by GSAP in animations.js for smoother transitions */
.pincat__tag { display: inline-block; background: var(--c-emerald); color: #fff; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 4px 12px; border-radius: 2px; margin-bottom: var(--sp-4); }
.pincat__label { font-size: var(--fs-sm); color: var(--c-gold); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: var(--sp-2); }
.pincat__title { font-family: var(--f-heading); font-size: var(--fs-5xl); color: #fff; line-height: 1.1; margin-bottom: var(--sp-4); }
@media (min-width: 768px) { .pincat__title { font-size: var(--fs-6xl); } }
.pincat__desc { color: rgba(255,255,255,0.75); font-size: var(--fs-base); line-height: 1.7; margin-bottom: var(--sp-6); max-width: 28rem; }
.pincat__specs { display: flex; gap: var(--sp-8); margin-bottom: var(--sp-8); }
.pincat__specs div { display: flex; flex-direction: column; gap: 2px; }
.pincat__specs span { font-size: 0.65rem; color: rgba(255,255,255,0.5); letter-spacing: 0.15em; text-transform: uppercase; }
.pincat__specs strong { color: #fff; font-size: var(--fs-lg); font-weight: 500; }
.pincat__counter { position: absolute; right: 8vw; bottom: 8vh; z-index: 2; color: rgba(255,255,255,0.6); font-family: var(--f-body); font-size: var(--fs-sm); letter-spacing: 0.1em; }
.pincat__counter-current { color: #fff; font-size: var(--fs-3xl); font-weight: 300; }
.pincat__progress { position: absolute; right: 8vw; bottom: 5vh; z-index: 2; width: 120px; height: 2px; background: rgba(255,255,255,0.2); border-radius: 1px; }
.pincat__progress-fill { height: 100%; width: 25%; background: var(--c-gold); border-radius: 1px; transition: width 0.4s ease; }
.pincat__all-link { position: absolute; left: 8vw; bottom: 6vh; z-index: 2; color: var(--c-gold); font-size: var(--fs-sm); letter-spacing: 0.15em; text-transform: uppercase; border-bottom: 1px solid var(--c-gold); padding-bottom: 2px; transition: opacity 0.3s; }
.pincat__all-link:hover { opacity: 0.7; }

/* ========================================
 * PORTFOLIO MASONRY
 * ======================================== */
.portgrid { padding: var(--sp-16) 0; }
.portgrid__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
@media (min-width: 768px) { .portgrid__grid { grid-template-columns: repeat(4, 1fr); } }
.portgrid__item { position: relative; overflow: hidden; border-radius: 4px; aspect-ratio: 3/4; }
.portgrid__item:nth-child(1) { grid-row: span 2; }
.portgrid__item:nth-child(4) { grid-row: span 2; }
.portgrid__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(.4,0,.2,1); }
.portgrid__item:hover img { transform: scale(1.08); }
.portgrid__item-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%); display: flex; align-items: flex-end; padding: var(--sp-4); opacity: 0; transition: opacity 0.4s; }
.portgrid__item:hover .portgrid__item-overlay { opacity: 1; }
.portgrid__item-name { color: #fff; font-family: var(--f-heading); font-size: var(--fs-lg); }

/* ========================================
/* Legacy grid fallback (in case carousel JS fails) */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-6); }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

/* Reviews Carousel */
.reviews-carousel { position: relative; }
.reviews-swiper { overflow: hidden; }
.reviews-swiper .swiper-slide { height: auto; }
.review-card { background: #fff; border: 1px solid rgba(0,0,0,0.06); padding: var(--sp-8); position: relative; transition: box-shadow 0.3s; height: 100%; display: flex; flex-direction: column; }
.review-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.review-card__quote { font-family: var(--f-heading); font-size: var(--fs-5xl); color: var(--c-gold); position: absolute; top: var(--sp-4); right: var(--sp-6); line-height: 1; opacity: 0.3; }
.review-card__text { font-size: var(--fs-base); line-height: 1.8; color: var(--c-text); margin-bottom: var(--sp-6); font-style: italic; flex: 1; }
.review-card__stars { color: var(--c-gold); font-size: var(--fs-sm); letter-spacing: 2px; margin-bottom: var(--sp-4); }
.review-card__footer { display: flex; align-items: center; gap: var(--sp-3); border-top: 1px solid rgba(0,0,0,0.06); padding-top: var(--sp-4); margin-top: auto; }
.review-card__avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.review-card__name { font-weight: 600; font-size: var(--fs-sm); }
.review-card__loc { font-size: var(--fs-xs); color: var(--c-text-light); }

/* Reviews Carousel Navigation */
.reviews-carousel__nav { display: flex; align-items: center; justify-content: center; gap: var(--sp-4); margin-top: var(--sp-8); width: fit-content; margin-left: auto; margin-right: auto; }
.reviews-carousel__arrow { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: transparent; border: 1px solid rgba(0,0,0,0.15); color: var(--c-text); cursor: pointer; transition: border-color var(--duration) var(--ease), background var(--duration) var(--ease), color var(--duration) var(--ease); flex-shrink: 0; }
.reviews-carousel__arrow svg { width: 20px; height: 20px; }
.reviews-carousel__arrow:hover { border-color: var(--c-gold); background: rgba(201,169,97,0.12); color: var(--c-gold); }

/* Pagination dots */
.reviews-carousel__dots { display: flex; align-items: center; gap: 8px; }
.reviews-carousel__dot { width: 28px; height: 3px; background: rgba(0,0,0,0.15); border: none; border-radius: 2px; cursor: pointer; transition: width var(--duration) var(--ease), background var(--duration) var(--ease); }
.reviews-carousel__dot--active { width: 44px; background: var(--c-gold); }

@media (max-width: 767px) {
  /* Hide all carousel arrows on mobile — swipe works natively */
  .reviews-carousel__arrow,
  .portfolio-header__controls,
  .portfolio-arrow,
  .swiper-button-next,
  .swiper-button-prev { display: none !important; }
  .reviews-carousel__dot { width: 22px; }
  .reviews-carousel__dot--active { width: 34px; }
}

/* ========================================
 * PORTFOLIO DETAIL
 * ======================================== */
/* Legacy kept for backwards compat */
.portfolio-detail__hero { margin-bottom: var(--sp-10); overflow: hidden; }
.portfolio-detail__hero img { width: 100%; height: auto; max-height: 70vh; object-fit: cover; display: block; }

/* --- Portfolio Magazine Gallery --- */
.pf-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
@media (min-width: 768px) { .pf-gallery { grid-template-columns: repeat(3, 1fr); } }
.pf-gallery__item { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.pf-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); display: block; }
.pf-gallery__item:hover img { transform: scale(1.06); }
.pf-gallery__zoom { position: absolute; inset: 0; background: rgba(20,20,22,0.4); display: flex; align-items: center; justify-content: center; color: #fff; opacity: 0; transition: opacity 0.3s var(--ease); }
.pf-gallery__item:hover .pf-gallery__zoom { opacity: 1; }
/* All gallery items are uniform */

/* --- Portfolio Lightbox --- */
.pf-lightbox { position: fixed; inset: 0; z-index: 10000; background: rgba(10,10,12,0.95); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease); }
.pf-lightbox.active { opacity: 1; pointer-events: auto; }
.pf-lightbox__img { max-width: 90vw; max-height: 85vh; object-fit: contain; box-shadow: 0 20px 80px rgba(0,0,0,0.5); }
.pf-lightbox__close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: #fff; font-size: 2.5rem; cursor: pointer; line-height: 1; opacity: 0.7; transition: opacity 0.2s; z-index: 2; }
.pf-lightbox__close:hover { opacity: 1; }
.pf-lightbox__arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: none; color: #fff; width: 56px; height: 56px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0.6; transition: all 0.2s; }
.pf-lightbox__arrow:hover { opacity: 1; background: rgba(255,255,255,0.2); }
.pf-lightbox__arrow--prev { left: 24px; }
.pf-lightbox__arrow--next { right: 24px; }
.pf-lightbox__counter { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.5); font-size: var(--fs-sm); letter-spacing: 0.1em; }

/* --- Portfolio Prev/Next Nav --- */
.pf-nav { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-6); border-top: 1px solid var(--c-border); padding-top: var(--sp-8); flex-wrap: wrap; }
.pf-nav__link { display: flex; align-items: center; gap: var(--sp-3); text-decoration: none; color: var(--c-text); transition: color 0.3s; }
.pf-nav__link:hover { color: var(--c-gold); }
.pf-nav__link--next { text-align: right; }
.pf-nav__label { display: block; font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.15em; color: var(--c-text-muted); margin-bottom: 2px; }
.pf-nav__title { display: block; font-family: var(--f-heading); font-size: var(--fs-lg); }

/* --- Portfolio Parallax Hero --- */
.mag-hero--parallax { overflow: hidden; }
.mag-hero--parallax [data-parallax-bg] { will-change: transform; transform: scale(1.1); }
.mag-hero--parallax [data-parallax-fade] { will-change: opacity, transform; }

/* --- Parallax Divider --- */
.pf-parallax-divider { position: relative; height: 40vh; background-size: cover; background-position: center; background-attachment: fixed; display: flex; align-items: center; justify-content: center; }
@supports (-webkit-touch-callout: none) { .pf-parallax-divider { background-attachment: scroll; } }
.pf-parallax-divider__overlay { position: absolute; inset: 0; background: rgba(20,20,22,0.55); }
.pf-parallax-divider__content { position: relative; z-index: 2; text-align: center; }
.pf-parallax-divider__text { font-family: var(--f-heading); font-size: clamp(1.5rem, 4vw, 3rem); color: #fff; letter-spacing: -0.01em; opacity: 0.9; }

/* Placeholder for missing images */
.pcard__img--placeholder { width: 100%; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--c-light) 0%, var(--c-border-light) 100%); display: flex; align-items: center; justify-content: center; }

/* ========================================
 * MISSING CLASSES AUDIT FIX
 * ======================================== */

/* === Hero Swiper & Arrows === */
.hero-swiper { width: 100%; height: 100%; }
.hero__arrow--prev { /* inherits .hero__arrow */ }
.hero__arrow--next { /* inherits .hero__arrow */ }

/* === Blog Card sub-elements === */
.blog-card__image { display: block; position: relative; overflow: hidden; aspect-ratio: 16/10; }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { padding: var(--sp-6); }
.blog-card__category { font-size: var(--fs-xs); color: var(--c-gold); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: var(--sp-2); }

/* === Button Variants === */
.btn--outline-light { background: transparent; border: 1px solid rgba(255,255,255,0.4); color: #fff; }
.btn--outline-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); color: #fff; }

/* === Page Hero (404, error pages) === */
.page-hero { padding: var(--sp-24) 0; text-align: center; background: var(--c-graphite); color: #fff; }
.page-hero__title { font-family: var(--f-heading); font-size: var(--fs-display); color: #fff; margin-bottom: var(--sp-4); }
.page-hero__subtitle { font-size: var(--fs-xl); color: rgba(255,255,255,0.6); }

/* === Page Content (about, privacy pages) === */
.page-content { padding: var(--sp-16) 0; }
.page-content__body { max-width: 800px; margin: 0 auto; line-height: 1.85; color: var(--c-text); font-size: var(--fs-base); }
.page-content__body h2 { font-family: var(--f-heading); font-size: var(--fs-3xl); margin: var(--sp-10) 0 var(--sp-4); }
.page-content__body h3 { font-family: var(--f-heading); font-size: var(--fs-2xl); margin: var(--sp-8) 0 var(--sp-4); }
.page-content__body p { margin-bottom: var(--sp-4); }
.page-content__body ul, .page-content__body ol { margin: var(--sp-4) 0; padding-left: var(--sp-6); }
.page-content__body li { margin-bottom: var(--sp-2); }
.page-content__body strong { color: var(--c-text); font-weight: 600; }

/* === Filter Button (catalog/portfolio) === */
.filter-btn { padding: 8px 20px; font-size: var(--fs-sm); letter-spacing: 0.05em; cursor: pointer; transition: all var(--duration) var(--ease); }

/* === Portfolio Item (for JS filtering) === */
.portfolio-item { transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.portfolio-item.hidden { opacity: 0; transform: scale(0.95); pointer-events: none; position: absolute; }

/* === Portfolio Detail prev link === */
.portfolio-detail__nav-link--prev { text-align: left; }

/* === Pincat counter total === */
.pincat__counter-total { /* inherits from .pincat__counter */ }

/* === Screen Reader Only === */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* === Phone visibility helpers === */
.phone-visible { display: none; }
.phone-hidden { display: block; }
@media (max-width: 767px) {
  .phone-visible { display: block; }
  .phone-hidden { display: none; }
}

/* === Swiper wrapper (3rd-party, but ensure no conflicts) === */
.swiper-wrapper { /* Handled by Swiper.js CDN */ }

/* === Nav Dropdown === */
.nav-dropdown { position: relative; }
.nav-dropdown-content { position: absolute; top: 100%; left: 0; background: var(--c-white); min-width: 200px; box-shadow: var(--shadow-lg); border: 1px solid var(--c-border-light); padding: var(--sp-2) 0; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all 0.25s var(--ease); z-index: var(--z-dropdown, 50); }
.nav-dropdown:hover .nav-dropdown-content { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-content a { display: block; padding: var(--sp-2) var(--sp-4); font-size: var(--fs-sm); color: var(--c-text); transition: background var(--duration) var(--ease); }
.nav-dropdown-content a:hover { background: var(--c-light); color: var(--c-gold); }
