/* ===========================================
   Main Stage Media — Dark Luxury Landing Page
   =========================================== */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; -moz-text-size-adjust: 100%; text-size-adjust: 100%; color-scheme: dark; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior-y: none;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font: inherit; border: none; background: none; color: inherit; }

/* --- Focus Visible (global) --- */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
:focus:not(:focus-visible) { outline: none; }

/* --- Selection + Scrollbar --- */
::selection { background: var(--gold); color: #000; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-card); border-radius: 5px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dim); }
 scrollbar-color: var(--bg-card) var(--bg);

/* --- Scroll margin for anchor links (header offset) --- */
section[id] { scroll-margin-top: 72px; }

/* --- Variables --- */
:root, [data-theme="gold"] {
  --bg: #0A0A0F;
  --bg-alt: #0F0F1A;
  --bg-card: #14141F;
  --bg-footer: #06060A;
  --bg-hero: #05050a;
  --gold: #C9A84C;
  --gold-soft: #E4C76B;
  --gold-dim: #94852F;
  --text: #E8E8EC;
  --text-dim: #9999A8;
  --text-muted: #7A7A8B;
  --border: rgba(201,168,76,0.15);
  --whatsapp: #25D366;
  --error: #ff5252;
  --radius: 12px;
  --container: 1200px;
  --card-hover: rgba(10,10,15,0.85);
  --accent-a5: rgba(201,168,76,0.05);
  --accent-a12: rgba(201,168,76,0.12);
  --accent-a15: rgba(201,168,76,0.15);
  --accent-a25: rgba(201,168,76,0.25);
  --accent-a35: rgba(201,168,76,0.35);
  --theme-color: #C9A84C;
  --dot-tint: rgba(201,168,76,0.01);
  --mesh2: #F0D88A;
  --gr: linear-gradient(135deg, #C9A84C, #F0D88A);
  /* SFB-13: Motion Hierarchy (3-Tier) */
  --motion-primary: 400ms;
  --motion-secondary: 250ms;
  --motion-tertiary: 150ms;
  --ease-primary: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-secondary: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-tertiary: cubic-bezier(0.4, 0, 1, 1);
  /* MFV-17: Accent aliases for color propagation */
  --accent: var(--gold);
  --accent-soft: var(--gold-soft);
  --accent-dim: var(--gold-dim);
}

/* --- Utility --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }

/* --- Dot Pattern --- */
body::before {
  content: ''; position: fixed; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--dot-tint) 1px, transparent 0);
  background-size: 40px 40px; pointer-events: none; z-index: 0;
}

/* --- Cursor Glow (desktop) --- */
.cursor-glow {
  position: fixed; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-a5) 0%, transparent 70%);
  pointer-events: none; z-index: 0; transform: translate(-50%,-50%);
  transition: opacity 0.3s; opacity: 0;
}
.cursor-glow.visible { opacity: 1; }

/* --- Scroll Progress --- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: var(--gr); z-index: 9998; transition: width 0.1s linear;
}

/* --- Back to Top --- */
.btt {
  position: fixed; bottom: 88px; right: 24px; width: 40px; height: 40px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  z-index: 998; opacity: 0; transform: translateY(10px); transition: opacity 0.3s ease, transform 0.3s ease;
  color: var(--gold);
}
.btt.on { opacity: 1; transform: translateY(0); }
.btt:hover { border-color: var(--gold); transform: translateY(-2px); }
.btt svg { width: 18px; height: 18px; }

