:root {
  --dark-0: #0b1320;
  --dark-1: #0a111b;
  --dark-2: #0f1826;
  --light-0: #f7f3ee;
  --light-1: #fbf8f3;

  --gold: #cfa64a;
  --gold-2: #d9b24a;
  --gold-3: #b58e2f;
  --white: #ffffff;

  --text-muted: rgba(255, 255, 255, 0.72);
  --text-muted-dark: rgba(18, 18, 18, 0.62);

  --radius-12: 12px;
  --radius-16: 16px;
  --radius-18: 18px;
  --radius-pill: 999px;

  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.16);
  --shadow-card: 0 18px 60px rgba(0, 0, 0, 0.12);

  --container: 1180px;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;

  background: var(--light-1);
}

/* helpers */
.container {
  width: min(var(--container), calc(100% - 56px));
  margin: 0 auto;
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }
}

@media (max-width: 480px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }
}

a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
}
.onnho5 {
  color: #fff;
}

.btn {
  /* font-size: 1.125rem;
  line-height: 1.75rem; */
  font-weight: 600;
  border-radius: 9999px;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  border: none;
}
.btn:active {
  transform: translateY(1px);
}

@media (max-width: 640px) {
  .btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    /* width: 100%; */
  }
  .btn--primary,
  .btn--outline,
  .btn--ghost {
    /* width: 100%; */
  }
}
.btn--primary {
  color: #14181f;
  background: linear-gradient(135deg, #d99d26, #aa7418);
  box-shadow:
    0 0 30px #d99d2666,
    0 0 60px #d99d2626;
}
.btn--primary:hover {
  filter: brightness(1.08);
  transform: translateY(-4px);
  box-shadow:
    0 8px 40px #d99d2699,
    0 12px 70px #d99d2644;
}
.btn--primary:active {
  transform: translateY(-2px);
}
.btn--ghost {
  color: #e0c285;
  letter-spacing: 0.025em;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-radius: 9999px;
  border: 1px solid #d99d2666;
}
.btn--ghost:hover {
  border-color: #d99d26;
  color: #e0c285;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(217, 157, 38, 0.2);
}
.btn--outline {
  color: #d99d26;
  background: transparent;
  border: 2px solid #d99d26;
  border-radius: 9999px;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  /* padding: 0 18px; */
}
.btn--outline:hover {
  background: rgba(217, 157, 38, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(217, 157, 38, 0.15);
  border-color: #d99d26;
}
.btn--outline:active {
  transform: translateY(-1px);
}
.btn--small {
  height: 38px;
  padding: 0 18px;
  font-size: 12px;
}
.btn--icon {
  padding-left: 18px;
  padding-right: 18px;
}
.btn__ico {
  display: inline-flex;
  color: #141414;
}

/* =========================
   BROCHURE MODAL (Isolated)
========================= */

.brochure-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.brochure-modal__overlay[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.brochure-modal__card {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  animation: brochureSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes brochureSlideIn {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.brochure-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}

.brochure-modal__close:hover {
  color: #000;
}

.brochure-modal__content {
  text-align: center;
}

.brochure-modal__kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.brochure-modal__title {
  font-size: 32px;
  font-weight: 600;
  color: var(--dark-0);
  margin: 0 0 16px 0;
  font-family: "Playfair Display", serif;
}

.brochure-modal__description {
  font-size: 15px;
  color: var(--text-muted-dark);
  line-height: 1.6;
  margin: 0 0 15px 0;
}

.brochure-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  background: linear-gradient(135deg, #d99d26, #aa7418);
  color: rgb(0, 0, 0);
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(207, 166, 74, 0.3);
}

.brochure-modal__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(207, 166, 74, 0.4);
  filter: brightness(1.05);
}

.brochure-modal__btn:active {
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .brochure-modal__card {
    padding: 32px 24px;
    max-width: 95%;
    border-radius: 16px;
  }
  .brochure-modal__title {
    font-size: 24px;
    margin: 0 0 12px 0;
  }
  .brochure-modal__description {
    font-size: 13px;
    margin: 0 0 14px 0;
  }
  .brochure-modal__btn {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
  }
}

/* HERO */
.hero {
  position: relative;
  min-height: 640px;
  padding: 26px 0 34px;
  background: #0b1017;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/banner-one.png");
  background-size: cover;
  background-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: #000000d6;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img {
  height: 170px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.brand__mark {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-image: url("../images/logo-promont.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__name {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.82);
}
.brand__sub {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(207, 166, 74, 0.95);
  margin-top: 2px;
}

.hero__center {
  text-align: center;
  padding-top: 56px;
}
.hero__kicker {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #e0c285;
  letter-spacing: 0.3em;
}
.hero__title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 600;
}
.hero__titleTop {
  display: block;
  font-size: 58px;
  color: rgba(255, 255, 255, 0.92);
}
.hero__titleGold {
  display: block;
  font-size: 58px;
  background-clip: text;
  color: transparent;
  background-image: linear-gradient(135deg, #d99d26, #e0c285, #aa7418);
}
.hero__desc {
  width: min(700px, 100%);
  margin: 25px auto 2.5rem;
  color: rgba(255, 255, 255, 0.7);
}
.hero__ctaRow {
  margin-top: 22px;
}

.hero__badges {
  margin: 22px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero {
    min-height: 520px;
    padding: 20px 0 24px;
  }
  .brand img {
    height: 70px;
  }
  .hero__center {
    padding-top: 40px;
  }
  .hero__kicker {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
  }
  .hero__titleTop,
  .hero__titleGold {
    font-size: 36px;
    line-height: 1.2;
  }
  .hero__desc {
    font-size: 14px;
    margin: 16px auto 1.5rem;
    line-height: 1.5;
  }
  .hero__ctaRow {
    margin-top: 16px;
  }
  .hero__scroll {
    margin-top: 14px;
  }
  .pill {
    padding: 8px 12px;
    font-size: 11px;
    gap: 6px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 380px;
    padding: 12px 0 16px;
  }
  .nav {
    padding: 8px 0;
  }
  .nav > a:last-child {
    font-size: 10px;
    padding: 5px 8px;
  }
  .brand img {
    height: 120px;
  }
  .hero__center {
    padding-top: 20px;
  }
  .hero__kicker {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
  }
  .hero__titleTop,
  .hero__titleGold {
    font-size: 16px !important;
    line-height: 1.05 !important;
    margin: 0;
    word-break: break-word;
  }
  .hero__title {
    margin: 0;
    letter-spacing: -1px;
  }
  .hero__desc {
    font-size: 11px;
    margin: 10px auto 1rem;
    line-height: 1.3;
    width: 95%;
  }
  .hero__ctaRow {
    margin-top: 12px;
  }
  .hero__scroll {
    display: none;
  }
  .hero__badges {
    gap: 5px;
    margin-top: 10px;
    justify-content: center;
  }
  .pill {
    padding: 5px 8px;
    font-size: 8px;
    border-radius: 14px;
    gap: 3px;
  }
  .pill__ico {
    font-size: 8px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 360px;
    padding: 10px 0 14px;
  }
  .brand img {
    height: 45px;
  }
  .hero__center {
    padding-top: 16px;
  }
  .hero__titleTop,
  .hero__titleGold {
    font-size: 45px !important;
    line-height: 1 !important;
  }
  .hero__desc {
    font-size: 10px;
    margin: 8px auto 0.8rem;
  }
  .hero__ctaRow {
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .hyphen {
    display: none;
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  background: rgba(20, 24, 31, 0.5);
  border: 1px solid rgba(207, 166, 74, 0.22);
  color: #e0c285;
  font-size: 11px;
}
.pill__ico {
  color: rgba(207, 166, 74, 0.95);
  display: inline-flex;
}

.hero__scroll {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scrollText {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
}
.hero__scrollDot {
  width: 10px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(207, 166, 74, 0.45);
  position: relative;
}
.hero__scrollDot::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: rgba(207, 166, 74, 0.95);
  opacity: 0.9;
}

/* Sections */
.section {
  padding: 78px 0;
}
.section--tight {
  padding: 64px 0;
}
.section--light {
  background: #fff;
}
.section--dark {
  background: var(--dark-0);
  color: var(--white);
}

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }
  .section--tight {
    padding: 48px 0;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 42px 0;
  }
  .section--tight {
    padding: 36px 0;
  }
}

.sectionHead {
  text-align: center;
  margin-bottom: 26px;
}
.sectionHead__kicker {
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: 0.2em;
  color: #d99d26;
  margin-bottom: 10px;
}
.sectionHead__title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 40px;
  color: #141414;
  line-height: 1.1;
}
.sectionHead--dark .sectionHead__title {
  color: rgba(255, 255, 255, 0.92);
}
.sectionHead__desc {
  margin: 10px auto 0;
  width: min(640px, 100%);
  color: #ad9d85;
  font-size: 12.5px;
  line-height: 1.7;
}
.sectionHead__descLight {
  color: rgba(18, 18, 18, 0.62);
}

@media (max-width: 768px) {
  .sectionHead {
    margin-bottom: 22px;
  }
  .sectionHead__kicker {
    font-size: 0.75rem;
    margin-bottom: 8px;
  }
  .sectionHead__title {
    font-size: 28px;
    margin: 0;
  }
  .sectionHead__desc {
    font-size: 13px;
    margin-top: 8px;
  }
}

@media (max-width: 640px) {
  .sectionHead {
    margin-bottom: 18px;
  }
  .sectionHead__title {
    font-size: 22px;
    line-height: 1.2;
  }
  .sectionHead__desc {
    font-size: 12px;
    line-height: 1.6;
  }
}

/* Stepper */
.stepper {
  width: min(760px, 100%);
  margin: 22px auto 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: start;
}
.step {
  position: relative;
  text-align: center;
  /* padding-top: 6px; */
}
.step::before {
  content: "";
  position: absolute;
  top: 18px;
  left: calc(-50% + 18px);
  right: calc(50% + 18px);
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
.step:first-child::before {
  display: none;
}

.step__dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.45);
  background: rgba(0, 0, 0, 0.06);
}
.step__label {
  margin-top: 8px;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.45);
}
.step--active .step__dot {
  background: linear-gradient(135deg, #d99d26, #aa7418);
  color: #fff;
  border: 1px solid rgba(207, 166, 74, 0.45);
}
.step--active .step__label {
  color: rgba(0, 0, 0, 0.55);
}

@media (max-width: 980px) {
  .stepper {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 14px;
  }
  .step::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .stepper {
    display: none;
  }
  .step {
    padding: 8px;
  }
  .step__dot {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }
  .step__label {
    margin-top: 6px;
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .stepper {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 12px auto 16px;
  }
  .step {
    padding: 6px;
  }
  .step__dot {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }
  .step__label {
    font-size: 9px;
  }
}

/* Visit card */
.visitCard {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: center;
}
.visitCard__inner {
  width: min(760px, 100%);
  background: #f4f0ea;
  border-radius: var(--radius-16);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 28px 28px 22px;
}
.visitCard__q {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 18px;
  color: #1a1a1a;
}
.visitCard__sub {
  margin: 6px 0 18px;
  font-size: 12px;
  color: rgba(18, 18, 18, 0.55);
}

.choiceList {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.choice {
  width: 100%;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.32);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  cursor: pointer;
  transition:
    background 0.12s ease,
    border-color 0.12s ease;
}
.choice__left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.choice__ico {
  color: rgba(0, 0, 0, 0.45);
  display: inline-flex;
}
.choice__text {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.62);
  font-weight: 500;
}
.choice__check {
  color: rgba(120, 84, 10, 0.92);
  display: none;
}

.choice--active {
  background: rgba(207, 166, 74, 0.12);
  border-color: rgba(207, 166, 74, 0.65);
}
.choice--active .choice__ico {
  color: rgba(120, 84, 10, 0.92);
}
.choice--active .choice__text {
  color: rgba(0, 0, 0, 0.72);
}
.choice--active .choice__check {
  display: inline-flex;
}

.visitCard__footer {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
}

/* Dark explore section */
.section--dark .sectionHead__kicker {
  color: #d99d26;
}
.section--dark .sectionHead__title {
  color: rgba(255, 255, 255, 0.92);
}

.featureRow {
  margin: 26px auto 26px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.featureCard {
  width: 150px;
  height: 92px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
.featureCard__ico {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  background: #d99d261a;
  border: 1px solid rgba(207, 166, 74, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(207, 166, 74, 0.95);
}
.featureCard__text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.2;
}

@media (max-width: 768px) {
  .featureRow {
    margin: 20px auto;
    gap: 12px;
  }
  .featureCard {
    width: 130px;
    height: 84px;
    gap: 8px;
  }
  .featureCard__ico {
    width: 32px;
    height: 32px;
  }
  .featureCard__text {
    font-size: 10px;
  }
}

@media (max-width: 640px) {
  .featureRow {
    margin: 16px auto;
    gap: 10px;
  }
  .featureCard {
    width: 100%;
    height: auto;
    padding: 12px;
    border-radius: 8px;
  }
  .featureCard__ico {
    width: 28px;
    height: 28px;
  }
  .featureCard__text {
    font-size: 12px;
  }
}

.centerRow {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

/* Final CTA strip */
.final {
  background: linear-gradient(180deg, var(--dark-1), var(--dark-2));
  padding: 56px 0;
  color: var(--white);
}
.final__inner {
  text-align: center;
}
.final__title {
  margin: 0 0 14px;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 34px;
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 768px) {
  .final {
    padding: 44px 0;
  }
  .final__title {
    font-size: 26px;
  }
}

@media (max-width: 640px) {
  .final {
    padding: 32px 0;
  }
  .final__title {
    font-size: 20px;
    margin-bottom: 12px;
  }
}

/* Responsive (keeps look stable on 1440 and below) */
@media (max-width: 1200px) {
  :root {
    --container: 1060px;
  }
  .hero__titleTop,
  .hero__titleGold {
    font-size: 54px;
  }
}
@media (max-width: 980px) {
  .stepper {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 18px;
  }
  .step::before {
    display: none;
  }
  .hero__titleTop,
  .hero__titleGold {
    font-size: 44px;
  }
  .sectionHead__title {
    font-size: 34px;
  }
}

/* =========================
   GLOBAL SPACING SCALE
========================= */

.section--tight {
  padding: 84px 0;
}

/* =========================
   HERO SPACING
========================= */

.hero {
  min-height: 720px;
  padding: 0px 0 40px;
}

.nav {
  padding: 6px 0 12px;
}

.hero__center {
  margin-top: -140px;
}

.hero__kicker {
  margin-bottom: 1.5rem;
}

.hero__titleTop,
.hero__titleGold {
  font-size: 4.3rem;
  line-height: 1;
}

.hero__desc {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.hero__ctaRow {
  margin-top: 28px;
}

.hero__badges {
  margin-top: 3.5rem;
  gap: 14px;
}

.pill {
  height: 36px;
  padding: 0 16px;
  font-size: 0.75rem;
  line-height: 1rem;
}

.hero__scroll {
  margin-top: 22px;
}

/* =========================
   SECTION HEADINGS
========================= */

.sectionHead {
  margin-bottom: 20px;
}

.sectionHead__title {
  font-size: 44px;
}

.sectionHead__desc {
  margin-top: 14px;
  font-size: 1rem;
}

/* =========================
   STEPPER
========================= */

.stepper {
  margin: 28px auto 40px;
  gap: 18px;
}

.step__dot {
  width: 36px;
  height: 36px;
  font-size: 13px;
}

.step__label {
  margin-top: 10px;
  font-size: 12px;
}

/* =========================
   VISIT CARD
========================= */

.visitCard__inner {
  padding: 34px 34px 28px;
  border-radius: 18px;
}

.visitCard__q {
  font-size: 20px;
}

.visitCard__sub {
  margin: 10px 0 22px;
  font-size: 13px;
}

.choice {
  height: 50px;
  padding: 0 18px;
  border-radius: 12px;
}

.choice__text {
  font-size: 13px;
}

.visitCard__footer {
  margin-top: 24px;
}

/* =========================
   FEATURE CARDS
========================= */

.featureRow {
  margin: 36px auto 34px;
  gap: 18px;
}

.featureCard {
  width: 170px;
  height: 108px;
  border-radius: 14px;
}

.featureCard__ico {
  width: 42px;
  height: 42px;
}

.featureCard__text {
  font-size: 12px;
  line-height: 1.25;
}

/* =========================
   FINAL CTA
========================= */

.final {
  padding: 72px 0;
}

.final__title {
  font-size: 38px;
  margin-bottom: 50px;
}

/* =========================
   VISIT FORM (Main Page)
========================= */

.visitForm {
  max-width: 800px;
  margin: 0 auto;
}

.visitForm__step {
  display: none;
  animation: fadeIn 0.3s ease-in;
}

.visitForm__step.is-active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.visitForm__title {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 12px 0;
  color: var(--dark-0);
  font-family: "Playfair Display", serif;
}

.visitForm__subtitle {
  font-size: 16px;
  color: var(--text-muted-dark);
  margin: 0 0 32px 0;
  line-height: 1.5;
}

.visitForm__subtitle-2 {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-0);
  margin: 32px 0 16px 0;
  display: block;
}

.visitForm__options {
  display: grid;
  gap: 16px;
  margin-bottom: 0px;
}

.visitForm__options--grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.visitForm__options--grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.visitForm__option {
  display: flex;
  align-items: center;
  padding: 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: white;
}

.visitForm__option:hover {
  border-color: var(--gold);
  background: rgba(207, 166, 74, 0.05);
}

.visitForm__radio {
  margin: 0;
  margin-right: 12px;
  cursor: pointer;
  accent-color: var(--gold);
}

.visitForm__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-0);
  cursor: pointer;
  flex: 1;
}

.visitForm__option input[type="radio"]:checked + .visitForm__label {
  color: var(--gold);
  font-weight: 600;
}

.visitForm__option input[type="radio"]:checked {
  accent-color: var(--gold-3);
}

.visitForm__fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.visitForm__field {
  display: flex;
  flex-direction: column;
}

.visitForm__fieldLabel {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-0);
  margin-bottom: 8px;
}

.visitForm__input {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.visitForm__input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(207, 166, 74, 0.02);
}

.visitForm__radioGroup {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.visitForm__checkLabel {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-muted-dark);
  transition: color 0.2s ease;
}

.visitForm__checkLabel input[type="radio"] {
  margin-right: 8px;
  cursor: pointer;
  accent-color: var(--gold);
}

.visitForm__checkLabel:hover {
  color: var(--dark-0);
}

.visitForm__checkLabel input[type="radio"]:checked + span {
  color: var(--gold);
  font-weight: 600;
}

.visitForm__footer {
  /* margin-top: 48px; */
  padding-top: 32px;
  /* border-top: 1px solid #e0e0e0; */
}

.visitForm__progress {
  margin-bottom: 32px;
}

.visitForm__progressText {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted-dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.visitForm__progressBar {
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  overflow: hidden;
}

.visitForm__progressFill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transition: width 0.4s ease;
  border-radius: 2px;
}

.visitForm__actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.btn--small {
  padding: 10px 24px;
  font-size: 14px;
}

#formBackBtn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* =========================
========================= */

.container {
  width: min(1400px, calc(100% - 50px));
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 640px) {
  /* Visit Form Mobile Styles */
  .visitForm {
    max-width: 100%;
    padding: 0;
  }

  .visitForm__title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.25;
    color: var(--dark-0);
  }

  .visitForm__subtitle {
    font-size: 13px;
    margin: 0 0 20px 0;
    line-height: 1.4;
  }

  .visitForm__subtitle-2 {
    font-size: 12px;
    margin: 20px 0 12px 0;
  }

  .visitForm__options {
    gap: 10px;
    margin-bottom: 0;
  }

  .visitForm__options--grid-3 {
    grid-template-columns: 1fr;
  }

  .visitForm__options--grid-4 {
    grid-template-columns: 1fr;
  }

  .visitForm__option {
    padding: 12px;
    border-radius: 6px;
    min-height: 48px;
  }

  .visitForm__radio {
    margin-right: 10px;
    width: 16px;
    height: 16px;
  }

  .visitForm__label {
    font-size: 12px;
  }

  .visitForm__fields {
    gap: 14px;
  }

  .visitForm__field {
    gap: 6px;
  }

  .visitForm__fieldLabel {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .visitForm__input {
    padding: 10px 12px;
    font-size: 13px;
    border-radius: 4px;
  }

  .visitForm__radioGroup {
    gap: 10px;
    flex-direction: column;
  }

  .visitForm__checkLabel {
    font-size: 12px;
    padding: 6px 0;
    gap: 8px;
  }

  .visitForm__checkLabel input[type="radio"] {
    margin-right: 0;
    width: 14px;
    height: 14px;
  }

  .visitForm__footer {
    padding-top: 20px;
  }

  .visitForm__actions {
    gap: 8px;
    justify-content: space-between;
  }

  #formBackBtn,
  #formNextBtn,
  #formSubmitBtn {
    flex: 1;
    padding: 10px 12px;
    font-size: 12px;
    border-radius: 6px;
  }

  /* Stepper Mobile */
  .stepper {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 16px auto 22px;
  }

  .step {
    padding: 0;
  }

  .step::before {
    display: none;
  }

  .step__dot {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }

  .step__label {
    font-size: 10px;
    margin-top: 4px;
  }

  /* Section Head Mobile */
  .sectionHead {
    margin-bottom: 16px;
  }

  .sectionHead__kicker {
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 6px;
  }

  .sectionHead__title {
    font-size: 20px;
    line-height: 1.15;
    margin: 0;
  }

  .sectionHead__desc {
    font-size: 12px;
    line-height: 1.4;
    margin-top: 6px;
  }

  /* Buttons Mobile */
  .cta-link {
    padding: 9px 14px;
    font-size: 11px;
    border-radius: 6px;
  }

  .btn--primary {
    padding: 11px 18px;
    font-size: 12px;
  }

  .btn--outline {
    padding: 10px 16px;
    font-size: 12px;
  }

  .btn--ghost {
    padding: 8px 12px;
    font-size: 11px;
  }

  /* Section spacing mobile */
  .section {
    padding: 40px 0;
  }

  .section--light {
    padding: 40px 0;
  }

  .section--dark {
    padding: 40px 0;
  }

  /* Feature cards mobile */
  .featureRow {
    gap: 10px;
    margin: 16px auto;
  }

  .featureCard {
    width: 100%;
    height: auto;
    padding: 12px;
    gap: 8px;
  }

  .featureCard__text {
    font-size: 11px;
  }

  .featureCard__ico {
    width: 32px;
    height: 32px;
  }

  /* Center Row */
  .centerRow {
    margin-top: 8px;
  }
}

@media (max-width: 768px) {
  /* Tablet optimizations */
  .sectionHead__title {
    font-size: 22px;
  }

  .visitForm__options--grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .visitForm__options--grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .stepper {
    grid-template-columns: 1fr 1fr;
    row-gap: 12px;
  }
}

@media (max-width: 480px) {
  /* Small mobile adjustments */
  .visitForm__titleTop,
  .visitForm__titleGold {
    font-size: 18px;
  }

  .visitForm__option {
    padding: 10px;
    min-height: 44px;
  }

  .stepper {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 12px auto 16px;
  }

  .step__dot {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }

  .step__label {
    font-size: 9px;
  }

  .sectionHead__title {
    font-size: 18px;
  }

  .visitForm__actions {
    flex-direction: column;
    gap: 8px;
  }

  #formBackBtn,
  #formNextBtn,
  #formSubmitBtn {
    width: 100%;
  }

  .cta-link {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  /* Extra small screens */
  .visitForm__title {
    font-size: 19px;
  }

  .visitForm__option {
    padding: 12px 10px;
  }

  .visitForm__label {
    font-size: 12px;
  }

  .stepper {
    grid-template-columns: 1fr;
    row-gap: 8px;
    margin-bottom: 24px;
  }

  .step {
    padding: 8px;
  }

  .sectionHead__title {
    font-size: 20px;
  }

  .visitForm__options {
    gap: 10px;
  }

  .visitForm__actions {
    flex-direction: column;
    gap: 8px;
  }

  .cta-link {
    width: 100%;
    text-align: center;
  }

  #formBackBtn,
  #formNextBtn,
  #formSubmitBtn {
    flex: 1;
    width: 100%;
  }
}

