/* ==========================================================================
   THE PRIVATE ROOM — Main Stylesheet
   Editorial luxury system. Dark wine base, gold used only as accent.
   ========================================================================== */

:root {
  --black-wine: #160503;
  --deep-wine: #290705;
  --burgundy: #430c08;
  --mahogany: #5a170f;
  --antique-gold: #b98232;
  --soft-gold: #d7ad61;
  --champagne: #e7c98e;
  --warm-ivory: #f3e9d8;
  --muted-cream: #cdbda6;
  --dark-brown: #100806;

  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max-width: 1200px;
  --max-read: 720px;

  --section-space-desktop: 136px;
  --section-space-mobile: 80px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  background-color: var(--black-wine);
  color: var(--warm-ivory);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

input,
select,
textarea {
  font-family: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--warm-ivory);
  margin: 0;
}

:focus-visible {
  outline: 2px solid var(--soft-gold);
  outline-offset: 3px;
}

/* ==========================================================================
   Texture — subtle velvet/paper grain, purely CSS, no image request
   ========================================================================== */

.velvet-texture {
  position: relative;
}

.velvet-texture::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.025) 0,
      transparent 45%
    ),
    radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.02) 0, transparent 40%),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.012) 0px,
      rgba(255, 255, 255, 0.012) 1px,
      transparent 1px,
      transparent 3px
    );
}

/* ==========================================================================
   Layout utilities
   ========================================================================== */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.read-width {
  max-width: var(--max-read);
}

section {
  padding: var(--section-space-desktop) 0;
  position: relative;
}

@media (max-width: 900px) {
  section {
    padding: var(--section-space-mobile) 0;
  }
  .container {
    padding: 0 22px;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--soft-gold);
  font-weight: 600;
  margin-bottom: 22px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--antique-gold);
  display: inline-block;
}

.eyebrow--center {
  justify-content: center;
}

h1,
.h1 {
  font-size: clamp(42px, 12vw, 94px);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

@media (min-width: 900px) {
  h1,
  .h1 {
    font-size: clamp(56px, 6vw, 94px);
  }
}

h2,
.h2 {
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.14;
}

@media (min-width: 900px) {
  h2,
  .h2 {
    font-size: clamp(38px, 4vw, 64px);
  }
}

h3,
.h3 {
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.3;
}

p {
  margin: 0 0 20px;
  color: var(--muted-cream);
}

@media (max-width: 900px) {
  body {
    font-size: 17px;
  }
}

.text-gold {
  color: var(--soft-gold);
}

.text-ivory {
  color: var(--warm-ivory);
}

.gold-rule {
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, var(--antique-gold), transparent);
  margin: 32px auto;
  transform-origin: left center;
}

.gold-rule--reveal {
  transform: scaleX(0);
  transition: transform 1.1s var(--ease);
}

.gold-rule--reveal.is-visible {
  transform: scaleX(1);
}

.center {
  text-align: center;
}

.pull-quote {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.4;
  color: var(--champagne);
  max-width: 880px;
  margin: 48px auto 0;
  text-align: center;
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

.reveal-delay-1.is-visible {
  transition-delay: 0.1s;
}
.reveal-delay-2.is-visible {
  transition-delay: 0.2s;
}
.reveal-delay-3.is-visible {
  transition-delay: 0.3s;
}

/* ==========================================================================
   Buttons — private access plate
   ========================================================================== */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 30px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease),
    filter 300ms var(--ease);
  white-space: nowrap;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #e1bf7a 0%, #b47a2b 48%, #d7ad61 100%);
  color: var(--black-wine);
  border-color: rgba(255, 231, 183, 0.65);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 600ms var(--ease);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.36);
}

.btn-primary:hover::after {
  left: 120%;
}

.btn-secondary {
  background: transparent;
  color: var(--champagne);
  border-color: var(--antique-gold);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(185, 130, 50, 0.08);
}

.btn-block {
  width: 100%;
}

.btn-microcopy {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted-cream);
  letter-spacing: 0.02em;
}

/* ==========================================================================
   Announcement bar
   ========================================================================== */

