/* ═══════════════════════════════════════════════════
   SAMO PRODUCCIONES — Ultra Premium CSS
   ═══════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────── */
:root {
  --ink:       #0A0B0C;
  --ink2:      #111315;
  --ink3:      #181A1C;
  --ink4:      #1E2123;
  --copper:    #B8735E;
  --copper-lt: #D09A84;
  --copper-xl: #EDD5C4;
  --ivory:     #F2EEE6;
  --ivory2:    #C8C2B8;
  --slate:     #4A5055;
  --muted:     #6B7177;
  --line:      rgba(184,115,94,.15);
  --line2:     rgba(255,255,255,.055);
  --line3:     rgba(255,255,255,.03);

  --ff-serif:  'Cormorant Garamond', Georgia, serif;
  --ff-cond:   'Barlow Condensed', sans-serif;
  --ff-body:   'Barlow', sans-serif;

  --ease-out:  cubic-bezier(.16,1,.3,1);
  --ease-io:   cubic-bezier(.4,0,.2,1);
}

/* ─── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: clamp(17px, 1.1vw, 26px); }

body {
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--ff-body);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: rgba(184,115,94,.3); color: var(--ivory); }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--slate); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--copper); }

img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }
a { text-decoration: none; color: inherit; }

/* ─── NOISE OVERLAY ──────────────────────────────── */
#noise {
  position: fixed; inset: 0; z-index: 9998;
  pointer-events: none;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── AMBIENT GLOWS ──────────────────────────────── */
#glows { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.glow { position: absolute; border-radius: 50%; }
.glow-a { top:-18%; right:-10%; width:700px; height:700px; background:radial-gradient(circle,rgba(184,115,94,.13) 0%,transparent 70%); }
.glow-b { bottom:-22%; left:-18%; width:900px; height:900px; background:radial-gradient(circle,rgba(184,115,94,.07) 0%,transparent 70%); }
.glow-c { top:40%; left:35%; width:1100px; height:500px; background:radial-gradient(ellipse,rgba(184,115,94,.04) 0%,transparent 65%); }
@media (prefers-reduced-motion: no-preference) {
  .glow-a { animation: driftA 38s ease-in-out infinite; }
  .glow-b { animation: driftB 44s ease-in-out infinite; }
  .glow-c { animation: driftC 34s ease-in-out infinite; }
}
@keyframes driftA {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-5%,4%) scale(1.08); }
}
@keyframes driftB {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(6%,-3%) scale(1.06); }
}
@keyframes driftC {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity:1; }
  50%     { transform: translate(-44%,-54%) scale(1.12); opacity:.7; }
}

/* Cursor-follow copper light (desktop only) */
#cursor-glow {
  position: fixed; top: 0; left: 0;
  width: 480px; height: 480px;
  margin: -240px 0 0 -240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,115,94,.10) 0%, transparent 65%);
  pointer-events: none; z-index: 1;
  opacity: 0; transition: opacity .6s ease;
  will-change: transform;
}

/* ─── NAV ────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px; height: 70px;
  background: rgba(10,11,12,.78);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border-bottom: 1px solid var(--line2);
  transition: background .4s, height .3s;
}
#nav.scrolled { background: rgba(10,11,12,.96); height: 62px; }
#nav.scrolled .nav-logo { height: 36px; }

.nav-logo { height: 44px; transition: height .3s; }

.nav-links {
  display: flex; gap: 36px; list-style: none;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  font-family: var(--ff-cond);
  font-size: 13px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); transition: color .25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--copper-lt); }

.nav-right { display: flex; align-items: center; gap: 20px; }

.lang-btn {
  font-family: var(--ff-cond);
  font-size: 13px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); background: transparent; border: none;
  padding: 6px 10px; transition: color .25s;
}
.lang-btn:hover { color: var(--ivory); }

.nav-cta {
  font-family: var(--ff-cond);
  font-size: 13px; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--copper-lt); border: 1px solid rgba(184,115,94,.45);
  padding: 10px 26px; border-radius: 1px;
  transition: all .3s;
}
.nav-cta:hover { background: var(--copper); color: var(--ivory); border-color: var(--copper); }

/* Mobile hamburger */
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: transparent; border: none; padding: 4px;
}
.nav-burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--muted); transition: all .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none; position: fixed;
  top: 70px; left: 0; right: 0; bottom: 0;
  background: rgba(10,11,12,.97);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 40px; z-index: 199;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--ff-serif);
  font-size: 2.2rem; font-weight: 300;
  color: var(--ivory2); transition: color .25s;
}
.nav-mobile a:hover { color: var(--copper-lt); }
.nav-mobile .nav-cta-mob {
  font-family: var(--ff-cond);
  font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--copper-lt);
  border: 1px solid rgba(184,115,94,.45);
  padding: 12px 32px; margin-top: 16px;
}

/* ─── SECTION COMMONS ────────────────────────────── */
section { position: relative; z-index: 1; }

.section-inner { max-width: 1200px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }

.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-cond);
  font-size: 17px; font-weight: 700;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 18px;
}
.section-tag::before { content:''; width:28px; height:1px; background:var(--copper); }

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.6rem, 4.6vw, 4rem);
  font-weight: 400; line-height: 1.08;
  color: var(--ivory);
}
.section-title em { font-style: italic; color: var(--copper-lt); }

.section-sub {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  font-weight: 300; line-height: 1.8;
  color: rgba(242,238,230,.55);
}
.section-sub strong { color: var(--copper-lt); font-weight: 400; }

.section-hr { border: none; border-top: 1px solid var(--line2); }

