/* ================================================================
   LEENS LUXURY DESIGN — CINEMATIC STYLESHEET v2
================================================================ */

/* ===== VARIABLES ===== */
:root {
  --ink:        #0A0A0A;
  --ink-2:      #111111;
  --ink-3:      #1A1A1A;
  --ash:        #2C2C2C;
  --mist:       #5C5C5C;
  --silver:     #B0B0B0;
  --cream:      #F5F0E8;
  --white:      #FAFAFA;
  --gold:       #C9A96E;
  --gold-2:     #E8D5B0;
  --gold-3:     #A07840;

  --ff-serif:   'Cormorant Garamond', Georgia, serif;
  --ff-sans:    'Montserrat', system-ui, sans-serif;

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);

  --nav-h: 80px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-sans);
  background: var(--ink);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.is-loading { overflow: hidden; }

a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { max-width: 100%; display: block; object-fit: cover; }
::selection { background: var(--gold); color: var(--ink); }

/* ===== GRAIN OVERLAY ===== */
.grain {
  position: fixed;
  inset: -200%;
  width: 400%;
  height: 400%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 9999;
  animation: grainShift 0.15s steps(2) infinite;
}

@keyframes grainShift {
  0%  { transform: translate(0, 0); }
  25% { transform: translate(-2%, -3%); }
  50% { transform: translate(3%, 1%); }
  75% { transform: translate(-1%, 3%); }
  100%{ transform: translate(2%, -1%); }
}

/* ===== PROGRESS BAR ===== */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-3), var(--gold), var(--gold-2));
  z-index: 9998;
  transition: width 0.1s linear;
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9997;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
}

.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  z-index: 2;
}

.preloader__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.preloader__svg {
  width: 220px;
  height: 70px;
  overflow: visible;
}

.preloader__text-svg {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawText 1.4s var(--ease-out) forwards 0.3s;
}

@keyframes drawText {
  to { stroke-dashoffset: 0; }
}

.preloader__sub {
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: fadeIn 0.6s ease forwards 1.2s;
}

@keyframes fadeIn { to { opacity: 1; } }

.preloader__track {
  width: 160px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
}

.preloader__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-3), var(--gold));
  transition: width 0.05s linear;
}

.preloader__count {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--mist);
}

.preloader__curtain-top,
.preloader__curtain-bottom {
  position: absolute;
  left: 0; right: 0;
  height: 50%;
  background: var(--ink);
  z-index: 3;
  transform: translateY(0);
  transition: transform 0.9s var(--ease-in-out);
}

.preloader__curtain-top { top: 0; }
.preloader__curtain-bottom { bottom: 0; }

.preloader.opening .preloader__curtain-top { transform: translateY(-100%); }
.preloader.opening .preloader__curtain-bottom { transform: translateY(100%); }

/* ===== CUSTOM CURSOR ===== */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9996;
  mix-blend-mode: difference;
}

.cursor__dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--white);
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
}

.cursor__ring {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), border-color 0.2s ease;
}

.cursor__label {
  position: absolute;
  transform: translate(-50%, -50%);
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--white);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.cursor.is-hover .cursor__ring {
  width: 70px;
  height: 70px;
}

.cursor.is-link .cursor__ring {
  width: 55px;
  height: 55px;
  border-color: var(--white);
}

.cursor.show-label .cursor__ring {
  width: 80px;
  height: 80px;
}

.cursor.show-label .cursor__label {
  opacity: 1;
}

.cursor.show-label .cursor__dot {
  opacity: 0;
}

@media (hover: none) { .cursor { display: none; } }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 4vw, 3.5rem);
  height: var(--nav-h);
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.3s ease;
}

.nav.is-scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04);
  height: 68px;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__logo-name {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--cream);
}

.nav__logo-tag {
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1px;
}

.nav__center {
  display: flex;
  gap: 2.5rem;
}

.nav__link {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.65);
  transition: color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}

.nav__link:hover { color: var(--cream); }
.nav__link:hover::after { width: 100%; }

