/* =========================================================
   SELLO GRIFFE RESIDENCIAL - design system
   Tokens: ink #1C1A17, stone #F2ECE1, paper #FBF8F2,
           seal #7A1F2B, gold #B08D57, line #D8CFBE
   Display: Manrope / Body: Inter / Utility: IBM Plex Mono
   ========================================================= */

:root {
  --ink: #1c1a17;
  --ink-soft: #322d27;
  --stone: #f2ece1;
  --paper: #fbf8f2;
  --seal: #7a1f2b;
  --seal-dark: #5c1720;
  --gold: #b08d57;
  --moss: #5c7355;
  --line: #d8cfbe;
  --line-dark: rgba(242, 236, 225, 0.18);

  --font-display: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --container: 1280px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 2px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--seal);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}
.eyebrow--light { color: var(--gold); }

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

/* ---------- buttons ---------- */
.btn {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border: 1px solid currentColor;
  border-radius: 0;
  cursor: pointer;
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.btn-seal {
  color: var(--paper);
  background: var(--seal);
  border-color: var(--seal);
}
.btn-seal:hover { background: var(--seal-dark); border-color: var(--seal-dark); }
.btn-ghost-dark { color: var(--ink); border-color: var(--ink); }
.btn-ghost-dark:hover { background: var(--ink); color: var(--paper); }
.btn-ghost-light { color: var(--paper); border-color: var(--line-dark); }
.btn-ghost-light:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ---------- brand logo (wordmark) ---------- */
.brand-logo { height: 22px; width: auto; flex-shrink: 0; }
.footer-brand .brand-logo { height: 40px; margin-bottom: 6px; }
.brand-logo-dark { display: none; }
.brand-logo-light { display: block; }
.site-header.is-solid .brand-logo-dark,
.site-header.is-light .brand-logo-dark { display: none; }
.site-header.is-solid .brand-logo-light,
.site-header.is-light .brand-logo-light { display: block; }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  color: var(--paper);
  transition: background 0.35s ease, padding 0.35s ease, color 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-solid,
.site-header.is-light {
  background: var(--ink);
  color: var(--stone);
  padding: 14px 0;
  border-bottom-color: var(--line-dark);
}
.site-header:has(.main-nav.is-open) {
  background: var(--ink);
  color: var(--stone);
  border-bottom-color: transparent;
}
.site-header:has(.main-nav.is-open) .brand-logo-dark { display: none; }
.site-header:has(.main-nav.is-open) .brand-logo-light { display: block; }
.site-header .wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  position: relative;
  z-index: 101;
}
.site-header .brand-logo { height: 40px; }

.main-nav a {
  font-family: var(--font-mono);
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s ease;
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { right: 0; }

.main-nav {
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--ink);
  color: var(--stone);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 var(--gutter);
  gap: 22px;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 99;
}
.main-nav.is-open { transform: translateY(0); }

.site-header.logo-right .wrap { grid-template-columns: auto 1fr auto; }
.site-header.logo-right .brand { grid-column: 1; justify-self: start; }

.nav-toggle {
  display: flex;
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  width: 32px; height: 24px;
  position: relative;
  padding: 0;
  z-index: 101;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}
.nav-toggle span { top: 11px; background: transparent; }
.nav-toggle span::before { top: -5px; }
.nav-toggle span::after { top: 5px; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

@media (min-width: 761px) {
  .nav-toggle { width: 42px; height: 30px; }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { height: 2px; }
  .nav-toggle span { top: 14px; }
  .nav-toggle span::before { top: -6px; }
  .nav-toggle span::after { top: 6px; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28,26,23,0.55) 0%, rgba(28,26,23,0.15) 32%, rgba(28,26,23,0.35) 62%, rgba(28,26,23,0.92) 100%);
}
.hero-media.is-rotating { opacity: 0; transition: opacity 1.2s ease; }
.hero-media.is-rotating.is-active { opacity: 1; }
.hero-media-notter { background-image: url('../assets/imagens-produtos/hero-adega-detalhe.jpg'); }
.hero-dots { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); display: flex; gap: 10px; z-index: 1; }
.hero-dots button {
  width: 8px; height: 8px; padding: 0; border: none; border-radius: 50%;
  background: rgba(251,248,242,0.4); cursor: pointer; transition: background 0.3s ease, transform 0.3s ease;
}
.hero-dots button.is-active { background: var(--paper); transform: scale(1.3); }
.hero-content {
  position: relative;
  width: 100%;
  padding-top: 160px;
  padding-bottom: 64px;
}
.hero-title {
  font-size: clamp(40px, 7vw, 88px);
  max-width: 16ch;
}
.hero-title em {
  font-style: normal;
  font-weight: 700;
  color: var(--paper);
  background: var(--seal);
  padding: 0 0.15em;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span {
  display: block;
  transform: translateY(110%);
  animation: rise 1s cubic-bezier(.22,1,.36,1) forwards;
}
.hero-title .line:nth-child(2) span { animation-delay: 0.1s; }
@keyframes rise { to { transform: translateY(0); } }

.hero-slogan {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--gold);
  max-width: 46ch;
  margin-top: 20px;
  line-height: 1.4;
}