/* ─── REVEAL ANIMATIONS ──────────────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:none; }
}
@keyframes fadeIn {
  from { opacity:0; } to { opacity:1; }
}
@keyframes shimmer {
  from { background-position:0% center; }
  to   { background-position:200% center; }
}
@keyframes pulseGlow {
  0%,100% { box-shadow:0 0 12px 3px rgba(184,115,94,.7); }
  50%      { box-shadow:0 0 6px 1px rgba(184,115,94,.35); }
}
@keyframes scrollDot {
  0%   { top:-100%; opacity:0; }
  15%  { opacity:1; }
  85%  { opacity:1; }
  100% { top:100%; opacity:0; }
}
@keyframes spin { to { transform:rotate(360deg); } }

.reveal {
  opacity:0; transform:translateY(28px); filter:blur(3px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out), filter .9s var(--ease-out);
}
.reveal.visible { opacity:1; transform:none; filter:blur(0); }
.reveal.d1 { transition-delay:.08s; }
.reveal.d2 { transition-delay:.16s; }
.reveal.d3 { transition-delay:.24s; }
.reveal.d4 { transition-delay:.32s; }
.reveal.d5 { transition-delay:.4s; }
.reveal.d6 { transition-delay:.48s; }

/* ─── SECTION-TITLE UNDERLINE THAT DRAWS ITSELF ──── */
.section-title em {
  position: relative; display: inline-block;
}
.section-title em::after {
  content: ''; position: absolute;
  left: 0; bottom: -.08em; height: 2px; width: 100%;
  background: linear-gradient(90deg, var(--copper), var(--copper-lt));
  transform: scaleX(0); transform-origin: left center;
  transition: transform 1s var(--ease-out) .35s;
  border-radius: 2px;
}
.reveal.visible .section-title em::after,
.section-title.visible em::after,
.reveal.visible.section-title em::after { transform: scaleX(1); }

/* ─── HERO ───────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 130px 24px 80px;
  overflow: hidden; position: relative; z-index: 1;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 52px;
  animation: fadeUp .9s var(--ease-out) .15s both;
}
.hero-eyebrow-line { width:42px; height:1px; background:linear-gradient(90deg,transparent,var(--copper)); }
.hero-eyebrow-line.r { background:linear-gradient(270deg,transparent,var(--copper)); }
.hero-eyebrow span {
  font-family: var(--ff-cond);
  font-size: 17px; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase; color: var(--copper);
}
.hero-dot {
  width:5px; height:5px; border-radius:50%;
  background:var(--copper); animation: pulseGlow 2.2s ease-in-out infinite;
}

.hero-logo-wrap {
  width: min(440px, 78vw); margin-bottom: 16px;
  animation: fadeUp 1.4s var(--ease-out) .35s both;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-logo-wrap img { animation: logoBreath 7.5s ease-in-out 1.8s infinite; transform-origin: center; }
}
@keyframes logoBreath {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.018); }
}

.hero-rule {
  width: 0; height: 1px; margin: 0 auto 48px;
  background: linear-gradient(90deg,transparent,var(--copper),transparent);
  animation: expandW 1.1s var(--ease-out) 1.1s forwards;
}
@keyframes expandW { to { width: min(480px, 72vw); } }

.hero-h1 {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  font-weight: 300; line-height: 1.1;
  text-align: center; color: var(--ivory);
  max-width: 900px; margin-bottom: 24px;
}
.hero-h1 > span,
.hero-h1 > em {
  display: inline-block;
  opacity: 0; transform: translateY(22px);
  animation: heroLine .9s var(--ease-out) both;
}
.hero-h1 > span { animation-delay: .7s; }
.hero-h1 > em  { animation-delay: 1s; }
@keyframes heroLine {
  from { opacity:0; transform:translateY(22px); }
  to   { opacity:1; transform:translateY(0); }
}
.hero-h1 em {
  font-style: italic;
  background: linear-gradient(90deg,var(--copper-xl),var(--copper),var(--copper-lt),var(--copper-xl));
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-h1 > em { animation: heroLine .9s var(--ease-out) 1s both, shimmer 5s linear 2.2s infinite; }
}

.hero-sub {
  font-size: clamp(16px, 1.1vw, 19px);
  font-weight: 300; line-height: 1.8;
  color: rgba(242,238,230,.58);
  max-width: 640px; text-align: center;
  margin-bottom: 52px;
  animation: fadeUp .9s var(--ease-out) .9s both;
}

.hero-scroll {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  animation: fadeUp .9s var(--ease-out) 1.2s both;
  transition: opacity .5s ease;
}
.hero-scroll.hidden { opacity: 0; pointer-events: none; }
@media (prefers-reduced-motion: no-preference) {
  .hero-scroll { animation: fadeUp .9s var(--ease-out) 1.2s both, scrollFloat 3.6s ease-in-out 2.2s infinite; }
}
@keyframes scrollFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(7px); }
}
.hero-scroll span {
  font-family: var(--ff-cond);
  font-size: 9px; letter-spacing: .28em; text-transform: uppercase; color: var(--muted);
}
.scroll-track {
  width: 1px; height: 60px;
  background: linear-gradient(180deg,var(--copper) 0%,transparent 100%);
  position: relative; overflow: hidden;
}
.scroll-track::after {
  content: ''; position: absolute; left: 0; width: 1px; height: 100%;
  background: linear-gradient(180deg,transparent,var(--ivory));
  animation: scrollDot 2.2s ease-in-out infinite;
}

/* ─── SERVICES ───────────────────────────────────── */
#services {
  padding: 120px 56px;
  background: var(--ink2);
  border-top: 1px solid var(--line2);
}
.services-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end; margin-bottom: 72px;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1px;
  background: var(--line2);
  border: 1px solid var(--line2);
}
.service-card {
  background: var(--ink2); padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: background .4s, transform .4s var(--ease-out);
}
.service-card::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,transparent,var(--copper),transparent);
  opacity: 0; transition: opacity .4s;
}
.service-card:hover { background: var(--ink3); }
.service-card:hover::after { opacity: 1; }