.nav__ig {
  color: rgba(245,240,232,0.5);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.nav__ig:hover { color: var(--gold); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: 0.4s var(--ease-out);
}

.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.open span:nth-child(2) { transform: rotate(-45deg) translate(5px, -5px); }

.nav__mobile {
  position: fixed;
  top: 0; right: 0;
  width: min(340px, 88vw);
  height: 100vh;
  background: var(--ink-2);
  border-left: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2.5rem;
  gap: 1.75rem;
  transform: translateX(100%);
  transition: transform 0.6s var(--ease-out);
  z-index: 999;
}

.nav__mobile.open { transform: translateX(0); }

.nav__mobile-link {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
  transition: color 0.3s ease;
}

.nav__mobile-link:hover { color: var(--gold); }

.nav__mobile-ig {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-top: 1.5rem;
}

/* ===== EYEBROW ===== */
.eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.eyebrow--light { color: var(--gold); }

/* ===== BUTTONS ===== */
.btn-magnetic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.05rem 2.25rem;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: color 0.4s ease, border-color 0.4s ease;
}

.btn-magnetic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-out);
}

.btn-magnetic:hover::before { transform: translateY(0); }
.btn-magnetic:hover { color: var(--ink); border-color: var(--gold); }

.btn-magnetic span { position: relative; z-index: 1; }

.btn-magnetic--light {
  border-color: var(--cream);
  color: var(--cream);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease-out) var(--delay, 0s),
              transform 0.9s var(--ease-out) var(--delay, 0s);
}

.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===== WORD MASK ===== */
.word-wrap {
  display: inline-block;
  overflow: hidden;
  line-height: 0.92;
  padding-bottom: 0.08em;
}

.word {
  display: inline-block;
  transform: translateY(105%);
  transition: transform 1.1s var(--ease-out);
}

.word.revealed { transform: translateY(0); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero__bg {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.hero__img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center;
  transform: translateY(0);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,0.88) 0%,
    rgba(10,10,10,0.6) 55%,
    rgba(10,10,10,0.4) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.5rem, 6vw, 7rem);
  padding-top: var(--nav-h);
  max-width: 900px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease 1.8s, transform 0.7s ease 1.8s;
}

.hero__eyebrow.revealed { opacity: 1; transform: translateY(0); }

.hero__eyebrow-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: var(--ff-serif);
  font-size: clamp(4rem, 9.5vw, 10.5rem);
  font-weight: 300;
  line-height: 0.9;
  color: var(--cream);
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.12em;
}

.hero__title em {
  font-style: italic;
  color: var(--gold-2);
}

.hero__word--indent { margin-left: clamp(1.5rem, 6vw, 6rem); }

.hero__sub {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  font-weight: 300;
  color: rgba(245,240,232,0.65);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease 2.4s, transform 0.7s ease 2.4s;
}

.hero__sub.revealed { opacity: 1; transform: translateY(0); }

.hero__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease 2.7s, transform 0.7s ease 2.7s;
}

.hero__actions.revealed { opacity: 1; transform: translateY(0); }

.hero__link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.6);
  transition: color 0.3s ease, gap 0.3s ease;
}

.hero__link:hover { color: var(--gold); gap: 0.9rem; }

/* Spinning badge */
.hero__badge {
  position: absolute;
  bottom: 6rem;
  right: clamp(1.5rem, 5vw, 5rem);
  width: 100px;
  height: 100px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.7s ease 3s;
}

.hero__badge.revealed { opacity: 1; }

.hero__badge-ring {
  width: 100%;
  height: 100%;
  animation: spinBadge 12s linear infinite;
}

.hero__badge-ring text {
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  fill: var(--gold);
  text-transform: uppercase;
}

@keyframes spinBadge { to { transform: rotate(360deg); } }

.hero__badge-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.4rem;
  color: var(--gold);
}

/* Hero bottom marquee */
.hero__marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(8px);
  padding: 0.9rem 0;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  animation: marqueeScroll 28s linear infinite;
}

