/* =========================================================
   IZABEL SOUSA CABELEIREIRA — estilos
   Estética editorial premium: serif + sans, muito respiro,
   rose gold como detalhe, ritmo de seções claras/escuras.
   ========================================================= */

:root {
  /* Paleta */
  --bg:        #F7F4F1;
  --bg-warm:   #FCFAF8;
  --rose:      #B9785D;
  --champagne: #D6B19B;
  --bronze:    #986149;
  --ink:       #241B18;
  --muted:     #766963;
  --line:      rgba(36, 27, 24, 0.14);
  --line-soft: rgba(36, 27, 24, 0.08);

  /* Escuro */
  --dark-bg:   #241B18;
  --dark-bg-2: #1C1512;
  --dark-fg:   #F2E9E2;
  --dark-muted:#B7A79C;

  /* Tipografia */
  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --shell: 1440px;
  --gutter: clamp(20px, 5vw, 90px);
  --section-y: clamp(72px, 12vw, 168px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
em { font-style: italic; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }

.skip-link {
  position: absolute; left: 16px; top: -60px;
  background: var(--ink); color: var(--bg-warm);
  padding: 10px 18px; border-radius: 2px; z-index: 999;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

:focus-visible { outline: 2px solid var(--rose); outline-offset: 3px; }

/* =========================================================
   TIPOGRAFIA COMPARTILHADA
   ========================================================= */
.section-kicker {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: clamp(18px, 2vw, 30px);
  display: flex; align-items: center; gap: 14px;
}
.section-kicker::before {
  content: ""; width: 42px; height: 1px; background: var(--rose); display: inline-block;
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 5.4vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.01em;
}
.section-title em { color: var(--bronze); }

/* =========================================================
   BOTÕES / LINKS
   ========================================================= */
.btn {
  --pad-x: 30px;
  position: relative;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 17px var(--pad-x);
  font-size: 13px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  border-radius: 2px;
  overflow: hidden;
  transition: color .4s var(--ease), border-color .4s var(--ease);
  isolation: isolate;
}
.btn svg {
  width: 18px; height: 18px; fill: none;
  stroke: currentColor; stroke-width: 1.4;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform .4s var(--ease);
}
.btn:hover svg { transform: translateX(5px); }

.btn-solid { background: var(--ink); color: var(--bg-warm); }
.btn-solid::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--rose);
  transform: translateY(101%);
  transition: transform .45s var(--ease);
}
.btn-solid:hover { color: var(--bg-warm); }
.btn-solid:hover::after { transform: translateY(0); }

.btn-ghost { border: 1px solid var(--line); color: var(--ink); }
.btn-ghost::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform .45s var(--ease);
}
.btn-ghost:hover { color: var(--bg-warm); border-color: var(--ink); }
.btn-ghost:hover::after { transform: translateY(0); }

.link-underline {
  position: relative;
  display: inline-block;
  font-size: 13px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  padding-bottom: 4px;
  color: var(--ink);
}
.link-underline::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--rose);
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease);
}
.link-underline:hover::after { transform: scaleX(1); transform-origin: left; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .5s var(--ease), box-shadow .5s var(--ease), backdrop-filter .5s var(--ease);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  padding-block: clamp(16px, 2.4vw, 30px);
}
.site-header[data-scrolled] {
  background: rgba(247, 244, 241, 0.82);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid var(--line-soft);
}
.site-header[data-scrolled] .header-inner { padding-block: clamp(12px, 1.6vw, 18px); }

.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo {
  display: block;
  width: auto;
  height: clamp(54px, 6vw, 72px);
  object-fit: contain;
  transition: height .5s var(--ease);
}
.site-header[data-scrolled] .brand-logo { height: clamp(46px, 5vw, 58px); }

.brand-fallback {
  display: flex; flex-direction: column; line-height: 1.05;
  font-family: var(--serif); font-size: 22px; font-weight: 600;
  color: var(--ink);
}
.brand-fallback small {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted); margin-top: 3px;
}
.site-footer .brand-fallback { color: var(--dark-fg); }
.site-footer .brand-fallback small { color: var(--dark-muted); }
.menu-mobile .brand-fallback { font-size: 30px; }

.brand-mark {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border: 1px solid var(--rose);
  border-radius: 50%;
  font-family: var(--serif); font-size: 17px; font-weight: 600;
  color: var(--bronze);
  letter-spacing: .04em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--serif); font-size: 20px; font-weight: 600; letter-spacing: .01em; }
