/* =========================================================================
   MANDY'S EXTENSION · Latina
   Design system — luxury atelier
   ========================================================================= */

:root {
  /* Core palette — swap here to re-theme the entire site */
  --bg:              #0B0706;
  --bg-soft:         #141010;
  --bg-elevated:     #1C1714;
  --bg-elevated-2:   #241D18;
  --foreground:      #F5EDE2;
  --foreground-soft: #EADFCE;
  --muted:           #A69585;
  --muted-2:         #78675A;

  /* Accents (from the logo's gold + plum monogram) */
  --primary:         #C9A876;   /* champagne gold */
  --primary-bright:  #E6C98E;   /* brighter gold */
  --primary-deep:    #8A6F3F;   /* deep antique gold */
  --primary-foreground: #0B0706;

  --accent:          #7E2E71;   /* deep plum from the silhouette */
  --accent-bright:   #B04BA0;   /* brighter plum */
  --accent-soft:     rgba(176, 75, 160, 0.22);

  --gold:            #D4B483;
  --gold-light:      #EFD9AD;

  --border:          rgba(201, 168, 118, 0.14);
  --border-strong:   rgba(201, 168, 118, 0.28);
  --card:            rgba(28, 23, 20, 0.55);
  --card-strong:     rgba(36, 29, 24, 0.82);

  /* Radii & motion */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --ease: cubic-bezier(.22,.9,.3,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-display: 'Italiana', 'Cormorant Garamond', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Container */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 40px);
}

/* ============ BASE ============ */

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

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease), opacity .3s var(--ease); }
a:hover { color: var(--primary-bright); }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--primary); color: var(--primary-foreground); }

/* Focus */
:focus-visible {
  outline: 2px solid var(--primary-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============ AMBIENT BACKGROUND ============ */

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .45;
  animation: drift 22s ease-in-out infinite alternate;
}
.ambient__orb--gold {
  width: 46vmax; height: 46vmax;
  top: -18vmax; left: -10vmax;
  background: radial-gradient(circle, rgba(201, 168, 118, 0.45) 0%, rgba(201, 168, 118, 0) 65%);
}
.ambient__orb--plum {
  width: 42vmax; height: 42vmax;
  bottom: -15vmax; right: -8vmax;
  background: radial-gradient(circle, rgba(126, 46, 113, 0.55) 0%, rgba(126, 46, 113, 0) 65%);
  animation-delay: -8s;
}
.ambient__grain {
  position: absolute;
  inset: 0;
  opacity: .035;
  mix-blend-mode: overlay;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

@keyframes drift {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(5vmax, 3vmax) scale(1.08); }
}

/* ============ TYPOGRAPHY ============ */

.h-serif,
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.08;
  color: var(--foreground);
  margin: 0;
}

h1 { font-size: clamp(2.5rem, 7vw, 5.25rem); }
h2 { font-size: clamp(2rem, 4.8vw, 3.6rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.65rem); font-weight: 500; letter-spacing: -0.005em; }

.gradient-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(100deg,
    var(--primary-bright) 0%,
    var(--gold-light) 40%,
    var(--primary) 65%,
    var(--accent-bright) 120%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.lead {
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  color: var(--foreground-soft);
  line-height: 1.55;
  max-width: 56ch;
  font-weight: 300;
}

p { color: var(--foreground-soft); font-weight: 300; }
p, li, figcaption, blockquote { line-height: 1.65; }

.muted { color: var(--muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--primary);
  margin: 0 0 20px;
}
.eyebrow .line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary));
}

.stars {
  color: var(--primary-bright);
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.mono, .mono-small {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--primary);
}
.mono { font-size: 0.7rem; font-weight: 600; }
.mono-small { font-size: 0.58rem; color: var(--muted); }

/* ============ LAYOUT ============ */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  width: 100%;
  position: relative;
}

.section {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  z-index: 1;
}

