:root {
  --bg: #F7F4EF;
  --bg2: #EDE9E1;
  --bg3: #F0ECE4;
  --surface: #FFFFFF;
  --surface2: #FAF8F4;
  --surface3: #F2EEE6;
  --gold: #B8864E;
  --gold-l: #C9A070;
  --gold-d: #96652D;
  --gold-xd: #7A4E1E;
  --ink: #1A1814;
  --ink2: #3D3A34;
  --ink3: #6B6760;
  --ink4: #9A9690;
  --bdr: rgba(184, 134, 78, .18);
  --bdr2: rgba(184, 134, 78, .10);
  --bdrs: rgba(26, 24, 20, .07);
  --green: #3A8C5C;
  --red: #C03030;
  --amber: #9A7820;
  --sh-sm: 0 1px 4px rgba(26, 24, 20, .06), 0 2px 12px rgba(26, 24, 20, .04);
  --sh-md: 0 2px 16px rgba(26, 24, 20, .07), 0 4px 32px rgba(26, 24, 20, .05);
  --sh-lg: 0 8px 48px rgba(26, 24, 20, .10)
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.72;
  overflow-x: hidden
}

#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 76px;
  background: rgba(247, 244, 239, .99);
  box-shadow: 0 1px 0 rgba(184, 134, 78, .15)
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  width: auto;
  height: 44px;
  flex-shrink: 0
}

.nav-logo img {
  height: 38px;
  max-height: 38px;
  width: auto;
  display: block;
  object-fit: contain
}

.ao-logo,
.foot-logo,
.nav-logo {
  display: block;
  flex-shrink: 0
}

.foot-logo {
  width: auto;
  height: auto;
  display: inline-block;
  margin-bottom: 12px
}

.foot-logo img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 14px
}

.ao-logo img {
  height: 54px;
  width: auto
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 4px
}

.nav-link {
  padding: 8px 13px;
  color: var(--ink3);
  font-size: .78rem;
  letter-spacing: .04em;
  text-decoration: none;
  transition: color .2s;
  background: 0 0;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap
}

.nav-link:hover {
  color: var(--gold)
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0
}

.lang-select {
  position: relative;
  z-index: 300
}

.lang-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 11px;
  background: 0 0;
  border: 1px solid var(--bdr);
  color: var(--ink3);
  font-size: .7rem;
  letter-spacing: .09em;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all .2s
}

.lang-trigger:hover {
  color: var(--gold);
  border-color: var(--gold)
}

.lang-trigger svg {
  width: 9px;
  height: 9px;
  transition: transform .2s
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border: 1px solid rgba(184, 134, 78, .25);
  min-width: 152px;
  box-shadow: 0 8px 32px rgba(26, 24, 20, .15);
  display: none;
  z-index: 9999
}

.lang-opt {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  font-size: .74rem;
  color: var(--ink3);
  cursor: pointer;
  transition: color .2s, background .2s;
  border: none;
  background: 0 0;
  width: 100%;
  text-align: left;
  font-family: 'DM Sans', sans-serif
}

.lang-opt.active,
.lang-opt:hover {
  color: var(--gold);
  background: rgba(184, 134, 78, .05)
}

.nav-cta {
  padding: 9px 22px;
  background: var(--gold);
  box-shadow: 0 4px 24px rgba(184, 134, 78, .45);
  color: #fff;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background .25s;
  text-decoration: none;
  display: inline-block
}

.nav-cta:hover {
  background: #96652d;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(184, 134, 78, .55)
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: 0 0;
  border: none;
  cursor: pointer
}

.burger span {
  width: 22px;
  height: 1px;
  background: var(--ink3);
  transition: all .3s
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 190;
  background: var(--surface);
  padding: 88px 32px 40px;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  border-top: 3px solid var(--gold)
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all
}

.mobile-menu .nav-link {
  font-size: 1.1rem;
  padding: 14px 0;
  border-bottom: 1px solid var(--bdrs);
  color: var(--ink)
}

.mobile-lang {
  display: flex;
  gap: 8px;
  margin-top: 24px
}

.ml-btn {
  padding: 7px 16px;
  border: 1px solid var(--bdr);
  background: 0 0;
  color: var(--ink3);
  font-size: .74rem;
  letter-spacing: .08em;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .2s
}

.ml-btn.active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(184, 134, 78, .06)
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(14, 12, 10, .92) 0, rgba(14, 12, 10, .85) 35%, rgba(14, 12, 10, .5) 58%, rgba(14, 12, 10, .15) 78%, transparent 92%)
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 56px;
  padding-top: 120px;
  max-width: 840px
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(184, 134, 78, .8);
  font-size: .65rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 28px;
  opacity: 1
}

.eyebrow-line {
  width: 28px;
  height: 1px;
  background: rgba(184, 134, 78, .7)
}

h1.ht {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  line-height: 1.04;
  font-weight: 300;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  color: #fff;
  opacity: 1
}

h1.ht em {
  font-style: italic;
  color: var(--gold-l)
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .62);
  line-height: 1.85;
  max-width: 560px;
  margin-bottom: 44px;
  font-weight: 300;
  opacity: 1
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 1
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  padding: 14px 36px;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .25s, transform .25s, box-shadow .25s;
  display: inline-block;
  box-shadow: 0 4px 24px rgba(184, 134, 78, .45)
}

.btn-gold:hover {
  background: #96652d;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(184, 134, 78, .55)
}

.btn-outline {
  color: rgba(255, 255, 255, .62);
  font-size: .76rem;
  letter-spacing: .05em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
  cursor: pointer;
  background: 0 0;
  border: none;
  font-family: 'DM Sans', sans-serif;
  padding: 14px 4px
}

.btn-outline:hover {
  color: var(--gold-l)
}

.btn-outline svg {
  transition: transform .2s
}

.btn-outline:hover svg {
  transform: translateX(4px)
}

.ava-float-btn {
  position: fixed;
  right: 32px;
  bottom: 92px;
  z-index: 310;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(201, 160, 112, .28);
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  padding: 13px 20px;
  border-radius: 999px;
  box-shadow: 0 8px 30px rgba(26, 24, 20, .12);
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, border-color .25s, background .25s, color .25s
}

.ava-float-btn:hover {
  background: #fff;
  border-color: rgba(184, 134, 78, .46);
  color: var(--gold-d);
  transform: translateY(-3px);
  box-shadow: 0 12px 34px rgba(26, 24, 20, .16)
}

.ava-float-btn .ava-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 134, 78, .12);
  flex-shrink: 0
}

.ava-float-btn svg {
  flex-shrink: 0
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  background: #141210;
  padding: 36px 52px;
  border-bottom: 1px solid rgba(184, 134, 78, .15)
}

.hstat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold-l);
  line-height: 1
}

.hstat-l {
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
  margin-top: 8px
}

.scroll-ind {
  position: absolute;
  bottom: 36px;
  left: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .35);
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: 0;
  animation: up .9s 1.3s forwards;
  z-index: 2
}

.scroll-line {
  width: 34px;
  height: 1px;
  background: rgba(184, 134, 78, .35);
  position: relative;
  overflow: hidden
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-l);
  transform: translateX(-100%);
  animation: slide 2.4s ease-in-out infinite
}

@keyframes slide {
  0% {
    transform: translateX(-100%)
  }

  100% {
    transform: translateX(100%)
  }
}

@keyframes up {
  from {
    opacity: 0;
    transform: translateY(22px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.marquee-wrap {
  border-top: 1px solid var(--bdr2);
  border-bottom: 1px solid var(--bdr2);
  padding: 15px 0;
  overflow: hidden;
  background: var(--surface)
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marq 36s linear infinite;
  white-space: nowrap
}

.m-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink4);
  font-size: .61rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  flex-shrink: 0
}

.m-dot {
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0
}

@keyframes marq {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.stats-band {
  background: #2a2520;
  padding: 56px 52px
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.stat-cell {
  padding: 24px 34px;
  border-right: 1px solid rgba(255, 255, 255, .1);
  text-align: center
}

.stat-cell:last-child {
  border-right: none
}

.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: #d4a96a;
  line-height: 1;
  display: block;
  margin-bottom: 7px
}

.stat-l {
  font-size: .72rem;
  color: rgba(255, 255, 255, .65)
}

.stat-s {
  font-size: .59rem;
  color: rgba(255, 255, 255, .3);
  letter-spacing: .07em;
  margin-top: 3px
}

section {
  padding: 108px 52px
}

.sl {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: .61rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  margin-bottom: 12px
}

.sl::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--gold)
}

