/* ==========================================================================
   I AMOR MY HAIR — por Daiane Amorim
   Editorial luxury beauty. Mobile-first.
   ========================================================================== */

:root {
  --ink: #0a0807;
  --ink-2: #14100d;
  --ink-3: #1d1712;
  --brown: #2b2019;
  --cream: #f2eadf;
  --nude: #d8c1aa;
  --nude-dim: #a8907b;
  --champagne: #cdb083;
  --champagne-hi: #eed7ad;
  --hair: rgba(205, 176, 131, .28);
  --hair-soft: rgba(205, 176, 131, .14);

  --serif: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
  --script: "Great Vibes", "Pinyon Script", cursive;
  --signature: "Mrs Saint Delafield", "Great Vibes", cursive;

  --gutter: 22px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --nav-h: 76px;
}

@media (min-width: 720px)  { :root { --gutter: 40px; } }
@media (min-width: 1080px) { :root { --gutter: 64px; --nav-h: 88px; } }
@media (min-width: 1440px) { :root { --gutter: 96px; } }

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: .015em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p, figure, blockquote { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
svg { display: block; }
svg use { pointer-events: none; }

::selection { background: rgba(205, 176, 131, .35); color: var(--cream); }
:focus-visible { outline: 1px solid var(--champagne); outline-offset: 4px; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--ink-3); border-radius: 8px; border: 2px solid var(--ink); }
::-webkit-scrollbar-thumb:hover { background: #3a2d24; }
html { scrollbar-color: var(--ink-3) var(--ink); scrollbar-width: thin; }

.script {
  font-family: var(--script);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--champagne);
}

.hairline { display: block; height: 1px; background: var(--hair); }
.hairline--short { width: 56px; }
.hairline--v { width: 1px; height: 56px; }

.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(30px, 7.2vw, 46px);
  line-height: 1.05;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-wrap: balance;
}
.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 var(--gutter);
  margin-bottom: 28px;
}
.section-note {
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--nude-dim);
  line-height: 1.7;
}

/* Ghost button */
.ghost {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 15px 26px;
  border: 1px solid var(--hair);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--cream);
  transition: background .5s var(--ease), border-color .5s var(--ease), color .5s var(--ease);
}
.ghost svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.2; transition: transform .6s var(--ease); }
.ghost:hover { background: rgba(205, 176, 131, .08); border-color: rgba(205, 176, 131, .55); }
.ghost:hover svg { transform: translateX(4px); }