.section__head {
  max-width: 780px;
  margin: 0 auto clamp(48px, 6vw, 80px);
  text-align: center;
}
.section__head .eyebrow { justify-content: center; }
.section__head .lead { margin: 22px auto 0; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.grid-2--wide { gap: clamp(40px, 5vw, 72px); }

@media (max-width: 880px) {
  .grid-2 { grid-template-columns: 1fr; }
}

/* ============ BUTTONS ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all .4s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--lg { padding: 18px 34px; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }

.btn--gold {
  background: linear-gradient(130deg, var(--primary-bright), var(--primary) 50%, var(--primary-deep));
  color: var(--primary-foreground);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.35) inset,
    0 -1px 0 rgba(0,0,0,0.25) inset,
    0 12px 32px -10px rgba(201, 168, 118, 0.55);
}
.btn--gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s var(--ease-out);
}
.btn--gold:hover {
  color: var(--primary-foreground);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.45) inset,
    0 -1px 0 rgba(0,0,0,0.25) inset,
    0 18px 40px -10px rgba(230, 201, 142, 0.65);
}
.btn--gold:hover::after { transform: translateX(100%); }

.btn--ghost {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  color: var(--primary-bright);
  border-color: var(--primary);
  background: rgba(201, 168, 118, 0.06);
}

/* ============ NAV ============ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all .4s var(--ease);
  padding: 14px 0;
}
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,7,6,.9), rgba(11,7,6,.55) 70%, rgba(11,7,6,0));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled::before {
  opacity: 1;
  border-bottom-color: var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.nav__brand { display: inline-flex; align-items: center; position: relative; }
.nav__logo {
  height: 44px;
  width: auto;
  transition: transform .4s var(--ease);
}
.nav__brand:hover .nav__logo { transform: scale(1.02); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav__menu a {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--foreground-soft);
  letter-spacing: 0.03em;
  position: relative;
}
.nav__menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width .4s var(--ease);
}
.nav__menu a:hover { color: var(--foreground); }
.nav__menu a:hover::after { width: 100%; }
.nav__menu a.is-active { color: var(--foreground); }
.nav__menu a.is-active::after { width: 100%; }

.nav__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--foreground-soft);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: 999px;
  transition: all .3s var(--ease);
}
.nav__phone:hover {
  border-color: var(--primary);
  color: var(--primary-bright);
}
.nav__phone svg { color: var(--primary); flex-shrink: 0; }

.nav__burger {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 11px;
  gap: 4px;
  flex-direction: column;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}
.nav__burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--foreground);
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 18px var(--gutter) 26px;
  background: rgba(11,7,6,.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}
.nav__mobile a {
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--foreground);
}
.nav__mobile .btn { margin-top: 14px; padding: 16px; }

@media (max-width: 1080px) {
  .nav__menu { gap: 24px; }
  .nav__phone span { display: none; }
  .nav__phone { padding: 10px; }
}
@media (max-width: 960px) {
  .nav__menu { display: none; }
  .nav__phone { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__mobile.is-open { display: flex; }
  .nav__ctas .btn { padding: 11px 18px; font-size: 0.82rem; }
}

/* ============ HERO ============ */

.hero {
  position: relative;
  min-height: 100vh;
  padding: clamp(120px, 18vh, 180px) 0 clamp(80px, 12vh, 120px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.hero__glow--1 {
  width: 60vmax; height: 60vmax;
  top: -20vmax; right: -15vmax;
  background: radial-gradient(circle, rgba(201, 168, 118, 0.3) 0%, transparent 60%);
  animation: heroDrift1 18s ease-in-out infinite alternate;
}
.hero__glow--2 {
  width: 50vmax; height: 50vmax;
  bottom: -15vmax; left: -10vmax;
  background: radial-gradient(circle, rgba(126, 46, 113, 0.35) 0%, transparent 60%);
  animation: heroDrift2 22s ease-in-out infinite alternate;
}
.hero__silk {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, transparent 30%, rgba(11, 7, 6, 0.6) 70%, var(--bg) 100%),
    repeating-linear-gradient(115deg, transparent 0 2px, rgba(201, 168, 118, 0.02) 2px 3px);
  opacity: .9;
}

@keyframes heroDrift1 {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(-5vmax, 3vmax) scale(1.1); }
}
@keyframes heroDrift2 {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(6vmax, -4vmax) scale(1.15); }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  border-radius: 999px;
  background: rgba(201, 168, 118, 0.05);
  border: 1px solid var(--border);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--foreground-soft);
  margin-bottom: 28px;
}
.hero__eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(201, 168, 118, 0.18);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(201, 168, 118, 0.18); }
  50%       { box-shadow: 0 0 0 9px rgba(201, 168, 118, 0); }
}