/* --- Hero Mesh Blobs --- */
.hero__mesh { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero__mesh-blob { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.12; }
.hero__mesh-blob:nth-child(1) { width: 50vw; height: 50vw; background: var(--gold); top: -15%; left: -10%; animation: mesh-move 18s ease-in-out infinite; }
.hero__mesh-blob:nth-child(2) { width: 40vw; height: 40vw; background: var(--mesh2); bottom: -20%; right: -10%; animation: mesh-move 22s ease-in-out infinite reverse; }
.hero__mesh-blob:nth-child(3) { width: 30vw; height: 30vw; background: var(--gold-soft); top: 40%; right: 20%; animation: mesh-move 15s ease-in-out infinite 3s; }
@keyframes mesh-move { 0% { transform: translate(0,0) scale(1); } 33% { transform: translate(40px,-30px) scale(1.06); } 66% { transform: translate(-30px,15px) scale(0.97); } 100% { transform: translate(0,0) scale(1); } }
.skip-link {
  position: absolute; top: -100px; left: 0; background: var(--gold); color: #000;
  padding: 8px 16px; z-index: 9999; border-radius: 0 0 8px 0; font-weight: 600;
}
.skip-link:focus { top: 0; }

/* --- Header --- */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(10,10,15,0.95); border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}
@supports (backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px)) {
  .header { background: rgba(10,10,15,0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif; font-weight: 700;
}
.logo__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #000; font-size: 14px; font-weight: 800; letter-spacing: 1px;
  font-family: 'Inter', sans-serif;
}
.logo__text { font-size: 1.15rem; letter-spacing: 0.5px; }

/* --- Nav --- */
.nav__menu {
  display: flex; align-items: center; gap: 28px;
}
.nav__link {
  font-size: 0.9rem; font-weight: 500; color: var(--text-dim);
  transition: color 0.2s ease; position: relative;
}
.nav__link:hover, .nav__link:focus { color: var(--text); }
.nav__link--cta {
  background: var(--gold); color: #000; padding: 10px 20px;
  border-radius: 8px; font-weight: 600; transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.nav__link--cta:hover { background: var(--gold-soft); transform: translateY(-1px); box-shadow: 0 4px 12px var(--accent-a25); }
.nav__toggle {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
}
.nav__toggle span {
  width: 24px; height: 2px; background: var(--text); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: 8px; font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.5px; transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease; cursor: pointer;
  border: 2px solid transparent;
}
.btn--gold { background: var(--gold); color: #000; }
.btn--gold:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 8px 24px var(--accent-a25); }
.btn--gold:active { transform: translateY(0); box-shadow: 0 2px 8px var(--accent-a15); }
.btn--outline { border-color: var(--border); color: var(--text); background: transparent; }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--outline:active { transform: scale(0.98); }
.btn--full { width: 100%; }

/* --- Hero --- */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; overflow: hidden;
  background: radial-gradient(ellipse at top, var(--bg-hero) 0%, var(--bg) 70%);
}
/* --- Hero Split Layout (VMP-01) --- */
.hero__split {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: center;
}
.hero__subtitle { margin-left: 0; max-width: 520px; }
.hero__actions { justify-content: flex-start; }
.hero__visual { display: flex; justify-content: flex-end; }
.hero__visual-card {
  background: rgba(20,20,31,0.9); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  max-width: 320px;
}
.hero__visual-line {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; font-size: 0.95rem; color: var(--text);
  border-bottom: 1px solid var(--border);
}
.hero__visual-line:last-of-type { border-bottom: none; }
.hero__visual-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent-a15); color: var(--gold); font-size: 0.75rem; flex-shrink: 0;
}
.hero__visual-cta {
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border);
  font-size: 0.82rem; color: var(--text-muted); letter-spacing: 0.5px;
}
@media (max-width: 1024px) {
  .hero__split { grid-template-columns: 1fr; gap: 40px; }
  .hero__content { text-align: center; max-width: 800px; }
  .hero__subtitle { margin: 0 auto; max-width: 600px; }
  .hero__actions { justify-content: center; }
  .hero__visual { justify-content: center; }
  .hero__visual-card { max-width: 400px; }
}
@media (max-width: 768px) {
  .hero__split { gap: 32px; }
  .hero__visual-card { padding: 24px; max-width: 100%; }
  .hero__visual-line { font-size: 0.88rem; padding: 8px 0; }
}
@media (max-width: 480px) {
  .hero__visual-card { padding: 20px; }
  .hero__visual-line { font-size: 0.82rem; }
  .hero__visual-cta { font-size: 0.75rem; }
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.25;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(circle at 20% 80%, var(--accent-a5) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, var(--accent-a5) 0%, transparent 40%),
    linear-gradient(to bottom, rgba(10,10,15,0.6) 0%, rgba(10,10,15,0.4) 50%, rgba(10,10,15,0.8) 100%);
}
.hero__content { position: relative; z-index: 2; text-align: left; max-width: 560px; }
.hero__eyebrow {
  font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; font-weight: 500;
}
.hero__title {
  font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 24px; letter-spacing: -1px;
}
.hero__subtitle {
  font-size: 1.15rem; color: var(--text-dim); max-width: 520px; margin: 0 0 36px;
  line-height: 1.7;
}
.hero__actions {
  display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap;
}
.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  width: 2px; height: 40px; overflow: hidden;
}
.hero__scroll-line {
  display: block; width: 2px; height: 100%;
  background: linear-gradient(var(--gold), var(--gold-dim), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: translateY(-40px); opacity: 0; }
  50% { transform: translateY(0); opacity: 1; }
}

/* --- Sections --- */
.section { padding: 100px 0; content-visibility: auto; contain-intrinsic-size: 1px 600px; }
.section__header { text-align: center; margin-bottom: 60px; }
.section__eyebrow {
  display: block; font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px; font-weight: 500;
}
.section__title {
  font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; letter-spacing: -0.5px;
}

/* --- About --- */
.about__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.about__lead { font-size: 1.2rem; color: var(--text); margin-bottom: 20px; line-height: 1.7; }
.about__text p { color: var(--text-dim); margin-bottom: 16px; line-height: 1.8; }
.about__media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.about__img { width: 100%; height: auto; display: block; transition: transform 0.5s ease; }
.about__media:hover .about__img { transform: scale(1.03); }