/* Wordmark */
.wordmark { display: flex; flex-direction: column; line-height: 1; color: var(--cream); }
.wordmark__name { font-family: var(--serif); font-weight: 400; font-size: 18px; letter-spacing: .3em; }
.wordmark__sub {
  font-family: var(--serif); font-weight: 400; font-size: 11px; letter-spacing: .34em;
  margin-top: 4px; padding: 2px 0; position: relative; display: inline-block; align-self: flex-start;
}
.wordmark__sub::before, .wordmark__sub::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1px; background: var(--hair);
}
.wordmark__sub::before { top: -1px; } .wordmark__sub::after { bottom: -1px; }
.wordmark__by { font-family: var(--sans); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; margin-top: 5px; color: var(--nude); }
.wordmark--lg .wordmark__name { font-size: 22px; }
.wordmark--lg .wordmark__sub { font-size: 11.5px; margin-top: 6px; }
.wordmark--lg .wordmark__by { font-size: 8.5px; margin-top: 7px; }

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter);
  padding-top: env(safe-area-inset-top);
  transition: background .6s var(--ease), backdrop-filter .6s var(--ease), box-shadow .6s var(--ease), transform .6s var(--ease);
}
.nav::after {
  content: ""; position: absolute; left: var(--gutter); right: var(--gutter); bottom: 0; height: 1px;
  background: var(--hair-soft); opacity: 0; transition: opacity .6s var(--ease);
}
.nav.is-scrolled { background: rgba(10, 8, 7, .72); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.nav.is-scrolled::after { opacity: 1; }
.nav.is-hidden { transform: translateY(-100%); }
.nav__brand { display: flex; align-items: center; gap: 10px; }
.nav__mark { width: 44px; height: 44px; object-fit: contain; }
.nav__links, .nav__social { display: none; }
.nav__right { display: flex; align-items: center; gap: 18px; }
.lang { display: flex; align-items: center; gap: 10px; }
.lang__btn { font-size: 11px; letter-spacing: .22em; color: var(--nude-dim); padding: 6px 0; transition: color .4s; position: relative; }
.lang__btn::after { content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 1px; background: var(--champagne); transform: scaleX(0); transition: transform .5s var(--ease); }
.lang__btn.is-active { color: var(--cream); }
.lang__btn.is-active::after { transform: scaleX(1); }
.lang__btn:hover { color: var(--cream); }
.lang__sep { width: 1px; height: 12px; background: var(--hair); }
.nav__burger {
  width: 40px; height: 40px; margin-right: -10px;
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 6px;
}
.nav__burger span { width: 22px; height: 1px; background: var(--champagne); transition: transform .5s var(--ease), opacity .3s; }
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

@media (min-width: 1080px) {
  .nav__links { display: flex; gap: 40px; position: absolute; left: 50%; transform: translateX(-50%); }
  .nav__links a {
    font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--nude);
    padding: 8px 0; position: relative; transition: color .4s;
  }
  .nav__links a::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--champagne);
    transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease);
  }
  .nav__links a:hover, .nav__links a.is-active { color: var(--cream); }
  .nav__links a.is-active::after { transform: scaleX(1); }
  .nav__right { gap: 28px; }
  .nav__social { display: flex; gap: 22px; }
  .nav__social a { color: var(--nude); transition: color .4s; }
  .nav__social a:hover { color: var(--champagne-hi); }
  .nav__social svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
  .nav__burger { display: none; }
}

