/* ============================================================
   HIANE LUIZA — UGC Creator · Awwwards-grade editorial design
   Palette: #bbce8a · #e2edcd · #ffffff (+ derived ink/deep)
   ============================================================ */

:root {
  --sage: #bbce8a;
  --mist: #e2edcd;
  --white: #ffffff;
  --deep: #4f5f2e;        /* verde profundo — texto/acento */
  --ink: #14160e;         /* quase-preto oliva — seções dark */
  --ink-soft: #6a7152;
  --line: rgba(20, 22, 14, 0.12);

  --f-display: 'Fraunces', Georgia, serif;
  --f-sans: 'Inter', system-ui, sans-serif;
  --f-mono: 'Space Mono', monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --gut: clamp(20px, 5vw, 90px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-sans);
  background: var(--white);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  zoom: 0.85; /* reduz tudo p/ 85% do tamanho original */
}

a { color: inherit; text-decoration: none; }
em { font-style: italic; }

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

/* ===== GRAIN ===== */
.grain {
  position: fixed; inset: -50%; z-index: 9000; pointer-events: none;
  opacity: 0.04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== CUSTOM CURSOR ===== */
.cursor, .cursor-dot { position: fixed; top: 0; left: 0; z-index: 9500; pointer-events: none; border-radius: 50%; mix-blend-mode: difference; }
.cursor { width: 40px; height: 40px; border: 1px solid #fff; transform: translate(-50%, -50%); transition: width .35s var(--ease), height .35s var(--ease), background .35s; }
.cursor-dot { width: 6px; height: 6px; background: #fff; transform: translate(-50%, -50%); }
.cursor.is-hover { width: 72px; height: 72px; background: #fff; }
@media (hover: none), (pointer: coarse) { .cursor, .cursor-dot { display: none; } }

/* ===== NAV ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 22px var(--gut); transition: padding .4s var(--ease), background .4s, box-shadow .4s; }
.nav.scrolled { padding: 14px var(--gut); background: rgba(255,255,255,0.72); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); }
.nav__inner { display: flex; align-items: center; gap: 30px; }
.nav__logo { font-family: var(--f-display); font-size: 1.45rem; font-weight: 500; letter-spacing: -0.01em; }
.nav__logo span { color: var(--deep); }
.nav__role { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.04em; color: var(--ink-soft); margin-right: auto; }
.nav__links { display: flex; gap: 30px; }
.nav__links a { font-size: 0.92rem; font-weight: 500; display: inline-flex; gap: 6px; align-items: baseline; position: relative; }
.nav__links a i { font-family: var(--f-mono); font-size: 0.62rem; color: var(--deep); font-style: normal; }
.nav__links a::after { content: ''; position: absolute; left: 0; bottom: -5px; height: 1.5px; width: 0; background: var(--ink); transition: width .4s var(--ease); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__cta { border: 1.5px solid var(--ink); border-radius: 999px; padding: 10px 22px; font-size: 0.88rem; font-weight: 600; overflow: hidden; position: relative; }
.nav__cta span { position: relative; z-index: 1; transition: color .4s; }
.nav__cta::before { content: ''; position: absolute; inset: 0; background: var(--ink); transform: translateY(101%); transition: transform .45s var(--ease); }
.nav__cta:hover::before { transform: translateY(0); }
.nav__cta:hover span { color: var(--mist); }
.nav__toggle { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; }
.nav__toggle span { width: 28px; height: 2px; background: var(--ink); transition: .3s; }

/* ===== HERO ===== */
.hero { min-height: 100svh; padding: 0 var(--gut); display: flex; flex-direction: column; justify-content: center; position: relative; padding-top: 120px; padding-bottom: 60px; }
.hero__grid { position: relative; z-index: 2; }
.hero__meta { margin-bottom: 26px; }
.tag { font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.04em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 9px; color: var(--deep); }
.tag i { width: 8px; height: 8px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 0 0 var(--sage); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(187,206,138,0.7); } 70% { box-shadow: 0 0 0 12px rgba(187,206,138,0); } 100% { box-shadow: 0 0 0 0 rgba(187,206,138,0); } }

.hero__title { font-family: var(--f-display); font-weight: 400; font-size: clamp(3rem, 13vw, 12rem); line-height: 0.92; letter-spacing: -0.03em; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line__in { display: block; transform: translateY(110%); }
.hero__title .line:nth-child(2) { padding-left: clamp(0px, 8vw, 160px); }
.hero__title em { color: var(--deep); }

.hero__bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-top: clamp(32px, 5vw, 64px); flex-wrap: wrap; }
.hero__lead { max-width: 440px; font-size: 1.05rem; color: var(--ink-soft); }
.hero__lead strong { color: var(--ink); font-weight: 600; }

.link-arrow { display: inline-flex; align-items: center; gap: 12px; font-size: 1.05rem; font-weight: 600; padding: 16px 30px; border-radius: 999px; background: var(--ink); color: var(--mist); transition: gap .35s var(--ease), transform .35s var(--ease); }
.link-arrow:hover { gap: 20px; }
.link-arrow svg { transition: transform .35s var(--ease); }

.hero__media { position: absolute; top: 50%; right: var(--gut); transform: translateY(-50%); z-index: 1; opacity: 0.95; }
.hero__phone { width: clamp(180px, 20vw, 300px); aspect-ratio: 9/17; border-radius: 30px; padding: 8px; background: var(--ink); box-shadow: 0 40px 90px rgba(20,22,14,0.25); rotate: 4deg; }
.hero__phone-screen { width: 100%; height: 100%; border-radius: 24px; overflow: hidden; }

.hero__scroll { position: absolute; bottom: 34px; left: var(--gut); display: flex; align-items: center; gap: 12px; font-family: var(--f-mono); font-size: 0.94rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); }
.hero__scroll i { width: 46px; height: 1px; background: var(--ink); position: relative; overflow: hidden; }
.hero__scroll i::after { content: ''; position: absolute; inset: 0; background: var(--deep); transform: translateX(-100%); animation: scrollLine 2s var(--ease) infinite; }
@keyframes scrollLine { 50% { transform: translateX(0); } 100% { transform: translateX(100%); } }

/* media placeholders */
.media-ph { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; background: linear-gradient(155deg, var(--mist), var(--sage)); color: var(--deep); }
.media-ph span { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,0.45); font-size: 1.1rem; }
.media-ph p { font-family: var(--f-mono); font-size: 0.72rem; }
.media-ph--photo span { font-size: 2.4rem; background: none; width: auto; height: auto; }
.media-ph--photo small { font-family: var(--f-mono); font-size: 0.72rem; opacity: 0.7; }

/* ===== IG PROFILE CARD (hero) ===== */
.ig-card { display: block; cursor: pointer; width: clamp(260px, 24vw, 340px); background: var(--white); border-radius: 22px; padding: 22px; box-shadow: 0 40px 90px rgba(20,22,14,0.18); border: 1px solid var(--line); rotate: 3deg; transition: rotate .5s var(--ease), transform .5s var(--ease); }
.ig-card * { pointer-events: none; }
.hero__media:hover .ig-card { rotate: 0deg; }
.ig-card__top { display: flex; align-items: center; gap: 14px; }
.ig-card__avatar { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; display: grid; place-items: center; font-size: 1.4rem; background: linear-gradient(135deg, var(--mist), var(--sage)); flex-shrink: 0; }
.ig-card__avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.ig-card__id strong { display: block; font-size: 0.98rem; }
.ig-card__id span { font-size: 0.74rem; color: var(--ink-soft); }
.ig-card__stats { display: flex; justify-content: space-between; margin: 18px 0; }
.ig-card__stats div { text-align: center; }
.ig-card__stats b { font-family: var(--f-display); font-size: 1.25rem; display: block; line-height: 1; }
.ig-card__stats span { font-family: var(--f-mono); font-size: 0.62rem; text-transform: uppercase; color: var(--ink-soft); }
.ig-card__grid { border-radius: 10px; overflow: hidden; }
.ig-card__grid img { width: 100%; height: auto; display: block; }
.ig-card__btn { display: block; text-align: center; margin-top: 16px; background: var(--ink); color: var(--mist); border-radius: 999px; padding: 11px; font-size: 0.85rem; font-weight: 600; }
.ig-card__note { display: block; text-align: center; margin-top: 10px; font-family: var(--f-mono); font-size: 0.62rem; color: var(--ink-soft); }

/* ===== MARQUEE ===== */
.marquee { background: var(--ink); color: var(--mist); padding: 26px 0; overflow: hidden; border-block: 1px solid var(--ink); }
.marquee__track { display: flex; gap: 32px; align-items: center; width: max-content; animation: marquee 32s linear infinite; }
.marquee__track span { font-family: var(--f-display); font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 300; }
.marquee__track b { color: var(--sage); font-weight: 400; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===== BRANDS STRIP ===== */
.brands { padding: clamp(60px, 8vw, 110px) 0; overflow: hidden; }
.brands .sec-index { padding: 0 var(--gut); margin-bottom: 40px; }
.brands__track { display: flex; gap: 24px; width: max-content; animation: marquee 50s linear infinite; }
.brands:hover .brands__track { animation-play-state: paused; }
.brand { position: relative; flex: 0 0 auto; width: 216px; height: 124px; background: #e9e9e9; border: 1px solid rgba(20,22,14,0.06); border-radius: 16px; overflow: hidden; }
.brand img { position: absolute; top: 18px; left: 18px; width: calc(100% - 36px); height: calc(100% - 36px); object-fit: contain; opacity: 0.85; transition: opacity .4s var(--ease), transform .4s var(--ease); }
.brand:hover img { opacity: 1; transform: scale(1.06); }

/* ===== SECTION SHELL ===== */
.section { padding: clamp(80px, 12vw, 180px) var(--gut); position: relative; }
.section--dark { background: var(--ink); color: var(--mist); }
.section--mist { background: var(--mist); }
.sec-index { font-family: var(--f-display); font-style: italic; font-weight: 500; font-size: clamp(1.8rem, 3.6vw, 2.8rem); line-height: 1.05; letter-spacing: -0.015em; color: var(--deep); margin-bottom: 48px; display: flex; gap: 12px; align-items: baseline; }
.sec-index span { font-family: var(--f-mono); font-style: normal; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em; color: var(--ink-soft); }
.sec-index--light { color: var(--sage); }
.sec-index--light span { color: rgba(226,237,205,0.7); }

/* ===== ABOUT ===== */
.about__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
.about__frame { aspect-ratio: 4/5; border-radius: 8px; overflow: hidden; }
.about__img { width: 100%; height: 100%; object-fit: cover; object-position: 30% center; display: block; }
.about__text h2 { font-family: var(--f-display); font-weight: 400; font-size: clamp(1.8rem, 4vw, 3.4rem); line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 28px; }
.about__text h2 em { color: var(--deep); }
.about__text p { font-size: 1.05rem; color: var(--ink-soft); max-width: 520px; }
.about__list { list-style: none; margin-top: 32px; display: grid; gap: 14px; }
.about__list li { display: flex; gap: 14px; align-items: center; font-weight: 500; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.about__list li span { color: var(--deep); }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: clamp(60px, 9vw, 130px); border-top: 1px solid var(--line); padding-top: 50px; }
.stat strong { font-family: var(--f-display); font-weight: 400; font-size: clamp(2.4rem, 5vw, 4.4rem); line-height: 1; display: block; color: var(--deep); letter-spacing: -0.02em; }
.stat span { font-family: var(--f-mono); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); }

/* ===== SOCIAL (redes) ===== */
.social__list { display: grid; gap: 18px; }
.srow { display: grid; grid-template-columns: 240px 1fr; gap: 28px; align-items: center; padding: 18px; border: 1px solid var(--line); border-radius: 16px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s; }
.srow:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(20,22,14,0.1); border-color: transparent; }
.srow__thumb { aspect-ratio: 16/10; border-radius: 10px; overflow: hidden; }
.srow__thumb-img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.srow__platform { font-family: var(--f-mono); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.pdot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.pdot--yt { background: #ff0033; }
.pdot--tk { background: #111; }
.pdot--ig { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }
.srow__title { font-family: var(--f-display); font-weight: 400; font-size: clamp(1.4rem, 3vw, 2.2rem); letter-spacing: -0.01em; margin-bottom: 8px; }
.srow__desc { color: var(--ink-soft); font-size: 0.98rem; max-width: 60ch; }
.srow__cta { display: inline-block; margin-top: 14px; font-weight: 600; font-size: 0.92rem; color: var(--deep); }

/* ===== METRICS ===== */
.metrics .stats { margin-top: 0; border-top: none; padding-top: 0; }
.metrics__note { font-family: var(--f-mono); font-size: 0.72rem; color: var(--ink-soft); margin-top: 40px; }
.metrics__note--light { color: rgba(226,237,205,0.6); }
.stats--perf { grid-template-columns: repeat(4, 1fr); margin-top: 48px !important; padding-top: 40px; border-top: 1px solid var(--line); }
.stats--perf .stat strong { font-size: clamp(1.8rem, 3.4vw, 3rem); }

/* ===== AUDIENCE ===== */
.aud__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 10px; }
.aud__card { background: rgba(226,237,205,0.06); border: 1px solid rgba(226,237,205,0.16); border-radius: 16px; padding: 28px 26px; }
.aud__card h4 { font-family: var(--f-mono); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sage); margin-bottom: 22px; font-weight: 400; }
.aud__row { display: grid; grid-template-columns: 62px 1fr 42px; gap: 12px; align-items: center; margin-bottom: 14px; }
.aud__row span { font-size: 0.88rem; }
.aud__row b { font-family: var(--f-display); font-size: 1.05rem; text-align: right; }
.bar { height: 7px; background: rgba(226,237,205,0.14); border-radius: 999px; overflow: hidden; }
.bar i { display: block; height: 100%; background: var(--sage); border-radius: 999px; }
.aud__cities { list-style: none; }
.aud__cities li { display: flex; justify-content: space-between; align-items: baseline; padding: 11px 0; border-bottom: 1px solid rgba(226,237,205,0.14); }
.aud__cities li:last-child { border-bottom: none; }
.aud__cities span { font-size: 1.05rem; }
.aud__cities i { font-family: var(--f-mono); font-size: 0.72rem; color: var(--sage); font-style: normal; }

/* ===== CONTACT LINKS ===== */
.contact__links { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 44px; }
.contact__pill { display: flex; flex-direction: column; gap: 2px; padding: 16px 28px; border: 1.5px solid var(--ink); border-radius: 16px; transition: transform .35s var(--ease), background .35s, color .35s; }
.contact__pill:hover { transform: translateY(-4px); background: var(--ink); color: var(--mist); }
.contact__pill b { font-size: 0.95rem; }
.contact__pill span { font-family: var(--f-mono); font-size: 0.78rem; color: var(--ink-soft); }
.contact__pill:hover span { color: var(--sage); }

/* ===== FAVS / CAROUSEL ===== */
.fav-group { margin-bottom: 56px; }
.fav-group:last-child { margin-bottom: 0; }
.fav-group__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 22px; }
.fav-group__title { font-family: var(--f-display); font-weight: 400; font-size: clamp(1.5rem, 3vw, 2.4rem); letter-spacing: -0.01em; }
.fav-group__title em { color: var(--deep); }
.fav-group__hint { font-family: var(--f-mono); font-size: 0.72rem; text-transform: uppercase; color: var(--ink-soft); }
.carousel { display: flex; gap: 18px; overflow-x: auto; padding-bottom: 14px; scroll-snap-type: x mandatory; cursor: grab; scrollbar-width: thin; scrollbar-color: var(--sage) transparent; }
.carousel.dragging { cursor: grabbing; scroll-snap-type: none; }
.carousel::-webkit-scrollbar { height: 6px; }
.carousel::-webkit-scrollbar-thumb { background: var(--sage); border-radius: 999px; }
.prod { flex: 0 0 clamp(180px, 22vw, 240px); scroll-snap-align: start; border-radius: 14px; overflow: hidden; background: var(--white); border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.prod:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(20,22,14,0.12); }
.prod__img { aspect-ratio: 1; }
.prod__img span { font-size: 1.8rem; background: none; width: auto; height: auto; }
.prod__info { padding: 14px 16px 16px; }
.prod__info strong { display: block; font-size: 0.96rem; margin-bottom: 6px; }
.prod__link { font-family: var(--f-mono); font-size: 0.72rem; color: var(--deep); font-weight: 700; }
.prod__link--shopee { color: #ee4d2d; }
.prod__link--ml { color: #c9a200; }
.prod__img--real { background: var(--white); position: relative; }
.prod__img--real img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 14px; }
.prod__price { display: block; font-family: var(--f-display); font-size: 1.15rem; color: var(--deep); margin-bottom: 6px; }
.prod--skeleton { flex: 0 0 clamp(180px, 22vw, 240px); height: 280px; border-radius: 14px; background: linear-gradient(100deg, var(--mist) 30%, #eef3e3 50%, var(--mist) 70%); background-size: 200% 100%; animation: shimmer 1.3s infinite; border: 1px solid var(--line); }
@keyframes shimmer { to { background-position: -200% 0; } }
.fav-group__hint--link { color: var(--deep); }

/* Banner Shopee (storefront) */
.shopee-cta { display: flex; align-items: center; gap: 24px; padding: 28px 32px; border-radius: 18px; background: linear-gradient(120deg, #ee4d2d, #ff7337); color: #fff; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.shopee-cta:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(238,77,45,0.3); }
.shopee-cta__icon { font-size: 2.4rem; line-height: 1; }
.shopee-cta__text { flex: 1; }
.shopee-cta__text strong { display: block; font-family: var(--f-display); font-size: clamp(1.3rem, 2.6vw, 1.8rem); font-weight: 400; margin-bottom: 4px; }
.shopee-cta__text span { opacity: 0.92; font-size: 0.96rem; }
.shopee-cta__btn { background: #fff; color: #ee4d2d; padding: 14px 26px; border-radius: 999px; font-weight: 600; white-space: nowrap; }
@media (max-width: 640px) { .shopee-cta { flex-direction: column; text-align: center; } }

/* carrossel de posts do Instagram (embeds em tamanho padrão) */
.posts-carousel { align-items: flex-start; }
.posts-carousel .instagram-media { flex: 0 0 auto; width: 326px !important; min-width: 326px !important; max-width: 326px !important; margin: 0 !important; border-radius: 14px !important; box-shadow: var(--shadow-sm) !important; }

/* itens dentro de carrossel: looks e depoimentos */
.carousel .work { flex: 0 0 clamp(220px, 26vw, 290px); scroll-snap-align: start; }
.carousel .work__media { aspect-ratio: 9/14; }
.carousel .quote { flex: 0 0 clamp(300px, 40vw, 420px); scroll-snap-align: start; }

/* ===== SERVICES ===== */
.services__head { font-family: var(--f-display); font-weight: 400; font-size: clamp(2rem, 6vw, 5rem); line-height: 1; letter-spacing: -0.025em; margin-bottom: 70px; max-width: 14ch; }
.services__list { border-top: 1px solid rgba(226,237,205,0.18); }
.srv { display: grid; grid-template-columns: 90px 1.1fr 2fr 60px; gap: 24px; align-items: center; padding: clamp(24px, 3vw, 42px) 0; border-bottom: 1px solid rgba(226,237,205,0.18); position: relative; transition: padding-left .5s var(--ease); }
.srv::before { content: ''; position: absolute; inset: 0; background: var(--sage); transform: scaleY(0); transform-origin: bottom; transition: transform .5s var(--ease); z-index: 0; }
.srv > * { position: relative; z-index: 1; transition: color .4s; }
.srv:hover { padding-left: 30px; }
.srv:hover::before { transform: scaleY(1); }
.srv:hover > * { color: var(--ink); }
.srv__num { font-family: var(--f-mono); font-size: 0.82rem; color: var(--sage); }
.srv__title { font-family: var(--f-display); font-weight: 400; font-size: clamp(1.5rem, 3vw, 2.4rem); letter-spacing: -0.01em; }
.srv__desc { color: rgba(226,237,205,0.7); font-size: 0.98rem; }
.srv__arrow { font-size: 1.6rem; text-align: right; opacity: 0; transform: translateX(-10px); transition: opacity .4s, transform .4s var(--ease); }
.srv:hover .srv__arrow { opacity: 1; transform: translateX(0); }

/* ===== WORKS ===== */
.works__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 28px); align-items: start; }
.work { display: block; }
.work__media { aspect-ratio: 9/14; border-radius: 6px; overflow: hidden; }
.work--tall .work__media { aspect-ratio: 9/18; }
.work__media .media-ph, .work__media.media-ph { transition: transform .7s var(--ease); }
.work:hover .work__media.media-ph { transform: scale(1.06); }
.work__info { display: flex; justify-content: space-between; align-items: baseline; margin-top: 16px; }
.work__info span { font-family: var(--f-display); font-size: 1.2rem; }
.work__info i { font-family: var(--f-mono); font-size: 0.72rem; text-transform: uppercase; color: var(--ink-soft); font-style: normal; }

/* ===== QUOTES ===== */
.quotes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); }
.quote { background: var(--white); border-radius: 8px; padding: 36px 32px; display: flex; flex-direction: column; justify-content: space-between; min-height: 240px; }
.quote p { font-family: var(--f-display); font-size: 1.3rem; line-height: 1.35; }
.quote footer { margin-top: 28px; padding-top: 16px; border-top: 1px solid var(--line); }
.quote footer strong { display: block; }
.quote footer span { font-family: var(--f-mono); font-size: 0.72rem; text-transform: uppercase; color: var(--ink-soft); }

/* ===== CONTACT ===== */
.contact { text-align: center; }
.contact__big { display: block; font-family: var(--f-display); font-weight: 400; font-size: clamp(2.8rem, 12vw, 11rem); line-height: 0.95; letter-spacing: -0.03em; position: relative; }
.contact__big span { display: block; overflow: hidden; }
.contact__big em { color: var(--deep); }
.contact__big .contact__arrow { position: absolute; top: 0; right: 6vw; transition: transform .5s var(--ease); }
.contact__big:hover .contact__arrow { transform: translate(10px, -10px) rotate(8deg); }
.contact__sub { font-size: 1.05rem; color: var(--ink-soft); max-width: 460px; margin: 40px auto 0; }

/* ===== FOOTER ===== */
.footer { background: var(--ink); color: var(--mist); padding: clamp(50px, 7vw, 90px) var(--gut) 36px; }
.footer__top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 40px; border-bottom: 1px solid rgba(226,237,205,0.18); flex-wrap: wrap; gap: 20px; }
.footer .nav__logo span { color: var(--sage); }
.footer__links a { font-family: var(--f-display); font-size: clamp(1.4rem, 3vw, 2.2rem); }
.footer__base { display: flex; justify-content: space-between; margin-top: 30px; font-family: var(--f-mono); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(226,237,205,0.55); flex-wrap: wrap; gap: 10px; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal-fade { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-fade.in { opacity: 1; transform: none; }
.reveal-lines .word { display: inline-block; overflow: hidden; vertical-align: top; }
.reveal-lines .word > i { display: inline-block; font-style: inherit; transform: translateY(110%); transition: transform .8s var(--ease); }
.reveal-lines.in .word > i { transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__media { opacity: 0.18; right: 0; }
  .about__grid { grid-template-columns: 1fr; }
  .about__frame { max-width: 420px; }
  .works__grid { grid-template-columns: repeat(2, 1fr); }
  .quotes__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 40px 30px; }
  .srv { grid-template-columns: 60px 1fr; }
  .srv__desc, .srv__arrow { display: none; }
  .srow { grid-template-columns: 180px 1fr; gap: 20px; }
}

@media (max-width: 640px) {
  .nav__role, .nav__links { display: none; }
  .nav__links { position: fixed; inset: 0; background: var(--ink); color: var(--mist); flex-direction: column; justify-content: center; align-items: center; gap: 28px; font-size: 1.6rem; }
  .nav__links.open { display: flex; }
  .nav__links a i { color: var(--sage); }
  .nav__links a::after { background: var(--sage); }
  .nav__toggle { display: flex; z-index: 1100; margin-left: auto; }
  .nav__cta { margin-left: 12px; }
  .hero__media { display: none; }
  .hero__bottom { flex-direction: column; align-items: flex-start; }
  .srow { grid-template-columns: 1fr; gap: 14px; }
  .works__grid { grid-template-columns: 1fr; }
  .footer__base { flex-direction: column; }
}

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