.sh {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.95rem, 3.4vw, 3.3rem);
  font-weight: 300;
  line-height: 1.14;
  letter-spacing: -.01em;
  color: var(--ink)
}

.sh em {
  font-style: italic;
  color: var(--gold)
}

.why {
  background: var(--surface)
}

.why-inner {
  display: grid;
  grid-template-columns: 360px 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto
}

.why-photo {
  border-radius: 2px;
  overflow: hidden;
  height: 520px;
  position: relative
}

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

.why-text .sh {
  margin-bottom: 24px
}

.wb {
  color: var(--ink2);
  font-size: .97rem;
  line-height: 1.9;
  margin-bottom: 15px
}

.wb strong {
  color: var(--gold-d);
  font-weight: 500
}

.cit {
  margin-top: 28px;
  padding: 18px 22px;
  background: rgba(184, 134, 78, .06);
  border-left: 2px solid var(--gold)
}

.cit p {
  font-size: .74rem;
  color: var(--ink3);
  line-height: 1.72;
  font-style: italic
}

.cit strong {
  color: var(--gold-d);
  font-style: normal
}

.why-cards {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.wcard {
  background: var(--surface2);
  border: 1px solid var(--bdrs);
  padding: 22px 26px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s
}

.wcard:hover {
  border-color: var(--bdr);
  transform: translateX(5px)
}

.wcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--gold);
  transition: height .3s
}

.wcard:hover::before {
  height: 100%
}

.wcard-icon {
  font-size: 1.15rem;
  margin-bottom: 8px
}

.wcard h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.04rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--ink)
}

.wcard p {
  font-size: .81rem;
  color: var(--ink3);
  line-height: 1.68
}

.photo-callout {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center
}

.photo-callout img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%
}

.pc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 12, 10, .93) 0, rgba(14, 12, 10, .86) 32%, rgba(14, 12, 10, .45) 55%, transparent 72%)
}

.pc-content {
  position: relative;
  z-index: 2;
  padding: 80px 56px;
  max-width: 640px
}

.pc-content .sl {
  color: rgba(184, 134, 78, .75)
}

.pc-content .sl::before {
  background: rgba(184, 134, 78, .75)
}

.pc-content .sh {
  color: #fff;
  margin-top: 12px
}

.pc-content .sh em {
  color: var(--gold-l)
}

.pc-content p {
  color: rgba(255, 255, 255, .6);
  font-size: 1rem;
  line-height: 1.85;
  margin-top: 18px;
  max-width: 500px
}

.pc-content .btn-gold {
  margin-top: 32px
}

.lifestyle-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  overflow: hidden;
  max-height: 400px
}

.ls-item {
  position: relative;
  overflow: hidden
}

.ls-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform .6s ease
}

.ls-item:hover img {
  transform: scale(1.05)
}

.ls-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(14, 12, 10, .88));
  color: #fff;
  padding: 40px 24px 24px
}

.ls-sub {
  font-size: .58rem;
  font-family: 'DM Sans', sans-serif;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 6px
}

.ls-hl {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300
}

.how {
  background: var(--bg3)
}

.how-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 72px
}

.steps-wrap {
  max-width: 1200px;
  margin: 0 auto;
  position: relative
}

.steps-connector {
  position: absolute;
  top: 46px;
  left: 76px;
  right: 76px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bdr), var(--bdr), transparent)
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0
}

.step {
  padding: 0 30px 0 0;
  display: flex;
  flex-direction: column
}

.step-num {
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: .88rem;
  color: var(--gold);
  margin-bottom: 24px;
  background: var(--bg3);
  position: relative;
  z-index: 1
}

.step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  font-weight: 500;
  margin-bottom: 9px;
  color: var(--ink)
}

.step p {
  font-size: .81rem;
  color: var(--ink3);
  line-height: 1.75;
  flex: 1
}

.step-detail {
  margin-top: 12px;
  padding: 10px 12px;
  background: rgba(184, 134, 78, .07);
  border-left: 2px solid var(--gold);
  font-size: .72rem;
  color: var(--ink3);
  line-height: 1.6;
  min-height: 58px
}

.comparison {
  background: var(--surface2)
}

.cmp-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px
}

.table-outer {
  max-width: 1100px;
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid var(--bdrs);
  box-shadow: var(--sh-sm)
}

table.ct {
  width: 100%;
  border-collapse: collapse;
  font-size: .83rem
}

.ct thead tr {
  background: #2a2520;
  border-bottom: 2px solid var(--gold)
}

.ct th {
  padding: 17px 19px;
  text-align: left;
  font-size: .67rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  font-weight: 400
}

.ct th.ca {
  color: var(--gold-l);
  background: rgba(184, 134, 78, .12);
  text-align: center;
  border-left: 1px solid rgba(184, 134, 78, .25);
  border-right: 1px solid rgba(184, 134, 78, .25)
}

.ct th.cs {
  text-align: center
}

.ct tbody tr {
  border-bottom: 1px solid var(--bdrs);
  transition: background .2s
}

.ct tbody tr:hover {
  background: rgba(184, 134, 78, .03)
}

.ct tr.cat {
  background: var(--bg2);
  border-bottom: 1px solid var(--bdr2)
}

.ct td {
  padding: 12px 19px;
  vertical-align: middle;
  color: var(--ink2)
}

.ct td.tc {
  font-family: 'Cormorant Garamond', serif;
  font-size: .79rem;
  color: var(--gold-d);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 500
}

.ct td.tm {
  font-size: .81rem;
  padding-left: 30px
}

.ct td.ca {
  background: rgba(184, 134, 78, .04);
  border-left: 1px solid var(--bdr2);
  border-right: 1px solid var(--bdr2);
  text-align: center
}

.ct td.cs {
  text-align: center
}

.ck {
  color: var(--green);
  font-weight: 500
}

.cx {
  color: var(--red)
}

.cp {
  color: var(--amber);
  font-size: .69rem;
  letter-spacing: .06em
}

.emotion {
  background: #f2ede4;
  padding: 84px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(184, 134, 78, .15);
  border-bottom: 1px solid rgba(184, 134, 78, .15)
}

.emotion::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 55% at 50% 50%, rgba(184, 134, 78, .1) 0, transparent 68%)
}

.eq {
  position: relative;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.65rem, 3.6vw, 3rem);
  line-height: 1.3;
  font-weight: 300;
  font-style: italic;
  max-width: 820px;
  margin: 0 auto 20px;
  color: var(--ink)
}

.eq em {
  color: var(--gold-d)
}

.ea {
  font-size: .63rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink4)
}

.screens {
  background: var(--bg)
}

.sc-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 68px
}

.sc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto
}

.sc-item {
  background: var(--surface);
  border: 1px solid var(--bdrs);
  padding: 38px 30px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s
}

.sc-item:hover {
  border-color: var(--bdr);
  transform: translateY(-3px);
  box-shadow: var(--sh-md)
}

.sc-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform .4s
}

.sc-item:hover::after {
  transform: scaleX(1)
}

.sc-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: rgba(184, 134, 78, .13);
  line-height: 1;
  margin-bottom: 13px;
  display: block
}

.sc-t {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--ink)
}

.sc-d {
  font-size: .81rem;
  color: var(--ink3);
  line-height: 1.74
}

.sc-tags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px
}

.sc-tag {
  font-size: .58rem;
  letter-spacing: .06em;
  color: var(--gold);
  border: 1px solid rgba(184, 134, 78, .25);
  padding: 3px 7px;
  text-transform: uppercase;
  background: rgba(184, 134, 78, .04)
}

.pricing {
  background: var(--bg3)
}

.pr-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px
}

.pr-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 46px;
  border: 1px solid var(--bdr2);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  background: var(--surface)
}

.tog-btn {
  padding: 11px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: 0 0;
  border: none;
  cursor: pointer;
  color: var(--ink3);
  transition: all .3s
}

.tog-btn.on {
  background: var(--gold);
  color: #fff
}

.save-tag {
  font-size: .58rem;
  font-weight: 500;
  background: var(--green);
  color: #fff;
  padding: 2px 6px;
  margin-left: 5px;
  vertical-align: middle
}

.pr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1260px;
  margin: 0 auto
}

