:root {
  --navy: #0d1b2a;
  --navy-dark: #050b13;
  --navy-deep: #02060b;
  --navy-soft: #14273d;
  --gold: #d4af37;
  --gold-bright: #f0ca65;
  --gold-dark: #9b7921;
  --red: #c8102e;
  --red-dark: #7f0a20;
  --cream: #f5f1e6;
  --text: #f5f1e6;
  --text-dim: #b8c0cc;
  --text-faint: #768292;
  --border: rgba(212, 175, 55, 0.22);
  --border-strong: rgba(212, 175, 55, 0.48);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  --container: 1180px;
  --radius: 22px;
  --radius-small: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(
      circle at 75% 15%,
      rgba(212, 175, 55, 0.08),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      var(--navy) 0%,
      var(--navy-dark) 72%
    );
  color: var(--text);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

section {
  scroll-margin-top: 95px;
}

.section-heading {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.section-label {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.section-heading h2,
.founders h2 {
  margin-top: 18px;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.section-heading h2 span,
.founders h2 span {
  display: block;
  color: var(--gold);
}

.section-heading > p:last-child {
  max-width: 740px;
  margin: 25px auto 0;
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.85;
}

/* ============================================================
   Cabeçalho
   ============================================================ */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding:
    0
    max(24px, calc((100vw - var(--container)) / 2));
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
  background: rgba(5, 11, 19, 0.86);
  backdrop-filter: blur(18px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.logo__symbol {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.05);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.09);
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

nav a {
  color: var(--text-dim);
  font-size: 0.82rem;
  transition:
    color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

nav a:hover {
  color: var(--gold-bright);
  transform: translateY(-2px);
}

.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.header__cta:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 54px;
  padding: 140px 24px 90px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 720px;
  height: 720px;
  right: -190px;
  top: 48%;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  transform: translateY(-50%);
  animation: orbit 28s linear infinite;
}

.hero::after {
  content: '';
  position: absolute;
  width: 440px;
  height: 440px;
  right: 20px;
  top: 48%;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 32% 30%,
      rgba(212, 175, 55, 0.12),
      rgba(13, 27, 42, 0.04) 52%,
      transparent 72%
    );
  filter: blur(8px);
  transform: translateY(-50%);
}

.hero__route {
  position: absolute;
  z-index: 1;
  width: 580px;
  height: 210px;
  right: -30px;
  top: 48%;
  border-top: 1px dashed rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.hero__route::after {
  content: '✈';
  position: absolute;
  top: -18px;
  left: 0;
  color: var(--gold);
  font-size: 1.4rem;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
  animation: fly 8s linear infinite;
}

.hero-text {
  position: relative;
  z-index: 4;
}

.subtitle {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h1 {
  max-width: 850px;
  margin-top: 24px;
  font-size: clamp(3.3rem, 7vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

h1 span {
  display: block;
  color: var(--gold);
}

.description {
  max-width: 650px;
  margin-top: 28px;
  color: var(--text-dim);
  font-size: 1.02rem;
  line-height: 1.85;
}

.buttons,
.founders__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-align: center;
  text-transform: uppercase;
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    background 0.28s var(--ease),
    border-color 0.28s var(--ease);
}

.btn-primary {
  background:
    linear-gradient(
      135deg,
      var(--gold-bright),
      var(--gold)
    );
  color: #151008;
  box-shadow: 0 16px 38px rgba(212, 175, 55, 0.22);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(212, 175, 55, 0.34);
}

.btn-secondary {
  border-color: rgba(212, 175, 55, 0.38);
  background: rgba(5, 11, 19, 0.38);
  color: var(--gold-bright);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

.hero__signature {
  margin-top: 30px;
  color: var(--text-faint);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__signature strong {
  color: var(--red);
}

.hero-world {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  min-height: 500px;
  font-size: clamp(15rem, 29vw, 27rem);
  filter:
    saturate(0.58)
    brightness(0.77)
    drop-shadow(0 28px 60px rgba(0, 0, 0, 0.48));
  opacity: 0.72;
}

/* ============================================================
   Sobre
   ============================================================ */

.about {
  padding:
    120px
    max(24px, calc((100vw - var(--container)) / 2));
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  background:
    linear-gradient(
      180deg,
      rgba(13, 27, 42, 0.8),
      var(--navy-dark)
    );
}

.about__manifesto {
  max-width: 900px;
  margin: 62px auto 0;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(
      145deg,
      rgba(20, 39, 61, 0.72),
      rgba(5, 11, 19, 0.86)
    );
  text-align: center;
  box-shadow: var(--shadow);
}

.about__manifesto p {
  color: var(--text-dim);
  font-size: 1.02rem;
  line-height: 1.85;
}

.about__manifesto strong {
  display: block;
  margin-top: 22px;
  color: var(--gold-bright);
  font-size: 1.13rem;
}

/* ============================================================
   Experiência
   ============================================================ */

.experience {
  padding:
    120px
    max(24px, calc((100vw - var(--container)) / 2));
  background: var(--navy-dark);
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.card {
  position: relative;
  min-height: 300px;
  padding: 30px 26px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(
      145deg,
      rgba(20, 39, 61, 0.82),
      rgba(5, 11, 19, 0.9)
    );
  box-shadow: var(--shadow);
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--gold),
      var(--red),
      transparent
    );
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--border-strong);
  box-shadow:
    0 32px 75px rgba(0, 0, 0, 0.5),
    0 0 34px rgba(212, 175, 55, 0.08);
}

.card:hover::before {
  opacity: 1;
}

.card__number {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.card__icon {
  display: block;
  margin-top: 38px;
  font-size: 2.35rem;
}

.card h3 {
  margin-top: 22px;
  color: var(--gold-bright);
  font-size: 1.15rem;
}

.card p {
  margin-top: 13px;
  color: var(--text-dim);
  font-size: 0.88rem;
  line-height: 1.72;
}

/* ============================================================
   3 2 1 Click
   ============================================================ */

.click-section {
  position: relative;
  padding: 130px 24px;
  overflow: hidden;
  border-block: 1px solid rgba(200, 16, 46, 0.18);
  background:
    radial-gradient(
      circle at center,
      rgba(200, 16, 46, 0.14),
      transparent 38%
    ),
    linear-gradient(
      180deg,
      var(--navy-dark),
      var(--navy-deep)
    );
  text-align: center;
}

.click-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  left: 50%;
  top: 50%;
  border: 2px dashed rgba(200, 16, 46, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
}

.click-section__route,
.click-section__intro,
.click-section h2,
.click-section > p:last-child {
  position: relative;
  z-index: 2;
}

.click-section__route {
  display: flex;
  justify-content: center;
  gap: 32px;
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.click-section__intro {
  margin-top: 38px;
  color: var(--text-dim);
}

.click-section h2 {
  margin-top: 22px;
  color: var(--cream);
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.click-section h2 span {
  color: var(--gold);
}

.click-section h2 strong {
  color: var(--red);
  text-transform: uppercase;
}

.click-section > p:last-child {
  margin-top: 28px;
  color: var(--text-dim);
}

/* ============================================================
   Boutique de Bordo
   ============================================================ */

.boutique {
  position: relative;
  overflow: hidden;
  padding:
    126px
    max(24px, calc((100vw - var(--container)) / 2));
  background:
    linear-gradient(180deg, rgba(20, 39, 61, 0.38), transparent 24%),
    var(--navy-dark);
}

.boutique::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  left: -270px;
  top: 18%;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(212, 175, 55, 0.025), 0 0 0 68px rgba(212, 175, 55, 0.018);
}

.boutique-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 56px;
}

.boutique-card {
  position: relative;
  min-height: 286px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 22px 22px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius-small);
  background:
    linear-gradient(145deg, rgba(20, 39, 61, 0.84), rgba(5, 11, 19, 0.82));
  transition:
    transform 0.32s var(--ease),
    border-color 0.32s var(--ease),
    box-shadow 0.32s var(--ease);
}

.boutique-card:hover {
  transform: translateY(-7px);
  border-color: var(--border-strong);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.32);
}

.boutique-card > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.06);
  color: var(--gold-bright);
  font-size: 1.45rem;
}

.boutique-card h3 {
  margin-top: 28px;
  color: var(--cream);
  font-size: 1rem;
  line-height: 1.25;
}

.boutique-card p {
  margin-top: 10px;
  color: var(--text-dim);
  font-size: 0.82rem;
  line-height: 1.7;
}

.boutique-card small {
  margin-top: auto;
  padding-top: 20px;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* ============================================================
   Página Boutique
   ============================================================ */

.boutique-page {
  background:
    radial-gradient(circle at 88% 11%, rgba(200, 16, 46, 0.09), transparent 24%),
    var(--navy-deep);
}

.boutique-hero {
  position: relative;
  max-width: var(--container);
  min-height: 88vh;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 70px;
  padding: 142px 24px 90px;
  overflow: hidden;
}

.boutique-hero::before {
  content: '';
  position: absolute;
  width: 680px;
  height: 680px;
  right: -260px;
  top: 52%;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 50%;
  transform: translateY(-50%);
}

.boutique-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.boutique-hero__copy {
  position: relative;
  z-index: 2;
}

.boutique-hero h1 {
  max-width: 740px;
}

.baggage-tag {
  position: relative;
  z-index: 2;
  width: min(100%, 360px);
  min-height: 440px;
  justify-self: center;
  padding: 58px 38px 34px;
  border: 1px solid rgba(23, 32, 43, 0.28);
  border-radius: 18px;
  background: var(--cream);
  color: #17202b;
  box-shadow: 24px 30px 0 rgba(212, 175, 55, 0.14), var(--shadow);
  transform: rotate(5deg);
}

.baggage-tag::after {
  content: '';
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  width: 1px;
  border-left: 1px dashed rgba(23, 32, 43, 0.24);
}

.baggage-tag__hole {
  position: absolute;
  top: 24px;
  left: 50%;
  width: 19px;
  height: 19px;
  border: 5px solid rgba(23, 32, 43, 0.18);
  border-radius: 50%;
  transform: translateX(-50%);
}

.baggage-tag p,
.baggage-tag small,
.baggage-tag__route span {
  color: #68717c;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.baggage-tag strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 0.88;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.baggage-tag__route {
  display: grid;
  gap: 6px;
  margin-top: 64px;
  padding-top: 18px;
  border-top: 1px dashed rgba(23, 32, 43, 0.28);
}

.baggage-tag__route b {
  font-size: 0.92rem;
}

.baggage-tag__route span:nth-of-type(2) {
  margin-top: 10px;
}

.baggage-tag > small {
  position: absolute;
  right: 14px;
  bottom: 34px;
  writing-mode: vertical-rl;
}

.boutique-catalog {
  padding:
    126px
    max(24px, calc((100vw - var(--container)) / 2));
  background: var(--navy-dark);
}

.boutique-catalog__heading {
  max-width: 760px;
}

.boutique-products {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-top: 58px;
}

.product-card {
  grid-column: span 2;
  min-height: 326px;
  display: flex;
  flex-direction: column;
  padding: 24px 22px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-small);
  background: linear-gradient(145deg, rgba(20, 39, 61, 0.7), rgba(5, 11, 19, 0.9));
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.product-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.34);
}

.product-card--featured {
  border-color: rgba(212, 175, 55, 0.5);
  background: linear-gradient(145deg, rgba(60, 50, 21, 0.64), rgba(5, 11, 19, 0.9));
}

.product-card__topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card__topline small {
  color: var(--text-faint);
  font-size: inherit;
  text-align: right;
}

.product-card__icon {
  margin-top: 34px;
  font-size: 2.7rem;
  filter: saturate(0.68);
}

.product-card h3 {
  margin-top: 22px;
  color: var(--gold-bright);
  font-size: 1.08rem;
  line-height: 1.25;
}

.product-card p {
  margin-top: 11px;
  color: var(--text-dim);
  font-size: 0.82rem;
  line-height: 1.7;
}

.product-card__status {
  margin-top: auto;
  padding-top: 22px;
  color: var(--text-faint);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-card--featured .product-card__status {
  color: var(--gold);
}

.boutique-notice {
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 72px 24px 110px;
}

.boutique-notice__mark {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.boutique-notice h2 {
  margin-top: 12px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.boutique-notice h2 span {
  color: var(--gold);
}

.boutique-notice p:last-child {
  max-width: 650px;
  margin-top: 13px;
  color: var(--text-dim);
  font-size: 0.86rem;
}

/* ============================================================
   Fundadores
   ============================================================ */

.founders {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 62px;
  align-items: center;
  padding:
    130px
    max(24px, calc((100vw - var(--container)) / 2));
  background:
    radial-gradient(
      circle at 85% 50%,
      rgba(212, 175, 55, 0.09),
      transparent 30%
    ),
    var(--navy);
}

.founders__lead {
  max-width: 670px;
  margin-top: 26px;
  color: var(--text-dim);
  line-height: 1.85;
}

.founders__benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 34px;
}

.founders__benefits article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: var(--radius-small);
  background: rgba(5, 11, 19, 0.35);
}

.founders__benefits article > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
}

.founders__benefits h3 {
  color: var(--cream);
  font-size: 0.98rem;
}

.founders__benefits p {
  margin-top: 5px;
  color: var(--text-dim);
  font-size: 0.84rem;
  line-height: 1.65;
}

.founders__notice {
  margin-top: 18px;
  color: var(--text-faint);
  font-size: 0.75rem;
}

.boarding-pass {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: var(--cream);
  color: #17202b;
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.5),
    0 0 50px rgba(212, 175, 55, 0.08);
  transform: rotate(2deg);
  transition: transform 0.4s var(--ease);
}

.boarding-pass:hover {
  transform: rotate(0deg) translateY(-5px);
}

.boarding-pass__top,
.boarding-pass__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  background: var(--navy-soft);
  color: var(--cream);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.boarding-pass__main {
  padding: 40px 30px 34px;
}

.boarding-pass__label {
  color: var(--red);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.boarding-pass__main > strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(2.6rem, 5vw, 4.3rem);
  line-height: 1;
  text-transform: uppercase;
}

.boarding-pass__data {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px dashed rgba(23, 32, 43, 0.3);
}

.boarding-pass__data span {
  display: block;
  color: #68717c;
  font-size: 0.58rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.boarding-pass__data strong {
  display: block;
  margin-top: 5px;
  font-size: 0.84rem;
}

.boarding-pass__stamp {
  position: absolute;
  right: 24px;
  top: 80px;
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  border: 5px double rgba(200, 16, 46, 0.75);
  border-radius: 50%;
  color: rgba(200, 16, 46, 0.82);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-15deg);
}

/* ============================================================
   Redes
   ============================================================ */

.connections {
  padding:
    120px
    max(24px, calc((100vw - var(--container)) / 2));
  background: var(--navy-dark);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 940px;
  margin: 54px auto 0;
}

.social-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background:
    linear-gradient(
      145deg,
      rgba(20, 39, 61, 0.72),
      rgba(5, 11, 19, 0.82)
    );
  transition:
    transform 0.32s var(--ease),
    border-color 0.32s var(--ease),
    box-shadow 0.32s var(--ease);
}