/* Mobile menu */
.menu {
  position: fixed; inset: 0; z-index: 40;
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: calc(var(--nav-h) + 40px) var(--gutter) 40px;
  opacity: 0; visibility: hidden; pointer-events: none;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .8s var(--ease), opacity .4s, visibility 0s .8s;
}
.menu.is-open { opacity: 1; visibility: visible; pointer-events: auto; clip-path: inset(0 0 0 0); transition: clip-path .8s var(--ease), opacity .3s, visibility 0s; }
.menu__links { display: flex; flex-direction: column; gap: 4px; }
.menu__links a {
  font-family: var(--serif); font-weight: 300; font-size: 40px; letter-spacing: .12em; text-transform: uppercase;
  line-height: 1.3; display: flex; align-items: baseline; gap: 18px;
  opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.menu__links a small { font-family: var(--sans); font-size: 11px; letter-spacing: .2em; color: var(--champagne); }
.menu.is-open .menu__links a { opacity: 1; transform: none; }
.menu.is-open .menu__links a:nth-child(1) { transition-delay: .15s; }
.menu.is-open .menu__links a:nth-child(2) { transition-delay: .21s; }
.menu.is-open .menu__links a:nth-child(3) { transition-delay: .27s; }
.menu.is-open .menu__links a:nth-child(4) { transition-delay: .33s; }
.menu.is-open .menu__links a:nth-child(5) { transition-delay: .39s; }
.menu__foot { display: flex; flex-direction: column; gap: 22px; }
.menu__tag { font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--nude-dim); }
.menu__social { display: flex; gap: 26px; }
.menu__social svg { width: 22px; height: 22px; fill: none; stroke: var(--champagne); stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
@media (min-width: 1080px) { .menu { display: none; } }

/* --------------------------------------------------------------------------
   01 Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  height: 100svh; min-height: 640px;
  overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 0 var(--gutter) 108px;
  background: var(--ink);
}
.motion { position: relative; }
.motion__video, .motion__canvas, .motion__still { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.motion__video, .motion__canvas { display: none; }
.motion.has-gl .motion__canvas { display: block; }
.motion.has-gl .motion__still { visibility: hidden; }
.motion.has-video .motion__video { display: block; }
.motion__video--b { pointer-events: none; }
.motion.has-video .motion__canvas, .motion.has-video .motion__still { display: none; }

.hero__media { position: absolute; inset: 0; }
.hero__media .motion__still, .hero__media .motion__video { inset: -6% 0 0 0; height: 106%; object-position: 50% 28%; }
.hero__media { opacity: 0; transform: scale(1.05); transition: opacity 2s var(--ease), transform 3.5s var(--ease); }
.hero.is-ready .hero__media { opacity: 1; transform: none; }
.hero__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to top, rgba(10, 8, 7, .96) 0%, rgba(10, 8, 7, .72) 22%, rgba(10, 8, 7, .18) 48%, rgba(10, 8, 7, 0) 66%),
    linear-gradient(to bottom, rgba(10, 8, 7, .62) 0%, rgba(10, 8, 7, 0) 26%);
}

.hero__copy { position: relative; z-index: 2; max-width: 640px; }
.hero__title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(34px, 9.3vw, 58px);
  line-height: 1.02; letter-spacing: .06em; text-transform: uppercase;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: .06em; margin-bottom: -.06em; }
.hero__title .line > span { display: block; transform: translateY(110%); transition: transform 1.3s var(--ease); }
.hero.is-ready .hero__title .line > span { transform: none; }
.hero.is-ready .hero__title .line:nth-child(1) > span { transition-delay: .55s; }
.hero.is-ready .hero__title .line:nth-child(2) > span { transition-delay: .65s; }
.hero.is-ready .hero__title .line:nth-child(3) > span { transition-delay: .75s; }
.hero.is-ready .hero__title .line:nth-child(4) > span { transition-delay: .9s; }
.hero__title .line--script { padding: .08em 0 .22em; margin: 0; }
.hero__title .script { font-size: 1.32em; line-height: .9; padding-left: .04em; }
.hero__tag {
  margin-top: 26px; font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--nude);
  opacity: 0; transform: translateY(8px); transition: opacity 1.2s var(--ease) 1.25s, transform 1.2s var(--ease) 1.25s;
}
.hero__tag i { font-style: normal; color: var(--champagne); margin: 0 .35em; }
.hero.is-ready .hero__tag { opacity: 1; transform: none; }

.hero__aside { display: none; }

.hero__scroll {
  position: absolute; left: var(--gutter); bottom: 34px; z-index: 2;
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--nude-dim);
  opacity: 0; transition: opacity 1.4s var(--ease) 1.8s;
}
.hero.is-ready .hero__scroll { opacity: 1; }
.hero__scroll-line { width: 1px; height: 30px; background: var(--hair); position: relative; overflow: hidden; }
.hero__scroll-line::after {
  content: ""; position: absolute; inset: 0; background: var(--champagne);
  transform: translateY(-100%); animation: scrollLine 2.6s var(--ease) infinite;
}
@keyframes scrollLine { 0% { transform: translateY(-100%); } 55%, 100% { transform: translateY(100%); } }
.hero__scroll svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.2; stroke-linecap: round; }

@media (min-width: 720px) {
  .hero { padding-bottom: 132px; }
  .hero__title { font-size: clamp(56px, 8vw, 84px); }
}
@media (min-width: 1080px) {
  .hero { align-items: center; padding: 0 var(--gutter); min-height: 720px; }
  .hero__media .motion__still { object-position: 62% 30%; }
  /* the generated clip is 3:4 — place it like the WebGL editorial layout: tall, right of centre, edges fading into the page */
  .hero__media .motion__video {
    inset: auto; top: -8%; left: 67%; width: auto; height: 122%; transform: translateX(-50%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 14%, #000 86%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, #000 14%, #000 86%, transparent 100%);
  }
  .hero__scrim {
    background:
      linear-gradient(to right, rgba(10, 8, 7, .92) 0%, rgba(10, 8, 7, .7) 22%, rgba(10, 8, 7, .12) 46%, rgba(10, 8, 7, 0) 60%, rgba(10, 8, 7, 0) 82%, rgba(10, 8, 7, .55) 100%),
      linear-gradient(to top, rgba(10, 8, 7, .95) 0%, rgba(10, 8, 7, 0) 30%),
      linear-gradient(to bottom, rgba(10, 8, 7, .5) 0%, rgba(10, 8, 7, 0) 22%);
  }
  .hero__copy { max-width: 940px; margin-top: 4vh; padding-left: 8.5vw; }
  .hero__title { font-size: clamp(56px, 5.1vw, 84px); letter-spacing: .05em; }
  .hero__title .script { font-size: 1.36em; }
  .hero__tag { margin-top: 30px; font-size: 11px; }
  .hero__aside {
    display: block; position: absolute; right: var(--gutter); bottom: 22vh; z-index: 2; max-width: 240px;
    font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: var(--nude); line-height: 1.9;
    opacity: 0; transform: translateY(10px); transition: opacity 1.4s var(--ease) 1.7s, transform 1.4s var(--ease) 1.7s;
  }
  .hero.is-ready .hero__aside { opacity: 1; transform: none; }
  .hero__aside .script { font-size: 38px; letter-spacing: 0; line-height: 1; display: block; margin-top: 6px; }
  .hero__scroll { left: var(--gutter); bottom: auto; top: 50%; transform: translateY(-50%) rotate(0); flex-direction: column; gap: 14px; }
  .hero__scroll-line { height: 56px; }
  .hero__scroll span:not(.hero__scroll-line) { writing-mode: vertical-rl; }
}

/* --------------------------------------------------------------------------
   Reveal on scroll
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); filter: blur(6px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease), filter 1.1s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; filter: none; }
.pillars .reveal:nth-child(2), .services__grid .reveal:nth-child(2) { transition-delay: .1s; }
.pillars .reveal:nth-child(3), .services__grid .reveal:nth-child(3) { transition-delay: .2s; }
.pillars .reveal:nth-child(4), .services__grid .reveal:nth-child(4) { transition-delay: .3s; }
.contact__list .reveal:nth-child(2) { transition-delay: .1s; }
.contact__list .reveal:nth-child(3) { transition-delay: .2s; }
.contact__list .reveal:nth-child(4) { transition-delay: .3s; }

/* --------------------------------------------------------------------------
   02 Concept + pillars
   -------------------------------------------------------------------------- */
.concept { position: relative; padding: 96px 0 72px; overflow: hidden; }
.concept__bleed { display: none; }
.concept__inner { padding: 0 var(--gutter); position: relative; z-index: 1; }
.concept__title { font-family: var(--serif); font-weight: 300; font-size: clamp(26px, 6.4vw, 34px); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.concept__text p { max-width: 34em; color: var(--nude); font-size: 15.5px; }

.pillars {
  margin-top: 56px;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative;
}
.pillars::before { content: ""; position: absolute; left: 50%; top: 6%; bottom: 6%; width: 1px; background: var(--hair-soft); }
.pillars::after  { content: ""; position: absolute; top: 50%; left: 6%; right: 6%; height: 1px; background: var(--hair-soft); }
.pillars li { padding: 26px 18px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.pillars__icon { width: 34px; height: 34px; fill: none; stroke: var(--champagne); stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 4px; }
.pillars h3 { font-family: var(--sans); font-weight: 400; font-size: 11px; letter-spacing: .26em; text-transform: uppercase; }
.pillars p { font-size: 13.5px; line-height: 1.6; color: var(--nude-dim); max-width: 18em; }

@media (min-width: 720px) {
  .concept { padding: 128px 0 96px; }
  .concept__text p { font-size: 17px; }
}
@media (min-width: 1080px) {
  .concept { padding: 150px 0 130px; }
  .concept__bleed {
    display: block; position: absolute; right: -6%; top: -12%; width: 46%; height: 124%; z-index: 0; pointer-events: none;
    -webkit-mask-image: radial-gradient(ellipse 62% 70% at 60% 45%, #000 20%, transparent 74%);
            mask-image: radial-gradient(ellipse 62% 70% at 60% 45%, #000 20%, transparent 74%);
    opacity: .82;
  }
  .concept__bleed img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }
  .concept__inner { display: grid; grid-template-columns: minmax(0, 46%) 1fr; gap: 64px; align-items: start; }
  .concept__text { padding-top: 6px; }
  .concept__text p { font-size: 17.5px; line-height: 1.75; }
  .pillars { grid-column: 1 / -1; grid-template-columns: repeat(4, 1fr); margin-top: 88px; max-width: 980px; }
  .pillars::before, .pillars::after { display: none; }
  .pillars li { align-items: flex-start; text-align: left; padding: 0 32px 0 0; position: relative; }
  .pillars li + li { padding-left: 32px; }
  .pillars li + li::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 1px; background: var(--hair-soft); }
  .pillars__icon { width: 36px; height: 36px; }
}

/* --------------------------------------------------------------------------
   03 Services
   -------------------------------------------------------------------------- */
.services { padding: 56px 0 96px; }
.services__grid {
  padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.service a {
  position: relative; display: block; overflow: hidden;
  aspect-ratio: 3 / 4.4;
  background: var(--ink-2);
  isolation: isolate;
}
.service img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%;
  transform: scale(1.001); transition: transform 1.6s var(--ease), filter 1.2s var(--ease);
  filter: saturate(.92) brightness(.92);
}
.service a::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(10, 8, 7, .96) 0%, rgba(10, 8, 7, .78) 30%, rgba(10, 8, 7, .12) 62%, rgba(10, 8, 7, 0) 80%),
    linear-gradient(to bottom, rgba(10, 8, 7, .35), rgba(10, 8, 7, 0) 30%);
  transition: opacity .8s var(--ease);
}
.service__body { position: absolute; left: 16px; right: 16px; bottom: 18px; z-index: 2; display: flex; flex-direction: column; }
.service__num { font-family: var(--serif); font-weight: 300; font-size: 26px; letter-spacing: .06em; color: var(--champagne); line-height: 1; margin-bottom: 10px; }
.service__name { font-family: var(--serif); font-weight: 400; font-size: 16px; letter-spacing: .1em; text-transform: uppercase; line-height: 1.2; }
.service__desc { margin-top: 10px; font-size: 12px; line-height: 1.55; color: var(--nude-dim); display: none; }
.service__arrow {
  position: absolute; right: 14px; top: 14px; z-index: 2;
  width: 30px; height: 30px; border: 1px solid var(--hair); border-radius: 50%;
  display: grid; place-items: center; color: var(--champagne);
  transition: background .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease);
}
.service__arrow svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }
.service a:hover img, .service a:focus-visible img { transform: scale(1.05); filter: saturate(1) brightness(1); }
.service a:hover .service__arrow { background: var(--champagne); color: var(--ink); border-color: var(--champagne); }