.service-num {
  font-family: var(--ff-cond); font-size: 10px; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 24px; display: block;
}
.service-title {
  font-family: var(--ff-serif); font-size: 1.55rem;
  font-weight: 400; color: var(--ivory);
  margin-bottom: 14px; line-height: 1.2;
  transition: color .3s;
}
.service-card:hover .service-title { color: var(--copper-lt); }
.service-body {
  font-size: .95rem; font-weight: 300;
  line-height: 1.78; color: rgba(242,238,230,.52);
}

/* ─── PROCESS ────────────────────────────────────── */
#process {
  padding: 120px 56px;
  background: var(--ink);
  border-top: 1px solid var(--line2);
}
.process-header {
  text-align: center; max-width: 680px;
  margin: 0 auto 80px;
}
.process-header .section-tag { justify-content: center; }
.process-header .section-tag::before { display:none; }
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 28px; left: calc(12.5% + 28px); right: calc(12.5% + 28px);
  height: 1px;
  background: linear-gradient(90deg,var(--copper),rgba(184,115,94,.2));
}
.process-step { padding: 0 32px; text-align: center; }
.step-circle {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--ink2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--ff-cond); font-size: 22px; font-weight: 700;
  letter-spacing: .16em; color: var(--copper);
  position: relative; z-index: 1;
  transition: border-color .4s, background .4s;
}
.process-step:hover .step-circle {
  border-color: var(--copper);
  background: rgba(184,115,94,.08);
}
.step-title {
  font-family: var(--ff-serif); font-size: 1.4rem;
  font-weight: 400; color: var(--ivory);
  margin-bottom: 12px; line-height: 1.2;
}
.step-body {
  font-size: .93rem; font-weight: 300;
  line-height: 1.78; color: rgba(242,238,230,.52);
}

/* ─── PORTFOLIO ──────────────────────────────────── */
#portfolio {
  padding: 120px 56px;
  background: var(--ink2);
  border-top: 1px solid var(--line2);
}
.portfolio-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end; margin-bottom: 64px;
}
.portfolio-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.portfolio-card {
  background: var(--ink3);
  border: 1px solid var(--line2);
  overflow: hidden; position: relative;
  transition: border-color .4s, transform .4s var(--ease-out);
  border-radius: 2px;
}
.portfolio-card:hover { border-color: rgba(184,115,94,.3); transform: translateY(-4px); }

.portfolio-cover {
  aspect-ratio: 1; position: relative; overflow: hidden;
  background: var(--ink4);
}
.portfolio-cover-art {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.portfolio-card:hover .portfolio-cover-art { transform: scale(1.04); }

.portfolio-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,11,12,.9) 0%, transparent 60%);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .4s;
}
.portfolio-card:hover .portfolio-cover-overlay { opacity: 1; }

.play-btn {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(184,115,94,.9); border: none;
  display: flex; align-items: center; justify-content: center;
  color: white; transition: transform .3s, background .3s;
  transform: scale(.85);
}
.portfolio-card:hover .play-btn { transform: scale(1); }
.play-btn:hover { background: var(--copper-lt); }
.play-btn.playing { background: var(--copper); }
.play-btn svg { width: 18px; height: 18px; }

.portfolio-info { padding: 20px 22px 22px; }
.portfolio-genre {
  font-family: var(--ff-cond); font-size: 9px; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 6px;
}
.portfolio-artist {
  font-family: var(--ff-serif); font-size: 1.25rem;
  font-weight: 400; color: var(--ivory); margin-bottom: 2px;
}
.portfolio-track {
  font-size: .8rem; font-weight: 300; color: var(--muted);
}

/* Audio progress bar */
.audio-bar {
  margin-top: 14px; height: 2px;
  background: rgba(255,255,255,.08); border-radius: 1px;
  position: relative; overflow: hidden;
}
.audio-progress {
  height: 100%; background: var(--copper);
  width: 0%; transition: width .2s linear; border-radius: 1px;
}