.social-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.36);
}

.social-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--gold-bright);
  font-size: 1.15rem;
  font-weight: 800;
}

.social-card div > span {
  display: block;
  color: var(--text-faint);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-card div > strong {
  display: block;
  margin-top: 4px;
  color: var(--cream);
  font-size: 1rem;
}

.social-card__arrow {
  color: var(--gold);
  font-size: 1.15rem;
}

/* ============================================================
   Rodapé
   ============================================================ */

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding:
    38px
    max(24px, calc((100vw - var(--container)) / 2));
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  background: var(--navy-deep);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer__brand > span {
  font-size: 1.5rem;
}

.footer__brand strong {
  color: var(--gold-bright);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.footer__brand p {
  color: var(--text-faint);
  font-size: 0.7rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: var(--text-dim);
  font-size: 0.73rem;
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__legal {
  color: var(--text-faint);
  font-size: 0.68rem;
  text-align: right;
}

/* ============================================================
   Animações
   ============================================================ */

@keyframes orbit {
  from {
    transform: translateY(-50%) rotate(0deg);
  }

  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

@keyframes fly {
  from {
    left: 0;
  }

  to {
    left: calc(100% - 30px);
  }
}

/* ============================================================
   Responsividade
   ============================================================ */

@media (max-width: 1050px) {
  nav,
  .header__cta {
    display: none;
  }

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

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

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

  .boarding-pass {
    max-width: 620px;
    transform: none;
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer__legal {
    text-align: center;
  }
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .boutique-hero {
    grid-template-columns: 1fr;
    gap: 38px;
    text-align: center;
  }

  .boutique-hero .description {
    margin-inline: auto;
  }

  .boutique-hero .buttons {
    justify-content: center;
  }

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

  .product-card,
  .product-card:nth-child(4) {
    grid-column: auto;
  }

  .description {
    margin-inline: auto;
  }

  .buttons {
    justify-content: center;
  }

  .hero-world {
    min-height: 310px;
    font-size: 15rem;
  }

  .hero__route {
    left: 50%;
    right: auto;
    bottom: 155px;
    top: auto;
    transform: translateX(-50%) rotate(-8deg);
  }

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

@media (max-width: 620px) {
  .header {
    min-height: 72px;
  }

  .hero {
    padding-top: 112px;
  }

  .boutique-hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 76px;
  }

  .boutique-hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .baggage-tag {
    min-height: 390px;
    padding-inline: 28px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .buttons,
  .founders__actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .about,
  .experience,
  .connections {
    padding-block: 86px;
  }

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

  .boutique {
    padding-block: 86px;
  }

  .boutique-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .boutique-products {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .boutique-notice {
    grid-template-columns: 1fr;
    justify-items: start;
    padding-top: 68px;
  }

  .boutique-notice .btn-primary {
    width: 100%;
  }

  .card {
    min-height: auto;
  }

  .click-section {
    padding-block: 100px;
  }

  .click-section__route {
    gap: 12px;
    font-size: 0.56rem;
  }

  .founders {
    padding-block: 94px;
  }

  .boarding-pass__data {
    grid-template-columns: 1fr;
  }

  .boarding-pass__stamp {
    position: relative;
    right: auto;
    top: auto;
    margin: 0 auto 28px;
  }

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

  .social-card__arrow {
    display: none;
  }

  .footer__links {
    flex-direction: column;
    gap: 10px;
  }
}

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

  .hero::before,
  .hero__route::after {
    animation: none;
  }

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

/* ============================================================
   Boutique de Bordo — página exclusiva
   ============================================================ */

.boutique-page {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(212, 175, 55, 0.11),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #0d1b2a 0%,
      #050b13 72%,
      #02060b 100%
    );
  color: var(--text);
}

/* Cabeçalho da Boutique */

.boutique-page .header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:
    0
    max(24px, calc((100vw - var(--container)) / 2));
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
  background: rgba(5, 11, 19, 0.88);
  backdrop-filter: blur(18px);
}

.boutique-page .logo {
  color: var(--cream);
}

.boutique-page nav a {
  color: var(--text-dim);
}

.boutique-page nav a:hover {
  color: var(--gold-bright);
}

/* Hero da Boutique */

.boutique-page .hero {
  position: relative;
  min-height: 82vh;
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 54px;
  padding: 140px 24px 90px;
  overflow: hidden;
}

.boutique-page .hero::before {
  content: '';
  position: absolute;
  width: 650px;
  height: 650px;
  right: -170px;
  top: 48%;
  border: 1px solid rgba(212, 175, 55, 0.11);
  border-radius: 50%;
  transform: translateY(-50%);
}

.boutique-page .hero-text {
  position: relative;
  z-index: 3;
}

.boutique-page .subtitle {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.boutique-page h1 {
  margin-top: 24px;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.boutique-page h1 span {
  display: block;
  color: var(--gold);
}

.boutique-page .description {
  max-width: 680px;
  margin-top: 28px;
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.85;
  white-space: normal;
}

.boutique-page .hero-world {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 440px;
  font-size: clamp(11rem, 23vw, 20rem);
  filter:
    saturate(0.65)
    brightness(0.88)
    drop-shadow(0 26px 55px rgba(0, 0, 0, 0.45));
}

/* Área de produtos */

.boutique-page .boutique,
.boutique-page .coming {
  padding:
    120px
    max(24px, calc((100vw - var(--container)) / 2));
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  background:
    linear-gradient(
      180deg,
      rgba(13, 27, 42, 0.82),
      var(--navy-dark)
    );
}

.boutique-page .section-heading {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.boutique-page .section-label {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.boutique-page .section-heading h2,
.boutique-page .coming h2 {
  margin-top: 18px;
  color: var(--cream);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-align: center;
}

.boutique-page .section-heading h2 span {
  display: block;
  color: var(--gold);
}

.boutique-page .section-heading p {
  max-width: 740px;
  margin: 25px auto 0;
  color: var(--text-dim);
  line-height: 1.85;
}

/* Grade da Boutique */

.boutique-page .boutique-grid,
.boutique-page .cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--container);
  margin: 54px auto 0;
}

.boutique-page .boutique-card,
.boutique-page .card {
  position: relative;
  min-height: 285px;
  padding: 30px 26px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(
      145deg,
      rgba(20, 39, 61, 0.84),
      rgba(5, 11, 19, 0.92)
    );
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.boutique-page .boutique-card::before,
.boutique-page .card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--gold),
      var(--red),
      transparent
    );
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.boutique-page .boutique-card:hover,
.boutique-page .card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow:
    0 34px 75px rgba(0, 0, 0, 0.5),
    0 0 32px rgba(212, 175, 55, 0.08);
}

.boutique-page .boutique-card:hover::before,
.boutique-page .card:hover::before {
  opacity: 1;
}

.boutique-page .boutique-card > span:first-child,
.boutique-page .card > :first-child {
  display: block;
  font-size: 2.45rem;
}

.boutique-page .boutique-card h3,
.boutique-page .card h3 {
  margin-top: 22px;
  color: var(--gold-bright);
  font-size: 1.12rem;
}

.boutique-page .boutique-card p,
.boutique-page .card p {
  margin-top: 13px;
  color: var(--text-dim);
  font-size: 0.88rem;
  line-height: 1.72;
}

.boutique-page .boutique-card small {
  display: inline-flex;
  margin-top: 24px;
  padding: 8px 12px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Rodapé */

.boutique-page footer {
  padding:
    38px
    max(24px, calc((100vw - var(--container)) / 2));
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  background: var(--navy-deep);
  color: var(--text-dim);
  text-align: center;
}

/* Responsividade */

@media (max-width: 1050px) {
  .boutique-page .boutique-grid,
  .boutique-page .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .boutique-page .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .boutique-page .description {
    margin-inline: auto;
  }

  .boutique-page .hero-world {
    min-height: 280px;
    font-size: 12rem;
  }
}

@media (max-width: 620px) {
  .boutique-page .header {
    min-height: 72px;
  }

  .boutique-page .hero {
    padding-top: 112px;
  }

  .boutique-page h1 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .boutique-page .boutique,
  .boutique-page .coming {
    padding-block: 86px;
  }

  .boutique-page .boutique-grid,
  .boutique-page .cards {
    grid-template-columns: 1fr;
  }

  .boutique-page .boutique-card,
  .boutique-page .card {
    min-height: auto;
  }
}

/* ============================================================
   PASSPORT RADIO — SISTEMA VISUAL DEFINITIVO
   Versão pública / main
   Fotografia editorial, museu documental e Boutique de Bordo
   ============================================================ */

:root {
  --black: #02060b;
  --black-soft: #050b13;
  --navy: #081522;
  --navy-soft: #102438;
  --navy-light: #18324a;
  --gold: #d4af37;
  --gold-light: #f0ca65;
  --gold-dark: #8f6d19;
  --red: #d30935;
  --cream: #f4f0e6;
  --white: #ffffff;
  --text: #f4f0e6;
  --text-soft: #c4ccd6;
  --text-faint: #788696;
  --line: rgba(212, 175, 55, 0.18);
  --line-strong: rgba(212, 175, 55, 0.48);
  --panel: rgba(8, 21, 34, 0.88);
  --panel-strong: rgba(5, 11, 19, 0.95);
  --shadow-small: 0 18px 46px rgba(0, 0, 0, 0.34);
  --shadow-large: 0 34px 100px rgba(0, 0, 0, 0.58);
  --container: 1220px;
  --radius: 18px;
  --radius-small: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { background: var(--black); }

body {
  background:
    radial-gradient(circle at 82% 7%, rgba(212, 175, 55, 0.08), transparent 24%),
    linear-gradient(180deg, #07131f 0%, #02060b 42%, #02060b 100%);
  color: var(--text);
}

body::selection {
  background: rgba(212, 175, 55, 0.35);
  color: var(--white);
}

img {
  width: 100%;
  height: auto;
}

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

.section-pad {
  padding-block: clamp(86px, 10vw, 150px);
}

.eyebrow {
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-intro {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.section-intro--left {
  margin-inline: 0;
  text-align: left;
}

.section-intro h2,
.manifesto-grid h2,
.map-feature__copy h2,
.founder-feature__copy h2,
.final-boarding h2 {
  margin-top: 18px;
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.9rem, 6vw, 5.8rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.section-intro h2 span,
.manifesto-grid h2 span,
.map-feature__copy h2 span,
.founder-feature__copy h2 span,
.final-boarding h2 span {
  display: block;
  color: var(--gold);
}

.section-intro > p:last-child {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.85;
}

.section-intro--left > p:last-child { margin-inline: 0; }

.header,
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-inline: max(24px, calc((100vw - var(--container)) / 2));
  border-bottom: 1px solid rgba(212, 175, 55, 0.13);
  background: rgba(2, 6, 11, 0.9);
  backdrop-filter: blur(20px);
}

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

.logo__symbol,
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.05);
  color: var(--gold-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.logo,
.brand-copy strong {
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--text-faint);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
}

.main-nav,
.site-header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 26px);
}

.main-nav a,
.site-header nav a {
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.main-nav a:hover,
.site-header nav a:hover {
  color: var(--gold-light);
  transform: translateY(-2px);
}

.header-action,
.header__cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--gold-light);
  font: inherit;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.hero__route,
.hero__route::after,
.card__icon,
.product-card__icon,
.social-card__icon,
.boutique-card > span:first-child,
.boutique-page .boutique-card > span:first-child,
.boutique-page .card > :first-child {
  display: none !important;
}

.hero-world {
  font-size: 0 !important;
  min-height: 0;
}

.cinematic-hero {
  position: relative;
  min-height: min(940px, 100vh);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  background: var(--black);
}

.cinematic-hero__image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.06) brightness(0.72);
}

.cinematic-hero__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 6, 11, 0.96) 0%, rgba(2, 6, 11, 0.72) 48%, rgba(2, 6, 11, 0.18) 100%),
    linear-gradient(0deg, rgba(2, 6, 11, 1) 0%, transparent 42%);
}

.cinematic-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

.cinematic-hero__content {
  padding-top: 170px;
  padding-bottom: 145px;
}

.cinematic-hero h1 {
  max-width: 940px;
  margin-top: 20px;
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4.2rem, 9vw, 8.6rem);
  font-weight: 700;
  line-height: 0.84;
  letter-spacing: -0.045em;
  text-transform: none;
  text-wrap: balance;
}

.cinematic-hero h1 span {
  display: block;
  color: var(--gold);
}

.hero-lead {
  max-width: 720px;
  margin-top: 30px;
  color: #d1d7df;
  font-size: clamp(0.96rem, 1.6vw, 1.08rem);
  line-height: 1.9;
}

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}

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