.pc {
  border: 1px solid var(--bdrs);
  padding: 34px 26px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  transition: border-color .3s, transform .3s;
  position: relative
}

.pc:hover {
  border-color: var(--bdr);
  transform: translateY(-3px);
  box-shadow: var(--sh-md)
}

.pc.feat {
  border-color: var(--gold);
  background: var(--bg)
}

.feat-tag {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: .53rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 4px 14px;
  white-space: nowrap
}

.pn {
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px
}

.pm {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 3px
}

.pml {
  font-size: .64rem;
  color: var(--ink4);
  letter-spacing: .07em;
  margin-bottom: 15px
}

.pp {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1
}

.ppc {
  font-size: .82rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300
}

.pper {
  font-size: .68rem;
  color: var(--ink4);
  margin-bottom: 20px
}

.pdiv {
  height: 1px;
  background: var(--bdrs);
  margin-bottom: 18px
}

.pf {
  list-style: none;
  margin-bottom: 24px;
  flex: 1
}

.pf li {
  font-size: .78rem;
  color: var(--ink2);
  padding: 6px 0;
  border-bottom: 1px solid var(--bdrs);
  display: flex;
  align-items: flex-start;
  gap: 7px
}

.pf li::before {
  content: '✦';
  color: var(--gold);
  font-size: .5rem;
  margin-top: 5px;
  flex-shrink: 0
}

.pbtn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 11px;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: background .3s, color .3s;
  cursor: pointer;
  margin-top: auto
}

.pbtn:hover,
.pc.feat .pbtn {
  background: var(--gold);
  color: #fff
}

.pr-note {
  text-align: center;
  margin-top: 28px;
  font-size: .72rem;
  color: var(--ink3);
  line-height: 1.7
}

.pr-note strong {
  color: var(--gold-d)
}

.pr-note a {
  color: var(--gold);
  text-decoration: none
}

.blog {
  background: var(--surface)
}

.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 18px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto
}

.view-all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--bdr);
  padding-bottom: 3px;
  transition: border-color .2s
}

.view-all:hover {
  border-color: var(--gold)
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto
}

.bcard {
  background: var(--surface2);
  border: 1px solid var(--bdrs);
  overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column
}

.bcard:hover {
  border-color: var(--bdr);
  transform: translateY(-3px);
  box-shadow: var(--sh-md)
}

.bcard-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0
}

.bcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s
}

.bcard:hover .bcard-img img {
  transform: scale(1.05)
}

.bcard-body {
  padding: 26px 26px 24px
}

.bcat {
  font-size: .59rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px
}

.btitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.38;
  margin-bottom: 10px
}

.bexcerpt {
  font-size: .8rem;
  color: var(--ink3);
  line-height: 1.68;
  margin-bottom: 18px
}

.bfooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .66rem;
  color: var(--ink4)
}

.bread {
  color: var(--gold)
}

.faq {
  background: var(--bg2)
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start
}

.faq-left p {
  color: var(--ink2);
  font-size: .94rem;
  line-height: 1.8
}

.faq-list {
  display: flex;
  flex-direction: column
}

.faq-item {
  border-bottom: 1px solid var(--bdrs)
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  background: 0 0;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 14px;
  font-family: 'DM Sans', sans-serif
}

.faq-q-text {
  font-size: .88rem;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.4
}

.faq-icon {
  width: 20px;
  height: 20px;
  border: 1px solid var(--bdr);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: .68rem;
  transition: transform .3s, background .3s
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(184, 134, 78, .1)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  font-size: .82rem;
  color: var(--ink3);
  line-height: 1.78
}

.faq-item.open .faq-a {
  max-height: 500px;
  padding: 0 0 18px
}

.testi {
  background: var(--surface)
}

.testi-header {
  text-align: center;
  margin-bottom: 60px
}

.testi-header p {
  color: var(--ink3);
  font-size: .84rem;
  margin-top: 8px
}

.tg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto
}

.tc {
  background: var(--surface2);
  border: 1px solid var(--bdrs);
  padding: 32px 28px;
  position: relative;
  transition: border-color .3s, box-shadow .3s
}

.tc:hover {
  border-color: var(--bdr);
  box-shadow: var(--sh-sm)
}

.tc-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  color: var(--gold);
  opacity: .22;
  line-height: .6;
  display: block;
  margin-bottom: 14px
}

.tc-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: .97rem;
  line-height: 1.8;
  color: var(--ink2);
  font-style: italic;
  margin-bottom: 22px
}

.tc-stars {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--gold);
  font-size: .62rem;
  letter-spacing: 2px
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 12px
}

.tc-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0
}

.tc-name {
  font-size: .8rem;
  font-weight: 500;
  color: var(--ink)
}

.tc-role {
  font-size: .66rem;
  color: var(--ink4);
  margin-top: 1px
}

.expansion {
  background: var(--bg3)
}

.exp-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center
}

.markets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 36px
}

.mkt {
  background: var(--surface);
  border: 1px solid var(--bdrs);
  padding: 15px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  transition: border-color .3s, box-shadow .3s
}

.mkt:hover {
  border-color: var(--bdr);
  box-shadow: var(--sh-sm)
}

.mkt-f {
  font-size: 1.4rem
}

.mkt-n {
  font-size: .8rem;
  font-weight: 500;
  color: var(--ink)
}

.mkt-s {
  font-size: .59rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px
}

.globe-wrap {
  position: relative;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center
}

.gr {
  position: absolute;
  border-radius: 50%;
  animation: spin linear infinite
}

.gr:first-child {
  width: 250px;
  height: 250px;
  border: 1px solid rgba(184, 134, 78, .2);
  animation-duration: 28s
}

.gr:nth-child(2) {
  width: 330px;
  height: 330px;
  border: 1px solid rgba(184, 134, 78, .12);
  animation-duration: 42s;
  animation-direction: reverse
}

.gr:nth-child(3) {
  width: 410px;
  height: 410px;
  border: 1px solid rgba(184, 134, 78, .06);
  animation-duration: 58s
}

.gc {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: radial-gradient(circle, rgba(184, 134, 78, .12) 0, transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  line-height: 1.6;
  z-index: 1
}

.gdot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(184, 134, 78, .6)
}

@keyframes spin {
  from {
    transform: rotate(0)
  }

  to {
    transform: rotate(360deg)
  }
}

.fcta {
  background: #faf6ee;
  padding: 120px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 2px solid rgba(184, 134, 78, .25)
}

.fcta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 75% at 50% 50%, rgba(184, 134, 78, .1) 0, transparent 68%)
}

.fcta .sl::before {
  background: var(--gold)
}

.cta-t {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
  line-height: 1.1;
  font-weight: 300;
  max-width: 780px;
  margin: 14px auto 22px;
  color: var(--ink);
  position: relative
}

.cta-t em {
  font-style: italic;
  color: var(--gold-d)
}

.cta-sub {
  font-size: .96rem;
  color: var(--ink2);
  max-width: 440px;
  margin: 0 auto 40px;
  line-height: 1.8;
  position: relative
}

.cta-acts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative
}

.fcta .btn-outline {
  color: var(--ink3)
}

.fcta .btn-outline:hover {
  color: var(--gold-d)
}

.cta-note {
  margin-top: 22px;
  font-size: .65rem;
  color: var(--ink4);
  letter-spacing: .09em;
  position: relative
}

footer {
  background: #2a2723;
  border-top: 1px solid rgba(184, 134, 78, .2);
  padding: 50px 52px 30px
}

.foot-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 44px
}

.foot-brand p {
  font-size: .78rem;
  color: rgba(255, 255, 255, .4);
  line-height: 1.75;
  margin-top: 14px;
  max-width: 255px
}

.foot-logo {
  width: 210px;
  height: 52px
}

.foot-logo img {
  height: 30px;
  width: auto;
  mix-blend-mode: screen;
  opacity: .85
}

.fcol h4 {
  font-size: .6rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-l);
  margin-bottom: 14px
}

.fcol ul {
  list-style: none
}

.fcol ul li {
  margin-bottom: 8px
}

.fcol ul li a {
  font-size: .76rem;
  color: rgba(255, 255, 255, .38);
  text-decoration: none;
  transition: color .2s
}

.fcol ul li a:hover {
  color: rgba(255, 255, 255, .8)
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px
}

.fcopy {
  font-size: .65rem;
  color: rgba(255, 255, 255, .28);
  line-height: 1.6
}

.ftagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: .78rem;
  font-style: italic;
  color: var(--gold-l);
  opacity: .55
}

.rv {
  opacity: 1;
  transform: none
}

.rv.anim {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease
}

.rv.anim.vis {
  opacity: 1;
  transform: none
}

.d1 {
  transition-delay: .1s
}

.d2 {
  transition-delay: .2s
}

.d3 {
  transition-delay: .3s
}

.d4 {
  transition-delay: .4s
}

@media(max-width:1100px) {
  .pr-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr)
  }

  .stat-cell:nth-child(2) {
    border-right: none
  }

  .why-inner {
    grid-template-columns: 1fr 1fr !important;
    gap: 40px
  }

  .why-photo {
    display: none
  }
}

@media(max-width:960px) {
  #main-nav {
    padding: 0 20px
  }

  .nav-center {
    display: none
  }

  .burger {
    display: flex
  }

  .mobile-menu {
    display: flex
  }

  section {
    padding: 68px 22px
  }

  .hero-content {
    padding: 0 22px;
    padding-top: 114px
  }

  .scroll-ind {
    display: none
  }

  .exp-inner,
  .faq-inner,
  .why-inner {
    grid-template-columns: 1fr !important;
    gap: 40px
  }

  .sc-grid {
    grid-template-columns: 1fr
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .steps-connector {
    display: none
  }

  .blog-grid,
  .tg {
    grid-template-columns: 1fr
  }

  .pr-grid {
    grid-template-columns: 1fr
  }

  .foot-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px
  }

  .foot-bottom {
    flex-direction: column;
    text-align: center
  }

  .markets {
    grid-template-columns: 1fr
  }

  .globe-wrap {
    display: none
  }

  .lifestyle-strip {
    grid-template-columns: 1fr;
    max-height: none
  }

  .ls-item img {
    height: 260px
  }

  .photo-callout .pc-content {
    padding: 52px 22px
  }

  .blog-header {
    flex-direction: column;
    align-items: flex-start
  }

  .why-photo {
    display: none
  }
}

@media(max-width:600px) {
  .stats-inner {
    grid-template-columns: 1fr
  }

  .stat-cell {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
  }

  h1.ht {
    font-size: 2.6rem
  }

  .foot-top {
    grid-template-columns: 1fr;
    gap: 32px
  }
}

#wl-float-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 300;
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 14px 26px;
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(184, 134, 78, .45);
  transition: transform .25s, background .25s, box-shadow .25s;
  display: flex;
  align-items: center;
  gap: 9px
}

#wl-float-btn:hover {
  background: #96652d;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(184, 134, 78, .55)
}

#wl-float-btn .pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  position: relative
}

#wl-float-btn .pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .5);
  animation: pulse-ring 1.8s ease-in-out infinite
}

@keyframes pulse-ring {
  0% {
    transform: scale(.7);
    opacity: 1
  }

  100% {
    transform: scale(1.8);
    opacity: 0
  }
}

.waitlist-section {
  background: #141210;
  padding: 100px 52px;
  position: relative;
  overflow: hidden
}

.waitlist-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(184, 134, 78, .08) 0, transparent 65%)
}

.wl-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1
}

.wl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: .6rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  margin-bottom: 16px
}

.wl-eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold)
}

.wl-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.8vw, 3.5rem);
  line-height: 1.1;
  font-weight: 300;
  color: #f7f4ef;
  margin-bottom: 20px
}

.wl-title em {
  font-style: italic;
  color: var(--gold-l)
}

.wl-sub {
  font-size: .96rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 460px
}

.wl-scarcity {
  background: rgba(184, 134, 78, .08);
  border: 1px solid rgba(184, 134, 78, .2);
  padding: 20px 24px;
  margin-bottom: 28px
}

.wl-scarcity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px
}

.wl-spots-label {
  font-size: .68rem;
  letter-spacing: .15em;
  color: rgba(255, 255, 255, .45);
  text-transform: uppercase
}

.wl-spots-count {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 300
}

.wl-spots-count span {
  font-size: .75rem;
  font-family: 'DM Sans', sans-serif;
  color: rgba(255, 255, 255, .35);
  margin-left: 4px
}

.wl-progress-track {
  height: 3px;
  background: rgba(255, 255, 255, .08);
  position: relative;
  overflow: hidden
}

.wl-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #d4a96a);
  width: 92.35%;
  transition: width 1.2s cubic-bezier(.25, .46, .45, .94)
}

.wl-progress-label {
  display: flex;
  justify-content: space-between;
  margin-top: 7px;
  font-size: .62rem;
  color: rgba(255, 255, 255, .3)
}

.wl-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px
}

.wl-perk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.55
}

.wl-perk-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(184, 134, 78, .15);
  border: 1px solid rgba(184, 134, 78, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px
}

.wl-card {
  background: #1e1b18;
  border: 1px solid rgba(184, 134, 78, .18);
  padding: 44px 40px;
  box-shadow: 0 16px 64px rgba(0, 0, 0, .4);
  position: relative
}

.wl-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), #d4a96a, var(--gold))
}

.wl-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 300;
  color: #f7f4ef;
  margin-bottom: 6px
}

.wl-card-sub {
  font-size: .78rem;
  color: rgba(255, 255, 255, .38);
  margin-bottom: 28px;
  line-height: 1.6
}

.wl-field {
  margin-bottom: 14px
}

.wl-field label {
  display: block;
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 6px
}

.wl-field input,
.wl-field select {
  width: 100%;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #f7f4ef;
  padding: 12px 15px;
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  outline: 0;
  transition: border-color .25s, background .25s;
  -webkit-appearance: none;
  border-radius: 0
}

.wl-field input:focus,
.wl-field select:focus {
  border-color: var(--gold);
  background: rgba(184, 134, 78, .05)
}

.wl-field input::placeholder {
  color: rgba(255, 255, 255, .2)
}

.wl-field select option {
  background: #1e1b18
}

.wl-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.wl-submit-btn {
  width: 100%;
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 15px;
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 6px;
  transition: background .25s, transform .2s;
  position: relative;
  overflow: hidden
}

.wl-submit-btn:hover {
  background: #96652d;
  transform: translateY(-1px)
}

.wl-submit-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none
}

.wl-submit-btn .btn-loader {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin: 0 auto
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.wl-submit-btn.loading span {
  display: none
}

.wl-submit-btn.loading .btn-loader {
  display: block
}

.wl-fine-print {
  font-size: .65rem;
  color: rgba(255, 255, 255, .22);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6
}

.wl-success {
  display: none
}

.wl-success.active {
  display: block
}

.wl-form-wrap.hidden {
  display: none
}

.wl-success-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(184, 134, 78, .15);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px
}

.wl-success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  color: #f7f4ef;
  font-weight: 300;
  margin-bottom: 8px
}

.wl-success-sub {
  font-size: .83rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.75;
  margin-bottom: 28px
}

.wl-member-badge {
  background: linear-gradient(135deg, rgba(184, 134, 78, .2), rgba(184, 134, 78, .08));
  border: 1px solid rgba(184, 134, 78, .3);
  padding: 16px 20px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px
}

.wl-member-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  white-space: nowrap
}

.wl-member-label {
  font-size: .73rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.6
}

.wl-member-label strong {
  color: rgba(255, 255, 255, .8);
  font-weight: 500
}

.wl-referral-title {
  font-size: .62rem;
  letter-spacing: .22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px
}

.wl-referral-desc {
  font-size: .8rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.7;
  margin-bottom: 18px
}

.wl-discount-pill {
  display: inline-block;
  background: rgba(58, 140, 92, .15);
  border: 1px solid rgba(58, 140, 92, .3);
  color: #5bb87a;
  font-size: .7rem;
  font-weight: 500;
  padding: 3px 10px;
  letter-spacing: .06em;
  margin-bottom: 18px
}

.wl-ref-link-url {
  flex: 1;
  padding: 11px 13px;
  font-size: .75rem;
  color: rgba(255, 255, 255, .45);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif
}

.wl-copy-btn {
  padding: 11px 16px;
  background: rgba(184, 134, 78, .12);
  border: none;
  border-left: 1px solid rgba(255, 255, 255, .08);
  color: var(--gold);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .1em;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background .2s;
  white-space: nowrap
}

.wl-copy-btn:hover {
  background: rgba(184, 134, 78, .22)
}

.wl-copy-btn.copied {
  color: #5bb87a
}

