:root {
  --ink: #14332f;
  --emerald: #0b4942;
  --emerald-deep: #073832;
  --gold: #b88728;
  --gold-deep: #8d6417;
  --wine: #8c1026;
  --purple: #392064;
  --paper: #ffffff;
  --mist: #f4f7f5;
  --line: #dbe4df;
  --muted: #5f726e;
  --shadow: 0 24px 70px rgba(7, 56, 50, 0.12);
  --radius: 1.25rem;
  --container: min(1180px, calc(100% - 2.5rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(184, 135, 40, 0.45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-180%);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--emerald-deep);
  color: white;
  font-weight: 700;
}

.skip-link:focus {
  transform: none;
}

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

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--emerald-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2rem, 4.4vw, 3.65rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

p {
  margin: 0;
}

.lead {
  max-width: 42rem;
  color: #39524e;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.7;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid rgba(219, 228, 223, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

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

.brand-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 350px;
}

.brand-mark {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  color: var(--gold);
}

.brand-mark path {
  vector-effect: non-scaling-stroke;
}

.brand-lockup {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.brand-wordmark {
  display: flex;
  align-items: baseline;
  font-family: Baskerville, "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 0.9;
  white-space: nowrap;
}

.brand-wordmark-alter {
  color: var(--emerald-deep);
}

.brand-wordmark-age {
  color: var(--gold-deep);
}

.brand-tagline {
  display: grid;
  margin-top: 0.55rem;
  padding-left: 0.12rem;
  color: #425b56;
  font-size: 0.49rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  line-height: 1.45;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.site-nav a {
  position: relative;
  color: #334c48;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -0.5rem;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav a[aria-current="page"] {
  color: var(--emerald-deep);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--emerald-deep);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--emerald-deep);
  box-shadow: 0 12px 28px rgba(7, 56, 50, 0.2);
  color: white !important;
}

.button-primary:hover {
  background: #0b4b43;
  box-shadow: 0 16px 32px rgba(7, 56, 50, 0.26);
}

.button-secondary {
  border-color: #b9c8c2;
  background: white;
  color: var(--emerald-deep);
}

.button-gold {
  background: var(--gold);
  color: #102f2b;
}

.button-arrow::after {
  content: "→";
  font-size: 1.1rem;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #fff 0 54%, #f7f5ef 54% 100%);
}

.hero::before {
  position: absolute;
  top: -12rem;
  right: -14rem;
  width: 35rem;
  height: 35rem;
  border: 1px solid rgba(184, 135, 40, 0.25);
  border-radius: 50%;
  content: "";
}

.hero::after {
  position: absolute;
  right: 12%;
  bottom: -11rem;
  width: 22rem;
  height: 22rem;
  border: 1px solid rgba(11, 73, 66, 0.12);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 720px;
  align-items: center;
  gap: 3rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  padding-block: 4.5rem;
}

.hero-copy {
  padding-block: 2rem;
}

.hero-copy h1 span {
  color: var(--gold-deep);
}

.hero-copy .lead {
  margin-top: 1.75rem;
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.pack-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 19% 79%, rgba(62, 31, 102, 0.2), transparent 31%),
    radial-gradient(circle at 84% 66%, rgba(184, 135, 40, 0.22), transparent 34%),
    linear-gradient(145deg, #fbfaf7 0%, #ffffff 52%, #eff4f1 100%);
  box-shadow: 0 30px 80px rgba(7, 56, 50, 0.1);
}

.pack-stage::before {
  position: absolute;
  top: -8rem;
  right: -5rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(184, 135, 40, 0.34);
  border-radius: 50%;
  content: "";
}

.pack-stage::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 46%;
  width: 1px;
  background: linear-gradient(transparent, rgba(184, 135, 40, 0.26), transparent);
  content: "";
  transform: rotate(14deg);
}

.pack-stage span {
  position: absolute;
  right: 2.2rem;
  bottom: 2.2rem;
  width: 7.5rem;
  height: 7.5rem;
  border: 1px solid rgba(184, 135, 40, 0.34);
  border-radius: 50%;
}

.pack {
  position: absolute;
  z-index: 3;
  object-fit: contain;
}

.pack-flexao {
  right: -1%;
  bottom: 0.2rem;
  width: 52%;
  max-height: 535px;
}

.pack-crampao {
  bottom: 2.4rem;
  left: -8%;
  width: 68%;
  transform: rotate(-2deg);
}

.stage-heading {
  position: absolute;
  z-index: 2;
  top: 2.2rem;
  left: 2.3rem;
  display: grid;
  gap: 0.55rem;
  max-width: 15rem;
}

