/* ================= TOKENS ================= */
:root{
  --ink:        #1f0e12;
  --graphite:   #2c1319;
  --graphite-2: #3a1a21;
  --paper:      #f7f0ec;
  --paper-2:    #f0e2da;
  --white-warm: #f8ece6;
  --white-soft: #d9b8ae;
  --rose:       #8a6b2e;
  --rose-bright:#c19a4a;
  --stone:      #a3897c;

  --font-display: "Playfair Display", "Times New Roman", serif;
  --font-body: "Manrope", -apple-system, sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 64px);

  --ease: cubic-bezier(.16,.84,.44,1);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: auto; }
body{
  margin:0;
  background: var(--ink);
  color: var(--white-warm);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul,ol{ list-style:none; margin:0; padding:0; }
h1,h2,h3{ font-family: var(--font-display); font-weight:700; margin:0; letter-spacing:0; }
p{ margin:0; }

.skip-link{
  position:absolute; left:-999px; top:0; background:var(--rose-bright); color:var(--ink);
  padding:12px 20px; z-index:200; font-weight:700;
}
.skip-link:focus{ left:16px; top:16px; }

::selection{ background:var(--rose-bright); color:var(--ink); }

/* ================= HEADER ================= */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding: clamp(16px,3vw,28px) 0;
  transition: background .4s var(--ease), padding .4s var(--ease);
}
.site-header.scrolled{
  background: rgba(14,12,11,.85);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(245,239,228,.1);
}
.header-inner{
  max-width: var(--container); margin:0 auto; padding:0 var(--gutter);
  display:flex; align-items:center; justify-content:space-between;
}
.logo{ display:flex; align-items:center; gap:10px; }
.logo img{ height: clamp(32px,4vw,40px); width:auto; }
.logo-sub{ font-family: var(--font-display); font-style:italic; font-size:.9rem; color:var(--white-soft); letter-spacing:.02em; }
.main-nav{ display:flex; align-items:center; gap: clamp(18px,2.2vw,36px); }
.main-nav a{
  font-size:.84rem; letter-spacing:.03em; text-transform:uppercase; opacity:.85; font-weight:600;
  position:relative; padding-bottom:2px;
  transition: opacity .3s var(--ease), color .3s var(--ease), letter-spacing .3s var(--ease);
}
.main-nav a:hover{ opacity:1; color:var(--rose-bright); letter-spacing:.06em; }
.main-nav a::after{
  content:''; position:absolute; left:50%; bottom:-3px; width:0; height:1px; background:var(--rose-bright);
  transition: width .35s var(--ease), left .35s var(--ease);
}
.main-nav a:hover::after{ width:100%; left:0; }
.main-nav a.is-active-section{ opacity:1; color:var(--rose-bright); }
.main-nav a.is-active-section::after{ width:100%; left:0; }
.nav-cta{
  border:1.5px solid var(--rose-bright); padding:9px 18px; border-radius:999px;
  transition: background .3s var(--ease), color .3s var(--ease), letter-spacing .3s var(--ease);
}
.nav-cta::after{ display:none; }
.nav-cta:hover{ background:var(--rose-bright); color:var(--ink); letter-spacing:.06em; }
.nav-cross{
  border:1px solid rgba(245,239,228,.35); padding:8px 16px; border-radius:999px; font-size:.76rem !important;
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.nav-cross::after{ display:none; }
.nav-cross:hover{ border-color:var(--rose-bright); color:var(--rose-bright); }

.lang-switch{ display:flex; align-items:center; gap:8px; margin-left: clamp(10px,1.4vw,24px); }
.lang-switch button{
  background:none; border:1.5px solid transparent; border-radius:50%; width:32px; height:32px;
  display:flex; align-items:center; justify-content:center; cursor:pointer; padding:0;
  font-size:1.1rem; line-height:1; opacity:.55; transition: opacity .25s var(--ease), border-color .25s var(--ease);
}
.lang-switch button:hover{ opacity:.85; }
.lang-switch button.is-active{ opacity:1; border-color: var(--rose-bright); }
.lang-switch-mobile{ margin-left:0; margin-top:8px; }
.lang-switch-mobile button{ width:40px; height:40px; font-size:1.3rem; }

.menu-toggle{
  display:none; background:none; border:0; width:34px; height:22px; position:relative; cursor:pointer;
  flex-direction:column; justify-content:space-between; padding:0;
}
.menu-toggle span{
  display:block; height:2px; width:100%; background:var(--white-warm); transition: transform .3s, opacity .3s;
}
.mobile-nav{
  position:fixed; inset:0; background:var(--ink); z-index:99;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:26px;
  transform: translateY(-100%); transition: transform .5s var(--ease);
}
.mobile-nav.open{ transform: translateY(0); }
.mobile-nav a{
  font-family: var(--font-display); font-weight:700; font-size:1.7rem; text-transform:uppercase;
  transition: color .3s var(--ease), letter-spacing .3s var(--ease);
}
.mobile-nav a:hover{ color:var(--rose-bright); letter-spacing:.02em; }
.mobile-nav a.is-active-section{ color:var(--rose-bright); }

@media (max-width: 860px){
  .main-nav{ display:none; }
  .header-inner > .lang-switch{ display:none; }
  .menu-toggle{ display:flex; }
}

/* ================= FLOATING ACTIONS ================= */
.float-actions{
  position:fixed; right: clamp(16px,3vw,28px); bottom: clamp(16px,3vw,28px); z-index:90;
  display:flex; flex-direction:column; align-items:center; gap:12px;
}
.whatsapp-float, .instagram-float{
  width:56px; height:56px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  transition: transform .3s var(--ease);
}
.whatsapp-float{ background:#25D366; }
.instagram-float{
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.whatsapp-float:hover, .instagram-float:hover{ transform: scale(1.08); }
.whatsapp-float svg, .instagram-float svg{ width:28px; height:28px; fill:#fff; }

/* ================= HERO ================= */
.hero{ position:relative; height: 200vh; }
.hero-pin{
  position:relative; height:100vh; width:100%; overflow:hidden;
  display:flex; align-items:flex-end;
}
.hero-media{
  position:absolute; inset:0; overflow:hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.6);
  will-change: transform, border-radius;
}
.hero-video{
  width:100%; height:100%; object-fit:cover; object-position:center 30%;
  transform: scale(1.06);
  will-change: transform;
}
.hero-scrim{
  position:absolute; inset:0;
  background:
    linear-gradient(0deg, rgba(14,12,11,.92) 0%, rgba(14,12,11,.42) 42%, rgba(14,12,11,.16) 65%, rgba(14,12,11,.5) 100%);
}
.hero-grain{
  position:absolute; inset:0; opacity:.05; mix-blend-mode:overlay; pointer-events:none;
  background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-copy{
  position:relative; z-index:2; max-width: var(--container); margin:0 auto var(--gutter);
  padding:0 var(--gutter); width:100%;
}
.eyebrow{
  text-transform:uppercase; letter-spacing:.14em; font-size:.78rem; color:var(--rose-bright);
  margin-bottom:18px; font-weight:700;
}
.hero-copy h1{
  font-size: clamp(2.2rem, 6vw, 4.6rem); line-height:1.08; font-weight:700; max-width:18ch;
  font-style:italic;
}
.hero-stat{
  display:flex; align-items:baseline; flex-wrap:wrap; gap:2px 12px; margin-top:26px;
}
.stat-number, .stat-plus{
  font-family:var(--font-display); font-weight:700; font-size:clamp(2rem,4vw,3rem); color:var(--rose-bright);
}
.stat-label{ color:var(--white-soft); font-size:.9rem; max-width:20ch; }
.hero-sub{
  margin-top:14px; max-width:38ch; color:var(--white-soft); font-size:1.05rem; font-weight:500;
}
.hero-copy .btn{ margin-top:36px; }

/* ---- Editorial hero (KT Merry / Mary&Dean inspired: giant centered overlay) ---- */
.hero-copy-editorial{ text-align:left; }
.hero-copy-editorial .eyebrow{ display:inline-block; }
.hero-editorial-title{
  font-family: var(--font-display); font-weight:700; font-style:italic;
  font-size: clamp(2.6rem, 7.5vw, 5.6rem); line-height:1; letter-spacing:-.01em;
  max-width: 13ch; margin: 0;
}
.hero-copy-editorial .hero-sub{ margin-left:0; margin-right:auto; text-align:left; }
.hero-copy-editorial .btn{ display:flex; width:max-content; margin-left:auto; margin-right:auto; }

.hero-stat-badge{
  position:absolute; left: var(--gutter); bottom: 40px; z-index:2;
  display:flex; align-items:baseline; gap:8px;
}
.hero-stat-badge .stat-number, .hero-stat-badge .stat-plus{
  font-family:var(--font-display); font-weight:700; font-size:1.7rem; color:var(--rose-bright);
}
.hero-stat-badge .stat-label{
  color:var(--white-soft); font-size:.7rem; max-width:12ch; line-height:1.3;
  text-transform:uppercase; letter-spacing:.05em;
}
@media (max-width: 720px){
  .hero-stat-badge{ display:none; }
}

[data-reveal]{ opacity:0; transform: translateY(28px); }

.scroll-cue{
  position:absolute; right: var(--gutter); bottom: 40px; z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:10px;
  color: var(--white-soft); font-size:.7rem; letter-spacing:.18em; text-transform:uppercase;
}
.scroll-cue-line{ width:1px; height:46px; background: linear-gradient(var(--rose-bright), transparent); animation: cue 2.2s ease-in-out infinite; }
@keyframes cue{ 0%{ transform:scaleY(0); transform-origin:top;} 50%{ transform:scaleY(1); transform-origin:top;} 50.01%{ transform-origin:bottom;} 100%{ transform:scaleY(0); transform-origin:bottom;} }

/* ================= WE ARE ================= */
.weare{
  position:relative; z-index:2; background: var(--paper); color: var(--ink);
  padding: clamp(70px,12vw,140px) var(--gutter) clamp(60px,8vw,100px);
}
.weare-heading{
  max-width: var(--container); margin:0 auto;
  display:flex; align-items:center; justify-content:center; gap: clamp(12px,3vw,32px);
  font-family: var(--font-display); font-weight:700; font-style:italic;
  font-size: clamp(2.6rem, 11vw, 7.5rem); line-height:1; flex-wrap:wrap;
  perspective: 1400px;
}
[data-split-word]{ display:inline-block; transform-style: preserve-3d; will-change: transform; }
.weare-mark{
  position:relative;
  width: clamp(70px,11vw,140px); height: clamp(70px,11vw,140px); border-radius:50%;
  overflow:hidden; flex-shrink:0;
  background: var(--ink); transform-style: preserve-3d; will-change: transform;
}
.mark-face{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  backface-visibility:hidden;
}
.mark-face-back{ transform: rotateY(180deg); }
.mark-face img{ width:60%; height:60%; object-fit:contain; }
.weare-flags{
  display:flex; justify-content:center; gap:20px; margin-top:20px;
  font-size:.85rem; font-weight:700; letter-spacing:.04em; color:var(--stone);
}
.weare-body{
  max-width:760px; margin: clamp(40px,7vw,72px) auto 0; text-align:center;
}
.weare-lead{
  font-family:var(--font-display); font-weight:700; font-style:italic; font-size:clamp(1.2rem,2.4vw,1.6rem);
}
.weare-body p + p{ margin-top:18px; color:var(--stone); font-size:1rem; }
.weare-features{
  max-width: var(--container); margin: clamp(50px,8vw,84px) auto 0;
  display:grid; grid-template-columns: repeat(3,1fr); gap: clamp(20px,3vw,28px);
}
.weare-features li{
  background:#fff; border-radius:18px; padding: clamp(24px,3vw,32px);
  box-shadow: 0 1px 3px rgba(14,12,11,.06);
}
.feature-n{ font-family:var(--font-display); font-weight:700; color:var(--rose); font-size:1.1rem; font-style:italic; }
.weare-features h3{ font-size:1.05rem; margin-top:14px; }
.weare-features p{ color:var(--stone); font-size:.9rem; margin-top:8px; }
@media (max-width:760px){ .weare-features{ grid-template-columns:1fr; } }

.founder{
  max-width:640px; margin: clamp(56px,8vw,88px) auto 0;
  display:flex; align-items:center; gap: clamp(20px,3vw,28px);
  background:#fff; border-radius:22px; padding: clamp(20px,3vw,28px); box-shadow: 0 1px 3px rgba(14,12,11,.06);
}
.founder-photo{
  width: clamp(80px,12vw,110px); height: clamp(80px,12vw,110px); border-radius:50%; overflow:hidden; flex-shrink:0;
}
.founder-photo img{ width:100%; height:100%; object-fit:cover; object-position: center 20%; }
.founder-copy h3{ font-size:1.2rem; margin-top:4px; }
.founder-copy p{ color:var(--stone); font-size:.9rem; margin-top:8px; max-width:42ch; }
.founder-ig{ display:inline-block; margin-top:10px; color:var(--rose); font-weight:700; font-size:.9rem; }
.founder-ig:hover{ text-decoration:underline; }
@media (max-width:600px){ .founder{ flex-direction:column; text-align:center; } }

/* ================= SERVICES ================= */
.services{ position:relative; z-index:2; background: var(--paper); color: var(--ink); padding-bottom: clamp(60px,8vw,100px); }
.section-head{
  max-width: var(--container); margin:0 auto; padding: clamp(20px,4vw,40px) var(--gutter) clamp(40px,6vw,64px);
  display:flex; gap: clamp(20px,4vw,48px); align-items:flex-end;
}
.section-head.light{ color:var(--ink); }
.section-index{
  font-family: var(--font-display); font-style:italic; font-weight:700; font-size:1.1rem; color:var(--rose); letter-spacing:.04em;
  padding-bottom:6px; flex-shrink:0;
}
.section-eyebrow{
  text-transform:uppercase; letter-spacing:.12em; font-size:.78rem; font-weight:700; color:var(--rose);
  margin-bottom:10px;
}
.section-head h2{ font-size: clamp(1.8rem,4vw,2.8rem); font-style:italic; }
.section-head p{ color:var(--stone); margin-top:12px; max-width:46ch; }

.service-block{
  max-width: var(--container); margin: 0 auto clamp(40px,6vw,64px); padding:0 var(--gutter);
  display:grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,4vw,48px); align-items:center;
}
.service-block.reverse .service-copy{ order:2; }
.service-tag{
  display:inline-block; background:var(--ink); color:var(--white-warm); font-size:.72rem;
  text-transform:uppercase; letter-spacing:.06em; padding:6px 14px; border-radius:999px; font-weight:700;
}
.service-copy h3{
  font-size: clamp(1.3rem,2.4vw,1.8rem); margin-top:16px; font-weight:700; font-style:italic;
}
.service-copy p{ color:var(--stone); margin-top:16px; max-width:46ch; }
.service-copy .btn{ margin-top:26px; }
.service-media{ display:grid; grid-template-columns: repeat(3,1fr); gap:12px; }
.service-thumb{
  position:relative; border-radius:16px; overflow:hidden; aspect-ratio: 2/3;
}
.service-thumb img, .service-thumb video{ width:100%; height:100%; object-fit:cover; }
.service-thumb span{
  position:absolute; left:8px; bottom:8px; background:rgba(14,12,11,.75); color:var(--white-warm);
  font-size:.68rem; padding:4px 9px; border-radius:999px; text-transform:lowercase;
}
.service-features{
  display:grid; grid-template-columns:repeat(3,1fr); gap: clamp(16px,2.4vw,24px);
}
.service-features > div{ border-top:2px solid var(--ink); padding-top:16px; }
.feature-icon{ color:var(--rose); font-size:.8rem; }
.service-features h4{ font-family:var(--font-display); font-weight:700; font-style:italic; font-size:1.05rem; margin-top:10px; }
.service-features p{ color:var(--stone); font-size:.88rem; margin-top:8px; }

@media (max-width:860px){
  .service-block, .service-block.reverse .service-copy{ grid-template-columns:1fr; order:initial; }
  .service-block{ grid-template-columns:1fr; }
  .service-block.reverse{ display:flex; flex-direction:column-reverse; }
  .service-features{ grid-template-columns:1fr; }
}

/* ================= AO VIVO / LIVE ================= */
.live{ position:relative; z-index:2; background: var(--ink); padding-bottom: clamp(60px,9vw,110px); }
.live .section-head{ color:var(--white-warm); }
.live .section-head p.section-eyebrow{ color:var(--rose-bright); }
.live .section-head h2{ color:var(--white-warm); }
.live .section-head > div > p:last-child{ color:var(--white-soft); }
.live-player{ max-width: var(--container); margin:0 auto; padding: 0 var(--gutter); }
.live-player-frame{
  position:relative; width:100%; aspect-ratio:16/9; border-radius:16px; overflow:hidden;
  background: var(--graphite); border:1px solid rgba(245,239,228,.12);
}
.live-player-frame iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; display:none; }
.live-player-frame.is-live iframe{ display:block; }
.live-player-frame.is-live .live-placeholder{ display:none; }
.live-placeholder{
  position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; padding: 0 clamp(20px,4vw,48px); gap:10px;
}
.live-dot{
  width:10px; height:10px; border-radius:50%; background: var(--stone); margin-bottom:8px;
}
.live-placeholder-title{ font-family:var(--font-display); font-style:italic; font-weight:700; font-size:clamp(1.1rem,2.2vw,1.4rem); color:var(--white-warm); }
.live-placeholder-sub{ color:var(--white-soft); font-size:.9rem; max-width:44ch; }
.live-steps{
  max-width: var(--container); margin: clamp(40px,6vw,64px) auto 0; padding:0 var(--gutter);
  display:grid; grid-template-columns:repeat(3,1fr); gap: clamp(20px,3vw,28px);
}
.live-steps > div{ border-top:2px solid var(--rose-bright); padding-top:16px; }
.live-steps h3{ font-family:var(--font-display); font-style:italic; font-weight:700; font-size:1.1rem; margin-top:10px; color:var(--white-warm); }
.live-steps p{ color:var(--white-soft); font-size:.9rem; margin-top:8px; }
@media (max-width:760px){ .live-steps{ grid-template-columns:1fr; } }

/* ================= STATEMENT ================= */
.statement{
  position:relative; z-index:2;
  padding: clamp(80px,14vw,160px) var(--gutter);
  text-align:center; background: var(--graphite);
}
.statement p{
  font-family: var(--font-display); font-weight:700; font-style:italic; font-size: clamp(1.5rem, 4vw, 3rem);
  max-width:18ch; margin:0 auto; color: var(--white-soft); line-height:1.25;
}
.statement em{ font-style:normal; color: var(--rose-bright); }

/* ================= ALBUM TABS ================= */
.album-tabs{
  max-width: var(--container); margin:0 auto; padding: 0 var(--gutter) clamp(28px,4vw,40px);
  display:flex; gap:10px; flex-wrap:wrap;
}
.album-tab{
  background:none; border:0; border-bottom:2px solid transparent; color:var(--white-soft);
  padding:8px 4px; font-family:var(--font-display); font-style:italic; font-size:1rem; font-weight:600;
  cursor:pointer; transition: border-color .3s var(--ease), color .3s var(--ease);
}
.album-tab:hover{ color:var(--white-warm); }
.album-tab.is-active{ border-bottom-color:var(--rose-bright); color:var(--rose-bright); font-weight:700; }
.gallery-item.is-hidden{ display:none; }

.gallery-load-more{
  max-width: var(--container); margin:0 auto; padding: clamp(32px,5vw,56px) var(--gutter) 0;
  display:flex; justify-content:center;
}

/* ================= PORTFOLIO / GALLERY ================= */
.portfolio{ position:relative; z-index:2; background: var(--ink); padding-bottom: clamp(60px,10vw,120px); }
.gallery{
  max-width: var(--container); margin:0 auto; padding: 0 var(--gutter);
  display:grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px,2vw,26px);
}
.gallery-item{ margin:0; position:relative; grid-column: span 2; }
.gallery-item.span-2{ grid-column: span 2; }
@media (min-width: 720px){
  .gallery-item{ grid-column: span 1; }
  .gallery-item.span-2{ grid-column: span 2; }
}
.gallery-mask{
  position:relative; overflow:hidden; border-radius:18px; aspect-ratio: 2/3; cursor:pointer;
  opacity:0; transform: scale(.94) translateY(18px);
  box-shadow: 0 12px 30px rgba(20,15,10,.25);
}
@media (min-width: 720px){
  .gallery-item.span-2 .gallery-mask{ aspect-ratio: 3/2; }
}
.gallery-mask.in-view{
  opacity:1; transform: scale(1) translateY(0);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.gallery-mask img{
  width:100%; height:100%; object-fit:cover; transition: transform .8s var(--ease);
}
.gallery-mask video{
  width:100%; height:100%; object-fit:cover; display:block; background: var(--graphite-2);
}
.video-item .play-badge{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:56px; height:56px; border-radius:50%; background:rgba(14,12,11,.55);
  border:1px solid rgba(245,239,228,.5); color:var(--white-warm);
  display:flex; align-items:center; justify-content:center; font-size:.9rem;
  padding-left:3px; pointer-events:none; transition: opacity .3s var(--ease);
}
.video-item .gallery-mask.is-playing .play-badge{ opacity:0; }
.gallery-mask:hover img{ transform: scale(1.07); }
.gallery-item figcaption{
  margin-top:14px; font-size:.82rem; color:var(--white-soft); letter-spacing:.02em;
}
.gallery-item figcaption span{ color:var(--rose-bright); font-weight:700; }

/* ================= ALBUM GRID (portfolio cards) ================= */
.album-grid{
  max-width: var(--container); margin:0 auto; padding: 0 var(--gutter);
  display:grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px,3vw,32px);
}
@media (max-width: 900px){ .album-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .album-grid{ grid-template-columns: 1fr; } }
.album-card{
  position:relative; display:block; border-radius:18px; overflow:hidden;
  aspect-ratio: 4/5; box-shadow: 0 12px 30px rgba(0,0,0,.25);
  opacity:0; transform: scale(.94) translateY(18px);
}
.album-card.in-view{ opacity:1; transform:scale(1) translateY(0); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.album-card img{ width:100%; height:100%; object-fit:cover; transition: transform .8s var(--ease); display:block; }
.album-card:hover img{ transform: scale(1.07); }
.album-card-scrim{ position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.75) 100%); }
.album-card-meta{ position:absolute; left:0; right:0; bottom:0; padding: 20px; }
.album-card-title{ font-family:var(--font-display); font-style:italic; font-weight:700; font-size:1.35rem; color:var(--white-warm); margin-bottom:4px; }
.album-card-count{ font-size:.78rem; color:var(--white-soft); letter-spacing:.04em; text-transform:uppercase; }

