/* Mentoria Financeira — preto & dourado */

:root {
  --black: #0a0a0a;
  --black-soft: #121212;
  --charcoal: #1a1a1a;
  --ink: #e8e4dc;
  --muted: #9a958c;
  --gold: #c9a227;
  --gold-bright: #e0bc4a;
  --gold-dim: #8a7020;
  --gold-glow: rgba(201, 162, 39, 0.18);
  --line: rgba(201, 162, 39, 0.28);
  --line-soft: rgba(255, 255, 255, 0.08);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Sora", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.5rem;
  --container: min(1120px, calc(100% - 2.5rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold-bright);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

a:hover {
  color: #f0d277;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 4.75rem);
  font-weight: 500;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
}

h2 em {
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 400;
}

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

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--gold);
  color: var(--black);
  padding: 0.5rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

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

/* ——— Header ——— */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line-soft);
  background: rgba(10, 10, 10, 0.92);
}

.header-inner {
  width: var(--container);
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold-bright);
}

.brand:hover {
  color: var(--gold-bright);
}

.brand-mark {
  width: 2.1rem;
  height: 2.1rem;
  flex-shrink: 0;
  color: var(--gold);
}

.brand-mark--lg {
  width: 2.4rem;
  height: 2.4rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--ink);
}

.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--ink);
}

.nav-cta {
  color: var(--black) !important;
  background: var(--gold);
  padding: 0.55rem 1rem;
  font-weight: 500;
}

.nav-cta:hover {
  background: var(--gold-bright);
  color: var(--black) !important;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: 1px solid var(--line);
  cursor: pointer;
  padding: 0.55rem;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--gold);
  transition: transform 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.menu-mobile {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem 1.5rem;
  background: var(--black-soft);
  border-bottom: 1px solid var(--line);
}

.menu-mobile[hidden] {
  display: none;
}

.menu-mobile a {
  color: var(--ink);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }

  .nav-toggle,
  .menu-mobile {
    display: none !important;
  }
}

/* ——— Buttons ——— */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s, border-color 0.3s, transform 0.3s;
  text-align: center;
  text-decoration: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-bright);
  color: var(--black);
  border-color: var(--gold-bright);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(232, 228, 220, 0.35);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.btn-block {
  width: 100%;
}

/* ——— Hero ——— */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.25) contrast(1.05);
  transform: scale(1.04);
  animation: hero ken 12s var(--ease) both;
}

.hero-photo--right {
  object-position: center 15%;
  animation-delay: 0.15s;
}

@keyframes hero ken {
  from {
    transform: scale(1.08);
    opacity: 0.7;
  }
  to {
    transform: scale(1.04);
    opacity: 1;
  }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.55) 48%, rgba(10, 10, 10, 0.75) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.45) 0%, rgba(10, 10, 10, 0.2) 40%, rgba(10, 10, 10, 0.92) 100%),
    radial-gradient(ellipse at 30% 70%, var(--gold-glow), transparent 55%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin-inline: auto;
  max-width: 38rem;
  margin-right: auto;
  padding-bottom: 1rem;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.hero h1 {
  margin-bottom: 1.25rem;
  color: #f5f1e8;
}

.hero-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 28rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-scroll {
  position: absolute;
  right: max(1.25rem, calc((100% - 1120px) / 2));
  bottom: 2rem;
  z-index: 2;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 3.5rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.85); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

@media (min-width: 768px) {
  .hero {
    align-items: center;
    padding-bottom: 2rem;
  }

  .hero-scroll {
    display: flex;
  }
}

@media (max-width: 640px) {
  .hero-media {
    grid-template-columns: 1fr;
  }

  /* Mobile: Marcos Roberto em destaque (Mateus fica oculto) */
  .hero-photo--right {
    display: none;
  }

  .hero-veil {
    background:
      linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.88) 70%, #0a0a0a 100%),
      radial-gradient(ellipse at 50% 40%, var(--gold-glow), transparent 50%);
  }
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  animation: rise 0.9s var(--ease) forwards;
}

