@font-face {
  font-family: "Komet";
  src: url("Komet-Heavy.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --wine-950: #120716;
  --wine-900: #1c0a22;
  --wine-850: #251028;
  --wine-800: #301531;
  --wine-soft: rgba(255, 255, 255, 0.08);
  --cream-50: #fff8ef;
  --cream-100: #f8eddf;
  --hero-title-cream: #f4dfb8;
  --sand-200: #ecd8c3;
  --white-soft: #fffaf4;
  --text-dark: #211723;
  --text-muted: #715f68;
  --coral: #ff6c43;
  --orange: #f79345;
  --rose: #f64076;
  --magenta: #9b0463;
  --gold: #f9b23b;
  --border-coral: rgba(255, 108, 67, 0.34);
  --border-rose: rgba(246, 64, 118, 0.28);
  --shadow-soft: 0 22px 60px rgba(18, 7, 22, 0.16);
  --shadow-glow: 0 18px 44px rgba(246, 64, 118, 0.26);
  --font-body: "Manrope", Arial, sans-serif;
  --font-display: "Poppins", "Manrope", Arial, sans-serif;
  --font-hero: "Komet", "Poppins", "Manrope", Arial, sans-serif;
  --max: 1240px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --site-section-edge-space: 64px;
  --site-strip-edge-space: 20px;
}

@media (max-width: 760px) {
  :root {
    --site-section-edge-space: 48px;
    --site-strip-edge-space: 16px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  color: var(--text-dark);
  background:
    radial-gradient(circle at 100% 38%, rgba(28, 10, 34, 0.035), transparent 33rem),
    linear-gradient(180deg, #fffaf4 0%, var(--cream-50) 42%, var(--cream-100) 100%);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body::before {
  content: none;
}

body.menu-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  color: var(--wine-950);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.section-copy {
  margin: 18px 0 0;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    color 0.35s var(--ease),
    background-color 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

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

.btn-primary {
  color: var(--white-soft);
  background: linear-gradient(135deg, var(--coral), var(--rose));
  box-shadow: 0 14px 30px rgba(246, 64, 118, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 18px 38px rgba(246, 64, 118, 0.36);
}

.btn-outline {
  color: var(--wine-900);
  border-color: rgba(28, 10, 34, 0.18);
  background: rgba(255, 250, 244, 0.72);
}

.btn-outline:hover {
  border-color: var(--coral);
  background: var(--white-soft);
}

.btn-ghost {
  min-height: 44px;
  padding-inline: 18px;
  color: var(--white-soft);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.btn svg {
  width: 18px;
  height: 18px;
  margin-left: 9px;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}

.reveal-enabled .reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* HEADER E NAVEGAÇÃO */
.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white-soft);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(18, 7, 22, 0.68), transparent);
  transition:
    background-color 0.35s var(--ease),
    border-color 0.35s var(--ease),
    backdrop-filter 0.35s var(--ease);
}

.site-header.is-scrolled,
.inner-page .site-header {
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(18, 7, 22, 0.92);
  box-shadow: 0 12px 36px rgba(18, 7, 22, 0.14);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand-logo {
  width: clamp(172px, 14vw, 218px);
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 31px);
  margin-left: auto;
}

.main-nav a {
  position: relative;
  padding: 31px 0 28px;
  color: rgba(255, 250, 244, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--coral), var(--rose));
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--white-soft);
}

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

.nav-actions,
.socials {
  display: flex;
  align-items: center;
}

.nav-actions {
  gap: 13px;
}

.socials {
  gap: 7px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: rgba(255, 250, 244, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  transition:
    transform 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    background-color 0.3s var(--ease);
}

.social-link:hover {
  color: #fff;
  border-color: rgba(255, 108, 67, 0.7);
  background: rgba(255, 108, 67, 0.14);
  transform: translateY(-2px);
}

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

.header-cta {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 0.78rem;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white-soft);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
}

.mobile-panel {
  display: none;
}

/* FOOTER */
.site-footer {
  padding: 72px 0 28px;
  color: rgba(255, 250, 244, 0.75);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--wine-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.15fr) repeat(4, 1fr);
  gap: 38px;
}

.footer-brand p {
  max-width: 250px;
  margin: 18px 0 22px;
  color: rgba(255, 250, 244, 0.72);
  line-height: 1.6;
}

.site-footer .brand-logo {
  width: 210px;
}

.footer-col h2,
.footer-col h3 {
  margin: 0 0 17px;
  color: var(--cream-50);
  font-family: var(--font-display);
  font-size: 0.96rem;
}

.footer-col ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col a,
.footer-col li {
  color: rgba(255, 250, 244, 0.66);
  font-size: 0.86rem;
  line-height: 1.45;
}

.footer-col a {
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-col a:hover {
  display: inline-block;
  color: var(--coral);
  transform: translateX(3px);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact svg {
  flex: none;
  width: 17px;
  height: 17px;
  margin-top: 1px;
  color: var(--coral);
}

/* FAIXA LEGAL DO FOOTER */
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 32px;
  margin-top: 38px;
  padding: 18px 0;
  color: rgba(255, 250, 244, 0.68);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.82rem;
  line-height: 1.5;
}

.footer-legal p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.footer-legal strong {
  color: rgba(255, 250, 244, 0.9);
}

.footer-legal a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cream-50);
  font-weight: 800;
  text-underline-offset: 4px;
}

.footer-legal a:hover {
  color: var(--coral);
}

.footer-legal a:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 4px;
  border-radius: 6px;
}

.footer-legal svg {
  width: 14px;
  height: 14px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  column-gap: 16px;
  row-gap: 5px;
  margin-top: 22px;
  color: rgba(255, 250, 244, 0.48);
  font-size: 0.78rem;
}

/* BLOG */
.blog-main {
  min-height: 70vh;
  padding: 138px 0 96px;
}

.article-main {
  min-height: 70vh;
  padding: 132px 0 96px;
}

.blog-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 250px;
  max-width: none;
  padding: 34px 310px 42px 0;
  border-bottom: 1px solid rgba(28, 10, 34, 0.11);
}

.blog-hero::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 58px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coral), var(--rose));
  content: "";
}

.blog-hero::after {
  position: absolute;
  top: 4px;
  right: 30px;
  width: 214px;
  height: 214px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  outline: 1px solid rgba(155, 4, 99, 0.18);
  outline-offset: 11px;
  background:
    linear-gradient(180deg, transparent 0 51%, rgba(255, 250, 244, 0.14) 51% 52%, transparent 52%),
    radial-gradient(circle at 50% 47%, #ff9c55 0 18%, transparent 18.5%),
    repeating-linear-gradient(180deg, transparent 0 15px, rgba(246, 64, 118, 0.12) 15px 17px),
    linear-gradient(145deg, var(--wine-800), var(--wine-950));
  box-shadow: 0 22px 46px rgba(28, 10, 34, 0.18);
  content: "";
}

.blog-hero h1 {
  max-width: 680px;
  margin: 0;
  color: var(--wine-950);
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.25vw, 3.7rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.blog-hero .section-copy {
  max-width: 58ch;
  margin-top: 18px;
  font-size: 1rem;
  line-height: 1.68;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 38px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(155, 4, 99, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 244, 0.94);
  box-shadow: 0 16px 42px rgba(49, 21, 49, 0.09);
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.45s var(--ease);
}

.blog-card:hover {
  border-color: rgba(246, 64, 118, 0.48);
  box-shadow: var(--shadow-soft);
  transform: translateY(-6px);
}

.blog-card:only-child {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
}

.blog-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--wine-850);
}

.blog-card:only-child .blog-card-image {
  min-height: 310px;
  aspect-ratio: auto;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

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

.blog-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
}

.blog-card:only-child .blog-card-content {
  justify-content: center;
  padding: clamp(30px, 4vw, 52px);
}

.blog-category {
  margin: 0 0 13px;
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.blog-card h2 {
  margin: 0;
  color: var(--wine-950);
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 2vw, 1.48rem);
  line-height: 1.24;
  letter-spacing: -0.035em;
}

.blog-card:only-child h2 {
  max-width: 25ch;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.2;
}

.blog-card p {
  margin: 14px 0 22px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.68;
}

.blog-card:only-child p {
  max-width: 59ch;
}

.read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--magenta);
  font-size: 0.84rem;
  font-weight: 800;
}

.read-link svg {
  width: 17px;
  height: 17px;
  transition: transform 0.3s var(--ease);
}

.read-link:hover svg {
  transform: translateX(4px);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 920px;
  margin: 0 auto 24px;
  padding: 0;
  color: var(--text-muted);
  font-size: 0.79rem;
  list-style: none;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  margin: 0 9px;
  color: rgba(113, 95, 104, 0.5);
  content: "/";
}

.breadcrumb a:hover {
  color: var(--magenta);
}

.article-header {
  max-width: 920px;
  margin-inline: auto;
}

.article-header .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 16px;
  padding: 0 11px;
  border: 1px solid rgba(255, 108, 67, 0.2);
  border-radius: 999px;
  background: rgba(255, 108, 67, 0.07);
  font-size: 0.7rem;
}

.article-header h1 {
  max-width: 29ch;
  margin: 0;
  color: var(--wine-950);
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 4vw, 3.35rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.article-meta span + span::before {
  margin-right: 10px;
  color: var(--coral);
  content: "·";
}

.article-cover {
  max-width: 900px;
  margin: 34px auto 48px;
}

.article-cover img {
  width: 100%;
  max-height: 410px;
  aspect-ratio: 2.05 / 1;
  object-fit: cover;
  object-position: center 52%;
  border: 1px solid rgba(155, 4, 99, 0.17);
  border-radius: 22px;
  box-shadow: 0 20px 48px rgba(28, 10, 34, 0.13);
}

.article-cover figcaption {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-align: center;
}

.article-body {
  max-width: 68ch;
  margin-inline: auto;
  color: #3a2d37;
  font-size: 1rem;
  line-height: 1.82;
}

.article-body > p:first-child {
  color: var(--wine-850);
  font-size: 1.1rem;
  line-height: 1.76;
}

.article-body h2,
.article-body h3 {
  color: var(--wine-950);
  font-family: var(--font-display);
  letter-spacing: -0.035em;
}

.article-body h2 {
  position: relative;
  margin: 2.3em 0 0.7em;
  padding-left: 18px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.18;
}

.article-body h2::before {
  position: absolute;
  top: 0.12em;
  bottom: 0.12em;
  left: 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--coral), var(--rose));
  content: "";
}

.article-body h3 {
  margin: 2em 0 0.65em;
  font-size: 1.28rem;
  line-height: 1.3;
}

.article-body p {
  margin: 0 0 1.35em;
}

.article-body ul,
.article-body ol {
  margin: 0 0 1.5em;
  padding-left: 1.35em;
}

.article-body li {
  margin-bottom: 0.65em;
  padding-left: 0.32em;
}

.article-body li::marker {
  color: var(--coral);
  font-weight: 800;
}

.article-body blockquote {
  position: relative;
  margin: 2.1em 0;
  padding: 1.25em 1.45em 1.25em 1.65em;
  color: var(--wine-900);
  border-left: 4px solid var(--coral);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: linear-gradient(110deg, rgba(255, 108, 67, 0.1), rgba(246, 64, 118, 0.045));
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 600;
  line-height: 1.6;
}

.article-body a {
  color: var(--magenta);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(155, 4, 99, 0.34);
  text-underline-offset: 3px;
}

.article-cta {
  position: relative;
  max-width: 70ch;
  margin: 58px auto 0;
  padding: clamp(28px, 5vw, 46px);
  overflow: hidden;
  color: var(--cream-50);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0, rgba(246, 64, 118, 0.3), transparent 38%),
    var(--wine-900);
  box-shadow: 0 24px 54px rgba(28, 10, 34, 0.22);
}