.marquee-sep { color: var(--gold); }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== STRIP ===== */
.strip {
  background: var(--cream);
  overflow: hidden;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(10,10,10,0.06);
  border-bottom: 1px solid rgba(10,10,10,0.06);
}

.strip__track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  animation: marqueeScroll 22s linear infinite;
}

.strip__sep { color: var(--gold-3); }

/* ===== ABOUT ===== */
.about {
  background: var(--ink);
  padding: clamp(6rem, 12vw, 11rem) clamp(1.5rem, 5vw, 5rem);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(4rem, 8vw, 8rem);
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.about__visuals {
  position: relative;
  height: 620px;
}

.about__img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%;
  height: 82%;
  overflow: hidden;
}

.about__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about__img-main:hover img { transform: scale(1.04); }

.about__img-side {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%;
  height: 50%;
  overflow: hidden;
  border: 5px solid var(--ink);
}

.about__img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about__img-side:hover img { transform: scale(1.04); }

.about__number {
  position: absolute;
  top: 55%;
  left: 66%;
  background: var(--gold);
  color: var(--ink);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3;
}

.about__number-text {
  font-family: var(--ff-serif);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
}

.about__number-label {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 2px;
  line-height: 1.3;
}

.about__title {
  font-family: var(--ff-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.75rem;
}

.about__title em {
  font-style: italic;
  color: var(--gold-2);
}

.about__body {
  font-size: 0.93rem;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.95;
  margin-bottom: 1rem;
}

.about__body strong { font-weight: 500; color: var(--cream); }

.about__stats {
  display: flex;
  gap: 2.5rem;
  margin: 2.5rem 0;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stat { display: flex; flex-direction: column; }

.stat__n {
  font-family: var(--ff-serif);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.stat__l {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mist);
  margin-top: 0.4rem;
}

/* ===== SERVICES ===== */
.services {
  background: var(--ink-2);
  padding: clamp(5rem, 10vw, 10rem) clamp(1.5rem, 5vw, 5rem);
}

.services__header {
  max-width: 1300px;
  margin: 0 auto 4rem;
}

.services__title {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
}

.services__title em { font-style: italic; color: var(--gold-2); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1300px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
}

/* 3D Tilt card */
.tilt-card {
  background: var(--ink-2);
  transition: background 0.3s ease;
  transform-style: preserve-3d;
  perspective: 800px;
}

.service-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card__inner {
  position: relative;
  z-index: 2;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.6s var(--ease-out);
}

.service-card__num {
  font-family: var(--ff-serif);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.service-card__icon {
  width: 44px;
  height: 44px;
  color: rgba(245,240,232,0.3);
  transition: color 0.4s ease;
}

.service-card__icon svg { width: 100%; height: 100%; }

.service-card:hover .service-card__icon { color: var(--gold); }

.service-card__title {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
}

.service-card__desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.85;
  flex-grow: 1;
}

.service-card__cta {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  transition: letter-spacing 0.3s ease;
}

.service-card:hover .service-card__cta { letter-spacing: 0.25em; }

.service-card__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.06), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.service-card:hover .service-card__bg { opacity: 1; }

/* ===== PORTFOLIO ===== */
.portfolio {
  background: var(--ink);
  padding: clamp(5rem, 10vw, 10rem) 0 0;
  overflow: hidden;
}

.portfolio__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.portfolio__title {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
}

.portfolio__title em { font-style: italic; color: var(--gold-2); }

.portfolio__ig {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,169,110,0.3);
  padding-bottom: 2px;
  transition: border-color 0.3s ease, gap 0.3s ease;
  white-space: nowrap;
}

.portfolio__ig:hover { border-color: var(--gold); gap: 0.9rem; }

.portfolio__drag-hint {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  margin-bottom: 2.5rem;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mist);
}