/* cover art placeholder gradient per card */
.cover-grad-1 { background: linear-gradient(135deg,#1a0a08 0%,#3d1a12 50%,#1a0d0a 100%); }
.cover-grad-2 { background: linear-gradient(135deg,#08100d 0%,#0d2418 50%,#091210 100%); }
.cover-grad-3 { background: linear-gradient(135deg,#0a080f 0%,#1a1030 50%,#0a0810 100%); }
.cover-grad-4 { background: linear-gradient(135deg,#10080a 0%,#2a0e16 50%,#100810 100%); }
.cover-grad-5 { background: linear-gradient(135deg,#070a10 0%,#0d1428 50%,#070a0f 100%); }
.cover-grad-6 { background: linear-gradient(135deg,#0f0a07 0%,#2a1a08 50%,#0f0b07 100%); }

.cover-icon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.cover-icon svg { width: 48px; height: 48px; opacity: .25; color: var(--copper-lt); }

/* ─── QUOTE STRIP ────────────────────────────────── */
#quote {
  padding: 100px 56px;
  background: var(--ink);
  border-top: 1px solid var(--line2);
  border-bottom: 1px solid var(--line2);
  text-align: center;
}
#quote blockquote { max-width: 860px; margin: 0 auto; }
#quote p {
  font-family: var(--ff-serif);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-weight: 300; font-style: italic;
  line-height: 1.4; color: var(--ivory);
}
#quote p em { font-style: normal; color: var(--copper-lt); }
#quote cite {
  display: block; margin-top: 28px;
  font-family: var(--ff-cond); font-size: 10px; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--muted); font-style: normal;
}

/* ─── TESTIMONIALS ───────────────────────────────── */
#testimonials {
  padding: 120px 56px;
  background: var(--ink2);
  border-top: 1px solid var(--line2);
}
.testimonials-header { text-align:center; margin-bottom:64px; }
.testimonials-header .section-tag { justify-content:center; }
.testimonials-header .section-tag::before { display:none; }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1px;
  background: var(--line2); border: 1px solid var(--line2);
  max-width: 1100px; margin: 0 auto;
}
.testi-card {
  background: var(--ink2); padding: 48px 44px;
  position: relative;
  transition: background .4s;
}
.testi-card:hover { background: var(--ink3); }
.testi-mark {
  font-family: var(--ff-serif); font-size: 5rem; line-height: .6;
  color: var(--copper); opacity: .2; margin-bottom: 16px;
  display: block; font-weight: 400;
}
.testi-quote {
  font-family: var(--ff-serif); font-size: 1.25rem;
  font-weight: 300; font-style: italic;
  line-height: 1.7; color: var(--ivory);
  margin-bottom: 28px;
}
.testi-divider { width: 28px; height: 1px; background: var(--copper); margin-bottom: 16px; }
.testi-author {
  font-family: var(--ff-cond); font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ivory);
  margin-bottom: 4px;
}
.testi-role { font-size: .8rem; font-weight: 300; color: var(--muted); }

/* ─── ABOUT ──────────────────────────────────────── */
#about {
  padding: 120px 56px;
  background: var(--ink);
  border-top: 1px solid var(--line2);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 96px; align-items: center;
}
.about-text p {
  font-size: 1rem; font-weight: 300;
  line-height: 1.82; color: rgba(242,238,230,.58);
  margin-bottom: 20px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-text .section-title { margin-bottom: 32px; }
.about-text .section-tag { margin-bottom: 16px; }

.about-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--line2);
  border: 1px solid var(--line2); margin-top: 48px;
}
.stat-cell {
  background: var(--ink); padding: 28px 20px; text-align: center;
}
.stat-num {
  font-family: var(--ff-serif); font-size: 2.6rem;
  font-weight: 400; color: var(--copper-lt);
  line-height: 1; margin-bottom: 8px;
}
.stat-label {
  font-family: var(--ff-cond); font-size: 9px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
}

.about-phrase {
  font-family: var(--ff-serif);
  font-size: clamp(1.05rem, 1.35vw, 1.55rem);
  font-style: italic;
  font-weight: 300;
  color: var(--copper-lt);
  line-height: 1.5;
  margin-top: 40px;
  padding-left: 1.5rem;
  border-left: 1px solid var(--copper);
  letter-spacing: 0.01em;
}

.about-visual {
  position: relative; aspect-ratio: 4/5;
  background: var(--ink2); border: 1px solid var(--line2);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.about-visual::before {
  content: ''; position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,115,94,.08), transparent 60%);
}
.about-visual-lines {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: space-evenly; pointer-events: none;
}
.about-visual-lines span {
  display: block; height: 1px;
  background: rgba(184,115,94,.06);
  width: 100%;
}
.about-visual-logo { width: 65%; opacity: .85; position: relative; z-index: 1; }
.about-visual-corner {
  position: absolute; width: 40px; height: 40px;
  border-color: rgba(184,115,94,.3); border-style: solid;
}
.corner-tl { top:16px; left:16px; border-width:1px 0 0 1px; }
.corner-tr { top:16px; right:16px; border-width:1px 1px 0 0; }
.corner-bl { bottom:16px; left:16px; border-width:0 0 1px 1px; }
.corner-br { bottom:16px; right:16px; border-width:0 1px 1px 0; }

/* ─── PILARES ────────────────────────────────────── */
#pilares {
  padding: 120px 56px;
  background: var(--ink2);
  border-top: 1px solid var(--line2);
}
.pilares-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: end; margin-bottom: 72px;
}
.pilares-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--line2);
  border: 1px solid var(--line2);
}
.pilar-card {
  background: var(--ink2); padding: 44px 36px;
  position: relative; overflow: hidden;
  transition: background .4s, transform .4s var(--ease-out);
}
.pilar-card::after {
  content:''; position:absolute;
  top:0; left:0; right:0; height:1px;
  background:linear-gradient(90deg,transparent,var(--copper),transparent);
  opacity:0; transition:opacity .4s;
}
.pilar-card:hover { background: var(--ink3); }
.pilar-card:hover::after { opacity:1; }
.pilar-card.accent {
  background: linear-gradient(135deg, rgba(184,115,94,.1), rgba(184,115,94,.03));
  border-color: rgba(184,115,94,.22);
}
.pilar-card.span2 { grid-column: span 2; }

.pilar-num {
  font-family: var(--ff-cond); font-size: 10px; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 22px; display: block;
}
.pilar-title {
  font-family: var(--ff-serif); font-size: 1.55rem;
  font-weight: 400; color: var(--ivory); margin-bottom: 14px; line-height: 1.2;
}
.pilar-body {
  font-size: .93rem; font-weight: 300;
  line-height: 1.78; color: rgba(242,238,230,.52);
}
.pilar-body em { font-style: normal; color: rgba(242,238,230,.78); }