.article-cta h2 {
  max-width: 19ch;
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.article-cta p {
  max-width: 55ch;
  margin: -8px 0 22px;
  color: rgba(255, 250, 244, 0.72);
  line-height: 1.65;
}

.read-more {
  max-width: 70ch;
  margin: 58px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(28, 10, 34, 0.12);
}

.read-more h2 {
  margin: 0 0 16px;
  color: var(--wine-950);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

@media (max-width: 1180px) {
  .nav-actions > .socials {
    display: none;
  }

  .footer-grid {
    grid-template-columns: minmax(220px, 1.15fr) repeat(2, 1fr);
  }

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

@media (max-width: 980px) {
  .container {
    width: auto;
    margin-inline: 16px;
  }

  .nav-shell {
    min-height: 76px;
  }

  .brand-logo {
    width: 190px;
  }

  .main-nav,
  .nav-actions > .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-panel {
    position: fixed;
    z-index: 49;
    top: 76px;
    right: 16px;
    left: 16px;
    display: block;
    max-height: calc(100svh - 96px);
    padding: 22px;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: rgba(18, 7, 22, 0.96);
    box-shadow: 0 28px 64px rgba(18, 7, 22, 0.38);
    opacity: 0;
    transform: translateY(-18px);
    pointer-events: none;
    backdrop-filter: blur(20px);
    transition:
      opacity 0.35s var(--ease),
      transform 0.35s var(--ease);
  }

  .mobile-panel.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-panel nav {
    display: grid;
    gap: 4px;
  }

  .mobile-panel nav a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 8px;
    color: var(--cream-50);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 700;
  }

  .mobile-actions {
    display: grid;
    gap: 16px;
    margin-top: 18px;
  }

  .mobile-panel .socials {
    display: flex;
    justify-content: center;
  }

  .mobile-panel .btn {
    width: 100%;
  }

  .blog-main,
  .article-main {
    padding-top: 120px;
  }

  .blog-hero {
    min-height: 220px;
    padding: 30px 230px 36px 0;
  }

  .blog-hero::after {
    top: 12px;
    right: 24px;
    width: 164px;
    height: 164px;
  }

  .article-header,
  .breadcrumb {
    max-width: 820px;
  }
}

@media (max-width: 760px) {
  .blog-main,
  .article-main {
    padding: 108px 0 72px;
  }

  .blog-hero {
    display: block;
    min-height: 0;
    padding: 26px 0 32px;
  }

  .blog-hero::after {
    display: none;
  }

  .blog-hero h1 {
    max-width: 16ch;
    font-size: clamp(2rem, 9.4vw, 3rem);
  }

  .blog-hero .section-copy {
    margin-top: 16px;
  }

  .blog-list {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .blog-card:only-child {
    grid-template-columns: 1fr;
  }

  .blog-card:only-child .blog-card-image {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .blog-card-content {
    padding: 22px;
  }

  .blog-card:only-child .blog-card-content {
    padding: 24px;
  }

  .article-cover {
    margin: 28px auto 38px;
  }

  .article-cover img {
    max-height: none;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
  }

  .article-body {
    font-size: 0.98rem;
    line-height: 1.78;
  }

  .article-body blockquote {
    margin-inline: 0;
    padding: 1.1em 1.15em 1.1em 1.35em;
  }

  .article-cta .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
  }

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

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

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

@media (max-width: 460px) {
  .container {
    margin-inline: 12px;
  }

  .brand-logo {
    width: 166px;
  }

  .mobile-panel {
    right: 12px;
    left: 12px;
  }

  .blog-hero h1 {
    font-size: clamp(1.95rem, 10.5vw, 2.6rem);
  }

  .article-header h1 {
    font-size: clamp(1.85rem, 9.2vw, 2.45rem);
    line-height: 1.1;
  }

  .article-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .article-meta span + span::before {
    display: none;
  }

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

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* BLOG INDEX — composição editorial escopada */
.blog-main.blog-index {
  min-height: 70vh;
  padding: 0;
  background: linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 100%);
}

.blog-index .blog-hero {
  position: relative;
  display: flex;
  min-height: clamp(380px, 42vw, 430px);
  max-width: none;
  padding: 0;
  overflow: hidden;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
  color: var(--white-soft);
  border: 0;
  background-image:
    linear-gradient(90deg, rgba(18, 7, 22, 0.48) 0%, rgba(28, 10, 34, 0.24) 42%, rgba(18, 7, 22, 0.03) 72%),
    linear-gradient(180deg, rgba(18, 7, 22, 0.08), rgba(18, 7, 22, 0.18)),
    url("blog-hero-por-do-sol.png");
  background-position: center;
  background-size: cover;
}

.blog-index .blog-hero::before {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: linear-gradient(115deg, rgba(155, 4, 99, 0.12), transparent 46%);
  content: "";
  pointer-events: none;
}

.blog-index .blog-hero::after {
  content: none;
}

.blog-index .blog-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 118px;
  padding-bottom: 48px;
}

.blog-index .blog-hero .eyebrow {
  margin-bottom: 15px;
  color: #f5b762;
  text-shadow: 0 1px 18px rgba(18, 7, 22, 0.24);
}

.blog-index .blog-hero h1 {
  max-width: 620px;
  margin: 0;
  color: var(--hero-title-cream);
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 5vw, 4.35rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(18, 7, 22, 0.26);
}

.blog-index .blog-hero .section-copy {
  max-width: 570px;
  margin-top: 17px;
  color: rgba(255, 250, 244, 0.84);
  font-size: clamp(0.96rem, 1.2vw, 1.06rem);
  line-height: 1.62;
  text-shadow: 0 1px 16px rgba(18, 7, 22, 0.3);
}

.blog-index .blog-list-shell {
  padding: 28px 0 78px;
  background:
    radial-gradient(circle at 82% 7%, rgba(255, 108, 67, 0.08), transparent 25%),
    linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 100%);
}

.blog-index .blog-list {
  display: grid;
  width: min(100%, 940px);
  margin: 0 auto;
  grid-template-columns: 1fr;
  gap: 15px;
}

.blog-index .blog-card,
.blog-index .blog-card:only-child {
  display: grid;
  min-width: 0;
  min-height: 182px;
  overflow: hidden;
  grid-column: auto;
  grid-template-columns: minmax(280px, 42%) minmax(0, 1fr);
  border: 1px solid rgba(48, 21, 49, 0.1);
  border-radius: 15px;
  background: rgba(255, 250, 244, 0.92);
  box-shadow: 0 12px 30px rgba(18, 7, 22, 0.09);
  transition:
    transform 260ms var(--ease),
    box-shadow 260ms var(--ease),
    border-color 260ms ease;
}

.blog-index .blog-card:hover {
  border-color: rgba(155, 4, 99, 0.22);
  box-shadow: 0 18px 42px rgba(18, 7, 22, 0.13);
  transform: translateY(-4px);
}

.blog-index .blog-card-image,
.blog-index .blog-card:only-child .blog-card-image {
  position: relative;
  display: block;
  min-height: 182px;
  overflow: hidden;
  aspect-ratio: auto;
  background: var(--wine-850);
}

.blog-index .blog-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  transition:
    transform 420ms var(--ease),
    filter 420ms ease;
}

.blog-index .blog-card:hover .blog-card-image img {
  filter: saturate(1.06);
  transform: scale(1.035);
}

.blog-index .blog-card-content,
.blog-index .blog-card:only-child .blog-card-content {
  display: flex;
  min-width: 0;
  padding: 20px 28px 19px 30px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.blog-index .blog-category {
  margin: 0 0 8px;
  color: var(--magenta);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-index .blog-card h2,
.blog-index .blog-card:only-child h2 {
  max-width: none;
  margin: 0;
  color: var(--wine-950);
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.75vw, 1.36rem);
  font-weight: 700;
  line-height: 1.21;
  letter-spacing: -0.03em;
}

.blog-index .blog-card h2 a {
  color: inherit;
}

.blog-index .blog-card-content > p:not(.blog-category),
.blog-index .blog-card:only-child .blog-card-content > p:not(.blog-category) {
  max-width: none;
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.48;
}

.blog-index .read-link {
  gap: 7px;
  width: max-content;
  margin-top: 11px;
  color: var(--magenta);
  font-size: 0.8rem;
  font-weight: 800;
}

.blog-index .read-link svg,
.blog-index .read-link i {
  width: 15px;
  height: 15px;
  transition: transform 220ms var(--ease);
}

.blog-index .read-link:hover svg,
.blog-index .read-link:hover i {
  transform: translateX(4px);
}

.blog-index + .site-footer {
  margin-top: 0;
}

@media (max-width: 980px) {
  .blog-index .blog-hero {
    min-height: 410px;
    background-position: 58% center;
  }

  .blog-index .blog-hero-inner {
    padding-top: 112px;
    padding-bottom: 50px;
  }
}

@media (max-width: 820px) {
  .blog-index .blog-list {
    min-width: 0;
    width: 100%;
  }

  .blog-index .blog-card,
  .blog-index .blog-card:only-child {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .blog-index .blog-card-image,
  .blog-index .blog-card:only-child .blog-card-image {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .blog-index .blog-card-image img {
    position: static;
    inset: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .blog-index .blog-card-content,
  .blog-index .blog-card:only-child .blog-card-content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 21px 22px 22px;
    overflow: hidden;
  }

  .blog-index .blog-card h2,
  .blog-index .blog-card:only-child h2 {
    font-size: clamp(1.16rem, 4.2vw, 1.42rem);
    overflow-wrap: anywhere;
  }

  .blog-index .blog-card-content > p:not(.blog-category),
  .blog-index .blog-card:only-child .blog-card-content > p:not(.blog-category) {
    font-size: 0.88rem;
  }
}

@media (max-width: 620px) {
  .blog-index > .blog-list-shell > .container,
  .blog-index > .blog-hero > .container {
    width: calc(100% - 24px);
    margin-inline: auto;
  }

  .blog-index .blog-hero {
    min-height: 420px;
    background-image:
      linear-gradient(90deg, rgba(18, 7, 22, 0.86), rgba(18, 7, 22, 0.34)),
      linear-gradient(180deg, rgba(18, 7, 22, 0.12), rgba(18, 7, 22, 0.28)),
      url("blog-hero-por-do-sol.png");
    background-position: 57% center;
  }

  .blog-index .blog-hero-inner {
    padding-top: 108px;
    padding-bottom: 42px;
  }

  .blog-index .blog-hero h1 {
    max-width: 12ch;
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .blog-index .blog-hero .section-copy {
    max-width: 35ch;
    font-size: 0.93rem;
    line-height: 1.58;
  }

  .blog-index .blog-list-shell {
    padding-top: 20px;
    padding-bottom: 58px;
  }
}

/* SOBRE — narrativa editorial da marca */
.about-main {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 11%, rgba(246, 64, 118, 0.075), transparent 23rem),
    linear-gradient(180deg, var(--cream-50), #fffaf4 42%, var(--cream-100));
}

.about-section {
  position: relative;
  padding: clamp(74px, 9vw, 132px) 0;
}

.about-section-head {
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 56px);
}

.about-section-head .section-title {
  text-wrap: balance;
}

.about-section-head .section-copy {
  max-width: 66ch;
}

.about-page .site-header {
  border-color: transparent;
  background: linear-gradient(180deg, rgba(7, 3, 17, 0.74), transparent);
  box-shadow: none;
  backdrop-filter: none;
}

.about-page .site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(18, 7, 22, 0.94);
  box-shadow: 0 12px 36px rgba(18, 7, 22, 0.18);
  backdrop-filter: blur(18px);
}

.about-page .nav-shell {
  width: min(calc(100% - 64px), 1816px);
  min-height: 106px;
}

.about-page .brand-logo {
  width: clamp(218px, 15.4vw, 296px);
}

.about-page .main-nav {
  gap: clamp(18px, 3.05vw, 58px);
  margin-left: 60px;
  margin-right: auto;
}

.about-page .nav-actions {
  margin-right: 12px;
}

.about-page .main-nav a {
  padding-block: 41px 37px;
  font-size: clamp(0.82rem, 0.92vw, 1.06rem);
  font-weight: 500;
}

.about-page .main-nav a::after {
  bottom: 30px;
}

.about-page .social-link {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.018);
}

.about-page .header-cta {
  min-width: clamp(205px, 15.3vw, 294px);
  min-height: 60px;
  padding-inline: 28px;
  font-size: clamp(0.8rem, 0.94vw, 1.05rem);
  font-weight: 500;
}

.about-hero {
  position: relative;
  display: grid;
  min-height: 820px;
  padding: 132px 0 20px;
  overflow: hidden;
  align-items: center;
  color: var(--white-soft);
  background:
    radial-gradient(ellipse at 88% 104%, rgba(255, 76, 42, 0.76) 0%, rgba(214, 24, 66, 0.38) 24%, transparent 55%),
    radial-gradient(circle at 78% 40%, rgba(174, 10, 101, 0.22), transparent 28rem),
    radial-gradient(ellipse at 38% 108%, rgba(169, 27, 79, 0.34), transparent 46%),
    linear-gradient(109deg, #050412 0%, #0a0414 43%, #180619 72%, #320817 100%);
}

.about-hero::before,
.about-hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.about-hero::before {
  background: linear-gradient(90deg, rgba(3, 3, 16, 0.22), transparent 48%, rgba(18, 3, 20, 0.06));
}

.about-hero::after {
  top: auto;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(230, 40, 47, 0.14));
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(calc(100% - 96px), 1790px);
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 55px;
  align-items: start;
}

.about-hero-copy {
  max-width: 900px;
  margin-top: 64px;
  padding-bottom: 0;
}

.about-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  color: var(--coral);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.035em;
}

.about-hero-title {
  width: min(100%, 900px);
  max-width: 900px;
  margin: 0;
  color: var(--cream-50);
  font-family: var(--font-hero);
  font-size: clamp(2.5rem, 2.65vw, 3.2rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
  white-space: normal;
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
}

.about-title-line {
  display: block;
  white-space: nowrap;
}

.about-title-line--accent {
  color: transparent;
  background: linear-gradient(105deg, #ff6943 0%, var(--coral) 30%, var(--rose) 67%, #ee126a 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.about-hero .lead {
  max-width: 800px;
  margin: 26px 0 0;
  color: rgba(255, 250, 244, 0.82);
  font-size: clamp(1rem, 0.95vw, 1.12rem);
  line-height: 1.7;
  text-wrap: pretty;
}

.about-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.about-hero-actions .btn-primary {
  width: 445px;
  min-height: 60px;
  padding-inline: 29px;
  font-size: clamp(0.94rem, 1vw, 1.08rem);
  font-weight: 600;
  box-shadow: 0 18px 42px rgba(246, 64, 118, 0.3);
}

.about-hero-visual {
  position: relative;
  --about-interior-top: min(440px, 53cqw);
  --about-benefit-height: 320px;
  --about-benefit-min-top: 298px;
  --about-benefit-stagger: 50px;
  container-type: inline-size;
  min-width: 0;
  min-height: 680px;
  margin-top: -34px;
  isolation: isolate;
}

.about-route-card {
  position: absolute;
  z-index: 4;
  top: 95px;
  right: auto;
  left: min(61%, 630px);
  width: calc(100% - min(61%, 630px));
  height: 230px;
  overflow: visible;
  clip-path: inset(-80px -80px -80px 0);
  border: 0;
  background: none;
  box-shadow: none;
  pointer-events: none;
}

.about-route-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.about-route-path {
  fill: none;
  stroke: url(#aboutRouteGradient);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 4 8;
  opacity: 0.82;
  animation: aboutRouteDash 14s linear infinite;
}

.about-plane-mark {
  color: #ff6c43;
  fill: currentColor;
  filter: drop-shadow(0 7px 11px rgba(255, 108, 67, 0.28));
}

.about-stamp {
  position: absolute;
  z-index: 5;
  top: 18px;
  right: 0;
  display: block;
  width: 185px;
  height: 185px;
  opacity: 1;
  border: 0;
  box-shadow: none;
  clip-path: circle(44% at 50% 50%);
  background: radial-gradient(circle, rgba(27, 7, 29, 0.82) 0 58%, rgba(27, 7, 29, 0.28) 70%, transparent 72%);
  transform: rotate(-8deg);
  pointer-events: none;
  mix-blend-mode: normal;
}

.about-stamp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.29;
  filter: grayscale(1) invert(1) contrast(2.2);
  mix-blend-mode: screen;
}

.about-photo-card {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 108, 67, 0.55);
  border-radius: 30px;
  background: var(--wine-850);
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.34);
}

.about-photo-card::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(35, 7, 30, 0.04), rgba(44, 5, 27, 0.14));
}

.about-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-card--facade {
  z-index: 3;
  top: 28px;
  left: 0;
  width: 61%;
  max-width: 630px;
  height: auto;
  aspect-ratio: 1.035;
  border-radius: 30px;
}