@media (min-width: 720px) {
  .services { padding: 80px 0 120px; }
  .services__grid { gap: 14px; }
  .service__body { left: 22px; right: 22px; bottom: 24px; }
  .service__desc { display: block; }
  .service__name { font-size: 19px; }
}
@media (min-width: 1080px) {
  .services { padding: 40px 0 150px; }
  .section-head { flex-direction: row; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; }
  .section-head .section-title { display: flex; align-items: center; gap: 28px; }
  .section-head .section-title::after { content: ""; width: 120px; height: 1px; background: var(--hair); }
  .section-note { text-align: right; }
  .services__grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .service a { aspect-ratio: 3 / 4.2; }
  .service__num { font-size: 30px; }
  .service__name { font-size: 18px; }
  .service__desc { font-size: 12.5px; display: block; opacity: 0; transform: translateY(6px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
  .service a:hover .service__desc, .service a:focus-visible .service__desc { opacity: 1; transform: none; }
}
@media (min-width: 1440px) {
  .service__name { font-size: 20px; }
  .service__body { left: 28px; right: 28px; bottom: 28px; }
}

/* --------------------------------------------------------------------------
   04 Experience
   -------------------------------------------------------------------------- */
.experience {
  position: relative; overflow: hidden;
  min-height: 92svh;
  display: flex; align-items: center;
  padding: 120px var(--gutter);
}
.experience__bg { position: absolute; inset: -14% 0; z-index: 0; will-change: transform; }
.experience__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; filter: brightness(.9) saturate(.9); }
.experience__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, var(--ink) 0%, rgba(10, 8, 7, .3) 22%, rgba(10, 8, 7, .3) 78%, var(--ink) 100%),
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(10, 8, 7, .35), rgba(10, 8, 7, 0) 70%);
}
.experience__inner { position: relative; z-index: 1; max-width: 560px; display: flex; flex-direction: column; gap: 24px; }
.experience__kicker { font-size: 11px; letter-spacing: .32em; text-transform: uppercase; color: var(--champagne); }
.experience__title {
  font-family: var(--serif); font-weight: 300; font-size: clamp(38px, 9.6vw, 56px);
  letter-spacing: .06em; text-transform: uppercase; line-height: 1.06;
}
.experience__title .script { display: block; font-size: 1.32em; line-height: 1.05; margin-top: .12em; }
.experience__text { color: var(--nude); font-size: 16px; max-width: 30em; }
@media (min-width: 720px) { .experience__title { font-size: clamp(56px, 7.4vw, 72px); } }
@media (min-width: 1080px) {
  .experience { padding: 160px var(--gutter); min-height: 100vh; }
  .experience__inner { max-width: 760px; margin-left: 8.5vw; }
  .experience__title { font-size: clamp(64px, 5.8vw, 92px); }
  .experience__text { font-size: 17.5px; }
}

