:root {
  --bw-gold: #c2a052;
  --bw-black: #0b0b0c;
  --bw-ink: #121315;
  --bw-charcoal: #1a1c1f;
  --bw-silver: #8b919a;
  --bw-cloud: #e9ebef;
  --bw-white: #ffffff;

  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow-card: 0 16px 40px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.bw-body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: var(--bw-black);
  color: var(--bw-white);
}

/* Layout helpers */

.site {
  min-height: 100vh;
  background-color: var(--bw-black);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

@media (min-width: 1200px) {
  .section {
    padding: 4rem 0;
  }
}

.section--dark {
  background-color: var(--bw-black);
  color: var(--bw-white);
}

.section--light {
  background-color: var(--bw-white);
  color: var(--bw-ink);
}

.section__grid {
  display: grid;
  gap: 3rem;
}

.section__grid--two {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
}

@media (max-width: 767px) {
  .section__grid--two {
    grid-template-columns: minmax(0, 1fr);
  }
}

.section__content-narrow {
  max-width: 720px;
}

/* Typography */

.section__headline {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin: 0;
}

.section__headline--light {
  color: var(--bw-white);
}

.section__headline--center {
  text-align: center;
}

.section__body {
  margin-top: 1.5rem;
  color: rgba(18, 19, 21, 0.8);
  line-height: 1.7;
  max-width: 44rem;
}

.section__body--light {
  color: rgba(255, 255, 255, 0.8);
}

.section__body--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Header and navigation */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 40;
  background: linear-gradient(
    to bottom,
    rgba(11, 11, 12, 0.95),
    rgba(11, 11, 12, 0.85),
    transparent
  );
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.85rem;
}
.site-header--scrolled .site-header__inner {
  padding-block: 0.6rem;
}

.brand--header {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

/* Base logo size (mobile / default) */
.brand__logo-horizontal {
  display: block;
  height: 58px;
  width: auto;
}

/* Larger logo on wider screens */
@media (min-width: 768px) {
  .brand__logo-horizontal {
    height: 78px;
  }
}

/* When header shrinks on scroll, gently reduce logo size */
.site-header--scrolled .brand__logo-horizontal {
  height: 46px;
}


/* Nav */

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.main-nav__list {
  list-style: none;
  display: flex;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
}

.main-nav__link {
  position: relative;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.main-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 0;
  height: 1px;
  background-color: var(--bw-gold);
  transition: width 0.18s ease;
}

.main-nav__link:hover::after {
  width: 100%;
}

.main-nav__link:hover {
  color: var(--bw-white);
}

.main-nav__cta {
  white-space: nowrap;
}

/* Mobile nav toggle */

.nav-toggle {
  display: none; /* hidden on desktop, shown in media query below */
  position: relative;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background-color: rgba(12, 12, 14, 0.9);
  cursor: pointer;
  padding: 0;
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background-color: #ffffff;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    width 0.2s ease;
}

/* Stack the bars with spacing */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
}

/* Show only on smaller screens */
@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }
}

/* Animate into an “X” when nav is open */
.site-header--nav-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 20px;
}

.site-header--nav-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.site-header--nav-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 20px;
}


/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease,
    border-color 0.18s ease, transform 0.12s ease;
}

.btn--pill {
  border-radius: 999px;
}

.btn--gold {
  background-color: var(--bw-gold);
  color: #000;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.btn--gold:hover {
  background-color: #d0b062;
  transform: translateY(-1px);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--bw-white);
  background-color: transparent;
}

.btn--ghost:hover {
  background-color: rgba(255, 255, 255, 0.06);
}

.btn--outline {
  border-color: rgba(0, 0, 0, 0.15);
  color: var(--bw-ink);
  background-color: transparent;
}

.btn--outline:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

/* Hero */

.hero {
  padding-top: 7.25rem; /* slightly more than before so nothing clips */
  padding-bottom: 3.5rem;
}


.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero__headline {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 2.8rem;
  line-height: 1.14;
  letter-spacing: 0.02em;
  margin: 0;
}
@media (min-width: 1200px) {
  .hero__headline {
    font-size: 3.1rem;
  }

  .hero__subcopy {
    font-size: 1.1rem;
  }
}