.about-photo-card--facade img {
  object-position: center center;
  filter: saturate(1.08) contrast(1.04) brightness(0.82);
}

.about-photo-card--interior {
  z-index: 5;
  top: var(--about-interior-top);
  left: 29%;
  width: 32.5%;
  max-width: 335px;
  height: auto;
  aspect-ratio: 1.37;
  border-radius: 22px;
}

.about-photo-card--interior img {
  object-position: center center;
  filter: saturate(1.08) contrast(1.03) brightness(0.92);
}

.about-benefit-card {
  position: absolute;
  z-index: 6;
  top: auto;
  right: -0.7%;
  bottom: 80px;
  width: 35.5%;
  max-width: 365px;
  min-height: var(--about-benefit-height);
  padding: 14px 24px;
  border: 1px solid rgba(255, 108, 67, 0.62);
  border-radius: 31px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), transparent),
    rgba(12, 5, 24, 0.94);
  box-shadow: 0 27px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.about-benefit-card ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-benefit-card li {
  display: grid;
  min-height: 73px;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  color: rgba(255, 250, 244, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.about-benefit-card li:last-child {
  border-bottom: 0;
}

.about-benefit-card li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--coral);
  border: 1px solid var(--coral);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 108, 67, 0.17), transparent 56%),
    rgba(255, 108, 67, 0.025);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.025),
    0 10px 26px rgba(255, 80, 64, 0.08);
}

.about-benefit-card svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.55;
}

.about-benefit-card strong {
  color: var(--cream-50);
  font-size: clamp(0.82rem, 0.82vw, 0.94rem);
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
}

.about-benefit-card--mobile {
  display: none;
}

.about-carousel-dots {
  display: none;
}

@keyframes aboutRouteDash {
  to {
    stroke-dashoffset: -180;
  }
}

@media (max-width: 1500px) {
  .about-page .nav-shell {
    width: min(calc(100% - 40px), 1420px);
  }

  .about-page .brand-logo {
    width: clamp(202px, 14vw, 246px);
  }

  .about-page .main-nav {
    gap: clamp(15px, 1.65vw, 25px);
  }

  .about-page .header-cta {
    min-width: 200px;
    min-height: 52px;
    padding-inline: 22px;
  }

  .about-hero {
    padding-top: 148px;
  }

  .about-hero-inner {
    width: min(calc(100% - 64px), 1390px);
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 40px;
  }

  .about-hero-title {
    max-width: 100%;
    font-size: clamp(2.3rem, 2.65vw, 2.55rem);
  }

  .about-hero-visual {
    --about-benefit-height: 308px;
    --about-benefit-min-top: 260px;
    min-height: 620px;
    margin-top: -18px;
  }

  .about-route-card {
    top: 82px;
    left: 59%;
    width: 41%;
    height: 210px;
  }

  .about-photo-card--facade {
    width: 59%;
    height: auto;
  }

  .about-photo-card--interior {
    left: 27%;
    width: 32%;
    max-width: 310px;
    height: auto;
  }

  .about-benefit-card {
    top: max(
      var(--about-benefit-min-top),
      calc(var(--about-interior-top) + 23.72cqw - var(--about-benefit-height) - var(--about-benefit-stagger))
    );
    bottom: auto;
    width: 39%;
    max-width: 365px;
    min-height: var(--about-benefit-height);
    padding: 14px 22px;
  }

  .about-benefit-card li {
    min-height: 70px;
  }

  .about-benefit-card strong {
    white-space: normal;
  }

  .about-stamp {
    top: 24px;
    right: 0;
    width: 162px;
    height: 162px;
  }
}

@media (max-width: 1200px) {
  .about-page .nav-shell {
    min-height: 88px;
  }

  .about-page .main-nav a {
    padding-block: 33px 30px;
    font-size: 0.78rem;
  }

  .about-page .main-nav a::after {
    bottom: 23px;
  }

  .about-page .header-cta {
    min-width: auto;
    min-height: 46px;
    padding-inline: 17px;
    font-size: 0.75rem;
  }

  .about-hero .lead {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .about-hero-visual {
    --about-benefit-height: 292px;
    --about-benefit-min-top: 240px;
    --about-benefit-stagger: 40px;
    min-height: 580px;
  }

  .about-route-card {
    top: 76px;
    height: 200px;
  }

  .about-photo-card--facade {
    top: 24px;
    width: 58%;
    height: auto;
  }

  .about-photo-card--interior {
    left: 26%;
    width: 32%;
    height: auto;
  }

  .about-benefit-card {
    top: max(
      var(--about-benefit-min-top),
      calc(var(--about-interior-top) + 23.72cqw - var(--about-benefit-height) - var(--about-benefit-stagger))
    );
    bottom: auto;
    width: 41%;
    min-height: var(--about-benefit-height);
    padding: 14px 20px;
    border-radius: 26px;
  }

  .about-benefit-card li {
    min-height: 66px;
    grid-template-columns: 43px minmax(0, 1fr);
    gap: 12px;
  }

  .about-benefit-card li > span {
    width: 40px;
    height: 40px;
  }

  .about-benefit-card svg {
    width: 21px;
    height: 21px;
  }

  .about-stamp {
    top: 28px;
    right: 0;
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 1100px) {
  .about-page .nav-shell {
    min-height: 76px;
  }

  .about-page .brand-logo {
    width: 190px;
  }

  .about-page .main-nav,
  .about-page .nav-actions > .header-cta {
    display: none;
  }

  .about-page .nav-actions {
    margin-right: 0;
  }

  .about-page .menu-toggle {
    display: inline-flex;
  }

  .about-page .mobile-panel {
    position: fixed;
    z-index: 49;
    top: 76px;
    right: 16px;
    left: 16px;
    display: block;
    max-height: calc(100svh - 96px);
    padding: 22px;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: rgba(18, 7, 22, 0.96);
    box-shadow: 0 28px 64px rgba(18, 7, 22, 0.38);
    opacity: 0;
    transform: translateY(-18px);
    pointer-events: none;
    backdrop-filter: blur(20px);
    transition:
      opacity 0.35s var(--ease),
      transform 0.35s var(--ease);
  }

  .about-page .mobile-panel.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .about-page .mobile-panel nav {
    display: grid;
    gap: 4px;
  }

  .about-page .mobile-panel nav a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 8px;
    color: var(--cream-50);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 700;
  }

  .about-page .mobile-actions {
    display: grid;
    gap: 16px;
    margin-top: 18px;
  }

  .about-page .mobile-panel .socials {
    display: flex;
    justify-content: center;
  }

  .about-page .mobile-panel .btn {
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .about-hero {
    min-height: auto;
    padding: 126px 0 72px;
  }

  .about-hero-inner {
    width: min(calc(100% - 48px), 1140px);
    margin-inline: auto;
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .about-hero-copy {
    max-width: 900px;
    margin-top: 0;
  }

  .about-hero-title {
    max-width: 900px;
    font-size: clamp(2.45rem, 3.6vw, 2.8rem);
  }

  .about-hero-visual {
    --about-benefit-height: 292px;
    --about-benefit-min-top: 260px;
    --about-benefit-stagger: 40px;
    width: 100%;
    max-width: 820px;
    min-height: 640px;
    margin: 0 auto;
  }

  .about-route-card {
    top: 75px;
    left: 60%;
    width: 40%;
    height: 210px;
  }

  .about-photo-card--facade {
    top: 24px;
    width: 60%;
    height: auto;
  }

  .about-photo-card--interior {
    left: 28%;
    width: 32%;
    height: auto;
  }

  .about-benefit-card {
    top: max(
      var(--about-benefit-min-top),
      calc(var(--about-interior-top) + 23.72cqw - var(--about-benefit-height) - var(--about-benefit-stagger))
    );
    right: 3%;
    bottom: auto;
    width: 38%;
    min-height: var(--about-benefit-height);
  }
}

@media (max-width: 980px) {
  .about-page .nav-shell {
    width: auto;
    min-height: 76px;
  }

  .about-page .brand-logo {
    width: 190px;
  }
}

@media (max-width: 740px) {
  .about-hero {
    min-height: 0;
    padding-block: 96px 28px;
  }

  .about-hero-inner.about-mobile-track {
    display: flex;
    grid-template-columns: none;
    gap: 0;
    width: 100%;
    margin-inline: 0;
    padding-inline: 18px;
    align-items: stretch;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-padding-left: 18px;
    overscroll-behavior-x: contain;
  }

  .about-hero-inner.about-mobile-track::-webkit-scrollbar {
    display: none;
  }

  .about-mobile-slide {
    display: flex;
    flex: 0 0 calc(100vw - 36px);
    width: calc(100vw - 36px);
    min-width: 0;
    scroll-snap-align: start;
    padding-right: 14px;
    box-sizing: border-box;
  }

  .about-mobile-slide:last-child {
    padding-right: 0;
  }

  .about-mobile-slide--copy .about-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: calc(100svh - 168px);
    margin-top: 0;
    padding-block: 8px 4px;
  }

  .about-hero-title {
    max-width: 100%;
    font-size: clamp(2.6rem, 6.5vw, 3rem);
    line-height: 0.99;
  }

  .about-title-line {
    white-space: normal;
  }

  .about-hero .lead {
    margin-top: 24px;
    font-size: 1rem;
    line-height: 1.72;
  }

  .about-mobile-slide--visual {
    align-items: center;
  }

  .about-mobile-slide--visual .about-hero-visual {
    position: relative;
    width: 100%;
    min-height: 0;
    min-width: 0;
    margin-top: 0;
    padding-bottom: clamp(96px, 30vw, 132px);
    container-type: normal;
  }

  .about-route-card,
  .about-stamp {
    display: none;
  }

  .about-photo-card--facade {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: none;
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 5;
    border-radius: 28px;
    overflow: hidden;
  }

  .about-photo-card--interior {
    position: absolute;
    top: auto;
    right: 0;
    left: auto;
    bottom: 0;
    width: 64%;
    max-width: none;
    height: auto;
    aspect-ratio: 1.32 / 1;
    border-radius: 22px;
    overflow: hidden;
    z-index: 3;
  }

  .about-benefit-card--desktop {
    display: none;
  }

  .about-benefit-card--mobile {
    display: block;
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: none;
    min-width: 0;
    min-height: 0;
    border-radius: 30px;
  }

  .about-mobile-slide--benefits {
    align-items: flex-start;
  }

  .about-benefit-card--mobile ul {
    width: 100%;
  }

  .about-benefit-card--mobile li {
    min-height: 57px;
  }

  .about-carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
  }

  .about-carousel-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 250, 244, 0.26);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    transition:
      transform 0.25s var(--ease),
      background-color 0.25s var(--ease),
      width 0.25s var(--ease);
  }

  .about-carousel-dot.is-active {
    width: 28px;
    background: linear-gradient(90deg, var(--coral), var(--rose));
    transform: scale(1);
  }
}

/* About page — cinematic name meaning */

.name-meaning-section {
  position: relative;
  isolation: isolate;
  min-height: clamp(760px, 52vw, 860px);
  padding: clamp(110px, 8vw, 150px) 0 clamp(96px, 7vw, 124px);
  overflow: hidden;
  color: var(--cream-50);
  background:
    radial-gradient(circle at 94% 91%, rgba(246, 64, 118, 0.58), transparent 35rem),
    radial-gradient(circle at 68% 34%, rgba(155, 4, 99, 0.33), transparent 33rem),
    radial-gradient(circle at 16% 10%, rgba(255, 108, 67, 0.12), transparent 28rem),
    linear-gradient(135deg, #070411 0%, #120716 38%, #230724 66%, #6b0828 100%);
}

.name-meaning-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: auto;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.027) 0 1px, transparent 1px 32px);
  opacity: 0.52;
  pointer-events: none;
  content: "";
}

.name-meaning-section::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 36%;
  background: linear-gradient(180deg, transparent, rgba(7, 4, 17, 0.52));
  pointer-events: none;
  content: "";
}

.name-meaning-bg {
  position: absolute;
  z-index: -1;
  top: -20%;
  right: -12%;
  width: min(58vw, 980px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 64, 118, 0.13), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
}

.name-meaning-shell {
  width: min(calc(100% - 96px), 1630px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(48px, 5vw, 86px);
  align-items: center;
}

.name-meaning-copy {
  max-width: 750px;
  min-width: 0;
}

.name-meaning-section .name-meaning-eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--coral);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.name-meaning-section .name-meaning-eyebrow::after {
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--coral), transparent);
  content: "";
}

.name-meaning-title {
  margin: 0;
  color: var(--cream-50);
  font-family: var(--font-hero);
  font-size: clamp(4rem, 6.2vw, 6.6rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.056em;
}

.name-meaning-title span {
  display: block;
}

.name-meaning-title-accent {
  width: max-content;
  max-width: 100%;
  color: transparent;
  background: linear-gradient(100deg, var(--coral) 4%, #ff5c61 52%, var(--rose) 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.name-meaning-intro {
  max-width: 52ch;
  margin: 29px 0 0;
  color: rgba(255, 250, 244, 0.78);
  font-size: clamp(1rem, 1.12vw, 1.12rem);
  line-height: 1.72;
}

.name-meaning-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.name-meaning-cards li {
  min-width: 0;
  min-height: 158px;
  padding: 18px 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 260ms var(--ease),
    border-color 260ms var(--ease),
    background 260ms var(--ease),
    box-shadow 260ms var(--ease);
}

.name-meaning-cards li:hover {
  border-color: rgba(255, 108, 67, 0.43);
  background:
    radial-gradient(circle at 50% 0%, rgba(246, 64, 118, 0.13), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 15px 35px rgba(0, 0, 0, 0.14);
  transform: translateY(-4px);
}

.name-meaning-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  color: var(--coral);
  border: 1px solid rgba(255, 108, 67, 0.56);
  border-radius: 999px;
  background: rgba(255, 108, 67, 0.045);
  box-shadow: 0 0 0 5px rgba(255, 108, 67, 0.025);
}

.name-meaning-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

.name-meaning-cards strong {
  display: block;
  color: rgba(255, 250, 244, 0.94);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.name-meaning-cards p {
  margin: 7px 0 0;
  color: rgba(255, 250, 244, 0.62);
  font-size: 0.72rem;
  line-height: 1.43;
}

.name-meaning-divider {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  max-width: 720px;
  margin: 36px 0 0;
  color: var(--coral);
}

.name-meaning-divider span {
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 108, 67, 0.75), rgba(246, 64, 118, 0.56) 72%, transparent);
}

.name-meaning-divider svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
  stroke-width: 1.6;
  transform: rotate(8deg);
}