.announcement-bar {
  background: var(--dark-brown);
  border-bottom: 1px solid rgba(185, 130, 50, 0.25);
  padding: 10px 0;
  text-align: center;
}

.announcement-bar p {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--soft-gold);
  font-weight: 600;
}

/* ==========================================================================
   Navbar
   ========================================================================== */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 400ms var(--ease), padding 400ms var(--ease),
    box-shadow 400ms var(--ease), backdrop-filter 400ms var(--ease);
  background: rgba(22, 5, 3, 0);
}

.navbar.is-scrolled {
  background: rgba(22, 5, 3, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(185, 130, 50, 0.16);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar__links {
  display: none;
  align-items: center;
  gap: 40px;
}

.navbar__links a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-cream);
  transition: color 250ms var(--ease);
  position: relative;
}

.navbar__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 1px;
  background: var(--soft-gold);
  transition: width 300ms var(--ease);
}

.navbar__links a:hover {
  color: var(--champagne);
}

.navbar__links a:hover::after {
  width: 100%;
}

.navbar__cta {
  display: none;
}

@media (min-width: 960px) {
  .navbar__links {
    display: flex;
  }
  .navbar__cta {
    display: inline-flex;
  }
}

.navbar__hamburger {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}

@media (min-width: 960px) {
  .navbar__hamburger {
    display: none;
  }
}

.navbar__hamburger span {
  width: 24px;
  height: 1px;
  background: var(--champagne);
  transition: transform 300ms var(--ease), opacity 300ms var(--ease);
}

.navbar__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.navbar__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.navbar__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--black-wine);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateY(-100%);
  transition: transform 450ms var(--ease);
}

.mobile-menu.is-open {
  transform: translateY(0);
}

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--warm-ivory);
}

.mobile-menu .btn {
  margin-top: 16px;
}

/* ==========================================================================
   Logo — real monogram, cropped from The Private Room key art
   ========================================================================== */

.pr-logo-img {
  height: 44px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

.pr-logo-img--lg {
  height: 99px;
}

.pr-logo-img--glow {
  animation: monogram-glow 4.5s ease-in-out infinite;
}

@keyframes monogram-glow {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(215, 173, 97, 0));
  }
  50% {
    filter: drop-shadow(0 0 10px rgba(215, 173, 97, 0.55));
  }
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-lockup__name {
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--warm-ivory);
}

/* ==========================================================================
   Hero — CSS-built composition (no banner asset required)
   TODO: Replace this composition with the final desktop hero artwork.
   ========================================================================== */

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
  background: radial-gradient(ellipse at 15% 20%, rgba(90, 23, 15, 0.55), transparent 55%),
    linear-gradient(180deg, var(--black-wine) 0%, var(--deep-wine) 55%, var(--black-wine) 100%);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

@media (min-width: 980px) {
  .hero__inner {
    grid-template-columns: 1.05fr 0.85fr;
    gap: 40px;
  }
}

.hero__copy .eyebrow {
  animation: fade-in-up 1s var(--ease) 0.1s both;
}

.hero__copy h1 {
  animation: fade-in-up 1.1s var(--ease) 0.25s both;
}

.hero__copy p {
  animation: fade-in-up 1.1s var(--ease) 0.45s both;
  color: var(--muted-cream);
}

.hero__actions {
  animation: fade-in-up 1.1s var(--ease) 0.6s both;
  margin-top: 12px;
}

.hero__meta {
  margin-top: 28px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--antique-gold);
}

.hero__fast-path {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(185, 130, 50, 0.22);
  max-width: 480px;
}

.hero__fast-path p {
  margin: 0 0 6px;
  font-size: 14px;
  color: var(--muted-cream);
}

.hero__fast-path__question {
  color: var(--champagne);
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
}

