@import url("https://fonts.googleapis.com/css2?family=Quattrocento:wght@400;700&display=swap");
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    --gold: #b89a5e;
    --gold-lt: #d4b97a;
    --gold-pale: #f9f3e8;
    --gold-dim: rgba(184, 154, 94, 0.18);
    --ink: #171310;
    --warm: #271b0e;
    --mid: #6b5740;
    --muted: #a08872;
    --ivory: #faf8f4;
    --rule: rgba(184, 154, 94, 0.2);
    --serif: "Denton";
    --sans: "Quattrocento", serif;
}
html {
    scroll-behavior: smooth;
}
body {
    background: var(--ink);
    color: var(--ivory);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
    font-family: var(--sans);
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    height: 60px;
    background: rgba(23, 19, 16, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 0.5px solid var(--rule);
}
.logo {
    font-size: 17px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ivory);
    font-weight: 400;
}
.logo b {
    color: var(--gold);
    font-weight: 400;
}
.nav-pill {
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    border: 0.5px solid var(--gold);
    padding: 7px 18px;
    text-decoration: none;
    transition: all 0.25s;
}
.nav-pill:hover {
    background: var(--gold);
    color: var(--ink);
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: var(--ink);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 150px 1.5rem 80px;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(184, 154, 94, 0.07) 0%, transparent 70%);
}
.hero-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 0.5px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--gold));
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--gold);
    border: 0.5px solid rgba(184, 154, 94, 0.35);
    padding: 7px 20px;
    margin-bottom: 2.5rem;
    animation: up 0.8s ease both;
}
.badge::before,
.badge::after {
    content: "◆";
    font-size: 6px;
}
.hero h1 {
    font-size: clamp(54px, 9vw, 108px);
    font-weight: 300;
    color: var(--ivory);
    line-height: 0.95;
    letter-spacing: 0.01em;
    margin-bottom: 1.4rem;
    animation: up 0.8s 0.08s ease both;
}
.hero h1 i {
    color: var(--gold-lt);
    font-style: italic;
    display: block;
}
.rule-c {
    width: 50px;
    height: 0.5px;
    background: var(--gold);
    margin: 0 auto 1.8rem;
    animation: up 0.8s 0.16s ease both;
}
.hero-sub {
    font-size: clamp(18px, 2.4vw, 26px);
    font-style: italic;
    color: var(--muted);
    max-width: 560px;
    margin-bottom: 3rem;
    animation: up 0.8s 0.22s ease both;
}

/* ── PAYMENT TOGGLE ── */
.toggle-row {
    display: flex;
    gap: 0;
    margin-bottom: 1.5rem;
    border: 0.5px solid rgba(184, 154, 94, 0.3);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.tog {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: transparent;
    color: var(--muted);
    border: none;
    padding: 9px 24px;
    cursor: pointer;
    transition: all 0.25s;
}
.tog.active {
    background: var(--gold);
    color: var(--ink);
}
.tog:not(.active):hover {
    color: var(--gold);
}
.pr-save {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: rgba(184, 154, 94, 0.12);
    color: var(--gold);
    padding: 3px 9px;
    margin-left: 8px;
    vertical-align: middle;
}

/* price reveal */
.price-reveal {
    text-align: center;
    margin-bottom: 3rem;
    animation: up 0.8s 0.3s ease both;
}
.pr-from {
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.4rem;
}
.pr-num {
    font-size: clamp(72px, 10vw, 120px);
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -0.01em;
    position: relative;
}
.pr-num sup {
    vertical-align: top;
    margin-top: 50px;
    display: inline-block;
    font-size: 40px;
}
.pr-sub {
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.4rem;
}
.pr-note {
    font-size: 13px;
    color: rgba(160, 136, 114, 0.55);
    margin-top: 0.5rem;
}

/* enroll button */
.enroll-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: up 0.8s 0.38s ease both;
}
.sq-btn {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--ink);
    padding: 17px 52px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}
.sq-btn:hover {
    background: var(--gold-lt);
    letter-spacing: 0.32em;
}
.sq-sub {
    font-size: 12px;
    letter-spacing: 0.14em;
    color: rgba(160, 136, 114, 0.5);
}

