/* ============================================
   COSMOS MODEL MANAGEMENT - Design System
   ============================================ */

:root {
  --bk: #0a0a0a;
  --wh: #fafafa;
  --pw: #ffffff;
  --ow: #f5f3f0;
  --wg: #e8e4df;
  --mg: #9a958e;
  --dg: #3a3632;
  --ac: #c4b5a2;
  --se: 'Cormorant Garamond', Georgia, serif;
  --sa: 'Outfit', -apple-system, sans-serif;
  --r: 16px;
  --rs: 10px;
  --e: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body { font-family: var(--sa); color: var(--bk); background: var(--wh); line-height: 1.6; overflow-x: hidden; min-height: 100vh; display: flex; flex-direction: column; }
body > .ft { margin-top: auto; }
::selection { background: var(--bk); color: var(--wh); }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fu { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fi { from { opacity: 0; } to { opacity: 1; } }
@keyframes sp { 0%, 100% { opacity: .3; transform: translateY(0); } 50% { opacity: 1; transform: translateY(8px); } }

.rv { opacity: 0; transform: translateY(36px); transition: opacity .85s var(--e), transform .85s var(--e); }
.rv.vs { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }
.d5 { transition-delay: .4s; }

/* ============================================
   NAVIGATION  -  Liquid glass floating pill
   ============================================ */
.nv {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  width: calc(100% - 28px);
  max-width: 1320px;
  padding: 0 10px 0 22px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .42);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .55);
  box-shadow:
    0 10px 32px rgba(0, 0, 0, .07),
    0 2px 8px rgba(0, 0, 0, .04),
    inset 0 1px 0 rgba(255, 255, 255, .65),
    inset 0 -1px 0 rgba(255, 255, 255, .15);
  transition: background .4s var(--e), border-color .4s var(--e), box-shadow .4s var(--e);
}
.nv--c { background: rgba(255, 255, 255, .22); border-color: rgba(255, 255, 255, .4); }
.nv--b,
.nv--s {
  background: rgba(255, 255, 255, .68);
  border-color: rgba(255, 255, 255, .65);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, .09),
    0 2px 8px rgba(0, 0, 0, .05),
    inset 0 1px 0 rgba(255, 255, 255, .8);
}

.nv__logo { display: flex; align-items: center; padding: 10px 0; }
.nv__logo img { height: 26px; }
.nv__links { display: flex; gap: 30px; }
.nv__links a { font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--dg); position: relative; transition: color .3s; }
.nv__links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--bk); transition: width .4s var(--e); }
.nv__links a:hover { color: var(--bk); }
.nv__links a:hover::after { width: 100%; }
.nv__links a.active { color: var(--bk); }
.nv__links a.active::after { width: 100%; }

.nv__right { display: flex; align-items: center; gap: 16px; }
.nv__social { display: flex; align-items: center; gap: 10px; }
.nv__social a { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; color: var(--dg); transition: color .3s var(--e), background .3s var(--e), transform .3s var(--e); }
.nv__social a:hover { color: var(--bk); background: rgba(255, 255, 255, .55); transform: translateY(-1px); }

.nv__cta {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--wh) !important;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  padding: 11px 22px;
  border-radius: 100px;
  transition: all .35s var(--e);
  border: 1px solid rgba(0, 0, 0, .9);
  display: inline-block;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 2px 6px rgba(0, 0, 0, .1);
}
.nv__cta:hover { transform: translateY(-1px); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), 0 6px 16px rgba(0, 0, 0, .18); }

/* Mobile burger */
.nv__burger { display: none; flex-direction: column; gap: 5px; padding: 10px; background: transparent; border: 0; cursor: pointer; }
.nv__burger span { display: block; width: 20px; height: 1.5px; background: var(--bk); transition: all .3s; border-radius: 2px; }
.nv__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nv__burger.open span:nth-child(2) { opacity: 0; }
.nv__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu - liquid glass panel */
.mm {
  position: fixed;
  top: 84px;
  left: 14px;
  right: 14px;
  z-index: 1001;
  background: rgba(255, 255, 255, .75);
  backdrop-filter: blur(26px) saturate(180%);
  -webkit-backdrop-filter: blur(26px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 28px;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, .18),
    0 4px 12px rgba(0, 0, 0, .06),
    inset 0 1px 0 rgba(255, 255, 255, .8);
  padding: 28px 28px 34px;
  opacity: 0;
  transform: translateY(-12px) scale(.98);
  pointer-events: none;
  transition: opacity .3s var(--e), transform .35s var(--e);
  display: flex; flex-direction: column;
}
.mm.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.mm__inner { display: flex; flex-direction: column; gap: 14px; }
.mm__links { display: flex; flex-direction: column; gap: 0; }
.mm__links a {
  font-family: var(--sa);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--bk);
  padding: 8px 4px;
  transition: color .2s, padding-left .2s var(--e);
}
.mm__links a:hover { padding-left: 8px; color: var(--bk); }
.mm__x { position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--mg); background: rgba(255, 255, 255, .5); border: 1px solid rgba(0, 0, 0, .05); border-radius: 50%; transition: all .2s; }
.mm__x:hover { color: var(--bk); background: rgba(255, 255, 255, .8); }
.mm__cta { align-self: flex-start; margin-top: 6px; }
.mm__social { display: flex; gap: 10px; margin-top: 10px; padding-top: 14px; border-top: 1px solid rgba(0, 0, 0, .06); }
.mm__social a,
.mm__social button {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, .06);
  color: var(--dg);
  transition: transform .3s var(--e), background .3s, color .3s, border-color .3s, box-shadow .3s;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
  cursor: pointer;
  font-family: inherit;
}
.mm__social a:hover,
.mm__social button:hover {
  transform: translateY(-2px);
  background: var(--bk);
  color: var(--wh);
  border-color: var(--bk);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .1);
}

@media (max-width: 900px) {
  .nv__links, .nv__right { display: none; }
  .nv__burger { display: flex; }
  .nv { padding: 0 6px 0 18px; height: 56px; }
  .nv__logo img { height: 22px; }
}

/* ============================================
   BUTTONS  -  Liquid glass
   ============================================ */
.bt { font-size: .74rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: 15px 36px; border-radius: 100px; transition: all .4s var(--e); display: inline-flex; align-items: center; gap: 8px; position: relative; }
.bt--d {
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  color: var(--wh);
  border: 1px solid rgba(0, 0, 0, .9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), 0 4px 14px rgba(0, 0, 0, .12);
}
.bt--d:hover { transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 10px 26px rgba(0, 0, 0, .2); }
.bt--g {
  background: rgba(255, 255, 255, .35);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(0, 0, 0, .1);
  color: var(--bk);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .6);
}
.bt--g:hover { background: rgba(255, 255, 255, .6); border-color: rgba(0, 0, 0, .2); transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8), 0 8px 20px rgba(0, 0, 0, .06); }
.bt--w { background: var(--wh); color: var(--bk); border: 1px solid rgba(0, 0, 0, .06); }
.bt--w:hover { background: var(--ow); transform: translateY(-2px); }

.la { font-size: .8rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 8px; transition: gap .3s var(--e); }
.la:hover { gap: 14px; }
.la svg { width: 16px; height: 16px; }

/* ============================================
   SECTION HEADERS
   ============================================ */