/* ---------- sections ---------- */
section { position: relative; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 80px 0; }
.bg-ink { background: var(--ink); color: var(--stone); }
.bg-stone { background: var(--stone); }
.bg-paper { background: var(--paper); }

.section-head {
  margin-bottom: 64px;
}
.section-head h2 { font-size: clamp(32px, 4.2vw, 52px); max-width: 14ch; }
.section-head .lede {
  margin-top: 12px;
  max-width: none;
  font-size: 15px;
  opacity: 0.75;
}

/* ---------- manifesto / intro ---------- */
.manifesto blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.32;
}
.manifesto blockquote em { font-style: normal; font-weight: 500; color: var(--seal); }

.reason-list { margin-top: 32px; }
.reason-item { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); }
.reason-list .reason-item:last-child { border-bottom: 1px solid var(--line); }
.reason-item .num-badge {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--seal); color: var(--paper);
  font-size: 14px; letter-spacing: 0.1em;
}
.reason-item p { margin: 0; font-size: 14.5px; opacity: 0.72; }

.not-list { list-style: none; padding: 0; margin: 32px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }
.not-list li { font-size: 15.5px; opacity: 0.8; padding: 16px 0; border-top: 1px dashed var(--line); }
.not-list li::before { content: "- "; opacity: 0.5; }

/* ---------- differentials ---------- */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.diff-3col { grid-template-columns: repeat(3, 1fr); }
.diff-card {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 32px;
}
.diff-card .num { font-family: var(--font-body); font-size: 12px; color: var(--seal); letter-spacing: 0.1em; }
.diff-card h3 { font-size: 21px; margin: 22px 0 12px; }
.diff-card .num-row { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.diff-card .num-row h3 { margin: 0; }
.diff-card .num-badge {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--seal); color: var(--paper);
  font-size: 14px; letter-spacing: 0.1em;
}
.diff-card p { font-size: 14.5px; opacity: 0.72; }

/* ---------- process (numbered, sobre.html) ---------- */
.process-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 60px;
}
.process-divider { grid-column: 1 / -1; height: 1px; background: var(--line-dark); }
.process-row {
  padding: 32px 0;
}
.process-row .num { font-family: var(--font-body); color: var(--gold); font-size: 14px; }
.process-row .num-row { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.process-row .num-row h3 { margin: 0; }
.process-row .num-badge {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--gold); color: var(--ink);
  font-size: 14px; letter-spacing: 0.1em;
}
.process-row h3 { font-size: 24px; }
.process-row p { font-size: 15px; opacity: 0.72; max-width: 48ch; }