.hero__title {
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 0.98;
  margin: 0 0 28px;
  font-weight: 300;
}

.hero__sub {
  max-width: 54ch;
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
  color: var(--foreground-soft);
  margin: 0 0 40px;
  font-weight: 300;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__trust {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--muted);
  padding-top: 28px;
  border-top: 1px solid var(--border);
  max-width: 420px;
}
.hero__trust .stars { font-size: 0.95rem; }

/* Hero visual frame */
.hero__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 440px;
  justify-self: end;
  width: 100%;
}
.hero__portrait {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  padding: 3px;
  background: linear-gradient(140deg, var(--primary) 0%, transparent 30%, transparent 70%, var(--accent) 100%);
}
.hero__portrait-inner {
  width: 100%;
  height: 100%;
  border-radius: calc(var(--r-lg) - 3px);
  background:
    radial-gradient(ellipse at 75% 10%,  rgba(201,168,118,.22), transparent 55%),
    radial-gradient(ellipse at 15% 90%,  rgba(126,46,113,.40), transparent 55%),
    linear-gradient(180deg, #1A1410 0%, #0B0706 100%);
  position: relative;
  overflow: hidden;
}

.hero__strands {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: .9;
  animation: strandsBreathe 9s ease-in-out infinite alternate;
}
@keyframes strandsBreathe {
  from { transform: translateY(-6px) scale(1.01); opacity: .75; }
  to   { transform: translateY(6px)  scale(1.04); opacity: 1; }
}

.hero__photo-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(11,7,6,0) 45%, rgba(11,7,6,.55) 80%, rgba(11,7,6,.92) 100%);
  z-index: 1;
}
.hero__portrait-inner::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(201,168,118,.35);
  border-radius: 14px;
  pointer-events: none;
  z-index: 2;
}
.hero__monogram {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 62%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
  opacity: .95;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 20px 45px rgba(0,0,0,.55));
}

.hero__tag {
  position: absolute;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(240, 233, 220, .78);
  z-index: 3;
}
.hero__tag--top    { top: 36px; left: 36px; }
.hero__tag--bottom { bottom: 36px; right: 36px; }
.hero__portrait-inner .hero__tag--bottom { display: none; }

.hero__caption {
  position: absolute;
  left: 36px;
  bottom: 72px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  z-index: 3;
  max-width: 80%;
}
.hero__caption-line {
  width: 30px;
  height: 1px;
  background: var(--primary);
  flex-shrink: 0;
  margin-bottom: 10px;
}
.hero__caption-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.25;
  color: var(--foreground);
  font-weight: 400;
}
.hero__caption-text em {
  display: block;
  font-style: italic;
  background: linear-gradient(135deg, var(--primary-bright), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.35rem;
}

.hero__chip {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(20, 14, 11, .78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201,168,118,.28);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--foreground);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,.6);
  animation: chipFloat 5s ease-in-out infinite alternate;
}
.hero__chip--tess { top: 18%; right: -18px; }
.hero__chip--nat  { top: 58%; left: -22px; animation-delay: -2.5s; }
.hero__chip-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(201,168,118,.22);
}
.hero__chip-dot--plum {
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(126,46,113,.28);
}
@keyframes chipFloat {
  from { transform: translateY(-4px); }
  to   { transform: translateY(4px); }
}