/* Horizontal scroll */
.portfolio__track-wrap {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.portfolio__track-wrap.is-dragging { cursor: grabbing; }

.portfolio__track {
  display: flex;
  gap: 20px;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  will-change: transform;
}

/* Portfolio cards */
.pcard {
  flex-shrink: 0;
  width: 380px;
  height: 480px;
  position: relative;
  overflow: hidden;
  transition: flex-shrink 0.3s ease;
}

.pcard--tall {
  height: 560px;
  align-self: center;
}

.pcard__img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pcard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.pcard:hover .pcard__img img { transform: scale(1.06); }

.pcard__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.75rem;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, transparent 100%);
  transform: translateY(40%);
  transition: transform 0.5s var(--ease-out);
}

.pcard:hover .pcard__info { transform: translateY(0); }

.pcard__cat {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.pcard__title {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.pcard__loc {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(245,240,232,0.5);
}

/* ===== MANIFESTO ===== */
.manifesto {
  background: var(--cream);
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 8vw, 10rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.manifesto__mark {
  display: block;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 2.5rem;
}

.manifesto__quote {
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 1.5rem;
}

.manifesto__author {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-3);
}

/* ===== PROCESS ===== */
.process {
  background: var(--ink-3);
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 5rem);
}

.process__container {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(4rem, 8vw, 8rem);
  align-items: start;
  max-width: 1300px;
  margin: 0 auto;
}

.process__title {
  font-family: var(--ff-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.process__title em { font-style: italic; color: var(--gold-2); }

.process__intro {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.9;
}

.process__steps {
  display: flex;
  flex-direction: column;
}

.process__step {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-template-rows: auto auto;
  column-gap: 1.5rem;
  row-gap: 0.5rem;
  transition: background 0.3s ease;
}

.process__step-num  { grid-column: 1; grid-row: 1 / 3; align-self: start; padding-top: 0.2rem; }
.process__step-title { grid-column: 2; grid-row: 1; }
.process__step-desc  { grid-column: 2; grid-row: 2; }

.process__step:first-child { border-top: 1px solid rgba(255,255,255,0.05); }

.process__step:hover { background: rgba(255,255,255,0.015); }

.process__step-num {
  font-family: var(--ff-serif);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.1em;
  padding-top: 0.25rem;
}

.process__step-line { display: none; }

.process__step-title {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.process__step-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.85;
}

/* ===== TESTIMONIALS ===== */
.testi {
  background: var(--ink);
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 5rem);
}

.testi__container {
  max-width: 820px;
  margin: 0 auto;
}

.testi__track { position: relative; min-height: 280px; }

.testi__item {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  animation: fadeTesti 0.5s ease forwards;
}

.testi__item.active { display: flex; }

@keyframes fadeTesti {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.testi__stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
}

.testi__quote {
  font-family: var(--ff-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.65;
}

.testi__quote::before {
  content: '\201C';
  color: var(--gold);
  font-size: 2em;
  line-height: 0;
  vertical-align: -0.35em;
  margin-right: 4px;
}

.testi__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testi__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ash);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
  flex-shrink: 0;
}

.testi__author strong { display: block; font-size: 0.88rem; color: var(--cream); font-weight: 500; }
.testi__author span { font-size: 0.75rem; color: var(--mist); font-weight: 300; }

.testi__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.testi__btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  transition: border-color 0.3s ease, color 0.3s ease;
}

.testi__btn:hover { border-color: var(--gold); color: var(--gold); }

.testi__dots {
  display: flex;
  gap: 0.6rem;
}

.testi__dot {
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  transition: background 0.3s ease, width 0.3s ease;
}

.testi__dot.active { background: var(--gold); width: 40px; }

/* ===== CONTACT ===== */
.contact {
  background: var(--ink-2);
  overflow: hidden;
}

.contact__split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 85vh;
}