/* ---------- collection / house cards ---------- */
.collection-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.collection-filter button {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 10px 18px; border: 1px solid var(--line); background: transparent; color: var(--ink); opacity: 0.6;
  cursor: pointer; transition: opacity 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.collection-filter button:hover { opacity: 0.85; }
.collection-filter button.is-active { opacity: 1; background: var(--ink); color: var(--paper); border-color: var(--ink); }
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
}
.collection-grid.is-wide { grid-template-columns: repeat(2, 1fr); }
.piece-card.is-mobile-only { display: none; }
.piece-card { background: var(--paper); position: relative; display: block; }
.piece-media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--stone); }
.piece-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(.22,1,.36,1); }
.piece-card:hover .piece-media img { transform: scale(1.06); }
.stamp {
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--seal);
  background: var(--paper);
  border: 1px solid var(--seal);
  border-radius: 999px;
  padding: 6px 14px;
  transform: rotate(-4deg);
}
.stamp.is-sold { color: var(--seal); border-color: var(--seal); }
.stamp.is-building { color: var(--moss); border-color: var(--moss); }
.stamp.is-soon { color: var(--gold); border-color: var(--gold); }
.piece-body { padding: 26px 24px 30px; border-top: 1px solid var(--line); text-align: center; }
.piece-num { font-family: var(--font-body); font-size: 11px; color: var(--seal); letter-spacing: 0.14em; }
.piece-name { font-size: 26px; margin: 10px 0 12px; }
.piece-desc { font-size: 14px; opacity: 0.68; margin-bottom: 18px; min-height: 42px; }
.piece-specs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 18px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  border-top: 1px dashed var(--line);
  padding-top: 16px;
}
.piece-specs span { display: flex; flex-direction: column; gap: 4px; text-align: center; }
.piece-specs b { font-size: 15px; font-family: var(--font-body); font-weight: 600; white-space: nowrap; }
.piece-specs small { white-space: nowrap; }
.piece-specs .piece-icon { display: flex; align-items: center; justify-content: center; height: 24px; color: var(--seal); }
.piece-specs .specs-break { flex-basis: 100%; height: 0; padding: 0; margin: 0; }