.button--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #171108;
  box-shadow: 0 18px 42px rgba(212, 175, 55, 0.24);
}

.button--glass {
  border-color: var(--line-strong);
  background: rgba(2, 6, 11, 0.48);
  color: var(--gold-light);
  backdrop-filter: blur(12px);
}

.hero-ritual {
  margin-top: 28px;
  color: var(--text-faint);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-ritual strong { color: var(--red); }

.hero-status {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 11, 0.72);
  backdrop-filter: blur(18px);
}

.hero-status span {
  min-height: 74px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 14px 22px;
  border-right: 1px solid var(--line);
  color: var(--cream);
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-status span:last-child { border-right: 0; }

.hero-status small {
  color: var(--text-faint);
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.manifesto-section {
  background:
    radial-gradient(circle at 10% 30%, rgba(212, 175, 55, 0.06), transparent 28%),
    var(--black);
  border-bottom: 1px solid var(--line);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.manifesto-copy { padding-top: 22px; }

.manifesto-copy p {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.9;
}

.manifesto-copy p + p { margin-top: 24px; }
.manifesto-copy strong { color: var(--gold-light); }

.map-feature { background: var(--navy); }

.map-feature__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}

.map-feature__media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-large);
}

.map-feature__media img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.05);
  transition: transform 1.2s var(--ease);
}