.contact__left {
  padding: clamp(5rem, 10vw, 9rem) clamp(2rem, 5vw, 5rem);
  background: var(--ink-3);
  border-right: 1px solid rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.contact__title {
  font-family: var(--ff-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.contact__title em { font-style: italic; color: var(--gold-2); }

.contact__sub {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.9;
  max-width: 360px;
  margin-bottom: 2.5rem;
}

.contact__ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.25);
  padding: 0.9rem 1.5rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.contact__ig-btn:hover {
  border-color: var(--gold);
  background: rgba(201,169,110,0.06);
}

.contact__deco {
  position: absolute;
  bottom: -2rem;
  left: -1rem;
  font-family: var(--ff-serif);
  font-size: clamp(7rem, 18vw, 16rem);
  font-weight: 600;
  line-height: 1;
  color: rgba(255,255,255,0.02);
  pointer-events: none;
  user-select: none;
}

.contact__right {
  padding: clamp(5rem, 10vw, 9rem) clamp(2rem, 5vw, 5rem);
}

/* Form — floating label style */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  position: relative;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  font-weight: 300;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: var(--cream);
  padding: 1.4rem 0 0.6rem;
  outline: none;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--gold);
}

.form-field label {
  position: absolute;
  top: 1.1rem;
  left: 0;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
  transition: top 0.3s ease, font-size 0.3s ease, color 0.3s ease;
  pointer-events: none;
}

.form-field input:focus ~ label,
.form-field input:not(:placeholder-shown) ~ label,
.form-field textarea:focus ~ label,
.form-field textarea:not(:placeholder-shown) ~ label,
.form-field select:focus ~ label,
.form-field select:valid ~ label {
  top: 0.2rem;
  font-size: 0.58rem;
  color: var(--gold);
}

.form-field__arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--mist);
}

.form-field select option {
  background: var(--ink-2);
  color: var(--cream);
}

.form-field--select label {
  top: 0.2rem;
  font-size: 0.58rem;
  color: var(--gold);
}

.form-success {
  display: none;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--gold);
  padding: 1rem;
  border: 1px solid rgba(201,169,110,0.25);
  animation: fadeTesti 0.4s ease forwards;
}

.form-success.show { display: flex; }

/* ===== BOUTIQUE NAV LINK ===== */
.nav__link--boutique {
  color: var(--gold) !important;
  border: 1px solid rgba(201,169,110,0.35);
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  transition: background var(--t), color var(--t), border-color var(--t);
}
.nav__link--boutique:hover {
  background: var(--gold);
  color: var(--ink) !important;
  border-color: var(--gold);
}
.nav__link--boutique::after { display: none; }

/* ===== BOUTIQUE TEASER ===== */
.boutique-teaser {
  position: relative;
  background: var(--ink);
  padding: 8rem 2rem;
  overflow: hidden;
  text-align: center;
}
.boutique-teaser__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201,169,110,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(201,169,110,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.boutique-teaser__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}
.boutique-teaser__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.boutique-teaser__title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.boutique-teaser__title em {
  font-style: italic;
  color: var(--gold);
}
.boutique-teaser__sub {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245,240,232,0.6);
  max-width: 560px;
  margin: 0 auto 4rem;
  line-height: 1.8;
}
.boutique-teaser__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.boutique-teaser__card {
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.4s ease;
}
.boutique-teaser__card:hover { transform: translateY(-6px); }
.boutique-teaser__card-img {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 4px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.boutique-teaser__card--featured .boutique-teaser__card-img {
  aspect-ratio: 2/3;
}
.boutique-teaser__card-cat {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
  background: rgba(10,10,10,0.5);
  backdrop-filter: blur(8px);
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
}
.boutique-teaser__card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
}
.boutique-teaser__card-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.boutique-teaser__card-price {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.boutique-teaser__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.1rem 3rem;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 1.5rem;
}
.boutique-teaser__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.3);
}
.boutique-teaser__note {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(245,240,232,0.35);
}

@media (max-width: 768px) {
  .boutique-teaser__cards {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .boutique-teaser__card--featured .boutique-teaser__card-img { aspect-ratio: 3/4; }
  .nav__link--boutique { padding: 0.25rem 0.7rem; font-size: 0.75rem; }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding: 5rem clamp(1.5rem, 5vw, 5rem) 4rem;
  max-width: 1300px;
  margin: 0 auto;
  align-items: start;
}

.footer__logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.footer__logo-name {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.06em;
  line-height: 1;
}

.footer__logo-tag {
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

.footer__tagline {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--mist);
  margin-bottom: 1.5rem;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--mist);
  transition: border-color 0.3s ease, color 0.3s ease;
}