/* --------------------------------------------------------------------------
   05 Work / gallery
   -------------------------------------------------------------------------- */
.work { padding: 72px 0 96px; }
.work__filters {
  display: flex; gap: 6px; padding: 0 var(--gutter); margin-bottom: 20px;
  overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(to right, #000 88%, transparent); mask-image: linear-gradient(to right, #000 88%, transparent);
}
@media (min-width: 720px) { .work__filters { -webkit-mask-image: none; mask-image: none; } }
.work__filters::-webkit-scrollbar { display: none; }
.work__filters button {
  flex: 0 0 auto; padding: 10px 14px;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--nude-dim);
  position: relative; transition: color .4s;
}
.work__filters button::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 1px; background: var(--champagne);
  transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease);
}
.work__filters button:hover { color: var(--cream); }
.work__filters button.is-active { color: var(--cream); }
.work__filters button.is-active::after { transform: scaleX(1); }

.work__grid { padding: 0 var(--gutter); columns: 2; column-gap: 10px; }
.work__item {
  break-inside: avoid; margin-bottom: 10px; overflow: hidden; background: var(--ink-2);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.work__item.is-hidden { display: none; }
.work__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.6s var(--ease), filter 1s var(--ease); filter: saturate(.94) brightness(.94); }
.work__item:hover img { transform: scale(1.04); filter: saturate(1) brightness(1); }
.r-34 img { aspect-ratio: 3 / 4; }
.r-45 img { aspect-ratio: 4 / 5.2; }
.r-11 img { aspect-ratio: 1 / 1.1; }
.work__more { padding: 24px var(--gutter) 0; display: flex; justify-content: center; }