.hero__fast-path a {
  color: var(--soft-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 250ms var(--ease);
}

.hero__fast-path a:hover {
  color: var(--champagne);
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -- Door / private room composition, built entirely with CSS -- */

.door-scene {
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

@media (max-width: 979px) {
  .door-scene {
    height: 320px;
  }
}

.door-frame {
  position: relative;
  width: min(320px, 78vw);
  height: 100%;
  border: 1px solid rgba(215, 173, 97, 0.55);
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(155deg, var(--dark-brown) 0%, var(--black-wine) 60%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.door-frame::before {
  /* interior warm glow, as if a door is ajar */
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    100deg,
    rgba(215, 173, 97, 0.28) 0%,
    rgba(185, 130, 50, 0.14) 35%,
    transparent 75%
  );
  animation: door-glow 6s ease-in-out infinite;
}

@keyframes door-glow {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

.door-frame__panel {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(185, 130, 50, 0.3);
  border-radius: 2px;
}

.door-frame__handle {
  position: absolute;
  left: 34px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--soft-gold);
  box-shadow: 0 0 12px rgba(215, 173, 97, 0.7);
}

.door-frame__monogram {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
}

.door-scene__caption {
  position: absolute;
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(205, 189, 166, 0.5);
  white-space: nowrap;
}

/* Section divider — key / thin gold line */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 0;
  color: var(--antique-gold);
}

.section-divider__line {
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--antique-gold), transparent);
}

.section-divider__key {
  font-size: 14px;
}

/* ==========================================================================
   Editorial placeholder blocks (portrait, banner, signature)
   ========================================================================== */

.placeholder-portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(215, 173, 97, 0.4);
  border-radius: 3px;
  background: linear-gradient(160deg, var(--burgundy) 0%, var(--black-wine) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
}

.placeholder-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(215, 173, 97, 0.12), transparent 60%);
}

.placeholder-portrait--photo {
  background: none;
}

.placeholder-portrait--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.placeholder-portrait--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(22, 5, 3, 0) 45%,
    rgba(22, 5, 3, 0.75) 100%
  );
}

.placeholder-portrait--photo .placeholder-portrait__caption {
  position: absolute;
  bottom: 20px;
  z-index: 1;
}

.placeholder-portrait__caption {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-cream);
  z-index: 1;
}

.placeholder-signature {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 40px;
  color: var(--champagne);
}

.placeholder-closing {
  position: relative;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(215, 173, 97, 0.4);
  border-radius: 3px;
  background: linear-gradient(
    135deg,
    var(--deep-wine) 0%,
    var(--black-wine) 55%,
    var(--dark-brown) 100%
  );
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-closing::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, rgba(215, 173, 97, 0.22), transparent 70%);
}

/* ==========================================================================
   Authority Gap — silent editorial block, no cards
   ========================================================================== */

.authority-gap {
  text-align: center;
}

.authority-gap__body {
  max-width: var(--max-read);
  margin: 0 auto;
}

.authority-gap__body p {
  font-size: 19px;
}

/* ==========================================================================
   Second Work — distinction section
   ========================================================================== */

.second-work__grid {
  display: grid;
  gap: 48px;
}

@media (min-width: 900px) {
  .second-work__grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.second-work__list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.second-work__list li {
  color: var(--champagne);
  font-family: var(--font-serif);
  font-size: 20px;
}

/* ==========================================================================
   Wealth / Influence / Legacy — three editorial columns
   ========================================================================== */

.wil-grid {
  display: grid;
  gap: 56px;
  margin-top: 64px;
}

@media (min-width: 900px) {
  .wil-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
}

.wil-block {
  border-top: 1px solid rgba(185, 130, 50, 0.3);
  padding-top: 24px;
}

.wil-block__number {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--antique-gold);
  margin-bottom: 16px;
  display: block;
}

.wil-block__title {
  font-family: var(--font-serif);
  font-size: 26px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 16px;
}

/* ==========================================================================
   Intervention — numbered editorial list
   ========================================================================== */

.intervention-list {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
}

.intervention-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(185, 130, 50, 0.2);
}

.intervention-item:first-child {
  border-top: 1px solid rgba(185, 130, 50, 0.2);
}

.intervention-item__number {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--antique-gold);
}

.intervention-item__title {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 10px;
  font-weight: 700;
}

.intervention-item p {
  margin: 0;
}

@media (max-width: 600px) {
  .intervention-item {
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }
}

/* ==========================================================================
   High Proximity — intimate, distinct visual block
   ========================================================================== */

