/* ═══════════════════════════════════════════════════
   BELEZA DIGITAL MEDIA — Main Stylesheet
   style.css
═══════════════════════════════════════════════════ */

:root {
  --gold: #c9a84c;
  --gold-l: #e8c96a;
  --gold-b: #f5d98a;
  --gold-d: #8a6520;
  --black: #020202;
  --black2: #080808;
  --black3: #0e0e0e;
  --white: #f8f3ea;
  --white2: #c5b898;
  --ez: cubic-bezier(.25, .46, .45, .94);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

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

/* ─── CUSTOM CURSOR ─── */
#CUR, #RING {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
}
#CUR {
  width: 10px;
  height: 10px;
  background: var(--gold-b);
  mix-blend-mode: difference;
  transition: width .18s, height .18s;
}
#RING {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--gold);
  opacity: .65;
  z-index: 99998;
  transition: width .32s, height .32s, border-color .32s, opacity .32s;
}
body.hov #RING { width: 72px; height: 72px; border-color: var(--gold-b); opacity: 1; }
body.hov #CUR  { width: 18px; height: 18px; }

/* ─── LOADER ─── */
#LOADER {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99990;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity .9s, visibility .9s;
}
#LOADER.gone { opacity: 0; visibility: hidden; pointer-events: none; }
.ld-logo {
  width: 210px;
  filter: drop-shadow(0 0 40px var(--gold));
  animation: ldPulse 1.8s ease-in-out infinite;
}
@keyframes ldPulse {
  0%, 100% { filter: drop-shadow(0 0 28px var(--gold)); }
  50%       { filter: drop-shadow(0 0 70px var(--gold-b)) drop-shadow(0 0 120px rgba(201,168,76,.4)); }
}
.ld-track {
  width: 220px;
  height: 1px;
  background: rgba(201,168,76,.15);
  margin-top: 44px;
  overflow: hidden;
}
.ld-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-d), var(--gold-b), var(--gold-d));
}
.ld-pct {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 7px;
  color: var(--gold-d);
  margin-top: 18px;
}
.ld-tag {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(201,168,76,.4);
  margin-top: 10px;
  letter-spacing: 2px;
}

/* ─── FILM GRAIN NOISE OVERLAY ─── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9000;
  opacity: .22;
}

/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 64px;
  transition: all .5s var(--ez);
}
nav.stuck {
  background: rgba(2,2,2,.94);
  backdrop-filter: blur(28px);
  padding: 15px 64px;
  border-bottom: 1px solid rgba(201,168,76,.1);
}
.nav-logo img {
  height: 48px;
  filter: drop-shadow(0 0 14px rgba(201,168,76,.4));
  transition: filter .4s, transform .4s;
}
.nav-logo img:hover {
  filter: drop-shadow(0 0 28px rgba(201,168,76,.9));
  transform: scale(1.04);
}
.nav-ul {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-ul a {
  font-family: 'Cinzel', serif;
  font-size: 9.5px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--white2);
  transition: color .3s;
  position: relative;
  padding-bottom: 4px;
}
.nav-ul a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-l);
  transition: width .4s var(--ez);
}
.nav-ul a:hover { color: var(--gold-l); }
.nav-ul a:hover::after { width: 100%; }
.nav-cta {
  font-family: 'Cinzel', serif;
  font-size: 9.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-b));
  padding: 12px 30px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: all .35s;
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-b), var(--gold-l));
  opacity: 0;
  transition: opacity .3s;
}
.nav-cta:hover::before { opacity: 1; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,.45); }
.nav-cta span { position: relative; z-index: 1; }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.burger span { display: block; width: 26px; height: 1px; background: var(--gold); transition: all .3s; }

/* ─── MOBILE MENU ─── */
.mob {
  position: fixed;
  inset: 0;
  background: rgba(2,2,2,.97);
  backdrop-filter: blur(20px);
  z-index: 490;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s, visibility .4s;
}
.mob.open { opacity: 1; visibility: visible; }
.mob a {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  letter-spacing: 5px;
  color: var(--white2);
  text-transform: uppercase;
  transition: color .3s;
}
.mob a:hover { color: var(--gold-l); }