.hero__badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  z-index: 5;
  white-space: nowrap;
  background: rgba(20, 14, 11, .82);
  border: 1px solid var(--border-strong);
  padding: 14px 18px;
  border-radius: var(--r);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.6);
  backdrop-filter: blur(10px);
}
.hero__badge-row {
  display: flex;
  gap: 3px;
  color: var(--primary-bright);
  font-size: 1rem;
  margin-bottom: 4px;
}
.hero__badge-row em { font-style: normal; }
.hero__badge-label {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.66rem;
  color: var(--muted);
}

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__frame { max-width: 380px; margin-top: 40px; }
  .hero__chip--tess { right: -8px; }
  .hero__chip--nat  { left: -8px; }
}
@media (max-width: 520px) {
  .hero__frame { max-width: 320px; }
  .hero__badge { padding: 10px 14px; bottom: 16px; right: 16px; }
  .hero__tag--top    { top: 24px; left: 24px; }
  .hero__tag--bottom { bottom: 24px; right: 24px; }
  .hero__caption     { left: 24px; bottom: 58px; }
  .hero__caption-text    { font-size: 1rem; }
  .hero__caption-text em { font-size: 1.15rem; }
  .hero__chip { font-size: 0.6rem; padding: 7px 11px; }
}

/* ============ MARQUEE ============ */

.marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  background: linear-gradient(180deg, var(--bg), var(--bg-soft));
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}
.marquee__track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 36s linear infinite;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  color: var(--foreground);
}
.marquee__track span { letter-spacing: 0.01em; }
.marquee__track .dotm { color: var(--primary); }

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============ ATELIER (intro) ============ */

.atelier h2 { margin-bottom: 26px; }
.atelier .lead { margin-bottom: 18px; }

.sig {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sig__script {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--primary-bright);
  letter-spacing: 0.01em;
}
.sig__label {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.atelier__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 28px 24px;
  border-radius: var(--r);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(201, 168, 118, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.stat-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.stat-card:hover::before { opacity: 1; }
.stat-card__num {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  color: var(--primary-bright);
  line-height: 1;
  letter-spacing: -0.01em;
}
.stat-card__stars { color: var(--primary-bright); letter-spacing: 2px; font-size: 0.85rem; }
.stat-card__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
}
.stat-card--accent {
  background: linear-gradient(155deg, rgba(126, 46, 113, 0.22), rgba(28, 23, 20, 0.5));
  border-color: rgba(176, 75, 160, 0.22);
}
.stat-card--accent .stat-card__num { color: var(--gold-light); }

/* ============ BENEFITS ============ */

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1040px) { .benefits__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .benefits__grid { grid-template-columns: 1fr; } }

.benefit {
  padding: 38px 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  transition: all .5s var(--ease);
}
.benefit::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(140deg, var(--primary) 0%, transparent 40%, transparent 60%, var(--accent) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}
.benefit:hover { transform: translateY(-6px); background: var(--card-strong); }
.benefit:hover::before { opacity: 1; }

.benefit__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--primary-bright);
  background: linear-gradient(150deg, rgba(201, 168, 118, 0.12), rgba(126, 46, 113, 0.1));
  border: 1px solid var(--border-strong);
  margin-bottom: 22px;
}
.benefit__icon svg { width: 28px; height: 28px; }

.benefit h3 { margin-bottom: 10px; color: var(--foreground); }
.benefit p { margin: 0; font-size: 0.95rem; }

/* ============ SERVICES ============ */

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 960px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .services__grid { grid-template-columns: 1fr; } }

.service {
  padding: 40px 32px 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(8px);
  position: relative;
  transition: all .5s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}
.service::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary) 50%, transparent);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.service:hover {
  transform: translateY(-6px);
  background: var(--card-strong);
  border-color: var(--border-strong);
}
.service:hover::after { opacity: 1; }

.service__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2rem;
  color: var(--primary);
  line-height: 1;
  opacity: .75;
}
.service h3 { color: var(--foreground); margin: 0; }
.service p { margin: 0; font-size: 0.95rem; flex: 1; }

.service__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-bright);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  transition: all .3s var(--ease);
  align-self: flex-start;
}
.service__cta span { transition: transform .3s var(--ease); }
.service__cta:hover { color: var(--gold-light); }
.service__cta:hover span { transform: translateX(6px); }

.service--featured {
  background: linear-gradient(155deg, rgba(126, 46, 113, 0.18), rgba(28, 23, 20, 0.7));
  border-color: rgba(176, 75, 160, 0.22);
}