/* ================= ALBUM PAGE ================= */
.album-hero{ position:relative; z-index:2; background:var(--ink); padding: clamp(120px,16vw,180px) var(--gutter) clamp(32px,5vw,48px); text-align:center; }
.album-hero-inner{ max-width: 760px; margin:0 auto; }
.album-back{ display:inline-block; margin-bottom:18px; font-size:.82rem; letter-spacing:.05em; text-transform:uppercase; color:var(--white-soft); border-bottom:1px solid rgba(255,255,255,.25); padding-bottom:2px; transition: color .3s var(--ease); }
.album-back:hover{ color:var(--rose-bright); }
.album-hero-tag{ display:block; font-size:.8rem; letter-spacing:.08em; text-transform:uppercase; color:var(--rose-bright); margin-bottom:10px; }
.album-hero-date{ font-size:.78rem; letter-spacing:.1em; text-transform:uppercase; color:var(--rose-bright); margin-bottom:10px; }
.album-hero-title{ font-family:var(--font-display); font-style:italic; font-size:clamp(2rem,5vw,3.2rem); color:var(--white-warm); }
.album-hero-count{ margin-top:12px; color:var(--white-soft); font-size:.9rem; }
.album-hero-description{ margin-top:20px; color:var(--white-soft); font-size:1rem; line-height:1.7; max-width:58ch; margin-left:auto; margin-right:auto; }