.stage-heading span {
  color: var(--gold-deep);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.stage-heading strong {
  color: var(--emerald-deep);
  font-family: Baskerville, "Palatino Linotype", Georgia, serif;
  font-size: 1.38rem;
  font-weight: 500;
  line-height: 1.2;
}

.stage-plinth {
  position: absolute;
  z-index: 1;
  right: 6%;
  bottom: 1.25rem;
  left: 5%;
  height: 6.5rem;
  border: 1px solid rgba(184, 135, 40, 0.28);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.96) 0%, rgba(229, 222, 204, 0.42) 48%, transparent 72%);
}

.trust-bar {
  border-bottom: 1px solid var(--line);
}

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

.trust-item {
  padding: 1.65rem 2rem;
  text-align: center;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item strong {
  display: block;
  color: var(--emerald-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 500;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.85rem;
}

.section {
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
}

.section-soft {
  background: var(--mist);
}

.section-dark {
  background: var(--emerald-deep);
  color: white;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.section-heading .lead {
  max-width: 35rem;
}

.product-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card {
  position: relative;
  display: grid;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  grid-template-rows: minmax(260px, 1fr) auto;
}

.product-card-media {
  position: relative;
  display: grid;
  min-height: 380px;
  place-items: center;
  overflow: hidden;
  background: #f9fbfa;
}

.product-card-media::before {
  position: absolute;
  top: -5rem;
  right: -3rem;
  width: 22rem;
  height: 22rem;
  border: 1px solid rgba(184, 135, 40, 0.28);
  border-radius: 50%;
  content: "";
}

.product-card-media::after {
  position: absolute;
  right: 2rem;
  bottom: 1.5rem;
  left: 2rem;
  height: 1px;
  background: rgba(184, 135, 40, 0.35);
  content: "";
}

.product-card-flexao .product-card-media {
  background:
    radial-gradient(circle at 78% 48%, rgba(205, 154, 51, 0.18), transparent 32%),
    linear-gradient(145deg, #fff 0%, #f6f1e6 100%);
}

.product-card-crampao .product-card-media {
  background:
    radial-gradient(circle at 48% 35%, rgba(107, 73, 160, 0.62), transparent 38%),
    linear-gradient(145deg, #120c28 0%, #2d1656 58%, #6e0d26 100%);
}

.product-card-crampao .product-card-media::before {
  border-color: rgba(213, 178, 101, 0.38);
}

.product-card-crampao .product-card-media::after {
  background: rgba(213, 178, 101, 0.42);
}

.product-media-code {
  position: absolute;
  z-index: 2;
  top: 1.4rem;
  left: 1.5rem;
  color: var(--gold-deep);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.17em;
}

.product-card-crampao .product-media-code {
  color: #ead39c;
}

.product-card-media img {
  position: relative;
  z-index: 1;
  max-width: 88%;
  max-height: 325px;
  object-fit: contain;
}

.product-card-flexao .product-card-media img {
  max-width: 61%;
  max-height: 350px;
}

.product-card-crampao .product-card-media img {
  max-width: 92%;
}

.product-card-copy {
  padding: 2rem;
  border-top: 1px solid var(--line);
}

.product-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.product-card p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  gap: 0.5rem;
  margin-top: 1.35rem;
  color: var(--emerald-deep);
  font-weight: 800;
}

.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.philosophy-grid,
.quality-grid,
.contact-grid,
.story-grid {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.principles {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.principle {
  display: grid;
  gap: 1rem;
  padding-block: 1.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  grid-template-columns: 2.3rem 1fr;
}

.principle span {
  color: #d5b265;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.principle strong {
  display: block;
  margin-bottom: 0.3rem;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.principle p {
  color: #cbd8d4;
}

.quote-panel {
  display: grid;
  min-height: 460px;
  align-content: space-between;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(213, 178, 101, 0.55);
  border-radius: var(--radius);
}

.quote-panel h2 {
  color: white;
}

.quote-panel p:last-child {
  color: #d5b265;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cta-band {
  padding-block: 2.8rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band h2 {
  max-width: 44rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 10vw, 8rem);
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}

.page-hero::after {
  position: absolute;
  top: -8rem;
  right: -6rem;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgba(184, 135, 40, 0.35);
  border-radius: 50%;
  content: "";
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.6fr);
}

.page-hero .lead {
  align-self: end;
}

.story-copy p + p,
.quality-copy p + p {
  margin-top: 1.2rem;
}

.story-mark {
  position: relative;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.story-mark::before,
.story-mark::after {
  position: absolute;
  border: 1px solid var(--gold);
  content: "";
  inset: 12%;
  transform: rotate(30deg);
}

.story-mark::after {
  transform: rotate(-30deg);
}

.story-mark span {
  position: absolute;
  inset: auto 2rem 2rem;
  color: var(--emerald-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 4vw, 3.3rem);
  line-height: 1.1;
}

.value-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-card,
.quality-card {
  padding: 1.8rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: white;
}

.value-card span,
.quality-card span {
  display: inline-grid;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.5rem;
  place-items: center;
  border: 1px solid rgba(184, 135, 40, 0.6);
  border-radius: 50%;
  color: var(--gold-deep);
  font-family: Georgia, "Times New Roman", serif;
}

.value-card h3,
.quality-card h3 {
  margin-bottom: 0.75rem;
}

.value-card p,
.quality-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.product-detail {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  grid-template-columns: minmax(330px, 0.85fr) minmax(0, 1.15fr);
}

.product-detail + .product-detail {
  margin-top: 2rem;
}

.product-detail-media {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
  overflow: hidden;
  background: var(--mist);
}

.product-detail-media::after {
  position: absolute;
  top: -8%;
  right: -22%;
  width: 92%;
  aspect-ratio: 1;
  border: 1px solid rgba(184, 135, 40, 0.3);
  border-radius: 50%;
  content: "";
}

.product-detail-media::before {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  height: 1px;
  background: rgba(184, 135, 40, 0.34);
  content: "";
}

.product-detail-flexao .product-detail-media {
  background:
    radial-gradient(circle at 76% 46%, rgba(198, 144, 34, 0.19), transparent 31%),
    linear-gradient(155deg, #ffffff 0%, #f4efe4 100%);
}

.product-detail-crampao .product-detail-media {
  background:
    radial-gradient(circle at 45% 36%, rgba(114, 75, 171, 0.6), transparent 38%),
    linear-gradient(155deg, #100b24 0%, #2d1658 60%, #6f0e29 100%);
}

.product-detail-crampao .product-detail-media::after {
  border-color: rgba(213, 178, 101, 0.42);
}

.product-detail-crampao .product-detail-media::before {
  background: rgba(213, 178, 101, 0.4);
}

.product-detail-code {
  position: absolute;
  z-index: 2;
  top: 2rem;
  left: 2rem;
  color: var(--gold-deep);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.product-detail-crampao .product-detail-code {
  color: #ead39c;
}

.product-detail-media img {
  position: relative;
  z-index: 1;
  max-width: 90%;
  max-height: 570px;
  object-fit: contain;
}

.product-detail-flexao .product-detail-media img {
  max-width: 72%;
}

.product-detail-crampao .product-detail-media img {
  max-width: 96%;
}

.product-detail-copy {
  padding: clamp(2rem, 5vw, 4rem);
}

.product-detail-copy h2 {
  margin-bottom: 0.65rem;
}

.product-subtitle {
  color: var(--gold-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.product-description {
  margin-top: 1.5rem;
  color: var(--muted);
}

.ingredient-list,
.benefit-list,
.plain-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.ingredient-list li,
.benefit-list li,
.plain-list li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.4rem;
  border-bottom: 1px solid var(--line);
}

.ingredient-list li::before,
.benefit-list li::before,
.plain-list li::before {
  position: absolute;
  top: 1.15rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border: 1px solid var(--gold);
  content: "";
  transform: rotate(45deg);
}

.detail-columns {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-columns h3 {
  margin-top: 2rem;
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-note {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  counter-reset: process;
  list-style: none;
}

.process-list li {
  display: grid;
  gap: 1.4rem;
  padding-block: 1.6rem;
  border-bottom: 1px solid var(--line);
  counter-increment: process;
  grid-template-columns: 3rem 1fr;
}

.process-list li::before {
  color: var(--gold-deep);
  content: "0" counter(process);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.process-list strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--emerald-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.process-list p {
  color: var(--muted);
}

.quality-badges {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.quality-badge {
  min-height: 150px;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: white;
}

.quality-badge strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--emerald-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-weight: 500;
}

.quality-badge span {
  color: var(--muted);
  font-size: 0.88rem;
}

.notice {
  padding: 1.2rem 1.3rem;
  border-left: 3px solid var(--gold);
  background: #f9f7f1;
  color: #4e5f5b;
  font-size: 0.92rem;
}

.contact-card {
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.contact-card h2 {
  margin-bottom: 1rem;
}

.contact-card > p {
  color: var(--muted);
}

.contact-methods {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.contact-method {
  display: grid;
  gap: 1.5rem;
  padding-block: 1.35rem;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 7rem 1fr;
}

.contact-method span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-method a {
  color: var(--emerald-deep);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-panel {
  display: grid;
  min-height: 100%;
  align-content: space-between;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: var(--radius);
  background: var(--emerald-deep);
  color: white;
}

.contact-panel h2 {
  color: white;
}

.contact-panel p {
  margin-top: 1rem;
  color: #cbd8d4;
}

.contact-panel .page-actions {
  margin-top: 3rem;
}

.site-footer {
  padding-block: 4rem 2rem;
  background: #052d29;
  color: white;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
}

.footer-brand {
  max-width: 31rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.15rem;
}

.footer-mark {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  color: #d5b265;
}

.footer-wordmark {
  font-family: Baskerville, "Palatino Linotype", Georgia, serif;
  font-size: 1.65rem;
  letter-spacing: 0.18em;
  line-height: 1;
}

.footer-wordmark span {
  color: #d5b265;
}

.footer-tagline {
  margin-top: 0.45rem;
  color: #adc0ba;
  font-size: 0.47rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.5;
}

.footer-brand p,
.footer-column a,
.footer-column p {
  color: #bbcbc6;
  font-size: 0.92rem;
}

.footer-column strong {
  display: block;
  margin-bottom: 1rem;
  color: #d5b265;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin-bottom: 0.7rem;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
  max-width: 54rem;
  color: #92aaa4;
  font-size: 0.77rem;
}

.footer-bottom small {
  color: #92aaa4;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .hero {
    background: #fff;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 94px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-content: start;
    align-items: stretch;
    padding: 2rem 1.25rem;
    background: white;
    flex-direction: column;
    gap: 0;
  }

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

  .site-nav a {
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

  .site-nav .button {
    margin-top: 1.3rem;
    border-bottom: 0;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 2.5rem;
  }

  .hero-copy {
    max-width: 48rem;
  }

  .hero-visual {
    min-height: 600px;
  }

  .page-hero-inner,
  .story-grid,
  .quality-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .page-hero .lead {
    max-width: 44rem;
  }

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

  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-detail-media {
    min-height: 520px;
  }

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

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

@media (max-width: 720px) {
  :root {
    --container: min(100% - 1.5rem, 1180px);
  }

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

  .brand-link {
    gap: 0.65rem;
    min-width: 0;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .brand-wordmark {
    font-size: 1.45rem;
    letter-spacing: 0.17em;
  }

  .brand-tagline {
    margin-top: 0.38rem;
    font-size: 0.38rem;
    letter-spacing: 0.12em;
  }

  .site-nav {
    top: 82px;
  }

  .hero-grid {
    gap: 1.5rem;
    padding-block: 2.75rem 3rem;
  }

  .hero-visual {
    min-height: 470px;
  }

  .pack-stage {
    border-radius: 1.5rem;
  }

  .pack-flexao {
    right: -1%;
    width: auto;
    height: 88%;
    max-height: none;
  }

  .pack-crampao {
    bottom: 2.4rem;
    left: -9%;
    width: 70%;
  }

  .stage-heading {
    top: 1.4rem;
    left: 1.35rem;
  }

  .stage-heading strong {
    font-size: 1.05rem;
  }

  .stage-heading span {
    font-size: 0.58rem;
  }

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

  .trust-item + .trust-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section-heading,
  .cta-band-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading {
    display: flex;
  }

  .product-grid,
  .philosophy-grid,
  .detail-columns,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .value-grid,
  .quality-badges {
    grid-template-columns: 1fr;
  }

  .product-detail-media {
    min-height: 430px;
  }

  .product-card-media img {
    max-height: 290px;
  }

  .product-card-media {
    min-height: 330px;
  }

  .product-card-flexao .product-card-media img {
    max-height: 315px;
  }

  .contact-method {
    gap: 0.35rem;
    grid-template-columns: 1fr;
  }

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

  .footer-bottom small {
    white-space: normal;
  }
}

@media (max-width: 420px) {
  .header-inner {
    gap: 0.5rem;
  }

  .brand-link {
    gap: 0.5rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-wordmark {
    font-size: 1.18rem;
  }

  .brand-tagline {
    display: none;
  }

  .hero-visual {
    min-height: 390px;
  }

  .stage-heading {
    max-width: 11rem;
  }

  .stage-heading strong {
    font-size: 0.95rem;
  }

  .pack-crampao {
    bottom: 2.1rem;
    width: 73%;
  }

  .pack-flexao {
    width: auto;
    height: 86%;
  }
}

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