.brand-sub {
  font-size: 10px; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted);
}

.nav ul { display: flex; gap: clamp(20px, 2.6vw, 44px); }
.nav-link {
  position: relative;
  font-size: 13px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 0;
  color: var(--ink);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.header-cta { --pad-x: 24px; padding-block: 13px; }

.burger { display: none; width: 34px; height: 34px; position: relative; }
.burger span {
  position: absolute; left: 4px; right: 4px; height: 1.5px;
  background: var(--ink);
  transition: transform .35s var(--ease), opacity .2s var(--ease);
}
.burger span:first-child { top: 12px; }
.burger span:last-child { bottom: 12px; }
.burger[aria-expanded="true"] span:first-child { transform: translateY(5px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-5px) rotate(-45deg); }

.menu-mobile {
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg-warm);
  display: flex; flex-direction: column;
  justify-content: center; gap: 30px;
  padding: 12vh var(--gutter) 8vh;
  transform: translateY(-100%);
  transition: transform .55s var(--ease);
  visibility: hidden;
}
.menu-mobile[data-open] { transform: translateY(0); visibility: visible; }
.menu-mobile ul { display: flex; flex-direction: column; gap: 6px; }
.menu-mobile ul a {
  font-family: var(--serif);
  font-size: clamp(34px, 11vw, 54px);
  font-weight: 500;
  line-height: 1.25;
  display: inline-block;
}
.menu-mobile-logo {
  width: auto; height: clamp(80px, 22vw, 120px);
  object-fit: contain;
  align-self: flex-start;
  margin-bottom: 6px;
}
.menu-mobile .btn { align-self: flex-start; margin-top: 14px; }
.menu-mobile-ig {
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: clamp(120px, 18vh, 200px);
  padding-bottom: clamp(60px, 10vh, 120px);
  overflow: hidden;
}
.hero-bgword {
  position: absolute;
  right: -2vw; bottom: -4vh;
  font-family: var(--serif);
  font-size: 34vw;
  line-height: .7;
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  opacity: .04;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(30px, 6vw, 90px);
  width: 100%;
}

.eyebrow {
  font-size: 12px; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--rose);
  margin-bottom: clamp(22px, 3vw, 38px);
}
.eyebrow span { margin-inline: 6px; opacity: .6; }

.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 118px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin-bottom: clamp(26px, 3.4vw, 42px);
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span { display: block; }
.hero-title em { color: var(--bronze); }

.hero-sub {
  max-width: 46ch;
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 19px);
  margin-bottom: clamp(30px, 3.6vw, 46px);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: clamp(36px, 4.5vw, 60px); }

.hero-signature {
  display: flex; flex-direction: column;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  max-width: 320px;
}
.sig-name { font-family: var(--serif); font-size: 22px; font-weight: 600; font-style: italic; }
.sig-role {
  font-size: 11px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); margin-top: 4px;
}

.hero-figure { position: relative; align-self: stretch; display: flex; align-items: flex-end; }
.hero-figure-mask {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.hero-figure-mask img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
  filter: saturate(1.02) contrast(1.02);
}
.hero-figure-line {
  position: absolute;
  left: -26px; top: 8%;
  width: 1px; height: 60%;
  background: linear-gradient(var(--champagne), transparent);
}
.hero-figure::after {
  content: "";
  position: absolute; right: -22px; bottom: 46px;
  width: 120px; height: 120px;
  border: 1px solid var(--rose);
  border-radius: 50%;
  opacity: .5;
}

.hero-scroll {
  position: absolute;
  left: var(--gutter); bottom: clamp(24px, 5vh, 48px);
  z-index: 3;
  display: flex; align-items: center; gap: 14px;
  font-size: 10px; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--muted);
}
.hero-scroll-bar {
  width: 60px; height: 1px; background: var(--line);
  position: relative; overflow: hidden;
}
.hero-scroll-bar::after {
  content: ""; position: absolute; inset: 0;
  background: var(--rose);
  animation: scrollBar 2.4s var(--ease) infinite;
}
@keyframes scrollBar {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* =========================================================
   SOBRE
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(36px, 7vw, 110px);
  align-items: center;
}
.about-figure {
  position: relative;
  align-self: start;
  margin-top: clamp(0px, 3vw, 40px);
}
.about-figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 20%;
}
.about-figure::before {
  content: "";
  position: absolute; left: -18px; top: -18px; right: 34px; bottom: 34px;
  border: 1px solid var(--champagne);
  z-index: -1;
}
.about-figure-caption {
  display: block;
  margin-top: 16px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted);
}