/* ─── BACK TO TOP ─── */
#btt {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold-d), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 18px;
  z-index: 400;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  opacity: 0;
  transform: translateY(20px);
  transition: all .4s;
  box-shadow: 0 4px 20px rgba(201,168,76,.3);
}
#btt.show { opacity: 1; transform: none; }
#btt:hover { box-shadow: 0 8px 36px rgba(201,168,76,.6); transform: translateY(-4px); }

/* ─── LIGHTBOX ─── */
#LB {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.94);
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s, visibility .4s;
}
#LB.open { opacity: 1; visibility: visible; }
#LB img {
  max-width: 90vw;
  max-height: 86vh;
  object-fit: contain;
  border: 1px solid rgba(201,168,76,.2);
}
#LBX {
  position: absolute;
  top: 24px; right: 30px;
  font-size: 28px;
  color: var(--gold);
  cursor: pointer;
  transition: color .3s;
  z-index: 1;
}
#LBX:hover { color: var(--gold-b); }

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.13) saturate(.7);
  transform: scale(1.12);
  animation: hZoom 12s ease forwards;
}
@keyframes hZoom { to { transform: scale(1); } }
.hero-ov {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(201,168,76,.07), transparent 60%),
              linear-gradient(to bottom, transparent 55%, var(--black) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  max-width: 1020px;
}
.hero-logo-zone {
  display: inline-block;
  position: relative;
  margin-bottom: 48px;
}
.hero-logo {
  width: 290px;
  filter: drop-shadow(0 0 35px rgba(201,168,76,.65)) drop-shadow(0 0 80px rgba(201,168,76,.3));
  animation: logoPop 1.2s var(--ez) both, logoGlow 5s ease-in-out 1.2s infinite;
}
@keyframes logoPop {
  from { opacity: 0; transform: scale(.7) translateY(-30px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 35px rgba(201,168,76,.65)) drop-shadow(0 0 80px rgba(201,168,76,.3)); }
  50%       { filter: drop-shadow(0 0 55px rgba(245,217,138,.95)) drop-shadow(0 0 120px rgba(201,168,76,.55)); }
}
.pr {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.3);
  animation: prOut 3s ease-out infinite;
}
.pr:nth-child(1) { width: 360px; height: 360px; animation-delay: 0s; }
.pr:nth-child(2) { width: 450px; height: 450px; animation-delay: 1s; }
.pr:nth-child(3) { width: 540px; height: 540px; animation-delay: 2s; }
@keyframes prOut {
  0%   { opacity: .6; transform: translate(-50%, -50%) scale(.85); }
  100% { opacity: 0;  transform: translate(-50%, -50%) scale(1.15); }
}
.hero-tag {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 10px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  animation: fUp 1.2s ease .5s both;
}
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 6.5vw, 90px);
  font-weight: 300;
  line-height: 1.06;
  margin-bottom: 24px;
  animation: fUp 1.2s ease .7s both;
  min-height: 2.3em;
}
.hero-h1 em { font-style: italic; color: var(--gold-l); }
.cblink {
  display: inline-block;
  width: 3px;
  height: .9em;
  background: var(--gold);
  margin-left: 3px;
  vertical-align: middle;
  animation: blink .7s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.hero-sub {
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--white2);
  max-width: 560px;
  margin: 0 auto 52px;
  line-height: 1.95;
  animation: fUp 1.2s ease .9s both;
}
.hero-ctas {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fUp 1.2s ease 1.1s both;
}
.hscroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fUp 1.8s ease 1.5s both;
}
.hscroll-txt {
  font-family: 'Cinzel', serif;
  font-size: 8px;
  letter-spacing: 5px;
  color: rgba(201,168,76,.4);
}
.smouse {
  width: 22px; height: 36px;
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.sdot {
  width: 3px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: sdot 2s ease-in-out infinite;
}
@keyframes sdot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(10px); opacity: 0; }
}
@keyframes fUp {
  from { opacity: 0; transform: translateY(35px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── BUTTONS ─── */
.btn {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 16px 44px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all .35s;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.btn-g { color: var(--black); background: linear-gradient(135deg, var(--gold), var(--gold-b), var(--gold-l)); }
.btn-g::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-b), var(--gold));
  opacity: 0;
  transition: opacity .3s;
}
.btn-g:hover::before { opacity: 1; }
.btn-g:hover { box-shadow: 0 16px 50px rgba(201,168,76,.5); transform: translateY(-3px); }
.btn-o { color: var(--gold-l); border: 1px solid rgba(201,168,76,.35); background: transparent; }
.btn-o:hover {
  background: rgba(201,168,76,.07);
  border-color: var(--gold-l);
  box-shadow: 0 16px 50px rgba(201,168,76,.18);
  transform: translateY(-3px);
}
.btn span { position: relative; z-index: 1; }

/* ─── TICKER ─── */
.ticker {
  background: rgba(201,168,76,.06);
  border-top: 1px solid rgba(201,168,76,.14);
  border-bottom: 1px solid rgba(201,168,76,.14);
  padding: 15px 0;
  overflow: hidden;
}
.tt {
  display: flex;
  white-space: nowrap;
  animation: ttAnim 35s linear infinite;
}
.ticker:hover .tt { animation-play-state: paused; }
.ti {
  font-family: 'Cinzel', serif;
  font-size: 9.5px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-d);
  padding: 0 48px;
  flex-shrink: 0;
  transition: color .3s;
}
.ti:hover { color: var(--gold-l); }
.dot { color: var(--gold); }
@keyframes ttAnim { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── SECTION LABELS & HEADINGS ─── */
.sl {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.sl::before { content: ''; width: 38px; height: 1px; background: var(--gold); flex-shrink: 0; }
.sl.c { justify-content: center; }
.sl.c::before { display: none; }
.sh {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 18px;
}
.sh em { font-style: italic; color: var(--gold-l); }
.sp { font-size: 13.5px; line-height: 1.95; color: var(--white2); }

/* ─── SCROLL REVEAL ─── */
.rev  { opacity: 0; transform: translateY(55px);  transition: opacity .9s var(--ez), transform .9s var(--ez); }
.revL { opacity: 0; transform: translateX(-55px); transition: opacity .9s var(--ez), transform .9s var(--ez); }
.revR { opacity: 0; transform: translateX(55px);  transition: opacity .9s var(--ez), transform .9s var(--ez); }
.rev.in, .revL.in, .revR.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

/* ─── ABOUT ─── */
.about-s { background: var(--black2); padding: 130px 0; overflow: hidden; }
.ag {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-media { position: relative; }
.astack { position: relative; height: 580px; }
.ai1 {
  position: absolute;
  top: 0; left: 0;
  width: 78%; height: 460px;
  object-fit: cover;
  border: 1px solid rgba(201,168,76,.15);
  filter: brightness(.8) saturate(.85);
  transition: filter .5s, transform .6s;
}
.ai1:hover { filter: brightness(.95) saturate(1.05); transform: scale(1.02); }
.ai2 {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%; height: 260px;
  object-fit: cover;
  border: 2px solid var(--black2);
  box-shadow: -8px -8px 0 rgba(201,168,76,.1);
  filter: brightness(.75);
  transition: filter .5s;
}
.ai2:hover { filter: brightness(.95); }
.a-ctlr {
  position: absolute;
  top: -18px; left: -18px;
  width: 58px; height: 58px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  z-index: 3;
}
.a-cbrr {
  position: absolute;
  bottom: -14px; right: 70px;
  width: 58px; height: 58px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  z-index: 3;
}
.a-badge {
  position: absolute;
  top: 38%; right: -28px;
  width: 114px; height: 114px;
  background: linear-gradient(135deg, var(--gold-d), var(--gold));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(201,168,76,.4);
  z-index: 4;
  animation: bglow 4s ease-in-out infinite;
}
@keyframes bglow {
  0%, 100% { box-shadow: 0 0 40px rgba(201,168,76,.4); }
  50%       { box-shadow: 0 0 70px rgba(201,168,76,.8); }
}
.a-bn { font-family: 'Cinzel', serif; font-size: 28px; font-weight: 700; color: var(--black); line-height: 1; }
.a-bt { font-size: 7.5px; letter-spacing: 1.5px; color: rgba(0,0,0,.65); margin-top: 3px; text-align: center; padding: 0 8px; }
.astats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
  padding-top: 48px;
  border-top: 1px solid rgba(201,168,76,.12);
}
.asn { font-family: 'Cormorant Garamond', serif; font-size: 50px; font-weight: 300; color: var(--gold-l); line-height: 1; margin-bottom: 6px; }
.asl { font-size: 9px; letter-spacing: 2px; color: var(--white2); text-transform: uppercase; }

/* ─── SERVICES ─── */
.svc-s { padding: 130px 0; background: var(--black); }
.svc-i { max-width: 1320px; margin: 0 auto; padding: 0 64px; }
.svc-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 70px;
  gap: 30px;
  flex-wrap: wrap;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,.07);
  border: 1px solid rgba(201,168,76,.07);
}
.sc {
  background: var(--black);
  padding: 52px 40px;
  position: relative;
  overflow: hidden;
  transition: background .4s, transform .3s;
}
.scg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -10%, rgba(201,168,76,.1), transparent 65%);
  opacity: 0;
  transition: opacity .4s;
}
.sc::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-b));
  transition: width .55s var(--ez);
}
.sc:hover { background: rgba(201,168,76,.025); transform: translateY(-4px); }
.sc:hover::before { width: 100%; }
.sc:hover .scg { opacity: 1; }
.sc-ico {
  width: 52px; height: 52px;
  border: 1px solid rgba(201,168,76,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 22px;
  transition: border-color .3s, background .3s;
}
.sc:hover .sc-ico { border-color: var(--gold); background: rgba(201,168,76,.08); }
.sc-num { font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 4px; color: var(--gold-d); margin-bottom: 14px; }
.sc-t { font-family: 'Cormorant Garamond', serif; font-size: 27px; font-weight: 400; color: var(--white); margin-bottom: 14px; }
.sc-d { font-size: 12.5px; line-height: 1.88; color: var(--white2); }
.sc-m {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-family: 'Cinzel', serif;
  font-size: 8.5px;
  letter-spacing: 3px;
  color: var(--gold-d);
  transition: color .3s, gap .3s;
}
.sc:hover .sc-m { color: var(--gold-l); gap: 14px; }

/* ─── STATS BAND ─── */
.sb { position: relative; padding: 110px 64px; overflow: hidden; }
.sb-ph { position: absolute; inset: 0; }
.sb-ph img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.15) saturate(.4); }
.sb-ov { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(201,168,76,.08), transparent 70%); }
.sb-in {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.sb-c {
  padding: 44px 24px;
  border: 1px solid rgba(201,168,76,.14);
  text-align: center;
  transition: border-color .4s, background .4s, transform .3s;
  background: rgba(2,2,2,.3);
}
.sb-c:hover { border-color: rgba(201,168,76,.5); background: rgba(201,168,76,.05); transform: translateY(-6px); }
.sb-n { font-family: 'Cormorant Garamond', serif; font-size: clamp(48px, 5vw, 72px); font-weight: 300; color: var(--gold-l); line-height: 1; margin-bottom: 12px; }
.sb-l { font-family: 'Cinzel', serif; font-size: 8.5px; letter-spacing: 4px; color: var(--white2); text-transform: uppercase; }

/* ─── GALLERY ─── */
.gal-s { padding: 130px 0; background: var(--black3); overflow: hidden; }
.gal-i { max-width: 1320px; margin: 0 auto; padding: 0 64px; }
.gal-hd { margin-bottom: 60px; }
.gg {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 250px 250px;
  gap: 10px;
}
.gi { position: relative; overflow: hidden; }
.gi:nth-child(1) { grid-column: span 3; }
.gi:nth-child(2) { grid-column: span 2; }
.gi:nth-child(3) { grid-column: span 1; }
.gi:nth-child(4) { grid-column: span 2; }
.gi:nth-child(5) { grid-column: span 2; }
.gi:nth-child(6) { grid-column: span 2; }
.gi img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.72) saturate(.65);
  transition: transform .7s var(--ez), filter .55s;
}
.gi:hover img { transform: scale(1.1); filter: brightness(.95) saturate(1.1); }
.gi-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px 20px;
  background: linear-gradient(to top, rgba(2,2,2,.85), transparent);
  transform: translateY(100%);
  transition: transform .45s var(--ez);
}
.gi:hover .gi-cap { transform: translateY(0); }
.gi-cat { font-family: 'Cinzel', serif; font-size: 8px; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; margin-bottom: 4px; }
.gi-t { font-family: 'Cormorant Garamond', serif; font-size: 19px; color: var(--white); }
.gi-bdr { position: absolute; inset: 0; border: 1px solid rgba(201,168,76,0); transition: border-color .4s; pointer-events: none; }
.gi:hover .gi-bdr { border-color: rgba(201,168,76,.35); }
.gi-z {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  background: rgba(201,168,76,.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--black);
  opacity: 0;
  transform: scale(.5);
  transition: opacity .3s, transform .3s;
}
.gi:hover .gi-z { opacity: 1; transform: scale(1); }