.name-meaning-slogan-label {
  margin: 25px 0 0;
  color: rgba(255, 250, 244, 0.7);
  font-size: clamp(0.9rem, 1vw, 1.02rem);
  line-height: 1.6;
}

.name-meaning-slogan {
  margin: 12px 0 0;
  color: var(--cream-50);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.1vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.name-meaning-slogan span {
  color: transparent;
  background: linear-gradient(96deg, var(--coral), var(--rose));
  background-clip: text;
  -webkit-background-clip: text;
}

.name-meaning-visual {
  position: relative;
  min-width: 0;
}

.name-meaning-visual::before {
  position: absolute;
  inset: 8% -3% -4% 8%;
  z-index: -1;
  border-radius: 38px;
  background: rgba(246, 64, 118, 0.2);
  filter: blur(42px);
  content: "";
}

.name-meaning-scene {
  position: relative;
  aspect-ratio: 1.38 / 1;
  overflow: hidden;
  border: 1px solid rgba(246, 64, 118, 0.34);
  border-radius: 32px;
  background:
    radial-gradient(ellipse at 50% 80%, rgba(255, 185, 92, 0.9), transparent 12%),
    radial-gradient(ellipse at 54% 70%, rgba(255, 106, 76, 0.72), transparent 31%),
    radial-gradient(circle at 57% 51%, rgba(246, 64, 118, 0.39), transparent 38%),
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.1), transparent 29%),
    linear-gradient(180deg, #0d0618 0%, #25102e 43%, #7b2540 72%, #e76749 100%);
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.36);
}

.name-meaning-scene::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 23% 55%, rgba(255, 98, 138, 0.13), transparent 28%),
    linear-gradient(180deg, rgba(7, 4, 17, 0.02), rgba(7, 4, 17, 0.18) 72%, rgba(7, 4, 17, 0.5));
  pointer-events: none;
  content: "";
}

.name-meaning-scene::after {
  position: absolute;
  inset: 0;
  z-index: 7;
  border-radius: inherit;
  box-shadow: inset 0 0 80px rgba(5, 2, 12, 0.34);
  pointer-events: none;
  content: "";
}

.name-scene-stars {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.58;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.82) 0 0.8px, transparent 1.4px),
    radial-gradient(circle, rgba(255, 226, 218, 0.42) 0 0.7px, transparent 1.4px),
    radial-gradient(circle, rgba(255, 255, 255, 0.28) 0 1px, transparent 1.7px);
  background-position: 0 0, 13px 17px, 7px 4px;
  background-size: 23px 23px, 41px 41px, 67px 67px;
  -webkit-mask-image: linear-gradient(180deg, #000 0 58%, transparent 84%);
  mask-image: linear-gradient(180deg, #000 0 58%, transparent 84%);
}

.name-scene-glow {
  position: absolute;
  z-index: 2;
  right: 14%;
  bottom: 10%;
  left: 24%;
  height: 35%;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(255, 190, 99, 0.66), rgba(246, 64, 118, 0.18) 45%, transparent 73%);
  filter: blur(18px);
}

.name-scene-stamp {
  position: absolute;
  z-index: 6;
  top: 34px;
  right: 38px;
  width: clamp(112px, 9vw, 158px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.27;
  filter: grayscale(1) invert(1) contrast(1.55);
  mix-blend-mode: screen;
}

.name-scene-stamp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.name-scene-route,
.name-scene-landscape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.name-scene-route {
  z-index: 5;
  overflow: visible;
}

.name-scene-route > path {
  stroke: rgba(255, 108, 67, 0.78);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 6 10;
  animation: nameMeaningRoute 18s linear infinite;
  vector-effect: non-scaling-stroke;
}

.name-scene-plane path {
  fill: var(--coral);
  filter: drop-shadow(0 7px 12px rgba(255, 108, 67, 0.3));
}

.name-scene-landscape {
  z-index: 3;
}

.name-scene-sun {
  fill: rgba(255, 202, 108, 0.84);
  filter: drop-shadow(0 0 18px rgba(255, 157, 73, 0.7));
}

.name-cloud-back {
  fill: rgba(62, 20, 48, 0.52);
}

.name-mountain-back {
  fill: rgba(18, 7, 22, 0.76);
}

.name-mountain-front {
  fill: rgba(5, 3, 11, 0.94);
}

.name-scene-traveler {
  position: absolute;
  right: 10.5%;
  bottom: 3.5%;
  z-index: 4;
  width: 17%;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.28));
}

.name-traveler-silhouette,
.name-traveler-backpack {
  fill: #05030a;
}

.name-traveler-backpack {
  stroke: rgba(255, 108, 67, 0.16);
  stroke-width: 2;
}

.name-traveler-strap {
  stroke: rgba(255, 250, 244, 0.16);
  stroke-width: 3;
  stroke-linecap: round;
}

.name-traveler-shadow {
  fill: rgba(0, 0, 0, 0.34);
}

@keyframes nameMeaningRoute {
  to {
    stroke-dashoffset: -160;
  }
}

@media (max-width: 1320px) {
  .name-meaning-shell {
    gap: 46px;
  }

  .name-meaning-title {
    font-size: clamp(3.65rem, 5.7vw, 5.4rem);
  }

  .name-meaning-cards {
    gap: 8px;
  }

  .name-meaning-cards li {
    min-height: 154px;
    padding-inline: 11px;
  }

  .name-meaning-icon {
    width: 39px;
    height: 39px;
  }

  .name-meaning-cards strong {
    font-size: 0.75rem;
  }

  .name-meaning-cards p {
    font-size: 0.67rem;
  }
}

@media (max-width: 1120px) {
  .name-meaning-shell {
    width: min(calc(100% - 56px), 1040px);
    grid-template-columns: minmax(0, 0.92fr) minmax(450px, 1.08fr);
    gap: 34px;
  }

  .name-meaning-cards li {
    padding: 15px 8px 14px;
  }

  .name-meaning-cards strong {
    font-size: 0.7rem;
  }
}