.sc { padding: clamp(80px, 10vw, 140px) 0; max-width: 1320px; margin: 0 auto; padding-left: clamp(22px, 4vw, 60px); padding-right: clamp(22px, 4vw, 60px); }
@media (max-width: 600px) { .sc { padding-top: clamp(64px, 14vw, 90px); padding-bottom: clamp(64px, 14vw, 90px); } }
.sc__header { text-align: center; margin-bottom: clamp(44px, 6vw, 72px); }
.sc__label { display: block; font-size: .68rem; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; color: var(--mg); margin-bottom: 14px; }
.sc__title { font-family: var(--se); font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 300; line-height: 1.1; }
.sc__tabs { display: flex; justify-content: center; gap: 6px; margin-bottom: 48px; }

/* ============================================
   HERO
   ============================================ */
.hr { min-height: 100vh; min-height: 100svh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 120px 24px 120px; position: relative; overflow: hidden; background: radial-gradient(ellipse at 25% 40%, rgba(196,181,162,.1) 0%, transparent 55%), radial-gradient(ellipse at 75% 25%, rgba(196,181,162,.07) 0%, transparent 50%), var(--wh); }
.hr__content { position: relative; z-index: 1; max-width: 880px; }
.hr__label { display: block; font-size: .7rem; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; color: var(--mg); margin-bottom: 28px; animation: fu 1s var(--e) .2s both; }
.hr__title { font-family: var(--se); font-size: clamp(3.6rem, 9vw, 7.8rem); font-weight: 300; line-height: 1.05; letter-spacing: -.02em; margin-bottom: 28px; animation: fu 1s var(--e) .4s both; }
.hr__title em { font-style: italic; font-weight: 700; }
.hr__heavy { font-weight: 700; font-style: italic; }
.hr__subtitle { font-size: clamp(.95rem, 1.4vw, 1.1rem); font-weight: 300; color: var(--mg); max-width: 540px; margin: 0 auto 44px; line-height: 1.75; animation: fu 1s var(--e) .6s both; }
.hr__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; animation: fu 1s var(--e) .8s both; }
.hr__scroll { position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%); animation: fi 1s var(--e) 1s both; }
.hr__scroll svg { animation: sp 2.5s ease-in-out infinite; }

/* Line-art globe background */
.hr__globe { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; z-index: 0; }
.hr__globe svg { width: clamp(380px, 72vmin, 900px); height: clamp(380px, 72vmin, 900px); color: var(--bk); opacity: .08; fill: none; stroke: currentColor; clip-path: circle(47.4%); }
@media (max-width: 600px) { .hr { padding-bottom: 140px; } .hr__globe svg { opacity: .06; } }

/* Scroll indicator stays absolute and scrolls with the hero */
@media (max-width: 600px) { .hr__scroll { bottom: 28px; } }

/* ============================================
   MODEL GRID (shared between home, women, men)
   ============================================ */
.tab { font-size: .76rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; padding: 11px 30px; border-radius: 100px; color: var(--mg); border: 1px solid transparent; transition: all .35s var(--e); }
.tab:hover { color: var(--bk); border-color: rgba(0,0,0,.08); }
.tab--on { color: var(--bk); background: var(--ow); border-color: rgba(0,0,0,.05); }

.mg { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
@media (max-width: 1024px) { .mg { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .mg { grid-template-columns: repeat(2, 1fr); } }

/* Homepage preview: 5 cards in a wider layout, slightly taller to feel more prominent and match roster proportions visually */
.mg--preview { grid-template-columns: repeat(5, 1fr); gap: 22px; max-width: 1320px; margin: 0 auto; }
.mg--preview .mc__im { aspect-ratio: 2/3; }
@media (max-width: 1024px) { .mg--preview { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
@media (max-width: 600px) { .mg--preview { grid-template-columns: repeat(2, 1fr); gap: 14px; } }

.mc { position: relative; border-radius: var(--r); overflow: hidden; cursor: pointer; }
.mc__im { aspect-ratio: 3/4; border-radius: var(--r); overflow: hidden; position: relative; background: var(--wg); }
.mc__im img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--e); }
.mc:hover .mc__im img { transform: scale(1.05); }
.mc__ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-family: var(--se); font-size: 2rem; font-weight: 300; color: rgba(154,149,142,.5); background: linear-gradient(145deg, #f0ede9, #e2ddd6); }
.mc__ov { position: absolute; inset: 0; border-radius: var(--r); background: linear-gradient(to top, rgba(10,10,10,.55) 0%, transparent 45%); opacity: 0; transition: opacity .45s var(--e); display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 22px; }
.mc:hover .mc__ov { opacity: 1; }
.mc__ov-name, .mc__on { font-size: .8rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--wh); display: block; }
.mc__ov-loc, .mc__om { font-size: .7rem; font-weight: 300; color: rgba(255,255,255,.75); margin-top: 3px; display: block; }
.mc__info { padding: 14px 4px 6px; }
.mc__name, .mc__nm { font-size: .8rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.bm { text-align: center; margin-top: 48px; grid-column: 1 / -1; display: flex; justify-content: center; }

/* ============================================
   ABOUT STRIP (home)
   ============================================ */
.ab { position: relative; }
.ab::before { content: ''; position: absolute; inset: 0; background: var(--ow); z-index: -1; width: 100vw; left: 50%; transform: translateX(-50%); }
.ab.sc { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
@media (max-width: 768px) { .ab.sc { grid-template-columns: 1fr; } }
.ab__image { aspect-ratio: 4/5; border-radius: var(--r); overflow: hidden; background: var(--wg); }
.ab__image img { width: 100%; height: 100%; object-fit: cover; }
.ab__content .sc__label { text-align: left; }
.ab__content .sc__title { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 20px; }
.ab__text { font-size: .92rem; font-weight: 300; color: var(--dg); line-height: 1.8; margin-bottom: 28px; }

/* ============================================
   NUMBERS BAND - Premium, high contrast
   ============================================ */
.nb { background: var(--bk); color: var(--wh); padding: clamp(100px, 14vw, 180px) clamp(20px, 4vw, 60px); display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(40px, 6vw, 80px); text-align: center; max-width: 1320px; margin: 0 auto; position: relative; align-items: center; }
@media (max-width: 768px) { .nb { grid-template-columns: 1fr; gap: 72px; padding: 100px 24px; } }
.nb__item { position: relative; padding: 0 clamp(16px, 2.5vw, 40px); }
.nb__item:not(:last-child)::after { content: ''; position: absolute; right: calc(clamp(-48px, -3.5vw, -24px)); top: 12%; bottom: 12%; width: 1px; background: linear-gradient(to bottom, transparent 0%, rgba(196,181,162,.5) 50%, transparent 100%); }
@media (max-width: 768px) { .nb__item:not(:last-child)::after { display: none; } }
.nb__num { display: block; font-family: var(--se); font-size: clamp(4.6rem, 9vw, 8rem); font-weight: 300; line-height: .95; margin-bottom: 22px; letter-spacing: -.03em; background: linear-gradient(180deg, #fff 0%, var(--ac) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.nb__label { display: block; font-size: .88rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.88); }

/* Numbers band full-width background */
.nb { position: relative; }
.nb::before { content: ''; position: absolute; inset: 0; background: var(--bk); z-index: -1; width: 100vw; left: 50%; transform: translateX(-50%); }

/* ============================================
   BLOG PREVIEW
   ============================================ */
.bg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 768px) { .bg { grid-template-columns: 1fr; } }
.bc { border-radius: var(--r); overflow: hidden; background: var(--pw); box-shadow: 0 2px 20px rgba(0,0,0,.04); transition: transform .5s var(--e), box-shadow .5s var(--e); }
.bc:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.08); }
.bc__im { aspect-ratio: 16/10; overflow: hidden; background: var(--wg); }
.bc__im img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--e); }
.bc:hover .bc__im img { transform: scale(1.04); }
.bc__body { padding: 28px; }
.bc__tag { font-size: .64rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--ac); margin-bottom: 10px; }
.bc__title { font-family: var(--se); font-size: 1.3rem; font-weight: 400; line-height: 1.3; margin-bottom: 10px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.tg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 768px) { .tg { grid-template-columns: 1fr; } }