.about-body .section-title {
  margin-bottom: clamp(22px, 3vw, 34px);
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
}
.about-quote { margin: 26px 0 0; }
.about-quote p { line-height: 1.75; }
.about-quote cite {
  display: block;
  margin-top: 14px;
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--bronze);
}
.about-lead {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 27px);
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 20px;
}
.about-body p:not(.section-kicker):not(.about-lead) { color: var(--muted); max-width: 52ch; }

.about-marks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px 30px;
  margin: clamp(32px, 4vw, 48px) 0 clamp(26px, 3vw, 38px);
  border-top: 1px solid var(--line);
}
.about-marks li {
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
  display: flex; align-items: baseline; gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 23px);
}
.mark-index {
  font-family: var(--sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: .1em;
  color: var(--rose);
}

/* =========================================================
   SERVIÇOS
   ========================================================= */
.services { position: relative; }
.services-head { margin-bottom: clamp(40px, 6vw, 80px); }

.service-group { margin-bottom: clamp(30px, 5vw, 56px); }
.service-group-title {
  font-family: var(--sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 4px;
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 24px;
  padding: clamp(20px, 2.6vw, 32px) 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .45s var(--ease), border-color .45s var(--ease);
}
.service-num {
  font-family: var(--sans);
  font-size: 12px; font-weight: 600;
  color: var(--rose);
  letter-spacing: .1em;
  transition: opacity .4s var(--ease);
}
.service-name {
  font-family: var(--serif);
  font-size: clamp(26px, 3.6vw, 50px);
  font-weight: 500;
  line-height: 1.05;
  color: var(--ink);
  transition: color .4s var(--ease);
}
.service-hint {
  justify-self: end;
  text-align: right;
  max-width: 24ch;
  font-size: 12px;
  color: var(--muted);
  opacity: 0;
  transition: opacity .45s var(--ease);
}
@media (hover: hover) {
  .service-row:hover .service-num { opacity: .45; }
  .service-row:hover .service-name { color: var(--bronze); }
  .service-row:hover .service-hint { opacity: 1; }
}

.services-cta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 24px;
  margin-top: clamp(36px, 5vw, 60px);
  padding-top: clamp(28px, 3vw, 40px);
  border-top: 1px solid var(--line);
}
.services-cta p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 2vw, 26px);
}

/* =========================================================
   GALERIA
   ========================================================= */
.gallery-head { margin-bottom: clamp(40px, 6vw, 72px); max-width: 640px; }
.gallery-note { color: var(--muted); margin-top: 18px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 2vw, 28px);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item .ph, .gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(36,27,24,.42), transparent 55%);
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.gallery-item figcaption {
  position: absolute; left: 20px; bottom: 16px;
  z-index: 2;
  font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--bg-warm);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
@media (hover: hover) {
  .gallery-item:hover .ph, .gallery-item:hover img { transform: scale(1.05); }
  .gallery-item:hover::after { opacity: 1; }
  .gallery-item:hover figcaption { opacity: 1; transform: translateY(0); }
}
.gallery-item.is-tall  { grid-column: span 5; aspect-ratio: 3 / 4.2; }
.gallery-item.is-mid   { grid-column: span 4; aspect-ratio: 3 / 4;   margin-top: clamp(24px, 4vw, 64px); }
.gallery-item.is-wide  { grid-column: span 3; aspect-ratio: 3 / 4.5; align-self: end; }
.gallery-item.is-small { grid-column: span 3; aspect-ratio: 3 / 4.5; }