@media (max-width: 980px) {
  .name-meaning-section {
    min-height: 0;
    padding: 106px 0 88px;
  }

  .name-meaning-shell {
    width: min(calc(100% - 40px), 760px);
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .name-meaning-copy {
    max-width: none;
  }

  .name-meaning-title {
    font-size: clamp(3.1rem, 10vw, 5rem);
  }

  .name-meaning-intro {
    max-width: 58ch;
  }

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

  .name-meaning-cards li {
    min-height: 148px;
    padding: 20px 18px 17px;
  }

  .name-meaning-cards li:last-child {
    grid-column: 1 / -1;
  }

  .name-meaning-cards strong {
    font-size: 0.84rem;
  }

  .name-meaning-cards p {
    font-size: 0.76rem;
  }

  .name-meaning-scene {
    max-height: 620px;
  }
}

@media (max-width: 640px) {
  .name-meaning-section {
    padding: 88px 0 72px;
  }

  .name-meaning-shell {
    width: calc(100% - 24px);
    gap: 42px;
  }

  .name-meaning-section .name-meaning-eyebrow {
    margin-bottom: 18px;
    font-size: 0.69rem;
  }

  .name-meaning-title {
    font-size: clamp(2.75rem, 14.5vw, 4rem);
    letter-spacing: -0.052em;
  }

  .name-meaning-intro {
    margin-top: 22px;
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .name-meaning-cards {
    display: flex;
    gap: 12px;
    margin-right: -12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 0 12px 9px 0;
    scroll-padding-inline: 0 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .name-meaning-cards::-webkit-scrollbar {
    display: none;
  }

  .name-meaning-cards li {
    flex: 0 0 min(76%, 275px);
    min-height: 150px;
    padding: 19px 17px 17px;
    scroll-snap-align: start;
  }

  .name-meaning-cards strong {
    font-size: 0.82rem;
  }

  .name-meaning-cards p {
    font-size: 0.74rem;
  }

  .name-meaning-divider {
    margin-top: 27px;
  }

  .name-meaning-slogan-label {
    margin-top: 23px;
    font-size: 0.88rem;
  }

  .name-meaning-slogan {
    font-size: clamp(1.95rem, 8.7vw, 2.8rem);
  }

  .name-meaning-scene {
    aspect-ratio: 1 / 1.06;
    border-radius: 24px;
  }

  .name-scene-stamp {
    top: 22px;
    right: 22px;
    width: 92px;
  }

  .name-scene-route {
    transform: translateY(2%) scale(1.05);
  }

  .name-scene-traveler {
    right: 9%;
    bottom: 3%;
    width: 23%;
  }
}

@media (max-width: 390px) {
  .name-meaning-title {
    font-size: clamp(2.55rem, 13.5vw, 3.2rem);
  }

  .name-meaning-cards li {
    flex-basis: 82%;
  }

  .name-meaning-scene {
    aspect-ratio: 0.92 / 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .name-scene-route > path {
    animation: none;
  }

  .name-meaning-cards li {
    transition: none;
  }
}

@media (max-width: 520px) {
  .about-hero-inner.about-mobile-track {
    padding-inline: 16px;
    scroll-padding-left: 16px;
  }

  .about-mobile-slide {
    flex-basis: calc(100vw - 32px);
    width: calc(100vw - 32px);
    padding-right: 12px;
  }

  .about-mobile-slide--copy .about-hero-copy {
    min-height: calc(100svh - 158px);
  }
}

@media (max-width: 460px) {
  .about-page .nav-shell,
  .about-hero-inner {
    width: calc(100% - 24px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-route-path {
    animation: none;
  }
}

.about-section.about-origin {
  position: relative;
  padding: clamp(68px, 5vw, 84px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 76%, rgba(255, 108, 67, 0.075), transparent 24rem),
    radial-gradient(circle at 86% 18%, rgba(246, 64, 118, 0.055), transparent 28rem),
    linear-gradient(180deg, var(--cream-50), #fffaf4 52%, var(--cream-100));
}

.about-origin::before {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(rgba(48, 21, 49, 0.08) 0.6px, transparent 0.6px);
  background-size: 18px 18px;
  content: "";
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.about-origin-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(500px, 0.95fr) 1px minmax(420px, 0.88fr);
  gap: clamp(44px, 4vw, 68px);
  align-items: center;
  width: min(calc(100% - 72px), 1380px);
}

.origin-left,
.origin-right {
  min-width: 0;
}

.origin-eyebrow {
  position: relative;
  display: inline-block;
  margin-bottom: clamp(28px, 2vw, 34px);
  color: var(--coral);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.origin-eyebrow::after {
  position: absolute;
  bottom: -14px;
  left: 0;
  width: 58px;
  height: 1px;
  background: linear-gradient(90deg, var(--coral), var(--rose), transparent);
  content: "";
}

.origin-title {
  margin: 0;
  color: var(--wine-950);
  font-family: var(--font-hero);
  max-width: none;
  font-size: clamp(3.9rem, 4.55vw, 5.05rem);
  font-weight: 800;
  line-height: 0.99;
  letter-spacing: -0.038em;
  text-wrap: initial;
}

.origin-title > span {
  display: block;
}

.origin-title-gradient {
  color: var(--rose);
  background: linear-gradient(105deg, var(--coral), var(--rose) 56%, var(--magenta));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.origin-journey {
  position: relative;
  height: clamp(230px, 15vw, 250px);
  margin-top: clamp(24px, 2vw, 32px);
  max-width: none;
}

.origin-journey svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.origin-topography {
  fill: none;
  stroke: var(--coral);
  stroke-linecap: round;
}

.origin-topography--far {
  opacity: 0.1;
  stroke-width: 1;
}

.origin-topography--near {
  opacity: 0.14;
  stroke-width: 1.1;
}

.origin-clouds {
  fill: none;
  stroke: rgba(255, 146, 109, 0.2);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
}

.origin-route {
  fill: none;
  stroke: url(#origin-route-gradient);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-dasharray: 6 9;
}

.origin-route-points circle {
  fill: var(--cream-50);
  stroke: url(#origin-route-gradient);
  stroke-width: 2.4;
}

.origin-pin ellipse {
  fill: rgba(155, 4, 99, 0.13);
}

.origin-pin path {
  fill: url(#origin-pin-gradient);
}

.origin-pin circle:not(.origin-pin-core) {
  fill: rgba(255, 250, 244, 0.88);
  stroke: rgba(255, 255, 255, 0.65);
  stroke-width: 2;
}

.origin-pin-core {
  fill: var(--cream-50);
}

.origin-plane path {
  fill: var(--rose);
}

.origin-sign-support,
.origin-sign-board,
.origin-sign-detail,
.origin-sign-glow {
  fill: rgba(255, 250, 244, 0.74);
  stroke: url(#origin-sign-gradient);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.origin-sign-support {
  fill: none;
  stroke-width: 2.8;
}

.origin-sign-board {
  fill: rgba(255, 250, 244, 0.9);
  stroke-width: 2.4;
}

.origin-sign-detail {
  fill: none;
  opacity: 0.42;
  stroke-width: 1.6;
}

.origin-sign-base {
  fill: var(--rose);
  opacity: 0.72;
}

.origin-sign-glow {
  fill: none;
  opacity: 0.15;
  stroke-width: 1;
}

.origin-sparkles {
  fill: none;
  stroke: var(--coral);
  stroke-linecap: round;
  stroke-width: 1.5;
  opacity: 0.42;
}

.origin-sparkles circle {
  fill: var(--rose);
  stroke: none;
}

.origin-dot-clusters {
  fill: rgba(255, 108, 67, 0.22);
}

.origin-leaves {
  fill: none;
  stroke: rgba(255, 146, 109, 0.52);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.origin-ground {
  fill: url(#origin-ground-gradient);
  opacity: 0.62;
}

.origin-place {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  min-height: 38px;
  margin-top: 6px;
  padding: 8px 15px;
  color: var(--wine-900);
  border: 1px solid rgba(255, 108, 67, 0.25);
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.82);
  box-shadow: 0 10px 28px rgba(48, 21, 49, 0.07);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  backdrop-filter: blur(8px);
}

.origin-place svg {
  width: 16px;
  height: 16px;
  color: var(--wine-900);
  stroke-width: 2.4;
}

.origin-divider {
  position: relative;
  align-self: stretch;
  min-height: 0;
  margin-block: 12px;
  background: linear-gradient(180deg, transparent, rgba(246, 64, 118, 0.42) 16%, rgba(255, 108, 67, 0.38) 50%, rgba(246, 64, 118, 0.28) 82%, transparent);
}

.origin-divider::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 1px;
  background: linear-gradient(135deg, var(--orange), var(--rose));
  box-shadow: 0 0 22px rgba(246, 64, 118, 0.42);
  content: "";
  transform: translate(-50%, -50%) rotate(45deg);
}

.origin-divider::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  content: "";
  transform: translate(-50%, -50%);
}

.origin-right {
  align-self: center;
  padding-top: 0;
}

.origin-text {
  max-width: 38rem;
  margin-left: 0;
}

.origin-text p {
  margin: 0;
  color: #302432;
  font-size: clamp(1rem, 1.12vw, 1.18rem);
  line-height: 1.95;
}

.origin-text p + p {
  margin-top: clamp(24px, 1.8vw, 30px);
}

.origin-quote {
  position: relative;
  display: grid;
  grid-template-columns: clamp(56px, 4vw, 72px) minmax(0, 1fr);
  gap: clamp(16px, 1.35vw, 22px);
  width: 100%;
  max-width: 640px;
  margin: clamp(32px, 2.5vw, 42px) 0 0;
  padding: clamp(30px, 2.2vw, 38px);
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 28px;
  background:
    linear-gradient(rgba(255, 250, 244, 0.94), rgba(255, 250, 244, 0.94)) padding-box,
    linear-gradient(115deg, var(--rose), rgba(255, 108, 67, 0.52), var(--orange)) border-box;
  box-shadow: 0 14px 34px rgba(48, 21, 49, 0.06);
  backdrop-filter: blur(10px);
}

.origin-quote::after {
  position: absolute;
  right: -44px;
  bottom: -48px;
  width: 190px;
  height: 120px;
  opacity: 0.075;
  border: 1px solid var(--coral);
  border-radius: 50%;
  box-shadow:
    0 0 0 11px var(--coral),
    0 0 0 23px var(--rose);
  content: "";
  pointer-events: none;
}

.origin-quote-mark {
  position: relative;
  z-index: 1;
  margin-top: -0.12em;
  color: var(--rose);
  background: linear-gradient(145deg, var(--coral), var(--rose), var(--magenta));
  background-clip: text;
  font-family: Georgia, serif;
  font-size: clamp(3.15rem, 3.7vw, 4rem);
  font-weight: 600;
  line-height: 0.8;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.origin-quote p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--wine-900);
  font-family: Georgia, "Times New Roman", serif;
  max-width: 22ch;
  font-size: clamp(1.2rem, 1.5vw, 1.62rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.38;
  letter-spacing: -0.014em;
}

@media (min-width: 981px) {
  .origin-title > span {
    white-space: nowrap;
  }
}

@media (min-width: 981px) and (max-width: 1199px) {
  .about-origin-shell {
    grid-template-columns: minmax(430px, 0.95fr) 1px minmax(350px, 0.88fr);
    gap: 32px;
    width: calc(100% - 56px);
  }

  .origin-title {
    font-size: clamp(3.2rem, 5vw, 3.65rem);
  }

  .origin-journey {
    height: clamp(225px, 21vw, 250px);
  }

  .origin-text p {
    font-size: 0.98rem;
    line-height: 1.82;
  }

  .origin-quote p {
    font-size: 1.18rem;
  }
}

@media (max-width: 980px) {
  .about-section.about-origin {
    padding: clamp(70px, 9vw, 96px) 0;
  }

  .about-origin-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    width: min(calc(100% - 48px), 780px);
  }

  .origin-title {
    font-size: clamp(2.9rem, 8.8vw, 4.65rem);
    line-height: 1;
    max-width: none;
  }

  .origin-journey {
    height: clamp(225px, 34vw, 270px);
  }

  .origin-divider {
    width: 100%;
    min-height: 1px;
    background: linear-gradient(90deg, transparent, rgba(246, 64, 118, 0.34) 18%, rgba(255, 108, 67, 0.34) 50%, rgba(246, 64, 118, 0.24) 82%, transparent);
  }

  .origin-divider::before {
    width: 1px;
    height: 16px;
    background: linear-gradient(180deg, transparent, var(--orange), transparent);
  }

  .origin-right,
  .origin-text {
    max-width: none;
  }

  .origin-right {
    padding-top: 0;
    align-self: start;
  }

  .origin-text {
    margin-left: 0;
  }

  .origin-quote {
    margin-left: 0;
  }
}

@media (max-width: 520px) {
  .about-section.about-origin {
    padding: 64px 0 70px;
  }

  .about-origin-shell {
    gap: 38px;
    width: calc(100% - 24px);
  }

  .origin-eyebrow {
    margin-bottom: 30px;
    font-size: 0.72rem;
  }

  .origin-title {
    font-size: clamp(2.35rem, 10.4vw, 3.25rem);
    line-height: 1;
  }

  .origin-journey {
    height: 205px;
    margin-top: 25px;
  }

  .origin-topography--far,
  .origin-sparkles circle {
    display: none;
  }

  .origin-place {
    min-height: 36px;
    padding-inline: 13px;
    font-size: 0.73rem;
  }

  .origin-text p {
    font-size: 0.96rem;
    line-height: 1.82;
  }

  .origin-text p + p {
    margin-top: 24px;
  }

  .origin-quote {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    margin-top: 32px;
    margin-left: 0;
    padding: 24px 18px;
  }

  .origin-quote-mark {
    font-size: 3.3rem;
  }

  .origin-quote p {
    font-size: 1.14rem;
    line-height: 1.45;
  }
}

.about-name {
  position: relative;
  color: var(--cream-50);
  background:
    radial-gradient(circle at 85% 20%, rgba(246, 64, 118, 0.23), transparent 24rem),
    linear-gradient(135deg, var(--wine-950), var(--wine-800));
}

.about-name::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(20px, calc((100vw - var(--max)) / 2));
  width: 1px;
  background: rgba(255, 255, 255, 0.11);
  content: "";
}

.about-name-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.55fr) minmax(0, 1fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.about-name .eyebrow {
  color: #f7b75d;
}

.about-name .section-title {
  max-width: 10ch;
  color: var(--cream-50);
}

.about-name-mark {
  display: block;
  margin-top: 36px;
  color: rgba(255, 250, 244, 0.12);
  font-family: var(--font-hero);
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 0.7;
}

.about-name-copy {
  max-width: 68ch;
}

.about-name-copy p {
  margin: 0;
  color: rgba(255, 250, 244, 0.74);
  font-size: clamp(1rem, 1.3vw, 1.09rem);
  line-height: 1.88;
}

.about-name-copy p + p {
  margin-top: 27px;
}

.about-name-copy p:last-child {
  color: var(--cream-50);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.1vw, 1.65rem);
  font-weight: 700;
  line-height: 1.5;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 34px);
}

.founder-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  grid-template-columns: minmax(190px, 0.68fr) minmax(0, 1fr);
  border: 1px solid rgba(155, 4, 99, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 244, 0.92);
  box-shadow: 0 18px 48px rgba(18, 7, 22, 0.09);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s ease;
}

.founder-card:hover {
  border-color: rgba(246, 64, 118, 0.34);
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

.founder-photo {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--wine-850);
}

.founder-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(18, 7, 22, 0.22));
  content: "";
}

.founder-photo img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s var(--ease);
}

.founder-card:hover .founder-photo img {
  transform: scale(1.025);
}

.founder-content {
  display: flex;
  padding: clamp(27px, 3.6vw, 44px);
  flex-direction: column;
  justify-content: center;
}

.founder-content h3 {
  margin: 0;
  color: var(--wine-950);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.founder-role {
  margin: 9px 0 20px;
  color: var(--magenta);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.founder-content p:last-child {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.76;
}

.founders-quote {
  position: relative;
  max-width: 930px;
  margin: clamp(38px, 6vw, 68px) auto 0;
  padding: 0 40px;
  color: var(--wine-850);
  border: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.1vw, 2.65rem);
  font-weight: 700;
  line-height: 1.34;
  letter-spacing: -0.035em;
  text-align: center;
  text-wrap: balance;
}

.founders-quote::before {
  display: block;
  margin-bottom: 14px;
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 4.5rem;
  line-height: 0.5;
  content: "“";
}

.about-way {
  border-top: 1px solid rgba(28, 10, 34, 0.08);
  border-bottom: 1px solid rgba(28, 10, 34, 0.08);
  background:
    radial-gradient(circle at 8% 16%, rgba(255, 108, 67, 0.08), transparent 20rem),
    rgba(248, 237, 223, 0.62);
}

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

.pillar-card {
  position: relative;
  min-height: 310px;
  padding: clamp(27px, 3.2vw, 40px);
  overflow: hidden;
  border: 1px solid rgba(28, 10, 34, 0.11);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 244, 0.78);
  transition: transform 0.4s var(--ease), border-color 0.4s ease, background-color 0.4s ease;
}

.pillar-card:hover {
  border-color: rgba(255, 108, 67, 0.35);
  background: var(--white-soft);
  transform: translateY(-5px);
}

.pillar-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 48px;
  color: var(--coral);
  border: 1px solid rgba(255, 108, 67, 0.28);
  border-radius: 50%;
  font-size: 0.73rem;
  font-weight: 800;
}

.pillar-card h3 {
  max-width: 15ch;
  margin: 0;
  color: var(--wine-950);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.58rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.pillar-card p {
  margin: 17px 0 0;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.72;
}

.first-trip-grid,
.vision-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: clamp(48px, 9vw, 132px);
  align-items: center;
}

.first-trip .section-title,
.about-vision .section-title {
  max-width: 12ch;
}

.first-trip-copy,
.vision-copy {
  position: relative;
  max-width: 68ch;
  padding: clamp(28px, 4vw, 48px);
  border-left: 3px solid var(--coral);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  background: rgba(255, 250, 244, 0.66);
  box-shadow: 0 18px 46px rgba(18, 7, 22, 0.06);
}

.first-trip-copy p,
.vision-copy p {
  margin: 0;
  color: #493943;
  font-size: clamp(1.03rem, 1.45vw, 1.15rem);
  line-height: 1.88;
}

.about-vision {
  color: var(--cream-50);
  background:
    linear-gradient(90deg, rgba(18, 7, 22, 0.92), rgba(28, 10, 34, 0.79)),
    radial-gradient(circle at 70% 50%, var(--magenta), var(--wine-950));
}

.about-vision::after {
  position: absolute;
  right: -8vw;
  bottom: -24vw;
  width: 48vw;
  height: 48vw;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 4vw rgba(255, 255, 255, 0.018), 0 0 0 8vw rgba(255, 255, 255, 0.012);
  content: "";
}

.about-vision .eyebrow {
  color: #f7b75d;
}

.about-vision .section-title {
  color: var(--cream-50);
}

.vision-copy {
  z-index: 1;
  border-left-color: var(--orange);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.vision-copy p {
  color: rgba(255, 250, 244, 0.76);
}

.about-cta-section {
  padding: clamp(68px, 8vw, 110px) 0;
  background: var(--cream-100);
}

.about-cta {
  position: relative;
  display: grid;
  min-height: 390px;
  padding: clamp(38px, 7vw, 84px);
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
  color: var(--cream-50);
  border-radius: clamp(24px, 4vw, 42px);
  background:
    radial-gradient(circle at 86% 0%, rgba(246, 64, 118, 0.48), transparent 32rem),
    linear-gradient(135deg, var(--wine-850), var(--wine-950));
  box-shadow: 0 28px 72px rgba(18, 7, 22, 0.2);
}

.about-cta::before {
  position: absolute;
  top: -100px;
  right: -70px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(255, 255, 255, 0.025), 0 0 0 56px rgba(255, 255, 255, 0.018);
  content: "";
}

.about-cta-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.about-cta .eyebrow {
  color: #f7b75d;
}

.about-cta h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--cream-50);
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.4vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.about-cta p:not(.eyebrow) {
  max-width: 52ch;
  margin: 24px 0 0;
  color: rgba(255, 250, 244, 0.72);
  font-size: 1.04rem;
  line-height: 1.72;
}

.about-cta .btn {
  position: relative;
  z-index: 1;
  flex: none;
}

@media (max-width: 1100px) {
  .founder-card {
    grid-template-columns: 1fr;
  }

  .founder-photo img {
    min-height: 360px;
    aspect-ratio: 4 / 4.4;
  }
}

@media (max-width: 900px) {
  .about-name-grid,
  .first-trip-grid,
  .vision-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-name .section-title,
  .first-trip .section-title,
  .about-vision .section-title {
    max-width: 17ch;
  }

  .about-name-mark {
    display: none;
  }

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

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

  .pillar-number {
    margin-bottom: 32px;
  }

  .about-cta {
    min-height: 0;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .about-cta .btn {
    width: max-content;
  }
}

@media (max-width: 740px) {
  .about-section {
    padding: 70px 0;
  }

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

  .founder-card {
    grid-template-columns: minmax(132px, 0.42fr) minmax(0, 1fr);
  }

  .founder-photo img {
    min-height: 100%;
    aspect-ratio: auto;
  }

  .founder-content {
    padding: 27px 24px;
  }

  .founders-quote {
    padding-inline: 0;
  }

  .first-trip-copy,
  .vision-copy {
    padding: 26px 24px;
  }
}

@media (max-width: 520px) {
  .about-section-head {
    margin-bottom: 30px;
  }

  .about-name::before {
    left: 12px;
  }

  .founder-card {
    grid-template-columns: 1fr;
  }

  .founder-photo img {
    min-height: 0;
    aspect-ratio: 4 / 4.2;
  }

  .founder-content p:last-child {
    font-size: 0.9rem;
  }

  .about-cta {
    padding: 34px 24px;
    border-radius: 24px;
  }

  .about-cta .btn {
    width: 100%;
  }
}

/* About page — institutional refinements */

.about-name-copy > p:first-child {
  color: rgba(255, 250, 244, 0.82);
}

.name-meanings {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.name-meanings li {
  position: relative;
  min-height: 72px;
  padding: 20px 20px 20px 42px;
  color: rgba(255, 250, 244, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.5;
}

.name-meanings li::before {
  position: absolute;
  top: 27px;
  left: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--rose));
  box-shadow: 0 0 0 5px rgba(255, 108, 67, 0.09);
  content: "";
}

.name-meanings li:last-child {
  grid-column: 1 / -1;
}

.about-slogan-label {
  color: rgba(255, 250, 244, 0.58) !important;
  font-family: var(--font-body) !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-slogan {
  margin-top: 12px !important;
  color: var(--cream-50) !important;
  font-family: var(--font-display) !important;
  font-size: clamp(1.7rem, 3vw, 2.8rem) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.about-sorriso {
  background:
    radial-gradient(circle at 7% 80%, rgba(255, 108, 67, 0.08), transparent 22rem),
    var(--cream-50);
}

.about-sorriso-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.8fr);
  gap: clamp(46px, 8vw, 108px);
  align-items: center;
}

.about-sorriso-copy {
  max-width: 68ch;
}

.about-sorriso-copy .section-title {
  max-width: 13ch;
}

.about-sorriso-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: #4c3d46;
  font-size: clamp(1rem, 1.25vw, 1.08rem);
  line-height: 1.82;
}

.route-panel {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  color: var(--cream-50);
  border-radius: 48% 48% var(--radius-lg) var(--radius-lg);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 64% 34%, rgba(246, 64, 118, 0.24), transparent 13rem),
    linear-gradient(145deg, var(--wine-850), var(--wine-950));
  background-size: 42px 42px, 42px 42px, auto, auto;
  box-shadow: 0 28px 70px rgba(18, 7, 22, 0.18);
}

.route-panel svg {
  position: absolute;
  inset: 10% 7% 18%;
  width: 86%;
  height: 72%;
  overflow: visible;
}

.route-panel path {
  stroke-dasharray: 8 12;
  animation: aboutRoute 18s linear infinite;
}

.route-label {
  position: absolute;
  display: grid;
  gap: 3px;
}

.route-label small {
  color: rgba(255, 250, 244, 0.55);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-label strong {
  color: var(--cream-50);
  font-family: var(--font-display);
  font-size: 1.08rem;
}

.route-label--start {
  bottom: 20%;
  left: 10%;
}

.route-label--end {
  top: 18%;
  right: 9%;
  text-align: right;
}

.route-coordinate {
  position: absolute;
  right: 9%;
  bottom: 8%;
  color: rgba(255, 250, 244, 0.38);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

@keyframes aboutRoute {
  to {
    stroke-dashoffset: -200;
  }
}

.about-founders {
  background: rgba(255, 250, 244, 0.7);
}

.about-founders .founders-grid {
  grid-template-columns: minmax(0, 920px);
  justify-content: center;
}

.about-founders .founder-card--eduardo .founder-photo img {
  transform: scale(1.06);
  transform-origin: center top;
}

.about-founders .founder-card--eduardo:hover .founder-photo img {
  transform: scale(1.085);
}

.about-beliefs {
  border-top: 1px solid rgba(28, 10, 34, 0.08);
  background:
    radial-gradient(circle at 93% 11%, rgba(155, 4, 99, 0.07), transparent 23rem),
    var(--cream-100);
}

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

.beliefs-grid .pillar-card {
  grid-column: span 2;
  min-height: 290px;
}

.beliefs-grid .pillar-card:nth-child(4),
.beliefs-grid .pillar-card:nth-child(5) {
  grid-column: span 3;
}

.belief-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 46px;
  color: var(--coral);
  border: 1px solid rgba(255, 108, 67, 0.27);
  border-radius: 50%;
  background: rgba(255, 108, 67, 0.045);
}

.belief-icon svg {
  width: 20px;
  height: 20px;
}

/* CONEXÕES QUE AMPLIAM POSSIBILIDADES — SOBRE */
.about-network {
  border-top: 1px solid rgba(28, 10, 34, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.82), var(--cream-50) 48%, var(--cream-100));
}

.about-network-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: start;
}

.about-network-copy {
  min-width: 0;
  max-width: 650px;
}

.about-network-copy .eyebrow {
  color: var(--magenta);
}

.about-network-copy .section-title {
  max-width: 13ch;
  margin-bottom: 24px;
  text-wrap: balance;
}

.about-network-copy p:not(.eyebrow) {
  max-width: 62ch;
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.78;
}

.about-network-copy p:not(.eyebrow) + p:not(.eyebrow) {
  margin-top: 18px;
}

.about-network-points {
  display: grid;
  min-width: 0;
  border-top: 1px solid rgba(28, 10, 34, 0.11);
  border-bottom: 1px solid rgba(28, 10, 34, 0.11);
}

.about-network-item {
  display: grid;
  min-width: 0;
  padding: 28px 0;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border-top: 1px solid rgba(28, 10, 34, 0.1);
}

.about-network-item:first-child {
  border-top: 0;
}

.about-network-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-top: 2px;
  color: var(--coral);
  border: 1px solid rgba(255, 108, 67, 0.26);
  border-radius: 50%;
  background: rgba(255, 108, 67, 0.055);
}