/* ---------- product detail page ---------- */
.product-hero-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 40px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(242,236,225,0.3);
}
.product-hero-specs span { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.product-hero-specs b { font-family: var(--font-body); font-size: 18px; font-weight: 600; white-space: nowrap; }
.product-hero-specs small { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; white-space: nowrap; }
.product-hero-specs .specs-break { flex-basis: 100%; height: 0; padding: 0; margin: 0; }
.product-hero-specs .piece-icon { height: 22px; }
.tour-360-wrap { position: relative; }
.tour-360-frame { width: 100%; aspect-ratio: 16 / 9; border: 0; display: block; border-radius: 4px; }
.tour-360-expand {
  position: absolute; top: 16px; right: 16px; z-index: 5;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(28, 26, 23, 0.75); color: var(--paper); border: none;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.tour-360-expand:hover { background: rgba(28, 26, 23, 0.9); }
/* CSS-driven fullscreen fallback: the native Fullscreen API isn't supported for
   iframes on iOS Safari, so this makes the frame cover the viewport via layout
   instead, which works on every browser including iPhone. */
.tour-360-wrap.is-fullscreen {
  position: fixed; inset: 0; z-index: 1000; background: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.tour-360-wrap.is-fullscreen .tour-360-frame {
  width: 100%; height: 100%; aspect-ratio: auto; border-radius: 0;
}
body.tour-360-locked { overflow: hidden; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.gallery-grid img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery-grid .is-tall { grid-row: span 2; aspect-ratio: auto; }
.floorplan-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.floorplan-card {
  background: var(--stone);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
}
.floorplan-card svg { opacity: 0.35; }
.floorplan-card span { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.55; }
.floorplan-figure { margin: 0; border: 1px solid var(--line); }
.floorplan-figure img { width: 100%; display: block; }
.floorplan-figure figcaption { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.55; text-align: center; padding: 16px 0; border-top: 1px solid var(--line); }
.product-seal {
  width: 136px; height: 136px;
  margin: 0 auto 28px;
  position: relative;
  background-image: url('../assets/logo/selo-peca.png?v=2');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.product-seal .seal-num {
  position: absolute;
  top: 41%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--gold);
  letter-spacing: 0.02em;
}
.moment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.moment-grid figure { margin: 0; }
.moment-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.moment-grid figcaption { font-size: 14px; opacity: 0.7; margin-top: 14px; line-height: 1.5; max-width: 38ch; }

.craft-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.craft-gallery img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; filter: grayscale(1) contrast(1.05); }
.moment-carousel { position: relative; }
.moment-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.moment-track::-webkit-scrollbar { display: none; }
.moment-track figure { flex: 0 0 100%; scroll-snap-align: start; margin: 0; }
.moment-track img { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; display: block; cursor: zoom-in; }
.moment-track figcaption { font-size: 16px; opacity: 0.75; margin-top: 20px; line-height: 1.5; max-width: 52ch; }

/* image lightbox: click a moment-carousel photo to view it enlarged */
.image-lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(15, 13, 11, 0.94);
  display: none; align-items: center; justify-content: center;
  padding: 60px 80px;
}
.image-lightbox.is-active { display: flex; }
.image-lightbox img {
  max-width: 100%; max-height: 100%;
  object-fit: contain; border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.image-lightbox-close {
  position: absolute; top: 20px; right: 20px; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(251,248,242,0.12); color: var(--paper); border: none;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.image-lightbox-close:hover { background: rgba(251,248,242,0.22); }
.image-lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(251,248,242,0.12); color: var(--paper); border: none;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  font-size: 24px;
}
.image-lightbox-nav:hover { background: rgba(251,248,242,0.22); }
.image-lightbox-nav.prev { left: 20px; }
.image-lightbox-nav.next { right: 20px; }
body.lightbox-open { overflow: hidden; }
@media (max-width: 760px) {
  .image-lightbox { padding: 70px 16px; }
  .image-lightbox-nav { width: 40px; height: 40px; }
  .image-lightbox-nav.prev { left: 8px; }
  .image-lightbox-nav.next { right: 8px; }
}
.carousel-btn {
  position: absolute; top: 38%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; line-height: 1; color: var(--ink);
  cursor: pointer; z-index: 2;
}
.carousel-btn.prev { left: -23px; }
.carousel-btn.next { right: -23px; }
.carousel-btn:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.carousel-dots { display: flex; gap: 10px; justify-content: center; margin-top: 24px; }
.carousel-dots button { width: 8px; height: 8px; border-radius: 50%; background: var(--line); border: none; padding: 0; cursor: pointer; }
.carousel-dots button.is-active { background: var(--seal); }
.spec-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.spec-columns h4 { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.55; margin-bottom: 20px; }
.spec-columns ul { list-style: none; padding: 0; margin: 0; }
.spec-columns li { font-size: 14px; padding: 9px 0 9px 18px; border-top: 1px dashed var(--line); position: relative; }
.spec-columns li::before { content: ""; position: absolute; left: 1px; top: 16px; width: 5px; height: 5px; border-radius: 50%; background: var(--seal); }
.spec-columns li:last-child { border-bottom: 1px dashed var(--line); }
.spec-head { margin-bottom: 32px; }
.spec-figure { font-family: var(--font-display); font-size: 44px; font-weight: 700; color: var(--seal); }
.spec-figure small { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); opacity: 0.6; font-weight: 400; margin-top: 6px; }
.piece-specs small { opacity: 0.55; }

/* ---------- testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-dark); }
.testi-card { background: var(--ink); padding: 40px 34px; }
.testi-mark { font-family: var(--font-display); font-style: normal; font-weight: 800; font-size: 44px; color: var(--gold); line-height: 1; }
.testi-card p { font-size: 15.5px; line-height: 1.7; margin: 18px 0 26px; opacity: 0.9; }
.testi-card cite { font-style: normal; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.05em; opacity: 0.55; }

/* ---------- CTA ---------- */
.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 80px var(--gutter);
}
.cta h2 { font-size: clamp(32px, 5vw, 56px); max-width: 14ch; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: var(--stone); padding: 80px 0 30px; border-top: 1px solid var(--line-dark); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand p { font-size: 14px; opacity: 0.65; margin-top: 18px; max-width: none; color: #b08d57; }
.footer-col h4 { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.55; margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col address { font-size: 14.5px; opacity: 0.85; font-style: normal; }
.footer-col a:hover { color: var(--gold); }

.ig-link { display: inline-flex; align-items: center; gap: 7px; line-height: 1; }
.ig-icon, .wa-icon, .mail-icon { flex-shrink: 0; display: block; }
.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  opacity: 0.5;
}

/* ---------- whatsapp float ---------- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--seal);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(28,26,23,0.35);
  transition: transform 0.25s ease, background 0.25s ease;
}
.wa-float:hover { transform: translateY(-3px); background: var(--seal-dark); }

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  padding: 190px 0 90px;
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.page-hero-media { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(28,26,23,0.72), rgba(28,26,23,0.55)); }
.page-hero-content { position: relative; }
.page-hero h1 { font-size: clamp(38px, 6vw, 66px); max-width: 20ch; margin-top: 22px; }
.hero-lede-wide { max-width: 52ch; }
.playlist-block { max-width: 480px; }
@media (min-width: 761px) {
  .hero-lede-wide { max-width: none; }
  .playlist-block { max-width: none; }
  .title-nowrap-desktop { max-width: none; white-space: nowrap; }
  .hero-slogan { max-width: none; }
  .site-header.is-solid, .site-header.is-light { padding: 20px 0; }
  .page-hero { min-height: 100svh; display: flex; align-items: flex-end; }
}

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- about page extras ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split img { border-radius: 2px; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 48px; }
.stat b { font-family: var(--font-display); font-size: 44px; display: block; color: var(--seal); }
.stat span { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.6; display: block; margin-top: 8px; }

/* ---------- contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; }
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.65;
}
.field input, .field textarea, .field select {
  width: 100%;
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 0;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--ink);
  transition: border-color 0.25s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--seal);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 12.5px; opacity: 0.55; margin-top: 4px; }
.form-card { background: var(--stone); border: 1px solid var(--line); padding: 48px; }
@media (max-width: 760px) {
  .form-card { padding: 28px; max-width: 640px; }
}
.contact-info-item { display: flex; gap: 18px; padding: 22px 0; border-top: 1px solid var(--line); }
.contact-info-item:last-child { border-bottom: 1px solid var(--line); }
.contact-info-item .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.5; width: 130px; flex-shrink: 0; }
.contact-info-item .v { font-size: 15px; }
.contact-info-item .v small { display: block; opacity: 0.55; font-size: 12.5px; margin-top: 4px; }
.map-frame { aspect-ratio: 16/9; width: 100%; border: 1px solid var(--line); filter: grayscale(0.4) contrast(1.05); }

.form-success {
  display: none;
  padding: 20px 22px;
  background: var(--stone);
  border-left: 3px solid var(--seal);
  font-size: 14.5px;
}
.form-success.is-visible { display: block; }
.form-error {
  display: none;
  padding: 20px 22px;
  background: var(--stone);
  border-left: 3px solid #a32d2d;
  font-size: 14.5px;
}
.form-error.is-visible { display: block; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 760px) {
  .hero-media-notter { background-image: url('../assets/imagens-produtos/hero-notter-hummer.jpg'); background-position: center 75%; }
  .diff-grid, .collection-grid, .collection-grid.is-wide, .stat-row { grid-template-columns: 1fr; }
  .piece-card.is-mobile-only { display: block; }
  .gallery-grid, .floorplan-grid, .moment-grid, .spec-columns, .not-list { grid-template-columns: 1fr; }
  .craft-gallery { grid-template-columns: repeat(2, 1fr); }
  .carousel-btn { display: none; }
  .spec-columns { gap: 32px; }
  .product-hero-specs { gap: 12px 16px; flex-wrap: wrap; justify-content: center; text-align: center; }
  .piece-specs { gap: 10px 16px; flex-wrap: wrap; row-gap: 14px; }
  .tour-360-frame { aspect-ratio: 3 / 4; }
  .product-seal { width: 108px; height: 108px; }
  .product-seal .seal-num { font-size: 24px; }
  .moment-track figure { text-align: center; }
  .process-list { grid-template-columns: 1fr; border-bottom: 1px solid var(--line-dark); }
  .process-divider { display: none; }
  .process-row { border-top: 1px solid var(--line-dark); }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-nav-col { display: none; }
  .cta { flex-direction: column; align-items: center; text-align: center; padding: 60px 0; }
  .section-pad { padding: 60px 0; }
  .site-footer { padding-top: 60px; }
  .site-header .brand-logo { height: 32px; }
  .footer-brand .brand-logo { height: 32px; }
  .footer-brand p { max-width: none; }

  /* center section titles/text on mobile (footer excluded) */
  .hero-content, .page-hero-content { text-align: center; }
  .eyebrow { flex-direction: column; gap: 6px; }
  .section-head { text-align: center; }
  .section-head h2 { margin-left: auto; margin-right: auto; }
  .manifesto { text-align: center; }
  .guia-block { text-align: center; }
  .mercado-block { text-align: center; }
  .form-intro { text-align: center; }
  .form-intro h2 { margin-left: auto; margin-right: auto; }
  .form-footer { text-align: center; }
  .italic-quote { text-align: center; }
  .split > div:first-child { text-align: center; }
  .stat { text-align: center; }
  .legal-block { text-align: center; }
  .playlist-block { text-align: center; }
  .legal-block ul { list-style-position: inside; padding-left: 0 !important; }

  /* balance line-wrapping on mobile instead of ragged lines */
  h1, h2, h3, p, blockquote { text-wrap: balance; }

  .page-hero { min-height: auto; }

  /* give the highlighted <em> background room to breathe when the hero title wraps to an extra line on narrow screens */
  .hero-title { line-height: 1.3; }
}
