:root {
  --wine: #4a0717;
  --wine-2: #6e0f25;
  --graphite: #191716;
  --graphite-2: #25211f;
  --ivory: #f7f0e6;
  --paper: #fffaf2;
  --gold: #b9965c;
  --gold-2: #d8bd82;
  --muted: #6c625b;
  --soft: #efe4d2;
  --line: rgba(74, 7, 23, 0.16);
  --line-dark: rgba(255, 250, 242, 0.14);
  --shadow: 0 22px 60px rgba(25, 23, 22, 0.16);
  --radius: 8px;
  --focus: #d8bd82;
  --error: #f2a6a6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--graphite);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--gold);
  color: #201712;
  padding: 10px 14px;
  font-weight: 800;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

section[id] {
  scroll-margin-top: 88px;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 250, 242, 0.12);
  background: rgba(25, 23, 22, 0.84);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: var(--paper);
}

.brand {
  display: grid;
  gap: 3px;
  min-width: 218px;
  line-height: 1.05;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 600;
}

.brand span {
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links,
.button-row,
.form-actions,
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links {
  gap: 20px;
  color: rgba(255, 250, 242, 0.84);
  font-size: 0.91rem;
}

.nav-links a:hover {
  color: var(--gold-2);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
  cursor: pointer;
}

.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, background 180ms ease;
}

.menu-btn span::before {
  transform: translateY(-6px);
}

.menu-btn span::after {
  transform: translateY(4px);
}

body.menu-open .menu-btn span {
  background: transparent;
}

body.menu-open .menu-btn span::before {
  background: var(--paper);
  transform: rotate(45deg);
}

body.menu-open .menu-btn span::after {
  background: var(--paper);
  transform: rotate(-45deg) translate(1px, -1px);
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 750;
  font-size: 0.94rem;
  line-height: 1.18;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.btn:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(216, 189, 130, 0.48);
  outline-offset: 3px;
}

.btn-primary {
  border-color: rgba(255, 255, 255, 0.16);
  background: var(--gold);
  color: #201712;
}

.btn-primary:hover {
  background: var(--gold-2);
}