.wl-invite-fields {
  margin-bottom: 16px
}

.wl-invite-input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px
}

.wl-invite-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(184, 134, 78, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .62rem;
  color: var(--gold);
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif
}

.wl-invite-input-wrap input {
  flex: 1;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  color: #f7f4ef;
  padding: 10px 13px;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  outline: 0;
  transition: border-color .25s;
  border-radius: 0
}

.wl-invite-input-wrap input:focus {
  border-color: var(--gold)
}

.wl-invite-input-wrap input::placeholder {
  color: rgba(255, 255, 255, .18)
}

.wl-send-invites-btn {
  width: 100%;
  background: 0 0;
  border: 1px solid rgba(184, 134, 78, .4);
  color: var(--gold);
  padding: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s
}

.wl-send-invites-btn:hover {
  background: rgba(184, 134, 78, .1);
  border-color: var(--gold)
}

.wl-or-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0
}

.wl-or-divider::after,
.wl-or-divider::before {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, .08)
}

.wl-or-divider span {
  font-size: .62rem;
  color: rgba(255, 255, 255, .25);
  letter-spacing: .12em;
  text-transform: uppercase
}

.wl-share-btns {
  display: flex;
  gap: 8px
}

.wl-share-btn {
  flex: 1;
  padding: 11px 8px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .03);
  color: rgba(255, 255, 255, .55);
  font-size: .7rem;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px
}

.wl-share-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184, 134, 78, .06)
}

.wl-invites-sent {
  display: none;
  text-align: center;
  padding: 16px;
  background: rgba(58, 140, 92, .08);
  border: 1px solid rgba(58, 140, 92, .2)
}

.wl-invites-sent.show {
  display: block
}

.wl-invites-sent p {
  font-size: .8rem;
  color: #5bb87a;
  line-height: 1.6
}

@media(max-width:960px) {
  .wl-inner {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .waitlist-section {
    padding: 68px 22px
  }

  .wl-card {
    padding: 32px 24px
  }

  #wl-float-btn {
    bottom: 18px;
    right: 18px;
    padding: 12px 18px;
    font-size: .68rem
  }

  .wl-field-row {
    grid-template-columns: 1fr
  }
}

a.bcard {
  cursor: pointer
}

a.bcard:hover {
  text-decoration: none
}

@media(max-width:960px) {

  .ao-body,
  .ao-filters,
  .ao-hero,
  .ao-nav {
    padding-left: 22px;
    padding-right: 22px
  }

  .ao-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:600px) {
  .ao-grid {
    grid-template-columns: 1fr
  }
}

#articles-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: #f7f4ef;
  display: none;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain
}

#articles-overlay.open {
  display: flex
}

#article-reader {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: #faf8f4;
  display: none;
  flex-direction: column;
  overflow: hidden
}

#article-reader.open {
  display: flex
}

.site-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  overflow-y: auto;
  overscroll-behavior: contain
}

.site-overlay.is-open {
  display: block
}

#article-reader {
  z-index: 600;
  background: #faf8f4
}

#articles-overlay {
  background: #f7f4ef
}

#ava-chat-overlay {
  position: fixed;
  inset: 0;
  z-index: 700;
  display: none;
  align-items: stretch;
  justify-content: flex-end;
  padding: 14px;
  background: rgba(26, 24, 20, .22)
}

.ava-chat-search-icon {
  width: 18px;
  height: 18px;
  margin-left: 6px;
  object-fit: contain;
  opacity: .5;
  flex-shrink: 0
}

#ava-chat-overlay.is-open {
  display: flex
}

.ava-chat-card {
  width: min(100%, 392px);
  height: 100%;
  max-height: none;
  display: flex;
  flex-direction: column;
  background: var(--Secondary_BG-Light, #faf8f4);
  border: .25px solid var(--Primary_CTA-Both, #bb8b56);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(26, 24, 20, .24);
  overflow: hidden;
  margin-left: auto
}

.ava-chat-head {
  padding: 20px 22px 14px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px
}

.ava-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: .25px solid var(--Primary_CTA-Both, #bb8b56);
  color: var(--gold-d);
  background: rgba(187, 139, 86, .06);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500
}

.ava-pill svg {
  flex-shrink: 0
}

.ava-chat-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: .25px solid var(--Primary_CTA-Both, #bb8b56);
  background: #fff;
  color: var(--ink3);
  cursor: pointer;
  transition: all .2s
}

.ava-chat-close:hover {
  color: var(--gold-d);
  border-color: rgba(184, 134, 78, .34);
  transform: rotate(90deg)
}

.ava-chat-body {
  padding: 0 22px 22px;
  overflow: hidden auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-height: 0
}

.ava-chat-status {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  margin-bottom: 4px;
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  border: .25px solid var(--Primary_CTA-Both, #bb8b56);
  background: var(--Secondary_BG-Light, #faf8f4);
  color: var(--ink3);
  font-size: .8rem;
  line-height: 1.2;
  box-shadow: 0 4px 18px rgba(26, 24, 20, .06)
}

.ava-chat-status.is-visible {
  display: inline-flex
}

.ava-chat-status.is-inline {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 0;
  width: auto
}

.ava-typing-state {
  align-self: flex-start !important;
  margin-right: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  margin-bottom: 0;
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  border: .25px solid var(--Primary_CTA-Both, #bb8b56);
  background: var(--Secondary_BG-Light, #faf8f4);
  color: var(--ink3);
  font-size: .8rem;
  line-height: 1.2;
  box-shadow: 0 4px 18px rgba(26, 24, 20, .06)
}

.ava-status-dots {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0
}

.ava-status-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: avaStatusPulse 1.2s ease-in-out infinite
}

.ava-status-dots span:nth-child(2) {
  animation-delay: .15s
}

.ava-status-dots span:nth-child(3) {
  animation-delay: .3s
}

@keyframes avaStatusPulse {

  0%,
  100%,
  80% {
    opacity: .35;
    transform: translateY(0)
  }

  40% {
    opacity: 1;
    transform: translateY(-1px)
  }
}

.ava-chat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.4vw, 2.45rem);
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: -.02em;
  color: var(--ink);
  max-width: 100%
}

.ava-chat-sub {
  font-size: .92rem;
  color: var(--ink2);
  line-height: 1.75;
  max-width: 38ch
}

.ava-chat-prompts-title {
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--ink)
}

.ava-chat-prompts-wrap.is-hidden {
  display: none
}

.ava-chat-intro.is-hidden {
  display: none
}

.ava-chat-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2px
}

.ava-prompt {
  padding: 9px 12px;
  border-radius: 999px;
  border: .25px solid var(--Primary_CTA-Both, #bb8b56);
  background: var(--Secondary_BG-Light, #faf8f4);
  color: var(--ink);
  font: inherit;
  font-size: .78rem;
  cursor: pointer;
  transition: all .2s
}

.ava-prompt:hover {
  border-color: rgba(184, 134, 78, .45);
  background: rgba(187, 139, 86, .08);
  transform: translateY(-1px)
}

.ava-chat-log {
  min-height: 0;
  flex: 1 1 auto;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  padding: 0 2px 2px
}

.ava-msg {
  max-width: 90%;
  padding: 11px 13px;
  border-radius: 16px;
  font-size: .8rem;
  line-height: 1.65;
  white-space: pre-wrap;
  word-break: break-word
}

.ava-msg.user {
  align-self: flex-end;
  background: var(--gold);
  color: #fff;
  border-bottom-right-radius: 6px
}

.ava-msg.bot {
  align-self: flex-start;
  background: var(--Secondary_BG-Light, #faf8f4);
  color: var(--ink);
  border: .25px solid var(--Primary_CTA-Both, #bb8b56);
  border-bottom-left-radius: 6px
}

.ava-msg.bot a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px
}

.ava-msg.bot a:hover {
  color: var(--gold-d)
}

.ava-reply-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px
}

.ava-reply-list li {
  line-height: 1.65
}

.ava-msg.system {
  align-self: center;
  background: rgba(184, 134, 78, .08);
  color: var(--ink3);
  font-size: .8rem
}

.ava-chat-compose {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 20px;
  border: .25px solid var(--Primary_CTA-Both, #bb8b56);
  background: var(--Secondary_BG-Light, #faf8f4);
  box-shadow: none
}

.ava-chat-footer {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ava-chat-input {
  flex: 1;
  border: none;
  background: 0 0;
  font: inherit;
  font-size: .9rem;
  color: var(--ink);
  padding: 10px 10px 10px 2px;
  outline: 0
}

.ava-chat-send {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 14px;
  background: var(--gold);
  color: #fff;
  cursor: pointer;
  transition: background .2s, transform .2s, opacity .2s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center
}

.ava-chat-send:hover {
  background: var(--gold-d);
  transform: translateY(-1px)
}

.ava-chat-send:disabled {
  opacity: .55;
  cursor: progress;
  transform: none
}

.ava-chat-fine {
  font-size: .68rem;
  color: var(--ink4);
  line-height: 1.6
}

@media (max-width:640px) {
  #ava-chat-overlay {
    padding: 16px;
    align-items: flex-end;
    justify-content: center
  }

  .ava-chat-card {
    width: 92%;
    max-width: 360px;
    border-radius: 24px;
    height: 80vh;
    max-height: 80vh;
    margin: 0 auto 10px
  }

  .ava-chat-body,
  .ava-chat-head {
    padding-left: 16px;
    padding-right: 16px
  }

  .ava-chat-title {
    font-size: 1.6rem
  }

  .ava-msg {
    max-width: 92%
  }
}

.ao-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 510;
  background: rgba(247, 244, 239, .99);
  border-bottom: 1px solid rgba(184, 134, 78, .15);
  padding: 0 52px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.ao-logo {
  width: 220px;
  height: 54px
}

.ao-logo img {
  height: 34px;
  width: auto
}

.ao-close {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: 0 0;
  border: 1px solid rgba(184, 134, 78, .3);
  color: #6b6760;
  font-size: .72rem;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: .1em;
  padding: 9px 18px;
  cursor: pointer;
  transition: all .2s
}

.ao-close:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(184, 134, 78, .06)
}

.ao-hero {
  background: #141210;
  padding: 60px 52px 72px;
  text-align: center;
  position: relative
}

.ao-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(184, 134, 78, .08) 0, transparent 65%)
}

.ao-hero-label {
  font-size: .6rem;
  letter-spacing: .36em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative
}

.ao-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  font-weight: 300;
  color: #f7f4ef;
  position: relative
}

.ao-hero h1 em {
  font-style: italic;
  color: var(--gold-l)
}

.ao-hero p {
  color: rgba(255, 255, 255, .45);
  font-size: .88rem;
  margin-top: 8px;
  position: relative
}

.ao-search-wrap {
  max-width: 420px;
  margin: 22px auto 0;
  position: relative;
  z-index: 1;
  padding-bottom: 4px
}

.ao-search-wrap input {
  width: 100%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(184, 134, 78, .2);
  color: #f7f4ef;
  padding: 11px 40px 11px 15px;
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  outline: 0;
  transition: border-color .25s
}

.ao-search-wrap input:focus {
  border-color: var(--gold)
}

.ao-search-wrap input::placeholder {
  color: rgba(255, 255, 255, .25)
}

.ao-search-icon {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(184, 134, 78, .6);
  pointer-events: none
}

.ao-filters {
  padding: 18px 52px;
  background: #ede9e1;
  border-bottom: 1px solid rgba(184, 134, 78, .12);
  display: flex;
  gap: 7px;
  flex-wrap: wrap
}

.ao-filter-btn {
  padding: 7px 13px;
  border: 1px solid rgba(184, 134, 78, .22);
  background: 0 0;
  color: #6b6760;
  font-size: .67rem;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: .07em;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap
}

.ao-filter-btn.active,
.ao-filter-btn:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold)
}