/* --- Services --- */
.services { background: var(--bg-alt); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px 32px; transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dim), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.service-card:hover { border-color: var(--gold-dim); transform: translateY(-4px); background: var(--card-hover); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon { width: 64px; height: 64px; color: var(--gold); margin-bottom: 24px; }
.service-card__icon svg { width: 100%; height: 100%; }
.service-card__title {
  font-family: 'Playfair Display', serif; font-size: 1.35rem; margin-bottom: 12px;
  font-weight: 600;
}
.service-card__desc { color: var(--text-dim); margin-bottom: 20px; line-height: 1.7; font-size: 0.95rem; }
.service-card__list { margin-bottom: 24px; }
.service-card__list li {
  padding: 6px 0 6px 24px; position: relative; color: var(--text-dim); font-size: 0.88rem;
}
.service-card__list li::before {
  content: ''; position: absolute; left: 0; top: 12px; width: 8px; height: 8px;
  border: 1.5px solid var(--gold); border-radius: 50%;
}
.service-card__link { color: var(--gold); font-size: 0.88rem; font-weight: 500; transition: color 0.2s; }
.service-card__link:hover { color: var(--gold-soft); }

/* --- Features --- */
.features__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature {
  text-align: center; padding: 32px 20px;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--bg-card); transition: border-color 0.3s ease, background 0.3s ease;
}
.feature:hover { border-color: var(--gold-dim); transform: translateY(-2px); background: var(--card-hover); }
.feature__icon { width: 48px; height: 48px; color: var(--gold); margin: 0 auto 16px; }
.feature__icon svg { width: 100%; height: 100%; }
.feature h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 8px; }
.feature p { color: var(--text-dim); font-size: 0.88rem; line-height: 1.6; }

/* --- Stats --- */
.stats {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-alt) 100%);
  padding: 80px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  position: relative;
}
.stats::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at center, var(--accent-a5) 0%, transparent 70%);
}
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; position: relative; z-index: 1; }
.stat { display: flex; flex-direction: column; align-items: center; }
.stat__label { font-family: 'Playfair Display', serif; font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 600; color: var(--gold); letter-spacing: 0.5px; text-transform: uppercase; }

/* --- Portfolio --- */
.portfolio { background: var(--bg-alt); }
.portfolio__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.portfolio__item {
  position: relative; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden;
  cursor: pointer; border: 1px solid var(--border);
}
.portfolio__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio__item:hover .portfolio__img { transform: scale(1.05); }
.portfolio__overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; background: linear-gradient(to top, rgba(10,10,15,0.9), transparent 60%);
  transition: background 0.3s ease;
}
.portfolio__overlay h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; margin-bottom: 6px; color: var(--gold); }
.portfolio__overlay p { color: var(--text-dim); font-size: 0.85rem; line-height: 1.5; }

/* --- Testimonials --- */
.testimonials__grid { display: grid; grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }

/* --- FAQ --- */
.faq__list { max-width: 800px; margin: 0 auto; }
.faq__item {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden; transition: border-color 0.3s ease;
}
.faq__item[open] { border-color: var(--gold-dim); }
.faq__item:hover { border-color: var(--gold-dim); background: var(--card-hover); }
.faq__question {
  padding: 20px 24px; font-family: 'Playfair Display', serif; font-size: 1.05rem;
  font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between;
  align-items: center; min-height: 44px; transition: color 0.2s ease;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after { content: '+'; color: var(--gold); font-size: 1.5rem; font-weight: 300; transition: transform 0.3s ease; }
.faq__item[open] .faq__question::after { transform: rotate(45deg); }
.faq__question:hover { color: var(--gold); }
.faq__answer { padding: 0 24px 20px; color: var(--text-dim); font-size: 0.92rem; line-height: 1.7; }
.testimonial {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; position: relative; transition: border-color 0.3s ease;
}
.testimonial:hover { border-color: var(--gold-dim); background: var(--card-hover); }
.testimonial::before {
  content: '\201C'; position: absolute; top: -10px; left: 20px;
  font-family: 'Playfair Display', serif; font-size: 4rem; color: var(--gold-dim);
  opacity: 0.4; line-height: 1;
}
.testimonial__text { color: var(--text); font-size: 0.95rem; line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial__author { border-top: 1px solid var(--border); padding-top: 16px; }
.testimonial__author strong { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.testimonial__author span { color: var(--text-muted); font-size: 0.8rem; }
.testimonials__note { text-align: center; color: var(--text-muted); font-size: 0.82rem; margin-top: 32px; }

/* --- Contact --- */
.contact { background: var(--bg-alt); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; }
.contact__item {
  display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start;
}
.contact__item-icon { width: 40px; height: 40px; color: var(--gold); flex-shrink: 0; }
.contact__item-icon svg { width: 100%; height: 100%; }
.contact__item h3 { font-size: 0.9rem; margin-bottom: 4px; font-weight: 600; }
.contact__item a, .contact__item p { color: var(--text-dim); font-size: 0.9rem; transition: color 0.2s; }
.contact__item a:hover { color: var(--gold); }

/* Form */
.contact__form {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px;
}
.form__group { margin-bottom: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form__label { display: block; font-size: 0.85rem; color: var(--text-dim); margin-bottom: 6px; font-weight: 500; }
.form__label--check { display: inline; font-size: 0.82rem; line-height: 1.5; }
.form__input, .form__select, .form__textarea {
  width: 100%; padding: 12px 16px; background: var(--bg);
  border: 1px solid var(--border); border-radius: 8px; color: var(--text);
  font-size: 0.9rem; font-family: inherit; transition: border-color 0.2s ease;
}
.form__input:focus, .form__select:focus, .form__textarea:focus {
  outline: none; border-color: var(--gold);
}
.form__textarea { resize: vertical; }
.form__select { cursor: pointer; }
.form__select option { background: var(--bg); color: var(--text); }
.form__checkbox { width: 18px; height: 18px; margin-right: 8px; accent-color: var(--gold); cursor: pointer; }
.form__group--check { display: flex; align-items: flex-start; gap: 0; }
.form__honeypot { position: absolute; left: -9999px; opacity: 0; }
.form__error { display: block; font-size: 0.8rem; color: var(--error); margin-top: 4px; min-height: 0; }
.form__success { color: var(--gold); font-weight: 500; margin-top: 16px; text-align: center; transition: opacity 0.3s ease; }

/* --- Footer --- */
.footer { background: var(--bg-footer); border-top: 1px solid var(--border); padding: 60px 0 24px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer__brand { max-width: 300px; }
.footer__brand .logo__mark { margin-bottom: 16px; }
.footer__tagline { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; margin-top: 12px; }
.footer__col h4 { font-size: 0.85rem; font-weight: 600; margin-bottom: 16px; color: var(--text); letter-spacing: 1px; text-transform: uppercase; }
.footer__col ul li { margin-bottom: 8px; }
.footer__col a { color: var(--text-dim); font-size: 0.88rem; transition: color 0.2s; }
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--border); padding-top: 24px;
}
.footer__bottom p { color: var(--text-muted); font-size: 0.82rem; }
.footer__legal { font-size: 0.82rem; }

/* --- WhatsApp --- */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px;
  background: var(--whatsapp); border-radius: 50%; display: flex; align-items: center; justify-content: center;
  z-index: 999; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; color: #fff; }

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.reveal[data-reveal="left"] { transform: translateX(-30px); }
.reveal[data-reveal="right"] { transform: translateX(30px); }
.reveal[data-reveal="up"] { transform: translateY(30px); }
.reveal.is-visible { opacity: 1; transform: translate(0, 0); }

/* --- Responsive: 1024px --- */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid .service-card:last-child { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
  .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
}

/* --- Responsive: 768px --- */
@media (max-width: 768px) {
  .section { padding: 70px 0; content-visibility: auto; contain-intrinsic-size: 1px 600px; }
  .hero__mesh-blob:nth-child(1) { width: 120vw; height: 120vw; }
  .hero__mesh-blob:nth-child(2) { width: 90vw; height: 90vw; }
  .hero__mesh-blob:nth-child(3) { width: 60vw; height: 60vw; }
  .btt { bottom: 88px; right: 16px; }
  .nav__menu {
    position: fixed; top: 72px; left: 0; width: 100%;
    background: var(--bg); flex-direction: column; gap: 0;
    padding: 16px 0; border-bottom: 1px solid var(--border);
    transform: translateY(-100%); opacity: 0; pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease; height: auto;
    max-height: calc(100vh - 72px); max-height: calc(100dvh - 72px);
    overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
  }
  .nav__menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__toggle { display: flex; }
  .nav__link {
    padding: 14px 24px; min-height: 44px;
    display: flex; align-items: center;
  }
  .nav__link--cta { margin: 12px 24px; }
  .hero__title { font-size: 2.5rem; }
  .hero__subtitle { font-size: 1rem; }
  .services__grid { grid-template-columns: 1fr; }
  .services__grid .service-card:last-child { max-width: 100%; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .portfolio__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer__bottom p { text-align: center; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .contact__form { padding: 24px; }
}

/* --- Responsive: 480px --- */
@media (max-width: 480px) {
  .btt { bottom: 76px; right: 16px; bottom: calc(76px + env(safe-area-inset-bottom)); }
  .container { padding: 0 16px; }
  .section { padding: 50px 0; }
  .hero { min-height: 100vh; min-height: 100dvh; }
  .hero__title { font-size: 2rem; }
  .hero__subtitle { font-size: 0.9rem; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; }
  .section__title { font-size: 1.5rem; }
  .section__eyebrow { font-size: 0.72rem; letter-spacing: 2px; }
  .features__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr; gap: 28px; }
  .service-card { padding: 28px 20px; }
  .contact__form { padding: 20px; }
  .contact__item { flex-direction: row; }
  .whatsapp-float { width: 48px; height: 48px; bottom: 16px; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom)); }
  .whatsapp-float svg { width: 24px; height: 24px; }
  .logo__text { font-size: 1rem; }
  .footer__bottom p { font-size: 0.75rem; }
  .btn { padding: 12px 24px; font-size: 0.88rem; }
  .faq__question { font-size: 0.95rem; padding: 16px 20px; }
  .faq__answer { font-size: 0.85rem; padding: 0 20px 16px; }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  .hero__scroll-line { animation: none; }
  .hero__mesh-blob { animation: none !important; }
  .cursor-glow { display: none; }
  * { scroll-behavior: auto; }
}

/* --- Print --- */
@media print {
  body { background: #fff; color: #000; }
  .hero__bg, .hero__mesh, .hero__overlay, .cursor-glow, .scroll-progress,
  .whatsapp-float, .btt, .nav__toggle, .hero__scroll { display: none !important; }
  .header { position: static; background: #fff; border-bottom: 1px solid #ccc; }
  .section { padding: 20px 0; content-visibility: visible; }
  .gold { color: #333; }
  .service-card, .feature, .testimonial, .faq__item, .contact__form {
    border: 1px solid #ccc; background: #fff; break-inside: avoid;
  }
  .portfolio__overlay { background: none; }
  .portfolio__overlay h3, .portfolio__overlay p { color: #000; }
  a { color: #000; text-decoration: underline; }
}
/* --- Trust Bar Proof Strip --- */
.trust-bar__proof {
  display: flex; justify-content: center; gap: 32px; flex-wrap: wrap;
  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border);
}
.trust-bar__proof-item {
  font-size: 0.82rem; color: var(--gold); font-weight: 500; letter-spacing: 0.5px;
}
@media (max-width: 480px) {
  .trust-bar__proof { gap: 16px; }
  .trust-bar__proof-item { font-size: 0.78rem; }
}

/* --- Scroll Depth Density Progression (VMP-17) --- */
.about { padding: 120px 0; }
.services { padding: 80px 0; }
.features { padding: 100px 0; }
.process { padding: 90px 0; }
.portfolio { padding: 70px 0; }
.showcase { padding: 80px 0; }
.video-showcase { padding: 60px 0; }
.gallery { padding: 50px 0; }
.gallery-full { padding: 40px 0; }
.testimonials { padding: 80px 0; }
.contact { padding: 100px 0; }
.faq { padding: 70px 0; }
.trust-bar {
  background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.trust-bar__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.trust-bar__item {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.trust-bar__item svg {
  width: 32px; height: 32px; color: var(--gold);
}
.trust-bar__item span {
  font-size: 0.85rem; color: var(--text-dim); font-weight: 500; letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 480px) {
  .trust-bar__grid { grid-template-columns: 1fr; gap: 24px; }
  .trust-bar { padding: 32px 0; }
}

/* --- Process --- */
.process { background: var(--bg-alt); }
.process__steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.process__step {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 24px; text-align: center; transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
  position: relative; overflow: hidden;
}
.process__step::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.process__step:hover { border-color: var(--gold-dim); transform: translateY(-4px); background: var(--card-hover); }
.process__step:hover::before { transform: scaleX(1); }
.process__number {
  font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 800;
  color: var(--gold); opacity: 0.3; margin-bottom: 16px; letter-spacing: -1px;
}
.process__title { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 12px; font-weight: 600; }
.process__desc { color: var(--text-dim); font-size: 0.85rem; line-height: 1.6; }

/* --- Process Responsive --- */
@media (max-width: 1024px) { .process__steps { grid-template-columns: repeat(3, 1fr); } .process__step:nth-child(4), .process__step:nth-child(5) { grid-column: span 1; } }
@media (max-width: 768px) { .process__steps { grid-template-columns: repeat(2, 1fr); } .process__step { padding: 24px 16px; } .process__number { font-size: 2rem; } }
@media (max-width: 480px) { .process__steps { grid-template-columns: 1fr; } }

/* SFB-15: Tactile Feedback Layer */
a:active, button:active, .btn:active { transform: scale(0.97); transition: transform 0.1s; }
.btn:hover { transform: translateY(-2px); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible { outline: 2px solid var(--gold, #D4AF37); outline-offset: 3px; }

/* SFB-13: Motion Hierarchy — 3-Tier Motion System */
/* Tier 1 (Primary): Hero elements, CTAs, section reveals — 400ms */
.hero__title, .hero__subtitle, .hero__actions, .hero__visual-card,
.section__header, .contact__form {
  transition: opacity var(--motion-primary) var(--ease-primary),
              transform var(--motion-primary) var(--ease-primary);
}
.btn--gold {
  transition: background var(--motion-secondary) var(--ease-secondary),
              transform var(--motion-secondary) var(--ease-secondary),
              box-shadow var(--motion-secondary) var(--ease-secondary);
}
/* Tier 2 (Secondary): Cards, features, service cards — 250ms */
.service-card, .feature, .process__step, .portfolio__item,
.showcase__item, .faq__item, .testimonial, .gallery-full__item,
.gallery__anim-item, .video-showcase__item {
  transition: border-color var(--motion-secondary) var(--ease-secondary),
              transform var(--motion-secondary) var(--ease-secondary),
              background var(--motion-secondary) var(--ease-secondary);
}
/* Tier 3 (Tertiary): Links, icons, small interactions — 150ms */
.nav__link, .service-card__link, .footer__col a, .contact__item a,
.portfolio__overlay, .showcase__label, .hero__visual-line {
  transition: color var(--motion-tertiary) var(--ease-tertiary),
              transform var(--motion-tertiary) var(--ease-tertiary),
              opacity var(--motion-tertiary) var(--ease-tertiary);
}

/* SFB-15: Tactile Feedback — 6 states (rest, hover, focus, active, disabled, visited) */
.btn { position: relative; }
.btn--gold::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: rgba(255,255,255,0); transition: background var(--motion-tertiary);
  pointer-events: none;
}
.btn--gold:hover::after { background: rgba(255,255,255,0.08); }
.btn--gold:active { transform: scale(0.96); }
.btn--gold:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn--outline:active { transform: scale(0.97); border-color: var(--gold); color: var(--gold); }
.nav__link--cta:active { transform: scale(0.96); }
.service-card__link:active { transform: translateX(2px); }
.faq__question:active { color: var(--gold-soft); }
.portfolio__item:active .portfolio__img,
.showcase__item:active .showcase__img { transform: scale(1.02); }
.gallery-full__item:active .gallery-full__img { transform: scale(1.04); }
input:active, select:active, textarea:active { border-color: var(--gold-dim); }
input:hover, select:hover, textarea:hover { border-color: var(--accent-a25); }

/* SFB-14: Stagger Reveal — enhanced rhythm */
.reveal[data-delay="0"] { transition-delay: 0ms; }
.reveal[data-delay="100"] { transition-delay: 100ms; }
.reveal[data-delay="200"] { transition-delay: 200ms; }
.reveal[data-delay="300"] { transition-delay: 300ms; }
.reveal[data-delay="400"] { transition-delay: 400ms; }
.reveal[data-delay="500"] { transition-delay: 500ms; }

/* MFV-03: Visual Consistency — CSS Variable Propagation */
/* All accent colors now propagate via --accent aliases defined in :root */
.section__eyebrow { color: var(--accent); }
.section__title .gold { color: var(--accent); }
.hero__eyebrow { color: var(--accent); }
.service-card__icon { color: var(--accent); }
.feature__icon { color: var(--accent); }
.trust-bar__item svg { color: var(--accent); }
.process__number { color: var(--accent); }
.faq__question::after { color: var(--accent); }
.testimonial::before { color: var(--accent-dim); }
.contact__item-icon { color: var(--accent); }
.btn--gold { background: var(--accent); }
.btn--gold:hover { background: var(--accent-soft); }
.nav__link--cta { background: var(--accent); }
.nav__link--cta:hover { background: var(--accent-soft); }
.logo__mark { background: linear-gradient(135deg, var(--accent), var(--accent-dim)); }
::selection { background: var(--accent); }
.scroll-progress { background: var(--gr); }
.scrollbar-thumb, ::-webkit-scrollbar-thumb { background: var(--bg-card); }
.scrollbar-thumb:hover, ::-webkit-scrollbar-thumb:hover { background: var(--accent-dim); }

/* MFV-02: Visual Hierarchy Convergence — 4+ dimensions aligned */
.section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--text);
}
.hero__title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text);
}
/* Type scale: 4.5rem → 2.8rem → 1.35rem → 1.15rem → 0.95rem → 0.85rem → 0.78rem */
h1, h2 { font-family: 'Playfair Display', serif; }
h3, h4 { font-family: 'Playfair Display', serif; font-weight: 600; }

/* MFV-09: Accessibility — enhanced */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Enhanced focus visible — higher contrast */
:focus-visible { outline-width: 3px; outline-offset: 3px; outline-style: solid; }
/* Touch target minimum 44px */
.nav__link, .btn, .nav__toggle, .btt, .whatsapp-float,
.faq__question, .form__checkbox, .service-card__link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* SFB-12: Color Function Architecture — gold as functional signal, not decorative */
.gold, .section__title .gold, .hero__title .gold { color: var(--accent); }
/* Gold = action, trust, emphasis. Never used for body text. */
.trust-bar__proof-item { color: var(--accent); }
.stat__label { color: var(--accent); }

/* MFV-16: Motion Hierarchy — keyframe definitions */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes goldShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-a25); }
  50% { box-shadow: 0 0 0 8px transparent; }
}

/* SFB-14: Stagger Reveal — service cards stagger */
.services__grid .service-card:nth-child(1) { transition-delay: 0ms; }
.services__grid .service-card:nth-child(2) { transition-delay: 120ms; }
.services__grid .service-card:nth-child(3) { transition-delay: 240ms; }

/* Features stagger */
.features__grid .feature:nth-child(1) { transition-delay: 0ms; }
.features__grid .feature:nth-child(2) { transition-delay: 100ms; }
.features__grid .feature:nth-child(3) { transition-delay: 200ms; }
.features__grid .feature:nth-child(4) { transition-delay: 300ms; }

/* Process steps stagger */
.process__steps .process__step:nth-child(1) { transition-delay: 0ms; }
.process__steps .process__step:nth-child(2) { transition-delay: 80ms; }
.process__steps .process__step:nth-child(3) { transition-delay: 160ms; }
.process__steps .process__step:nth-child(4) { transition-delay: 240ms; }
.process__steps .process__step:nth-child(5) { transition-delay: 320ms; }

/* Portfolio items stagger */
.portfolio__grid .portfolio__item:nth-child(1) { transition-delay: 0ms; }
.portfolio__grid .portfolio__item:nth-child(2) { transition-delay: 80ms; }
.portfolio__grid .portfolio__item:nth-child(3) { transition-delay: 160ms; }
.portfolio__grid .portfolio__item:nth-child(4) { transition-delay: 240ms; }
.portfolio__grid .portfolio__item:nth-child(5) { transition-delay: 320ms; }
.portfolio__grid .portfolio__item:nth-child(6) { transition-delay: 400ms; }

/* Showcase items stagger */
.showcase__grid .showcase__item:nth-child(1) { transition-delay: 0ms; }
.showcase__grid .showcase__item:nth-child(2) { transition-delay: 80ms; }
.showcase__grid .showcase__item:nth-child(3) { transition-delay: 160ms; }
.showcase__grid .showcase__item:nth-child(4) { transition-delay: 240ms; }
.showcase__grid .showcase__item:nth-child(5) { transition-delay: 320ms; }
.showcase__grid .showcase__item:nth-child(6) { transition-delay: 400ms; }

/* Video showcase stagger */
.video-showcase__grid .video-showcase__item:nth-child(1) { transition-delay: 0ms; }
.video-showcase__grid .video-showcase__item:nth-child(2) { transition-delay: 120ms; }
.video-showcase__grid .video-showcase__item:nth-child(3) { transition-delay: 240ms; }

/* Gallery items stagger */
.gallery__anim-grid .gallery__anim-item:nth-child(1) { transition-delay: 0ms; }
.gallery__anim-grid .gallery__anim-item:nth-child(2) { transition-delay: 120ms; }
.gallery-full__grid .gallery-full__item:nth-child(1) { transition-delay: 0ms; }
.gallery-full__grid .gallery-full__item:nth-child(2) { transition-delay: 40ms; }
.gallery-full__grid .gallery-full__item:nth-child(3) { transition-delay: 80ms; }
.gallery-full__grid .gallery-full__item:nth-child(4) { transition-delay: 120ms; }
.gallery-full__grid .gallery-full__item:nth-child(5) { transition-delay: 160ms; }
.gallery-full__grid .gallery-full__item:nth-child(6) { transition-delay: 200ms; }
.gallery-full__grid .gallery-full__item:nth-child(7) { transition-delay: 240ms; }
.gallery-full__grid .gallery-full__item:nth-child(8) { transition-delay: 280ms; }
.gallery-full__grid .gallery-full__item:nth-child(9) { transition-delay: 320ms; }
.gallery-full__grid .gallery-full__item:nth-child(10) { transition-delay: 360ms; }
.gallery-full__grid .gallery-full__item:nth-child(11) { transition-delay: 400ms; }
.gallery-full__grid .gallery-full__item:nth-child(12) { transition-delay: 440ms; }

/* FAQ items stagger */
.faq__list .faq__item:nth-child(1) { transition-delay: 0ms; }
.faq__list .faq__item:nth-child(2) { transition-delay: 60ms; }
.faq__list .faq__item:nth-child(3) { transition-delay: 120ms; }
.faq__list .faq__item:nth-child(4) { transition-delay: 180ms; }
.faq__list .faq__item:nth-child(5) { transition-delay: 240ms; }
.faq__list .faq__item:nth-child(6) { transition-delay: 300ms; }

/* SFB-08: Convergent CTA — gold pulse on primary CTA */
.btn--gold {
  box-shadow: 0 4px 16px var(--accent-a15);
}
.btn--gold:hover {
  box-shadow: 0 8px 28px var(--accent-a35);
}

/* SPMD-13: Visual Anchor Dominance — hero visual card enhanced */
.hero__visual-card {
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px var(--accent-a15);
  transition: transform var(--motion-primary) var(--ease-primary),
              box-shadow var(--motion-secondary) var(--ease-secondary);
}
.hero__visual-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 80px rgba(0,0,0,0.5), 0 0 0 1px var(--accent-a25);
}

/* MFV-14: Visual Weight Distribution — 60/30/10 */
/* 60% body text (text-dim), 30% headings (text), 10% accent (gold) */
.about__lead { color: var(--text); font-weight: 500; }
.about__text p { color: var(--text-dim); }
.service-card__title { color: var(--text); }
.service-card__desc { color: var(--text-dim); }
.feature h3 { color: var(--text); }
.feature p { color: var(--text-dim); }
.process__title { color: var(--text); }
.process__desc { color: var(--text-dim); }

/* MFV-20: Visual Whitespace Strategy */
.section { padding: 100px 0; }
.about { padding: 120px 0; }
.contact { padding: 100px 0; }
.section__header { margin-bottom: 60px; }

/* SFB-10: Restraint as Luxury Signal — no glow, no excessive shadows */
/* Gold used as precise accent, not blanket overlay */
.hero__mesh-blob { opacity: 0.10; filter: blur(140px); }

/* --- Pricing (SFB-19: Pricing Transparency) --- */
.pricing { background: var(--bg-alt); }
.pricing__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  max-width: 1000px; margin: 0 auto;
}
.pricing__card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 40px 32px; position: relative;
  transition: border-color var(--motion-secondary) var(--ease-secondary),
              transform var(--motion-secondary) var(--ease-secondary),
              background var(--motion-secondary) var(--ease-secondary);
}
.pricing__card:hover { border-color: var(--gold-dim); transform: translateY(-4px); background: var(--card-hover); }
.pricing__card--featured {
  border-color: var(--gold-dim);
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--accent-a5) 100%);
}
.pricing__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #000; font-size: 0.72rem; font-weight: 700;
  padding: 4px 16px; border-radius: 20px; letter-spacing: 0.5px; white-space: nowrap;
}
.pricing__name {
  font-family: 'Playfair Display', serif; font-size: 1.35rem; margin-bottom: 8px;
  font-weight: 600; color: var(--text);
}
.pricing__desc {
  color: var(--text-dim); font-size: 0.88rem; margin-bottom: 20px; line-height: 1.6;
}
.pricing__from {
  font-size: 0.85rem; color: var(--text-dim); margin-bottom: 24px;
}
.pricing__amount {
  font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700;
  color: var(--accent); display: block; margin-top: 4px;
}
.pricing__features {
  margin-bottom: 28px;
}
.pricing__features li {
  padding: 8px 0 8px 24px; position: relative; color: var(--text-dim); font-size: 0.88rem;
}
.pricing__features li::before {
  content: ''; position: absolute; left: 0; top: 14px; width: 8px; height: 8px;
  border: 1.5px solid var(--accent); border-radius: 50%;
}
.pricing__note {
  text-align: center; color: var(--text-muted); font-size: 0.82rem;
  margin-top: 40px; line-height: 1.6;
}
@media (max-width: 768px) {
  .pricing__grid { grid-template-columns: 1fr; }
  .pricing__card { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .pricing__card { padding: 28px 20px; }
  .pricing__amount { font-size: 1.6rem; }
}

/* --- Portfolio Disclaimer --- */
.portfolio__disclaimer {
  text-align: center; color: var(--text-muted); font-size: 0.82rem;
  margin-top: 32px; line-height: 1.6;
}

/* --- Industry Showcase --- */
.showcase { background: var(--bg); }
.showcase__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.showcase__item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); aspect-ratio: 4/3;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.showcase__item:hover { border-color: var(--gold-dim); transform: translateY(-4px); }
.showcase__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.showcase__item:hover .showcase__img { transform: scale(1.05); }
.showcase__label {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 24px;
  background: linear-gradient(to top, rgba(10,10,15,0.92), rgba(10,10,15,0.3) 50%, transparent 80%);
}
.showcase__label h3 {
  font-family: 'Playfair Display', serif; font-size: 1.2rem;
  margin-bottom: 6px; color: var(--gold);
}
.showcase__label p {
  color: var(--text-dim); font-size: 0.85rem; line-height: 1.5;
}