.service--cta {
  background: linear-gradient(150deg, rgba(201, 168, 118, 0.16), rgba(11, 7, 6, 0.7));
  border: 1px solid var(--border-strong);
  justify-content: center;
  text-align: center;
  align-items: center;
}
.service--cta h3 { font-family: var(--font-serif); font-style: italic; font-size: 1.6rem; }
.service--cta p { text-align: center; max-width: 32ch; }

/* ============ GALLERY — HORIZONTAL SCROLLER ============ */

.gallery__stage {
  position: relative;
  margin: 0 calc(var(--gutter) * -1);
}

.gallery__scroll {
  display: flex;
  gap: 16px;
  padding: 8px var(--gutter) 28px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-padding-left: var(--gutter);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  mask-image: linear-gradient(to right, transparent 0, black 3%, black 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 3%, black 97%, transparent 100%);
}
.gallery__scroll::-webkit-scrollbar { display: none; }
.gallery__scroll.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.gallery__scroll.is-dragging .gallery__tile { pointer-events: none; }

.gallery__tile {
  flex: 0 0 auto;
  position: relative;
  display: block;
  width: 300px;
  height: 440px;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  scroll-snap-align: start;
  transition: border-color .5s var(--ease), transform .5s var(--ease), box-shadow .5s var(--ease);
  color: inherit;
  text-decoration: none;
  user-select: none;
  -webkit-user-drag: none;
  will-change: transform;
}
.gallery__tile--wide  { width: 420px; }
.gallery__tile--short { height: 360px; align-self: flex-end; }

.gallery__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  filter: saturate(.98) contrast(1.03);
  transition: transform 1.4s var(--ease-out), filter .5s var(--ease);
  -webkit-user-drag: none;
}
.gallery__tile:hover {
  border-color: var(--border-strong);
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(0,0,0,.35), 0 0 0 1px rgba(201,168,118,.18);
}
.gallery__tile:hover img { transform: scale(1.06); filter: saturate(1.05) contrast(1.06); }

/* External-link badge on hover */
.gallery__tile::after {
  content: '';
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(11, 7, 6, 0.72);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-strong);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E6C98E' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'><path d='M7 17L17 7'/><path d='M7 7h10v10'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px 15px;
  opacity: 0;
  transform: translateY(-4px);
  transition: all .4s var(--ease);
  pointer-events: none;
}
.gallery__tile:hover::after { opacity: 1; transform: translateY(0); }

/* Controls (desktop) */
.gallery__controls {
  position: absolute;
  top: -74px;
  right: var(--gutter);
  display: flex;
  gap: 10px;
  z-index: 2;
}
.gallery__arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(28, 23, 20, 0.78);
  border: 1px solid var(--border-strong);
  color: var(--foreground);
  backdrop-filter: blur(10px);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease), opacity .3s var(--ease);
}
.gallery__arrow:hover:not(:disabled) {
  background: var(--primary);
  color: var(--bg);
  transform: translateY(-2px);
  border-color: var(--primary-bright);
}
.gallery__arrow:disabled { opacity: .25; cursor: not-allowed; }

.gallery__hint {
  text-align: center;
  margin: 14px auto 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
  letter-spacing: .02em;
}

@media (max-width: 960px) {
  .gallery__tile { width: 240px; height: 360px; }
  .gallery__tile--wide { width: 320px; }
  .gallery__tile--short { height: 300px; }
}
@media (max-width: 560px) {
  .gallery__controls { display: none; }
  .gallery__scroll {
    gap: 12px;
    padding: 6px var(--gutter) 22px;
    mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 6%, black 94%, transparent 100%);
  }
  .gallery__tile { width: 200px; height: 300px; }
  .gallery__tile--wide { width: 260px; }
  .gallery__tile--short { height: 260px; }
  .gallery__hint { font-size: 0.85rem; padding: 0 var(--gutter); }
}

.gallery__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}
@media (max-width: 560px) {
  .gallery__cta .btn { width: 100%; }
}