/* ─── PROCESS ─── */
.proc-s { padding: 130px 0; background: var(--black); }
.proc-i { max-width: 1320px; margin: 0 auto; padding: 0 64px; }
.proc-hd { text-align: center; max-width: 600px; margin: 0 auto 90px; }
.pgrid { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.pline {
  position: absolute;
  top: 28px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.4) 20%, rgba(201,168,76,.4) 80%, transparent);
  pointer-events: none;
}
.ps { padding: 0 24px; text-align: center; position: relative; z-index: 1; }
.ps:nth-child(even) { display: flex; flex-direction: column; }
.ps:nth-child(even) .pc { order: 1; padding-bottom: 28px; }
.ps:nth-child(even) .pdz { order: 2; }
.ps:nth-child(odd) .pdz { margin-bottom: 28px; }
.ps:nth-child(even) .pdz { margin-top: 28px; }
.pd {
  width: 18px; height: 18px;
  background: linear-gradient(135deg, var(--gold-d), var(--gold));
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 0 0 5px rgba(201,168,76,.12), 0 0 0 10px rgba(201,168,76,.05);
  transition: transform .3s, box-shadow .3s;
}
.ps:hover .pd { transform: scale(1.6); box-shadow: 0 0 0 8px rgba(201,168,76,.2), 0 0 30px rgba(201,168,76,.5); }
.pn { font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 5px; color: var(--gold-d); margin-bottom: 12px; }
.pt { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: var(--white); margin-bottom: 10px; }
.pd2 { font-size: 12px; line-height: 1.85; color: var(--white2); }

