:root {
  --base: #EBDED4;
  --base-2: #F7F1EA;
  --paper: #FFFBF6;
  --paper-2: #FDF6EF;
  --brown: #6B472B;
  --brown-2: #8B6A50;
  --brown-3: #B89A81;
  --ink: #1D1D1B;
  --muted: #76695F;
  --line: rgba(107, 71, 43, .18);
  --line-strong: rgba(107, 71, 43, .28);
  --white: #ffffff;
  --shadow: 0 26px 90px rgba(54, 35, 22, .17);
  --soft-shadow: 0 16px 56px rgba(54, 35, 22, .10);
  --max: 1180px;
  --max-wide: 1320px;
  --radius-xl: 42px;
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --ease: cubic-bezier(.2, .75, .25, 1);
  --header-offset: 96px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--base-2);
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(255,255,255,.68) 0 18%, transparent 19%),
    radial-gradient(circle at 84% 14%, rgba(255,255,255,.44) 0 16%, transparent 17%),
    linear-gradient(180deg, #F9F2EA 0%, #EBDED4 40%, #F8F1EA 74%, #FFF9F3 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

/* Âncoras não ficam escondidas atrás do cabeçalho fixo */
section[id],
main [id] { scroll-margin-top: var(--header-offset); }

.page {
  position: relative;
  overflow: clip;
}

.ambient {
  pointer-events: none;
  position: fixed;
  z-index: 0;
  width: 460px;
  height: 460px;
  right: -210px;
  bottom: 8vh;
  border-radius: 999px;
  background: rgba(139, 106, 80, .16);
  filter: blur(60px);
}

.skip-link {
  position: absolute;
  left: 18px;
  top: -80px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  transition: top .25s var(--ease);
}

.skip-link:focus { top: 18px; }

/* FOOTER BRAND */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brown);
  color: var(--paper);
  letter-spacing: 0;
  font-family: "Fraunces", "Halyard Display", serif;
  font-size: 15px;
  font-weight: 500;
}

/* GENERAL */
.section {
  position: relative;
  z-index: 1;
  padding: clamp(72px, 9vw, 128px) 18px;
}

.section-tight { padding-top: clamp(56px, 7vw, 88px); padding-bottom: clamp(56px, 7vw, 88px); }

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.container-wide {
  max-width: var(--max-wide);
  margin: 0 auto;
}

.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--brown);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before, .section-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .65;
}

h1, h2, h3, p { margin-top: 0; }

h1, h2, .display-font {
  font-family: "Fraunces", "Halyard Display", Georgia, serif;
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .96;
}

h1 {
  max-width: 840px;
  margin-bottom: 22px;
  font-size: clamp(48px, 8vw, 116px);
}

h2 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: clamp(38px, 5.8vw, 78px);
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -.02em;
}

p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 16px;
}

.lead {
  max-width: 620px;
  color: rgba(29, 29, 27, .70);
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.72;
}

.text-small { font-size: 14px; line-height: 1.65; }

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  margin-bottom: clamp(34px, 5.8vw, 68px);
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .28s var(--ease), background .28s var(--ease), color .28s var(--ease), border-color .28s var(--ease);
}

.button:hover { transform: translateY(-2px); }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--brown);
  outline-offset: 4px;
  border-radius: 12px;
}

.hero .button-light:focus-visible,
.hero .button-outline:focus-visible,
.cta-card .button-light:focus-visible {
  outline-color: var(--paper);
}
.button-dark { background: var(--ink); color: var(--paper); box-shadow: 0 12px 36px rgba(29, 29, 27, .16); }
.button-dark:hover { background: var(--brown); }
.button-light { background: rgba(255,251,246,.82); color: var(--ink); border-color: rgba(255,255,255,.52); }
.button-light:hover { background: var(--paper); }
.button-outline { border-color: var(--line-strong); color: var(--ink); background: transparent; }
.button-outline:hover { background: rgba(255,255,255,.38); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--brown);
  background: rgba(255, 251, 246, .54);
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.soft-panel {
  border: 1px solid rgba(255,255,255,.50);
  border-radius: var(--radius-lg);
  background: rgba(255,251,246,.54);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* HERO */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  padding: 0;
  display: grid;
  align-items: end;
}