.album-feed{ max-width: 760px; margin:0 auto; padding: 0 var(--gutter) clamp(60px,8vw,100px); display:flex; flex-direction:column; gap: clamp(40px,6vw,64px); }
.album-loading{ text-align:center; color:var(--white-soft); padding: 60px 0; }
.album-group-heading{ font-family:var(--font-display); font-size:1.6rem; color:var(--rose-bright); text-align:center; margin: 12px 0 -12px; }
.album-post{ margin:0; }
.album-post-media{ position:relative; border-radius:18px; overflow:hidden; box-shadow: 0 16px 40px rgba(0,0,0,.3); cursor:pointer; background:var(--graphite-2); }
.album-post-media img{ width:100%; height:auto; display:block; }
.album-post-media video{ width:100%; height:auto; display:block; aspect-ratio: 4/5; object-fit:cover; }
.album-post-media .play-badge{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:56px; height:56px; border-radius:50%; background:rgba(0,0,0,.45);
  border:1px solid rgba(255,255,255,.5); color:var(--white-warm);
  display:flex; align-items:center; justify-content:center; font-size:.9rem; padding-left:3px;
  pointer-events:none; transition: opacity .3s var(--ease);
}
.album-post-media.is-playing .play-badge{ opacity:0; }
.album-post-meta{ display:flex; align-items:center; justify-content:space-between; gap:16px; margin-top:14px; flex-wrap:wrap; }
.album-post-caption{ color:var(--white-soft); font-size:.9rem; line-height:1.5; }
.album-post-tag{ color:var(--rose-bright); font-weight:700; }
.album-post-stats{ display:flex; align-items:center; gap:16px; flex-shrink:0; }
.stat-like{ display:flex; align-items:center; gap:6px; background:none; border:0; color:var(--white-soft); cursor:pointer; font-size:.82rem; padding:4px; }
.stat-like svg{ width:19px; height:19px; fill:none; stroke:currentColor; stroke-width:1.8; transition: fill .25s var(--ease), stroke .25s var(--ease), transform .25s var(--ease); }
.stat-like:hover svg{ transform: scale(1.12); }
.stat-like.is-liked{ color:var(--rose-bright); }
.stat-like.is-liked svg{ fill:var(--rose-bright); stroke:var(--rose-bright); }
.stat-views{ display:flex; align-items:center; gap:6px; color:var(--white-soft); font-size:.82rem; }
.stat-views svg{ width:18px; height:18px; fill:currentColor; }