@media (min-width: 720px) {
  .work { padding: 110px 0 130px; }
  .work__grid { columns: 3; column-gap: 14px; }
  .work__item { margin-bottom: 14px; }
  .work__filters { gap: 10px; margin-bottom: 30px; }
}
@media (min-width: 1080px) {
  .work { padding: 40px 0 160px; }
  .work__grid { columns: 4; column-gap: 18px; }
  .work__item { margin-bottom: 18px; }
  .work__filters button { font-size: 11px; padding: 10px 18px; }
  .work__more { padding-top: 36px; }
}

/* --------------------------------------------------------------------------
   06 About Daiane
   -------------------------------------------------------------------------- */
.about { position: relative; overflow: hidden; padding: 72px 0 80px; background: var(--ink); }
.about__head { position: relative; z-index: 2; padding: 0 var(--gutter); }
.about__portrait { position: relative; z-index: 1; width: 100%; margin: 8px 0 0; }
.about__media {
  width: 100%; aspect-ratio: 3 / 4;
  -webkit-mask-image: radial-gradient(ellipse 66% 60% at 50% 42%, #000 38%, rgba(0, 0, 0, .55) 62%, transparent 84%);
          mask-image: radial-gradient(ellipse 66% 60% at 50% 42%, #000 38%, rgba(0, 0, 0, .55) 62%, transparent 84%);
}
.about__media .motion__still, .about__media .motion__video { object-fit: cover; object-position: 50% 30%; }
.about__portrait::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background:
    linear-gradient(to bottom, var(--ink) 0%, rgba(10, 8, 7, 0) 10%, rgba(10, 8, 7, 0) 74%, var(--ink) 100%);
}
.about__signature {
  display: block; position: relative; z-index: 3; margin: -6% 0 0 var(--gutter);
  font-family: var(--signature); font-weight: 400; font-size: clamp(40px, 10.5vw, 56px); line-height: 1;
  color: var(--champagne); opacity: .9; transform: rotate(-4deg); transform-origin: left bottom; white-space: nowrap;
}
.about__copy { position: relative; z-index: 2; padding: 0 var(--gutter); margin-top: -8px; display: flex; flex-direction: column; gap: 22px; }
.section-title--stack { line-height: 1.08; }
.about__copy p { color: var(--nude); font-size: 15.5px; max-width: 34em; }
.about__copy .ghost { align-self: flex-start; }
.about__quote { position: relative; z-index: 1; padding: 44px var(--gutter) 0; display: flex; flex-direction: column; gap: 18px; }
.about__quote p { font-size: 11.5px; letter-spacing: .28em; text-transform: uppercase; color: var(--nude-dim); line-height: 1.9; max-width: 18em; }

@media (min-width: 720px) {
  .about { padding: 100px 0 120px; }
  .about__portrait { width: 74vw; max-width: 620px; margin-left: auto; margin-right: 6vw; }
  .about__signature { margin-left: 0; }
}
@media (min-width: 1080px) {
  .about {
    padding: 40px 0 80px;
    display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 5fr) minmax(0, 3fr); grid-template-rows: auto auto;
    align-items: center; column-gap: 24px; min-height: 92vh;
  }
  .about__head { grid-column: 1; grid-row: 1; align-self: end; padding-left: calc(var(--gutter) + 2vw); padding-right: 0; margin-bottom: 26px; }
  .about__head .section-title { display: flex; flex-direction: column; }
  .about__copy { grid-column: 1; grid-row: 2; align-self: start; margin: 0; padding-left: calc(var(--gutter) + 2vw); padding-right: 0; gap: 26px; }
  .about__copy p { font-size: 17px; line-height: 1.75; max-width: 30em; }
  .about__portrait { grid-column: 2; grid-row: 1 / 3; width: 100%; max-width: 640px; margin: 0; justify-self: center; }
  .about__media { aspect-ratio: 3 / 3.6; }
  .about__media .motion__still, .about__media .motion__video { object-position: 50% 30%; }
  .about__signature { position: relative; margin: -4% 0 0 6%; font-size: 60px; opacity: .85; transform: rotate(-5deg); }
  .about__quote { grid-column: 3; grid-row: 1 / 3; padding: 0 var(--gutter) 0 0; justify-self: end; align-self: start; margin-top: 16vh; }
  .about__quote p { font-size: 12.5px; }
}
@media (min-width: 1440px) { .about__signature { font-size: 66px; } }