.hero-card {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: #2a211a;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(28, 19, 13, .76) 0%, rgba(28, 19, 13, .46) 42%, rgba(28, 19, 13, .14) 100%),
    linear-gradient(180deg, rgba(255,250,244,.00) 0%, rgba(255,250,244,.08) 62%, rgba(255,250,244,.26) 100%),
    radial-gradient(circle at 72% 28%, rgba(255,255,255,.16) 0 16%, transparent 17%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  max-width: 850px;
  padding: clamp(34px, 7vw, 82px);
  color: var(--paper);
}

.hero .eyebrow { color: rgba(255,251,246,.88); }
.hero p { max-width: 650px; color: rgba(255,251,246,.78); }
.hero .button-outline { color: var(--paper); border-color: rgba(255,251,246,.40); }
.hero .button-outline:hover { background: rgba(255,251,246,.16); }

.hero-trustline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: rgba(255,251,246,.82);
  font-size: 13.5px;
  font-weight: 650;
  letter-spacing: .01em;
}

.hero-trustline::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: .65;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: calc(var(--max-wide) + 80px);
  margin: -74px auto 0;
  padding: 0 clamp(20px, 5vw, 60px);
  position: relative;
  z-index: 2;
}

.hero-meta-item {
  min-height: 120px;
  padding: 24px;
  background: rgba(255,251,246,.76);
  border: 1px solid rgba(255,255,255,.62);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-meta-item:first-child { border-radius: 28px 0 0 28px; }
.hero-meta-item:last-child { border-radius: 0 28px 28px 0; }
.hero-meta-item strong { display: block; margin-bottom: 8px; font-size: 14px; color: var(--ink); }
.hero-meta-item span { display: block; color: var(--muted); font-size: 14px; line-height: 1.55; }

/* INTRO */
.intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.intro-image {
  min-height: 560px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--soft-shadow);
  background: url("https://images.unsplash.com/photo-1615529182904-14819c35db37?auto=format&fit=crop&w=1200&q=84") center / cover no-repeat;
}

.intro-copy { max-width: 660px; }

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.stat-card {
  min-height: 126px;
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255,251,246,.54);
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--brown);
  letter-spacing: -.03em;
}

.stat-card span { color: var(--muted); font-size: 14px; line-height: 1.55; }

/* PRODUCT CARDS */
.product-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: stretch;
  margin-bottom: clamp(26px, 4vw, 46px);
}

.feature-image {
  min-height: 560px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--soft-shadow);
  background-size: cover;
  background-position: center;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--radius-xl);
  background: rgba(255,251,246,.68);
  border: 1px solid rgba(255,255,255,.66);
  box-shadow: var(--soft-shadow);
}

.feature-copy h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(34px, 3.7vw, 52px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.04em;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--soft-shadow);
  transition: transform .34s var(--ease), box-shadow .34s var(--ease);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 70px rgba(54, 35, 22, .14);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--image) center / cover no-repeat;
  transition: transform .75s var(--ease);
}

.product-card:hover::before { transform: scale(1.035); }

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,.02) 0%, rgba(29,20,14,.72) 100%);
}

.product-card-content {
  padding: 24px;
  color: var(--paper);
}

.product-card p { color: rgba(255,251,246,.76); font-size: 14px; line-height: 1.58; margin-bottom: 0; }

/* PROCESS */
.process-wrap {
  display: grid;
  grid-template-columns: minmax(300px, .85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: start;
}

.process-sticky {
  position: sticky;
  top: 120px;
}

.steps {
  display: grid;
  gap: 12px;
  counter-reset: step;
}

.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,251,246,.62);
}

.step::before {
  content: counter(step, decimal-leading-zero);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brown);
  color: var(--paper);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}

.step p { margin-bottom: 0; font-size: 15px; }

/* EXPERIENCE / DIFFERENTIALS */
.experience {
  position: relative;
  z-index: 1;
  padding: clamp(80px, 10vw, 140px) 18px;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(24, 18, 13, .82), rgba(24, 18, 13, .48)),
    var(--exp-bg) center / cover scroll no-repeat;
}