/* ─── QUOTE BAND ─── */
.qband { position: relative; padding: 150px 64px; text-align: center; overflow: hidden; }
.qb-ph { position: absolute; inset: 0; }
.qb-ph img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.12); transform: scale(1.06); transition: transform 20s linear; }
.qband:hover .qb-ph img { transform: scale(1); }
.qb-ov { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(201,168,76,.06), transparent 65%); }
.qb-in { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.qb-deco { font-family: 'Cormorant Garamond', serif; font-size: 200px; line-height: .5; color: rgba(201,168,76,.05); position: absolute; top: -10px; left: 50%; transform: translateX(-50%); pointer-events: none; z-index: 0; user-select: none; }
.qb-txt { font-family: 'Cormorant Garamond', serif; font-size: clamp(24px, 3.5vw, 50px); font-style: italic; font-weight: 300; color: var(--white); line-height: 1.42; margin-bottom: 36px; position: relative; z-index: 1; }
.qb-txt em { font-style: normal; color: var(--gold-l); }
.qb-line { width: 60px; height: 1px; background: var(--gold-d); margin: 0 auto 16px; }
.qb-attr { font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 5px; color: var(--gold-d); }

/* ─── TEAM ─── */
.team-s { padding: 130px 0; background: var(--black2); }
.team-i { max-width: 1320px; margin: 0 auto; padding: 0 64px; }
.team-hd { margin-bottom: 70px; max-width: 500px; }
.tgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tc { position: relative; overflow: hidden; }
.tc img {
  width: 100%; height: 360px;
  object-fit: cover;
  object-position: top center;
  filter: brightness(.8) saturate(.75);
  transition: filter .55s var(--ez), transform .65s var(--ez);
}
.tc:hover img { filter: brightness(1) saturate(1); transform: scale(1.06); }
.tc-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 24px;
  background: linear-gradient(to top, rgba(2,2,2,.92), rgba(2,2,2,.3) 60%, transparent);
  transform: translateY(50px);
  transition: transform .45s var(--ez);
}
.tc:hover .tc-info { transform: translateY(0); }
.tc-name { font-family: 'Cormorant Garamond', serif; font-size: 23px; font-weight: 400; color: var(--white); margin-bottom: 5px; }
.tc-role { font-family: 'Cinzel', serif; font-size: 7.5px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; }
.tc-soc { display: flex; gap: 10px; margin-top: 14px; opacity: 0; transform: translateY(10px); transition: opacity .3s .1s, transform .3s .1s; }
.tc:hover .tc-soc { opacity: 1; transform: translateY(0); }
.tsb {
  width: 28px; height: 28px;
  border: 1px solid rgba(201,168,76,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--gold);
  transition: background .3s;
}
.tsb:hover { background: rgba(201,168,76,.15); }
.tc-bdr { position: absolute; inset: 0; border: 2px solid rgba(201,168,76,0); transition: border-color .4s; pointer-events: none; }
.tc:hover .tc-bdr { border-color: rgba(201,168,76,.4); }