.about-network-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

.about-network-item h3 {
  margin: 0;
  color: var(--wine-950);
  font-family: var(--font-display);
  font-size: clamp(1.14rem, 1.55vw, 1.38rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.about-network-item p {
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.68;
}

/* INFORMAÇÕES INSTITUCIONAIS — SOBRE */
.about-institutional-strip {
  padding: clamp(12px, 2vw, 24px) 0 clamp(54px, 7vw, 84px);
  background: var(--cream-100);
}

.about-institutional-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: clamp(24px, 3.2vw, 34px);
  border: 1px solid rgba(155, 4, 99, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 244, 0.78);
  box-shadow: 0 18px 46px rgba(18, 7, 22, 0.06);
}

.about-institutional-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--magenta);
  border: 1px solid rgba(155, 4, 99, 0.18);
  border-radius: 50%;
  background: rgba(155, 4, 99, 0.06);
}

.about-institutional-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}

.about-institutional-copy {
  min-width: 0;
}

.about-institutional-card .eyebrow {
  margin-bottom: 7px;
  color: var(--magenta);
}

.about-institutional-card h2 {
  margin: 0;
  color: var(--wine-950);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.about-institutional-card p:not(.eyebrow) {
  max-width: 68ch;
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.about-institutional-card .about-institutional-cnpj {
  color: var(--wine-950);
  font-weight: 800;
}

.about-institutional-card .btn {
  justify-self: end;
  white-space: nowrap;
}

.about-cta {
  align-items: center;
}

@media (max-width: 980px) {
  .about-sorriso-grid {
    grid-template-columns: 1fr;
  }

  .route-panel {
    max-width: 680px;
  }

  .beliefs-grid .pillar-card,
  .beliefs-grid .pillar-card:nth-child(4),
  .beliefs-grid .pillar-card:nth-child(5) {
    grid-column: span 3;
  }

  .about-network-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .about-network-copy {
    max-width: 760px;
  }

  .about-network-copy .section-title {
    max-width: 18ch;
  }

  .about-institutional-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .about-institutional-card .btn {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 740px) {
  .about-sorriso-grid {
    gap: 38px;
  }

  .name-meanings {
    grid-template-columns: 1fr;
  }

  .name-meanings li:last-child {
    grid-column: auto;
  }

  .route-panel {
    min-height: 350px;
  }

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

  .beliefs-grid .pillar-card,
  .beliefs-grid .pillar-card:nth-child(4),
  .beliefs-grid .pillar-card:nth-child(5) {
    grid-column: auto;
    min-height: 0;
  }

  .belief-icon {
    margin-bottom: 30px;
  }

  .about-network-grid {
    gap: 32px;
  }

  .about-network-item {
    padding: 24px 0;
    gap: 15px;
  }

  .about-network-icon {
    width: 42px;
    height: 42px;
  }

  .about-institutional-card {
    grid-template-columns: 1fr;
  }

  .about-institutional-card .btn {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
    white-space: normal;
  }
}

@media (max-width: 520px) {
  .route-panel {
    min-height: 310px;
    border-radius: 44% 44% 22px 22px;
  }

  .route-label strong {
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .route-panel path {
    animation: none;
  }
}

@media (max-width: 520px) {
  .about-network-copy .section-title {
    max-width: 16ch;
  }

  .about-network-copy p:not(.eyebrow) {
    font-size: 0.94rem;
    line-height: 1.68;
  }

  .about-network-item {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .about-network-item h3 {
    font-size: 1.08rem;
  }

  .about-network-item p {
    font-size: 0.88rem;
    line-height: 1.62;
  }
}

/* Keep the cinematic section above the legacy .about-name cascade. */
.about-name.name-meaning-section {
  min-height: clamp(760px, 52vw, 860px);
  padding: clamp(110px, 8vw, 150px) 0 clamp(96px, 7vw, 124px);
  background:
    radial-gradient(circle at 94% 91%, rgba(246, 64, 118, 0.58), transparent 35rem),
    radial-gradient(circle at 68% 34%, rgba(155, 4, 99, 0.33), transparent 33rem),
    radial-gradient(circle at 16% 10%, rgba(255, 108, 67, 0.12), transparent 28rem),
    linear-gradient(135deg, #070411 0%, #120716 38%, #230724 66%, #6b0828 100%);
}

.about-name.name-meaning-section::before {
  inset: 0;
  width: auto;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.027) 0 1px, transparent 1px 32px);
  opacity: 0.52;
}

.about-name.name-meaning-section .name-meaning-eyebrow {
  color: var(--coral);
}

@media (max-width: 980px) {
  .about-name.name-meaning-section {
    min-height: 0;
    padding: 106px 0 88px;
  }
}

@media (max-width: 640px) {
  .about-name.name-meaning-section {
    padding: 88px 0 72px;
  }
}

/* Supplied photographic artwork for the name-meaning panel. */
.name-meaning-scene.name-meaning-scene--photo {
  width: min(100%, 760px);
  max-height: none;
  margin-left: auto;
  aspect-ratio: 1183 / 1329;
  background: #070411;
}

.name-meaning-scene.name-meaning-scene--photo::before {
  content: none;
}

.name-meaning-scene.name-meaning-scene--photo::after {
  box-shadow: inset 0 0 58px rgba(5, 2, 12, 0.18);
}

.name-meaning-scene-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 980px) {
  .name-meaning-scene.name-meaning-scene--photo {
    width: min(100%, 680px);
    max-height: none;
    margin-inline: auto;
    aspect-ratio: 1183 / 1329;
  }
}

@media (max-width: 640px) {
  .name-meaning-scene.name-meaning-scene--photo {
    width: 100%;
    aspect-ratio: 1183 / 1329;
  }
}

/* Desktop 100% scale — calibrated to the cinematic reference. */
@media (min-width: 1181px) {
  .about-name.name-meaning-section {
    min-height: 0;
    padding: 16px 0 26px;
  }

  .name-meaning-shell {
    width: min(calc(100% - 96px), 1380px);
    grid-template-columns: minmax(0, 600px) minmax(0, 1fr);
    gap: 40px;
  }

  .name-meaning-copy {
    max-width: 600px;
  }

  .name-meaning-section .name-meaning-eyebrow {
    margin-bottom: 14px;
    font-size: 0.72rem;
  }

  .name-meaning-title {
    font-size: clamp(3.7rem, 4.1vw, 4rem);
    line-height: 0.96;
  }

  .name-meaning-intro {
    margin-top: 18px;
    font-size: 0.96rem;
    line-height: 1.52;
  }

  .name-meaning-cards {
    gap: 10px;
    margin-top: 12px;
  }

  .name-meaning-cards li {
    min-height: 142px;
    padding: 14px 12px 12px;
  }

  .name-meaning-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 11px;
  }

  .name-meaning-cards strong {
    font-size: 0.76rem;
  }

  .name-meaning-cards p {
    margin-top: 6px;
    font-size: 0.68rem;
    line-height: 1.4;
  }

  .name-meaning-divider {
    margin-top: 16px;
  }

  .name-meaning-slogan-label {
    margin-top: 13px;
    font-size: 0.9rem;
  }

  .name-meaning-slogan {
    margin-top: 7px;
    font-size: clamp(1.9rem, 2.2vw, 2.25rem);
    line-height: 1.06;
  }

  .name-meaning-scene.name-meaning-scene--photo {
    width: min(100%, clamp(500px, calc(98svh - 134px), 730px));
    max-width: none;
    margin-left: 0;
    aspect-ratio: 0.96 / 1;
  }
}

/* About page — De Sorriso para o mundo */
.about-section.about-world-section {
  --about-world-bg: #fdf4eb;
  --about-world-bg-soft: #fff8f0;
  --about-world-bg-rgb: 253, 244, 235;
  position: relative;
  min-height: clamp(820px, 56.3vw, 941px);
  padding: clamp(72px, 6.2vw, 104px) 0 clamp(54px, 4.8vw, 78px);
  overflow: hidden;
  background-color: var(--about-world-bg);
  background:
    radial-gradient(circle at 76% 12%, rgba(255, 108, 67, 0.045), transparent 28rem),
    radial-gradient(ellipse at 52% 73%, rgba(255, 250, 244, 0.68), transparent 40rem),
    linear-gradient(180deg, var(--about-world-bg-soft) 0%, var(--about-world-bg) 52%, #fff4ea 100%);
}

.about-world-section > .container {
  width: min(calc(100% - 80px), 1672px);
}

.about-world-layout {
  position: relative;
  display: grid;
  min-height: clamp(720px, 48vw, 815px);
  grid-template-columns: minmax(460px, 34%) minmax(0, 1fr) clamp(250px, 15.6vw, 278px);
  gap: clamp(10px, 1.2vw, 22px);
  align-items: center;
}

.about-world-copy {
  position: relative;
  z-index: 12;
  width: 100%;
  min-width: 0;
  max-width: 560px;
  margin-left: 0;
  padding-top: 0;
}

.about-world-eyebrow {
  margin-bottom: clamp(20px, 1.8vw, 28px);
  color: var(--coral);
  font-size: clamp(0.78rem, 0.9vw, 0.96rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.12em;
}

.about-sorriso-copy .about-world-title {
  max-width: none;
  color: var(--wine-950);
  font-family: var(--font-hero);
  font-size: clamp(4.45rem, 5.45vw, 6rem);
  line-height: 0.96;
  letter-spacing: 0;
  font-kerning: normal;
  font-feature-settings: "kern" 1;
  text-rendering: optimizeLegibility;
}

.about-world-title span {
  display: block;
  letter-spacing: 0;
  white-space: nowrap;
}

.about-world-title em {
  color: var(--rose);
  background: linear-gradient(100deg, var(--coral) 2%, var(--rose) 88%);
  font-style: normal;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-sorriso-copy .about-world-text {
  max-width: 560px;
  margin-top: clamp(22px, 1.9vw, 30px);
}

.about-sorriso-copy .about-world-text p {
  margin: 0;
  color: #3b2d37;
  font-size: clamp(0.95rem, 1.04vw, 1.06rem);
  line-height: 1.58;
}

.about-sorriso-copy .about-world-text p + p {
  margin-top: clamp(16px, 1.55vw, 22px);
}

.about-world-text strong {
  color: var(--rose);
  font-weight: 800;
}

.about-world-cta {
  min-height: clamp(52px, 3.65vw, 58px);
  margin-top: clamp(28px, 2.6vw, 38px);
  padding-inline: clamp(24px, 2.2vw, 30px);
  font-size: clamp(0.86rem, 0.9vw, 0.96rem);
}

.about-world-visual {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  height: clamp(690px, 48vw, 820px);
  margin-left: clamp(-150px, -7vw, -92px);
  overflow: visible;
  isolation: isolate;
}

.about-world-hero-art {
  position: absolute;
  z-index: 2;
  top: clamp(12px, 1.6vw, 34px);
  right: auto;
  left: clamp(-118px, -6.2vw, -74px);
  width: clamp(920px, 62vw, 1110px);
  max-width: none;
  margin: 0;
  opacity: 1;
  pointer-events: none;
  filter: saturate(1.08) contrast(1.035);
  isolation: isolate;
}

.about-world-hero-art::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: -3px;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(var(--about-world-bg-rgb), 1) 0%,
      rgba(var(--about-world-bg-rgb), 0.88) 7%,
      rgba(var(--about-world-bg-rgb), 0.42) 16%,
      rgba(var(--about-world-bg-rgb), 0.10) 28%,
      transparent 42%,
      transparent 82%,
      rgba(var(--about-world-bg-rgb), 0.18) 100%
    ),
    linear-gradient(180deg,
      rgba(var(--about-world-bg-rgb), 0.34) 0%,
      transparent 12%,
      transparent 76%,
      rgba(var(--about-world-bg-rgb), 0.92) 100%
    ),
    radial-gradient(ellipse 64% 24% at 50% 91%,
      rgba(var(--about-world-bg-rgb), 0.78) 0%,
      transparent 76%
    );
}

.about-world-hero-art img {
  display: block;
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  -webkit-mask-image:
    radial-gradient(ellipse 108% 96% at 58% 54%,
      #000 0 61%,
      rgba(0, 0, 0, 0.94) 72%,
      rgba(0, 0, 0, 0.56) 89%,
      transparent 100%
    );
  mask-image:
    radial-gradient(ellipse 108% 96% at 58% 54%,
      #000 0 61%,
      rgba(0, 0, 0, 0.94) 72%,
      rgba(0, 0, 0, 0.56) 89%,
      transparent 100%
    );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.about-world-gallery {
  position: relative;
  z-index: 9;
  display: grid;
  width: 100%;
  max-width: clamp(250px, 15.6vw, 278px);
  min-width: 0;
  grid-template-columns: 1fr;
  gap: clamp(13px, 1vw, 16px);
  justify-self: end;
  align-self: center;
  margin-top: 0;
  transform: translateY(2px);
}

.reveal-enabled .about-world-gallery.reveal.is-visible {
  transform: translateY(2px);
}

.about-world-card {
  position: relative;
  display: block;
  min-width: 0;
  aspect-ratio: 1.55 / 1;
  overflow: hidden;
  border-radius: 10px;
  background: var(--wine-900);
  box-shadow: 0 14px 32px rgba(18, 7, 22, 0.13);
}

.about-world-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
  transform: translateY(var(--world-card-y, 0%)) scale(var(--world-card-scale, 1));
  transform-origin: center center;
  transition:
    transform 0.6s var(--ease),
    filter 0.6s var(--ease);
}

.about-world-card:nth-child(1) img {
  --world-card-scale: 1.04;
  --world-card-y: 0%;
  object-position: center 54%;
}

.about-world-card:nth-child(2) img {
  --world-card-scale: 1.06;
  --world-card-y: -2%;
  object-position: center 55%;
}

.about-world-card:nth-child(3) img {
  --world-card-scale: 1.06;
  --world-card-y: -2%;
  object-position: center 60%;
}

.about-world-card:nth-child(4) img {
  --world-card-scale: 1.12;
  --world-card-y: -15%;
  object-position: 10% center;
  transform-origin: 10% center;
}

.about-world-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 46%, rgba(18, 7, 22, 0.34) 100%),
    linear-gradient(90deg, rgba(18, 7, 22, 0.08), transparent 48%);
  content: "";
  pointer-events: none;
}

.about-world-card:hover img {
  transform: translateY(var(--world-card-y, 0%)) scale(calc(var(--world-card-scale, 1) + 0.025));
  filter: saturate(1.04);
}

.about-world-card-caption {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  display: inline-flex;
  width: fit-content;
  min-width: 82%;
  max-width: calc(100% - 8px);
  min-height: clamp(38px, 2.8vw, 46px);
  align-items: center;
  gap: 10px;
  padding: 0 clamp(12px, 1vw, 18px);
  color: var(--white-soft);
  border-radius: 0 10px 0 0;
  background: linear-gradient(90deg, rgba(18, 7, 22, 0.88), rgba(18, 7, 22, 0.66));
  backdrop-filter: blur(6px);
}

.about-world-card-caption i,
.about-world-card-caption svg {
  flex: 0 0 auto;
  width: clamp(18px, 1.25vw, 22px);
  height: clamp(18px, 1.25vw, 22px);
  color: var(--white-soft);
  stroke-width: 1.8;
}

.about-world-card-caption span {
  min-width: 0;
  overflow: hidden;
  color: var(--white-soft);
  font-size: clamp(0.78rem, 0.86vw, 0.94rem);
  font-weight: 600;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 1101px) {
  .about-section.about-world-section {
    min-height: 860px;
    padding: 88px 0 54px;
  }

  .about-world-section > .container {
    width: min(calc(100% - 64px), 1760px);
  }

  .about-world-layout {
    min-height: 718px;
    grid-template-columns: minmax(0, 500px) minmax(0, 1fr) 228px;
    gap: clamp(28px, 3.4vw, 62px);
    align-items: start;
  }

  .about-world-copy {
    max-width: 500px;
    margin-top: 58px;
  }

  .about-world-eyebrow {
    margin-bottom: 54px;
    font-size: 0.949rem;
  }

  .about-sorriso-copy .about-world-title {
    font-size: clamp(68px, 4.08vw, 76px);
    line-height: 0.96;
  }

  .about-sorriso-copy .about-world-text {
    max-width: 500px;
    margin-top: 30px;
  }

  .about-sorriso-copy .about-world-text p {
    font-size: 1rem;
    line-height: 1.58;
  }

  .about-sorriso-copy .about-world-text p + p {
    margin-top: 29px;
  }

  .about-world-cta {
    min-height: 60px;
    margin-top: 47px;
    padding-inline: 32px;
    font-size: 0.94rem;
  }

  .about-world-visual {
    align-self: start;
    height: 718px;
    margin-left: clamp(-72px, -3.8vw, -38px);
  }

  .about-world-hero-art {
    top: -20px;
    left: clamp(-246px, -13vw, -172px);
    width: clamp(1160px, 69vw, 1310px);
  }

  .about-world-gallery {
    max-width: 228px;
    gap: 14px;
    align-self: start;
    isolation: isolate;
    transform: translateX(clamp(30px, 2.8vw, 58px));
  }

  .about-world-gallery::before {
    position: absolute;
    z-index: -1;
    inset: -26px -34px -30px -50px;
    background: linear-gradient(90deg, rgba(var(--about-world-bg-rgb), 0), rgba(var(--about-world-bg-rgb), 0.82) 34%, rgba(var(--about-world-bg-rgb), 1) 100%);
    content: "";
    pointer-events: none;
  }

  .reveal-enabled .about-world-gallery.reveal.is-visible {
    transform: translateX(clamp(30px, 2.8vw, 58px));
  }

  .about-world-card {
    height: auto;
    aspect-ratio: auto;
  }

  .about-world-card:nth-child(1) {
    height: 177px;
  }

  .about-world-card:nth-child(2) {
    height: 172px;
  }

  .about-world-card:nth-child(3) {
    height: 169px;
  }

  .about-world-card:nth-child(4) {
    height: 151px;
  }

  .about-world-card-caption {
    min-height: 42px;
    gap: 8px;
    padding-inline: 12px;
  }

  .about-world-card-caption svg {
    width: 19px;
    height: 19px;
  }

  .about-world-card-caption span {
    font-size: 0.79rem;
  }

  .about-world-card:nth-child(4) .about-world-card-caption {
    min-height: 42px;
  }
}

@media (max-width: 1100px) {
  .about-section.about-world-section {
    min-height: 0;
    padding: 70px 0 64px;
  }

  .about-world-section > .container {
    width: min(calc(100% - 48px), 960px);
  }

  .about-world-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: start;
    min-height: 0;
  }

  .about-world-copy {
    max-width: 620px;
    margin-left: 0;
  }

  .about-sorriso-copy .about-world-title {
    font-size: clamp(4.2rem, 9.2vw, 5.8rem);
  }

  .about-sorriso-copy .about-world-text p {
    font-size: clamp(0.98rem, 1.7vw, 1.1rem);
  }

  .about-world-visual {
    height: clamp(430px, 58vw, 540px);
    margin-left: 0;
    margin-top: 28px;
  }

  .about-world-hero-art {
    top: clamp(8px, 3.2vw, 32px);
    right: auto;
    left: 50%;
    width: min(980px, 124%);
    transform: translateX(-48%);
  }

  .about-world-gallery {
    top: auto;
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 18px);
    align-self: stretch;
    justify-self: stretch;
    margin-top: clamp(24px, 4vw, 38px);
    transform: none;
  }

  .reveal-enabled .about-world-gallery.reveal.is-visible {
    transform: none;
  }

  .about-world-card {
    height: auto;
    aspect-ratio: 1.55 / 1;
  }
}