.experience .section-kicker,
.experience h2,
.experience p { color: var(--paper); }

.experience p { color: rgba(255,251,246,.78); }

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 44px;
}

.experience-card {
  min-height: 190px;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,251,246,.20);
  background: rgba(255,251,246,.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.experience-card h3 { color: var(--paper); font-size: 17px; }
.experience-card p { font-size: 14px; margin-bottom: 0; }

/* HOME COLLECTIONS */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.collection-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,251,246,.70), rgba(255,251,246,.45)),
    var(--bg, rgba(255,251,246,.68));
  box-shadow: var(--soft-shadow);
  transition: transform .34s var(--ease), background .34s var(--ease);
}

.collection-card:hover { transform: translateY(-5px); background-color: rgba(255,251,246,.86); }
.collection-card p { font-size: 14px; margin-bottom: 0; }
.collection-tag { align-self: flex-start; margin-top: 24px; }

/* PROJECTS */
.project-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 16px;
}

.project-main,
.project-side {
  min-height: 620px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--soft-shadow);
  background-size: cover;
  background-position: center;
}

.project-main {
  display: flex;
  align-items: flex-end;
  padding: clamp(26px, 4vw, 46px);
  color: var(--paper);
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(29,20,14,.70)),
    var(--projmain-bg);
}

.project-main p { color: rgba(255,251,246,.78); max-width: 520px; margin-bottom: 0; }
.project-main h3 { font-family: "Fraunces", Georgia, serif; font-size: clamp(34px, 4vw, 56px); line-height: .98; font-weight: 400; letter-spacing: -.04em; }

.project-side {
  display: grid;
  gap: 16px;
  box-shadow: none;
  background: none;
}

.project-mini {
  min-height: 302px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--img) center / cover no-repeat;
  box-shadow: var(--soft-shadow);
}

/* SHOWROOM */
.showroom-card {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  background: var(--paper);
}

.showroom-copy {
  padding: clamp(32px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.showroom-copy h2 { font-size: clamp(40px, 5.4vw, 72px); }
.showroom-image {
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(255,251,246,.00), rgba(255,251,246,.10)),
    var(--showroom-bg) center / cover no-repeat;
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.info-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.58;
}

.info-list strong { color: var(--ink); }

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, .76fr) minmax(0, 1.24fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

.faq-list { display: grid; gap: 10px; }

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,251,246,.64);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  font-weight: 700;
}

.faq-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(107,71,43,.10);
  color: var(--brown);
  flex: 0 0 auto;
  transition: transform .28s var(--ease);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}

.faq-answer-inner { padding: 0 24px 22px; }
.faq-answer p { margin-bottom: 0; font-size: 15px; }
.faq-item.is-open .faq-icon { transform: rotate(45deg); }

/* FINAL CTA */
.cta-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  min-height: 440px;
  padding: clamp(32px, 6vw, 70px);
  border-radius: var(--radius-xl);
  color: var(--paper);
  box-shadow: var(--shadow);
  background:
    linear-gradient(90deg, rgba(29, 20, 14, .83), rgba(29, 20, 14, .44)),
    url("https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?auto=format&fit=crop&w=2400&q=84") center / cover no-repeat;
}

.cta-card h2, .cta-card p, .cta-card .section-kicker { color: var(--paper); }
.cta-card p { max-width: 640px; color: rgba(255,251,246,.78); }

/* FOOTER */
footer {
  position: relative;
  z-index: 1;
  padding: 64px 18px 34px;
  background: #1d1d1b;
  color: var(--paper);
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .85fr .85fr .85fr;
  gap: 34px;
}

.footer-brand {
  max-width: 340px;
}

.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p,
.footer-col p,
.footer-col a,
.footer-bottom { color: rgba(255,251,246,.66); }

.footer-col h3 {
  margin-bottom: 16px;
  color: var(--paper);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  transition: color .25s var(--ease);
}

.footer-col a:hover { color: var(--paper); }