.footer__social:hover { border-color: var(--gold); color: var(--gold); }

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__col-title {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.footer__col a {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--mist);
  transition: color 0.3s ease;
}

.footer__col a:hover { color: var(--gold); }

.footer__ig { color: var(--gold) !important; font-size: 0.8rem !important; }

.footer__ig-desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--ash);
  line-height: 1.6;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem clamp(1.5rem, 5vw, 5rem);
  border-top: 1px solid rgba(255,255,255,0.04);
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer__bottom span {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.2);
}

.footer__wordmark {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  font-family: var(--ff-serif);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 600;
  color: rgba(255,255,255,0.018);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* ================================================================
   WHATSAPP BUTTON
================================================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 500;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease, opacity 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
}

.whatsapp-btn.show {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}

.whatsapp-btn__tooltip {
  position: absolute;
  left: 64px;
  background: #25D366;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.whatsapp-btn:hover .whatsapp-btn__tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ================================================================
   BEFORE / AFTER SLIDER
================================================================ */
.ba-section {
  background: var(--ink-2);
  padding: clamp(5rem, 10vw, 9rem) 0 0;
}

.ba-section__header {
  text-align: center;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  margin-bottom: 3rem;
}

.ba-section__title {
  font-family: var(--ff-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.ba-section__title em { font-style: italic; color: var(--gold-2); }

.ba-section__desc {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--mist);
  text-transform: uppercase;
}

.ba-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem) clamp(3rem, 6vw, 5rem);
}

.ba-slider {
  position: relative;
  width: 100%;
  height: clamp(300px, 55vw, 560px);
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  border: 1px solid rgba(255,255,255,0.04);
}

.ba-after,
.ba-before {
  position: absolute;
  inset: 0;
}

.ba-after img,
.ba-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.ba-before {
  width: 50%;
  overflow: hidden;
}

.ba-before img {
  width: auto;
  min-width: 100%;
  max-width: none;
  /* The before image fills the slider width, clipped */
  width: 100%;
}

.ba-label {
  position: absolute;
  top: 1.25rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  backdrop-filter: blur(8px);
}

.ba-label--after {
  right: 1.25rem;
  background: rgba(201,169,110,0.85);
  color: var(--ink);
}

.ba-label--before {
  left: 1.25rem;
  background: rgba(10,10,10,0.75);
  color: var(--cream);
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  pointer-events: none;
}

.ba-handle__line {
  flex: 1;
  width: 2px;
  background: var(--gold);
}

.ba-handle__circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.ba-project-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 1.5rem;
}

.ba-project-cat {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.3);
  padding: 0.25rem 0.6rem;
}

.ba-project-name {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--silver);
  flex: 1;
}

.ba-project-cta {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: letter-spacing 0.3s ease;
}

.ba-project-cta:hover { letter-spacing: 0.18em; }

/* ================================================================
   CONVERSION / SALES ELEMENTS
================================================================ */

/* ===== ANNOUNCEMENT BAR ===== */
.announce-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: var(--gold-3);
  color: var(--ink);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
  transition: transform 0.4s ease, height 0.4s ease;
}

.announce-bar.hidden {
  transform: translateY(-100%);
  height: 0;
}

.announce-bar__track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  animation: marqueeScroll 24s linear infinite;
  padding: 0 1.5rem;
  flex: 1;
}

.announce-bar__track strong { font-weight: 600; }

.announce-bar__sep { color: var(--gold-3); opacity: 0.5; }

.announce-bar__urgent { color: var(--ink-3); font-weight: 500; }

.announce-bar__close {
  position: absolute;
  right: 0.75rem;
  font-size: 0.65rem;
  color: var(--ink);
  opacity: 0.6;
  padding: 0.4rem;
  transition: opacity 0.2s;
  z-index: 2;
  background: transparent;
  border: none;
  cursor: pointer;
}