/* ─── FAQ ────────────────────────────────────────── */
#faq {
  padding: 120px 56px;
  background: var(--ink);
  border-top: 1px solid var(--line2);
}
.faq-inner {
  display: grid; grid-template-columns: 1fr 1.8fr;
  gap: 96px; align-items: start; max-width: 1200px; margin: 0 auto;
}
.faq-sidebar { position: sticky; top: 100px; }

.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-top: 1px solid var(--line2);
  overflow: hidden;
}
.faq-item:last-child { border-bottom: 1px solid var(--line2); }
.faq-q {
  width: 100%; background: transparent; border: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 22px 0; text-align: left;
  color: var(--ivory); cursor: pointer;
  transition: color .3s;
}
.faq-q:hover { color: var(--copper-lt); }
.faq-q span {
  font-family: var(--ff-body); font-size: 1rem;
  font-weight: 300; line-height: 1.45;
}
.faq-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 1px solid rgba(184,115,94,.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--copper); transition: transform .4s var(--ease-out), background .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(184,115,94,.1); }
.faq-icon svg { width: 10px; height: 10px; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .5s var(--ease-out);
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p {
  font-size: .93rem; font-weight: 300;
  line-height: 1.78; color: rgba(242,238,230,.55);
  padding-bottom: 20px;
}

/* ─── BOOKING ────────────────────────────────────── */
#booking {
  padding: 120px 56px;
  background: var(--ink2);
  border-top: 1px solid var(--line2);
}
.booking-inner {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 96px; align-items: start; max-width: 1200px; margin: 0 auto;
}
.booking-sidebar { position: sticky; top: 100px; }
.booking-sidebar .section-title { margin-bottom: 20px; }
.booking-sidebar .section-sub { margin-bottom: 40px; font-size: 1rem; }

.booking-details { display: flex; flex-direction: column; gap: 20px; border-top: 1px solid var(--line2); padding-top: 28px; }
.booking-detail { display: flex; gap: 14px; align-items: flex-start; }
.detail-icon {
  width: 34px; height: 34px; border: 1px solid var(--line);
  border-radius: 1px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; color: var(--copper);
}
.detail-icon svg { width: 13px; height: 13px; }
.detail-label {
  font-family: var(--ff-cond); font-size: 9px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 3px;
}
.detail-val { font-size: .95rem; font-weight: 300; color: var(--ivory2); line-height: 1.55; }

.booking-form {
  background: rgba(24,26,28,.65);
  border: 1px solid var(--line2);
  padding: 52px 48px;
}

.form-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-bottom: 44px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field label {
  font-family: var(--ff-cond); font-size: 9px; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase; color: var(--copper);
}
.field input {
  background: transparent; border: none;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: var(--ivory); font-family: var(--ff-body);
  font-size: 1rem; font-weight: 300;
  padding: 10px 0; outline: none;
  transition: border-color .3s; border-radius: 0;
}
.field input::placeholder { color: rgba(242,238,230,.18); font-size: .9rem; }
.field input:focus { border-bottom-color: var(--copper); }

.form-hr { border: none; border-top: 1px solid var(--line2); margin: 40px 0; }

.form-questions { display: flex; flex-direction: column; gap: 40px; }

.q-block { display: flex; flex-direction: column; gap: 6px; }
.q-num {
  font-family: var(--ff-cond); font-size: 9px; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase; color: var(--copper);
}
.q-title {
  font-family: var(--ff-serif); font-size: 1.42rem;
  font-weight: 400; color: var(--ivory); line-height: 1.25;
}
.q-hint { font-size: .9rem; font-weight: 300; color: var(--muted); line-height: 1.6; }
.q-block textarea {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 1px; color: var(--ivory);
  font-family: var(--ff-body); font-size: 1rem;
  font-weight: 300; padding: 16px 18px;
  outline: none; resize: none;
  transition: border-color .3s, background .3s; line-height: 1.7;
}
.q-block textarea:focus {
  border-color: rgba(184,115,94,.4);
  background: rgba(184,115,94,.035);
}
.q-block textarea::placeholder { color: rgba(242,238,230,.16); }

.submit-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--copper); color: var(--ivory); border: none;
  font-family: var(--ff-cond); font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 18px 40px; border-radius: 1px;
  transition: all .3s;
  box-shadow: 0 0 40px -14px rgba(184,115,94,.65);
}
.submit-btn:hover:not(:disabled) {
  background: var(--copper-lt);
  box-shadow: 0 0 50px -8px rgba(184,115,94,.85);
  transform: translateY(-1px);
}
.submit-btn:disabled { opacity:.55; cursor:not-allowed; }
.submit-btn svg { width:15px; height:15px; }

.btn-sending { display:none; align-items:center; gap:10px; }
.spinner { width:13px; height:13px; border:1.5px solid rgba(255,255,255,.3); border-top-color:white; border-radius:50%; animation:spin .7s linear infinite; }

.form-error {
  display: none; margin-top: 14px;
  font-size: .82rem; color: #f5a0a0;
  padding: 10px 14px;
  background: rgba(255,80,80,.05);
  border: 1px solid rgba(255,80,80,.14);
  border-radius: 1px;
}