.ao-grid-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 52px 80px
}

.ao-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.ao-card {
  background: #fff;
  border: 1px solid rgba(26, 24, 20, .07);
  padding: 26px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
  text-align: left
}

.ao-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent, var(--gold));
  transform: scaleX(0);
  transition: transform .35s
}

.ao-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(26, 24, 20, .1);
  border-color: rgba(184, 134, 78, .25)
}

.ao-card:hover::before {
  transform: scaleX(1)
}

.ao-card-section {
  font-size: .57rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent, var(--gold));
  font-weight: 500;
  margin-bottom: 8px
}

.ao-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.35;
  color: #1a1814;
  margin-bottom: 9px;
  flex: 1
}

.ao-card-desc {
  font-size: .78rem;
  color: #6b6760;
  line-height: 1.7;
  margin-bottom: 14px
}

.ao-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .63rem;
  color: #9a9690;
  margin-top: auto
}

.ao-card-read {
  color: var(--gold);
  font-weight: 500
}

.ao-no-results {
  text-align: center;
  padding: 60px;
  color: #9a9690;
  display: none
}

.ao-no-results.show {
  display: block
}

.ar-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 248, 244, .99);
  border-bottom: 1px solid rgba(184, 134, 78, .15);
  padding: 0 52px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.ar-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: 0 0;
  border: none;
  color: var(--gold);
  font-size: .72rem;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: .1em;
  cursor: pointer;
  transition: gap .2s;
  padding: 0
}

.ar-back:hover {
  gap: 12px
}

.ar-close {
  background: 0 0;
  border: 1px solid rgba(184, 134, 78, .3);
  color: var(--ink3);
  font-size: .7rem;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: .1em;
  padding: 8px 16px;
  cursor: pointer;
  transition: all .2s
}

.ar-close:hover {
  color: var(--gold);
  border-color: var(--gold)
}

.ar-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 52px 40px 100px;
  color: #2a2723;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.85;
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  width: 100%
}

.ar-body h1,
.ar-body h2,
.ar-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: #1a1814
}

.ar-body h1 {
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 14px
}

.ar-body h2 {
  font-size: 1.45rem;
  margin: 32px 0 10px
}

.ar-body h3 {
  font-size: 1.15rem;
  margin: 24px 0 8px
}

.ar-body p {
  margin-bottom: 16px
}

.ar-body ol,
.ar-body ul {
  margin: 0 0 16px 22px
}

.ar-body li {
  margin-bottom: 5px
}

.ar-body strong {
  color: #1a1814;
  font-weight: 500
}

.ar-body em {
  color: var(--gold-l);
  font-style: italic
}

.ar-body a {
  color: var(--gold)
}

.ar-body blockquote {
  border-left: 2px solid var(--gold);
  padding: 10px 18px;
  background: rgba(184, 134, 78, .07);
  margin: 20px 0;
  font-style: italic;
  color: rgba(255, 255, 255, .65)
}

.ar-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: .87rem
}

.ar-body th {
  background: rgba(184, 134, 78, .15);
  color: var(--gold-l);
  padding: 9px 13px;
  text-align: left;
  border-bottom: 1px solid rgba(184, 134, 78, .25)
}

.ar-body td {
  padding: 8px 13px;
  border-bottom: 1px solid rgba(26, 24, 20, .08)
}

.ar-cta {
  margin-top: 48px;
  padding: 32px;
  background: rgba(184, 134, 78, .08);
  border: 1px solid rgba(184, 134, 78, .2);
  text-align: center
}

.ar-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: #1a1814;
  margin-bottom: 8px
}

.ar-cta p {
  font-size: .83rem;
  color: var(--ink3);
  margin-bottom: 18px
}

@media(max-width:960px) {

  .ao-filters,
  .ao-grid-wrap,
  .ao-hero,
  .ao-nav,
  .ar-body,
  .ar-nav {
    padding-left: 22px;
    padding-right: 22px
  }

  .ao-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:600px) {
  .ao-grid {
    grid-template-columns: 1fr
  }
}

#wl-float-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 300;
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 13px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: .71rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(184, 134, 78, .45);
  transition: transform .25s, background .25s, box-shadow .25s;
  display: flex;
  align-items: center;
  gap: 9px
}

#wl-float-btn:hover {
  background: #96652d;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(184, 134, 78, .55)
}

#wl-float-btn .wl-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  position: relative
}

#wl-float-btn .wl-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .5);
  animation: wl-pulse-ring 1.8s ease-out infinite
}

@keyframes wl-pulse-ring {
  0% {
    transform: scale(.7);
    opacity: 1
  }

  100% {
    transform: scale(1.8);
    opacity: 0
  }
}

.waitlist-section {
  background: #141210;
  padding: 96px 52px;
  position: relative;
  overflow: hidden
}

.waitlist-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(184, 134, 78, .08) 0, transparent 65%)
}

.wl-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1
}