/* ── SECTION BASE ── */
section {
    padding: 100px 1.5rem;
}
.container {
    max-width: 1060px;
    margin: 0 auto;
}
.eyebrow {
    font-size: 12px;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.9rem;
}
.h2 {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}
.h2 i {
    font-style: italic;
    color: var(--gold);
}
.hr {
    width: 44px;
    height: 0.5px;
    background: var(--gold);
    margin-bottom: 2rem;
}
.body-text {
    font-size: 14px;
    color: var(--muted);
    max-width: 580px;
    line-height: 2;
    margin-bottom: 3.5rem;
}

/* ── WHAT'S INCLUDED ── */
.included {
    background: var(--ink);
}
.ig {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1px;
    background: var(--rule);
    border: 0.5px solid var(--rule);
}
.ic {
    background: var(--ink);
    padding: 2.2rem 1.75rem;
    transition: background 0.3s;
    position: relative;
}
.ic:hover {
    background: #1f1812;
}
.ic-n {
    font-size: 48px;
    font-weight: 300;
    color: rgba(184, 154, 94, 46%);
    line-height: 1;
    margin-bottom: 0.8rem;
}
.ic-t {
    font-size: 19px;
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 0.4rem;
}
.ic-d {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.9;
}
.ic-badge {
    display: inline-block;
    margin-top: 1.2rem;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    border: 0.5px solid rgba(184, 154, 94, 0.3);
    padding: 4px 10px;
}

/* ── JOURNEY (no pricing) ── */
.journey {
    background: #100d09;
}
.tl {
    position: relative;
    margin-top: 3.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 4rem;
}
.tl::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 0.5px;
    background: var(--rule);
    transform: translateX(-50%);
}
.ti {
    padding: 0 2rem 2.5rem;
    position: relative;
}
.ti.left {
    text-align: right;
    padding-right: 3rem;
    padding-left: 0;
}
.ti.right {
    text-align: left;
    padding-left: 3rem;
    padding-right: 0;
}
.ti.left::after {
    content: "";
    position: absolute;
    right: -5px;
    top: 5px;
    width: 9px;
    height: 9px;
    border: 0.5px solid var(--gold);
    background: var(--ink);
    transform: rotate(45deg);
}
.ti.right::after {
    content: "";
    position: absolute;
    left: -5px;
    top: 5px;
    width: 9px;
    height: 9px;
    border: 0.5px solid var(--gold);
    background: var(--ink);
    transform: rotate(45deg);
}
.ti-step {
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(184, 154, 94, 0.5);
    margin-bottom: 0.3rem;
}
.ti-t {
    font-size: 20px;
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 0.35rem;
}
.ti-d {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.85;
}

/* ── INNER CIRCLE PERKS ── */
.inner {
    background: var(--warm);
}
.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    margin-top: 3rem;
}
.pk {
    padding: 2rem 1.5rem;
    border-right: 0.5px solid rgba(184, 154, 94, 0.12);
    border-bottom: 0.5px solid rgba(184, 154, 94, 0.12);
}
.pk:last-child {
    border-right: none;
}
.pk-icon {
    width: 32px;
    height: 32px;
    border: 0.5px solid rgba(184, 154, 94, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.pk-icon svg {
    width: 14px;
    height: 14px;
    fill: var(--gold);
}
.pk h4 {
    font-size: 17px;
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 0.3rem;
}
.pk p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
}
.pk-tag {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: rgba(184, 154, 94, 0.12);
    color: var(--gold);
    padding: 3px 9px;
}

/* ── ELITE UPGRADES ── */
.elite {
    background: var(--ink);
}
.eu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 3rem;
}
.eu {
    border: 0.5px solid var(--rule);
    padding: 2rem 1.75rem;
    position: relative;
    transition: border-color 0.3s;
}
.eu:hover {
    border-color: rgba(184, 154, 94, 0.5);
}
.eu-icon {
    font-size: 36px;
    font-weight: 300;
    color: rgba(184, 154, 94, 46%);
    line-height: 1;
    margin-bottom: 0.9rem;
}
.eu h3 {
    font-size: 20px;
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 0.4rem;
}
.eu p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.9;
}
.eu-price {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    border-top: 0.5px solid var(--rule);
    padding-top: 0.75rem;
    margin-top: 1.25rem;
}
.eu-new {
    position: absolute;
    top: -0.5px;
    right: 1.5rem;
    font-size: 8px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--ink);
    padding: 4px 10px;
}