.album-pager{
  max-width: 900px; margin: 0 auto; padding: 0 var(--gutter) clamp(50px,7vw,80px);
  display:grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.album-pager-link{
  display:flex; align-items:center; gap:12px; padding: 18px 22px; border-radius:16px;
  background: var(--graphite); border:1px solid rgba(255,255,255,.1);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.album-pager-link:hover{ background: var(--graphite-2); border-color: rgba(255,255,255,.2); }
.album-pager-next{ justify-content:flex-end; text-align:right; }
.album-pager-arrow{ font-size:1.3rem; color:var(--rose-bright); flex-shrink:0; }
.album-pager-text{ display:flex; flex-direction:column; gap:4px; min-width:0; }
.album-pager-label{ font-size:.7rem; letter-spacing:.08em; text-transform:uppercase; color:var(--white-soft); }
.album-pager-title{ font-family:var(--font-display); font-style:italic; font-size:1.05rem; color:var(--white-warm); overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
@media (max-width:640px){
  .album-pager{ grid-template-columns:1fr; }
  .album-pager-next{ justify-content:flex-start; text-align:left; }
}

.album-cta{ position:relative; z-index:2; background:var(--graphite); text-align:center; padding: clamp(56px,8vw,90px) var(--gutter); }
.album-cta p{ font-family:var(--font-display); font-size:clamp(1.3rem,3vw,1.8rem); color:var(--white-warm); margin-bottom:24px; max-width:36ch; margin-left:auto; margin-right:auto; }

/* ================= CONTACT ================= */
.contact{ position:relative; z-index:2; background: var(--paper); color:var(--ink); padding-bottom: clamp(60px,10vw,100px); }
.contact-form{
  max-width:760px; margin:0 auto; padding:0 var(--gutter);
  display:flex; flex-direction:column; gap:18px;
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.contact-form label{ display:flex; flex-direction:column; gap:8px; font-size:.85rem; font-weight:700; }
.contact-form input, .contact-form textarea{
  font-family:var(--font-body); font-size:1rem; padding:14px 16px; border-radius:12px;
  border:1.5px solid rgba(14,12,11,.15); background:#fff; color:var(--ink); resize:vertical;
}
.contact-form input:focus, .contact-form textarea:focus{ outline:2px solid var(--rose-bright); outline-offset:1px; }
.contact-form button{ align-self:flex-start; margin-top:8px; border:0; cursor:pointer; }
@media (max-width:600px){ .form-row{ grid-template-columns:1fr; } }

/* ================= FAQ ================= */
.faq{ position:relative; z-index:2; background: var(--paper); color:var(--ink); padding-bottom: clamp(70px,10vw,120px); }
.faq .section-head{ padding-bottom: clamp(20px,3vw,32px); }
.faq h2{ font-size: clamp(2.2rem,5.5vw,3.6rem); font-style:italic; }
.faq-list{ max-width:860px; margin:0 auto; padding:0 var(--gutter); }
.faq-item{ border-top:1px solid rgba(14,12,11,.14); }
.faq-item:last-child{ border-bottom:1px solid rgba(14,12,11,.14); }
.faq-question{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px;
  background:none; border:0; padding: clamp(18px,2.4vw,24px) 0; text-align:left; cursor:pointer;
  font-family:var(--font-body); font-size:clamp(.95rem,1.6vw,1.05rem); font-weight:700; color:var(--ink);
}
.faq-icon{
  flex-shrink:0; width:28px; height:28px; border-radius:50%; border:1.5px solid var(--ink);
  display:flex; align-items:center; justify-content:center; font-size:1.1rem; transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.faq-item.is-open .faq-icon{ background:var(--rose-bright); border-color:var(--rose-bright); color:var(--ink); transform:rotate(45deg); }
.faq-answer{ max-height:0; overflow:hidden; transition: max-height .4s var(--ease); }
.faq-item.is-open .faq-answer{ max-height:300px; }
.faq-answer p{ color:var(--stone); padding-bottom: clamp(18px,2.4vw,24px); max-width:66ch; }

/* ================= BUTTONS ================= */
.btn{
  display:inline-flex; align-items:center; gap:10px; padding: 16px 34px; border-radius:999px;
  font-size:.86rem; letter-spacing:.05em; text-transform:uppercase; font-weight:700;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
}
.btn-ghost{ border:1.5px solid rgba(245,239,228,.5); }
.btn-ghost:hover{ background:var(--white-warm); color:var(--ink); border-color:var(--white-warm); }
.btn-ghost-dark{ border:1.5px solid var(--ink); color:var(--ink); }
.btn-ghost-dark:hover{ background:var(--ink); color:var(--white-warm); }
.btn-solid{ background:var(--rose-bright); color:var(--ink); }
.btn-solid:hover{ transform: translateY(-3px); background:var(--rose); color:var(--white-warm); }
.btn:focus-visible{ outline:2px solid var(--rose-bright); outline-offset:3px; }

/* ================= FOOTER ================= */
.site-footer{ position:relative; z-index:2; background:var(--ink); border-top:1px solid rgba(245,239,228,.1); padding: clamp(36px,5vw,56px) 0; }
.footer-inner{
  max-width: var(--container); margin:0 auto; padding:0 var(--gutter);
  display:flex; flex-wrap:wrap; gap:20px; align-items:center; justify-content:space-between;
  font-size:.82rem; color:var(--white-soft);
}
.site-footer .logo img{ height:32px; }
.footer-links{ display:flex; gap:24px; flex-wrap:wrap; }
.site-footer a:hover{ color:var(--rose-bright); }

/* ================= LIGHTBOX ================= */
.lightbox{
  position:fixed; inset:0; background:rgba(14,12,11,.96); z-index:200;
  display:flex; align-items:center; justify-content:center; padding: 40px var(--gutter);
  opacity:0; pointer-events:none; transition: opacity .4s var(--ease);
}
.lightbox.open{ opacity:1; pointer-events:auto; }
.lightbox img{ max-height:88vh; max-width:100%; border-radius:6px; }
.lightbox-close{
  position:absolute; top:24px; right:24px; background:none; border:0; color:var(--white-warm);
  font-size:2.2rem; cursor:pointer; line-height:1;
}

/* ================= PROMO POPUP ================= */
.promo-popup{
  position:fixed; inset:0; z-index:300;
  display:flex; align-items:center; justify-content:center; padding: 24px var(--gutter);
  opacity:0; pointer-events:none; transition: opacity .4s var(--ease);
  touch-action:none; overscroll-behavior:contain;
}
.promo-popup.open{ opacity:1; pointer-events:auto; }
.promo-popup-backdrop{ position:absolute; inset:0; background:rgba(0,0,0,.72); touch-action:none; }
.promo-popup-card{
  position:relative; width:min(440px, 100%); background:var(--graphite);
  border:1px solid rgba(255,255,255,.12); border-radius:18px;
  padding: clamp(32px,5vw,44px) clamp(28px,5vw,38px); text-align:center;
  transform: translateY(18px) scale(.97); transition: transform .45s var(--ease);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  max-height: 90vh; overflow-y:auto; touch-action:pan-y; overscroll-behavior:contain;
  -webkit-overflow-scrolling: touch;
}
.promo-popup.open .promo-popup-card{ transform: translateY(0) scale(1); }
.promo-popup-close{
  position:absolute; top:14px; right:16px; background:none; border:0; color:var(--white-soft);
  font-size:1.6rem; line-height:1; cursor:pointer; padding:4px 8px;
}
.promo-popup-close:hover{ color:var(--white-warm); }
.promo-popup-badge{
  display:inline-block; padding:6px 16px; border-radius:999px; background:rgba(193,154,74,.18);
  color:var(--rose-bright); font-size:.72rem; letter-spacing:.08em; text-transform:uppercase;
  font-weight:700; margin-bottom:18px;
}
.promo-popup-title{
  font-family:var(--font-display); font-size:clamp(1.5rem,3.2vw,2rem); line-height:1.15;
  color:var(--white-warm); margin-bottom:14px;
}
.promo-popup-title strong{ color:var(--rose-bright); }
.promo-popup-body{ color:var(--white-soft); font-size:.95rem; line-height:1.6; margin-bottom:20px; }
.promo-popup-code{
  display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,.06);
  border:1px dashed rgba(255,255,255,.25); border-radius:999px; padding:10px 20px;
  font-size:.82rem; color:var(--white-soft); margin-bottom:26px;
}
.promo-popup-code strong{ color:var(--white-warm); letter-spacing:.06em; }
.promo-popup-cta{ width:100%; justify-content:center; }
.promo-popup-dismiss{
  display:block; margin:16px auto 0; background:none; border:0; color:var(--white-soft);
  font-size:.8rem; text-decoration:underline; cursor:pointer;
}
.promo-popup-dismiss:hover{ color:var(--white-warm); }

/* ================= COOKIE BAR ================= */
.cookie-bar{
  position:fixed; left:0; right:0; bottom:0; z-index:250;
  background: var(--graphite); border-top:1px solid var(--rose-bright);
  padding: 14px var(--gutter); display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:14px 24px;
  transform: translateY(100%); transition: transform .5s var(--ease);
}
.cookie-bar.open{ transform: translateY(0); }
.cookie-bar-text{ color:var(--white-soft); font-size:.84rem; max-width:60ch; margin:0; }
.cookie-bar-actions{ display:flex; gap:10px; flex-shrink:0; }
.cookie-btn-decline, .cookie-btn-accept{
  padding:8px 18px; border-radius:999px; font-size:.78rem; letter-spacing:.03em; text-transform:uppercase; font-weight:700; cursor:pointer;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.cookie-btn-decline{ background:none; border:1px solid rgba(255,255,255,.25); color:var(--white-soft); }
.cookie-btn-decline:hover{ border-color:var(--white-warm); color:var(--white-warm); }
.cookie-btn-accept{ background:var(--rose-bright); border:1px solid var(--rose-bright); color:var(--ink); }
.cookie-btn-accept:hover{ background:var(--rose); border-color:var(--rose); }
@media (max-width:640px){
  .cookie-bar{ flex-direction:column; align-items:stretch; text-align:center; }
  .cookie-bar-actions{ justify-content:center; }
}

/* ================= ACCESSIBILITY / MOTION ================= */
:focus-visible{ outline:2px solid var(--rose-bright); outline-offset:2px; }

@media (prefers-reduced-motion: reduce){
  [data-reveal]{ opacity:1 !important; transform:none !important; }
  .gallery-mask{ opacity:1 !important; transform:none !important; transition:none !important; }
  .hero-video{ transform:none !important; }
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
}