.announce-bar__close:hover { opacity: 1; }

/* Push nav down when bar is visible */
body:not(.bar-hidden) .nav { top: 36px; }
body.bar-hidden .nav { top: 0; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--ink-2);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 1.5rem clamp(1.5rem, 5vw, 5rem);
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 4vw, 3rem);
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.trust-item svg { color: var(--gold); flex-shrink: 0; }

.trust-item span {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.4;
}

.trust-item strong { display: block; font-weight: 600; color: var(--cream); }

.trust-bar__sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
}

/* ===== POPUP ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.popup-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.popup {
  background: var(--ink-2);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.5s var(--ease-out);
}

.popup-overlay.show .popup {
  transform: translateY(0) scale(1);
}

.popup__close {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 10;
  font-size: 0.75rem;
  color: var(--mist);
  padding: 0.5rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s, border-color 0.2s;
  background: none;
  cursor: pointer;
}

.popup__close:hover { color: var(--cream); border-color: rgba(255,255,255,0.3); }

.popup__left {
  position: relative;
  min-height: 320px;
}

.popup__img {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?w=700&q=80') center/cover no-repeat;
}

.popup__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 50%);
}

.popup__img-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  z-index: 2;
}

.popup__right {
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.popup__tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(201,169,110,0.15);
  color: var(--gold);
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(201,169,110,0.3);
  width: fit-content;
}

.popup__title {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
}

.popup__title em { font-style: italic; color: var(--gold-2); }

.popup__desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.7;
}

.popup__desc strong { color: var(--cream); font-weight: 500; }

.popup__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.popup__field input,
.popup__field select {
  width: 100%;
  font-family: var(--ff-sans);
  font-size: 0.875rem;
  font-weight: 300;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--cream);
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.3s ease;
  border-radius: 0;
  appearance: none;
}

.popup__field input::placeholder { color: rgba(245,240,232,0.3); }
.popup__field input:focus,
.popup__field select:focus { border-color: var(--gold); }
.popup__field select option { background: var(--ink-2); }

.popup__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: 0.25rem;
}

.popup__btn:hover { background: var(--gold-2); transform: translateY(-1px); }

.popup__legal {
  font-size: 0.65rem;
  color: var(--mist);
  text-align: center;
  font-weight: 300;
}

.popup__trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--mist);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 0.75rem;
  margin-top: auto;
}

/* ===== FLOATING CTA ===== */
.float-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.float-cta.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.float-cta__btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 1.4rem;
  box-shadow: 0 8px 30px rgba(201,169,110,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.float-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,169,110,0.45);
}

/* ===== STICKY MOBILE BAR ===== */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 490;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}

.sticky-bar.show { transform: translateY(0); }

.sticky-bar__cta {
  background: var(--gold);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1.25rem;
  flex: 1;
  text-align: center;
}

.sticky-bar__ig {
  color: var(--silver);
  padding: 0.5rem 0.75rem;
  margin-left: 0.75rem;
  transition: color 0.3s ease;
}

.sticky-bar__ig:hover { color: var(--gold); }

/* ===== MID-PAGE CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--ink-3) 0%, #1a1400 100%);
  border-top: 1px solid rgba(201,169,110,0.12);
  border-bottom: 1px solid rgba(201,169,110,0.12);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 5rem);
}

.cta-banner__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.cta-banner__tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.35);
  padding: 0.35rem 0.8rem;
  margin-bottom: 1.25rem;
}

.cta-banner__title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1rem;
}

.cta-banner__title em { font-style: italic; color: var(--gold-2); }

.cta-banner__desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.8;
}

.cta-banner__desc strong { color: var(--gold); font-weight: 600; }

.cta-banner__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.cta-banner__spots {
  display: flex;
  gap: 6px;
}

.cta-banner__spot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.cta-banner__spot--taken { background: rgba(255,255,255,0.15); }
.cta-banner__spot--free { background: var(--gold); box-shadow: 0 0 8px rgba(201,169,110,0.5); }

.cta-banner__spots-label {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--mist);
}

.cta-banner__spots-label strong { color: var(--gold); font-weight: 600; }

.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1.1rem 2rem;
  transition: background 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-banner__btn span { position: relative; z-index: 1; }

.cta-banner__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-2);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out);
}

.cta-banner__btn:hover::before { transform: translateX(0); }
.cta-banner__btn:hover { transform: translateY(-2px); }

.cta-banner__note {
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--mist);
  letter-spacing: 0.05em;
}

/* ===== FAQ ===== */
.faq {
  background: var(--ink);
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 5rem);
}