.map-feature__media:hover img { transform: scale(1.03); }

.map-feature__copy p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--text-soft);
  line-height: 1.9;
}

.text-link {
  display: inline-block;
  margin-top: 26px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.collections {
  background:
    radial-gradient(circle at 90% 8%, rgba(212, 175, 55, 0.06), transparent 24%),
    var(--black);
}

.collection-stack {
  display: grid;
  gap: 42px;
  margin-top: 64px;
}

.collection-panel {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-strong);
  box-shadow: var(--shadow-large);
}

.collection-panel--reverse { grid-template-columns: 0.65fr 1.35fr; }
.collection-panel--reverse img { order: 2; }

.collection-panel > img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.8) contrast(1.05);
  transition: transform 1.1s var(--ease), filter 1.1s var(--ease);
}

.collection-panel:hover > img {
  transform: scale(1.025);
  filter: saturate(0.92) brightness(0.9) contrast(1.04);
}

.collection-panel__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(34px, 5vw, 64px);
}

.collection-number {
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.collection-panel h3 {
  margin-top: 14px;
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.3rem, 4.4vw, 4.8rem);
  line-height: 0.98;
}

.collection-panel__content p:not(.collection-number) {
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.8;
}

.destinations-showcase {
  background:
    linear-gradient(180deg, rgba(16, 36, 56, 0.46), transparent 25%),
    var(--black);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 60px;
}