.gallery__note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.92rem;
  color: var(--muted);
}
.gallery__note a { color: var(--primary-bright); border-bottom: 1px solid var(--primary); padding-bottom: 2px; }

/* ============ WHY ============ */

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why__grid { grid-template-columns: 1fr; } }

.why__card {
  padding: 36px 30px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(8px);
  transition: all .4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.why__card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.why__k {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--primary);
  letter-spacing: 0.25em;
}
.why__card h3 { font-size: 1.35rem; }
.why__card p { margin: 0; font-size: 0.94rem; }

.why__card--gold {
  background: linear-gradient(155deg, rgba(201, 168, 118, 0.15), rgba(11, 7, 6, 0.6));
  border-color: rgba(201, 168, 118, 0.32);
}
.why__card--gold h3 { color: var(--gold-light); }

/* ============ TESTIMONIALS ============ */

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 960px) { .testimonials__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .testimonials__grid { grid-template-columns: 1fr; } }

.testimonial {
  margin: 0;
  padding: 40px 32px 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(8px);
  position: relative;
  transition: all .4s var(--ease);
}
.testimonial:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.testimonial__quote {
  position: absolute;
  top: 8px; left: 20px;
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--primary);
  opacity: .3;
  line-height: 1;
}
.testimonial blockquote {
  margin: 0 0 26px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.18rem;
  color: var(--foreground);
  position: relative;
  z-index: 1;
  line-height: 1.5;
}
.testimonial figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.testimonial figcaption strong {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--foreground-soft);
  letter-spacing: 0.03em;
}
.testimonial--featured {
  background: linear-gradient(155deg, rgba(201, 168, 118, 0.16), rgba(28, 23, 20, 0.7));
  border-color: rgba(201, 168, 118, 0.28);
}
.testimonial--featured blockquote { color: var(--gold-light); }

/* ============ PROCESS ============ */

.process__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  counter-reset: step;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 960px) {
  .process__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .process__list { grid-template-columns: 1fr; }
}

.process__step {
  padding: 44px 28px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background .4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.process__step:last-child { border-right: none; }
.process__step:hover {
  background: linear-gradient(180deg, rgba(201, 168, 118, 0.05), transparent);
}
@media (max-width: 960px) {
  .process__step:nth-child(2) { border-right: none; }
}
@media (max-width: 560px) {
  .process__step { border-right: none; border-bottom: 1px solid var(--border); }
  .process__step:last-child { border-bottom: none; }
}

.process__num {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary-bright), var(--primary-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.process__step h3 { font-size: 1.5rem; }
.process__step p { margin: 0; font-size: 0.95rem; }

/* ============ LOCATION ============ */

.info-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.info-list li {
  display: flex;
  align-items: center;
  gap: 16px;
}
.info-list__icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, rgba(201, 168, 118, 0.14), rgba(126, 46, 113, 0.1));
  border: 1px solid var(--border-strong);
  color: var(--primary);
  line-height: 0;
}
.info-list__icon svg {
  display: block;
}
.info-list li strong {
  display: block;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.info-list li div span, .info-list li a {
  display: block;
  font-size: 1.05rem;
  color: var(--foreground);
  line-height: 1.5;
}
.info-list li span.muted { font-size: 0.88rem; color: var(--muted); }
.info-list li a:hover { color: var(--primary-bright); }

.socials {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.socials__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--muted);
  margin-right: 6px;
}
.socials__link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, rgba(201, 168, 118, 0.14), rgba(126, 46, 113, 0.1));
  border: 1px solid var(--border-strong);
  color: var(--primary);
  transition: transform .3s var(--ease), color .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.socials__link:hover {
  color: var(--primary-bright);
  border-color: var(--primary);
  background: linear-gradient(140deg, rgba(201, 168, 118, 0.28), rgba(126, 46, 113, 0.18));
  transform: translateY(-2px);
}
.socials__link svg { display: block; }