.success-wrap {
  display: none; flex-direction: column;
  align-items: center; text-align: center; padding: 80px 20px;
}
.success-ring {
  width: 68px; height: 68px; border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--copper); margin-bottom: 28px;
}
.success-ring svg { width: 26px; height: 26px; }
.success-title {
  font-family: var(--ff-serif); font-size: 2rem;
  font-weight: 400; color: var(--ivory); margin-bottom: 12px;
}
.success-body { font-size:.9rem; font-weight:300; color:rgba(242,238,230,.48); max-width:380px; line-height:1.7; margin-bottom:28px; }
.reset-btn {
  background:transparent; border:none;
  font-family:var(--ff-cond); font-size:9px; font-weight:600;
  letter-spacing:.24em; text-transform:uppercase;
  color:var(--muted); border-bottom:1px solid rgba(107,113,119,.3);
  padding-bottom:3px; transition:color .25s, border-color .25s;
}
.reset-btn:hover { color:var(--copper-lt); border-color:var(--copper-lt); }

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  background: var(--ink);
  border-top: 1px solid var(--line2);
  padding: 52px 56px;
}
.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 40px; gap: 32px;
}
.footer-logo { height: 42px; }
.footer-socials { display: flex; gap: 20px; align-items: center; }
.footer-social {
  width: 36px; height: 36px; border: 1px solid var(--line2);
  border-radius: 1px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: color .25s, border-color .25s;
}
.footer-social:hover { color: var(--copper-lt); border-color: rgba(184,115,94,.4); }
.footer-social svg { width: 15px; height: 15px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; border-top: 1px solid var(--line3);
  gap: 20px;
}
.footer-copy {
  font-family: var(--ff-cond); font-size: 12px; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-family: var(--ff-cond); font-size: 9px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); transition: color .25s;
}
.footer-links a:hover { color: var(--copper-lt); }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1100px) {
  #nav { padding: 0 28px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .services-header, .portfolio-header, .pilares-header, .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .services-grid, .portfolio-grid, .pilares-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: repeat(2,1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-inner, .booking-inner { grid-template-columns: 1fr; gap: 56px; }
  .booking-sidebar, .faq-sidebar { position: static; }
  footer { padding: 40px 28px; }
  .footer-top { flex-wrap: wrap; }
  #services,#process,#portfolio,#testimonials,#about,#pilares,#faq,#booking { padding: 80px 28px; }
  #quote { padding: 72px 28px; }
}
@media (max-width: 640px) {
  #hero { padding: 100px 20px 60px; }
  .hero-logo-wrap { width: min(300px, 86vw); }
  /* Process vertical on mobile */
  .process-steps {
    grid-template-columns: 1fr; gap: 0; position: relative;
  }
  .process-steps::before {
    display: block; content:'';
    top: 28px; bottom: 28px; left: 27px; right: auto;
    width: 1px; height: auto;
    background: linear-gradient(180deg, var(--copper), rgba(184,115,94,.15));
  }
  .process-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto;
    column-gap: 22px; row-gap: 6px;
    padding: 0 0 36px 0; text-align: left;
    align-items: start;
  }
  .process-step:last-child { padding-bottom: 0; }
  .process-step .step-circle {
    grid-row: 1 / span 2; grid-column: 1;
    margin: 0; background: var(--bg); position: relative; z-index: 1;
  }
  .process-step .step-title {
    grid-row: 1; grid-column: 2;
    margin-bottom: 4px; padding-top: 10px;
  }
  .process-step .step-body {
    grid-row: 2; grid-column: 2;
  }
  .services-grid, .portfolio-grid, .pilares-grid { grid-template-columns: 1fr; }
  .pilar-card.span2 { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; gap: 24px; }
  .booking-form { padding: 32px 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}


/* Dolby Atmos featured card */
.service-card-dolby {
  position: relative;
  background: linear-gradient(135deg, rgba(184,115,94,.08), rgba(184,115,94,.02));
  border: 1px solid rgba(184,115,94,.35) !important;
  overflow: hidden;
}
.service-card-dolby::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(circle at 80% 20%, rgba(223,193,170,.12), transparent 60%);
  pointer-events:none;
}
.dolby-badge {
  position: absolute; top: 18px; right: 18px;
  font-family: var(--ff-cond); font-size: 10px;
  font-weight: 600; letter-spacing: .25em;
  color: var(--copper-lt);
  border: 1px solid rgba(184,115,94,.45);
  padding: 5px 10px; border-radius: 1px;
  background: rgba(0,0,0,.3);
  backdrop-filter: blur(4px);
  z-index: 1;
}
.service-card-dolby .service-num { color: var(--copper-lt); opacity: .55; }
.service-card-dolby .service-title { color: var(--ivory); }
.service-card-dolby .service-body em { color: var(--copper-lt); font-style: italic; }


/* Specialized section — compact centered header */
.specialized-header {
  max-width: 780px; margin: 0 auto 60px; text-align: center;
}
.specialized-header .section-tag {
  justify-content: center; margin: 0 auto 22px;
  display: inline-flex;
}
.specialized-header .section-title { margin-bottom: 22px; }
.specialized-sub { margin: 0 auto; max-width: 640px; }


/* ─── HERO CINEMATIC BG ──────────────────────────── */
.hero-bg {
  position: absolute; inset: 0;
  overflow: hidden; z-index: 0;
  pointer-events: none;
}
.hero-bg-img {
  position: absolute; inset: -10% -2% -2% -2%;
  width: 104%; height: 110%;
  object-fit: cover;
  filter: grayscale(15%) brightness(.62) contrast(1.05) saturate(1.05);
  opacity: 0; transform: scale(1.06);
  animation: heroBgIn 2.2s var(--ease-out) .2s forwards;
  will-change: transform;
}
@keyframes heroBgIn {
  to { opacity: 1; transform: scale(1); }
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(10,11,12,.28) 0%, rgba(10,11,12,.6) 60%, rgba(10,11,12,.82) 100%),
    linear-gradient(180deg, rgba(10,11,12,.55) 0%, rgba(10,11,12,.28) 42%, rgba(10,11,12,.8) 100%);
}
.hero-bg-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(0,0,0,.5) 100%);
}
#hero > *:not(.hero-bg) { position: relative; z-index: 2; }