.proximity {
  background: linear-gradient(180deg, var(--dark-brown) 0%, var(--black-wine) 100%);
  border-top: 1px solid rgba(185, 130, 50, 0.2);
  border-bottom: 1px solid rgba(185, 130, 50, 0.2);
}

.proximity__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.proximity ul {
  text-align: left;
  max-width: 560px;
  margin: 32px auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.proximity ul li {
  padding-left: 24px;
  position: relative;
  color: var(--muted-cream);
}

.proximity ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--antique-gold);
}

/* ==========================================================================
   Qualification — two columns
   ========================================================================== */

.qualification-grid {
  display: grid;
  gap: 48px;
  margin-top: 56px;
}

@media (min-width: 900px) {
  .qualification-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.qualification-col__title {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--champagne);
  margin-bottom: 28px;
}

.qualification-col ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.qualification-col li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  color: var(--muted-cream);
}

.qualification-col--yes li::before {
  content: "◆";
  color: var(--soft-gold);
  font-size: 10px;
  line-height: 1.9;
}

.qualification-col--no li::before {
  content: "◇";
  color: var(--mahogany);
  font-size: 10px;
  line-height: 1.9;
}

/* ==========================================================================
   Investment
   ========================================================================== */

.investment-grid {
  display: grid;
  gap: 32px;
  margin-top: 56px;
}

@media (min-width: 900px) {
  .investment-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 32px;
    align-items: stretch;
  }
}

.investment-card {
  border: 1px solid rgba(185, 130, 50, 0.3);
  border-radius: 4px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  background: rgba(41, 7, 5, 0.35);
}

.investment-card--primary {
  border-color: var(--antique-gold);
  background: linear-gradient(160deg, rgba(90, 23, 15, 0.5), rgba(22, 5, 3, 0.6));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.investment-card__label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--antique-gold);
  margin-bottom: 18px;
}

.investment-card__price {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 52px);
  color: var(--warm-ivory);
  margin-bottom: 14px;
}

.investment-card__detail {
  color: var(--muted-cream);
  margin-bottom: 28px;
  flex-grow: 1;
}

.investment-card__seal {
  margin-top: 18px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--antique-gold);
  text-align: center;
}

.investment-note {
  max-width: var(--max-read);
  margin: 48px auto 0;
  text-align: center;
  font-size: 15px;
  color: var(--muted-cream);
  border-top: 1px solid rgba(185, 130, 50, 0.2);
  padding-top: 32px;
}

/* ==========================================================================
   Private conversation / final CTA sections
   ========================================================================== */

.center-cta {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

/* ==========================================================================
   Entry process
   ========================================================================== */

.process-grid {
  display: grid;
  gap: 40px;
  margin-top: 56px;
}

@media (min-width: 900px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.process-step {
  text-align: center;
  padding: 0 12px;
}

.process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--antique-gold);
  font-family: var(--font-serif);
  color: var(--champagne);
  margin-bottom: 22px;
}

.process-step__title {
  font-size: 20px;
  margin-bottom: 12px;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */

.faq-list {
  max-width: var(--max-read);
  margin: 56px auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(185, 130, 50, 0.25);
}

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  color: var(--warm-ivory);
  text-align: left;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-serif);
  font-size: 20px;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--antique-gold);
  transition: transform 300ms var(--ease);
}

.faq-item__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
}

.faq-item__icon::after {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
}

.faq-item[aria-expanded="true"] .faq-item__icon::after {
  transform: translateX(-50%) scaleY(0);
}

.faq-item__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 400ms var(--ease);
}

.faq-item__answer p {
  padding-bottom: 26px;
  margin: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  border-top: 1px solid rgba(185, 130, 50, 0.2);
  padding: 72px 0 32px;
  background: var(--dark-brown);
}

.footer__top {
  display: grid;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(185, 130, 50, 0.15);
}

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

.footer__brand p {
  margin-top: 18px;
  max-width: 320px;
  font-size: 15px;
}

.footer__col-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--antique-gold);
  margin-bottom: 20px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col a {
  color: var(--muted-cream);
  font-size: 15px;
  transition: color 250ms var(--ease);
}