.hero__subcopy {
  margin-top: 1.4rem;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero__card-wrap {
  position: relative;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: radial-gradient(
      circle at 0 0,
      rgba(255, 255, 255, 0.2),
      transparent 55%
    ),
    rgba(14, 15, 18, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-card);
  padding: 2.1rem 2rem 2.15rem;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: calc(var(--radius-lg) + 8px);
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.14),
    transparent
  );
  opacity: 0.35;
  z-index: -1;
}

.hero-card__header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.3rem;
}

.hero-card__logo {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: block;
}

.hero-card__brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-card__brand-main {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
}

.hero-card__brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.hero-card__body {
  margin: 0;
  margin-top: 0.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.hero-card__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.7rem;
}

/* Metric */

.metric__value {
  font-size: 1.6rem;
  font-weight: 600;
}

.metric__label {
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Bullet list */

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 1.7rem 0 0;
}

.bullet-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  color: rgba(18, 19, 21, 0.8);
  font-size: 0.95rem;
}

.bullet-list__dot {
  margin-top: 0.42rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background-color: var(--bw-gold);
}

/* About highlight card */

.about-highlight {
  position: relative;
  border-radius: var(--radius-md);
  padding: 1.75rem 1.9rem;
  background-color: var(--bw-black);
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
  overflow: hidden;
}

.about-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at 0 0,
    rgba(194, 160, 82, 0.2),
    transparent 60%
  );
  opacity: 0.95;
  pointer-events: none;
}

/* Pill cards / info cards */

.mt-40 {
  margin-top: 2.5rem;
}

.card-grid {
  display: grid;
  gap: 1.5rem;
}

.card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 991px) {
  .card-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .card-grid--three,
  .card-grid--four {
    grid-template-columns: minmax(0, 1fr);
  }
}

.pill-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-color: rgba(255, 255, 255, 0.03);
  padding: 1.4rem 1.5rem;
}

.pill-card__accent {
  width: 48px;
  height: 4px;
  border-radius: 999px;
  background-color: var(--bw-gold);
}

.pill-card__title {
  margin: 0.85rem 0 0;
  font-size: 0.98rem;
}

/* Light info cards */

.info-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: var(--bw-white);
  padding: 1.45rem 1.5rem 1.6rem;
}

.info-card__accent {
  width: 48px;
  height: 4px;
  border-radius: 999px;
  background-color: var(--bw-gold);
}

.info-card__title {
  margin: 0.85rem 0 0.25rem;
  font-size: 1rem;
  font-weight: 600;
}

.info-card__body {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(18, 19, 21, 0.72);
  line-height: 1.7;
}

/* Illustration card */

.illustration-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background-color: rgba(255, 255, 255, 0.04);
  padding: 1.5rem 1.6rem 1.75rem;
}

.illustration-card__label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.illustration-card__visual {
  margin-top: 0.9rem;
  border-radius: 16px;
  height: 11.5rem;
  background: radial-gradient(
      circle at 0 0,
      rgba(255, 255, 255, 0.18),
      transparent 55%
    ),
    linear-gradient(
      135deg,
      rgba(194, 160, 82, 0.4),
      rgba(255, 255, 255, 0.05)
    );
}

.illustration-card__caption {
  margin: 0.7rem 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Steps */

.step-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: var(--bw-white);
  padding: 1.5rem 1.4rem 1.6rem;
}

.step-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background-color: rgba(194, 160, 82, 0.18);
  color: var(--bw-gold);
  font-size: 0.9rem;
  font-weight: 600;
}

.step-card__title {
  margin: 0.9rem 0 0.2rem;
  font-size: 1rem;
}

.step-card__body {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(18, 19, 21, 0.72);
  line-height: 1.7;
}

/* FAQ */

.faq {
  max-width: 720px;
}