/* Video testimonials grid */
.vg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .vg { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }
.vc__video { position: relative; width: 100%; padding-bottom: 177.77%; border-radius: var(--r); overflow: hidden; background: var(--wg); box-shadow: 0 10px 40px rgba(0,0,0,.08); cursor: pointer; }
.vc__video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vc__video img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vc__video .vid__play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(180deg, rgba(10,10,10,.08) 0%, rgba(10,10,10,.35) 100%); transition: background .3s; }
.vc__video:hover .vid__play { background: linear-gradient(180deg, rgba(10,10,10,.1) 0%, rgba(10,10,10,.5) 100%); }
.vc__video:hover .vid__play-btn { transform: scale(1.08); background: rgba(255, 255, 255, 1); }

/* Homepage voices section */
.voices__t { font-size: clamp(2.6rem, 5.5vw, 4.4rem); }
.vg--home { margin-top: clamp(48px, 6vw, 80px); }
.vg--home .vc__video { padding-bottom: 56.25%; /* 16:9 horizontal */ }
.tc { padding: 36px; border-radius: var(--r); background: var(--ow); }
.tc__quote { font-size: .95rem; font-weight: 300; color: var(--dg); line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.tc__author { }
.tc__name { display: block; font-size: .78rem; font-weight: 500; letter-spacing: .06em; }
.tc__role { display: block; font-size: .72rem; font-weight: 300; color: var(--mg); margin-top: 2px; }

/* ============================================
   CTA SECTION
   ============================================ */
.ct { padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 60px); }
.ct__box { background: var(--bk); border-radius: 24px; padding: clamp(48px, 6vw, 80px); text-align: center; color: var(--wh); max-width: 1320px; margin: 0 auto; }
.ct__title { font-family: var(--se); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 300; line-height: 1.15; margin-bottom: 16px; }
.ct__subtitle { font-size: .9rem; font-weight: 300; color: var(--mg); margin-bottom: 32px; }
.ct__box .bt--g { border-color: rgba(255, 255, 255, .25); color: var(--wh); background: rgba(255, 255, 255, .06); backdrop-filter: blur(14px); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12); }
.ct__box .bt--g:hover { border-color: rgba(255, 255, 255, .5); background: rgba(255, 255, 255, .12); color: var(--wh); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero { padding: clamp(130px, 16vw, 200px) clamp(24px, 4vw, 60px) clamp(60px, 8vw, 100px); text-align: center; max-width: 1320px; margin: 0 auto; }
.page-hero--tight { padding-top: clamp(110px, 12vw, 140px); padding-bottom: clamp(32px, 4vw, 48px); }
@media (max-width: 600px) {
  .page-hero { padding-left: 22px; padding-right: 22px; }
  .page-hero__t { font-size: clamp(2.2rem, 9vw, 2.8rem); }
}
.page-hero__l { font-size: .68rem; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; color: var(--mg); margin-bottom: 14px; display: block; }
.page-hero__t { font-family: var(--se); font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 300; line-height: 1.1; }

/* Back link */
.back { display: inline-flex; align-items: center; gap: 8px; font-size: .76rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; color: var(--mg); margin-bottom: 32px; transition: color .3s, gap .3s var(--e); }
.back:hover { color: var(--bk); gap: 12px; }
.back svg { width: 16px; height: 16px; transform: rotate(180deg); }

/* ============================================
   MODEL PROFILE PAGE
   ============================================ */
.mh { padding-top: clamp(90px, 10vw, 110px); padding-left: clamp(20px, 4vw, 60px); padding-right: clamp(20px, 4vw, 60px); padding-bottom: clamp(28px, 4vw, 44px); max-width: 1320px; margin: 0 auto; }
.mh__back { display: inline-flex; align-items: center; gap: 8px; font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--mg); margin-bottom: 22px; transition: color .3s, gap .3s var(--e); }
.mh__back:hover { color: var(--bk); gap: 12px; }
.mh__back svg { width: 14px; height: 14px; transform: rotate(180deg); }
.mh__top { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
@media (max-width: 900px) { .mh__top { grid-template-columns: 1fr; } .mh { padding-top: clamp(82px, 14vw, 96px); } }

.mh__hero { aspect-ratio: 3/4; border-radius: var(--r); overflow: hidden; background: var(--wg); }
.mh__hero img { width: 100%; height: 100%; object-fit: cover; }

.mh__info { position: sticky; top: 100px; }
.mh__name { font-family: var(--se); font-size: clamp(3rem, 5vw, 4.2rem); font-weight: 300; line-height: 1.05; margin-bottom: 10px; }

.mh__loc { display: flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 300; color: var(--mg); margin-bottom: 36px; flex-wrap: wrap; }
.mh__loc-pin { display: inline-flex; align-items: center; color: var(--ac); margin-right: 2px; }
.mh__loc-pin svg { width: 16px; height: 16px; }
.mh__loc-from, .mh__loc-in { font-weight: 400; color: var(--dg); }
.mh__loc-lbl { font-size: .68rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--mg); }
.mh__loc-sep { color: var(--wg); font-size: .7rem; margin: 0 4px; }

.mh__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 28px; padding: 28px 0; border-top: 1px solid var(--wg); border-bottom: 1px solid var(--wg); }
.mh__stat-l { font-size: .64rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--mg); margin-bottom: 3px; }
.mh__stat-v { font-size: .9rem; font-weight: 400; }