/* ─── SERVICE CARD IMAGE ─────────────────────────── */
.service-card-img {
  width: 100%; aspect-ratio: 16/9;
  margin: -28px -28px 22px;
  width: calc(100% + 56px);
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--line2);
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(60%) brightness(.7) contrast(1.05);
  transition: transform .8s var(--ease-out), filter .6s;
}
.service-card:hover .service-card-img img {
  transform: scale(1.06);
  filter: grayscale(20%) brightness(.85);
}
.service-card-img::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,11,12,.6) 100%);
  pointer-events: none;
}

/* ─── PROCESS STEP IMAGE ─────────────────────────── */
.step-circle {
  position: relative; overflow: hidden;
}
.step-circle-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .35;
  filter: grayscale(60%) brightness(.7);
  transition: opacity .5s, filter .5s, transform .8s;
}
.process-step:hover .step-circle-img {
  opacity: .55;
  filter: grayscale(20%) brightness(.9);
  transform: scale(1.1);
}
.step-circle > *:not(.step-circle-img) { position: relative; z-index: 1; }

/* ─── ABOUT VISUAL IMAGE ─────────────────────────── */
.about-visual {
  position: relative; overflow: hidden;
}
.about-visual-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(50%) brightness(.55) contrast(1.1);
  opacity: 0;
  transition: opacity 1.4s var(--ease-out), transform 8s linear;
  z-index: 0;
}
.about-visual.visible .about-visual-photo {
  opacity: 1;
  transform: scale(1.08);
}
.about-visual::after {
  content:''; position: absolute; inset:0;
  background: radial-gradient(ellipse at center, rgba(10,11,12,.4) 0%, rgba(10,11,12,.85) 100%);
  z-index: 1; pointer-events: none;
}
.about-visual > *:not(.about-visual-photo) { position: relative; z-index: 2; }
.about-visual-logo { mix-blend-mode: normal; }

/* ─── SUBTLE PARALLAX & FLOAT ────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .hero-bg-img { animation: heroBgIn 2.2s var(--ease-out) .2s forwards, heroFloat 18s ease-in-out 2.5s infinite; }
}
@keyframes heroFloat {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.03) translateY(-1.5%); }
}

/* Hide service image and process image on small screens for performance */
@media (max-width: 640px) {
  .service-card-img { aspect-ratio: 21/9; }
}


/* ─── DOLBY ATMOS CUSTOM VISUAL ───────────────────── */
.dolby-visual {
  position: relative;
  background: radial-gradient(ellipse at center, #1a1110 0%, #0a0b0c 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.dolby-visual::after { display:none; }
.dolby-rings { position: absolute; inset: 0; display:flex; align-items:center; justify-content:center; }
.dolby-rings span {
  position: absolute;
  border: 1px solid rgba(223,193,170,.22);
  border-radius: 50%;
  width: 60px; height: 60px;
  animation: dolbyPulse 4s ease-in-out infinite;
}
.dolby-rings span:nth-child(1) { animation-delay: 0s; }
.dolby-rings span:nth-child(2) { animation-delay: 1s; border-color: rgba(184,115,94,.28); }
.dolby-rings span:nth-child(3) { animation-delay: 2s; }
.dolby-rings span:nth-child(4) { animation-delay: 3s; border-color: rgba(184,115,94,.22); }
@keyframes dolbyPulse {
  0%   { transform: scale(.4); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: scale(6); opacity: 0; }
}
.dolby-speakers { position: absolute; inset: 0; }
.dolby-speakers .sp {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
  background: var(--copper-lt);
  box-shadow: 0 0 12px rgba(223,193,170,.6), 0 0 4px rgba(223,193,170,1);
}
.sp-c  { top: 50%; left: 50%; transform: translate(-50%,-50%); width:12px; height:12px; }
.sp-l  { top: 50%; left: 18%; transform: translateY(-50%); }
.sp-r  { top: 50%; right: 18%; transform: translateY(-50%); }
.sp-bl { bottom: 18%; left: 28%; }
.sp-br { bottom: 18%; right: 28%; }
.sp-top{ top: 18%; left: 50%; transform: translateX(-50%); opacity: .7; }
.dolby-wordmark {
  position: absolute; bottom: 14px; left: 0; right: 0;
  text-align: center;
  font-family: var(--ff-cond); font-size: 10px;
  letter-spacing: .35em; color: rgba(223,193,170,.55);
  text-transform: uppercase;
}

.service-card-img.img-failed { 
  background: linear-gradient(135deg, #1a1110, #0a0b0c);
}
.service-card-img.img-failed img { display:none; }


/* ─── FEATURED ALBUM (PORTFOLIO) ──────────────────── */
.portfolio-grid { display: block; }
.featured-album {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: linear-gradient(135deg, rgba(184,115,94,.06), rgba(184,115,94,.015));
  border: 1px solid var(--line);
  padding: 56px;
}
.featured-label {
  font-family: var(--ff-cond); font-size: 11px; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 18px;
}
.featured-artist {
  font-family: var(--ff-serif); font-size: clamp(2.4rem, 3.5vw, 3.4rem);
  font-weight: 400; line-height: 1.05; color: var(--ivory);
  margin-bottom: 10px;
}
.featured-genre {
  font-family: var(--ff-body); font-size: .95rem; font-weight: 300;
  color: var(--ivory2); margin-bottom: 24px;
}
.hires-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-cond); font-size: 11px; font-weight: 700;
  letter-spacing: .22em; color: var(--copper-lt);
  border: 1px solid rgba(184,115,94,.45);
  padding: 7px 14px; border-radius: 2px;
  background: rgba(0,0,0,.25);
  margin-bottom: 26px;
}
.hires-badge svg { width: 16px; height: 16px; }
.featured-desc {
  font-size: 1rem; font-weight: 300; line-height: 1.78;
  color: rgba(242,238,230,.55); margin-bottom: 24px; max-width: 440px;
}
.featured-quality {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--ff-cond); font-size: 12px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ivory2); margin-bottom: 8px;
}
.q-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--copper-lt);
  box-shadow: 0 0 10px 1px rgba(223,193,170,.7);
  animation: pulseGlow 2.4s ease-in-out infinite;
}
.featured-note {
  font-size: .82rem; font-weight: 300; font-style: italic;
  color: var(--muted); line-height: 1.6; margin-top: 4px;
}
.featured-player {
  position: relative; width: 100%;
  min-height: 460px;
  border: 1px solid var(--line2);
  background: var(--ink);
  overflow: hidden;
}
.featured-player iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: none;
}