.footer__col a:hover {
  color: var(--champagne);
}

.footer__bottom {
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(205, 189, 166, 0.6);
}

.footer__bottom a {
  color: rgba(205, 189, 166, 0.6);
}

.footer__bottom a:hover {
  color: var(--champagne);
}

/* ==========================================================================
   Cookie banner
   ========================================================================== */

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  max-width: 560px;
  margin: 0 auto;
  background: var(--dark-brown);
  border: 1px solid rgba(185, 130, 50, 0.35);
  border-radius: 4px;
  padding: 22px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transform: translateY(140%);
  transition: transform 500ms var(--ease);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner p {
  margin: 0;
  font-size: 13px;
  flex: 1 1 260px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
}

.cookie-banner__actions button {
  background: none;
  border: 1px solid var(--antique-gold);
  color: var(--champagne);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 2px;
}

.cookie-banner__actions .cookie-accept {
  background: var(--soft-gold);
  color: var(--black-wine);
  border-color: var(--soft-gold);
}

/* ==========================================================================
   Forms — application page
   ========================================================================== */

.form-page {
  padding-top: 140px;
}

.form-shell {
  max-width: 760px;
  margin: 0 auto;
}

.form-intro {
  margin-bottom: 56px;
}

.form-group {
  margin-bottom: 30px;
}

.form-group label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--champagne);
  margin-bottom: 10px;
}

.form-group .required {
  color: var(--soft-gold);
}

.form-control {
  width: 100%;
  min-height: 48px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(205, 189, 166, 0.3);
  border-radius: 2px;
  color: var(--warm-ivory);
  padding: 12px 16px;
  font-size: 16px;
  transition: border-color 250ms var(--ease);
}

textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

.form-control:focus {
  border-color: var(--soft-gold);
}

.form-control.has-error {
  border-color: #c65a4a;
}

.form-error {
  color: #e5897a;
  font-size: 13px;
  margin-top: 8px;
  display: none;
}

.form-error.is-visible {
  display: block;
}

.radio-group,
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.radio-option,
.checkbox-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(205, 189, 166, 0.22);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 250ms var(--ease), background 250ms var(--ease);
}

.radio-option:hover,
.checkbox-option:hover {
  border-color: var(--antique-gold);
  background: rgba(185, 130, 50, 0.06);
}

.radio-option input,
.checkbox-option input {
  margin-top: 3px;
  accent-color: var(--soft-gold);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.consent-group {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid rgba(185, 130, 50, 0.3);
  border-radius: 2px;
  background: rgba(185, 130, 50, 0.05);
}

.consent-group input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--soft-gold);
  flex-shrink: 0;
}

.form-step-indicator {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--antique-gold);
  margin-bottom: 14px;
}

.form-submit-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted-cream);
  text-align: center;
}

.dev-notice {
  margin-top: 24px;
  padding: 16px 20px;
  border: 1px dashed rgba(215, 173, 97, 0.5);
  border-radius: 2px;
  font-size: 13px;
  color: var(--soft-gold);
  background: rgba(185, 130, 50, 0.06);
}

/* ==========================================================================
   Simple pages: application-received / thank-you / private-calendar / legal
   ========================================================================== */

.simple-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
}

.simple-page__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.simple-page__inner--wide {
  max-width: 820px;
}

.calendar-embed {
  margin-top: 48px;
  border: 1px solid rgba(215, 173, 97, 0.4);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(16, 8, 6, 0.4);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.calendar-embed iframe {
  display: block;
  border: none;
}

.legal-page {
  padding-top: 140px;
}

.legal-page__body {
  max-width: var(--max-read);
  margin: 0 auto;
}

.legal-page__body h2 {
  font-size: 28px;
  margin-top: 48px;
  margin-bottom: 16px;
}

.legal-page__body h2:first-child {
  margin-top: 0;
}

.provisional-notice {
  display: inline-block;
  margin-bottom: 40px;
  padding: 14px 20px;
  border: 1px dashed rgba(215, 173, 97, 0.5);
  border-radius: 2px;
  font-size: 13px;
  color: var(--soft-gold);
}

/* Utility */
.mt-0 { margin-top: 0; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