/* moldura dos placeholders */
.ph {
  display: grid; place-items: center;
  background:
    linear-gradient(135deg, #efe6df, #e4d8ce);
  border: 1px solid var(--line);
  color: var(--bronze);
  text-align: center;
  padding: 20px;
}
.ph span {
  font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  opacity: .85;
}

/* =========================================================
   STATEMENT (escuro)
   ========================================================= */
.statement {
  background: var(--dark-bg);
  color: var(--dark-fg);
  padding-block: clamp(90px, 15vw, 220px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.statement::before {
  content: "";
  position: absolute; left: 50%; top: 50%;
  width: min(80vw, 900px); aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(214, 177, 155, 0.16);
  border-radius: 50%;
}
.statement-watermark {
  position: absolute; left: 50%; top: 50%;
  width: min(64vw, 620px); height: auto;
  transform: translate(-50%, -50%);
  opacity: 0.07;
  pointer-events: none; user-select: none;
}
.statement-kicker {
  position: relative;
  font-size: 12px; font-weight: 600;
  letter-spacing: .34em; text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: clamp(24px, 3vw, 40px);
}
.statement-text {
  position: relative;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 6vw, 92px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  max-width: 18ch;
  margin-inline: auto;
}
.statement-text em { color: var(--champagne); }
.statement-foot {
  position: relative;
  margin-top: clamp(28px, 3.5vw, 46px);
  color: var(--dark-muted);
  font-size: clamp(14px, 1.1vw, 17px);
}

/* =========================================================
   PROCESSO
   ========================================================= */
.process-head { margin-bottom: clamp(44px, 6vw, 80px); }
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 44px);
  counter-reset: step;
}
.process-step {
  position: relative;
  padding-top: 34px;
  border-top: 1px solid var(--ink);
}
.process-num {
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 44px);
  font-style: italic;
  color: var(--rose);
  display: block;
  margin-bottom: 16px;
}
.process-step h3 {
  font-family: var(--serif);
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 12px;
}
.process-step p { color: var(--muted); font-size: 14px; }

/* =========================================================
   NOVAS CLIENTES
   ========================================================= */
.newclients { background: var(--bg-warm); position: relative; overflow: hidden; }
.newclients-inner { position: relative; max-width: 900px; }
.newclients-copy .section-title { margin-bottom: 24px; }
.newclients-copy > p:not(.section-kicker):not(.newclients-note) {
  color: var(--muted); max-width: 46ch; margin-bottom: 32px;
}
.newclients-copy .btn { margin-bottom: 18px; }
.newclients-note {
  font-size: 11px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--rose);
}
.newclients-word {
  position: absolute;
  right: calc(var(--gutter) * -1); bottom: -6vw;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(90px, 18vw, 320px);
  line-height: .8;
  color: var(--ink);
  opacity: .045;
  pointer-events: none;
  user-select: none;
}

/* =========================================================
   INSTAGRAM
   ========================================================= */
.instagram-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 30px; flex-wrap: wrap;
  margin-bottom: clamp(34px, 4vw, 54px);
}
.instagram-head .section-title { margin-bottom: 20px; }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(10px, 1.4vw, 18px);
}
.ig-post { display: block; overflow: hidden; aspect-ratio: 1; }
.ig-post .ph { width: 100%; height: 100%; transition: transform .6s var(--ease); }
@media (hover: hover) {
  .ig-post:hover .ph { transform: scale(1.06); }
}

/* =========================================================
   CONTATO
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}
.contact-body .section-title { margin-bottom: clamp(28px, 4vw, 44px); }
.contact-info {
  display: grid;
  gap: 2px;
  border-top: 1px solid var(--line);
  margin-bottom: clamp(30px, 4vw, 44px);
}
.contact-info > div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info dt {
  font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--rose);
  padding-top: 4px;
}
.contact-info dd { font-family: var(--serif); font-size: clamp(17px, 1.5vw, 21px); }
.contact-info dd a { border-bottom: 1px solid var(--line); transition: border-color .3s var(--ease); }
.contact-info dd a:hover { border-color: var(--rose); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.contact-map {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-warm);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) contrast(1.05); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--dark-bg-2);
  color: var(--dark-fg);
  padding-block: clamp(50px, 7vw, 90px);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px 60px;
  align-items: start;
}
.footer-brand {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--serif); font-size: 20px;
}
.footer-logo {
  width: auto; height: clamp(72px, 9vw, 104px);
  object-fit: contain;
}
.footer-brand .brand-mark { border-color: var(--champagne); color: var(--champagne); }
.footer-nav { display: flex; gap: 28px; }
.footer-nav a {
  font-size: 12px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--dark-muted);
  transition: color .3s var(--ease);
}
.footer-nav a:hover { color: var(--champagne); }
.footer-address {
  grid-column: 1 / -1;
  font-style: normal;
  color: var(--dark-muted);
  font-size: 13px;
  padding-top: 24px;
  border-top: 1px solid rgba(242, 233, 226, 0.12);
}
.footer-copy {
  grid-column: 1 / -1;
  font-size: 12px;
  color: var(--dark-muted);
  letter-spacing: .04em;
}

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(28, 21, 18, 0.94);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(20px, 6vw, 90px);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.lightbox[data-open] { opacity: 1; }
.lightbox[hidden] { display: none; }
.lightbox-figure {
  max-width: 900px; width: 100%;
  text-align: center;
}
.lightbox-media {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 76vh;
  background: linear-gradient(135deg, var(--bg-warm), #e8ded6);
  display: grid; place-items: center;
  color: var(--muted);
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
}
.lightbox-media img { width: 100%; height: 100%; object-fit: contain; }
.lightbox-figure figcaption {
  margin-top: 18px;
  color: var(--champagne);
  font-size: 12px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
}
.lightbox-close {
  position: absolute; top: 24px; right: 30px;
  font-size: 34px; line-height: 1;
  color: var(--dark-fg);
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 44px; line-height: 1;
  color: var(--dark-fg);
  padding: 12px;
  transition: color .3s var(--ease);
}
.lightbox-nav:hover { color: var(--champagne); }
.lightbox-prev { left: clamp(8px, 3vw, 40px); }
.lightbox-next { right: clamp(8px, 3vw, 40px); }

/* =========================================================
   WHATSAPP FAB
   ========================================================= */