@media (max-width: 1024px) {
  .featured-album { grid-template-columns: 1fr; gap: 40px; padding: 40px 28px; }
  .featured-player { min-height: 420px; }
}
@media (max-width: 640px) {
  .featured-album { padding: 32px 20px; }
  .featured-player { min-height: 380px; }
}


/* ─── REDUCED MOTION ──────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity:1 !important; transform:none !important; filter:none !important; }
  .section-title em::after { transform: scaleX(1) !important; }
  .hero-h1 > span, .hero-h1 > em { opacity:1 !important; transform:none !important; }
  .hero-rule { width: min(480px,72vw) !important; }
  #cursor-glow { display:none !important; }
  .hero-scroll { animation: none !important; }
}
/* JS-toggled reduce class mirrors the above */
body.reduce-motion .reveal { opacity:1 !important; transform:none !important; filter:none !important; }
body.reduce-motion .section-title em::after { transform: scaleX(1) !important; }
body.reduce-motion .hero-h1 > span,
body.reduce-motion .hero-h1 > em { opacity:1 !important; transform:none !important; animation:none !important; }
body.reduce-motion .glow,
body.reduce-motion .hero-logo-wrap img,
body.reduce-motion .hero-bg-img,
body.reduce-motion .hero-scroll { animation: none !important; }
body.reduce-motion #cursor-glow { display:none !important; }


/* ─── SMOOTH REVEAL FOR MEDIA-HEAVY CARDS ─────────── */
/* Animating blur over large images is GPU-costly → keep these to opacity+transform only */
.service-card.reveal,
.featured-album.reveal,
.portfolio-card.reveal {
  filter: none !important;
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}


/* ─── SPECIALIZED SECTION BANNER ─────────────────── */
.specialized-banner {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 56px;
  aspect-ratio: 1400 / 900;
  max-height: 480px;
}
.specialized-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
@media (max-width: 768px) {
  .specialized-banner { max-height: 280px; margin-bottom: 36px; }
}

/* ─── 1440px+ ────────────────────────────────────── */
@media (min-width: 1440px) {
  .nav-links a, .lang-btn, .nav-cta           { font-size: 14px; }
  .section-tag                                 { font-size: 17px; }
  .hero-eyebrow span                           { font-size: 22px; }
  .hero-scroll span                            { font-size: 10px; }
  .service-num, .pilar-num                     { font-size: 11px; }
  .stat-label, .detail-label                   { font-size: 10px; }
  .field label, .q-num                         { font-size: 10px; }
  .footer-copy, .footer-links a                { font-size: 10px; }
  .testi-author                                { font-size: 12px; }
  .featured-label, .hires-badge                { font-size: 12px; }
  .featured-quality                            { font-size: 13px; }
}

/* ─── 1920px+ ────────────────────────────────────── */
@media (min-width: 1920px) {
  .nav-links a, .lang-btn, .nav-cta           { font-size: 15px; }
  .section-tag                                 { font-size: 18px; }
  .hero-eyebrow span                           { font-size: 24px; }
  .hero-scroll span                            { font-size: 12px; }
  .service-num, .pilar-num, .dolby-badge       { font-size: 13px; }
  .stat-label, .detail-label                   { font-size: 12px; }
  .field label, .q-num                         { font-size: 12px; }
  .footer-copy, .footer-links a                { font-size: 11px; }
  .testi-author                                { font-size: 14px; }
  .featured-label, .hires-badge                { font-size: 14px; }
  .featured-quality                            { font-size: 15px; }
  .submit-btn                                  { font-size: 13px; }
  .reset-btn                                   { font-size: 11px; }
  #quote cite                                  { font-size: 12px; }
}

/* ─── 2560px+ ────────────────────────────────────── */
@media (min-width: 2560px) {
  .nav-links a, .lang-btn, .nav-cta           { font-size: 18px; }
  .section-tag                                 { font-size: 21px; }
  .hero-eyebrow span                           { font-size: 26px; }
  .hero-scroll span                            { font-size: 14px; }
  .service-num, .pilar-num, .dolby-badge       { font-size: 15px; }
  .stat-label, .detail-label                   { font-size: 13px; }
  .field label, .q-num                         { font-size: 13px; }
  .footer-copy, .footer-links a                { font-size: 13px; }
  .testi-author                                { font-size: 16px; }
  .featured-label, .hires-badge                { font-size: 16px; }
  .featured-quality                            { font-size: 17px; }
  .submit-btn                                  { font-size: 15px; }
  .reset-btn                                   { font-size: 13px; }
  #quote cite                                  { font-size: 14px; }
}