.story-card {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: var(--shadow-small);
}

.story-card--wide {
  grid-column: 1 / -1;
  min-height: 720px;
}

.story-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.72) contrast(1.06);
  transition: transform 1.2s var(--ease), filter 1.2s var(--ease);
}

.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 11, 0.98) 0%, rgba(2, 6, 11, 0.62) 38%, transparent 74%);
}

.story-card:hover > img {
  transform: scale(1.035);
  filter: saturate(0.95) brightness(0.8) contrast(1.04);
}

.story-card__body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(30px, 5vw, 56px);
}

.story-card small {
  color: var(--gold-light);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-card h3 {
  margin-top: 12px;
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 5.4rem);
  line-height: 0.92;
}

.story-card p {
  max-width: 690px;
  margin-top: 16px;
  color: #d0d5dc;
  font-size: 0.9rem;
  line-height: 1.8;
}

.collections-hub {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 12%, rgba(212, 175, 55, 0.08), transparent 28%),
    var(--black);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 60px;
}

.collection-card {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: var(--shadow-small);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.collection-card:hover {
  transform: translateY(-8px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-large);
}

.collection-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.66) saturate(0.82);
  transition: transform 1.1s var(--ease), filter 1.1s var(--ease);
}

.collection-card:hover > img {
  transform: scale(1.04);
  filter: brightness(0.76) saturate(0.96);
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 11, 0.98) 0%, rgba(2, 6, 11, 0.62) 42%, transparent 78%);
}