.footer-bottom {
  max-width: var(--max);
  margin: 46px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,251,246,.13);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 13px;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}


@supports not ((backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px))) {
  .site-header.is-scrolled,
  body.menu-open .site-header,
  .soft-panel,
  .hero-meta-item {
    background: rgba(255, 251, 246, .94);
  }

  .experience-card {
    background: rgba(29, 20, 14, .42);
  }
}

.mobile-sticky-cta {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
  .experience { background-attachment: scroll; }
}

/* RESPONSIVE */
@media (max-width: 1080px) {
  .product-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .experience-grid, .collections-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .section-header,
  .intro-grid,
  .product-feature,
  .process-wrap,
  .project-grid,
  .showroom-card,
  .faq-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .section { padding-left: 16px; padding-right: 16px; }
  .hero { padding: 0; }
  .hero-card { min-height: 100svh; background-position: 58% center; }
  .hero-content { padding: 28px; }
  .hero-meta { grid-template-columns: 1fr; margin-top: 12px; padding: 0 12px; }
  .hero-meta-item, .hero-meta-item:first-child, .hero-meta-item:last-child { border-radius: 22px; min-height: auto; }
  .intro-image, .feature-image, .project-main, .showroom-image { min-height: 420px; }
  .process-sticky { position: relative; top: 0; }
  .project-side { min-height: auto; }
  .cta-card { align-items: start; min-height: 520px; }
  .info-list li { grid-template-columns: 1fr; gap: 2px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 58;
    left: 16px;
    right: 16px;
    bottom: max(14px, env(safe-area-inset-bottom));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 18px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--paper);
    box-shadow: 0 18px 54px rgba(29, 29, 27, .24);
    font-size: 14px;
    font-weight: 750;
  }

  footer { padding-bottom: 104px; }
}

@media (max-width: 620px) {
  .brand { font-size: 11px; gap: 10px; }
  .brand-mark { width: 32px; height: 32px; }
  h1 { font-size: clamp(43px, 13vw, 68px); }
  h2 { font-size: clamp(34px, 11vw, 54px); }
  .lead { font-size: 16px; }
  .button { width: 100%; }
  .button-row { align-items: stretch; }
  .product-list, .experience-grid, .collections-grid, .intro-stats { grid-template-columns: 1fr; }
  .product-card { min-height: 300px; }
  .collection-card { min-height: 260px; }
  .footer-grid { grid-template-columns: 1fr; }
}


/* HEADER HÍBRIDO — versão inspirada no cabeçalho aprovado do Claude */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  border-bottom: 1px solid transparent;
  transition: background .42s var(--ease), border-color .42s var(--ease), box-shadow .42s var(--ease), backdrop-filter .42s var(--ease);
}

.site-header.is-scrolled,
body.menu-open .site-header {
  background: rgba(247, 241, 234, .88);
  border-bottom-color: rgba(107, 71, 43, .12);
  box-shadow: 0 18px 48px rgba(54, 35, 22, .08);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  padding: 0 18px;
}

.header-brand {
  display: inline-flex;
  flex-direction: column;
  justify-self: start;
  width: fit-content;
  line-height: 1;
  color: var(--paper);
  transition: color .42s var(--ease), opacity .42s var(--ease);
}

.site-header.is-scrolled .header-brand,
body.menu-open .header-brand { color: var(--ink); }

.header-brand-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 25px;
  font-weight: 450;
  letter-spacing: .015em;
  white-space: nowrap;
}

.header-brand-sub {
  margin-top: 6px;
  padding-left: 2px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .42em;
  text-transform: uppercase;
  opacity: .78;
}

/* LOGO REAL NO CABEÇALHO */
.header-brand-logo {
  gap: 0;
  align-items: flex-start;
}

.site-logo {
  width: 148px;
  max-width: 170px;
  max-height: 48px;
  height: auto;
  display: block;
  object-fit: contain;
  transition: filter .42s var(--ease), opacity .42s var(--ease), transform .42s var(--ease);
}

.site-header:not(.is-scrolled) .site-logo {
  filter: brightness(0) invert(1);
}