/* ── MEMBERSHIP TIERS ── */
.tiers {
    background: #100d09;
    text-align: center;
}
.tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
    border: 0.5px solid var(--rule);
    margin-top: 3.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.tier {
    padding: 2.5rem 2rem;
    border-right: 0.5px solid var(--rule);
    position: relative;
}
.tier:last-child {
    border-right: none;
}
.tier.featured {
    background: rgba(184, 154, 94, 0.06);
}
.tier-crown {
    display: block;
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.tier h3 {
    font-size: 28px;
    font-weight: 300;
    color: var(--ivory);
    margin-bottom: 0.3rem;
}
.tier-price {
    font-size: 52px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin: 1rem 0 0.3rem;
}
.tier-price sup {
    font-size: 30px;
    vertical-align: middle;
    margin-top: 0.4em;
}
.tier-cadence {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.5rem;
}
.tier ul {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}
.tier ul li {
    font-size: 14px;
    color: var(--muted);
    padding: 6px 0;
    border-bottom: 0.5px solid rgba(184, 154, 94, 0.08);
}
.tier ul li::before {
    content: "◆";
    font-size: 6px;
    color: var(--gold);
    margin-right: 9px;
}
.tier-btn {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 13px;
    text-decoration: none;
    margin-top: auto;
    transition: all 0.3s;
    text-align: center;
}
.tier-btn.primary {
    background: var(--gold);
    color: var(--ink);
}
.tier-btn.primary:hover {
    background: var(--gold-lt);
}
.tier-btn.outline {
    border: 0.5px solid var(--rule);
    color: var(--muted);
}
.tier-btn.outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.tier-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--ink);
    padding: 5px 16px;
    white-space: nowrap;
}