.location__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.map-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: var(--bg-elevated);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.6);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.4) contrast(.92) brightness(.82) sepia(.15) hue-rotate(-10deg);
  transition: filter .6s var(--ease);
}
.map-wrap:hover iframe { filter: grayscale(.15) contrast(.98) brightness(.95) sepia(.05); }
.map-wrap__link {
  position: absolute;
  bottom: 16px; left: 16px;
  padding: 10px 16px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--primary-bright);
  backdrop-filter: blur(10px);
}
.map-wrap__link:hover {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

@media (max-width: 880px) {
  .map-wrap { aspect-ratio: 16 / 11; }
}

/* ============ FAQ ============ */

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

.faq__item {
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
  transition: padding .3s var(--ease);
}
.faq__item[open] { padding-bottom: 10px; }

.faq__item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  padding: 26px 4px;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  color: var(--foreground);
  transition: color .3s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--primary-bright); }

.faq__icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--primary);
  transition: transform .35s var(--ease);
}
.faq__icon::before {
  width: 14px; height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq__icon::after {
  width: 1.5px; height: 14px;
  transform: translate(-50%, -50%);
}
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) scaleY(0); }

.faq__a {
  padding: 4px 4px 20px;
  font-size: 1rem;
  color: var(--foreground-soft);
  max-width: 68ch;
}
.faq__a a { color: var(--primary-bright); border-bottom: 1px solid var(--primary); padding-bottom: 2px; }

/* ============ FINAL CTA ============ */

.final-cta__card {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(50px, 7vw, 84px) clamp(28px, 5vw, 72px);
  text-align: center;
  border-radius: var(--r-xl);
  background:
    radial-gradient(circle at 30% 20%, rgba(201, 168, 118, 0.22), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(126, 46, 113, 0.25), transparent 55%),
    linear-gradient(160deg, rgba(28, 23, 20, 0.9), rgba(11, 7, 6, 0.95));
  border: 1px solid var(--border-strong);
  position: relative;
  overflow: hidden;
  box-shadow: 0 60px 120px -40px rgba(0,0,0,.8);
}
.final-cta__card::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(140deg, var(--primary) 0%, transparent 40%, transparent 60%, var(--accent) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .7;
  pointer-events: none;
}
.final-cta__mono {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  color: var(--primary);
  margin-bottom: 20px;
  display: inline-block;
}
.final-cta h2 { font-size: clamp(2.5rem, 5vw, 4rem); margin: 0 0 22px; line-height: 1.02; }
.final-cta p { max-width: 52ch; margin: 0 auto 40px; font-size: 1.08rem; color: var(--foreground-soft); }

.final-cta__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.final-cta__trust {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ============ FOOTER ============ */

.footer {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
}
@media (max-width: 960px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__brand { grid-column: span 2; }
}
@media (max-width: 520px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
}

.footer__logo { height: 46px; width: auto; margin-bottom: 18px; }
.footer__tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--foreground-soft);
  max-width: 32ch;
  line-height: 1.5;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 14px;
}
.footer__col a, .footer__col span {
  font-size: 0.94rem;
  color: var(--foreground-soft);
}
.footer__col a:hover { color: var(--primary-bright); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--muted);
}
.footer__mono {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
}
.footer__love {
  font-size: 0.78rem;
  color: var(--muted);
}
.footer__agency {
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color var(--t, .2s) var(--ease);
}
.footer__agency:hover { color: var(--primary-bright); }

@media (max-width: 720px) {
  .footer__bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* ============ FLOATING WHATSAPP ============ */

.fab-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 15px 40px -8px rgba(18, 140, 126, 0.6);
  z-index: 90;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.fab-wa:hover {
  transform: translateY(-3px) scale(1.05);
  color: white;
  box-shadow: 0 22px 50px -8px rgba(37, 211, 102, 0.7);
}
.fab-wa__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: fabPulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes fabPulse {
  0%   { transform: scale(1);   opacity: .8; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============ MOBILE STICKY CTA ============ */

.mobile-cta {
  display: none;
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 95;
  gap: 10px;
  padding: 10px;
  background: rgba(11, 7, 6, .92);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(14px);
  border-radius: 999px;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,.8);
}
.mobile-cta .btn { flex: 1; padding: 13px 16px; font-size: 0.86rem; }
.mobile-cta .btn--ghost { border-color: transparent; }

@media (max-width: 720px) {
  .mobile-cta { display: flex; }
  .fab-wa { bottom: 82px; right: 16px; width: 54px; height: 54px; }
  .fab-wa svg { width: 22px; height: 22px; }
  body { padding-bottom: 70px; }
}

/* ============ REVEAL ANIMATIONS ============ */

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  will-change: opacity, transform;
}
html.js .reveal {
  opacity: 0;
  transform: translateY(28px);
}
html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}

