.hero {
  min-height: auto;
  padding: 132px 0 20px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  grid-template-rows: auto auto;
  align-items: start;
  gap: 32px;
  position: relative;
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
}

.hero-stage {
  grid-column: 2;
  grid-row: 1;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(12px);
}

.hero::before {
  width: 360px;
  height: 360px;
  left: -120px;
  top: 110px;
  border: 1px solid rgba(164, 128, 92, 0.16);
  background: radial-gradient(circle at center, rgba(181, 138, 95, 0.08), transparent 68%);
}

.hero::after {
  width: 280px;
  height: 280px;
  right: -40px;
  bottom: 60px;
  background: radial-gradient(circle at center, rgba(51, 71, 52, 0.12), transparent 72%);
}

.hero-copy {
  display: grid;
  gap: 22px;
  align-content: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4.1rem, 7.6vw, 7rem);
  line-height: 0.88;
  letter-spacing: -0.05em;
  font-weight: 600;
  max-width: 8ch;
}

.hero-title em {
  color: var(--bronze);
  font-style: italic;
}

.hero-body {
  display: grid;
  gap: 18px;
  max-width: 60ch;
  color: var(--text-soft);
  line-height: 1.9;
}

.hero-editorial-note {
  width: min(380px, 100%);
  justify-self: center;
  display: grid;
  gap: 12px;
  padding: 18px 20px;
  margin-top: -14px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(51, 71, 52, 0.1);
  box-shadow: var(--shadow-md);
}

.hero-editorial-note small {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze-soft);
}

.hero-editorial-note p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.42rem;
  line-height: 1.08;
  color: var(--text);
}

.hero-editorial-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-editorial-pills span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(51, 71, 52, 0.14);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(30, 55, 30, 0.68);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stage {
  position: relative;
  align-self: stretch;
  perspective: 1400px;
  display: grid;
  gap: 18px;
}

.hero-panel {
  position: relative;
  padding: 20px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #3d5c3f, var(--green));
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  overflow: hidden;
  display: grid;
  gap: 8px;
}

.hero-panel::before,
.signature-copy::before,
.signature-metrics::before,
.manifesto-quote::after,
.closing-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 34%);
}

.hero-panel-header {
  position: relative;
  z-index: 1;
}

.hero-panel-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.hero-panel-eyebrow-line {
  width: 28px;
  height: 1px;
  background: rgba(200, 151, 58, 0.7);
  flex-shrink: 0;
}

.hero-panel-section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200, 151, 58, 0.35), transparent);
  margin-bottom: 0;
}

.hero-panel-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(248, 241, 231, 0.85);
}

.hero-panel-header p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.22rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(245, 237, 216, 0.78);
}

.hero-essence-card {
  display: grid;
  gap: 10px;
}

.hero-essence-icon {
  display: block;
  font-size: 1.4rem;
  line-height: 1;
  color: #C8973A;
}

.hero-essence-divider {
  display: block;
  height: 1px;
  width: 40px;
  background: linear-gradient(90deg, rgba(196, 132, 74, 0.8), rgba(196, 132, 74, 0.15));
  margin: 4px 0 8px;
}

.hero-essence-title {
  font-family: "Playfair Display", "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-inverse);
  text-transform: uppercase;
}

.hero-essence-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(245, 237, 216, 0.78);
}

.hero-values-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(200, 151, 58, 0.25);
  padding-top: 24px;
}

.hero-value-card {
  display: grid;
  gap: 8px;
  padding: 0 18px;
}

.hero-value-card:first-child {
  border-right: 1px solid rgba(200, 151, 58, 0.25);
  padding-left: 0;
}

.hero-value-card:last-child {
  padding-right: 0;
}

.hero-value-icon {
  width: 24px;
  height: 24px;
  display: block;
  color: var(--bronze-soft);
}

.hero-value-icon svg {
  width: 100%;
  height: 100%;
}

.hero-value-card h4 {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248, 241, 231, 0.9);
  font-weight: 600;
}

.hero-value-card p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(245, 237, 216, 0.55);
}