.site-header.is-scrolled .site-logo,
body.menu-open .site-logo {
  filter: none;
}

.header-brand-logo .header-brand-sub {
  margin-top: 7px;
  padding-left: 1px;
}

.header-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.1vw, 26px);
  white-space: nowrap;
}

.header-links a {
  position: relative;
  padding: 8px 0;
  color: rgba(255, 251, 246, .92);
  font-size: 13.5px;
  font-weight: 650;
  transition: color .35s var(--ease), opacity .35s var(--ease);
}

.site-header.is-scrolled .header-links a { color: rgba(29, 29, 27, .78); }
.header-links a:hover { color: var(--paper); }
.site-header.is-scrolled .header-links a:hover { color: var(--ink); }

.header-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.header-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--paper);
  transition: color .35s var(--ease), background .35s var(--ease), transform .35s var(--ease);
}

.header-icon svg { width: 19px; height: 19px; }
.header-icon:hover { background: rgba(255, 251, 246, .15); transform: translateY(-1px); }
.site-header.is-scrolled .header-icon,
body.menu-open .header-icon { color: var(--ink); }
.site-header.is-scrolled .header-icon:hover,
body.menu-open .header-icon:hover { background: rgba(107, 71, 43, .08); }

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 22px;
  border-radius: 999px;
  background: rgba(255, 251, 246, .94);
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 750;
  box-shadow: 0 14px 34px rgba(29, 29, 27, .12);
  transition: transform .28s var(--ease), background .28s var(--ease), color .28s var(--ease);
}

.site-header.is-scrolled .header-cta,
body.menu-open .header-cta { background: var(--brown); color: var(--paper); }
.header-cta:hover { transform: translateY(-2px); background: var(--brown); color: var(--paper); }

.header-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--paper);
  position: relative;
}

.site-header.is-scrolled .header-burger,
body.menu-open .header-burger { color: var(--ink); }

.header-burger span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 1.6px;
  background: currentColor;
  border-radius: 999px;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.header-burger span:nth-child(1) { top: 16px; }
.header-burger span:nth-child(2) { top: 22px; }
.header-burger span:nth-child(3) { top: 28px; }
body.menu-open .header-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .header-burger span:nth-child(2) { opacity: 0; }
body.menu-open .header-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.header-mobile {
  position: fixed;
  inset: 0;
  z-index: 62;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 38px;
  padding: 96px clamp(22px, 7vw, 64px) 44px;
  background: var(--base-2);
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform .5s cubic-bezier(.7, 0, .2, 1), visibility .5s;
}

body.menu-open .header-mobile {
  transform: translateY(0);
  visibility: visible;
}

.header-mobile nav {
  display: grid;
}

.header-mobile nav a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid rgba(107, 71, 43, .12);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(32px, 10vw, 54px);
  line-height: 1;
  color: var(--ink);
}

.header-mobile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (min-width: 1081px) {
  .hero { padding-top: 0; }
  .hero-card { min-height: 100svh; }
}

@media (max-width: 1180px) {
  .header-inner { grid-template-columns: minmax(150px, 1fr) auto; }
  .header-links { display: none; }
  .header-burger { display: block; }
  .header-cta { display: none; }
}

@media (max-width: 640px) {
  .header-inner { min-height: 72px; padding: 0 14px; }
  .header-brand-name { font-size: 23px; }
  .header-brand-sub { font-size: 8.5px; letter-spacing: .36em; }
  .header-icons { display: none; }
  .hero { padding-top: 0; }
  .hero-card { min-height: 100svh; }
  .header-mobile-actions .button { width: 100%; }
}

/* FIX v1.0.6 — contém o overflow horizontal sem quebrar position: sticky.
   overflow: clip (em vez de hidden) NÃO cria um scroll-container,
   então o .process-sticky continua se referenciando à viewport. */
html { overflow-x: clip; }

body {
  min-height: 100%;
  overflow-x: clip;
}

body.menu-open { overflow: hidden; }

.header-mobile[aria-hidden="true"] {
  pointer-events: none;
}

body.menu-open .header-mobile {
  pointer-events: auto;
}

body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}