.wl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: .6rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  margin-bottom: 14px
}

.wl-eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold)
}

.wl-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  line-height: 1.1;
  font-weight: 300;
  color: #f7f4ef;
  margin-bottom: 18px
}

.wl-title em {
  font-style: italic;
  color: var(--gold-l)
}

.wl-sub {
  font-size: .94rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.85;
  margin-bottom: 28px;
  max-width: 460px
}

.wl-scarcity {
  background: rgba(184, 134, 78, .08);
  border: 1px solid rgba(184, 134, 78, .2);
  padding: 18px 22px;
  margin-bottom: 24px
}

.wl-scarcity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px
}

.wl-spots-label {
  font-size: .67rem;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .45);
  text-transform: uppercase
}

.wl-spots-count {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  color: var(--gold);
  font-weight: 300
}

.wl-spots-count span {
  font-size: .74rem;
  font-family: 'DM Sans', sans-serif;
  color: rgba(255, 255, 255, .3);
  margin-left: 4px
}

.wl-progress-track {
  height: 3px;
  background: rgba(255, 255, 255, .08);
  position: relative;
  overflow: hidden
}

.wl-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #d4a96a);
  width: 0%;
  transition: width 1.2s cubic-bezier(.25, .46, .45, .94)
}

.wl-progress-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: .61rem;
  color: rgba(255, 255, 255, .3)
}

.wl-progress-labels .wl-remaining {
  color: var(--gold-l)
}

.wl-perks {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px
}

.wl-perk {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .84rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.55
}

.wl-perk-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(184, 134, 78, .15);
  border: 1px solid rgba(184, 134, 78, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .55rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px
}

.wl-card {
  background: #1e1b18;
  border: 1px solid rgba(184, 134, 78, .18);
  padding: 40px 36px;
  box-shadow: 0 16px 64px rgba(0, 0, 0, .4);
  position: relative
}

.wl-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), #d4a96a, var(--gold))
}

.wl-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: #f7f4ef;
  margin-bottom: 5px
}

.wl-card-sub {
  font-size: .77rem;
  color: rgba(255, 255, 255, .38);
  margin-bottom: 24px;
  line-height: 1.6
}

.wl-field {
  margin-bottom: 13px
}

.wl-field label {
  display: block;
  font-size: .61rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .38);
  margin-bottom: 5px
}

.wl-field input,
.wl-field select {
  width: 100%;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #f7f4ef;
  padding: 11px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: .87rem;
  outline: 0;
  transition: border-color .25s, background .25s;
  border-radius: 0;
  -webkit-appearance: none
}

.wl-field input:focus,
.wl-field select:focus {
  border-color: var(--gold);
  background: rgba(184, 134, 78, .05)
}

.wl-field input::placeholder {
  color: rgba(255, 255, 255, .2)
}

.wl-field select option {
  background: #1e1b18
}

.wl-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px
}

.wl-error {
  display: none;
  font-size: .74rem;
  color: #e07070;
  margin-bottom: 9px
}

.wl-submit {
  width: 100%;
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 5px;
  transition: background .25s, transform .2s;
  position: relative
}

.wl-submit:hover {
  background: #96652d;
  transform: translateY(-1px)
}

.wl-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none
}

.wl-submit .wl-spinner {
  display: none;
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: wl-spin .7s linear infinite;
  margin: 0 auto
}

@keyframes wl-spin {
  to {
    transform: rotate(360deg)
  }
}

.wl-submit.is-loading span {
  display: none
}

.wl-submit.is-loading .wl-spinner {
  display: block
}

.wl-fine {
  font-size: .64rem;
  color: rgba(255, 255, 255, .22);
  text-align: center;
  margin-top: 10px;
  line-height: 1.6
}

.wl-form-wrap.is-hidden {
  display: none
}

.wl-success {
  display: none
}

.wl-success.is-active {
  display: block
}

.wl-success-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(184, 134, 78, .15);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px
}

.wl-success-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: #f7f4ef;
  font-weight: 300;
  margin-bottom: 7px
}

.wl-success-sub {
  font-size: .82rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.75;
  margin-bottom: 24px
}

.wl-member-badge {
  background: linear-gradient(135deg, rgba(184, 134, 78, .2), rgba(184, 134, 78, .08));
  border: 1px solid rgba(184, 134, 78, .3);
  padding: 14px 18px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 13px
}

.wl-member-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  color: var(--gold);
  line-height: 1;
  white-space: nowrap
}

.wl-member-label {
  font-size: .72rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.6
}

.wl-member-label strong {
  color: rgba(255, 255, 255, .8);
  font-weight: 500
}

.wl-ref-section-title {
  font-size: .61rem;
  letter-spacing: .22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 9px
}

.wl-ref-desc {
  font-size: .79rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.7;
  margin-bottom: 15px
}

.wl-discount-pill {
  display: inline-block;
  background: rgba(58, 140, 92, .15);
  border: 1px solid rgba(58, 140, 92, .3);
  color: #5bb87a;
  font-size: .69rem;
  font-weight: 500;
  padding: 2px 9px;
  margin-bottom: 15px
}

.wl-ref-link {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  margin-bottom: 14px
}

.wl-ref-url {
  flex: 1;
  padding: 10px 12px;
  font-size: .74rem;
  color: rgba(255, 255, 255, .4);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif
}

.wl-copy-btn {
  padding: 10px 15px;
  background: rgba(184, 134, 78, .12);
  border: none;
  border-left: 1px solid rgba(255, 255, 255, .08);
  color: var(--gold);
  font-size: .67rem;
  font-weight: 500;
  letter-spacing: .1em;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background .2s;
  white-space: nowrap
}

.wl-copy-btn:hover {
  background: rgba(184, 134, 78, .22)
}

.wl-copy-btn.is-copied {
  color: #5bb87a
}

.wl-invite-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px
}

.wl-invite-num {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  border: 1px solid rgba(184, 134, 78, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .61rem;
  color: var(--gold);
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif
}

.wl-invite-row input {
  flex: 1;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  color: #f7f4ef;
  padding: 9px 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: .81rem;
  outline: 0;
  transition: border-color .25s;
  border-radius: 0
}

.wl-invite-row input:focus {
  border-color: var(--gold)
}

.wl-invite-row input::placeholder {
  color: rgba(255, 255, 255, .18)
}

.wl-send-btn {
  width: 100%;
  background: 0 0;
  border: 1px solid rgba(184, 134, 78, .4);
  color: var(--gold);
  padding: 11px;
  font-family: 'DM Sans', sans-serif;
  font-size: .71rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s
}

.wl-send-btn:hover {
  background: rgba(184, 134, 78, .1);
  border-color: var(--gold)
}

.wl-or-div {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 12px 0
}

.wl-or-div::after,
.wl-or-div::before {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, .08)
}

.wl-or-div span {
  font-size: .61rem;
  color: rgba(255, 255, 255, .25);
  letter-spacing: .12em;
  text-transform: uppercase
}

.wl-share-btns {
  display: flex;
  gap: 7px
}

.wl-share-btn {
  flex: 1;
  padding: 10px 7px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .03);
  color: rgba(255, 255, 255, .55);
  font-size: .69rem;
  font-weight: 500;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px
}

.wl-share-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184, 134, 78, .06)
}

.wl-sent-confirm {
  display: none;
  text-align: center;
  padding: 14px;
  background: rgba(58, 140, 92, .08);
  border: 1px solid rgba(58, 140, 92, .2);
  margin-top: 10px
}

.wl-sent-confirm.is-shown {
  display: block
}

.wl-sent-confirm p {
  font-size: .79rem;
  color: #5bb87a;
  line-height: 1.6
}

@media(max-width:960px) {
  .wl-inner {
    grid-template-columns: 1fr;
    gap: 44px
  }

  .waitlist-section {
    padding: 64px 22px
  }

  .wl-card {
    padding: 28px 22px
  }

  .wl-field-row {
    grid-template-columns: 1fr
  }

  .ava-float-btn {
    right: 16px;
    bottom: 72px;
    padding: 11px 14px;
    font-size: .66rem
  }

  #wl-float-btn {
    bottom: 16px;
    right: 16px;
    padding: 11px 16px;
    font-size: .68rem
  }
}