.faq__list {
  margin-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-item__button {
  width: 100%;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  text-align: left;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.faq-item__question {
  font-size: 0.98rem;
}

.faq-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.7;
  padding-bottom: 0;
  transition: max-height 0.2s ease, padding-bottom 0.2s ease;
}

.faq-item--open .faq-item__answer {
  max-height: 200px;
  padding-bottom: 0.9rem;
}

.faq-item--open .faq-item__icon {
  transform: rotate(45deg);
}

/* Closing CTA */

.closing {
  max-width: 720px;
  text-align: center;
}

.closing__actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Modal */

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  /* Allow scrolling inside the overlay on mobile */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal--open {
  display: block;
}


.modal--open {
  display: block;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
}

.modal__dialog {
  position: relative;
  max-width: 520px;
  margin: 6vh auto;
  padding: 2rem 2rem 2.25rem;
  border-radius: 24px;
  background-color: #0f1013;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);

  /* NEW: keep dialog inside viewport and let its contents scroll */
  max-height: calc(100vh - 64px); /* leaves a bit of space above/below */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}


@media (max-width: 640px) {
  .modal__dialog {
    /* tighter margins on phones, full-height scrollable sheet */
    margin: 16px 16px;
    padding: 1.75rem 1.5rem 1.9rem;
    max-height: calc(100vh - 32px);
  }
}


.modal__close {
  position: absolute;
  top: 1.05rem;
  right: 1.1rem;
  border: none;
  background: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.3rem;
  cursor: pointer;
}

.modal__title {
  margin: 0;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

.modal__subtitle {
  margin: 0.75rem 0 1.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.88rem;
}

.field-group label {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.field-group label span {
  color: var(--bw-gold);
  margin-left: 0.1rem;
}

.field-row {
  display: flex;
  gap: 1rem;
}

@media (max-width: 640px) {
  .field-row {
    flex-direction: column;
  }
}

.field-group input,
.field-group select,
.field-group textarea {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background-color: rgba(8, 8, 10, 0.9);
  color: #ffffff;
  padding: 0.6rem 0.9rem;
  font: inherit;
}

.field-group textarea {
  border-radius: 16px;
  min-height: 96px;
  resize: vertical;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  outline: none;
  border-color: var(--bw-gold);
  box-shadow: 0 0 0 1px rgba(194, 160, 82, 0.55);
}

.field-group--checkbox {
  margin-top: 0.4rem;
}

.field-group--checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.84);
}

.field-group--checkbox input[type="checkbox"] {
  margin-top: 0.2rem;
}

.modal__status {
  min-height: 1.1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
}

.modal__status--success {
  color: #7ef29c;
}

.modal__status--error {
  color: #ff9c9c;
}

.modal__submit {
  align-self: flex-start;
  margin-top: 0.4rem;
}

/* Footer */

.site-footer {
  background-color: var(--bw-black);
  color: var(--bw-white);
  padding: 3rem 0 2.5rem;
}


.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.site-footer__logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
}

.site-footer__brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.site-footer__brand-main {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  letter-spacing: 0.18em;
  font-size: 0.92rem;
}

.site-footer__brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__cols {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .site-footer__cols {
    grid-template-columns: 1.2fr 1fr 1.6fr;
  }
}

.site-footer__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0.85rem 0 0;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.86);
}

.site-footer__links a {
  color: inherit;
  text-decoration: none;
}

.site-footer__links a:hover {
  text-decoration: underline;
}

.site-footer__links li + li {
  margin-top: 0.35rem;
}

.site-footer__disclaimer {
  margin: 0.85rem 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.site-footer__bottom {
  margin-top: 1rem;
}

.site-footer__divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.16);
}

.site-footer__copyright {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Closing CTA sizing on large screens */

@media (min-width: 1200px) {
  #contact .section__headline,
  #contact h2 {
    font-size: 2.5rem;
  }
}

/* Responsive adjustments */

@media (max-width: 991px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__card-wrap {
    max-width: 420px;
    margin-inline: auto;
  }
}

@media (max-width: 767px) {
  .site-header__inner {
    padding-block: 0.7rem;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 0.75rem 1.5rem 1rem;
    background-color: rgba(11, 11, 12, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .main-nav__list {
    flex-direction: column;
    gap: 0.4rem;
  }

  

  .site-header--nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}