/* ============ DIARY — HORIZONTAL SCROLL GALLERY ============ */

.diary { padding-top: 0; }
.diary .section__head { margin-bottom: clamp(32px, 4vw, 56px); }

.diary__scroller {
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 14px 0 28px;
  cursor: grab;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.diary__scroller::-webkit-scrollbar { display: none; }
.diary__scroller.is-dragging { cursor: grabbing; scroll-behavior: auto; }

.diary__track {
  display: flex;
  gap: 18px;
  padding: 0 clamp(20px, 6vw, 80px);
  width: max-content;
}

.diary__item {
  margin: 0;
  flex: 0 0 auto;
  width: clamp(220px, 28vw, 340px);
  aspect-ratio: 4 / 5;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  scroll-snap-align: center;
  transition: all .5s var(--ease);
  position: relative;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.5);
}
.diary__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,7,6,.4), transparent 40%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.diary__item:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.diary__item:hover::after { opacity: 1; }
.diary__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1.2s var(--ease-out);
  filter: saturate(.98) contrast(1.03);
  pointer-events: none;
}
.diary__item:hover img { transform: scale(1.06); }

.diary__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}
.diary__arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--card);
  color: var(--foreground);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all .3s var(--ease);
}
.diary__arrow:hover {
  border-color: var(--primary);
  color: var(--primary-bright);
  background: rgba(201, 168, 118, 0.1);
  transform: translateY(-2px);
}
.diary__arrow:disabled { opacity: .35; cursor: not-allowed; transform: none; }
.diary__hint {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--muted);
}

@media (max-width: 560px) {
  .diary__hint { display: none; }
}

/* ============ FINE-TUNING ============ */

/* Smooth hash-scroll anchor offset */
main > section[id] { scroll-margin-top: 90px; }

/* ============ DEMO DIALOG (first-visit) ============ */
.demo-dialog {
  border: none;
  background: transparent;
  padding: 0;
  max-width: 540px;
  width: calc(100% - 32px);
  margin: auto;
  color: var(--foreground);
  overflow: visible;
}
.demo-dialog::backdrop {
  background: rgba(8, 5, 4, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.demo-dialog[open] {
  animation: demoDialogIn .45s var(--ease-out);
}
@keyframes demoDialogIn {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.demo-dialog-inner {
  position: relative;
  background: linear-gradient(180deg, var(--bg-elevated-2) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  padding: 44px 40px 36px;
  text-align: center;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,.7);
  overflow: hidden;
}
.demo-dialog-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at top right, rgba(201,168,118,.14), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(126,46,113,.18), transparent 55%);
}
.demo-dialog-inner > * { position: relative; z-index: 1; }

.demo-dialog-badge {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid rgba(201,168,118,0.35);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 22px;
  background: rgba(201, 168, 118, 0.05);
}

.demo-dialog-title {
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  margin: 0 0 22px;
  line-height: 1.15;
  font-weight: 300;
}

.demo-dialog-text {
  font-size: 0.95rem;
  color: var(--foreground-soft);
  line-height: 1.75;
  margin: 0 0 12px;
  text-align: left;
  font-weight: 300;
}
.demo-dialog-text strong {
  color: var(--foreground);
  font-weight: 500;
}

.demo-dialog-btn {
  margin-top: 26px;
  width: 100%;
  cursor: pointer;
}

@media (max-width: 520px) {
  .demo-dialog-inner { padding: 32px 24px 28px; }
  .demo-dialog-title { font-size: 1.4rem; }
  .demo-dialog-text { font-size: 0.9rem; }
}