/* --- Video Showcase --- */
.video-showcase { background: var(--bg-alt); }
.video-showcase__wrapper {
  max-width: 900px; margin: 0 auto; text-align: center;
}
.video-showcase__player {
  width: 100%; max-height: 500px; border-radius: var(--radius);
  border: 1px solid var(--border); object-fit: cover; background: var(--bg);
}
.video-showcase__caption {
  color: var(--text-muted); font-size: 0.85rem; margin-top: 16px; line-height: 1.6;
}

/* --- Video Showcase Grid (3 videos) --- */
.video-showcase__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.video-showcase__item {
  text-align: center;
}
.video-showcase__player {
  width: 100%; max-height: 320px; border-radius: var(--radius);
  border: 1px solid var(--border); object-fit: cover; background: var(--bg);
}
.video-showcase__caption {
  color: var(--text-muted); font-size: 0.82rem; margin-top: 12px; line-height: 1.5;
}
.video-showcase__note {
  text-align: center; color: var(--text-muted); font-size: 0.82rem;
  margin-top: 32px; line-height: 1.6;
}

/* --- Animated Gallery (GIFs as WebP) --- */
.gallery { background: var(--bg-alt); }
.gallery__anim-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
  max-width: 1000px; margin: 0 auto;
}
.gallery__anim-item {
  text-align: center;
}
.gallery__anim-img {
  width: 100%; border-radius: var(--radius); border: 1px solid var(--border);
  transition: transform 0.4s ease, border-color 0.3s ease;
}
.gallery__anim-item:hover .gallery__anim-img {
  transform: translateY(-4px); border-color: var(--gold-dim);
}
.gallery__anim-caption {
  color: var(--text-muted); font-size: 0.82rem; margin-top: 12px; line-height: 1.5;
}

/* --- Full Gallery (masonry grid) --- */
.gallery-full { background: var(--bg); }
.gallery-full__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.gallery-full__item {
  aspect-ratio: 1/1; border-radius: 8px; overflow: hidden;
  border: 1px solid var(--border); transition: border-color 0.3s ease, transform 0.3s ease;
}
.gallery-full__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-full__item:hover { border-color: var(--gold-dim); transform: translateY(-2px); }
.gallery-full__item:hover .gallery-full__img { transform: scale(1.08); }

/* --- Showcase Responsive --- */
@media (max-width: 1024px) {
  .video-showcase__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-full__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .showcase__grid { grid-template-columns: 1fr; }
  .video-showcase__grid { grid-template-columns: 1fr; }
  .gallery__anim-grid { grid-template-columns: 1fr; }
  .gallery-full__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .showcase__label h3 { font-size: 1.05rem; }
  .showcase__label p { font-size: 0.8rem; }
  .video-showcase__player { max-height: 240px; }
  .gallery-full__grid { grid-template-columns: 1fr 1fr; gap: 8px; }
}