.hero-panel-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(200, 151, 58, 0.2);
  text-align: center;
}

.hero-panel-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.45);
}

.hero-panel-socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 14px;
}

.hero-panel-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(230, 245, 230, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(230, 245, 230, 0.7);
  transition: all 0.3s ease;
}

.hero-panel-socials a:hover {
  color: var(--bronze-soft);
  border-color: rgba(196, 132, 74, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.hero-panel-socials svg {
  width: 16px;
  height: 16px;
}

.hero-panel-footer span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(248, 241, 231, 0.78);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.closing-points span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(204, 174, 136, 0.1);
  border: 1px solid rgba(204, 174, 136, 0.22);
  color: var(--bronze-soft);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.music-strip {
  padding: 52px 24px;
  border-top: 1px solid rgba(139, 90, 60, 0.1);
  border-bottom: 1px solid rgba(139, 90, 60, 0.1);
}

.music-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.music-strip-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(51, 37, 28, 0.45);
}

.button-playlist {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 28px 0 10px;
  min-height: 54px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(139, 90, 60, 0.18);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(20, 35, 20, 0.08);
}

.button-playlist:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(20, 35, 20, 0.14);
}

.playlist-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.playlist-icon svg {
  width: 36px;
  height: 36px;
  display: block;
}

.signature-strip {
  padding-bottom: 20px;
}

.signature-panel {
  padding: 20px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(43, 27, 20, 0.98), rgba(29, 19, 14, 0.98));
  color: var(--text-inverse);
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 1.08fr);
  gap: 22px;
}

.signature-copy,
.signature-metrics {
  border-radius: 22px;
  padding: 28px 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.signature-copy p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.86rem;
  line-height: 1.12;
  max-width: 24ch;
}

.signature-copy small {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.signature-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.signature-metrics article {
  display: grid;
  gap: 12px;
}

.signature-metrics strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  line-height: 1;
  color: var(--bronze-soft);
}

.signature-metrics span {
  color: var(--text-muted);
  line-height: 1.58;
  font-size: 0.98rem;
}

.essence,
.services-overview,
.essence-grid-section,
.collection,
.how-to,
.closing-banner,
.final-story {
  padding-bottom: 72px;
}

.product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 44px;
  padding: 6px;
  background: rgba(51, 37, 28, 0.06);
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
}

.tab-btn {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(139, 90, 60, 0.52);
  background: transparent;
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.tab-btn:hover {
  color: var(--bronze);
  background: rgba(139, 90, 60, 0.08);
}

.tab-btn.is-active {
  background: linear-gradient(135deg, #4d6e4f, var(--green));
  color: var(--text-inverse);
  box-shadow: 0 8px 20px rgba(51, 71, 52, 0.3);
}


.product-showcase-section {
  padding-bottom: 72px;
}

.product-showcase-layout {
  display: block;
}

/* ESQUERDA — fundo creme */
.product-showcase-left {
  display: grid;
  gap: 20px;
  align-content: start;
}

.product-showcase-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.02;
  white-space: nowrap;
}

.product-showcase-deco-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-showcase-deco-line span:not(.product-showcase-deco-icon) {
  flex: 1;
  height: 1px;
  background: rgba(51, 71, 52, 0.28);
}

.product-showcase-deco-line--light span:not(.product-showcase-deco-icon) {
  background: rgba(255, 255, 255, 0.2);
}

.product-showcase-deco-icon {
  font-size: 1rem;
  color: var(--bronze);
  opacity: 0.7;
}

.product-showcase-deco-line--light .product-showcase-deco-icon {
  color: var(--bronze-soft);
}

.product-showcase-block {
  display: grid;
  gap: 10px;
}

.product-showcase-block p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.product-showcase-badge {
  display: inline-block;
  padding: 5px 13px;
  border-radius: 6px;
  background: var(--green);
  color: var(--text-inverse);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.product-showcase-list-intro {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.product-showcase-list {
  list-style: none;
  display: grid;
  gap: 5px;
}

.product-showcase-list li {
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--text-soft);
  padding-left: 14px;
  position: relative;
}

.product-showcase-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--bronze);
}