/* ── FAQ ── */
.faq {
    background: var(--ink);
}
.faq-list {
    margin-top: 3rem;
}
.fq {
    border-bottom: 0.5px solid var(--rule);
    padding: 1.4rem 0;
}
.fq-q {
    font-size: 18px;
    font-weight: 400;
    color: var(--ivory);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.fq-q::after {
    content: "+";
    font-size: 18px;
    font-weight: 200;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.3s;
}
.fq.open .fq-q::after {
    transform: rotate(45deg);
}
.fq-a {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.9;
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s ease,
        padding 0.3s;
}
.fq.open .fq-a {
    max-height: 200px;
    padding-top: 0.75rem;
}

/* ── FINAL CTA ── */
.final {
    background: var(--ink);
    text-align: center;
    padding: 120px 1.5rem;
}
.final .h2 {
    max-width: 640px;
    margin: 0 auto;
}
.final .hr {
    margin: 0 auto 2rem;
}
.final p {
    font-size: 14px;
    color: var(--muted);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 2;
}
.btn-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-light {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    background: var(--ivory);
    color: var(--ink);
    padding: 15px 36px;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-light:hover {
    background: var(--gold-lt);
}
.btn-ghost {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    background: transparent;
    color: var(--gold);
    border: 0.5px solid rgba(184, 154, 94, 0.4);
    padding: 15px 36px;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-ghost:hover {
    border-color: var(--gold);
    background: rgba(184, 154, 94, 0.07);
}
.cred {
    font-size: 13px;
    color: rgba(160, 136, 114, 0.45);
    margin-top: 2rem;
    letter-spacing: 0.06em;
}

/* ── FOOTER ── */
footer {
    background-color: #100d09 !important;
    border-top: 0.5px solid var(--rule);
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.fl {
    font-size: 15px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 400;
}
.fl b {
    color: var(--gold);
    font-weight: 400;
}

/* ── VALUE BREAKDOWN ── */
.vb {
    background: #100d09;
    padding: 100px 1.5rem;
}
.vb-wrap {
    max-width: 820px;
    margin: 3.5rem auto 0;
}
.vb-table {
    width: 100%;
    border-collapse: collapse;
}
.vb-table thead tr {
    border-bottom: 0.5px solid var(--rule);
}
.vb-table th {
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
    padding: 0.75rem 1rem 0.75rem 0;
    text-align: left;
}
.vb-table th:not(:first-child) {
    text-align: right;
}
.vb-table tbody tr {
    border-bottom: 0.5px solid rgba(184, 154, 94, 0.07);
    transition: background 0.2s;
}
.vb-table tbody tr:hover {
    background: rgba(184, 154, 94, 0.03);
}
.vb-table td {
    padding: 0.9rem 1rem 0.9rem 0;
    font-size: 13px;
    color: var(--muted);
    vertical-align: top;
}
.vb-table td:not(:first-child) {
    text-align: right;
    white-space: nowrap;
}
.vb-table td.label {
    color: var(--ivory);
    font-size: 13.5px;
}
.vb-table td.cost {
    color: rgba(160, 136, 114, 0.5);
}
.vb-table td.retail {
    color: var(--muted);
}
.vb-table td.member {
    color: var(--gold);
    font-weight: 400;
}
.vb-table tfoot tr {
    border-top: 0.5px solid rgba(184, 154, 94, 0.3);
}
.vb-table tfoot td {
    padding: 1.2rem 1rem 0 0;
    font-size: 12px;
}
.vb-total-row td.label {
    font-size: 18px;
    color: var(--ivory);
    font-style: italic;
}
.vb-total-row td.retail {
    font-size: 22px;
    color: var(--muted);
    text-decoration: line-through;
    text-decoration-color: rgba(160, 136, 114, 0.3);
}
.vb-total-row td.member {
    font-size: 32px;
    color: var(--gold);
}
.vb-note {
    font-size: 14px;
    color: rgba(160, 136, 114);
    margin-top: 1.5rem;
    line-height: 1.9;
    max-width: 620px;
}
.vb-tag {
    display: inline-block;
    font-size: 8px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: rgba(184, 154, 94, 0.1);
    color: var(--gold);
    padding: 2px 7px;
    margin-left: 6px;
    vertical-align: middle;
}

/* ── ANIM ── */
@keyframes up {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.my-navbar {
    background-color: var(--gold-lt);
}
.my-navbar nav.navbar {
    background: transparent;
}
.my-navbar .navbar-nav .nav-link{
  color: #fff;
}
.my-navbar .navbar-brand img {
    filter: brightness(100);
    max-width: 200px;
}
.navbar-text button{
  color: #fff;
  border-color: #fff;
  text-decoration: none;
}
.icn-detail .deticonbx, .social-meda a {
    border-color: #ffffff;
    background-color: #be9b64;
}
.icn-detail .deticonbx img, .social-meda a img {
    filter: brightness(100);
}
.custom-footer-text,
.footer-link h6,
.icn-detail span,
.footer-link ul li a,
.icn-detail span a,
.copy{
  color: var(--muted);
}
.stm-text{
  font-size:14px;
  letter-spacing:.35em;
  text-transform:uppercase;
  color:rgba(184,154,94,90%);
  margin-bottom:.5rem;
}
.trv-grid{
  border-top:.5px solid rgba(184,154,94,.1);
  padding-top:1.25rem;
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:1rem
}
/* ── RESPONSIVE ── */
@media (max-width: 1199px) {
  .hero {
    padding: 80px 1.5rem 80px;
}
.navbar-toggler:hover {
    text-decoration: none;
    background-color: transparent !important;
  }
  .offcanvas {
    height: 100vh;
    background: var(--gold-lt);
  }
  .my-navbar{
    padding-block: 0;
  }
  .offcn-hedr img {
    filter: brightness(100);
  }
}
@media (max-width: 720px) {
    nav {
        padding: 0 1.25rem;
    }
    .tl {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .tl::before {
        display: none;
    }
    .ti.left,
    .ti.right {
        text-align: left;
        padding: 0 0 2rem 2rem;
    }
    .ti.left::after,
    .ti.right::after {
        left: -5px;
        right: auto;
    }
    footer {
        flex-direction: column;
    }
    .pk {
        border-right: none;
    }
    .hero {
      padding: 50px 1.5rem 80px;
    }
    .badge {
      font-size: 10px;
      letter-spacing: 1.5px;
  }
  .stm-text,
  .eu-price,
  .eyebrow,
  .sq-btn{
    letter-spacing: 1.5px;;
  }
  .sq-sub {
    color: rgba(160, 136, 114, 0.9);
}
section{
  padding: 50px 10px !important;
}
.hero h1 i + br {
    display: none;
}
.body-text {
    margin-bottom: 30px;
}
.pk {
    padding: 20px 0;
}
.perks-grid {
    margin-top: 20px;
}
}