.reveal-delay-1 { animation-delay: 0.15s; }
.reveal-delay-2 { animation-delay: 0.3s; }
.reveal-delay-3 { animation-delay: 0.45s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ——— Sections ——— */

.section {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
  position: relative;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-lead {
  color: var(--muted);
  max-width: 36rem;
  font-size: 1.05rem;
}

.section-lead--narrow {
  max-width: 28rem;
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

/* Workshop */

.workshop {
  background:
    linear-gradient(180deg, var(--black) 0%, var(--black-soft) 100%);
  border-top: 1px solid var(--line-soft);
}

.workshop-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 880px) {
  .workshop-grid {
    grid-template-columns: 1.4fr 0.9fr;
    align-items: end;
    gap: 4rem;
  }
}

.workshop-meta {
  display: grid;
  gap: 1.25rem;
  margin: 2rem 0 2.25rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.meta-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.25rem;
}

.meta-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
}

.workshop-aside {
  padding: 2rem 0 0;
  border-top: 1px solid var(--line);
}

@media (min-width: 880px) {
  .workshop-aside {
    padding: 2.5rem;
    border: 1px solid var(--line);
    background: linear-gradient(160deg, rgba(201, 162, 39, 0.06), transparent 60%);
  }
}

.aside-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.aside-text {
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.35;
  color: var(--ink);
}

.aside-divider {
  height: 1px;
  background: var(--line);
  margin: 1.5rem 0;
}

.aside-note {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

/* Video */

.video-section {
  background: var(--charcoal);
}

.video-frame {
  margin-top: 2.5rem;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(ellipse at center, rgba(201, 162, 39, 0.08), transparent 55%),
    #0e0e0e;
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--gold);
  text-align: center;
  padding: 2rem;
}

.video-placeholder svg {
  width: 3.5rem;
  height: 3.5rem;
  opacity: 0.85;
  animation: pulse-play 2.8s ease-in-out infinite;
}

@keyframes pulse-play {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.video-placeholder p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0;
  color: var(--ink);
}

.video-placeholder span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Mentoria */

.mentoria {
  background: var(--black);
}

.journey-strip {
  display: grid;
  gap: 0;
  margin-bottom: 3rem;
  border-top: 1px solid var(--line);
}

@media (min-width: 800px) {
  .journey-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.journey-step {
  padding: 1.75rem 1.25rem 1.75rem 0;
  border-bottom: 1px solid var(--line-soft);
}

@media (min-width: 800px) {
  .journey-step {
    padding: 2rem 1.5rem 2rem 0;
    border-bottom: none;
    border-right: 1px solid var(--line-soft);
  }

  .journey-step:last-child {
    border-right: none;
    padding-right: 0;
  }

  .journey-step:not(:first-child) {
    padding-left: 1.5rem;
  }
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.journey-step strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.journey-step p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.dates-block {
  padding: 2rem 0;
  margin-bottom: 2.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dates-block h3 {
  margin-bottom: 0.4rem;
}

.dates-subtitle {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 1.5rem;
}

.dates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 700px) {
  .dates-grid {
    grid-template-columns: repeat(8, 1fr);
    gap: 0.75rem;
  }
}

.dates-grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  padding: 0.85rem 0.35rem;
  border: 1px solid var(--line);
  background: rgba(201, 162, 39, 0.04);
  text-align: center;
  min-height: 4.75rem;
}

.dates-grid li:first-child,
.dates-grid li:last-child {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.1);
}

.date-day {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 500;
  color: var(--gold-bright);
  line-height: 1;
}

.date-month {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.date-tag {
  margin-top: 0.2rem;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.dates-range {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin-top: 1.35rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-soft);
}

.dates-range div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.dates-range .range-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.dates-range .range-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
}

.topics h3 {
  margin-bottom: 1.25rem;
}

.topics-list {
  display: grid;
  gap: 0.65rem 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .topics-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .topics-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.topics-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.topics-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.4rem;
  height: 1px;
  background: var(--gold);
}

/* Investimento — oculto até após o Workshop (remover .is-hidden para exibir) */

.invest.is-hidden,
.faq-item.is-hidden {
  display: none !important;
}

.invest {
  background:
    linear-gradient(135deg, #14110a 0%, var(--black) 45%, #12100c 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.invest-inner {
  display: grid;
  gap: 2.5rem;
  align-items: end;
}

@media (min-width: 800px) {
  .invest-inner {
    grid-template-columns: 1fr auto;
    gap: 4rem;
  }
}

.price {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 500;
  color: var(--gold-bright);
  line-height: 1;
  margin: 0 0 0.5rem;
}

.price span {
  font-size: 0.45em;
  vertical-align: super;
}

.price-note {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* Mentores */

.mentores {
  background: var(--black-soft);
}

.mentor {
  display: grid;
  gap: 2rem;
  margin-bottom: clamp(4rem, 8vw, 6rem);
  align-items: start;
}

.mentor:last-child {
  margin-bottom: 0;
}

@media (min-width: 860px) {
  .mentor {
    grid-template-columns: minmax(260px, 380px) 1fr;
    gap: 3.5rem;
  }

  .mentor--reverse {
    grid-template-columns: 1fr minmax(260px, 380px);
  }

  .mentor--reverse .mentor-photo {
    order: 2;
  }

  .mentor--reverse .mentor-body {
    order: 1;
  }
}

.mentor-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
  background: #111;
}

.mentor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.15);
  transition: transform 0.8s var(--ease), filter 0.5s;
}