.collection-card__overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 40px;
}

.collection-card__overlay small {
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.collection-card__overlay h3 {
  margin-top: 10px;
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 0.96;
}

.collection-card__overlay p {
  max-width: 570px;
  margin-top: 14px;
  color: #cbd2da;
  font-size: 0.88rem;
  line-height: 1.75;
}

.collection-card__overlay span {
  display: inline-block;
  margin-top: 22px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.boutique-page,
.boutique {
  background:
    radial-gradient(circle at 84% 10%, rgba(212, 175, 55, 0.08), transparent 24%),
    var(--black);
}

.boutique-hero {
  min-height: 860px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 170px max(24px, calc((100vw - var(--container)) / 2)) 110px;
  background:
    linear-gradient(90deg, rgba(2, 6, 11, 0.98), rgba(2, 6, 11, 0.46)),
    url("../images/kit-passport-radio.png") center / cover no-repeat;
}

.boutique-hero::before,
.boutique-hero::after { display: none; }

.boutique-hero__copy { max-width: 760px; }

.boutique-hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 9vw, 8.4rem);
  line-height: 0.86;
  text-transform: none;
}

.baggage-tag { display: none; }

.boutique-products,
.boutique-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 60px;
}

.product-card,
.boutique-card {
  min-height: 500px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(0deg, rgba(2, 6, 11, 0.96), rgba(2, 6, 11, 0.36)),
    var(--navy);
  box-shadow: var(--shadow-small);
}