/* ─── TESTIMONIALS ─── */
.tes-s { padding: 130px 0; background: var(--black); position: relative; overflow: hidden; }
.tes-s::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(201,168,76,.04), transparent 70%); pointer-events: none; }
.tes-i { max-width: 1000px; margin: 0 auto; padding: 0 64px; text-align: center; }
.tes-hd { margin-bottom: 72px; }
.tslider { position: relative; min-height: 290px; overflow: hidden; }
.ts { position: absolute; inset: 0; opacity: 0; transition: opacity .8s var(--ez), transform .8s var(--ez); transform: translateY(25px); }
.ts.on { opacity: 1; position: relative; transform: translateY(0); }
.ts-av { width: 62px; height: 62px; border-radius: 50%; object-fit: cover; object-position: top center; margin: 0 auto 22px; border: 2px solid rgba(201,168,76,.35); }
.tstars { display: flex; gap: 5px; justify-content: center; margin-bottom: 24px; }
.star { font-size: 15px; color: var(--gold); animation: starP .4s ease both; }
@keyframes starP { from { transform: scale(0) rotate(-30deg); opacity: 0; } to { transform: none; opacity: 1; } }
.ts-q { font-family: 'Cormorant Garamond', serif; font-size: clamp(18px, 2.8vw, 29px); font-style: italic; font-weight: 300; color: var(--white); line-height: 1.62; margin-bottom: 38px; }
.ts-q::before { content: '"'; font-size: 1.3em; color: rgba(201,168,76,.25); line-height: 0; vertical-align: -.3em; margin-right: 4px; }
.ts-q::after  { content: '"'; font-size: 1.3em; color: rgba(201,168,76,.25); line-height: 0; vertical-align: -.3em; margin-left: 4px; }
.ts-name { font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 4px; color: var(--gold); }
.ts-role { font-size: 12px; color: var(--white2); margin-top: 5px; letter-spacing: .5px; }
.tctrl { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 52px; }
.tcb {
  width: 46px; height: 46px;
  border: 1px solid rgba(201,168,76,.28);
  background: none;
  color: var(--gold);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: all .3s;
}
.tcb:hover { background: rgba(201,168,76,.1); border-color: var(--gold-l); }
.tdots { display: flex; gap: 10px; }
.td { width: 7px; height: 7px; border-radius: 50%; background: rgba(201,168,76,.22); border: 1px solid var(--gold-d); transition: all .35s; }
.td.on { background: var(--gold); transform: scale(1.5); }