.btn-secondary,
.btn-ghost {
  border-color: rgba(255, 250, 242, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: var(--paper);
}

.btn-secondary:hover,
.btn-ghost:hover {
  border-color: var(--gold-2);
  color: var(--gold-2);
}

.btn-dark {
  background: var(--wine);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 96vh;
  min-height: 96svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 122px 0 44px;
  background: #120d0c;
  color: var(--paper);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgba(18, 13, 12, 0.98) 0%, rgba(18, 13, 12, 0.86) 42%, rgba(18, 13, 12, 0.42) 100%), linear-gradient(0deg, rgba(18, 13, 12, 0.96) 0%, rgba(18, 13, 12, 0.18) 54%, rgba(18, 13, 12, 0.76) 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.62;
  transform: scale(1.01);
}

.hero > .wrap {
  position: relative;
  z-index: 2;
}

.hero-content,
.hero-proof {
  position: relative;
}

.hero-content {
  width: min(790px, 100%);
  padding-bottom: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 560;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: 5rem;
}

h2 {
  max-width: 900px;
  font-size: 3.2rem;
}

h3 {
  font-size: 1.34rem;
  line-height: 1.17;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.text-link {
  color: var(--wine);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(185, 150, 92, 0.55);
  text-underline-offset: 4px;
}

.text-link:hover {
  color: var(--wine-2);
  text-decoration-color: currentColor;
}

.hero .lead {
  max-width: 700px;
  margin: 24px 0 30px;
  color: rgba(255, 250, 242, 0.84);
  font-size: 1.14rem;
}

.trust-line,
.fine-print,
.field-note {
  color: rgba(255, 250, 242, 0.66);
  font-size: 0.9rem;
}

.trust-line {
  max-width: 780px;
  margin-top: 22px;
}

.hero-proof {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
}

.proof-item {
  min-height: 116px;
  padding: 22px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong,
.proof-item span {
  display: block;
}

.proof-item strong {
  margin-bottom: 7px;
  color: #fff;
  font-size: 1.38rem;
}

.proof-item span {
  color: rgba(255, 250, 242, 0.68);
  font-size: 0.88rem;
  line-height: 1.45;
}

.section {
  padding: 94px 0;
}

main > .section {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.section-ivory {
  background: var(--ivory);
}

.section-paper {
  background: var(--paper);
}

.section-dark {
  background: var(--graphite);
  color: var(--paper);
}

.section-wine {
  background: var(--wine);
  color: var(--paper);
}

.section-dark p,
.section-wine p {
  color: rgba(255, 250, 242, 0.72);
}

.section-dark .text-link,
.section-wine .text-link {
  color: var(--gold-2);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 38px;
}

.section-heading > p,
.section-head > p,
.form-intro > p,
.founder-copy > p,
.final-cta p {
  margin-top: 18px;
}

.grid-3,
.card-grid,
.three-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid-2,
.two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.card,
.three-columns article,
.lead-form,
.faq-list details,
.notice {
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.card,
.three-columns article {
  min-height: 100%;
  padding: 26px;
  background: rgba(255, 250, 242, 0.74);
}

.section-dark .card,
.section-wine .card,
.section-dark .notice,
.section-wine .notice {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.045);
}

.card span,
.three-columns h3 {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card h3,
.three-columns h3 {
  color: var(--graphite);
}

.section-dark .card h3,
.section-wine .card h3 {
  color: #fff;
}

.card p,
.three-columns p {
  margin-top: 14px;
}

.card-grid.compact .card {
  min-height: 236px;
}

.notice {
  margin-top: 24px;
  padding: 20px 22px;
  background: rgba(255, 250, 242, 0.72);
  border-left: 4px solid var(--gold);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.notice strong {
  color: inherit;
}

.notice p {
  margin-top: 8px;
}

.split,
.founder-grid,
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 56px;
  align-items: start;
}

.rich-text p + p {
  margin-top: 18px;
}

.quote {
  margin: 22px 0;
  border-left: 3px solid var(--gold);
  padding: 0 0 0 22px;
  color: var(--graphite);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.38;
}

.section-dark .quote,
.section-wine .quote {
  color: #fff;
}

.risk-list {
  display: grid;
  gap: 12px;
}

.risk {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 189, 130, 0.55);
  border-radius: 50%;
  color: var(--gold-2);
  font-weight: 850;
}

.risk strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}

.risk span {
  color: rgba(255, 250, 242, 0.68);
  line-height: 1.55;
}

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.steps li {
  counter-increment: step;
  min-height: 230px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.5);
}

.steps li::before {
  content: "0" counter(step);
  display: block;
  margin-bottom: 26px;
  color: var(--gold);
  font-weight: 850;
  letter-spacing: 0.12em;
}

.steps strong,
.steps span {
  display: block;
}

.steps strong {
  margin-bottom: 10px;
  font-size: 1.06rem;
}

.steps span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.58;
}

.founder-grid {
  align-items: stretch;
}

.founder-panel {
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(216, 189, 130, 0.18), rgba(255, 255, 255, 0.03)), rgba(255, 255, 255, 0.035);
  padding: 24px;
}

.founder-panel::before {
  position: absolute;
  inset: auto -24px 42px auto;
  content: "AMN";
  color: rgba(255, 255, 255, 0.05);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9rem;
  line-height: 1;
}

.founder-photo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  margin: 0 0 24px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #211d1b;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-panel strong {
  position: relative;
  z-index: 1;
  display: block;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.15rem;
  font-weight: 560;
  line-height: 1.05;
}

.founder-panel span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 12px;
  color: rgba(255, 250, 242, 0.72);
  line-height: 1.55;
}