.faq__container {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
  max-width: 1300px;
  margin: 0 auto;
}

.faq__title {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1rem;
}

.faq__title em { font-style: italic; color: var(--gold-2); }

.faq__sub {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--mist);
  margin-bottom: 1.5rem;
}

.faq__cta {
  display: inline-flex;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 1.75rem;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.faq__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-out);
}

.faq__cta:hover::before { transform: translateY(0); }
.faq__cta:hover { color: var(--ink); border-color: var(--gold); }
.faq__cta span { position: relative; z-index: 1; }

.faq__list {
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq__item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
  text-align: left;
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--cream);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s ease;
}

.faq__q:hover { color: var(--gold); }

.faq__icon {
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out), color 0.3s ease;
  color: var(--gold);
}

.faq__item.open .faq__icon {
  transform: rotate(45deg);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), padding 0.4s ease;
}

.faq__item.open .faq__a {
  max-height: 300px;
  padding-bottom: 1.4rem;
}

.faq__a p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--mist);
  line-height: 1.9;
}

.faq__a strong { color: var(--cream); font-weight: 500; }

/* ===== CONTACT CHECKLIST & URGENCY ===== */
.contact__checklist {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.contact__check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--silver);
}

.contact__check svg { color: var(--gold); flex-shrink: 0; }

.contact__urgency {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--silver);
  background: rgba(201,169,110,0.07);
  border: 1px solid rgba(201,169,110,0.2);
  padding: 0.7rem 1rem;
  margin-bottom: 1rem;
}

.contact__urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.8s ease infinite;
  flex-shrink: 0;
}

.contact__urgency strong { color: var(--gold); font-weight: 600; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* Form submit button bigger */
.btn--submit-big {
  padding: 1.25rem 2rem;
  font-size: 0.78rem;
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  font-weight: 600;
}

.btn--submit-big:hover { color: var(--ink); }
.btn--submit-big::before { background: var(--gold-2); }

.form__reassurance {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 300;
  color: var(--mist);
  text-align: center;
  justify-content: center;
}

.form__reassurance svg { color: var(--gold); flex-shrink: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .cta-banner__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq__container { grid-template-columns: 1fr; }
  .popup { grid-template-columns: 1fr; }
  .popup__left { display: none; }
  .trust-bar__sep { display: none; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__visuals { height: 380px; }
  .process__container { grid-template-columns: 1fr; }
  .contact__split { grid-template-columns: 1fr; }
  .contact__left { min-height: auto; }
  .footer__top { grid-template-columns: 1fr; gap: 3rem; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  .float-cta { display: none; }
  .sticky-bar { display: flex; }

  .nav__center, .nav__ig { display: none; }
  .nav__burger { display: flex; }

  .hero__title { font-size: clamp(3.2rem, 12vw, 5rem); }
  .hero__badge { display: none; }

  .services__grid { grid-template-columns: 1fr; }
  .testimonials__slider { grid-template-columns: 1fr; }

  .pcard { width: 300px; height: 380px; }
  .pcard--tall { height: 440px; }

  .form-row { grid-template-columns: 1fr; }

  .footer__nav { grid-template-columns: 1fr; }

  .portfolio__header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .about__stats { flex-direction: column; gap: 1.25rem; }
  .about__img-side { display: none; }
}