.whatsapp-fab {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ink);
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(36, 27, 24, 0.28);
  transition: transform .4s var(--ease), background .4s var(--ease);
}
.whatsapp-fab svg { width: 28px; height: 28px; fill: var(--bg-warm); }
.whatsapp-fab:hover { transform: translateY(-3px) scale(1.05); background: var(--rose); }

/* =========================================================
   CURSOR (desktop)
   ========================================================= */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 300;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rose);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease), height .3s var(--ease), background .3s var(--ease);
  mix-blend-mode: multiply;
  opacity: 0;
}
.cursor.is-active { opacity: 1; }
.cursor.is-hover { width: 26px; height: 26px; background: rgba(185, 120, 93, 0.10); }

/* =========================================================
   ANIMAÇÕES DE ENTRADA (base — JS adiciona classes)
   ========================================================= */
[data-reveal], [data-reveal-stagger] > *, [data-reveal-lines] {
  opacity: 0;
  transform: translateY(26px);
}
[data-reveal="image"] { opacity: 1; transform: none; }

/* máscara de imagem: só com JS ativo; abre ao ganhar .is-revealed */
.js-ready [data-reveal="image"] {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.05s var(--ease);
}
.js-ready [data-reveal="image"] > img,
.js-ready [data-reveal="image"] > .ph {
  transform: scale(1.06);
  transition: transform 1.3s var(--ease);
}
.js-ready [data-reveal="image"].is-revealed { clip-path: inset(0 0 0 0); }
.js-ready [data-reveal="image"].is-revealed > img,
.js-ready [data-reveal="image"].is-revealed > .ph { transform: none; }

.js-ready [data-reveal].is-in,
.js-ready [data-reveal-stagger].is-in > *,
.js-ready [data-reveal-lines].is-in { opacity: 1; transform: none; }

/* fallback sem JS: mostra tudo */
.no-js [data-reveal],
.no-js [data-reveal-stagger] > *,
.no-js [data-reveal-lines],
.no-js .hero-title .line > span,
.no-js [data-hero] { opacity: 1 !important; transform: none !important; }

/* estado inicial hero (JS controla) */
.js-ready .hero-title .line > span { transform: translateY(110%); }
.js-ready [data-hero="eyebrow"],
.js-ready [data-hero="sub"],
.js-ready [data-hero="actions"],
.js-ready [data-hero="sign"] { opacity: 0; transform: translateY(20px); }
.js-ready [data-hero="figure"] .hero-figure-mask img { transform: scale(1.12); }
.js-ready [data-hero="figure"] { clip-path: inset(0 0 0 100%); }

/* =========================================================
   RESPONSIVIDADE
   ========================================================= */