/* ─── PORTFOLIO ─── */
.port-s { padding: 130px 0; background: var(--black2); }
.port-i { max-width: 1320px; margin: 0 auto; padding: 0 64px; }
.port-hd { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 20px; flex-wrap: wrap; }
.port-ft { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.pf { font-family: 'Cinzel', serif; font-size: 8px; letter-spacing: 3px; text-transform: uppercase; color: var(--white2); border: 1px solid rgba(201,168,76,.18); background: none; padding: 9px 22px; transition: all .3s; }
.pf.on, .pf:hover { color: var(--gold-l); border-color: var(--gold); background: rgba(201,168,76,.06); }
.pgrd { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.pi { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.pi:first-child { grid-column: span 2; aspect-ratio: auto; min-height: 400px; }
.pi img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.7) saturate(.7); transition: transform .7s var(--ez), filter .5s; }
.pi:hover img { transform: scale(1.08); filter: brightness(.9) saturate(1); }
.pi-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(2,2,2,.92), rgba(2,2,2,.1) 55%, transparent); display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; }
.pi-cat { font-family: 'Cinzel', serif; font-size: 8px; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; margin-bottom: 7px; transition: transform .4s, opacity .4s; transform: translateY(8px); opacity: .6; }
.pi-tit { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400; color: var(--white); margin-bottom: 8px; transition: transform .4s .04s; }
.pi-res { font-size: 11px; color: var(--white2); letter-spacing: .5px; opacity: 0; transform: translateY(18px); transition: opacity .4s .08s, transform .4s .08s; }
.pi:hover .pi-cat { transform: none; opacity: 1; }
.pi:hover .pi-tit { transform: translateY(-2px); }
.pi:hover .pi-res { opacity: 1; transform: none; }
.pi-badge { position: absolute; top: 18px; right: 18px; font-family: 'Cinzel', serif; font-size: 7.5px; letter-spacing: 2px; color: var(--black); background: var(--gold); padding: 5px 14px; opacity: 0; transform: translateY(-8px); transition: all .3s; }
.pi:hover .pi-badge { opacity: 1; transform: none; }