.product-card::before,
.boutique-card::before {
  content: "";
  position: absolute;
  inset: 0;
  height: auto;
  background: linear-gradient(0deg, rgba(2, 6, 11, 0.94), transparent 65%);
  opacity: 1;
  pointer-events: none;
}

.product-card > *,
.boutique-card > * {
  position: relative;
  z-index: 2;
}

.product-card h3,
.boutique-card h3 {
  margin-top: 12px;
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  line-height: 0.98;
}

.product-card p,
.boutique-card p {
  max-width: 620px;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.75;
}

.founder-feature {
  background:
    radial-gradient(circle at 86% 28%, rgba(212, 175, 55, 0.08), transparent 28%),
    var(--navy);
}

.founder-feature__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}

.founder-feature__media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-large);
}

.founder-feature__media img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.82) brightness(0.84);
}

.founder-feature__copy > p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--text-soft);
  line-height: 1.9;
}

.final-boarding {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at center, rgba(200, 16, 46, 0.11), transparent 30%),
    var(--black);
  text-align: center;
}

.final-boarding__inner { max-width: 980px; }

.final-boarding__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

footer,
.site-footer {
  padding: 44px max(24px, calc((100vw - var(--container)) / 2));
  border-top: 1px solid var(--line);
  background: #010408;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.site-footer nav a {
  color: var(--text-faint);
  font-size: 0.66rem;
}

.site-footer p {
  color: var(--text-faint);
  font-size: 0.62rem;
  text-align: right;
}

.hero img,
.about img,
.experience img,
.boutique img,
.founders img,
.connections img {
  max-height: 100%;
  object-fit: cover;
}

.card,
.product-card,
.boutique-card {
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.card:hover,
.product-card:hover,
.boutique-card:hover {
  transform: translateY(-7px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-large);
}

@media (max-width: 1080px) {
  .main-nav,
  .site-header nav,
  .header nav,
  .header-action,
  .header__cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav.is-open,
  .site-header nav.is-open {
    position: absolute;
    top: 78px;
    right: 20px;
    left: 20px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-small);
    background: rgba(2, 6, 11, 0.98);
    box-shadow: var(--shadow-large);
  }

  .main-nav.is-open a,
  .site-header nav.is-open a {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  }

  .main-nav.is-open a:last-child,
  .site-header nav.is-open a:last-child { border-bottom: 0; }

  .collection-panel,
  .collection-panel--reverse { grid-template-columns: 1fr; }

  .collection-panel--reverse img { order: 0; }

  .collection-panel > img { min-height: 460px; }
}

@media (max-width: 860px) {
  .shell { width: min(calc(100% - 34px), var(--container)); }

  .cinematic-hero { min-height: 880px; }

  .cinematic-hero__veil {
    background:
      linear-gradient(0deg, rgba(2, 6, 11, 1) 0%, rgba(2, 6, 11, 0.66) 58%, rgba(2, 6, 11, 0.38) 100%);
  }

  .cinematic-hero__content {
    padding-top: 135px;
    padding-bottom: 200px;
  }

  .hero-status { grid-template-columns: repeat(2, 1fr); }
  .hero-status span:nth-child(2) { border-right: 0; }
  .hero-status span:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }

  .manifesto-grid,
  .map-feature__grid,
  .founder-feature__grid { grid-template-columns: 1fr; }

  .story-grid,
  .collections-grid,
  .boutique-products,
  .boutique-grid { grid-template-columns: 1fr; }

  .story-card--wide { grid-column: auto; }

  .collection-panel,
  .story-card,
  .story-card--wide,
  .collection-card { min-height: 520px; }

  .site-footer__grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer p { text-align: center; }
}