@media (max-width: 640px) {
  .about-section.about-world-section {
    padding: 58px 0 52px;
  }

  .about-world-section > .container {
    width: calc(100% - 28px);
  }

  .about-world-eyebrow {
    margin-bottom: 14px;
    font-size: 0.66rem;
  }

  .about-sorriso-copy .about-world-title {
    font-size: clamp(2.45rem, 11vw, 3.25rem);
  }

  .about-world-title span {
    white-space: normal;
  }

  .about-sorriso-copy .about-world-text {
    margin-top: 22px;
  }

  .about-sorriso-copy .about-world-text p {
    font-size: 0.9rem;
    line-height: 1.66;
  }

  .about-sorriso-copy .about-world-text p + p {
    margin-top: 14px;
  }

  .about-world-cta {
    width: 100%;
    min-height: 48px;
    margin-top: 24px;
    padding-inline: 20px;
  }

  .about-world-visual {
    height: clamp(320px, 86vw, 370px);
    margin-top: 24px;
  }

  .about-world-hero-art {
    top: clamp(0px, 4vw, 22px);
    right: auto;
    left: 50%;
    width: 164%;
    transform: translateX(-43%);
  }

  .about-world-gallery {
    display: flex;
    gap: 12px;
    max-width: none;
    margin-top: clamp(24px, 7vw, 34px);
    padding-bottom: 4px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    transform: none;
  }

  .about-world-gallery::-webkit-scrollbar {
    display: none;
  }

  .about-world-card {
    flex: 0 0 82%;
    aspect-ratio: 1.45 / 1;
    scroll-snap-align: start;
  }

  .about-world-card-caption {
    min-width: 76%;
    min-height: 44px;
    padding-inline: 14px;
  }

  .about-world-card-caption span {
    font-size: 0.82rem;
  }
}

@media (max-width: 380px) {
  .about-sorriso-copy .about-world-title {
    font-size: 2.36rem;
  }

  .about-world-visual {
    height: 320px;
  }

  .about-world-card {
    flex-basis: 88%;
  }
}

