

:root {
  --font-geist-sans: "Helvetica Neue", Arial, Helvetica, sans-serif;
  --ivory: #f4efe8;
  --ivory-2: #ebe2d8;
  --paper: #fbf8f3;
  --espresso: #26150f;
  --coffee: #4a281c;
  --terracotta: #a9360e;
  --copper: #c65f28;
  --apricot: #e79562;
  --charcoal: #312b28;
  --muted: #736a64;
  --line: rgba(49, 43, 40, 0.16);
  --shadow: 0 30px 80px rgba(38, 21, 15, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--charcoal);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

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

button,
input {
  font: inherit;
}

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

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

.section {
  padding: 120px 0;
}

.topbar {
  min-height: 33px;
  display: grid;
  place-items: center;
  padding: 7px 24px;
  background: var(--espresso);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.67rem;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: relative;
  z-index: 20;
  min-height: 94px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 44px;
  padding: 0 max(32px, calc((100vw - 1240px) / 2));
  background: rgba(251, 248, 243, 0.97);
  border-bottom: 1px solid var(--line);
}

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

.brand-mark {
  width: 66px;
  height: 66px;
  overflow: hidden;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(49, 43, 40, 0.08);
}

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

.brand-wording {
  display: grid;
  gap: 1px;
  text-transform: uppercase;
}

.brand-wording strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.brand-wording small {
  color: var(--muted);
  font-size: 0.58rem;
  letter-spacing: 0.34em;
}

/* O arquivo oficial já contém símbolo e lettering; estas regras evitam
   o recorte circular usado pelo primeiro protótipo da marca. */
.home-brand-official .brand-mark {
  width: 122px;
  height: 58px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-brand-official .brand-mark img {
  object-fit: contain;
}

.home-brand-official .brand-wording {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(17px, 2vw, 34px);
}

.main-nav a {
  position: relative;
  font-family: var(--font-geist-sans);
  font-size: 0.77rem;
  font-weight: 560;
  letter-spacing: 0.02em;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--terracotta);
  transition: right 220ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.language-switch {
  display: flex;
  gap: 6px;
  align-items: center;
  color: #9a918a;
  font-size: 0.69rem;
  letter-spacing: 0.06em;
}

.language-switch button {
  padding: 6px 2px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.language-switch button.is-active {
  color: var(--espresso);
  font-weight: 760;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--espresso);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.74rem;
  font-weight: 730;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-small {
  min-height: 41px;
  padding: 0 18px;
  font-size: 0.66rem;
}

.button-dark {
  background: var(--espresso);
  color: #fff;
}

.button-copper {
  background: var(--copper);
  color: #fff;
}

.button-cream {
  background: var(--ivory);
  color: var(--espresso);
}

.hero {
  position: relative;
  min-height: min(650px, calc(100vh - 127px));
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
  background: var(--espresso);
}

.hero-media,
.hero-grain {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background-position: center 54%;
  background-size: cover;
  transform: scale(1.02);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(27, 13, 8, 0.92) 0%, rgba(38, 21, 15, 0.72) 43%, rgba(38, 21, 15, 0.2) 76%),
    linear-gradient(0deg, rgba(16, 8, 5, 0.5), transparent 55%);
}

.hero-grain {
  z-index: -1;
  opacity: 0.13;
  background-image: radial-gradient(rgba(255,255,255,0.55) 0.5px, transparent 0.5px);
  background-size: 5px 5px;
}

.hero-content {
  padding: 84px 0 108px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--terracotta);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--apricot);
}

.hero h1,
.section h2,
.newsletter h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 5vw, 5.25rem);
}

.hero-description {
  max-width: 620px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.78;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.045em;
}

.text-link-light {
  color: rgba(255, 255, 255, 0.9);
}

.certification-chip {
  position: absolute;
  right: max(32px, calc((100vw - 1240px) / 2));
  bottom: 40px;
  width: 158px;
  line-height: 0;
}

.certification-chip img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.hero-index {
  position: absolute;
  left: max(32px, calc((100vw - 1240px) / 2));
  bottom: 38px;
  color: rgba(255,255,255,0.28);
  font-family: Georgia, serif;
  font-size: 1.1rem;
}

.stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -1px;
  background: var(--paper);
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  position: relative;
  min-height: 205px;
  padding: 34px 28px 30px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.stat-number {
  position: absolute;
  top: 19px;
  right: 20px;
  color: #b3aaa4;
  font-family: Georgia, serif;
  font-size: 0.72rem;
}

