:root {
  --ink: #151611;
  --muted: #5d6258;
  --line: #dcdfd6;
  --paper: #fbfbf6;
  --surface: #ffffff;
  --charcoal: #13151d;
  --gold: #d6bb28;
  --green: #284f2f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 64px);
  color: #fff;
  background: rgba(19, 21, 29, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
}

.site-nav a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease, color 160ms ease;
}

.site-nav a:hover {
  border-color: var(--gold);
  color: #f3df54;
}

.menu-button {
  display: none;
  width: 42px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: transparent;
  color: #fff;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  padding: 130px clamp(22px, 6vw, 84px) 72px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(19, 21, 29, 0.92), rgba(19, 21, 29, 0.56), rgba(19, 21, 29, 0.16)),
    url("/assets/img/hero-wealth.jpg") center / cover no-repeat;
}

.hero-copy {
  max-width: 710px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(46px, 8vw, 104px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero p {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.2vw, 24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 8px;
  border: 1px solid currentColor;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button.primary {
  border-color: var(--gold);
  background: var(--gold);
  color: #16170f;
}

.button.primary:hover {
  border-color: #f0d846;
  background: #f0d846;
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.58);
}

.button.secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(22px, 6vw, 84px);
}

.split {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(280px, 1fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}

.section h2,
.image-band h2,
.cta h2,
.contact-details h2 {
  margin: 0;
  font-size: clamp(30px, 4.6vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.text-flow p,
.content-page p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--green);
}

.image-band {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(260px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 0 clamp(22px, 6vw, 84px) clamp(58px, 8vw, 104px);
}

.image-band img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 8px;
}

.values,
.requirements {
  margin: 24px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 18px;
}

.values {
  columns: 2;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

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

.download-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.download-row span {
  display: grid;
  gap: 3px;
}

.download-row em {
  color: var(--muted);
  font-style: normal;
}

.download-row b,
.download-row strong + em {
  font-size: 14px;
}

.download-row:hover {
  color: var(--green);
}

.cta {
  margin: 0 clamp(22px, 6vw, 84px) clamp(58px, 8vw, 104px);
  padding: clamp(40px, 7vw, 72px);
  border-radius: 8px;
  background: var(--charcoal);
  color: #fff;
}

.cta p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.page-hero {
  padding: 138px clamp(22px, 6vw, 84px) 52px;
  background: var(--charcoal);
  color: #fff;
}

.page-hero h1 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.page-hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
}

.content-page {
  max-width: 1080px;
  padding-top: clamp(42px, 6vw, 72px);
  padding-bottom: clamp(58px, 8vw, 92px);
}

.content-page h2,
.content-page h3,
.content-page h4 {
  line-height: 1.08;
}

.content-page img {
  margin: 28px 0;
  border-radius: 8px;
}

.content-page a {
  color: var(--green);
  font-weight: 700;
}

.content-page ul,
.content-page ol {
  margin: 0;
  padding-left: 1.25em;
  color: var(--ink);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.75;
}

.content-page li + li {
  margin-top: 4px;
}

.about-visual {
  display: grid;
  grid-template-columns: minmax(320px, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(52px, 7vw, 88px) clamp(22px, 6vw, 84px);
  background: #f1f3ec;
}

.about-photo img {
  width: 100%;
  height: clamp(320px, 38vw, 520px);
  object-fit: cover;
  border-radius: 8px;
}

.about-brand {
  display: grid;
  gap: 24px;
  align-content: center;
}

.about-brand img {
  width: min(100%, 380px);
  height: auto;
}

.about-brand p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 84px);
}

.contact-details p {
  margin: 16px 0 0;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(214, 187, 40, 0.42);
  border-color: var(--gold);
}

.hidden-field {
  position: absolute;
  left: -10000px;
}

.notice {
  border-radius: 8px;
  padding: 12px 14px;
  border: 1px solid var(--line);
}

.notice.success {
  background: #eef7ef;
  border-color: #b7d6bb;
}

.notice.error {
  background: #fff1ef;
  border-color: #e6b2a9;
}

.notice p {
  margin: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(22px, 6vw, 84px);
  color: #fff;
  background: #0f1016;
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    display: none;
    padding: 16px 22px 22px;
    background: rgba(19, 21, 29, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-nav.is-open {
    display: grid;
  }

  .hero {
    min-height: 86svh;
    padding-top: 110px;
    background-position: 58% center;
  }

  .page-hero {
    padding-top: 112px;
    padding-bottom: 42px;
  }

  .page-hero h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .split,
  .image-band,
  .about-visual,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .image-band {
    padding-top: 0;
  }

  .image-band img {
    min-height: 300px;
  }

  .about-photo img {
    min-height: 300px;
    height: auto;
  }

  .section-head,
  .site-footer {
    align-items: start;
    flex-direction: column;
  }

  .values {
    columns: 1;
  }
}