/* --------------------------------------------------------------------------
   07 Contact
   -------------------------------------------------------------------------- */
.contact { position: relative; padding: 72px 0 96px; }
.contact::before { content: ""; position: absolute; left: var(--gutter); right: var(--gutter); top: 0; height: 1px; background: var(--hair-soft); }
.contact__inner { padding: 0 var(--gutter); }
.contact__head { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.contact__head p { color: var(--nude); max-width: 28em; font-size: 15.5px; }
.contact__list { display: flex; flex-direction: column; }
.contact__list li { border-top: 1px solid var(--hair-soft); }
.contact__list li:last-child { border-bottom: 1px solid var(--hair-soft); }
.contact__list a {
  display: grid; grid-template-columns: 24px 1fr auto; grid-template-rows: auto auto; column-gap: 20px; align-items: center;
  padding: 22px 6px 22px 2px; transition: transform .6s var(--ease), color .4s;
}
.contact__icon { grid-column: 1; grid-row: 1 / 3; width: 24px; height: 24px; fill: none; stroke: var(--champagne); stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; }
.contact__label { grid-column: 2; grid-row: 1; font-size: 12px; letter-spacing: .26em; text-transform: uppercase; }
.contact__hint { grid-column: 2; grid-row: 2; font-size: 12.5px; color: var(--nude-dim); margin-top: 3px; letter-spacing: .02em; }
.contact__chev { grid-column: 3; grid-row: 1 / 3; width: 16px; height: 16px; fill: none; stroke: var(--nude-dim); stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round; transition: transform .6s var(--ease), stroke .4s; }
.contact__list a:hover { transform: translateX(8px); }
.contact__list a:hover .contact__chev { transform: translateX(4px); stroke: var(--champagne-hi); }

@media (min-width: 720px) { .contact { padding: 110px 0 130px; } }
@media (min-width: 1080px) {
  .contact { padding: 120px 0 150px; }
  .contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .contact__head { margin: 0; }
  .contact__head p { font-size: 17px; }
  .contact__list a { padding: 28px 8px 28px 2px; }
  .contact__label { font-size: 13px; }
}

/* --------------------------------------------------------------------------
   08 Footer
   -------------------------------------------------------------------------- */
.footer {
  padding: 56px var(--gutter) calc(40px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--hair-soft);
  display: flex; flex-direction: column; align-items: center; gap: 30px; text-align: center;
}
.footer__brand { display: flex; align-items: center; gap: 12px; }
.footer__logo { width: 190px; height: auto; }
.footer__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 24px; }
.footer__links a { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--nude-dim); transition: color .4s; }
.footer__links a:hover { color: var(--cream); }
.footer__social { display: flex; gap: 26px; }
.footer__social svg { width: 20px; height: 20px; fill: none; stroke: var(--champagne); stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; transition: stroke .4s; }
.footer__social a:hover svg { stroke: var(--champagne-hi); }
.footer__legal { font-size: 11px; letter-spacing: .12em; color: var(--nude-dim); line-height: 1.8; }
.footer__legal span { font-size: 11px; }
.footer__privacy { font-size: 11px; color: var(--nude-dim); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--hair); margin-left: 10px; transition: color .4s; }
.footer__privacy:hover { color: var(--cream); }
@media (min-width: 1080px) {
  .footer { flex-direction: row; justify-content: space-between; text-align: left; gap: 40px; padding-top: 44px; padding-bottom: 44px; }
  .footer__legal br { display: none; }
  .footer__legal span { margin-left: 14px; }
}

/* --------------------------------------------------------------------------
   Floating WhatsApp (mobile / tablet)
   -------------------------------------------------------------------------- */
.fab {
  position: fixed; right: 18px; bottom: calc(18px + env(safe-area-inset-bottom)); z-index: 30;
  display: flex; align-items: center; gap: 10px;
  height: 44px; padding: 0 16px 0 12px;
  background: rgba(20, 16, 13, .78); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--hair); border-radius: 999px;
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--cream);
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease), background .4s;
}
.fab svg { width: 20px; height: 20px; fill: none; stroke: var(--champagne); stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.fab.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.fab:hover { background: rgba(205, 176, 131, .16); }
@media (min-width: 1080px) { .fab { display: none; } }

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .hero__media, .hero__tag, .hero__aside, .hero__scroll, .hero__title .line > span, .menu__links a {
    opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important;
  }
  .hero__scroll-line::after { animation: none; }
  .motion .motion__canvas, .motion .motion__video { display: none !important; }
  .motion .motion__still { visibility: visible !important; display: block !important; }
  .experience__bg { transform: none !important; }
}