/* Quick links */
.ql { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.ql__item { display: flex; align-items: center; gap: 10px; font-size: .82rem; font-weight: 400; padding: 12px 18px; border-radius: var(--rs); border: 1px solid var(--wg); transition: all .3s var(--e); color: var(--dg); }
.ql__item:hover { border-color: var(--bk); color: var(--bk); transform: translateX(4px); }
.ql__item svg { width: 18px; height: 18px; flex-shrink: 0; }
.ql__item span { flex: 1; }
.ql__arrow { width: 14px; height: 14px; opacity: .3; transition: opacity .3s; }
.ql__item:hover .ql__arrow { opacity: .7; }

.ql__item--dl { background: var(--bk); color: var(--wh); border-color: var(--bk); }
.ql__item--dl:hover { background: var(--dg); color: var(--wh); border-color: var(--dg); transform: translateX(4px); }
.ql__item--dl .ql__arrow { filter: invert(1); }

/* Full book section */
.book { padding: clamp(48px, 6vw, 80px) 0; }
.book__label { font-size: .68rem; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; color: var(--mg); text-align: center; margin-bottom: 40px; }
.book__stream { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.book__img { border-radius: var(--r); overflow: hidden; background: var(--wg); opacity: 0; transform: translateY(30px); transition: opacity .7s var(--e), transform .7s var(--e); }
.book__img.vis { opacity: 1; transform: translateY(0); }
.book__img img { width: 100%; display: block; }
.book__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .book__row { grid-template-columns: 1fr; } }
.book__row .book__img { aspect-ratio: 3/4; }
.book__row .book__img img { height: 100%; object-fit: cover; }

/* Video section */
.videos { padding: clamp(48px, 6vw, 80px) 0; background: var(--ow); }
.videos__label { display: block; font-size: .68rem; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; color: var(--mg); text-align: center; margin-bottom: 40px; }
.videos__grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 600px) { .videos__grid { grid-template-columns: 1fr; gap: 14px; } }
.vid__card { border-radius: var(--r); overflow: hidden; background: var(--wg); aspect-ratio: 16/9; position: relative; cursor: pointer; }
.vid__card img { width: 100%; height: 100%; object-fit: cover; }
.vid__card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vid__play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(180deg, rgba(10,10,10,.08) 0%, rgba(10,10,10,.35) 100%); transition: background .3s; }
.vid__card:hover .vid__play { background: linear-gradient(180deg, rgba(10,10,10,.1) 0%, rgba(10,10,10,.5) 100%); }
.vid__play-btn { width: 72px; height: 72px; border-radius: 50%; background: rgba(255, 255, 255, .92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(0, 0, 0, .25), inset 0 1px 0 rgba(255, 255, 255, .7); transition: transform .3s var(--e), background .3s; }
.vid__card:hover .vid__play-btn { transform: scale(1.08); background: rgba(255, 255, 255, 1); }
.vid__play-btn svg { width: 24px; height: 24px; color: var(--bk); margin-left: 3px; }

/* Videos: 1 main horizontal + 3 vertical shorts (Renato layout) */
.videos__main { max-width: 1100px; margin: 0 auto; }
.videos__main .vid__card { aspect-ratio: 16/9; }
.videos__sublabel { display: block; font-size: .68rem; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; color: var(--mg); text-align: center; margin: 56px 0 24px; }
.videos__shorts {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.videos__shorts > .vid__card--short {
  aspect-ratio: 9/16;
  min-width: 0;
}
.videos__shorts > .vid__card--short img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 600px) {
  .videos__shorts { gap: 8px; }
  .videos__sublabel { margin: 40px 0 18px; }
}

/* Contact strip */
.cs { padding: clamp(48px, 6vw, 80px) 0; text-align: center; }
.cs__t { font-family: var(--se); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 300; margin-bottom: 8px; }
.cs__s { font-size: .88rem; font-weight: 300; color: var(--mg); margin-bottom: 32px; }
.cs__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cs__btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; border-radius: 100px; font-size: .78rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; transition: all .35s var(--e); }
.cs__btn:hover { transform: translateY(-2px); }
.cs__btn--wa { background: #25D366; color: #fff; }
.cs__btn--wa:hover { background: #1fba59; }
.cs__btn--wc { background: #07C160; color: #fff; }
.cs__btn--wc:hover { background: #06a952; }
.cs__btn--em { background: var(--bk); color: var(--wh); }
.cs__btn--em:hover { background: var(--dg); }
.cs__btn svg { width: 18px; height: 18px; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-content { padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 60px) clamp(80px, 10vw, 140px); max-width: 1320px; margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; margin-bottom: clamp(80px, 10vw, 140px); }
.about-grid:last-child { margin-bottom: 0; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 72px; } }
.about-grid--rev .about-img { order: 2; }
@media (max-width: 768px) { .about-grid--rev .about-img { order: 0; } }
.about-img { aspect-ratio: 4/5; border-radius: var(--r); overflow: hidden; background: var(--wg); }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text__l { font-size: .68rem; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; color: var(--mg); margin-bottom: 14px; display: block; }
.about-text__t { font-family: var(--se); font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 300; line-height: 1.15; margin-bottom: 24px; letter-spacing: -.01em; }
.about-text__p { font-size: .95rem; font-weight: 300; color: var(--dg); line-height: 1.85; margin-bottom: 18px; }
.about-text__p:last-child { margin-bottom: 0; }

/* Values / Differentiators */
.values { padding: clamp(80px, 10vw, 140px) clamp(20px, 4vw, 60px); background: var(--ow); margin-top: clamp(40px, 6vw, 80px); }
.values__inner { max-width: 1320px; margin: 0 auto; }
.values__head { text-align: center; margin-bottom: clamp(44px, 6vw, 72px); }
.values__g { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 768px) { .values__g { grid-template-columns: 1fr; } }
.val-card { padding: 44px 36px; border-radius: var(--r); background: var(--pw); transition: transform .4s var(--e), box-shadow .4s var(--e); }
.val-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.06); }
.val-card__icon { width: 48px; height: 48px; margin-bottom: 24px; color: var(--ac); stroke: var(--ac); }
.val-card__t { font-family: var(--se); font-size: 1.5rem; font-weight: 400; margin-bottom: 14px; }
.val-card__p { font-size: .9rem; font-weight: 300; color: var(--mg); line-height: 1.75; }

/* ============================================
   STORIES (Blog) INDEX
   ============================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding: clamp(20px, 4vw, 40px) clamp(20px, 4vw, 60px) clamp(80px, 10vw, 140px); max-width: 1320px; margin: 0 auto; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
.bc__excerpt { font-size: .88rem; font-weight: 300; color: var(--mg); line-height: 1.65; margin-top: 8px; }

/* Stories article page */
.article { max-width: 760px; margin: 0 auto; padding: clamp(110px, 12vw, 140px) 24px clamp(80px, 10vw, 140px); }
.article__header { text-align: center; margin-bottom: 44px; }
.article__header .back { margin-bottom: 28px; }
.article__tag { font-size: .68rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--ac); margin-bottom: 16px; display: block; }
.article__title { font-family: var(--se); font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 300; line-height: 1.1; margin-bottom: 18px; letter-spacing: -.01em; }
.article__date { font-size: .82rem; font-weight: 300; color: var(--mg); display: block; }
.article__hero { border-radius: var(--r); overflow: hidden; margin-bottom: 48px; background: var(--wg); }
.article__hero img { width: 100%; display: block; }
.article__body h2 { font-family: var(--se); font-size: 1.7rem; font-weight: 400; margin: 44px 0 18px; line-height: 1.25; }
.article__body p { font-size: 1rem; font-weight: 300; color: var(--dg); line-height: 1.9; margin-bottom: 22px; }
.article__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px, 1.5vw, 18px);
  margin: clamp(40px, 5vw, 60px) 0 0;
}
@media (max-width: 600px) {
  .article__gallery { grid-template-columns: 1fr; }
}
.article__gallery-item {
  margin: 0;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--wg);
}
.article__gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .6s var(--e);
}
.article__gallery-item:hover img { transform: scale(1.02); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 820px; margin: 0 auto; padding: clamp(20px, 3vw, 40px) 24px clamp(80px, 10vw, 140px); }
@media (max-width: 600px) { .contact-cards { grid-template-columns: 1fr; } }
.cc { padding: clamp(28px, 4vw, 40px); border-radius: var(--r); background: var(--ow); }
.cc__t { font-family: var(--se); font-size: 1.4rem; font-weight: 400; margin-bottom: 20px; }
.cc__item { display: flex; align-items: center; gap: 12px; font-size: .88rem; font-weight: 300; color: var(--dg); padding: 12px 0; border-bottom: 1px solid var(--wg); }
.cc__item:last-child { border-bottom: none; }
.cc__item svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--mg); }
.cc__item a { transition: color .3s; cursor: pointer; }
.cc__item a:hover { color: var(--bk); }
.cc__item button { color: var(--dg); font-size: .88rem; font-weight: 300; text-align: left; padding: 0; transition: color .3s; font-family: var(--sa); cursor: pointer; }
.cc__item button:hover { color: var(--bk); }