/* About page desktop fit: keep 100% browser zoom close to the approved 80% composition. */
@media (min-width: 1101px) {
  .about-page .nav-shell {
    width: min(calc(100% - 64px), 1816px);
    min-height: 86px;
  }

  .about-page .brand-logo {
    width: clamp(204px, 12.7vw, 258px);
  }

  .about-page .main-nav {
    gap: clamp(16px, 2.1vw, 42px);
    margin-left: clamp(28px, 3vw, 52px);
  }

  .about-page .main-nav a {
    padding-block: 33px 29px;
    font-size: clamp(0.78rem, 0.78vw, 0.92rem);
  }

  .about-page .main-nav a::after {
    bottom: 24px;
  }

  .about-page .social-link {
    width: 40px;
    height: 40px;
  }

  .about-page .header-cta {
    min-width: clamp(205px, 13.8vw, 260px);
    min-height: 50px;
    padding-inline: 23px;
    font-size: clamp(0.78rem, 0.82vw, 0.92rem);
  }

  .about-section {
    padding: clamp(58px, 6vw, 96px) 0;
  }

  .about-section-head {
    max-width: 680px;
    margin-bottom: clamp(26px, 3vw, 42px);
  }

  .about-section-head .section-title {
    font-size: clamp(2rem, 3.2vw, 3.45rem);
  }

  .about-section-head .section-copy {
    font-size: 0.95rem;
    line-height: 1.68;
  }

  .about-hero {
    min-height: 680px;
    padding: 104px 0 10px;
  }

  .about-hero-inner {
    width: min(calc(100% - 72px), 1540px);
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.02fr);
    gap: 38px;
  }

  .about-hero-copy {
    max-width: 760px;
    margin-top: 44px;
  }

  .about-hero-title {
    width: min(100%, 760px);
    max-width: 760px;
    font-size: clamp(2.2rem, 2.2vw, 2.65rem);
  }

  .about-hero .lead {
    max-width: 650px;
    margin-top: 20px;
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .about-hero-actions {
    margin-top: 20px;
  }

  .about-hero-actions .btn-primary {
    width: 360px;
    min-height: 50px;
    padding-inline: 24px;
    font-size: 0.9rem;
  }

  .about-hero-visual {
    --about-benefit-height: 260px;
    --about-benefit-min-top: 230px;
    --about-benefit-stagger: 38px;
    min-height: 535px;
    margin-top: -12px;
  }

  .about-route-card {
    top: 68px;
    left: min(59%, 520px);
    width: calc(100% - min(59%, 520px));
    height: 180px;
  }

  .about-photo-card--facade {
    top: 24px;
    width: 58%;
    max-width: 520px;
    border-radius: 24px;
  }

  .about-photo-card--interior {
    left: 27%;
    width: 31%;
    max-width: 265px;
    border-radius: 18px;
  }

  .about-benefit-card {
    top: auto;
    right: 0;
    bottom: 56px;
    width: 37%;
    max-width: 300px;
    min-height: 260px;
    padding: 10px 18px;
    border-radius: 24px;
  }

  .about-benefit-card li {
    min-height: 58px;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
  }

  .about-benefit-card li > span {
    width: 36px;
    height: 36px;
  }

  .about-benefit-card svg {
    width: 19px;
    height: 19px;
  }

  .about-benefit-card strong {
    font-size: 0.78rem;
    white-space: normal;
  }

  .about-stamp {
    top: 22px;
    width: 128px;
    height: 128px;
  }

  .about-section.about-origin {
    padding: 58px 0;
  }

  .about-origin-shell {
    width: min(calc(100% - 72px), 1180px);
    grid-template-columns: minmax(390px, 0.9fr) 1px minmax(340px, 0.86fr);
    gap: 40px;
  }

  .origin-eyebrow {
    margin-bottom: 24px;
    font-size: 0.68rem;
  }

  .origin-title {
    font-size: clamp(3rem, 3.4vw, 3.72rem);
  }

  .origin-journey {
    height: 198px;
    margin-top: 22px;
  }

  .origin-place {
    min-height: 34px;
    padding: 7px 13px;
    font-size: 0.72rem;
  }

  .origin-text {
    max-width: 33rem;
  }

  .origin-text p {
    font-size: 0.94rem;
    line-height: 1.72;
  }

  .origin-text p + p {
    margin-top: 22px;
  }

  .origin-quote {
    max-width: 500px;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    margin-top: 28px;
    padding: 24px;
    border-radius: 22px;
  }

  .origin-quote-mark {
    font-size: 3rem;
  }

  .origin-quote p {
    font-size: 1.08rem;
  }

  .about-name.name-meaning-section {
    min-height: 0;
    padding: 14px 0 22px;
  }

  .name-meaning-shell {
    width: min(calc(100% - 84px), 1180px);
    grid-template-columns: minmax(0, 500px) minmax(0, 1fr);
    gap: 34px;
  }

  .name-meaning-copy {
    max-width: 500px;
  }

  .name-meaning-section .name-meaning-eyebrow {
    margin-bottom: 12px;
    font-size: 0.68rem;
  }

  .name-meaning-title {
    font-size: clamp(3rem, 3.25vw, 3.45rem);
  }

  .name-meaning-intro {
    margin-top: 14px;
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .name-meaning-cards {
    gap: 9px;
    margin-top: 10px;
  }

  .name-meaning-cards li {
    min-height: 112px;
    padding: 12px 11px 10px;
  }

  .name-meaning-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 9px;
  }

  .name-meaning-cards strong {
    font-size: 0.7rem;
  }

  .name-meaning-cards p {
    margin-top: 5px;
    font-size: 0.63rem;
    line-height: 1.35;
  }

  .name-meaning-divider {
    margin-top: 13px;
  }

  .name-meaning-slogan-label {
    margin-top: 11px;
    font-size: 0.82rem;
  }

  .name-meaning-slogan {
    margin-top: 6px;
    font-size: clamp(1.55rem, 1.8vw, 1.85rem);
  }

  .name-meaning-scene.name-meaning-scene--photo {
    width: min(100%, clamp(430px, calc(86svh - 124px), 620px));
  }

  .about-section.about-world-section {
    min-height: 790px;
    padding: 76px 0 48px;
  }

  .about-world-section > .container {
    width: min(calc(100% - 72px), 1560px);
  }

  .about-world-layout {
    min-height: 666px;
    grid-template-columns: minmax(0, 470px) minmax(0, 1fr) 210px;
    gap: clamp(34px, 3.2vw, 58px);
  }

  .about-world-copy {
    max-width: 470px;
    margin-top: 46px;
  }

  .about-world-eyebrow {
    margin-bottom: 38px;
    font-size: 0.84rem;
  }

  .about-sorriso-copy .about-world-title {
    font-size: clamp(58px, 3.55vw, 68px);
  }

  .about-sorriso-copy .about-world-text {
    max-width: 470px;
    margin-top: 26px;
  }

  .about-sorriso-copy .about-world-text p {
    font-size: 0.94rem;
    line-height: 1.56;
  }

  .about-sorriso-copy .about-world-text p + p {
    margin-top: 24px;
  }

  .about-world-cta {
    min-height: 54px;
    margin-top: 38px;
    padding-inline: 28px;
    font-size: 0.88rem;
  }

  .about-world-visual {
    height: 666px;
    margin-left: clamp(-48px, -2.6vw, -26px);
  }

  .about-world-hero-art {
    top: -4px;
    left: clamp(-198px, -10.5vw, -138px);
    width: clamp(1010px, 58vw, 1130px);
  }

  .about-world-gallery {
    max-width: 210px;
    gap: 13px;
    transform: translateX(clamp(48px, 3.4vw, 78px));
  }

  .reveal-enabled .about-world-gallery.reveal.is-visible {
    transform: translateX(clamp(48px, 3.4vw, 78px));
  }

  .about-world-card:nth-child(1) {
    height: 166px;
  }

  .about-world-card:nth-child(2) {
    height: 161px;
  }

  .about-world-card:nth-child(3) {
    height: 158px;
  }

  .about-world-card:nth-child(4) {
    height: 142px;
  }

  .about-world-card:nth-child(4) img {
    --world-card-scale: 1.02;
    --world-card-y: -3%;
    object-position: 28% center;
    transform-origin: 28% center;
  }

  .about-world-card-caption {
    min-width: 82%;
    min-height: 40px;
    gap: 8px;
    padding-inline: 11px;
  }

  .about-world-card-caption svg {
    width: 18px;
    height: 18px;
  }

  .about-world-card-caption span {
    font-size: 0.75rem;
  }

  .about-founders > .container,
  .about-beliefs > .container,
  .about-network > .container,
  .about-cta-section > .container {
    width: min(calc(100% - 72px), 1180px);
  }

  .founders-grid {
    gap: 22px;
  }

  .founder-card {
    grid-template-columns: minmax(170px, 0.62fr) minmax(0, 1fr);
    border-radius: 22px;
  }

  .founder-photo img {
    min-height: 340px;
  }

  .founder-content {
    padding: 28px;
  }

  .founder-content h3 {
    font-size: clamp(1.18rem, 1.55vw, 1.45rem);
  }

  .founder-role {
    margin: 7px 0 14px;
    font-size: 0.64rem;
  }

  .founder-content p:last-child {
    font-size: 0.86rem;
    line-height: 1.62;
  }

  .founders-quote {
    max-width: 780px;
    margin-top: 42px;
    padding-inline: 26px;
    font-size: clamp(1.22rem, 2.05vw, 1.82rem);
  }

  .founders-quote::before {
    margin-bottom: 10px;
    font-size: 3.3rem;
  }

  .beliefs-grid {
    gap: 14px;
  }

  .pillar-card {
    min-height: 240px;
    padding: 24px;
    border-radius: 22px;
  }

  .beliefs-grid .pillar-card {
    min-height: 220px;
  }

  .belief-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 30px;
  }

  .belief-icon svg {
    width: 18px;
    height: 18px;
  }

  .pillar-card h3 {
    font-size: clamp(1.08rem, 1.45vw, 1.24rem);
  }

  .pillar-card p {
    margin-top: 12px;
    font-size: 0.84rem;
    line-height: 1.6;
  }

  .about-cta-section {
    padding: 58px 0 66px;
  }

  .about-cta {
    min-height: 290px;
    padding: 44px 52px;
    gap: 32px;
    border-radius: 30px;
  }

  .about-cta h2 {
    font-size: clamp(2rem, 3.2vw, 3.4rem);
  }

  .about-cta p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .about-cta .btn {
    min-height: 52px;
  }
}

/* About world section — 100% browser zoom refinement. */
@media (min-width: 1101px) {
  .about-section.about-world-section {
    --about-world-bg: #fef5ec;
    --about-world-bg-soft: #fef5ec;
    --about-world-bg-rgb: 254, 245, 236;
    min-height: 0;
    padding: 48px 0 56px;
    background-color: #fef5ec;
    background: #fef5ec;
  }

  .about-world-section > .container {
    width: min(calc(100% - 80px), 1600px);
  }

  .about-world-layout {
    display: grid;
    min-height: 0;
    grid-template-columns: minmax(0, 540px) minmax(0, 1fr);
    grid-template-areas:
      "copy visual"
      "gallery gallery";
    column-gap: clamp(26px, 3.1vw, 54px);
    row-gap: 42px;
    align-items: start;
  }

  .about-world-copy {
    grid-area: copy;
    max-width: 540px;
    margin-top: 6px;
  }

  .about-world-eyebrow {
    margin-bottom: 26px;
    font-size: 0.84rem;
  }

  .about-sorriso-copy .about-world-title {
    font-size: clamp(70px, 5.25vw, 88px);
    line-height: 0.94;
  }

  .about-sorriso-copy .about-world-text {
    max-width: 540px;
    margin-top: 28px;
  }

  .about-sorriso-copy .about-world-text p {
    font-size: clamp(1rem, 1.04vw, 1.08rem);
    line-height: 1.58;
  }

  .about-sorriso-copy .about-world-text p + p {
    margin-top: 24px;
  }

  .about-world-cta {
    min-height: 58px;
    margin-top: 38px;
    padding-inline: 30px;
    font-size: 0.94rem;
  }

  .about-world-visual {
    grid-area: visual;
    height: clamp(550px, 39.2vw, 655px);
    margin-left: 0;
    overflow: hidden;
  }

  .about-world-hero-art {
    top: -14px;
    right: 0;
    left: auto;
    width: min(112%, 1120px);
  }

  .about-world-hero-art::after {
    background:
      linear-gradient(90deg,
        rgba(var(--about-world-bg-rgb), 1) 0%,
        rgba(var(--about-world-bg-rgb), 0.62) 4%,
        rgba(var(--about-world-bg-rgb), 0.10) 10%,
        transparent 16%,
        transparent 82%,
        rgba(var(--about-world-bg-rgb), 0.16) 100%
      ),
      linear-gradient(180deg,
        rgba(var(--about-world-bg-rgb), 0.24) 0%,
        transparent 10%,
        transparent 82%,
        rgba(var(--about-world-bg-rgb), 0.82) 100%
      ),
      radial-gradient(ellipse 64% 24% at 50% 91%,
        rgba(var(--about-world-bg-rgb), 0.62) 0%,
        transparent 76%
      );
  }

  .about-world-gallery {
    grid-area: gallery;
    display: grid;
    width: 100%;
    max-width: none;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    align-self: start;
    justify-self: stretch;
    margin-top: 0;
    transform: none;
  }

  .about-world-gallery::before {
    content: none;
  }

  .reveal-enabled .about-world-gallery.reveal.is-visible {
    transform: none;
  }

  .about-world-card,
  .about-world-card:nth-child(1) {
    height: clamp(230px, 16.8vw, 270px);
    aspect-ratio: auto;
  }

  .about-world-card:nth-child(2) {
    height: clamp(230px, 16.8vw, 270px);
  }

  .about-world-card:nth-child(3) {
    height: clamp(230px, 16.8vw, 270px);
  }

  .about-world-card:nth-child(4) {
    height: clamp(230px, 16.8vw, 270px);
  }

  .about-world-card-caption {
    min-height: 58px;
    max-width: calc(100% - 10px);
    gap: 12px;
    padding-inline: 18px;
  }

  .about-world-card-caption span {
    font-size: clamp(0.9rem, 1.06vw, 1.08rem);
  }

  .about-world-card-caption svg {
    width: 24px;
    height: 24px;
  }
}

/* Acabamento do rodapé do menu mobile */
@media (max-width: 1100px) {
  .mobile-panel .mobile-actions {
    gap: 12px;
    margin-top: 20px;
  }

  .mobile-panel .mobile-actions .socials {
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .mobile-panel .mobile-actions .social-link {
    display: grid;
    place-items: center;
    place-content: center;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    min-height: 44px;
    aspect-ratio: 1 / 1;
    padding: 0;
    color: rgba(255, 250, 244, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: rgba(155, 4, 99, 0.1);
    line-height: 0;
  }

  .mobile-panel .mobile-actions .social-link i,
  .mobile-panel .mobile-actions .social-link svg {
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    margin: 0;
    font-size: 18px;
    line-height: 1;
  }

  .mobile-panel .mobile-actions .social-link i::before {
    display: block;
    line-height: 1;
  }

  .mobile-panel .mobile-actions .btn {
    position: relative;
    width: 100%;
    height: 52px;
    min-height: 52px;
    min-width: 0;
    padding: 0 52px;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 15px;
    font-size: clamp(0.84rem, 3.7vw, 0.9rem);
    box-shadow: 0 12px 28px rgba(246, 64, 118, 0.24);
    white-space: nowrap;
  }

  .mobile-panel .mobile-actions .btn svg {
    position: absolute;
    right: 16px;
    width: 18px;
    height: 18px;
    margin: 0;
  }

  .mobile-panel .mobile-actions .social-link:focus-visible,
  .mobile-panel .mobile-actions .btn:focus-visible {
    border-color: rgba(255, 148, 66, 0.82);
  }

  .mobile-panel .mobile-actions .social-link:hover {
    color: #fff;
    border-color: rgba(255, 108, 67, 0.62);
    background: rgba(255, 108, 67, 0.14);
    transform: translateY(-2px);
  }

  .mobile-panel .mobile-actions .btn:hover {
    box-shadow: 0 16px 34px rgba(246, 64, 118, 0.3);
    transform: translateY(-2px);
  }

  .mobile-panel .mobile-actions .social-link:active {
    transform: scale(0.96);
  }

  .mobile-panel .mobile-actions .btn:active {
    transform: scale(0.99);
  }
}