@media (max-width: 1200px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 40px; }
  .about-marks { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .instagram-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1024px) {
  .nav, .header-cta { display: none; }
  .burger { display: block; }
  .hero { padding-top: 130px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { max-width: 460px; }
  .hero-bgword { font-size: 46vw; opacity: .05; }
  .about-grid { grid-template-columns: 1fr; }
  .about-figure { max-width: 460px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { max-width: 460px; aspect-ratio: 4/3; }
  .footer-inner { grid-template-columns: 1fr; }
  .js-ready [data-hero="figure"] { clip-path: none; }
}

@media (max-width: 768px) {
  :root { --section-y: clamp(76px, 17vw, 118px); }

  /* ---- HERO ---- */
  .hero { min-height: auto; padding-top: 118px; padding-bottom: 64px; }
  .hero-grid { gap: 40px; }
  .hero-title { font-size: clamp(46px, 13vw, 66px); line-height: 1.02; }
  .hero-sub { font-size: 16px; max-width: 38ch; }
  .hero-scroll { display: none; }
  .hero-signature { max-width: none; }
  .hero-figure { max-width: none; }
  .hero-figure-mask { aspect-ratio: 4 / 4.6; }
  .hero-figure-mask img { object-position: 50% 8%; }
  .hero-figure::after { width: 84px; height: 84px; right: -10px; bottom: 30px; }
  .hero-figure-line { display: none; }
  .hero-bgword { font-size: 58vw; bottom: auto; top: 90px; right: -12vw; opacity: .032; }

  /* ---- SOBRE ---- */
  .about-grid { gap: 40px; }
  .about-figure { max-width: none; margin-top: 0; }
  .about-figure img { aspect-ratio: 4 / 4.6; object-position: 50% 6%; }
  .about-figure::before { left: -10px; top: -10px; right: 18px; bottom: 18px; }
  .about-figure-caption { letter-spacing: .14em; }
  .about-lead { font-size: 19px; }

  /* ---- SERVIÇOS ---- */
  .service-row {
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 22px 0;
  }
  .service-hint { display: none; }
  .service-name { font-size: clamp(24px, 7vw, 32px); }

  /* ---- GALERIA: coluna única, editorial, legenda sempre visível ---- */
  .gallery-head { max-width: none; }
  .gallery-grid { grid-template-columns: 1fr; gap: 34px; }
  .gallery-item,
  .gallery-item.is-tall,
  .gallery-item.is-mid,
  .gallery-item.is-wide,
  .gallery-item.is-small {
    grid-column: 1 / -1;
    aspect-ratio: auto;
    margin-top: 0;
    align-self: auto;
    overflow: visible;
  }
  .gallery-item > img,
  .gallery-item > .ph {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: 50% 22%;
  }
  .js-ready [data-reveal="image"].is-revealed > img,
  .js-ready [data-reveal="image"].is-revealed > .ph { transform: none; }
  .gallery-item::after { display: none; }
  .gallery-item figcaption {
    position: static;
    opacity: 1;
    transform: none;
    color: var(--muted);
    margin-top: 12px;
    letter-spacing: .16em;
  }

  /* ---- PROCESSO / STATEMENT / INSTAGRAM / CONTATO ---- */
  .process-list { grid-template-columns: 1fr; gap: 0; }
  .process-step { padding-top: 26px; padding-bottom: 26px; border-bottom: 1px solid var(--line-soft); }
  .process-step:last-child { border-bottom: 0; }
  .statement::before { width: 130vw; }
  .statement-watermark { display: none; }
  .statement-text { font-size: clamp(32px, 9vw, 46px); max-width: none; }
  .newclients-word { display: none; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ig-post img { object-position: 50% 25%; }
  .contact-info > div { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; }
  .contact-map { max-width: none; aspect-ratio: 3 / 3.4; max-height: 62vh; }

  .cursor { display: none; }
}

@media (max-width: 480px) {
  .eyebrow { letter-spacing: .14em; font-size: 10.5px; }
  .eyebrow span { margin-inline: 4px; }
  .btn { width: 100%; justify-content: center; }
  .hero-actions, .contact-actions, .services-cta { width: 100%; }
  .services-cta { flex-direction: column; align-items: flex-start; gap: 18px; }
  .services-cta .btn { width: 100%; }
  .brand-logo { height: 50px; }
  .footer-nav { flex-wrap: wrap; gap: 16px 22px; }
}

@media (max-width: 375px) {
  :root { --gutter: 18px; }
  .hero-title { font-size: 42px; }
  .section-title { font-size: 30px; }
  .service-name { font-size: 23px; }
}