/* ============================================
   DISCOVER / APPLICATION FORM
   ============================================ */
.form-section { max-width: 640px; margin: 0 auto; padding: clamp(20px, 3vw, 40px) 24px clamp(80px, 10vw, 140px); }
.form-section__intro { font-size: .92rem; font-weight: 300; color: var(--dg); line-height: 1.8; margin-bottom: 40px; text-align: center; }

.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: .72rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--mg); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; padding: 14px 18px; border: 1px solid var(--wg); border-radius: var(--rs); font-family: var(--sa); font-size: .9rem; font-weight: 300; color: var(--bk); background: var(--pw); transition: border-color .3s; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--bk); }
.form-group textarea { min-height: 120px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; gap: 14px; } }

/* Tighter form spacing on mobile so fields don't feel sparse */
@media (max-width: 640px) {
  .form-section { padding: clamp(16px, 3vw, 32px) 18px clamp(60px, 8vw, 100px); }
  .form-section__intro { margin-bottom: 28px; font-size: .88rem; }
  .form-group { margin-bottom: 14px; }
  .form-group label { margin-bottom: 6px; font-size: .68rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { padding: 12px 14px; font-size: .92rem; }
  .form-group textarea { min-height: 96px; }
}

.form-submit { text-align: center; margin-top: 32px; }

/* ============================================
   FOOTER - Liquid Glass Redesign
   ============================================ */
.ft {
  background: linear-gradient(180deg, #faf8f4 0%, #ece5d9 100%);
  padding: clamp(48px, 7vw, 80px) clamp(14px, 2.5vw, 24px) clamp(24px, 3vw, 36px);
  position: relative;
  overflow: hidden;
}
.ft::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(196, 181, 162, .18) 0%, transparent 45%),
    radial-gradient(circle at 85% 90%, rgba(154, 149, 142, .12) 0%, transparent 50%);
  pointer-events: none;
}
.ft__card {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  background: rgba(255, 255, 255, .55);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: clamp(24px, 3vw, 40px);
  padding: clamp(36px, 5vw, 64px) clamp(24px, 4vw, 60px);
  box-shadow:
    0 20px 60px rgba(30, 25, 20, .1),
    0 2px 8px rgba(30, 25, 20, .04),
    inset 0 1px 0 rgba(255, 255, 255, .75);
}
.ft__tagline {
  text-align: center;
  padding-bottom: clamp(14px, 2vw, 22px);
  margin-bottom: clamp(10px, 1.5vw, 16px);
}
.ft__tagline-l { display: none; }
.ft__tagline-t {
  font-family: var(--se);
  font-size: clamp(2.5rem, 5.4vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--bk);
  margin-bottom: 0;
}
.ft__tagline-t em { font-style: italic; font-weight: 700; }
@media (min-width: 720px) { .ft__tagline-t { white-space: nowrap; } }
/* PT tagline is longer than EN; let it wrap and cap the size so it never
   spills past the card's rounded edges. */
:lang(pt-BR) .ft__tagline-t {
  white-space: normal;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

/* Footer nav — single horizontal row on desktop */
.ft__nav-wrap {
  text-align: center;
  padding: clamp(8px, 1vw, 14px) 0;
  margin-bottom: clamp(8px, 1.2vw, 16px);
}
.ft__nav-label { display: none; }
.ft__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px clamp(24px, 3.5vw, 48px);
  text-align: center;
}
.ft__nav a {
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dg);
  transition: color .3s;
  padding: 8px 0;
  display: block;
  position: relative;
  text-decoration: none;
}
.ft__nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--bk);
  transition: width .4s var(--e);
}
.ft__nav a:hover { color: var(--bk); }
.ft__nav a:hover::after { width: 100%; }
.ft__bottom {
  padding-top: clamp(20px, 2.5vw, 28px);
  border-top: 1px solid rgba(0, 0, 0, .07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 600px) { .ft__bottom { flex-direction: column-reverse; text-align: center; gap: 16px; } }
.ft__copy { font-size: .76rem; font-weight: 300; color: var(--mg); letter-spacing: .03em; }
.ft__social { list-style: none; padding: 0; margin: 0; display: flex; gap: 10px; }
.ft__social a,
.ft__social-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, .06);
  color: var(--dg);
  transition: transform .3s var(--e), background .3s, color .3s, border-color .3s, box-shadow .3s;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
  cursor: pointer;
  font-family: inherit;
}
.ft__social a:hover,
.ft__social-btn:hover {
  transform: translateY(-2px);
  background: var(--bk);
  color: var(--wh);
  border-color: var(--bk);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .1);
}

/* ============================================
   PARTNER AGENCIES MARQUEE
   ============================================ */
.mq {
  padding: clamp(56px, 7vw, 88px) 0 clamp(56px, 7vw, 88px);
  background: linear-gradient(180deg, var(--wh) 0%, var(--ow) 100%);
  position: relative;
  overflow: hidden;
}
.mq__header {
  margin-bottom: clamp(34px, 4.5vw, 56px);
  padding: 0 24px;
}
.mq__viewport {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000 9%, #000 91%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 9%, #000 91%, transparent 100%);
}
.mq__track {
  display: flex;
  align-items: center;
  gap: clamp(46px, 6vw, 84px);
  width: max-content;
  animation: mq-scroll 55s linear infinite;
}
.mq:hover .mq__track { animation-play-state: paused; }
.mq__item {
  flex-shrink: 0;
  font-family: var(--se);
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  font-weight: 400;
  letter-spacing: .03em;
  color: var(--dg);
  opacity: .55;
  transition: opacity .4s, color .4s, transform .4s var(--e);
  white-space: nowrap;
  font-style: italic;
}
.mq__item:hover { opacity: 1; color: var(--bk); transform: scale(1.04); }
.mq__item em { font-style: normal; font-weight: 500; }
.mq__sep {
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mg);
  opacity: .35;
}
@keyframes mq-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .mq__track { animation: none; }
}

/* ============================================
   PARALLAX UTILITY
   Images get extra height so translate(-y) doesn't expose empty space.
   Disabled on mobile + reduced-motion via JS.
   ============================================ */
.pxl { will-change: transform; transition: none; }
img.pxl { height: 118% !important; min-height: 118%; object-fit: cover; }
/* neutralize hover scale that would fight the JS transform */
.bc:hover .bc__im img.pxl { transform: inherit; }
@media (prefers-reduced-motion: reduce) { .pxl { transform: none !important; height: 100% !important; } }
@media (max-width: 720px) { img.pxl { height: 100% !important; } }

