:root {
  --ink: #0b1220;
  --ink-soft: #151e2e;
  --slate: #8b95a8;
  --paper: #f3efe6;
  --paper-deep: #e7e0d2;
  --bronze: #b08d57;
  --bronze-bright: #d4b483;
  --line: rgba(243, 239, 230, 0.12);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--paper);
  background: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(11, 18, 32, 0.86);
  border-bottom-color: var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 560;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand-mark {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze-bright);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(243, 239, 230, 0.78);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--paper);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(176, 141, 87, 0.45);
  color: var(--bronze-bright);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-cta:hover {
  background: var(--bronze);
  color: var(--ink);
}

.menu-toggle {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 1rem;
  height: 1.5px;
  background: currentColor;
  position: relative;
  transition: transform 0.25s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before { top: -5px; }
.menu-toggle span::after { top: 5px; }

.mobile-nav {
  display: none;
  padding: 0 0 1.25rem;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  color: rgba(243, 239, 230, 0.85);
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .menu-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(176, 141, 87, 0.22), transparent 55%),
    linear-gradient(160deg, #0b1220 0%, #152033 42%, #0d1624 100%);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(243, 239, 230, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(243, 239, 230, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.25) 0%, rgba(11, 18, 32, 0.55) 45%, rgba(11, 18, 32, 0.96) 100%);
}

.hero-content {
  padding: 8.5rem 0 5rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 10vw, 6.5rem);
  font-weight: 560;
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin: 0;
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.9s var(--ease) 0.1s forwards;
}

.hero-line {
  max-width: 28rem;
  margin: 1.5rem 0 0;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: rgba(243, 239, 230, 0.78);
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.9s var(--ease) 0.28s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.25rem;
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.9s var(--ease) 0.42s forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--bronze);
  color: var(--ink);
}

.btn-primary:hover {
  background: var(--bronze-bright);
}

.btn-ghost {
  border: 1px solid rgba(243, 239, 230, 0.28);
  color: var(--paper);
}

.btn-ghost:hover {
  border-color: rgba(243, 239, 230, 0.55);
}

.section {
  padding: 6rem 0;
}

.section-muted {
  background: var(--ink-soft);
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bronze-bright);
}

.section-title {
  margin: 0;
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.section-copy {
  margin: 1.1rem 0 0;
  max-width: 38rem;
  color: var(--slate);
  font-size: 1.05rem;
}

.split {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: end;
    gap: 4rem;
  }
}

.venture {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(243, 239, 230, 0.04), rgba(243, 239, 230, 0.01));
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.venture:hover {
  border-color: rgba(176, 141, 87, 0.45);
  transform: translateY(-3px);
}

.venture-visual {
  min-height: 220px;
  background:
    radial-gradient(circle at 20% 20%, rgba(176, 141, 87, 0.28), transparent 45%),
    linear-gradient(135deg, #1a2740, #0f1828);
  position: relative;
}

.venture-visual::after {
  content: "Palm Avenue";
  position: absolute;
  left: 1.5rem;
  bottom: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: -0.02em;
}

.venture-body {
  padding: 1.75rem 1.5rem 1.6rem;
}

.venture-kicker {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-bright);
}

.venture-title {
  margin: 0.55rem 0 0;
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: -0.02em;
}

.venture-copy {
  margin: 0.75rem 0 0;
  color: var(--slate);
}

.venture-link {
  display: inline-flex;
  margin-top: 1.25rem;
  color: var(--bronze-bright);
  font-weight: 600;
  font-size: 0.92rem;
}

.pillars {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (min-width: 760px) {
  .pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar {
  padding: 1.5rem 1.25rem;
  border-top: 1px solid rgba(176, 141, 87, 0.35);
}

.pillar h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.pillar p {
  margin: 0.7rem 0 0;
  color: var(--slate);
  font-size: 0.95rem;
}

.page-hero {
  padding: 9rem 0 3.5rem;
  background:
    radial-gradient(ellipse 70% 50% at 80% 0%, rgba(176, 141, 87, 0.16), transparent 55%),
    var(--ink);
}

.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.page-hero p {
  margin: 1rem 0 0;
  max-width: 36rem;
  color: var(--slate);
  font-size: 1.08rem;
}

.prose {
  max-width: 42rem;
}

.prose p {
  color: var(--slate);
  font-size: 1.05rem;
}

.prose p + p {
  margin-top: 1rem;
}

.form {
  display: grid;
  gap: 1rem;
  max-width: 34rem;
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(243, 239, 230, 0.7);
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid rgba(243, 239, 230, 0.16);
  border-radius: 0.85rem;
  background: rgba(243, 239, 230, 0.04);
  color: var(--paper);
  font: inherit;
  padding: 0.9rem 1rem;
}

.form input:focus,
.form textarea:focus {
  outline: 2px solid rgba(176, 141, 87, 0.45);
  outline-offset: 1px;
}

.form-note {
  margin: 0;
  color: var(--slate);
  font-size: 0.92rem;
}

.alert {
  padding: 0.9rem 1rem;
  border-radius: 0.85rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.alert-success {
  background: rgba(56, 140, 98, 0.16);
  border: 1px solid rgba(56, 140, 98, 0.35);
  color: #b7e4c7;
}

.alert-error {
  background: rgba(160, 60, 60, 0.16);
  border: 1px solid rgba(160, 60, 60, 0.35);
  color: #f2b8b8;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 2.25rem;
  background: #080d16;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0;
}

.footer-copy {
  margin: 0.75rem 0 0;
  color: var(--slate);
  max-width: 28rem;
  font-size: 0.95rem;
}

.footer-label {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze-bright);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-links a {
  color: rgba(243, 239, 230, 0.72);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--paper);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: rgba(243, 239, 230, 0.45);
  font-size: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}