/* ─── CTA BAND ─── */
.cta-s { position: relative; padding: 150px 64px; text-align: center; overflow: hidden; }
.cta-ph { position: absolute; inset: 0; }
.cta-ph img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.14); }
.cta-ov { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(201,168,76,.09), transparent 65%); }
.cta-in { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-in .sp { max-width: 480px; margin: 18px auto 48px; }
.cta-bts { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ─── CONTACT ─── */
.con-s { padding: 130px 0; background: var(--black); }
.con-i { max-width: 1320px; margin: 0 auto; padding: 0 64px; display: grid; grid-template-columns: 1fr 1.35fr; gap: 100px; align-items: start; }
.ci { margin-bottom: 46px; }
.ci-l { font-family: 'Cinzel', serif; font-size: 8px; letter-spacing: 5px; color: var(--gold); text-transform: uppercase; display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.ci-l::before { content: ''; width: 22px; height: 1px; background: var(--gold-d); }
.ci-v { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--white); transition: color .3s; display: inline-block; }
a.ci-v:hover { color: var(--gold-l); }
.ci-ph { width: 100%; height: 190px; object-fit: cover; filter: grayscale(1) brightness(.35) sepia(.25); border: 1px solid rgba(201,168,76,.12); margin-top: 52px; transition: filter .5s; }
.ci-ph:hover { filter: grayscale(0) brightness(.6); }
.cf { display: flex; flex-direction: column; gap: 18px; }
.cfrow { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fg { display: flex; flex-direction: column; gap: 8px; }
.fg label { font-family: 'Cinzel', serif; font-size: 8px; letter-spacing: 4px; color: var(--gold-d); text-transform: uppercase; }
.fg input, .fg textarea, .fg select {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(201,168,76,.16);
  color: var(--white);
  padding: 14px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  outline: none;
  transition: border-color .3s, background .3s, box-shadow .3s;
  appearance: none;
  -webkit-appearance: none;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: rgba(201,168,76,.6);
  background: rgba(201,168,76,.035);
  box-shadow: 0 0 0 3px rgba(201,168,76,.06);
}
.fg textarea { resize: vertical; min-height: 130px; }
.fg select option { background: #0d0d0d; }
.cf-btn {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-b));
  border: none;
  padding: 17px 48px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  position: relative;
  overflow: hidden;
  transition: all .35s;
  align-self: flex-start;
}
.cf-btn::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--gold-b), var(--gold-l)); opacity: 0; transition: opacity .3s; }
.cf-btn:hover::before { opacity: 1; }
.cf-btn:hover { box-shadow: 0 12px 40px rgba(201,168,76,.45); transform: translateY(-2px); }
.cf-btn span { position: relative; z-index: 1; }