/* Placeholder image style */
.placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--se);
  font-size: 2rem;
  font-weight: 300;
  color: rgba(154,149,142,.4);
  background: linear-gradient(145deg, #f0ede9, #e2ddd6);
}

/* ============================================
   MODEL PROFILE - QUICK ACTIONS (flex-wrap)
   ============================================ */
.qa { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 28px; }
.qa--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .qa--4 { grid-template-columns: repeat(2, 1fr); } }
.qa__btn { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 18px 10px; border-radius: var(--rs); border: 1px solid rgba(0, 0, 0, .08); background: rgba(255, 255, 255, .6); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); color: var(--dg); font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; transition: all .35s var(--e); text-align: center; cursor: pointer; text-decoration: none; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7); }
.qa__btn:hover { border-color: rgba(0, 0, 0, .2); color: var(--bk); transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8), 0 8px 20px rgba(0, 0, 0, .06); background: rgba(255, 255, 255, .85); }
.qa__btn svg { width: 22px; height: 22px; }
.qa__btn--dl {
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  color: var(--wh);
  border-color: rgba(0, 0, 0, .9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), 0 2px 8px rgba(0, 0, 0, .1);
}
.qa__btn--dl:hover { background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%); transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 10px 24px rgba(0, 0, 0, .2); color: var(--wh); border-color: rgba(0, 0, 0, .9); }
.qa__btn--disabled { opacity: .4; pointer-events: none; }

/* Instagram follower badge */
.qa__badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(135deg, #fd7d3a 0%, #e1306c 50%, #9a3195 100%);
  color: #fff;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 2px 7px;
  border-radius: 100px;
  box-shadow: 0 2px 6px rgba(225, 48, 108, .35);
  line-height: 1.4;
}

/* models.com letter glyph (minimalist) */
.qa__mdc {
  font-family: var(--se);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 1px;
}
.qa__mdc span { font-weight: 400; }

@media (max-width: 400px) { .qa__btn { font-size: .62rem; padding: 14px 6px; } }

/* ============================================
   MODEL PROFILE - COLLAGE BOOK (masonry)
   ============================================ */
.book__collage { column-count: 3; column-gap: 16px; max-width: 1200px; margin: 0 auto; padding: 0 clamp(14px, 3vw, 24px); }
@media (max-width: 900px) { .book__collage { column-count: 2; column-gap: 10px; padding: 0 14px; } }
.book__collage .book__img { display: block; width: 100%; margin: 0 0 16px; break-inside: avoid; -webkit-column-break-inside: avoid; page-break-inside: avoid; border-radius: var(--r); overflow: hidden; background: var(--wg); opacity: 0; transform: translateY(30px); transition: opacity .7s var(--e), transform .7s var(--e); }
.book__collage .book__img.vis { opacity: 1; transform: translateY(0); }
.book__collage .book__img img { width: 100%; display: block; height: auto; }
/* subtle stagger so reveal feels collage-like */
.book__collage .book__img:nth-child(3n+1) { transition-delay: 0s; }
.book__collage .book__img:nth-child(3n+2) { transition-delay: .08s; }
.book__collage .book__img:nth-child(3n+3) { transition-delay: .16s; }

/* ============================================
   VIDEOS SECTION (model profile)
   ============================================ */
.videos__inner { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 60px); }

/* ============================================
   WECHAT QR MODAL
   ============================================ */
.wc-modal { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(10,10,10,.72); backdrop-filter: blur(8px); align-items: center; justify-content: center; padding: 24px; }
.wc-modal.open { display: flex; animation: fi .3s var(--e) both; }
.wc-modal__box { background: var(--wh); border-radius: var(--r); padding: 36px; max-width: 360px; width: 100%; text-align: center; position: relative; box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.wc-modal__x { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--mg); background: transparent; border: 0; cursor: pointer; border-radius: 50%; transition: background .2s; }
.wc-modal__x:hover { background: var(--ow); color: var(--bk); }
.wc-modal__title { font-family: var(--se); font-size: 1.6rem; font-weight: 400; margin-bottom: 6px; }
.wc-modal__sub { font-size: .82rem; font-weight: 300; color: var(--mg); margin-bottom: 22px; }
.wc-modal__qr { width: 240px; height: 240px; margin: 0 auto 16px; background: var(--ow); border-radius: var(--rs); padding: 12px; display: flex; align-items: center; justify-content: center; }
.wc-modal__qr img, .wc-modal__qr svg { width: 100%; height: 100%; object-fit: contain; display: block; }
.wc-modal__id { font-size: .82rem; font-weight: 400; color: var(--dg); letter-spacing: .05em; }
.wc-modal__id strong { font-family: var(--se); font-weight: 500; }

/* ============================================
   ROSTER - Gender switcher
   Active gender (plain text) is full size; inactive link is ~half size
   ============================================ */
.rp__switch {
  font-size: .5em;
  font-weight: 400;
  text-decoration: none;
  color: var(--mg);
  transition: color .3s;
  vertical-align: middle;
}
.rp__switch:hover { color: var(--bk); }
.rp__sep { color: var(--wg); margin: 0 12px; font-size: .5em; vertical-align: middle; }

/* ============================================
   ROSTER - Filters  (horizontally scrollable on mobile)
   ============================================ */
.rf {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 clamp(22px, 4vw, 60px) 40px;
  max-width: 1320px;
  margin: 0 auto;
}
.rf::-webkit-scrollbar { display: none; }
.rf__btn {
  flex-shrink: 0;
  font-family: var(--sa);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 100px;
  border: 1px solid rgba(0,0,0,.08);
  color: var(--mg);
  background: transparent;
  transition: all .3s var(--e);
  cursor: pointer;
  white-space: nowrap;
}
.rf__btn--on {
  color: var(--wh);
  background: var(--bk);
  border-color: var(--bk);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.rf__btn:hover:not(.rf__btn--on) {
  color: var(--bk);
  background: var(--ow);
  border-color: rgba(0,0,0,.12);
}
.rf__select {
  flex-shrink: 0;
  font-family: var(--sa);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--dg);
  padding: 10px 38px 10px 18px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 100px;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a958e' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 14px center;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color .3s;
  white-space: nowrap;
}
.rf__select:hover { border-color: rgba(0,0,0,.15); }
@media (max-width: 600px) {
  .rf { padding-left: clamp(14px, 3vw, 22px); padding-right: clamp(14px, 3vw, 22px); }
  .rf__btn { padding: 9px 16px; font-size: .68rem; }
}

/* ============================================
   BLOG FILTER BAR (stories.html / historias.html)
   Reuses .rf__btn pill style for category chips and adds a search box
   that visually matches the form inputs but as a rounded pill.
   ============================================ */
.bf {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(22px, 4vw, 60px) clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  width: 100%;
  min-width: 0;
}
.bf__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}
/* Mobile: chips scroll horizontally inside the row. Desktop (>=768px):
   chips just fit in a centered row. The negative-margin bleed that used
   to break the page on mobile is gone, and html has overflow-x: hidden
   as a safety net — the scroll stays inside the container, the page
   never overflows. */