@media(max-width:600px) {
  #ava-chat-overlay {
    padding: 12px;
    align-items: center;
    justify-content: center
  }

  .ava-chat-card {
    width: calc(100vw - 24px);
    height: 65vh;
    max-height: 65vh;
    margin: 0 auto;
    border-radius: 18px
  }

  .ava-chat-head {
    padding: 12px 12px 8px;
    gap: 10px
  }

  .ava-pill {
    padding: 7px 10px;
    font-size: .62rem;
    gap: 6px
  }

  .ava-chat-close {
    width: 34px;
    height: 34px
  }

  .ava-chat-body {
    padding: 0 12px 12px;
    gap: 8px
  }

  .ava-chat-title {
    font-size: 1.8rem;
    max-width: 100%
  }

  .ava-chat-sub {
    font-size: .82rem;
    line-height: 1.58;
    max-width: none
  }

  .ava-chat-prompts-title {
    margin-top: 6px;
    margin-bottom: 6px;
    font-size: .65rem
  }

  .ava-chat-prompts {
    gap: 6px;
    margin-bottom: 0
  }

  .ava-prompt {
    padding: 8px 10px;
    font-size: .7rem
  }

  .ava-chat-status,
  .ava-typing-state {
    padding: 8px 11px;
    font-size: .74rem
  }

  .ava-chat-log {
    min-height: 0;
    max-height: none
  }

  .ava-msg {
    max-width: 94%;
    font-size: .72rem;
    padding: 10px 12px
  }

  .ava-chat-compose {
    padding: 8px;
    border-radius: 16px
  }

  .ava-chat-input {
    font-size: .84rem;
    padding: 8px 8px 8px 2px
  }

  .ava-chat-send {
    width: 38px;
    height: 38px;
    border-radius: 12px
  }

  .ava-chat-fine {
    font-size: .62rem;
    line-height: 1.5
  }

  .ava-float-btn {
    right: 12px;
    bottom: 66px;
    padding: 10px 12px;
    font-size: .62rem
  }

  #wl-float-btn {
    right: 12px;
    bottom: 12px;
    padding: 10px 12px;
    font-size: .63rem
  }
}

.bcard {
  cursor: pointer;
  text-decoration: none;
  color: inherit
}

.bcard:hover {
  text-decoration: none
}

.fcol-link {
  background: 0 0;
  border: none;
  color: rgba(255, 255, 255, .38);
  font-size: .76rem;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  padding: 0;
  text-align: left;
  transition: color .2s
}

.fcol-link:hover {
  color: rgba(255, 255, 255, .8)
}

button.view-all {
  background: 0 0;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto
}

.nav-right .nav-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  color: var(--ink3);
  font-size: .75rem;
  background: 0 0;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  white-space: nowrap;
  transition: color .2s
}

.nav-right .nav-link:hover {
  color: var(--gold)
}

.nav-divider {
  width: 1px;
  height: 18px;
  background: rgba(0, 0, 0, .12);
  margin: 0 6px
}

.nav-center {
  display: none !important
}

.nav-logo img,
.nav-logo-img {
  height: 44px;
  width: auto;
  display: block
}

@media(max-width:960px) {
  #main-nav {
    padding: 0 20px
  }

  .nav-divider,
  .nav-right .nav-link {
    display: none
  }
}

.hero {
  padding-top: 72px
}

.bcard {
  cursor: pointer
}

#articles-overlay.is-open {
  display: flex
}

#article-reader.is-open {
  display: flex
}

.site-overlay.is-open {
  display: flex
}

.hstat-cell {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative
}

.hstat-cell+.hstat-cell::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(184, 134, 78, .25)
}

.plan-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 4px;
  flex-wrap: wrap
}

.plan-meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .61rem;
  font-family: "DM Sans", sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink3);
  background: var(--bg2);
  border: 1px solid rgba(184, 134, 78, .2);
  padding: 4px 10px
}

.pmt-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0
}

.ppyr {
  font-size: .85rem;
  color: var(--ink3);
  font-weight: 300
}

.wl-gdpr {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 14px 0 4px;
  cursor: pointer
}

.wl-gdpr input[type=checkbox] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer
}

.wl-gdpr-label {
  font-size: .73rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.6;
  cursor: pointer
}

.wl-gdpr-label a {
  color: var(--gold-l);
  text-decoration: underline
}

.wl-gdpr-error {
  font-size: .7rem;
  color: #e07070;
  margin: -4px 0 8px 27px;
  display: none
}

.dna-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 440px;
  margin-left: auto
}

@keyframes dna-pulse-a {

  0%,
  100% {
    opacity: .9;
    transform: scale(1)
  }

  50% {
    opacity: 1;
    transform: scale(1.4)
  }
}

@keyframes dna-pulse-b {

  0%,
  100% {
    opacity: .9;
    transform: scale(1)
  }

  50% {
    opacity: 1;
    transform: scale(1.4)
  }
}

@keyframes dna-scan {
  0% {
    transform: translateY(0);
    opacity: 0
  }

  5% {
    opacity: 1
  }

  90% {
    opacity: .6
  }

  100% {
    transform: translateY(380px);
    opacity: 0
  }
}

.dna-nA {
  animation: dna-pulse-a 3.2s ease-in-out infinite
}

.dna-nG {
  animation: dna-pulse-b 2.8s ease-in-out infinite .6s
}

.dna-nT {
  animation: dna-pulse-a 3.6s ease-in-out infinite 1.1s
}

.dna-nC {
  animation: dna-pulse-b 3s ease-in-out infinite 1.8s
}

.dna-scanner {
  animation: dna-scan 5s ease-in-out infinite 1s
}

.plan-focus {
  font-size: .78rem;
  color: var(--ink3);
  line-height: 1.55;
  margin: 12px 0 4px;
  font-style: italic;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(184, 134, 78, .12)
}

/* ── Performance: content-visibility for below-fold sections ── */

/* Ensure hero and stats are always rendered */
.hero,
.hero-stats,
.marquee-wrap,
.stats-band {
  content-visibility: visible;
}

.dna-nT,
.dna-nA,
.dna-nC,
.dna-nG {
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform
}

@media (max-width: 960px) {
  .wl-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .wl-inner>.rv:not(.wl-card) {
    display: contents;
  }

  .wl-eyebrow {
    order: 1;
    margin-bottom: 16px;
  }

  .wl-title {
    order: 2;
    margin-bottom: 36px;
  }

  .wl-card {
    order: 3;
    margin-bottom: 48px;
    width: 100%;
  }

  .wl-sub {
    order: 4;
    margin-bottom: 32px;
  }

  .wl-scarcity {
    order: 5;
    margin-bottom: 32px;
  }

  .wl-perks {
    order: 6;
  }
}

/* FAQ redesign */
.faq {
  background: var(--Secondary_BG-Light, #FAF8F4);
  padding: 100px 52px;
}

.faq-header {
  max-width: 600px;
  margin-bottom: 60px;
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.faq-image {
  border-radius: 12px;
  overflow: hidden;
  height: 600px;
  position: sticky;
  top: 120px;
}

.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-item {
  border-bottom: 1px solid rgba(184, 134, 78, 0.15);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 24px 0;
  background: 0 0;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 20px;
  font-family: 'DM Sans', sans-serif;
}

.faq-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gold-l);
  font-weight: 400;
  flex-shrink: 0;
}

.faq-q-text {
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.4;
  flex: 1;
}

.faq-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ink3);
  transition: transform 0.3s;
  border: none;
  border-radius: 0;
  background: transparent;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background: transparent;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-a-inner {
  font-size: 0.9rem;
  color: var(--ink3);
  line-height: 1.8;
  padding: 0 0 24px 44px;
  border-left: 2px solid var(--gold);
  margin-left: 10px;
}

.faq-item.open .faq-a {
  max-height: 600px;
}

.faq-book-link {
  color: var(--gold-d);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.faq-book-link:hover {
  color: var(--gold);
}

.faq-footer {
  max-width: 1200px;
  margin: 60px auto 0;
  background: #FFFFFF;
  border: 1px solid rgba(184, 134, 78, 0.15);
  border-radius: 12px;
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 12px 40px rgba(26, 24, 20, 0.03);
}

.faq-footer-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
}

.faq-footer-text p {
  font-size: 0.9rem;
  color: var(--ink3);
  line-height: 1.6;
  margin: 0;
}

.faq-footer .btn-gold {
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .faq {
    padding: 68px 22px;
  }

  .faq-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-image {
    height: 400px;
    position: static;
  }

  .faq-footer {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 24px;
  }
}