.mentor:hover .mentor-photo img {
  transform: scale(1.03);
  filter: grayscale(0);
}

.mentor-role {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.mentor-body h3 {
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  margin-bottom: 0.35rem;
}

.mentor-social {
  display: inline-block;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  color: var(--muted);
}

.mentor-social:hover {
  color: var(--gold-bright);
}

.mentor-body p {
  color: var(--muted);
}

.mentor-more {
  margin-top: 1.25rem;
  border-top: 1px solid var(--line-soft);
  padding-top: 1rem;
}

.mentor-more summary {
  cursor: pointer;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  list-style: none;
}

.mentor-more summary::-webkit-details-marker {
  display: none;
}

.mentor-more summary::after {
  content: " +";
}

.mentor-more[open] summary::after {
  content: " −";
}

.mentor-expand {
  padding-top: 1rem;
}

.mentor-expand ul {
  margin: 0 0 1rem;
  display: grid;
  gap: 0.4rem;
}

.mentor-expand li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.mentor-expand li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.35rem;
  height: 1px;
  background: var(--gold);
}

.mentor-expand strong {
  color: var(--ink);
  font-weight: 500;
}

/* Formulário */

.inscricao {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(201, 162, 39, 0.1), transparent 45%),
    var(--black);
  border-top: 1px solid var(--line);
}

.inscricao-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 880px) {
  .inscricao-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
  }
}

.inscricao-points {
  margin-top: 1.75rem;
  display: grid;
  gap: 0.85rem;
}

.inscricao-points li {
  padding-left: 1.25rem;
  position: relative;
  color: var(--muted);
}

.inscricao-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border: 1px solid var(--gold);
}

.lead-form {
  background: var(--charcoal);
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 4vw, 2.25rem);
}

.intent-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.intent-option {
  cursor: pointer;
}

.intent-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.intent-option span {
  display: block;
  text-align: center;
  padding: 0.85rem 0.5rem;
  border: 1px solid var(--line-soft);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.intent-option input:checked + span {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: rgba(201, 162, 39, 0.08);
}

.intent-option input:focus-visible + span {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.field {
  margin-bottom: 1.1rem;
}

.field-row {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 560px) {
  .field-row {
    grid-template-columns: 1fr 1fr;
  }
}

.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.optional {
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.7;
}

.field input,
.field textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--line-soft);
  color: var(--ink);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  transition: border-color 0.25s;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #5c5850;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.field textarea {
  resize: vertical;
  min-height: 5rem;
}

.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 1rem 0 0;
  text-align: center;
}

.form-feedback {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  border: 1px solid var(--line);
  color: var(--gold-bright);
  background: rgba(201, 162, 39, 0.08);
}

.form-feedback.is-error {
  color: #e8b4b4;
  border-color: rgba(200, 100, 100, 0.4);
  background: rgba(120, 40, 40, 0.2);
}

.field input.is-invalid,
.field textarea.is-invalid {
  border-color: rgba(200, 100, 100, 0.7);
}

/* FAQ */

.faq {
  background: var(--black-soft);
}

.faq-list {
  max-width: 48rem;
}

.faq-item {
  border-bottom: 1px solid var(--line-soft);
}

.faq-item summary {
  cursor: pointer;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--ink);
  transition: color 0.25s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.faq-item[open] summary {
  color: var(--gold-bright);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  color: var(--muted);
  padding: 0 0 1.35rem;
  margin: 0;
  max-width: 40rem;
}

/* Footer */

.site-footer {
  padding: 3rem 0 2.5rem;
  border-top: 1px solid var(--line-soft);
  background: var(--black);
}

.footer-inner {
  display: grid;
  gap: 1.75rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--gold);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
}

.footer-brand span {
  font-size: 0.75rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-links a {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--gold-bright);
}

.footer-copy {
  margin: 0;
  font-size: 0.78rem;
  color: #5c5850;
}

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

  .reveal,
  .hero-photo,
  .video-placeholder svg,
  .scroll-line {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}