.bf__row--filters {
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  justify-content: flex-start;
  padding: 4px 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.bf__row--filters::-webkit-scrollbar { display: none; }
.bf__group {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin: 0 auto;
}
.bf__group .rf__btn { flex: 0 0 auto; white-space: nowrap; }
@media (min-width: 768px) {
  .bf__row--filters {
    overflow-x: visible;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.bf__search {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 100%;
  max-width: 480px;
  height: 44px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(0, 0, 0, .07);
  padding: 0 18px 0 44px;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.bf__search:focus-within {
  border-color: rgba(0, 0, 0, .25);
  background: var(--wh);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}
.bf__search-ic {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--mg);
  pointer-events: none;
}
.bf__search input {
  flex: 1 1 auto;
  height: 100%;
  background: transparent;
  border: 0;
  outline: 0;
  font-family: var(--sa);
  font-size: .9rem;
  font-weight: 400;
  color: var(--bk);
}
.bf__search input::placeholder { color: var(--mg); }
.bf__empty {
  text-align: center;
  font-family: var(--sa);
  font-size: .92rem;
  color: var(--mg);
  padding: 60px 20px;
  margin: 0;
}
.bf__empty[hidden] { display: none; }

/* ============================================
   LEGAL & PRIVACY PAGE (legal-and-privacy / legal-e-privacidade)
   Single-column long-form legal copy. Serif H2s, sans body, narrow column.
   ============================================ */
.lp {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(22px, 4vw, 60px) clamp(80px, 10vw, 140px);
}
.lp__lead {
  font-family: var(--se);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.5;
  color: var(--bk);
  margin: 0 0 clamp(40px, 5vw, 60px);
  text-align: center;
}
.lp__art p,
.lp__art ul {
  font-family: var(--sa);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--bk);
  margin: 0 0 18px;
}
.lp__art a {
  color: var(--bk);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(0, 0, 0, .35);
  transition: text-decoration-color .25s;
}
.lp__art a:hover { text-decoration-color: var(--bk); }
.lp__h {
  font-family: var(--se);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 1.7rem);
  line-height: 1.25;
  color: var(--bk);
  margin: clamp(36px, 4vw, 48px) 0 14px;
}
.lp__list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.lp__list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}
.lp__list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 12px;
  width: 6px;
  height: 1px;
  background: var(--bk);
}
.lp__date {
  font-family: var(--sa);
  font-size: .82rem;
  color: var(--mg);
  margin-top: clamp(40px, 5vw, 60px);
  letter-spacing: .04em;
}

/* ============================================
   WELCOME FORM (/welcome[/:name])
   Standalone page: no nav, no footer, no cookie banner.
   White background + line-art globe in the corner + liquid-glass card
   to match the rest of the site.
   ============================================ */
body.wf-body { background: var(--wh); }
body.wf-body .ck { display: none !important; }

/* Globe sits behind everything, faint, slowly rotating. */
.wf-globe {
  position: fixed;
  top: 50%;
  left: 50%;
  width: clamp(680px, 110vw, 1500px);
  height: clamp(680px, 110vw, 1500px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  color: rgba(0, 0, 0, .08);
  opacity: .9;
}
.wf-globe svg { width: 100%; height: 100%; display: block; }

.wf {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 60px) clamp(18px, 4vw, 60px) clamp(60px, 8vw, 100px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.wf__logo {
  display: block;
  width: clamp(180px, 22vw, 260px);
  margin: 0 auto clamp(28px, 4vw, 44px);
}
.wf__logo img { width: 100%; height: auto; display: block; }

/* Liquid-glass language pill (PT / EN / ES) */
.wf__lang {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  margin-bottom: clamp(28px, 4vw, 44px);
  border-radius: 100px;
  background: rgba(255, 255, 255, .55);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .65);
  box-shadow: 0 6px 22px rgba(0, 0, 0, .06);
}
.wf__lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  opacity: .55;
  overflow: hidden;
  transition: opacity .25s, background .25s, box-shadow .25s, transform .25s;
}
.wf__lang-btn:hover { opacity: 1; }
.wf__lang-btn.is-active {
  opacity: 1;
  background: var(--wh);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .08), 0 1px 3px rgba(0, 0, 0, .14);
}
.wf__lang-btn .flag {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  pointer-events: none;
}

.wf__hero {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.wf__title {
  font-family: var(--se);
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.1;
  margin: 0 0 18px;
  color: var(--bk);
}
.wf__name { font-weight: 700; }
.wf__caret {
  display: inline-block;
  width: 2px;
  height: .85em;
  margin-left: 4px;
  background: var(--bk);
  vertical-align: -.05em;
  animation: wf-blink 1s steps(2, end) infinite;
}
@keyframes wf-blink { 50% { opacity: 0; } }
.wf__sub {
  font-family: var(--sa);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--mg);
  max-width: 540px;
  margin: 0 auto;
}

/* Liquid-glass card shared by the form and success state */
.wf-glass {
  background: rgba(255, 255, 255, .55);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: clamp(20px, 3vw, 28px);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, .08),
    0 4px 14px rgba(0, 0, 0, .04);
  padding: clamp(28px, 4vw, 44px);
}

.wf__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
/* CRITICAL: [hidden] is overridden by display:flex unless we re-assert it. */
.wf__form[hidden] { display: none; }
.wf__success[hidden] { display: none; }
.wf__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 600px) {
  .wf__row { grid-template-columns: 1fr; gap: 18px; }
}
.wf__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wf__lab {
  font-family: var(--sa);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--bk);
}
.wf__lab-alt {
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  color: var(--mg);
  font-size: .78rem;
  margin-left: 2px;
}
.wf__req { color: #c44; font-weight: 500; }
.wf__hint {
  font-family: var(--sa);
  font-size: .76rem;
  color: var(--mg);
  font-weight: 300;
  margin-top: 2px;
}
.wf__field input,
.wf__field textarea {
  width: 100%;
  font-family: var(--sa);
  font-size: .98rem;
  font-weight: 300;
  color: var(--bk);
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 12px;
  padding: 13px 14px;
  outline: 0;
  transition: border-color .25s, box-shadow .25s, background .25s;
  box-sizing: border-box;
}
.wf__field textarea { resize: vertical; min-height: 56px; }
.wf__field input:focus,
.wf__field textarea:focus {
  border-color: var(--bk);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, .04);
}
.wf__h {
  font-family: var(--se);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.4vw, 1.6rem);
  margin: clamp(20px, 3vw, 30px) 0 4px;
  padding-top: clamp(20px, 3vw, 30px);
  border-top: 1px solid rgba(0, 0, 0, .08);
}
.wf__h-alt {
  font-family: var(--sa);
  font-size: .84rem;
  font-weight: 300;
  color: var(--mg);
  letter-spacing: .04em;
}
.wf__matrix {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, .65);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 14px;
  overflow: hidden;
}
.wf__matrix-head,
.wf__matrix-row {
  display: grid;
  grid-template-columns: 1fr 90px 90px;
  align-items: center;
  padding: 12px 16px;
  gap: 12px;
}
.wf__matrix-head {
  background: rgba(0, 0, 0, .03);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}