.product-showcase-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  line-height: 1.6;
  color: #b45309;
}

.product-showcase-note span {
  flex-shrink: 0;
  margin-top: 1px;
}

/* DIREITA — painel verde */
.product-showcase-panel {
  padding: 28px 48px 32px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(43, 60, 43, 0.98), rgba(20, 30, 20, 0.99));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 16px;
}

.product-showcase-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent 35%),
    radial-gradient(circle at 80% 110%, rgba(196, 132, 74, 0.07), transparent 50%);
}

.product-showcase-panel-head {
  text-align: center;
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 1;
  max-width: 56ch;
  margin: 0 auto;
}

.product-showcase-panel-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-inverse);
  line-height: 1.1;
}

.product-showcase-panel-sub {
  font-size: 0.84rem;
  line-height: 1.75;
  color: rgba(248, 241, 231, 0.52);
  max-width: 48ch;
  margin: 0 auto;
}

.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 16px;
  position: relative;
  z-index: 1;
  justify-items: center;
}

.product-showcase-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  cursor: default;
}

.product-showcase-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.product-showcase-item:hover .product-showcase-circle {
  transform: scale(1.06);
  border-color: rgba(196, 132, 74, 0.45);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45), 0 0 0 4px rgba(196, 132, 74, 0.08);
}

.product-showcase-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-showcase-item span {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: rgba(248, 241, 231, 0.78);
  max-width: 12ch;
  transition: color 0.3s ease;
}

.product-showcase-item:hover span {
  color: rgba(248, 241, 231, 0.98);
}

.showcase-features {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.showcase-features span {
  padding: 7px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248, 241, 231, 0.55);
  font-family: "Manrope", sans-serif;
}

.services-dark-panel {
  padding: 40px 44px 44px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(43, 60, 43, 0.98), rgba(25, 35, 25, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.services-dark-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 40%);
}

.services-panel-head {
  text-align: center;
  max-width: 58ch;
  margin: 0 auto 36px;
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.services-panel-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-inverse);
  line-height: 1.08;
}

.services-panel-subtitle {
  font-size: 0.92rem;
  line-height: 1.78;
  color: rgba(248, 241, 231, 0.62);
  max-width: 52ch;
  margin: 0 auto;
}

.services-panel-deco {
  display: block;
  font-size: 1.6rem;
  color: var(--bronze-soft);
  opacity: 0.65;
  margin-top: 4px;
}

.services-dark-panel .services-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.services-dark-panel .service-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  box-shadow: none;
}

.services-dark-panel .service-card:hover .service-card-media {
  background: rgba(255, 255, 255, 0.14);
  transition: background 0.25s ease;
}

.services-dark-panel .service-card-media {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.services-dark-panel .service-card-media svg {
  width: 100%;
  height: 100%;
  color: rgba(248, 241, 231, 0.88);
  stroke-width: 2;
}

.services-dark-panel .service-card-copy {
  display: grid;
  gap: 0;
}

.services-dark-panel .service-card-copy small {
  display: none;
}

.services-dark-panel .service-card h3 {
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(248, 241, 231, 0.88);
  line-height: 1.4;
}

.services-dark-panel .service-card p {
  display: none;
}

.essence-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 26px;
}

.essence .section-head-split {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  align-items: stretch;
}

.essence .section-side-note {
  align-self: center;
  margin: auto 0;
}

.editorial-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.98fr);
  align-items: stretch;
  gap: 20px;
  padding: 32px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.editorial-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.editorial-copy h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.editorial-copy p {
  color: var(--text-soft);
  line-height: 1.84;
}

.editorial-visual {
  position: relative;
  min-height: 460px;
  border-radius: 24px;
  overflow: hidden;
  align-self: stretch;
}

.editorial-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  transition: transform 0.55s ease;
}

.editorial-visual:hover img {
  transform: scale(1.03);
}

.collection-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1fr);
  gap: 22px;
  margin-bottom: 22px;
  padding: 22px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(51, 71, 52, 0.1);
  box-shadow: var(--shadow-md);
}

