
:root {
  --ink: #090a0a;
  --graphite: #151817;
  --graphite-soft: #202321;
  --ivory: #eee9df;
  --paper: #f1eee7;
  --muted: #aaa69d;
  --bronze: #b1844d;
  --bronze-light: #d2ad77;
  --green-rs: #17633a;
  --red-rs: #9e2529;
  --yellow-rs: #d6a82d;
}

body { font-family: Arial, Helvetica, sans-serif; }
.brand-logo, .origin-logo, .map-logo { background-image: url("./logo-basso-elegante.png"); }
.static-logo-img { display: block; width: 100%; height: 100%; object-fit: cover; }
.work-feature[hidden] { display: none; }
@media (max-width: 900px) { .brand-copy { display: none; } }

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--font-geist-sans), Arial, sans-serif;
}

main {
  min-height: 100vh;
  background: var(--paper);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  width: 100%;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  background: linear-gradient(to bottom, rgb(5 6 6 / 82%), transparent);
}

.header-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--green-rs) 0 33.3%, var(--red-rs) 33.3% 66.6%, var(--yellow-rs) 66.6%);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 52px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgb(210 173 119 / 70%);
  border-radius: 50% 50% 44% 44%;
  box-shadow: inset 0 0 0 4px rgb(177 132 77 / 8%);
  color: var(--bronze-light);
  font: 600 21px/1 Georgia, serif;
  letter-spacing: -0.08em;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong,
.footer-brand strong {
  font: 600 21px/1.2 Georgia, "Times New Roman", serif;
  letter-spacing: 0.02em;
}

.brand-copy small {
  margin-top: 5px;
  color: #aaa69d;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.nav > a:not(.nav-order) {
  position: relative;
  color: #d8d4cb;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.nav > a:not(.nav-order)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--bronze-light);
  transition: width 180ms ease;
}

.nav > a:hover::after,
.nav > a:focus-visible::after {
  width: 100%;
}

.nav-order {
  padding: 12px 18px;
  border: 1px solid rgb(210 173 119 / 60%);
  color: var(--bronze-light);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}

.hero {
  min-height: 900px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  background-color: #070808;
  background-image:
    linear-gradient(90deg, rgb(5 6 6 / 96%) 0%, rgb(5 6 6 / 74%) 41%, rgb(5 6 6 / 8%) 74%),
    linear-gradient(0deg, #070808 0%, transparent 35%),
    url("./hero-walnut.webp");
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  pointer-events: none;
  background-image: repeating-linear-gradient(110deg, transparent 0 42px, rgb(255 255 255 / 4%) 43px, transparent 44px 76px);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 76% 38%, transparent, rgb(0 0 0 / 25%) 58%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 700px) 1fr;
  align-items: end;
  padding-top: 210px;
  padding-bottom: 170px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 24px;
  color: var(--bronze-light);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font: 400 clamp(58px, 7.5vw, 104px)/0.9 Georgia, "Times New Roman", serif;
  letter-spacing: -0.055em;
  color: #f3eee5;
}

.hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(110deg, #e8d4b1, var(--bronze), #705331);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 590px;
  margin: 32px 0 0;
  color: #d4d0c7;
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.button {
  min-height: 52px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #c69b61, #8d673b);
  color: #0b0b0b;
  box-shadow: 0 18px 50px rgb(0 0 0 / 24%);
}

.button-outline {
  border-color: rgb(177 132 77 / 55%);
  color: var(--bronze-light);
}

.text-link {
  padding-bottom: 6px;
  border-bottom: 1px solid rgb(210 173 119 / 42%);
  color: #e3ded4;
  font-size: 13px;
}

.text-link span {
  margin-left: 8px;
  color: var(--bronze-light);
}

.hero-stamp {
  justify-self: end;
  width: 190px;
  min-height: 154px;
  position: relative;
  display: grid;
  place-content: center;
  gap: 8px;
  padding: 26px 22px;
  border: 2px solid rgb(210 173 119 / 68%);
  border-radius: 45% 45% 38% 38% / 34% 34% 44% 44%;
  background: radial-gradient(circle at 50% 42%, rgb(177 132 77 / 13%), rgb(8 9 9 / 68%) 68%);
  box-shadow: inset 0 0 0 5px rgb(8 9 9 / 82%), inset 0 0 0 6px rgb(210 173 119 / 30%), 0 18px 45px rgb(0 0 0 / 26%);
  color: #d8d1c5;
  text-align: center;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-stamp::before,
.hero-stamp::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 17px;
  height: 1px;
  background: var(--bronze-light);
  box-shadow: 0 4px 0 rgb(210 173 119 / 52%);
  opacity: .72;
}

.hero-stamp::before { left: 17px; }
.hero-stamp::after { right: 17px; }

.stamp-since {
  color: #c9a675;
  font: italic 400 13px/1.1 Georgia, serif;
  letter-spacing: .08em;
  text-transform: none;
}

.hero-stamp strong {
  color: #f0e8da;
  font: 600 45px/.92 Georgia, serif;
  letter-spacing: -0.045em;
  text-shadow: 0 2px 18px rgb(0 0 0 / 58%);
}

.stamp-custom {
  color: #e2c18e;
  font: 700 11px/1.1 Georgia, serif;
  letter-spacing: .16em;
}

.hero-stats {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgb(255 255 255 / 12%);
}

.stat {
  min-height: 122px;
  padding: 28px 32px;
  border-right: 1px solid rgb(255 255 255 / 10%);
  background: linear-gradient(180deg, rgb(9 10 10 / 34%), rgb(9 10 10 / 68%));
}

.stat:first-child {
  border-left: 1px solid rgb(255 255 255 / 10%);
}

.stat span {
  color: #e0ba82;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.21em;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgb(0 0 0 / 70%);
}

.stat p {
  margin: 10px 0 0;
  color: #f2eee6;
  font: 400 20px/1.35 Georgia, serif;
  text-shadow: 0 2px 14px rgb(0 0 0 / 65%);
}

.intro-section {
  padding: 130px 0;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 100px;
  color: #1a1b1a;
}

.intro-section::before {
  content: "";
  position: fixed;
  z-index: -2;
  inset: 0;
  background: var(--paper);
}

.intro-section h2,
.origin h2 {
  margin: 0;
  font: 400 clamp(40px, 5vw, 68px)/1.08 Georgia, serif;
  letter-spacing: -0.04em;
}

.intro-copy {
  align-self: end;
}

.intro-copy p,
.origin p {
  margin: 0 0 28px;
  color: #5e5c56;
  font-size: 16px;
  line-height: 1.8;
}

.dark-link {
  color: #292a28;
}

.feature-band {
  padding: 90px 0;
  background: var(--graphite);
  border-block: 1px solid rgb(255 255 255 / 7%);
}

.feature-band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.feature-band article {
  min-height: 280px;
  padding: 16px 44px 12px;
  border-right: 1px solid rgb(255 255 255 / 10%);
}

.feature-band article:first-child {
  padding-left: 0;
}

.feature-band article:last-child {
  border-right: 0;
}

.feature-band article > span {
  color: var(--bronze);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.feature-band h3 {
  margin: 56px 0 18px;
  font: 400 30px/1.2 Georgia, serif;
}

.feature-band p {
  min-height: 72px;
  color: #a8a59f;
  font-size: 14px;
  line-height: 1.7;
}

.feature-band a {
  color: var(--bronze-light);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.origin {
  padding: 120px 0;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  gap: 70px;
  align-items: center;
  color: #1a1b1a;
}

.origin-mark {
  width: 180px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid #ae8c62;
  border-radius: 50% 50% 44% 44%;
  color: #7c5d38;
  font: 400 58px/1 Georgia, serif;
  letter-spacing: -0.08em;
}

.origin .button-outline {
  border-color: #a77a3d;
  color: #6e4b24;
}

.site-footer {
  padding: 80px 0 26px;
  background: #090a0a;
  color: #d8d4cc;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 0.7fr;
  gap: 80px;
  padding-bottom: 64px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-grid p {
  margin: 6px 0 0;
  color: #87857f;
  font-size: 12px;
  line-height: 1.7;
}

.footer-label {
  margin-bottom: 10px;
  color: var(--bronze);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-grid a {
  font-size: 13px;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgb(255 255 255 / 8%);
  color: #6d6c68;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rs-line {
  width: 110px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-rs) 0 33.3%, var(--red-rs) 33.3% 66.6%, var(--yellow-rs) 66.6%);
}

@keyframes enter {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  animation: enter 700ms 120ms both;
}

@media (max-width: 900px) {
  .shell { width: min(100% - 32px, 680px); }
  .header-inner { min-height: 78px; }
  .menu-toggle { display: grid; place-content: center; gap: 7px; cursor: pointer; }
  .menu-toggle i { display: block; width: 24px; height: 1px; background: var(--ivory); }
  .nav { position: absolute; top: 81px; right: 0; left: 0; padding: 34px 24px; display: none; align-items: stretch; flex-direction: column; background: rgb(9 10 10 / 98%); border-bottom: 1px solid rgb(255 255 255 / 10%); }
  .nav.open { display: flex; }
  .nav > a:not(.nav-order) { padding: 8px 0; font-size: 15px; }
  .nav-order { text-align: center; }
  .hero { min-height: 820px; background-position: 65% center; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 170px; padding-bottom: 210px; }
  .hero h1 { font-size: clamp(52px, 15vw, 78px); }
  .hero-stamp { display: none; }
  .hero-stats { grid-template-columns: 1fr; position: absolute; }
  .stat { min-height: auto; padding: 14px 0; border-right: 0; border-top: 1px solid rgb(255 255 255 / 8%); }
  .stat:first-child { border-left: 0; }
  .stat span { font-size: 10px; }
  .stat p { margin-top: 5px; font-size: 16px; }
  .intro-section { padding: 90px 0; grid-template-columns: 1fr; gap: 42px; }
  .feature-band-grid { grid-template-columns: 1fr; }
  .feature-band article, .feature-band article:first-child { min-height: 0; padding: 36px 0; border-right: 0; border-bottom: 1px solid rgb(255 255 255 / 9%); }
  .feature-band article:last-child { border-bottom: 0; }
  .feature-band h3 { margin-top: 24px; }
  .feature-band p { min-height: 0; }
  .origin { grid-template-columns: 1fr; gap: 36px; }
  .origin-mark { width: 120px; }
  .origin .button { justify-self: start; }
  .footer-grid { grid-template-columns: 1fr; gap: 42px; }
}

@media (max-width: 560px) {
  .brand-mark { width: 44px; }
  .brand-copy strong { font-size: 17px; }
  .brand-copy small { font-size: 8px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { align-self: flex-start; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 20px; }
}

/* Identidade visual e retrato — regras isoladas para evitar regressões */
.brand-logo {
  flex: 0 0 auto;
  width: 152px;
  height: 58px;
  display: block;
  border: 0;
  background: transparent url("./logo-basso-elegante.png") center / contain no-repeat !important;
  filter: drop-shadow(0 0 1px rgb(255 255 255 / 82%)) drop-shadow(0 5px 14px rgb(0 0 0 / 52%));
}
.origin-logo, .map-logo { background-image: url("./logo-basso-elegante.png") !important; }
.portrait-photo { width: 100%; max-width: 430px; justify-self: start; overflow: hidden; border: 1px solid #c9c1b4; background: #161817; box-shadow: 0 24px 55px rgb(44 31 18 / 14%); }
.portrait-photo img { width: 100%; height: 610px; display: block; object-fit: cover; object-position: center 28%; }
.portrait-caption { padding: 20px 22px; display: grid; gap: 5px; border-top: 1px solid rgb(255 255 255 / 9%); background: #111312; color: #eee9df; }
.portrait-caption span { font: 400 20px/1.2 Georgia, serif; }
.portrait-caption small { color: #b1844d; font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }

/* Ilustrações em formato amplo: preserva a resolução e facilita a leitura */
.measurements-grid { grid-template-columns: 1fr; gap: 24px; }
.measurement-card { display: grid; grid-template-columns: minmax(300px, 46%) 1fr; align-items: stretch; }
.measurement-card img { width: 100%; height: 520px; aspect-ratio: auto; object-fit: cover; object-position: center top; border-right: 1px solid #d7cfc3; border-bottom: 0; image-rendering: auto; }
.measurement-card label { align-content: center; padding: 34px; font-size: 14px; }
.measurement-card label > span { min-height: 0; margin-bottom: 10px; font-size: 12px; }

@media (max-width: 900px) {
  .brand-logo { width: 132px; height: 52px; }
  .portrait-photo { max-width: 430px; justify-self: center; }
  .measurement-card { grid-template-columns: minmax(260px, 44%) 1fr; }
  .measurement-card img { height: 460px; }
}

@media (max-width: 560px) {
  .brand-logo { width: 118px; height: 46px; }
  .portrait-photo img { height: 520px; }
  .measurement-card { display: block; }
  .measurement-card img { height: auto; aspect-ratio: 2 / 3; border-right: 0; border-bottom: 1px solid #d7cfc3; }
  .measurement-card label { padding: 24px; }
}

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

/* Internal pages */
.internal-hero {
  min-height: 570px;
  position: relative;
  display: flex;
  align-items: flex-end;
  background-color: #0b0c0c;
  background-position: center;
  background-size: cover;
}

.internal-hero:not([style]) {
  background-image:
    radial-gradient(circle at 82% 18%, rgb(177 132 77 / 14%), transparent 28%),
    repeating-linear-gradient(116deg, transparent 0 58px, rgb(177 132 77 / 4%) 59px, transparent 60px 86px);
}

.internal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(7 8 8 / 96%) 0%, rgb(7 8 8 / 72%) 48%, rgb(7 8 8 / 30%)), linear-gradient(0deg, #090a0a 0%, transparent 52%);
}

.internal-hero-copy {
  position: relative;
  z-index: 1;
  padding-top: 190px;
  padding-bottom: 86px;
}

.internal-hero h1 {
  max-width: 820px;
  margin: 0;
  font: 400 clamp(52px, 7vw, 88px)/0.98 Georgia, serif;
  letter-spacing: -0.05em;
}

.internal-hero-copy > p:last-child {
  max-width: 650px;
  margin: 26px 0 0;
  color: #b9b5ad;
  font-size: 16px;
  line-height: 1.75;
}

.story-grid {
  padding: 120px 0;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 110px;
  color: #20211f;
}

.portrait-placeholder {
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  padding: 52px 30px;
  border: 1px solid #c9c1b4;
  background:
    radial-gradient(circle at 50% 32%, #5c4b38 0 9%, transparent 9.5%),
    radial-gradient(ellipse at 50% 62%, #40382f 0 26%, transparent 26.5%),
    linear-gradient(145deg, #242522, #0c0d0c);
  color: var(--ivory);
  text-align: center;
}

.portrait-placeholder > span {
  margin-bottom: auto;
  color: rgb(210 173 119 / 48%);
  font: 400 72px/1 Georgia, serif;
}

.portrait-placeholder p {
  margin: 0 0 8px;
  font: 400 24px/1.2 Georgia, serif;
}

.portrait-placeholder small {
  color: #8f8b83;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.story-copy {
  align-self: center;
}

.story-copy h2,
.wood-intro h2,
.mineral-note h2,
.gallery-cta h2,
.story-cta h2,
.product-detail-band h2,
.product-cta h2,
.contact-main h2,
.contact-cta h2 {
  margin: 0 0 30px;
  font: 400 clamp(38px, 4.5vw, 64px)/1.08 Georgia, serif;
  letter-spacing: -.04em;
}

.story-copy > p:not(.section-kicker) {
  color: #5d5b56;
  font-size: 16px;
  line-height: 1.85;
}

.story-copy blockquote {
  margin: 42px 0 0;
  padding: 24px 0 24px 28px;
  border-left: 2px solid var(--bronze);
  color: #6e4e2b;
  font: italic 24px/1.45 Georgia, serif;
}

.story-details {
  padding: 90px 0;
  background: var(--graphite);
}

.detail-grid,
.work-values,
.nose-pieces {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.detail-grid article,
.work-values article,
.nose-pieces > div {
  padding: 24px 42px;
  border-right: 1px solid rgb(255 255 255 / 10%);
}

.detail-grid article:first-child,
.work-values article:first-child,
.nose-pieces > div:first-child { padding-left: 0; }
.detail-grid article:last-child,
.work-values article:last-child,
.nose-pieces > div:last-child { border-right: 0; }

.detail-grid span,
.work-values span,
.nose-pieces span {
  color: var(--bronze);
  font-size: 10px;
  letter-spacing: .15em;
}

.detail-grid h3,
.work-values h3,
.nose-pieces h3 {
  margin: 45px 0 14px;
  font: 400 29px/1.2 Georgia, serif;
}

.detail-grid p,
.work-values p,
.nose-pieces p {
  color: #9d9a93;
  font-size: 14px;
  line-height: 1.75;
}

.story-cta,
.product-cta,
.contact-cta {
  padding: 110px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  color: #1e1f1d;
}

.story-cta h2,
.product-cta h2,
.contact-cta h2 { margin-bottom: 0; }

.wood-intro {
  padding: 110px 0 70px;
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 90px;
  color: #1c1d1b;
}

.wood-intro > p {
  align-self: end;
  margin: 0 0 30px;
  color: #5d5a54;
  font-size: 15px;
  line-height: 1.8;
}

.wood-cards {
  padding-bottom: 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  color: #1c1d1b;
}

.wood-cards article { padding-bottom: 30px; }

.wood-crop {
  height: 420px;
  margin-bottom: 28px;
  background-image: url("./wood-selection.webp");
  background-repeat: no-repeat;
  background-size: 520% 100%;
}

.wood-cards article > span {
  color: #9a6e3f;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.wood-cards h3 { margin: 12px 0; font: 400 29px/1.2 Georgia, serif; }
.wood-cards p { color: #66635c; font-size: 13px; line-height: 1.75; }

.figure-section {
  padding: 110px 0;
  background: #121413;
}

.figure-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 90px;
  align-items: center;
}

.figure-image img { display: block; width: 100%; height: 570px; object-fit: cover; }
.figure-item { padding: 22px 0; border-bottom: 1px solid rgb(255 255 255 / 10%); }
.figure-item strong { color: #e2ddd3; font: 400 25px/1.2 Georgia, serif; }
.figure-item p { margin: 9px 0 0; color: #96938c; font-size: 13px; line-height: 1.7; }

.mineral-note {
  padding: 120px 0;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 50px;
  color: #1d1e1c;
}

.mineral-note > span {
  width: 105px;
  height: 105px;
  display: grid;
  place-items: center;
  border: 1px solid #aa8b66;
  border-radius: 50%;
  color: #8d673b;
  font-size: 28px;
}

.mineral-note p:last-child { max-width: 820px; color: #5d5a54; font-size: 15px; line-height: 1.85; }

.gallery-cta { padding: 100px 0; background: #24201b; }
.gallery-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.gallery-cta h2 { max-width: 700px; margin-bottom: 0; }

.works-section { padding: 110px 0; color: #1b1c1a; }
.works-tabs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 28px; }
.works-tabs button { padding: 14px 19px; border: 1px solid #c9c4ba; background: transparent; color: #6e6b65; font-size: 11px; letter-spacing: .06em; cursor: pointer; }
.works-tabs button.active { border-color: #886039; background: #1a1c1b; color: var(--bronze-light); }

.work-feature {
  min-height: 620px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 54px;
  overflow: hidden;
  background-image: linear-gradient(0deg, rgb(3 4 4 / 92%), transparent 70%), url("./work-gallery.webp");
  background-size: cover;
  transition: background-position 350ms ease;
}

.work-trap { background-position: 15% center; }
.work-fossa { background-position: 36% center; }
.work-skeet { background-position: 62% center; }
.work-tsk { background-position: 86% center; }
.work-caca { background-position: center; filter: saturate(.8); }

.work-feature-copy { max-width: 560px; }
.work-feature-copy > span { color: var(--bronze-light); font-size: 9px; letter-spacing: .17em; text-transform: uppercase; }
.work-feature-copy h2 { margin: 12px 0 16px; font: 400 48px/1 Georgia, serif; }
.work-feature-copy p { margin: 0 0 26px; color: #b5b1a9; font-size: 14px; line-height: 1.75; }

.work-values { padding-bottom: 110px; color: #1b1c1a; }
.work-values article { border-color: #d0cbc2; }
.work-values p { color: #65625c; }

.products-grid {
  padding: 110px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #cfc8bc;
}

.products-grid article {
  min-height: 340px;
  padding: 48px;
  background: var(--paper);
  color: #1e1f1d;
}

.products-grid article > span { color: #9a6e3f; font-size: 10px; letter-spacing: .14em; }
.products-grid h2 { margin: 66px 0 16px; font: 400 34px/1.2 Georgia, serif; }
.products-grid p { max-width: 470px; color: #66635d; font-size: 14px; line-height: 1.75; }
.products-grid a { display: inline-block; margin-top: 28px; color: #79532f; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.products-grid a span { margin-left: 9px; }

.product-detail-band { padding: 110px 0; background: var(--graphite); }
.product-detail-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 110px; }
.option-list > div { padding: 24px 0; border-bottom: 1px solid rgb(255 255 255 / 10%); }
.option-list strong { font: 400 24px/1.2 Georgia, serif; }
.option-list p { margin: 7px 0 0; color: #99968f; font-size: 13px; line-height: 1.6; }
.nose-pieces { padding: 100px 0; color: #20211f; }
.nose-pieces > div { border-color: #cec8bd; }
.nose-pieces p { color: #66635d; }
.product-cta p:not(.section-kicker) { max-width: 650px; color: #66635d; line-height: 1.7; }

.contact-grid {
  padding: 120px 0;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 120px;
  color: #1d1e1c;
}

.contact-main > p:not(.section-kicker) { margin: 0 0 34px; color: #5f5c55; font-size: 16px; line-height: 1.8; }
.registration-certificate { display: inline-block; margin-top: 8px; color: #8c663d; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.traffic-notice { max-width: 650px; margin: 0 0 26px; padding: 15px 16px; display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: start; border: 1px solid rgb(177 132 77 / 46%); border-left: 3px solid #b1844d; background: linear-gradient(135deg, #171918, #101211); box-shadow: 0 14px 30px rgb(47 32 16 / 11%); color: #ddd7cc; }
.traffic-notice-mark { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgb(210 173 119 / 54%); border-radius: 50%; color: #d2ad77; font: 700 10px/1 Georgia, serif; letter-spacing: .08em; }
.traffic-notice strong { display: block; margin: 0 0 7px; color: #e0ba82; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; }
.traffic-notice p { margin: 0; color: #d3cec5; font-size: 14px; line-height: 1.55; }
@media (max-width: 560px) { .traffic-notice { grid-template-columns: 32px 1fr; gap: 10px; padding: 14px; } .traffic-notice-mark { width: 30px; height: 30px; font-size: 8px; } .traffic-notice p { font-size: 13px; } }
.contact-list { border-top: 1px solid #cfc8bc; }
.contact-list > div { padding: 26px 0; border-bottom: 1px solid #cfc8bc; }
.contact-list span { display: block; margin-bottom: 9px; color: #9a6e3f; font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.contact-list a { font: 400 25px/1.2 Georgia, serif; }
.contact-list p { margin: 0; color: #464743; font-size: 15px; line-height: 1.7; }

.map-panel {
  min-height: 460px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #151817;
}

.map-lines { position: absolute; inset: -20%; opacity: .14; background: repeating-radial-gradient(ellipse at center, transparent 0 32px, #d2ad77 33px, transparent 34px 65px); transform: rotate(-10deg); }
.map-pin { position: relative; z-index: 1; width: 100px; height: 100px; display: grid; place-items: center; border: 1px solid var(--bronze); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }
.map-pin span { transform: rotate(45deg); color: var(--bronze-light); font: 400 28px/1 Georgia, serif; }
.map-copy { position: absolute; right: 8%; bottom: 55px; display: grid; text-align: right; }
.map-copy > span { color: var(--bronze); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.map-copy strong { margin-top: 7px; font: 400 34px/1.2 Georgia, serif; }
.map-copy p { color: #929089; font-size: 12px; }
.contact-cta .button-outline { border-color: #9c7447; color: #76532e; }

.checkout-layout {
  padding: 100px 0 120px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 70px;
  color: #1d1e1c;
}

.form-section { padding: 0 0 55px; margin-bottom: 50px; border-bottom: 1px solid #cec7bb; }
.form-step { display: block; margin-bottom: 28px; color: #91683c; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.form-grid { display: grid; gap: 24px; }
.form-grid.two { grid-template-columns: repeat(2, 1fr); }
.form-grid .full { grid-column: 1 / -1; }
.form-grid label { display: grid; gap: 9px; color: #4f504d; font-size: 11px; font-weight: 650; letter-spacing: .05em; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; border: 1px solid #c6bfb4; border-radius: 0; outline: none; background: #f7f4ee; color: #222320; padding: 15px 16px; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: #9b7141; box-shadow: 0 0 0 2px rgb(155 113 65 / 12%); }
.form-grid textarea { resize: vertical; }
.measurements-intro { max-width: 680px; margin-bottom: 28px; }
.measurements-intro h2 { margin: 0; color: #222320; font: 400 32px/1.15 Georgia, serif; }
.measurements-intro p { margin: 12px 0 0; color: #69665f; font-size: 13px; line-height: 1.7; }
.measurements-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.measurement-card { overflow: hidden; border: 1px solid #cfc6b9; background: #f7f3ec; box-shadow: 0 14px 34px rgb(65 45 23 / 7%); }
.measurement-card img { width: 100%; aspect-ratio: 2 / 2.55; display: block; object-fit: cover; object-position: center top; border-bottom: 1px solid #d7cfc3; }
.measurement-card label { padding: 20px; display: grid; gap: 8px; color: #312f2b; font-size: 12px; font-weight: 750; line-height: 1.45; }
.measurement-card label > span { min-height: 54px; color: #777168; font-size: 11px; font-weight: 400; line-height: 1.55; }
.measurement-input { display: grid; grid-template-columns: 1fr auto; align-items: center; margin-top: 5px; border: 1px solid #bdb3a4; background: #fffdf9; }
.measurement-input input { min-width: 0; border: 0; background: transparent; padding: 13px 14px; font-size: 16px; outline: none; }
.measurement-input:focus-within { border-color: #9b7141; box-shadow: 0 0 0 2px rgb(155 113 65 / 12%); }
.measurement-input em { padding: 0 13px; border-left: 1px solid #d8d0c5; color: #9b7141; font-size: 10px; font-style: normal; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.checkout-submit { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.checkout-submit p { max-width: 480px; margin: 0; color: #66635c; font-size: 12px; line-height: 1.65; }
.checkout-submit .button { border: 0; cursor: pointer; }
.checkout-aside { align-self: start; position: sticky; top: 30px; padding: 34px; background: #181b19; color: var(--ivory); }
.checkout-aside ol { list-style: none; margin: 0; padding: 0; }
.checkout-aside li { padding: 24px 0; display: flex; gap: 17px; border-bottom: 1px solid rgb(255 255 255 / 10%); }
.checkout-aside li > span { flex: 0 0 28px; width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid rgb(210 173 119 / 45%); border-radius: 50%; color: var(--bronze-light); font-size: 10px; }
.checkout-aside strong { font: 400 17px/1.3 Georgia, serif; }
.checkout-aside li p { margin: 6px 0 0; color: #93918b; font-size: 11px; line-height: 1.55; }
.secure-note { margin-top: 30px; display: flex; gap: 12px; color: #aaa79f; font-size: 11px; }
.secure-note span { color: #6ca47d; }
.secure-note p { margin: 0; }

@media (max-width: 900px) {
  .internal-hero { min-height: 500px; }
  .internal-hero-copy { padding-top: 160px; padding-bottom: 70px; }
  .story-grid, .wood-intro, .figure-grid, .product-detail-grid, .contact-grid, .checkout-layout { grid-template-columns: 1fr; gap: 55px; }
  .story-grid, .contact-grid { padding: 80px 0; }
  .portrait-placeholder { min-height: 540px; }
  .detail-grid, .work-values, .nose-pieces { grid-template-columns: 1fr; }
  .detail-grid article, .detail-grid article:first-child, .work-values article, .work-values article:first-child, .nose-pieces > div, .nose-pieces > div:first-child { padding: 32px 0; border-right: 0; border-bottom: 1px solid rgb(255 255 255 / 10%); }
  .work-values article, .nose-pieces > div { border-color: #cdc7bd; }
  .detail-grid h3, .work-values h3, .nose-pieces h3 { margin-top: 20px; }
  .story-cta, .product-cta, .contact-cta, .gallery-cta-inner { align-items: flex-start; flex-direction: column; }
  .wood-cards { grid-template-columns: 1fr; }
  .wood-crop { height: 500px; }
  .mineral-note { grid-template-columns: 1fr; }
  .work-feature { min-height: 540px; padding: 34px; }
  .products-grid { grid-template-columns: 1fr; }
  .checkout-aside { position: static; order: -1; }
  .measurements-grid { grid-template-columns: 1fr; }
  .measurement-card { display: grid; grid-template-columns: minmax(180px, 42%) 1fr; }
  .measurement-card img { height: 100%; aspect-ratio: auto; border-right: 1px solid #d7cfc3; border-bottom: 0; }
  .measurement-card label > span { min-height: 0; }
}

@media (max-width: 560px) {
  .internal-hero h1 { font-size: 48px; }
  .story-grid, .wood-intro, .mineral-note, .works-section, .contact-grid, .checkout-layout { padding-block: 70px; }
  .wood-crop { height: 370px; }
  .figure-image img { height: 390px; }
  .work-feature { min-height: 500px; padding: 26px; }
  .work-feature-copy h2 { font-size: 39px; }
  .products-grid article { min-height: 300px; padding: 35px 28px; }
  .form-grid.two { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .checkout-submit { align-items: stretch; flex-direction: column; }
  .measurement-card { display: block; }
  .measurement-card img { height: auto; aspect-ratio: 2 / 2.55; border-right: 0; border-bottom: 1px solid #d7cfc3; }
}

/* Regras finais do pacote estático */
.measurements-grid { grid-template-columns: 1fr; gap: 24px; }
.measurement-card { display: grid; grid-template-columns: minmax(300px, 46%) 1fr; align-items: stretch; }
.measurement-card img { width: 100%; height: 520px; aspect-ratio: auto; object-fit: cover; object-position: center top; border-right: 1px solid #d7cfc3; border-bottom: 0; }
.measurement-card label { align-content: center; padding: 34px; font-size: 14px; }
.measurement-card label > span { min-height: 0; margin-bottom: 10px; font-size: 12px; }

@media (max-width: 900px) {
  .measurement-card { grid-template-columns: minmax(260px, 44%) 1fr; }
  .measurement-card img { height: 460px; }
}

@media (max-width: 560px) {
  .measurement-card { display: block; }
  .measurement-card img { height: auto; aspect-ratio: 2 / 3; border-right: 0; border-bottom: 1px solid #d7cfc3; }
  .measurement-card label { padding: 24px; }
}

/* Ritmo vertical mais compacto, preservando a hierarquia editorial */
.internal-hero { min-height: 500px; }
.internal-hero-copy { padding-top: 160px; padding-bottom: 64px; }
.internal-hero-copy > p:last-child { margin-top: 20px; }
.intro-section { padding: 100px 0; }
.origin { padding: 90px 0; }
.story-grid { padding: 88px 0; gap: 82px; }
.story-cta, .product-cta, .contact-cta { padding: 80px 0; }
.wood-intro { padding: 78px 0 48px; gap: 68px; }
.wood-intro > p { margin-bottom: 18px; }
.wood-cards { padding-bottom: 78px; }
.wood-cards article { padding-bottom: 12px; }
.wood-crop { height: 370px; margin-bottom: 22px; }
.figure-section { padding: 82px 0; }
.figure-grid { gap: 70px; }
.figure-image img { height: 500px; }
.mineral-note { padding: 84px 0; }
.gallery-cta { padding: 74px 0; }
.works-section { padding: 84px 0; }
.work-feature { min-height: 550px; }
.work-values { padding-bottom: 82px; }
.products-grid { padding: 84px 0; }
.products-grid article { min-height: 300px; padding: 40px; }
.products-grid h2 { margin-top: 44px; }
.product-detail-band { padding: 84px 0; }
.nose-pieces { padding: 78px 0; }
.contact-grid { padding: 86px 0; gap: 90px; }
.map-panel { min-height: 400px; }
.checkout-layout { padding: 78px 0 90px; }
.site-footer { padding: 60px 0 22px; }
.footer-grid { padding-bottom: 44px; }
.measurement-card img { height: 480px; }

@media (max-width: 900px) {
  .internal-hero { min-height: 450px; }
  .internal-hero-copy { padding-top: 145px; padding-bottom: 58px; }
  .story-grid, .contact-grid { padding: 68px 0; }
  .wood-intro, .mineral-note, .works-section, .checkout-layout { padding-block: 64px; }
  .measurement-card img { height: 430px; }
}

@media (max-width: 560px) {
  .internal-hero { min-height: 420px; }
  .internal-hero-copy { padding-top: 130px; padding-bottom: 48px; }
  .story-grid, .wood-intro, .mineral-note, .works-section, .contact-grid, .checkout-layout { padding-block: 56px; }
  .wood-crop { height: 330px; }
  .measurement-card img { height: auto; }
}

/* Página inicial: primeira dobra mais informativa */
.hero { min-height: 650px; }
.hero-grid { min-height: 650px; grid-template-columns: minmax(0, 650px) 1fr; align-items: center; padding-top: 118px; padding-bottom: 112px; }
.hero h1 { max-width: 650px; font-size: clamp(54px, 6vw, 88px); line-height: .92; }
.hero-lead { max-width: 550px; margin-top: 20px; font-size: 15px; line-height: 1.62; }
.hero-stats { min-height: 94px; }
.stat { min-height: 94px; padding: 19px 28px; }
.stat p { margin-top: 6px; font-size: 18px; }
.intro-section { padding: 58px 0 62px; gap: 70px; }
.intro-section h2 { font-size: clamp(38px, 4.2vw, 58px); }
.intro-copy p { margin-bottom: 20px; font-size: 15px; line-height: 1.68; }

.hero-stamp {
  position: absolute;
  right: 18px;
  bottom: 122px;
  width: 124px;
  min-height: 92px;
  padding: 15px 14px 13px;
  gap: 4px;
  border-width: 1px;
  border-radius: 14px 14px 30px 30px / 12px 12px 22px 22px;
  background: linear-gradient(145deg, rgb(10 11 10 / 62%), rgb(27 21 15 / 72%));
  box-shadow: inset 0 0 0 3px rgb(8 9 9 / 72%), inset 0 0 0 4px rgb(210 173 119 / 24%), 0 10px 24px rgb(0 0 0 / 20%);
  opacity: .92;
}
.hero-stamp::before, .hero-stamp::after { top: 52%; width: 10px; box-shadow: none; opacity: .5; }
.hero-stamp::before { left: 11px; }
.hero-stamp::after { right: 11px; }
.stamp-since { font-size: 10px; letter-spacing: .05em; }
.hero-stamp strong { font-size: 31px; line-height: .9; font-weight: 500; }
.stamp-custom { font-size: 7px; letter-spacing: .14em; }

@media (max-width: 900px) {
  .hero { min-height: 720px; }
  .hero-grid { min-height: 720px; padding-top: 130px; padding-bottom: 205px; }
  .hero-stamp { display: none; }
  .intro-section { padding: 54px 0; }
}

@media (max-width: 560px) {
  .hero { min-height: 700px; }
  .hero-grid { min-height: 700px; padding-top: 120px; padding-bottom: 200px; }
  .hero h1 { font-size: clamp(49px, 14vw, 68px); }
}

/* Segurança responsiva — mantém cada bloco no fluxo e evita sobreposições */
img,
input,
select,
textarea {
  max-width: 100%;
}

html,
body {
  overflow-x: hidden;
}

@media (max-width: 900px) {
  .brand-copy { display: grid; }

  .hero {
    min-height: 0;
    display: block;
    background-position: 62% center;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    align-items: start;
    padding-top: 150px;
    padding-bottom: 48px;
  }

  .hero-copy,
  .hero-lead {
    max-width: 100%;
  }

  .hero-stats {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: 1fr;
  }

  .stat {
    min-height: 0;
    padding: 18px 0;
  }

  .internal-hero-copy,
  .story-copy,
  .figure-copy,
  .work-feature-copy,
  .contact-main,
  .checkout-form,
  .checkout-aside {
    min-width: 0;
  }

  .gallery-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .checkout-aside {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .shell {
    width: calc(100% - 32px);
  }

  .header-inner {
    min-height: 82px;
    gap: 10px;
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand-logo {
    width: 88px;
    height: 40px;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-copy strong {
    font-size: clamp(14px, 4.4vw, 17px);
    white-space: nowrap;
  }

  .brand-copy small {
    margin-top: 4px;
    font-size: 7px;
    letter-spacing: .16em;
    white-space: nowrap;
  }

  .menu-toggle {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }

  .nav {
    top: 85px;
    max-height: calc(100vh - 85px);
    overflow-y: auto;
  }

  .hero {
    min-height: 0;
    background-position: 58% center;
  }

  .hero-grid {
    min-height: 0;
    padding-top: 132px;
    padding-bottom: 38px;
  }

  .hero .eyebrow {
    max-width: 310px;
    margin-bottom: 20px;
    font-size: 10px;
    line-height: 1.35;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(46px, 14vw, 58px);
    line-height: .94;
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.58;
  }

  .hero-stats {
    width: calc(100% - 32px);
  }

  .stat {
    padding: 20px 0;
  }

  .stat p {
    font-size: 18px;
    line-height: 1.35;
  }

  .internal-hero {
    min-height: 0;
  }

  .internal-hero-copy {
    width: 100%;
    padding-top: 132px;
    padding-bottom: 52px;
  }

  .internal-hero h1 {
    max-width: 100%;
    font-size: clamp(39px, 12vw, 50px);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .internal-hero-copy > p:last-child {
    font-size: 15px;
    line-height: 1.6;
  }

  .story-grid,
  .wood-intro,
  .figure-grid,
  .product-detail-grid,
  .contact-grid,
  .checkout-layout {
    gap: 38px;
  }

  .portrait-photo img {
    height: auto;
    aspect-ratio: 1008 / 1561;
    object-position: center top;
  }

  .story-copy h2,
  .wood-intro h2,
  .mineral-note h2,
  .gallery-cta h2,
  .story-cta h2,
  .product-detail-band h2,
  .product-cta h2,
  .contact-main h2,
  .contact-cta h2 {
    font-size: clamp(34px, 10.5vw, 44px);
    overflow-wrap: anywhere;
  }

  .story-copy blockquote {
    margin-top: 30px;
    padding-left: 20px;
    font-size: 21px;
  }

  .wood-cards {
    gap: 38px;
  }

  .wood-crop,
  .figure-image img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .mineral-note {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .work-feature {
    min-height: 430px;
    padding: 24px;
  }

  .work-feature-copy h2 {
    font-size: 38px;
  }

  .products-grid article {
    min-height: 0;
  }

  .products-grid h2 {
    margin-top: 32px;
    font-size: 31px;
  }

  .traffic-notice {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .traffic-notice-mark {
    width: 32px;
    height: 32px;
  }

  .contact-list a {
    font-size: 23px;
    overflow-wrap: anywhere;
  }

  .map-copy {
    right: 24px;
    left: 24px;
    text-align: center;
  }

  .checkout-layout {
    padding-inline: 0;
  }

  .form-section {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }

  .measurement-card,
  .measurement-card img {
    width: 100%;
  }

  .measurement-card label {
    padding: 22px;
  }

  .checkout-submit .button,
  .story-cta .button,
  .product-cta .button,
  .contact-cta .button,
  .gallery-cta .button {
    width: 100%;
  }

  .footer-grid {
    gap: 34px;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .brand-logo {
    width: 78px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy small {
    letter-spacing: .1em;
  }

  .hero h1 {
    font-size: 45px;
  }
}