.wf__matrix-yn {
  font-family: var(--sa);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mg);
  text-align: center;
}
.wf__matrix-row {
  font-family: var(--sa);
  font-size: .92rem;
  font-weight: 300;
  color: var(--bk);
  border-bottom: 1px solid rgba(0, 0, 0, .05);
}
.wf__matrix-row:last-child { border-bottom: 0; }
.wf__matrix-row label {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  height: 100%;
}
.wf__matrix-row input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.wf__radio {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, .25);
  position: relative;
  transition: border-color .2s, background .2s;
}
.wf__matrix-row input[type="radio"]:checked + .wf__radio {
  border-color: var(--bk);
  background: var(--bk);
  box-shadow: inset 0 0 0 3px var(--wh);
}
.wf__matrix-row input[type="radio"]:focus-visible + .wf__radio {
  outline: 2px solid rgba(0, 0, 0, .25);
  outline-offset: 2px;
}
.wf__error {
  font-family: var(--sa);
  font-size: .9rem;
  color: #b34;
  background: rgba(180, 50, 60, .06);
  border: 1px solid rgba(180, 50, 60, .2);
  border-radius: 10px;
  padding: 10px 14px;
  margin: 0;
}
.wf__error[hidden] { display: none; }
.wf__submit {
  align-self: center;
  margin-top: clamp(16px, 3vw, 28px);
  padding: 16px 48px;
  background: var(--bk);
  color: var(--wh);
  border: 0;
  border-radius: 100px;
  font-family: var(--sa);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .25s, transform .15s;
}
.wf__submit:hover { opacity: .85; }
.wf__submit:active { transform: translateY(1px); }
.wf__submit:disabled { opacity: .5; cursor: not-allowed; }
.wf__success {
  text-align: center;
  padding: clamp(48px, 8vw, 80px) clamp(28px, 4vw, 44px);
  animation: wf-fade .6s ease both;
}
@keyframes wf-fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.wf__success-mark {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--bk);
  color: var(--wh);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  font-weight: 500;
}
.wf__success-title {
  font-family: var(--se);
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
  margin: 0 0 16px;
}
.wf__success-msg {
  font-family: var(--sa);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--mg);
  max-width: 460px;
  margin: 0 auto;
}

/* ============================================
   RELATED STORIES (per-post page bottom strip)
   ============================================ */
.related {
  max-width: 1320px;
  margin: clamp(40px, 6vw, 80px) auto clamp(40px, 6vw, 80px);
  padding: 0 clamp(22px, 4vw, 60px);
}
.related__header { margin-bottom: clamp(24px, 3vw, 36px); text-align: center; }
.related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .related__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .related__grid { grid-template-columns: 1fr; } }

/* ============================================
   COOKIE / LGPD CONSENT TOAST
   Compact card pinned to the bottom-right (desktop) or bottom-center
   (mobile). No backdrop, no blur, low-pressure feel. Cookie emoji icon.
   ============================================ */
.ck {
  position: fixed;
  z-index: 1500;
  right: 20px;
  bottom: 20px;
  width: min(360px, calc(100vw - 32px));
  background: rgba(255, 255, 255, .96);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 18px;
  padding: 16px 18px 16px 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .14), 0 4px 12px rgba(0, 0, 0, .06), inset 0 1px 0 rgba(255, 255, 255, .9);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .35s var(--e), transform .4s var(--e);
}
.ck--in { opacity: 1; transform: translateY(0); }
.ck--out { opacity: 0; transform: translateY(16px); }
.ck__icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--ow) 0%, var(--wg) 100%);
  font-size: 1.15rem;
  line-height: 1;
}
.ck__body { flex: 1 1 auto; min-width: 0; }
.ck__t {
  font-family: var(--sa);
  font-size: .78rem;
  line-height: 1.45;
  color: var(--dg);
  margin: 2px 0 10px;
}
.ck__lm {
  color: var(--bk);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  margin-left: 2px;
  white-space: nowrap;
}
.ck__lm:hover { color: var(--ac); }
.ck__btn {
  font-family: var(--sa);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--wh);
  background: var(--bk);
  border: 0;
  padding: 9px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.ck__btn:hover { background: var(--dg); transform: translateY(-1px); }
@media (max-width: 540px) {
  .ck {
    right: 12px;
    left: 12px;
    bottom: 12px;
    width: auto;
    max-width: none;
    padding: 14px;
    border-radius: 16px;
  }
  .ck__t { font-size: .76rem; }
}

/* ============================================
   DISCOVER FORM - language switch, success, error
   ============================================ */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--mg);
  padding: 6px 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  transition: color .2s, border-color .2s, background .2s, transform .2s;
}
.lang-switch:hover { color: var(--bk); border-color: rgba(0, 0, 0, 0.18); background: var(--wh); transform: translateY(-1px); }

.form-error {
  margin-top: 14px;
  color: #b3261e;
  font-size: .85rem;
  font-weight: 500;
}

.form-success {
  max-width: 520px;
  margin: 0 auto;
  padding: 56px 28px 72px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.form-success[hidden] { display: none; }

/* When the form has been submitted, hide the page hero, intro copy, and
   language switch so the user only sees the success card. JS toggles
   .form-submitted on the body. */
body.form-submitted .page-hero,
body.form-submitted .form-section__intro { display: none; }
body.form-submitted .form-section { padding-top: clamp(120px, 14vw, 160px); }
.form-success__icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--ow) 0%, var(--wg) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bk);
  margin-bottom: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8), 0 8px 24px rgba(0, 0, 0, .06);
}
.form-success__t {
  font-family: var(--se);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -.01em;
  color: var(--bk);
  margin: 0;
}
.form-success__p {
  font-size: .98rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--dg);
  max-width: 440px;
  margin: 0 0 18px;
}

/* ============================================
   LANGUAGE TOGGLE
   Single pill with two flat SVG flag circles inside, switch-style.
   The active flag has a white background and subtle shadow. The
   inactive one is slightly muted. Tapping the inactive flag flips
   the language. Same component shows on desktop nav AND mobile nav
   (next to the hamburger button), never inside the hamburger menu.
   ============================================ */
.nv__lang {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .65);
  border: 1px solid rgba(0, 0, 0, .07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7), 0 1px 2px rgba(0, 0, 0, .04);
  flex: 0 0 auto;
}
/* Subtle vertical divider line in the middle of the pill */
.nv__lang::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 7px;
  bottom: 7px;
  width: 1px;
  background: rgba(0, 0, 0, .12);
  transform: translateX(-50%);
  pointer-events: none;
}
.nv__lang-flag {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  overflow: hidden;
  opacity: .55;
  transition: opacity .25s, transform .25s, box-shadow .25s, background .25s;
}
.nv__lang-flag .flag {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  pointer-events: none;
}
.nv__lang-flag:hover { opacity: 1; }
.nv__lang-flag.is-active {
  opacity: 1;
  background: var(--wh);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .08), 0 1px 3px rgba(0, 0, 0, .14);
}
.nv__lang-flag.is-disabled {
  opacity: .35;
  filter: grayscale(70%);
  cursor: not-allowed;
  pointer-events: none;
}

/* Mobile copy of the toggle: lives right next to the burger button so
   visitors can switch language without opening the hamburger menu. */
.nv__lang--mobile { display: none; margin-right: 8px; }
@media (max-width: 900px) {
  .nv__right .nv__lang { display: none; }
  .nv__lang--mobile { display: inline-flex; }
}