/* ─── FOOTER ─── */
footer { background: #000; border-top: 1px solid rgba(201,168,76,.1); padding: 80px 64px 36px; }
.ftop { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.f-logo img { height: 50px; margin-bottom: 20px; filter: drop-shadow(0 0 10px rgba(201,168,76,.35)); }
.f-ab { font-size: 12px; line-height: 1.95; color: rgba(200,191,168,.4); max-width: 270px; margin-bottom: 24px; }
.fsoc { display: flex; gap: 10px; }
.fsb { width: 36px; height: 36px; border: 1px solid rgba(201,168,76,.18); display: flex; align-items: center; justify-content: center; font-size: 12px; color: rgba(200,191,168,.45); transition: all .3s; }
.fsb:hover { border-color: var(--gold); color: var(--gold-l); background: rgba(201,168,76,.07); transform: translateY(-2px); }
.fct { font-family: 'Cinzel', serif; font-size: 8.5px; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid rgba(201,168,76,.1); }
.fl { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.fl a { font-size: 12px; color: rgba(200,191,168,.42); transition: color .3s, padding-left .3s; display: flex; align-items: center; gap: 8px; }
.fl a::before { content: '›'; color: var(--gold-d); transition: transform .3s, color .3s; }
.fl a:hover { color: var(--gold-l); padding-left: 4px; }
.fl a:hover::before { color: var(--gold); transform: translateX(4px); }
.fbot { max-width: 1320px; margin: 0 auto; padding-top: 28px; border-top: 1px solid rgba(201,168,76,.07); display: flex; justify-content: space-between; align-items: center; }
.fcp { font-size: 11px; color: rgba(200,191,168,.2); letter-spacing: .5px; }
.fbl { display: flex; gap: 28px; }
.fbl a { font-size: 10px; color: rgba(200,191,168,.2); transition: color .3s; letter-spacing: .5px; }
.fbl a:hover { color: var(--gold-l); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .ag, .con-i { grid-template-columns: 1fr; gap: 60px; }
  .svc-grid, .tgrid { grid-template-columns: repeat(2, 1fr); }
  .sb-in, .pgrd { grid-template-columns: repeat(2, 1fr); }
  .pi:first-child { grid-column: span 1; min-height: auto; aspect-ratio: 4/3; }
  .pgrid { grid-template-columns: repeat(2, 1fr); }
  .pline { display: none; }
  .ftop { grid-template-columns: 1fr 1fr; }
  .gg { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
  .gi { grid-column: span 1 !important; }
}
@media (max-width: 768px) {
  nav { padding: 18px 24px; }
  nav.stuck { padding: 13px 24px; }
  .nav-ul, .nav-cta { display: none; }
  .burger { display: flex; }
  .svc-grid, .tgrid, .sb-in, .pgrd { grid-template-columns: 1fr; }
  .pi:first-child { aspect-ratio: 4/3; min-height: auto; }
  .pgrid { grid-template-columns: 1fr; }
  .cfrow { grid-template-columns: 1fr; }
  .ftop { grid-template-columns: 1fr; gap: 36px; }
  .fbot { flex-direction: column; gap: 14px; text-align: center; }
  .hero-logo { width: 210px; }
  .astack { height: 340px; }
  .ai1 { width: 88%; height: 260px; }
  .ai2 { width: 55%; height: 170px; }
  .gg { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .ag, .svc-i, .gal-i, .proc-i, .team-i, .tes-i, .port-i, .con-i { padding-left: 24px !important; padding-right: 24px !important; }
  .sb, .qband, .cta-s { padding-left: 24px; padding-right: 24px; }
  footer { padding: 50px 24px 30px; }
}
