:root {
  --navy-950: #020b13;
  --navy-900: #061424;
  --navy-800: #091b2e;
  --navy-700: #0f2740;
  --gold: #e6b966;
  --gold-soft: #f1d392;
  --cream: #fbf5ea;
  --muted: #b9c2cc;
  --line: rgba(230, 185, 102, 0.42);
  --line-soft: rgba(255, 255, 255, 0.12);
  --danger: #ffb5a9;
  --success: #c9f0d2;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#fund,
#materials,
#interest,
#faq {
  scroll-margin-top: 76px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 10%, rgba(230, 185, 102, 0.14), transparent 26rem),
    linear-gradient(180deg, var(--navy-950), var(--navy-900) 46%, #03101d);
  color: var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  padding: 0 clamp(1rem, 4vw, 4rem);
  background: rgba(2, 11, 19, 0.9);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(18px);
}

.brand,
.footer-mark {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 3rem);
  color: #f5f2eb;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
}

.nav-cta {
  min-width: 170px;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-align: center;
}

.section-shell,
.fund-strip,
.details-grid,
.interest-section,
.faq-section {
  width: min(100%, 1440px);
  margin: 0 auto;
}

.hero {
  min-height: 480px;
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(500px, 0.58fr);
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: clamp(1.25rem, 2.6vw, 2.4rem) clamp(1.25rem, 4vw, 4rem) 1.2rem;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 60px 0 auto;
  z-index: -1;
  height: 480px;
  background:
    linear-gradient(90deg, rgba(2, 11, 19, 0.88), rgba(2, 11, 19, 0.38) 52%, rgba(2, 11, 19, 0.78)),
    linear-gradient(135deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 100%);
  background-size: auto, 128px 128px;
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.9;
}

h1 {
  max-width: 500px;
  font-size: clamp(4.4rem, 7vw, 6.1rem);
  letter-spacing: -0.01em;
}

h2 {
  color: var(--gold);
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.polo-line {
  max-width: 420px;
  margin: 0.85rem 0 0;
  color: var(--gold);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  font-weight: 700;
  line-height: 1.2;
}

.hero-subcopy,
.fund-intro p,
.impact-panel p,
.interest-copy p {
  color: #f0f4f7;
  line-height: 1.7;
}

.hero-subcopy {
  max-width: 430px;
  margin: 0.7rem 0 0;
  font-size: 0.98rem;
}

.scarcity-line {
  margin: 0.55rem 0 0;
  color: var(--gold-soft);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin: 1rem 0 0.8rem;
}

.price-line strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.05rem;
  font-weight: 600;
}

.price-line span {
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border: 1px solid var(--gold);
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, #f3cb7c, #dba24d);
  color: #06111d;
}

.button-secondary {
  background: rgba(2, 11, 19, 0.35);
  color: var(--gold);
}

.allocation-meter {
  max-width: 440px;
  margin-top: 1rem;
}

.meter-heading {
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.meter-track {
  height: 7px;
  margin-top: 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.17);
  overflow: hidden;
}

.meter-track span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #f3d695);
}

.meter-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.meter-labels em {
  color: #e9d7ba;
}

.mockup-note {
  max-width: 420px;
  margin: 0.9rem 0 0;
  padding-left: 1.9rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
  position: relative;
}

.mockup-note::before {
  content: "i";
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 999px;
  color: var(--cream);
  font-size: 0.78rem;
  line-height: 18px;
  text-align: center;
}

.hero-product {
  align-self: stretch;
  margin-top: 0;
  min-width: 0;
  width: 100%;
  min-height: 420px;
  border-radius: 2px;
  background-image: url("assets/mockup-hero-room.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--navy-900);
  box-shadow: var(--shadow);
}

.fund-strip {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(360px, 1.35fr) minmax(280px, 0.9fr);
  gap: clamp(1rem, 2vw, 2rem);
  align-items: center;
  padding: 1.35rem clamp(1.25rem, 4vw, 4rem);
  border-bottom: 1px solid var(--line);
}

.mobile-accordions {
  display: none;
}

.fund-intro {
  border-right: 1px solid var(--line);
  padding-right: clamp(1rem, 3vw, 3rem);
}

.fund-intro h2,
.impact-panel h2,
.materials-copy h2,
.interest-copy h2,
.faq-heading h2 {
  line-height: 1.05;
}

.fund-tagline {
  color: var(--gold-soft) !important;
  font-weight: 800;
}

.fund-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

.fund-flow div {
  min-width: 0;
}

.flow-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 0.55rem;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.fund-flow strong {
  display: block;
  color: var(--gold);
  font-size: 0.82rem;
}

.fund-flow p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.impact-panel {
  border-left: 1px solid var(--line);
  padding-left: clamp(1rem, 3vw, 3rem);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0.8rem 0 0.55rem;
}

.impact-grid div {
  padding: 0 0.8rem;
  border-right: 1px solid var(--line);
  text-align: center;
}

.impact-grid div:first-child {
  padding-left: 0;
}

.impact-grid div:last-child {
  border-right: 0;
  padding-right: 0;
}

.impact-grid strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
}

.impact-grid span,
.impact-grid em {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
}

.impact-grid em {
  color: var(--cream);
}