@media (max-width: 620px) {
  .header,
  .site-header {
    min-height: 70px;
    padding-inline: 16px;
  }

  .brand-copy small { display: none; }

  .main-nav.is-open,
  .site-header nav.is-open {
    top: 70px;
    right: 12px;
    left: 12px;
  }

  .section-pad { padding-block: 78px; }

  .cinematic-hero { min-height: 820px; }

  .cinematic-hero__content {
    padding-top: 118px;
    padding-bottom: 210px;
  }

  .cinematic-hero h1 {
    font-size: clamp(3.45rem, 17vw, 5.2rem);
  }

  .hero-actions,
  .final-boarding__actions { flex-direction: column; }

  .button { width: 100%; }

  .hero-status span {
    min-height: 68px;
    padding: 12px 14px;
  }

  .collection-panel > img { min-height: 330px; }

  .collection-panel__content,
  .story-card__body,
  .collection-card__overlay,
  .product-card,
  .boutique-card { padding: 26px; }

  .story-card,
  .story-card--wide,
  .collection-card { min-height: 430px; }

  .founder-feature__media img { aspect-ratio: 4 / 4.7; }

  footer,
  .site-footer { padding-block: 34px; }
}

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

/* ==========================================================================
   PASSPORT RADIO — ROUTE 66 DEFINITIVE BRAND OVERRIDE
   Commit: feat(brand): propagate definitive Route 66 identity across all tabs
   Scope: shared site header + footer on pages using /css/style.css
   Asset: /images/passport-radio-definitive.jpg
   ========================================================================== */

/* Header base: turns every shared site header dark so the black logo artwork
   integrates cleanly instead of looking like a pasted rectangle. */
html body .site-header {
  min-height: 82px !important;
  background: rgba(8, 8, 8, 0.985) !important;
  border-bottom-color: #252525 !important;
  color: #fff !important;
}

/* Definitive Route 66 logo replaces every legacy PR circle.
   Important declarations intentionally beat page-specific inline styles. */
html body .site-header .brand {
  min-width: 190px !important;
  gap: 0 !important;
}

html body .site-header .brand .brand-mark,
html body.live-page .site-header .brand .brand-mark,
html body .header .brand .brand-mark {
  display: block !important;
  width: 178px !important;
  height: 72px !important;
  min-width: 178px !important;
  max-width: 178px !important;
  aspect-ratio: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  background:
    url("/images/passport-radio-definitive.jpg")
    left center / contain no-repeat !important;
  box-shadow: none !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  letter-spacing: 0 !important;
  overflow: hidden !important;
}

/* The artwork already contains PASSPORT RADIO, so old copy must not duplicate it. */
html body .site-header .brand > span:not(.brand-mark),
html body .site-header .brand .brand-copy,
html body.live-page .site-header .brand > span:not(.brand-mark),
html body .site-header .brand strong,
html body .site-header .brand small {
  display: none !important;
}

/* Navigation remains readable against the definitive dark header,
   including pages that previously forced a white header. */
html body .site-header .main-nav a,
html body .site-header nav a,
html body.live-page .site-header .main-nav a {
  color: #f3f0e8 !important;
}

html body .site-header .main-nav a:hover,
html body .site-header nav a:hover,
html body.live-page .site-header .main-nav a:hover {
  color: #d71920 !important;
}

/* ON AIR / header action keeps the existing control but belongs to the dark header. */
html body .site-header .header-chip,
html body .site-header .header-action,
html body.live-page .site-header .header-chip {
  border-color: #3a3a3a !important;
  background: #111 !important;
  color: #fff !important;
}

/* Footer receives the same definitive brand instead of the legacy PR circle. */
html body .site-footer .brand .brand-mark,
html body .site-footer .brand-mark {
  display: block !important;
  width: 190px !important;
  height: 92px !important;
  min-width: 190px !important;
  max-width: 190px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background:
    url("/images/passport-radio-definitive.jpg")
    left center / contain no-repeat !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  box-shadow: none !important;
}

html body .site-footer .brand > span:not(.brand-mark),
html body .site-footer .brand .brand-copy {
  display: none !important;
}

/* Mobile: keep the full winged mark visible without squeezing navigation. */
@media (max-width: 760px) {
  html body .site-header {
    min-height: 72px !important;
  }

  html body .site-header .brand {
    min-width: 128px !important;
  }

  html body .site-header .brand .brand-mark,
  html body.live-page .site-header .brand .brand-mark,
  html body .header .brand .brand-mark {
    width: 128px !important;
    height: 58px !important;
    min-width: 128px !important;
    max-width: 128px !important;
  }

  html body .site-header .main-nav,
  html body.live-page .site-header .main-nav,
  html body .site-header nav {
    top: 72px !important;
    background: #0b0b0b !important;
    border-bottom-color: #2c2c2c !important;
  }

  html body .site-header .main-nav a,
  html body.live-page .site-header .main-nav a,
  html body .site-header nav a {
    border-bottom-color: #2c2c2c !important;
  }

  html body .site-footer .brand .brand-mark,
  html body .site-footer .brand-mark {
    width: 160px !important;
    height: 78px !important;
    min-width: 160px !important;
    max-width: 160px !important;
    background-position: center !important;
  }
}