.founder-copy {
  display: grid;
  align-content: center;
  gap: 20px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.tag-list span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.9rem;
}

.form-layout {
  align-items: start;
}

.lead-form {
  padding: 28px;
  background: rgba(255, 255, 255, 0.05);
}

.form-progress {
  margin-bottom: 22px;
  color: rgba(255, 250, 242, 0.72);
  font-weight: 800;
}

.progress-track {
  height: 8px;
  margin-top: 9px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.13);
}

.progress-track span {
  display: block;
  width: 50%;
  height: 100%;
  background: var(--gold);
  transition: width 180ms ease;
}

.form-step {
  display: none;
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.form-step.is-active {
  display: block;
}

.form-step > legend,
.checkbox-group > legend {
  margin: 0 0 16px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 560;
}

label {
  display: block;
  margin: 16px 0 8px;
  color: rgba(255, 250, 242, 0.82);
  font-size: 0.9rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 13px 14px;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 250, 242, 0.42);
}

select option {
  color: var(--graphite);
}

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

.field-note {
  margin: 8px 0 0;
  color: rgba(255, 250, 242, 0.58);
}

.checkbox-group {
  margin: 18px 0 0;
  border: 0;
  padding: 0;
}

.checkbox-group > legend {
  margin-bottom: 8px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
}

.checkbox-group label {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 8px 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  padding: 12px;
  color: rgba(255, 250, 242, 0.74);
  font-weight: 650;
}

.checkbox-group input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--gold);
}

.form-error {
  min-height: 1.25rem;
  margin: 12px 0 0;
  color: var(--error);
  font-weight: 800;
}

.full {
  width: 100%;
  margin-top: 12px;
}

.form-actions {
  justify-content: space-between;
  margin-top: 16px;
}

.form-actions .btn {
  flex: 1;
}

.faq-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 44px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  padding: 0;
  background: rgba(255, 250, 242, 0.72);
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  color: var(--graphite);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
}

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

.faq-list p {
  margin: 0;
  padding: 0 18px 16px;
}

.final-cta h2 {
  color: #fff;
}

.footer {
  padding: 38px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #110d0c;
  color: rgba(255, 250, 242, 0.7);
}

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

.footer strong {
  display: block;
  margin-bottom: 6px;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.footer p {
  color: rgba(255, 250, 242, 0.64);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.footer-links a {
  color: var(--gold-2);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(216, 189, 130, 0.42);
  text-underline-offset: 4px;
}

.footer-links a:hover {
  text-decoration-color: currentColor;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: #1f8f52;
  color: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 1040px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.72rem;
  }

  .header-actions {
    display: none;
  }

  .nav-links {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 24px 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(25, 23, 22, 0.98);
  }

  body.menu-open .nav-links {
    display: flex;
  }

  .nav-links a,
  .nav-links .btn {
    width: 100%;
    justify-content: flex-start;
  }

  .menu-btn {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
  }

  .hero-proof,
  .grid-3,
  .grid-2,
  .card-grid,
  .three-columns,
  .two-columns,
  .steps,
  .split,
  .founder-grid,
  .form-layout,
  .faq-wrap,
  .section-head {
    grid-template-columns: 1fr;
  }

  .proof-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .steps li,
  .founder-panel {
    min-height: auto;
  }

  .founder-photo {
    max-width: 420px;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 68px 0;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 0.96rem;
  }

  .brand span {
    font-size: 0.64rem;
  }

  h1 {
    font-size: 2.72rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero .lead {
    font-size: 1.04rem;
  }

  .button-row,
  .form-actions,
  .footer-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .button-row .btn,
  .form-actions .btn,
  .footer-inner .btn {
    width: 100%;
  }

  .card,
  .three-columns article,
  .lead-form {
    padding: 22px;
  }

  .card-grid.compact .card {
    min-height: auto;
  }

  .quote {
    font-size: 1.25rem;
  }

  .founder-photo {
    max-width: none;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
}