.impact-panel p {
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.details-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  border-bottom: 1px solid var(--line);
}

.materials-copy {
  padding: 1.6rem clamp(1.25rem, 4vw, 4rem);
}

.materials-copy ul {
  display: grid;
  gap: 0.8rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  color: #f1f4f7;
}

.materials-copy li {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.materials-copy li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--gold);
}

.lining-shot {
  min-height: 260px;
  border-left: 1px solid var(--line);
  background-image: url("assets/mockup-lining-room.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f7f7f6;
}

.interest-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(2.5rem, 5vw, 5rem) clamp(1.25rem, 4vw, 4rem);
  border-bottom: 1px solid var(--line);
}

.interest-copy p {
  max-width: 440px;
  color: var(--muted);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  padding: clamp(1.25rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  background: rgba(2, 11, 19, 0.38);
}

.wide,
.form-status {
  grid-column: 1 / -1;
}

.form-status {
  display: none;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-soft);
  color: var(--cream);
  font-size: 0.9rem;
  line-height: 1.45;
}

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

.form-status.is-error {
  border-color: rgba(255, 181, 169, 0.6);
  color: var(--danger);
}

.form-status.is-success {
  border-color: rgba(201, 240, 210, 0.6);
  color: var(--success);
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 700;
}

label em {
  color: var(--muted);
  font-style: normal;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 2px;
  background: rgba(4, 18, 31, 0.88);
  color: var(--cream);
  font: inherit;
}

textarea {
  min-height: 104px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(230, 185, 102, 0.5);
  outline-offset: 2px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.other-region-field[hidden] {
  display: none;
}

.privacy-note {
  grid-column: 1 / -1;
  margin: -0.1rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.52fr) minmax(480px, 1.48fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(2.25rem, 5vw, 4.25rem) clamp(1.25rem, 4vw, 4rem);
  border-bottom: 1px solid var(--line);
}

.faq-heading span {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--gold-soft);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  color: var(--cream);
  cursor: pointer;
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  max-width: 760px;
  margin: -0.2rem 0 1.25rem;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  padding: 2rem 1rem 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.footer-mark {
  display: inline-block;
  font-size: 2.8rem;
  line-height: 1;
}

.site-footer p {
  margin: 0.5rem 0;
  color: #e4d4b5;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.48em;
  text-transform: uppercase;
}

.site-footer small {
  color: var(--muted);
}

@media (max-width: 1060px) {
  .site-header {
    min-height: 66px;
  }

  .site-nav {
    gap: 0;
  }

  .site-nav > a:not(.nav-cta) {
    display: none !important;
  }

  .nav-cta {
    min-width: 154px;
    padding: 0.75rem 0.9rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 2rem;
  }

  .hero::before {
    inset: 66px 0 0;
  }

  .hero-product {
    grid-row: 1;
    margin-top: 0;
    min-height: 300px;
  }

  .hero-product {
    aspect-ratio: 1.2 / 0.88;
  }

  .fund-strip {
    grid-template-columns: 1fr;
  }

  .fund-intro,
  .impact-panel {
    border: 0;
    padding: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-inline: 1rem;
  }

  .brand {
    font-size: 1.35rem;
  }

  .nav-cta {
    min-width: 132px;
    padding: 0.7rem 0.75rem;
    font-size: 0.66rem;
    letter-spacing: 0.1em;
  }

  .hero,
  .materials-copy,
  .interest-section {
    padding-inline: 1rem;
  }

  h1 {
    font-size: clamp(3.1rem, 13vw, 4.4rem);
  }

  .polo-line {
    font-size: 1.15rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-product {
    min-height: 260px;
  }

  .button {
    padding-inline: 1rem;
  }

  .fund-flow {
    grid-template-columns: 1fr;
  }

  .fund-flow div {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 0 0.85rem;
  }

  .fund-flow strong {
    align-self: end;
  }

  .fund-flow p {
    grid-column: 2;
  }

  .impact-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .impact-grid div,
  .impact-grid div:first-child,
  .impact-grid div:last-child {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
    text-align: left;
  }

  .fund-strip,
  .details-grid,
  .interest-section,
  .lead-form,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .fund-strip,
  .details-grid {
    display: none;
  }

  .mobile-accordions {
    display: block;
    width: min(100%, 1440px);
    margin: 0 auto;
    padding: 0 1rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .mobile-accordions details {
    border-bottom: 1px solid var(--line);
  }

  .mobile-accordions details:last-child {
    border-bottom: 0;
  }

  .mobile-accordions summary {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    color: var(--gold);
    cursor: pointer;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.45rem;
    list-style: none;
  }

  .mobile-accordions summary::-webkit-details-marker {
    display: none;
  }

  .mobile-accordions summary::after {
    content: "+";
    color: var(--cream);
    font-family: Inter, system-ui, sans-serif;
    font-size: 1.2rem;
  }

  .mobile-accordions details[open] summary::after {
    content: "-";
  }

  .mobile-accordions p {
    margin: 0 0 1rem;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .lining-shot {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .lead-form {
    padding: 1rem;
  }

  .faq-section {
    padding-inline: 1rem;
  }

  .faq-list summary {
    min-height: 58px;
    font-size: 1rem;
  }
}