.collection-showcase-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 12px 10px 12px 6px;
}

.collection-showcase-copy small {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
}

.collection-showcase-copy h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.collection-showcase-copy p {
  line-height: 1.72;
  color: var(--text-soft);
}

.collection-showcase-media {
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(51, 71, 52, 0.1);
}

.collection-showcase-media img {
  width: calc(100% - 22px);
  height: calc(100% - 22px);
  object-fit: contain;
  border-radius: 18px;
}

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

.step-index {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
}

.closing-panel {
  padding: 34px;
  border-radius: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 28px;
  background: linear-gradient(145deg, rgba(51, 71, 52, 0.98), rgba(30, 41, 30, 0.98));
  color: var(--text-inverse);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.closing-copy {
  display: grid;
  align-content: start;
}

.closing-panel h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  max-width: 10ch;
  margin-bottom: 12px;
}

.closing-panel p {
  line-height: 1.84;
  color: var(--text-muted);
}

.closing-side {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: 32px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(204, 174, 136, 0.18);
  position: relative;
  overflow: hidden;
}

.closing-side::before {
  content: "♪";
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 7rem;
  color: rgba(204, 174, 136, 0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.closing-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.closing-side .button {
  justify-self: start;
}

.closing-side p {
  font-size: 0.96rem;
}

.final-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: stretch;
}

.manifesto-quote {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(51, 71, 52, 0.98), rgba(35, 48, 35, 0.98));
  color: var(--text-inverse);
  box-shadow: var(--shadow-lg);
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 34px;
  border-radius: 30px;
}

.manifesto-quote::before {
  content: "\266A";
  position: absolute;
  right: 28px;
  top: 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 12rem;
  color: rgba(248, 241, 231, 0.06);
}

.manifesto-quote small {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.manifesto-quote h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4.6vw, 4.4rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  max-width: 10ch;
}

.manifesto-quote p {
  max-width: 30ch;
  line-height: 1.8;
  color: var(--text-muted);
}

.manifesto-social {
  display: flex;
  gap: 12px;
}

.manifesto-social-link {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-muted);
  text-decoration: none;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.manifesto-social-link svg {
  width: 18px;
  height: 18px;
}

.manifesto-social-link:hover {
  background: rgba(204, 174, 136, 0.18);
  border-color: rgba(204, 174, 136, 0.3);
  color: var(--bronze-soft);
  transform: translateY(-2px);
}

.manifesto-founder-media {
  margin-top: 8px;
  border-radius: 26px;
  overflow: hidden;
  min-height: 380px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.final-story-stack {
  display: grid;
  gap: 22px;
}

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

.porque-card {
  border-radius: 20px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.83rem;
  line-height: 1.72;
  min-height: 220px;
}

.porque-card--dark {
  background: var(--green);
  color: var(--text-inverse);
  justify-content: flex-end;
}

.porque-card--dark strong {
  color: rgba(230, 245, 230, 0.92);
}

.porque-card--light {
  background: rgba(255, 250, 243, 0.72);
  border: 1px solid rgba(107, 77, 52, 0.12);
  color: var(--text-soft);
  justify-content: flex-start;
}

.porque-card--light strong {
  color: var(--text);
}

.porque-card--title {
  justify-content: center;
  gap: 16px;
  background: linear-gradient(145deg, #3d5c3f, var(--green));
}

.porque-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-soft);
  opacity: 0.85;
}

.porque-headline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-inverse);
}

.porque-headline em {
  color: var(--bronze-soft);
  font-style: italic;
}

.porque-subtitle {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  line-height: 1.5;
}

.porque-challenge {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-inverse);
}

.porque-quote {
  border-left: 2px solid rgba(196, 132, 74, 0.6);
  padding-left: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.porque-card--light .porque-quote {
  border-left-color: var(--bronze);
}

.porque-cite {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.45;
  font-weight: 500;
}

.porque-quote footer {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  opacity: 0.65;
}

.porque-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 4px 0;
}

.porque-closing {
  font-style: italic;
  opacity: 0.75;
  font-size: 0.8rem;
  margin-top: auto;
}