.stat p {
  margin: 20px 0 12px;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.stat strong {
  display: block;
  font-family: Georgia, serif;
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1;
}

.stat small {
  display: block;
  max-width: 190px;
  margin-top: 15px;
  color: var(--muted);
  line-height: 1.5;
}

.about {
  background: var(--ivory);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 610px;
}

.about-visual::before {
  content: "";
  position: absolute;
  width: 52%;
  height: 48%;
  top: -28px;
  left: -28px;
  border: 1px solid var(--copper);
}

.about-visual img {
  position: relative;
  width: 100%;
  height: 610px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-stamp {
  position: absolute;
  right: -36px;
  bottom: 44px;
  width: 160px;
  height: 160px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  text-align: center;
  box-shadow: 0 18px 50px rgba(99, 35, 13, 0.24);
}

.about-stamp strong {
  font-family: Georgia, serif;
  font-size: 2.3rem;
  font-weight: 400;
}

.about-stamp span {
  margin-top: 4px;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-copy h2,
.section-heading h2,
.featured-copy h2,
.centered-heading h2 {
  font-size: clamp(3rem, 5vw, 5.4rem);
}

.about-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 34px 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

.section-heading {
  margin-bottom: 64px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  gap: 70px;
  align-items: end;
}

.split-heading > p {
  max-width: 480px;
  margin: 0 0 5px auto;
  color: var(--muted);
  line-height: 1.75;
}

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

.product-card {
  overflow: hidden;
  display: block;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.product-image-wrap {
  position: relative;
  height: 275px;
  overflow: hidden;
  background: var(--ivory-2);
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.03);
  transition: transform 500ms ease;
}

.product-card:hover img {
  transform: scale(1.045);
}

.product-index {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: rgba(250, 247, 242, 0.9);
  font-family: Georgia, serif;
  font-size: 0.72rem;
}

.product-card-copy {
  min-height: 205px;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.product-card h3,
.blog-card h3,
.responsibility-grid h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.18;
}

.product-card p,
.blog-card p,
.responsibility-grid p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.7;
}

.card-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-link b {
  color: var(--terracotta);
  font-size: 1rem;
}

.featured {
  position: relative;
  overflow: hidden;
  padding: 90px 0 140px;
  background:
    radial-gradient(circle at 8% 78%, rgba(160, 72, 49, 0.12), transparent 28%),
    linear-gradient(180deg, var(--ivory) 0%, #f5eadc 50%, #efe0cc 100%);
}

.featured::before {
  content: "";
  position: absolute;
  left: -260px;
  bottom: -250px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(136, 76, 51, 0.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 54px rgba(136, 76, 51, 0.04),
    0 0 0 108px rgba(136, 76, 51, 0.025);
}

.featured-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  background: #26110d;
  color: #fff;
  border: 1px solid rgba(87, 45, 31, 0.18);
  box-shadow: 0 34px 80px rgba(71, 38, 24, 0.22);
}

.featured-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  height: 5px;
  background: linear-gradient(90deg, #873729 0 34%, #cf7a54 34% 67%, #176a45 67%);
}

.featured-visual {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 44px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.9) 0 28%, transparent 29%),
    linear-gradient(145deg, #f4e8d6 0%, #ddc39f 100%);
}

.featured-visual::before {
  content: "";
  position: absolute;
  width: min(74%, 390px);
  aspect-ratio: 1;
  z-index: -1;
  border: 1px solid rgba(102, 63, 38, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 24px rgba(255, 255, 255, 0.2),
    0 0 0 25px rgba(102, 63, 38, 0.07);
}

.featured-visual::after {
  content: "EXTRA FORTE";
  position: absolute;
  left: 28px;
  bottom: 24px;
  color: rgba(62, 35, 24, 0.36);
  font-size: 0.58rem;
  font-weight: 760;
  letter-spacing: 0.34em;
}

.featured-visual img {
  width: auto;
  height: auto;
  max-width: 285px;
  max-height: 440px;
  z-index: 1;
  object-fit: contain;
  filter: drop-shadow(0 24px 25px rgba(40, 23, 14, 0.3));
  transition: transform 500ms ease;
}

.featured-card:hover .featured-visual img {
  transform: translateY(-7px) scale(1.025);
}

.featured-product-logo {
  width: clamp(112px, 11vw, 148px);
  height: auto;
  display: block;
  margin: 0 0 20px;
  filter: drop-shadow(0 7px 18px rgba(0, 0, 0, 0.2));
}

.featured-copy {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding: clamp(54px, 6.5vw, 86px);
  background:
    radial-gradient(circle at 100% 0%, rgba(180, 69, 48, 0.2), transparent 35%),
    linear-gradient(145deg, #30150f 0%, #1e0d0a 100%);
}

.featured-copy::before {
  content: "10";
  position: absolute;
  top: -38px;
  right: 10px;
  z-index: -1;
  color: rgba(255, 255, 255, 0.025);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18rem;
  line-height: 1;
}

.featured-copy .eyebrow {
  margin-bottom: 22px;
}

.featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2px;
}

.featured-meta span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured-copy p:not(.eyebrow) {
  max-width: 460px;
  margin: 24px 0 32px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.8;
}

.featured-button {
  min-height: 56px;
  gap: 26px;
  padding: 0 12px 0 25px;
  overflow: hidden;
  background: linear-gradient(135deg, #c3543b, #9e3329);
  color: #fff;
  box-shadow: 0 14px 30px rgba(151, 49, 37, 0.34);
}

.featured-button:hover {
  background: linear-gradient(135deg, #d56649, #ae3c2f);
  box-shadow: 0 18px 36px rgba(151, 49, 37, 0.42);
}

.featured-button-arrow {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.9rem;
  transition: transform 220ms ease, background 220ms ease;
}

.featured-button:hover .featured-button-arrow {
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.24);
}

.responsibility {
  background: var(--ivory);
}

.centered-heading {
  max-width: 850px;
  margin: 0 auto 70px;
  text-align: center;
}

.responsibility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.responsibility-grid article {
  min-height: 290px;
  padding: 45px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.responsibility-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 54px;
  border: 1px solid var(--terracotta);
  border-radius: 50%;
  color: var(--terracotta);
  font-size: 1.2rem;
}

.blog-heading .text-link {
  justify-self: end;
  margin-bottom: 8px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-card {
  border-bottom: 1px solid var(--line);
}

.blog-image {
  height: 290px;
  display: block;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72);
  transition: transform 500ms ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.04);
}

.blog-copy {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 26px 4px 20px;
}

.blog-copy > span {
  margin-bottom: 18px;
  color: var(--terracotta);
  font-size: 0.61rem;
  font-weight: 760;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.blog-copy h3 {
  font-size: 1.72rem;
}

.newsletter {
  padding-top: 30px;
}

.newsletter-card {
  min-height: 330px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  padding: 66px;
  background: var(--coffee);
  color: #fff;
}

.newsletter-card h2 {
  font-size: clamp(2.6rem, 4vw, 4.5rem);
}

.newsletter-card > div > p:last-child {
  color: rgba(255,255,255,0.63);
  line-height: 1.7;
}

.newsletter form {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
}

.newsletter input {
  min-width: 0;
  min-height: 54px;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,0.32);
  border-right: 0;
  outline: 0;
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.newsletter input::placeholder {
  color: rgba(255,255,255,0.5);
}

.newsletter input:focus {
  border-color: var(--apricot);
}

.form-message {
  grid-column: 1 / -1;
  min-height: 18px;
  margin: 10px 0 0;
  color: var(--apricot);
  font-size: 0.72rem;
  opacity: 0;
}

.form-message.is-visible {
  opacity: 1;
}

.footer {
  padding: 88px 0 28px;
  background: #1b100c;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.9fr 1.2fr;
  gap: 64px;
}

.brand-footer .brand-wording small {
  color: rgba(255,255,255,0.5);
}

.footer-brand > p,
.footer-grid > div:last-child p {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  line-height: 1.8;
}

.footer-brand > p {
  max-width: 330px;
  margin: 26px 0;
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.7);
  font-size: 0.63rem;
}

.footer-grid h3 {
  margin: 7px 0 25px;
  color: var(--apricot);
  font-size: 0.65rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) a,
.footer-grid > div:last-child p {
  display: block;
  margin: 0 0 12px;
  color: rgba(255,255,255,0.58);
  font-size: 0.77rem;
}

.footer-grid > div:not(.footer-brand) a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 70px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.34);
  font-size: 0.65rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
    justify-self: end;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 18px max(32px, calc((100vw - 1240px) / 2)) 28px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .button-small {
    display: none;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 36px, 680px);
  }

  .section {
    padding: 82px 0;
  }

  .site-header {
    min-height: 80px;
    grid-template-columns: 1fr auto auto;
    gap: 13px;
    padding: 0 18px;
  }

  .brand-mark {
    width: 53px;
    height: 53px;
  }

  .brand-wording {
    display: none;
  }

  .header-actions {
    grid-column: 2;
  }

  .menu-toggle {
    grid-column: 3;
  }

  .topbar {
    font-size: 0.54rem;
    letter-spacing: 0.08em;
  }

  .hero {
    min-height: 590px;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(27, 13, 8, 0.91), rgba(38, 21, 15, 0.54));
  }

  .hero-content {
    padding: 78px 0 122px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11vw, 4.2rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .certification-chip {
    right: 18px;
    bottom: 25px;
    width: 126px;
  }

  .hero-index {
    left: 18px;
    bottom: 28px;
  }

  .stats {
    width: calc(100% - 36px);
    grid-template-columns: repeat(2, 1fr);
  }

  .stat {
    min-height: 180px;
    padding: 25px 20px;
  }

  .about-grid,
  .featured-card,
  .newsletter-card,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 70px;
  }

  .about-visual,
  .about-visual img {
    min-height: 430px;
    height: 430px;
  }

  .about-stamp {
    right: -8px;
    bottom: -40px;
    width: 125px;
    height: 125px;
  }

  .split-heading {
    gap: 25px;
  }

  .split-heading > p {
    margin-left: 0;
  }

  .product-grid,
  .responsibility-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .product-image-wrap,
  .blog-image {
    height: 250px;
  }

  .featured-card {
    min-height: 0;
  }

  .featured-visual {
    height: 380px;
    padding: 30px;
  }

  .featured-visual img {
    max-width: 220px;
    max-height: 315px;
  }

  .featured-copy {
    padding: 50px 30px;
  }

  .featured-copy::before {
    top: -20px;
    font-size: 13rem;
  }

  .featured-product-logo {
    width: 128px;
  }

  .responsibility-grid article {
    min-height: 250px;
    padding: 35px;
  }

  .blog-heading .text-link {
    justify-self: start;
  }

  .newsletter-card {
    gap: 35px;
    padding: 46px 26px;
  }

  .newsletter form {
    grid-template-columns: 1fr;
  }

  .newsletter input {
    border-right: 1px solid rgba(255,255,255,0.32);
    border-bottom: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px 30px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 470px) {
  .language-switch span {
    display: none;
  }

  .language-switch {
    gap: 2px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .about-copy h2,
  .section-heading h2,
  .centered-heading h2 {
    font-size: 2.7rem;
  }

  .featured {
    padding: 65px 0 92px;
  }

  .featured-visual {
    height: 320px;
  }

  .featured-visual img {
    max-width: 185px;
    max-height: 260px;
  }

  .featured-copy {
    padding: 42px 24px 48px;
  }

  .featured-button {
    width: 100%;
    justify-content: space-between;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

/* Catálogo, detalhe de produto, distribuidores e novidades */
.catalog-page { min-height: 100vh; overflow: hidden; }
.catalog-header { position: relative; }
.button-outline { border-color: rgba(38,21,15,.3); background: transparent; color: var(--espresso); }
.button-outline:hover { border-color: var(--copper); color: var(--terracotta); }
.inner-hero { padding: 80px 0 78px; color: #fff; background: radial-gradient(circle at 80% 30%, rgba(198,95,40,.3), transparent 31%), linear-gradient(125deg,#1b0d09,#452319); }
.inner-hero .shell > p:first-child { margin: 0 0 44px; color: rgba(255,255,255,.54); font-size: .69rem; }
.inner-hero .shell > span, .distributor-hero > .shell > span { color: var(--apricot); font-size: .65rem; font-weight: 750; letter-spacing: .22em; text-transform: uppercase; }
.inner-hero h1, .distributor-hero h1 { max-width: 850px; margin: 14px 0; font-family: Georgia,"Times New Roman",serif; font-size: clamp(3.1rem,6.2vw,6.7rem); font-weight: 400; line-height: .94; }
.inner-lead { max-width: 650px; margin: 24px 0 0; color: rgba(255,255,255,.7); font-size: 1.02rem; line-height: 1.7; }
.catalog-intro { padding: 64px 0 20px; }
.catalog-intro p { max-width: 780px; margin: 0; font-family: Georgia,"Times New Roman",serif; font-size: clamp(1.5rem,2.5vw,2.2rem); line-height: 1.35; }
.product-browser { padding: 45px 0 110px; }
.filter-bar { position: sticky; z-index: 8; top: 0; display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 18px 0; background: rgba(251,248,243,.96); backdrop-filter: blur(12px); }
.filter-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-pills button { padding: 10px 14px; border: 1px solid var(--line); border-radius: 100px; background: transparent; color: var(--muted); font-size: .69rem; cursor: pointer; }
.filter-pills button.is-active { border-color: var(--espresso); background: var(--espresso); color: #fff; }
.filter-bar input { width: 240px; height: 43px; padding: 0 14px; border: 1px solid var(--line); background: #fff; outline: 0; }
.filter-bar input:focus { border-color: var(--copper); }
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 30px; }
.catalog-card { display: flex; flex-direction: column; min-width: 0; border: 1px solid var(--line); background: #fff; transition: transform .25s ease, box-shadow .25s ease; }
.catalog-card[hidden] { display: none !important; }
.catalog-card:hover { transform: translateY(-5px); box-shadow: 0 22px 58px rgba(38,21,15,.11); }
.catalog-card-image { position: relative; display: block; height: 260px; overflow: hidden; background: var(--ivory); }
.catalog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.catalog-card:hover .catalog-card-image img { transform: scale(1.04); }
.catalog-card-image > span { position: absolute; top: 14px; left: 14px; padding: 6px 9px; background: var(--espresso); color: #fff; font-size: .57rem; letter-spacing: .13em; text-transform: uppercase; }
.catalog-card-copy { display: flex; flex: 1; flex-direction: column; padding: 25px; }
.catalog-card h2 { margin: 0 0 11px; font-family: Georgia,"Times New Roman",serif; font-size: 1.55rem; font-weight: 400; }
.catalog-card p { display: -webkit-box; overflow: hidden; margin: 0 0 18px; color: var(--muted); font-size: .79rem; line-height: 1.68; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.variant-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; margin-bottom: 20px; }
.variant-chips span { padding: 5px 7px; border: 1px solid var(--line); color: var(--muted); font-size: .57rem; }
.card-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.empty-state { padding: 60px 0; text-align: center; }
.b2b-band { padding: 65px 0; background: linear-gradient(120deg,#1c0f0b,#4a281c); color: #fff; }
.b2b-band .shell { display: flex; align-items: center; justify-content: center; gap: 40px; }
.b2b-band h2 { margin: 0; font-family: Georgia,"Times New Roman",serif; font-size: clamp(1.8rem,3vw,3rem); font-weight: 400; }

.breadcrumb { display: flex; flex-wrap: wrap; gap: 9px; padding: 35px 0; color: var(--muted); font-size: .7rem; }
.breadcrumb strong { color: var(--espresso); }
.product-detail { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,1fr); gap: 68px; padding-bottom: 95px; }
.product-main-image { position: relative; height: 590px; overflow: hidden; background: var(--ivory); }
.product-main-image > img:first-child { width: 100%; height: 100%; object-fit: cover; }
.product-main-image .abic-badge { position: absolute; right: 18px; bottom: 18px; width: 72px; height: 72px; object-fit: contain; filter: drop-shadow(0 4px 14px rgba(0,0,0,.25)); }
.product-thumbs { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 10px; }
.product-thumbs button { height: 116px; padding: 0; overflow: hidden; border: 2px solid transparent; background: var(--ivory); cursor: pointer; }
.product-thumbs button.is-active { border-color: var(--copper); }
.product-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.product-summary { padding-top: 22px; }
.product-kicker, .eyebrow { color: var(--terracotta); font-size: .62rem; font-weight: 760; letter-spacing: .2em; text-transform: uppercase; }
.product-summary h1 { margin: 16px 0 22px; font-family: Georgia,"Times New Roman",serif; font-size: clamp(3rem,5vw,5.4rem); font-weight: 400; line-height: .98; }
.product-summary > p { max-width: 630px; color: var(--muted); line-height: 1.78; }
.field-label { display: block; margin: 36px 0 12px; font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }
.variant-selector { display: flex; flex-wrap: wrap; gap: 8px; }
.variant-selector button { min-height: 43px; padding: 8px 13px; border: 1px solid var(--line); background: #fff; font-size: .69rem; cursor: pointer; }
.variant-selector button.is-active { border-color: var(--espresso); box-shadow: inset 0 -2px var(--espresso); }
.feature-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin: 35px 0; }
.feature-row div { display: grid; gap: 8px; padding: 18px 8px; border-top: 1px solid var(--line); }
.feature-row span { color: var(--copper); font-family: Georgia,serif; font-size: 1.5rem; }
.feature-row small { color: var(--muted); }
.detail-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.product-note { padding: 15px 18px; border-left: 2px solid var(--copper); background: var(--ivory); font-size: .72rem; }
.technical-section { padding: 85px 0 95px; background: var(--ivory); }
.technical-tabs { display: flex; gap: 28px; border-bottom: 1px solid var(--line); }
.technical-tabs button { padding: 0 3px 15px; border: 0; border-bottom: 2px solid transparent; background: none; color: var(--muted); cursor: pointer; }
.technical-tabs button.is-active { border-color: var(--terracotta); color: var(--espresso); font-weight: 720; }
.spec-grid { display: grid; grid-template-columns: repeat(2,1fr); margin: 35px 0 0; border-top: 1px solid var(--line); }
.spec-grid div { display: grid; grid-template-columns: 42% 58%; padding: 18px 16px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.spec-grid dt { color: var(--muted); font-size: .68rem; }
.spec-grid dd { margin: 0; font-size: .74rem; font-weight: 570; line-height: 1.5; }
.related-products { padding: 95px 0; }
.related-products > p { margin: 0 0 28px; }
.related-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.related-grid a { padding: 10px 10px 17px; border: 1px solid var(--line); }
.related-grid img { width: 100%; height: 175px; margin-bottom: 14px; object-fit: cover; }
.related-grid strong, .related-grid span { display: block; padding: 0 5px; }
.related-grid strong { margin-bottom: 8px; font-family: Georgia,serif; font-size: 1.05rem; font-weight: 400; }
.related-grid span { color: var(--terracotta); font-size: .64rem; }
.not-found { padding: 120px 0; }

.distributor-hero { padding: 100px 0; background: radial-gradient(circle at 20% 10%,rgba(198,95,40,.28),transparent 34%),#21120d; color:#fff; text-align:center; }
.distributor-hero h1 { margin-inline: auto; }
.distributor-hero p { max-width: 650px; margin: 24px auto 35px; color: rgba(255,255,255,.67); font-size: 1.05rem; }
.distributor-hero > .shell > div { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }
.distributor-hero strong { padding: 11px 15px; border: 1px solid rgba(255,255,255,.2); font-size: .65rem; font-weight: 530; }
.distributor-benefits { padding: 105px 0; }
.distributor-benefits h2, .process-section h2, .b2b-form-panel h2, .direct-contact h2 { margin: 15px 0 40px; font-family: Georgia,serif; font-size: clamp(2.4rem,4.5vw,4.5rem); font-weight: 400; }
.benefit-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.benefit-grid article { min-height: 285px; padding: 30px; border: 1px solid var(--line); }
.benefit-grid article > span { color: var(--copper); font-family: Georgia,serif; font-size: 1.7rem; }
.benefit-grid h3 { margin: 55px 0 13px; font-family: Georgia,serif; font-size: 1.35rem; font-weight: 400; }
.benefit-grid p, .process-grid p, .direct-contact > p { color: var(--muted); font-size: .78rem; line-height: 1.7; }
.process-section { padding: 95px 0; background: var(--ivory); }
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.process-grid article { display: grid; grid-template-columns: 70px 1fr; gap: 18px; }
.process-grid article > span { width: 60px; height: 60px; display: grid; place-items: center; border: 1px solid var(--coffee); border-radius: 50%; font-family: Georgia,serif; font-size: 1.5rem; }
.process-grid h3 { margin: 4px 0 8px; font-family: Georgia,serif; font-size: 1.25rem; font-weight: 400; }
.distributor-contact { display: grid; grid-template-columns: minmax(0,1.55fr) minmax(290px,.75fr); gap: 35px; padding: 105px 0; }
.b2b-form-panel { padding: 45px; border: 1px solid var(--line); background: #fff; }
.b2b-form-panel > p { margin: -25px 0 35px; color: var(--muted); font-size: .8rem; }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.b2b-form-panel label, .b2b-form-panel legend { display: grid; gap: 8px; color: var(--espresso); font-size: .66rem; }
.b2b-form-panel input:not([type=checkbox]), .b2b-form-panel select, .b2b-form-panel textarea { width: 100%; padding: 12px; border: 1px solid var(--line); background: var(--paper); outline: 0; }
.b2b-form-panel input:focus, .b2b-form-panel select:focus, .b2b-form-panel textarea:focus { border-color: var(--copper); }
.b2b-form-panel fieldset { margin: 24px 0; padding: 0; border: 0; }
.interest-grid { display: flex; flex-wrap: wrap; gap: 12px 18px; margin-top: 11px; }
.interest-grid label { display: flex; align-items: center; gap: 5px; }
.consent { display: grid !important; grid-template-columns: 17px 1fr; margin: 19px 0; line-height: 1.55; }
.form-submit { width: 100%; }
.form-honeypot { position: absolute; left: -9999px; }
.form-status { margin: 16px 0 0 !important; padding: 12px; }
.form-status.success { background: #edf5ec; color: #2f6234 !important; }
.form-status.error { background: #fff0eb; color: #9b2f14 !important; }
.direct-contact { padding: 45px 35px; background: var(--ivory); }
.map-placeholder { min-height: 310px; display: flex; flex-direction: column; justify-content: flex-end; margin-top: 35px; padding: 28px; background: linear-gradient(rgba(38,21,15,.45),rgba(38,21,15,.8)),url("https://images.unsplash.com/photo-1511497584788-876760111969?auto=format&fit=crop&w=900&q=75") center/cover; color: #fff; }
.map-placeholder > span { margin-bottom: auto; font-size: 2rem; }
.map-placeholder strong { font-family: Georgia,serif; font-size: 1.35rem; }
.map-placeholder small { margin: 7px 0 20px; color: rgba(255,255,255,.64); line-height: 1.5; }
.map-placeholder a { font-size: .67rem; text-decoration: underline; }

.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; padding: 100px 0 120px; }
.news-grid article { padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.news-grid img { width: 100%; height: 280px; margin-bottom: 24px; object-fit: cover; }
.news-grid span { color: var(--terracotta); font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; }
.news-grid h2 { margin: 12px 0; font-family: Georgia,serif; font-size: 1.6rem; font-weight: 400; line-height: 1.25; }
.news-grid p { color: var(--muted); font-size: .78rem; line-height: 1.7; }

.site-footer { padding: 80px 0 28px; background: #1b100c; color: #fff; }
.site-footer .footer-column { display: flex; flex-direction: column; gap: 11px; }
.site-footer .footer-column strong { margin: 5px 0 12px; color: var(--apricot); font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; }
.site-footer .footer-column a, .site-footer .footer-column span { color: rgba(255,255,255,.55); font-size: .75rem; line-height: 1.5; }
.site-footer .brand-mark { filter: none; }

@media (max-width: 1000px) {
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .product-detail { gap: 35px; }
  .product-main-image { height: 480px; }
  .benefit-grid { grid-template-columns: repeat(2,1fr); }
  .distributor-contact { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 720px) {
  .shell { width: min(100% - 34px,1240px); }
  .inner-hero { padding: 58px 0; }
  .filter-bar { position: static; align-items: stretch; flex-direction: column; }
  .filter-pills { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 7px; }
  .filter-pills button { white-space: nowrap; }
  .filter-bar input { width: 100%; }
  .product-grid { grid-template-columns: 1fr; }
  .catalog-card-image { height: 285px; }
  .b2b-band .shell { align-items: flex-start; flex-direction: column; }
  .product-detail { grid-template-columns: 1fr; }
  .product-main-image { height: 390px; }
  .product-thumbs button { height: 85px; }
  .product-summary h1 { font-size: 3.15rem; }
  .detail-actions .button { width: 100%; }
  .spec-grid { grid-template-columns: 1fr; }
  .spec-grid div { grid-template-columns: 1fr; gap: 7px; }
  .related-grid { grid-template-columns: repeat(2,1fr); overflow-x: auto; }
  .related-grid img { height: 140px; }
  .benefit-grid, .process-grid { grid-template-columns: 1fr; }
  .benefit-grid article { min-height: 230px; }
  .benefit-grid h3 { margin-top: 30px; }
  .form-grid { grid-template-columns: 1fr; }
  .b2b-form-panel { padding: 30px 20px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-grid img { height: 245px; }
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 42px 25px; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* ========================================================================== */
/* A EMPRESA — rota /empresa                                                  */
/* ========================================================================== */

.company-page {
  overflow: hidden;
  background: var(--paper);
}

.company-page .company-brand .brand-mark,
.company-page .company-footer-logo .brand-mark {
  width: 146px;
  height: 58px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.company-page .company-brand .brand-mark img,
.company-page .company-footer-logo .brand-mark img {
  object-fit: contain;
}

.company-page .main-nav a.is-current::after {
  right: 0;
}

.company-page h1,
.company-page h2,
.company-page h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.company-page-hero {
  position: relative;
  isolation: isolate;
  min-height: 390px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 30%, rgba(198, 95, 40, 0.28), transparent 29%),
    linear-gradient(112deg, #1b100c 0%, #321b13 58%, #4a281c 100%);
  color: #fff;
}

.company-page-hero::after {
  content: "1963";
  position: absolute;
  z-index: -1;
  right: max(20px, calc((100vw - 1240px) / 2));
  bottom: -42px;
  color: rgba(255, 255, 255, 0.035);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(9rem, 22vw, 22rem);
  line-height: 0.8;
}

.company-page-hero .shell {
  padding: 74px 0 70px;
}

.company-page-hero .shell > p {
  margin: 0 0 35px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.company-page-hero .eyebrow {
  display: block;
  margin-bottom: 12px;
}

.company-page-hero h1 {
  margin: 0;
  font-size: clamp(4rem, 8vw, 7.8rem);
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.company-intro {
  background: var(--paper);
}

.company-intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
}

.company-intro-copy h2,
.company-section-heading h2,
.certification-panel h2,
.company-social-copy h2 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.3rem);
  letter-spacing: -0.048em;
  line-height: 1;
}

.company-intro-copy > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

.company-intro-image {
  position: relative;
  margin: 0;
  padding: 0 0 34px 34px;
}

.company-intro-image::before {
  content: "";
  position: absolute;
  inset: 42px 38px 0 0;
  border: 1px solid var(--copper);
}

.company-intro-image img {
  position: relative;
  width: 100%;
  height: 540px;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.06);
  box-shadow: var(--shadow);
}

.company-intro-image figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 230px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: var(--espresso);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-intro-image figcaption span {
  color: var(--apricot);
  font-family: Georgia, serif;
  font-size: 1rem;
}

.company-timeline {
  padding-top: 90px;
  background: var(--ivory);
}

.company-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 64px;
}

.company-section-heading > p {
  max-width: 330px;
  margin: 0 0 8px auto;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-transform: uppercase;
}

.timeline-stage {
  min-height: 550px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  background: var(--paper);
  box-shadow: 0 32px 90px rgba(38, 21, 15, 0.1);
  animation: company-stage-in 460ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes company-stage-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.timeline-stage-image {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  background: var(--ivory-2);
}

.timeline-stage-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(25, 13, 8, 0.3), transparent 45%);
}

.timeline-stage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.15) saturate(0.68) contrast(1.08);
}

.timeline-stage-image > span {
  position: absolute;
  z-index: 1;
  left: 30px;
  bottom: 26px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.44);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 0.86rem;
}

.timeline-stage-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(50px, 7vw, 92px);
}

.timeline-stage-copy > strong {
  color: var(--terracotta);
  font-family: Georgia, serif;
  font-size: clamp(4.2rem, 7vw, 7.4rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.84;
}

.timeline-stage-copy h3 {
  margin: 28px 0 20px;
  font-size: clamp(2rem, 3vw, 3.3rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.timeline-stage-copy > p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.timeline-navigation {
  --timeline-progress: 0%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 76px;
  padding-bottom: 10px;
}

.timeline-track {
  position: absolute;
  top: 9px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 2px;
  overflow: hidden;
  background: rgba(49, 43, 40, 0.16);
}

.timeline-track span {
  display: block;
  width: var(--timeline-progress);
  height: 100%;
  background: var(--terracotta);
  transition: width 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.timeline-navigation button {
  position: relative;
  min-width: 0;
  padding: 41px 12px 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  text-align: center;
  cursor: pointer;
}

.timeline-navigation button::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translateX(-50%);
  border: 5px solid var(--ivory);
  border-radius: 50%;
  background: #958b84;
  box-shadow: 0 0 0 1px rgba(49, 43, 40, 0.2);
  transition: background 260ms ease, transform 260ms ease, box-shadow 260ms ease;
}

.timeline-navigation button:hover::before,
.timeline-navigation button:focus-visible::before,
.timeline-navigation button.is-active::before {
  background: var(--terracotta);
}

.timeline-navigation button.is-active::before {
  transform: translateX(-50%) scale(1.35);
  box-shadow: 0 0 0 1px var(--terracotta), 0 0 0 7px rgba(169, 54, 14, 0.12);
}

.timeline-navigation button strong {
  display: block;
  min-height: 42px;
  color: var(--charcoal);
  font-family: Georgia, serif;
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1;
  transition: color 260ms ease, font-size 260ms ease;
}

.timeline-navigation button.is-active strong {
  color: var(--terracotta);
  font-size: 2rem;
}

.timeline-navigation button small {
  display: block;
  max-width: 150px;
  min-height: 43px;
  margin: 8px auto 0;
  color: var(--muted);
  font-size: 0.67rem;
  line-height: 1.45;
}

.company-principles {
  background:
    radial-gradient(circle at 50% 0%, rgba(198, 95, 40, 0.14), transparent 35%),
    var(--espresso);
  color: #fff;
}

.company-section-heading-light h2 {
  color: #fff;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.principles-grid article {
  min-height: 350px;
  padding: 44px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.principles-grid article > span,
.social-pillars article > span {
  display: block;
  margin-bottom: 90px;
  color: var(--apricot);
  font-family: Georgia, serif;
  font-size: 0.8rem;
}

.principles-grid h3,
.social-pillars h3 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.principles-grid p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.certification-section {
  background: var(--paper);
}

.certification-panel {
  display: grid;
  grid-template-columns: 245px 1fr;
  gap: clamp(46px, 7vw, 100px);
  align-items: center;
  padding: clamp(46px, 7vw, 88px);
  background: var(--ivory);
  border: 1px solid var(--line);
}

.certification-logo-wrap {
  width: 210px;
  height: 210px;
  display: grid;
  place-items: center;
  border: 1px solid var(--copper);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
}

.certification-logo-wrap img {
  width: 76%;
  height: 76%;
  object-fit: contain;
}

.certification-panel h2 {
  max-width: 830px;
  font-size: clamp(2.6rem, 4.4vw, 4.8rem);
}

.certification-panel > div:last-child > p:last-child {
  max-width: 850px;
  margin: 28px 0 0;
  color: var(--muted);
  line-height: 1.85;
}

.company-social {
  padding-bottom: 0;
  background: var(--ivory);
}

.company-social-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(55px, 8vw, 110px);
  align-items: center;
}

.company-social-copy > p:last-child {
  max-width: 570px;
  margin: 30px 0 0;
  color: var(--muted);
  line-height: 1.9;
}

.company-social-image {
  min-height: 510px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.company-social-image img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.08);
}

.social-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 82px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.social-pillars article {
  min-height: 290px;
  padding: 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.social-pillars article > span {
  margin-bottom: 55px;
  color: var(--terracotta);
}

.social-pillars p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.75;
}

.company-gallery {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 16px;
}

.gallery-grid figure {
  margin: 0;
}

.gallery-grid button {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: var(--ivory-2);
  cursor: zoom-in;
}

.gallery-grid button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(38, 21, 15, 0.12);
  opacity: 0;
  transition: opacity 260ms ease;
}

.gallery-grid button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.68) contrast(1.05);
  transition: transform 500ms ease, filter 500ms ease;
}

.gallery-grid button > span {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -40%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  opacity: 0;
  transition: opacity 260ms ease, transform 260ms ease;
}

.gallery-grid button:hover img,
.gallery-grid button:focus-visible img {
  transform: scale(1.055);
  filter: saturate(0.92) contrast(1.05);
}

.gallery-grid button:hover::after,
.gallery-grid button:focus-visible::after,
.gallery-grid button:hover > span,
.gallery-grid button:focus-visible > span {
  opacity: 1;
}

.gallery-grid button:hover > span,
.gallery-grid button:focus-visible > span {
  transform: translate(-50%, -50%);
}

.gallery-grid figcaption {
  min-height: 40px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.gallery-lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 48px 100px;
  background: rgba(19, 9, 6, 0.94);
  backdrop-filter: blur(16px);
  animation: gallery-fade-in 220ms ease both;
}

@keyframes gallery-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.gallery-lightbox figure {
  width: min(1100px, 100%);
  max-height: calc(100vh - 96px);
  margin: 0;
}

.gallery-lightbox figure img {
  width: 100%;
  max-height: calc(100vh - 160px);
  object-fit: contain;
}

.gallery-lightbox figcaption {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

.gallery-lightbox figcaption span {
  color: var(--apricot);
}

.gallery-close,
.gallery-arrow {
  position: fixed;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.gallery-close:hover,
.gallery-arrow:hover {
  border-color: var(--apricot);
  background: rgba(198, 95, 40, 0.22);
}

.gallery-close {
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  font-size: 1.8rem;
}

.gallery-arrow {
  top: 50%;
  width: 55px;
  height: 55px;
  transform: translateY(-50%);
  font-size: 1.25rem;
}

.gallery-arrow-prev {
  left: 24px;
}

.gallery-arrow-next {
  right: 24px;
}

@media (max-width: 1120px) {
  .company-page .company-brand .brand-mark {
    width: 118px;
    height: 50px;
  }

  .company-intro-grid,
  .company-social-grid {
    gap: 55px;
  }

  .timeline-stage-copy {
    padding: 50px;
  }

  .timeline-navigation button {
    padding-inline: 7px;
  }

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

@media (max-width: 820px) {
  .company-page .company-brand .brand-mark {
    width: 106px;
    height: 46px;
  }

  .company-page .company-footer-logo .brand-mark {
    width: 136px;
    height: 58px;
  }

  .company-page-hero {
    min-height: 310px;
  }

  .company-page-hero .shell {
    padding: 60px 0;
  }

  .company-page-hero .shell > p {
    margin-bottom: 42px;
  }

  .company-page-hero h1 {
    font-size: clamp(3.6rem, 18vw, 5.7rem);
  }

  .company-intro-grid,
  .company-social-grid,
  .timeline-stage,
  .certification-panel,
  .company-section-heading {
    grid-template-columns: 1fr;
  }

  .company-intro-grid {
    gap: 60px;
  }

  .company-intro-copy h2,
  .company-section-heading h2,
  .certification-panel h2,
  .company-social-copy h2 {
    font-size: 2.8rem;
  }

  .company-intro-image {
    padding: 0 0 26px 20px;
  }

  .company-intro-image img {
    height: 400px;
  }

  .company-section-heading {
    gap: 20px;
    margin-bottom: 42px;
  }

  .company-section-heading > p {
    margin-left: 0;
  }

  .timeline-stage {
    min-height: 0;
  }

  .timeline-stage-image {
    min-height: 390px;
    height: 390px;
  }

  .timeline-stage-copy {
    min-height: 420px;
    padding: 46px 30px 52px;
  }

  .timeline-navigation {
    display: block;
    margin: 60px 0 0;
    padding: 0;
  }

  .timeline-track {
    top: 9px;
    bottom: 48px;
    left: 9px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .timeline-track span {
    width: 100%;
    height: var(--timeline-progress);
    transition: height 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  .timeline-navigation button {
    width: 100%;
    min-height: 92px;
    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: start;
    padding: 0 0 27px 46px;
    text-align: left;
  }

  .timeline-navigation button::before {
    top: 0;
    left: 1px;
    transform: none;
  }

  .timeline-navigation button.is-active::before {
    transform: scale(1.35);
  }

  .timeline-navigation button strong {
    min-height: 0;
  }

  .timeline-navigation button small {
    max-width: none;
    min-height: 0;
    margin: 2px 0 0;
  }

  .timeline-navigation button.is-active strong {
    font-size: 1.75rem;
  }

  .principles-grid,
  .social-pillars {
    grid-template-columns: 1fr;
  }

  .principles-grid article {
    min-height: 280px;
    padding: 36px;
  }

  .principles-grid article > span {
    margin-bottom: 54px;
  }

  .certification-panel {
    justify-items: start;
    padding: 42px 26px;
  }

  .certification-logo-wrap {
    width: 160px;
    height: 160px;
  }

  .company-social-grid {
    gap: 45px;
  }

  .company-social-image,
  .company-social-image img {
    min-height: 380px;
    height: 380px;
  }

  .social-pillars {
    margin-top: 55px;
  }

  .social-pillars article {
    min-height: 235px;
    padding: 32px;
  }

  .social-pillars article > span {
    margin-bottom: 40px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 12px;
  }

  .gallery-grid button {
    height: 210px;
  }

  .gallery-lightbox {
    padding: 70px 18px 90px;
  }

  .gallery-arrow {
    top: auto;
    bottom: 20px;
    transform: none;
  }

  .gallery-arrow-prev {
    left: calc(50% - 66px);
  }

  .gallery-arrow-next {
    right: calc(50% - 66px);
  }
}

@media (max-width: 470px) {
  .company-page-hero::after {
    right: -20px;
  }

  .company-intro-image img {
    height: 330px;
  }

  .timeline-stage-image {
    min-height: 315px;
    height: 315px;
  }

  .timeline-stage-copy > strong {
    font-size: 4rem;
  }

  .timeline-navigation button {
    grid-template-columns: 75px 1fr;
  }

  .gallery-grid {
    gap: 22px 8px;
  }

  .gallery-grid button {
    height: 155px;
  }

  .gallery-grid figcaption {
    font-size: 0.65rem;
  }

  .gallery-lightbox figcaption {
    flex-direction: column;
    gap: 8px;
  }
}

.static-button{display:inline-flex!important}.form-status[hidden],.empty-state[hidden]{display:none!important}.spec-grid>div[hidden]{display:none!important}.timeline-stage-image img{transition:opacity .25s ease}.language-switch button{font:inherit}.gallery-lightbox{cursor:zoom-out}.gallery-lightbox figure{cursor:default}.company-page .site-footer{display:none}@media(max-width:1120px){.card-actions .button-small{display:inline-flex}}
