:root {
  --gold: #C8922A;
  --gold-bright: #E8B84A;
  --gold-dim: #8A6218;
  --gold-pale: rgba(200, 146, 42, 0.08);
  --gold-line: rgba(200, 146, 42, 0.18);
  --onyx: #0D0B08;
  --charcoal: #161410;
  --slate: #1F1C17;
  --stone: #2A261F;
  --parchment: #F5EFE0;
  --sand: #D4C5A0;
  --mist: #7A7060;
  --dim: #4A4438;
  --r1: 3px;
  --r2: 6px;
  --r3: 12px;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --display: 'Playfair Display', Georgia, serif;
  --text: 'Outfit', sans-serif;
  --nav-h: 64px;
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--text);
  background: var(--charcoal);
  color: var(--parchment);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

a {
  text-decoration: none;
  color: inherit
}

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

ul,
ol {
  list-style: none
}

/* TYPOGRAPHY */
.t-eyebrow {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px
}

.t-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0
}

.t-eyebrow--light {
  color: var(--gold-bright)
}

.t-eyebrow--light::before {
  background: var(--gold-bright)
}

.t-eyebrow--center {
  justify-content: center
}

.t-eyebrow--center::before {
  display: none
}

.t-eyebrow--center::after {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0
}

.t-h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.01em;
  color: var(--parchment)
}

.t-h1 em {
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 400
}

.t-h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--parchment)
}

.t-h2 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400
}

.t-h3 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 600;
  line-height: 1.2
}

.t-body {
  font-size: .95rem;
  line-height: 1.85;
  color: var(--mist);
  font-weight: 300
}

.t-body--light {
  color: var(--sand)
}

.t-quote {
  font-family: var(--display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  line-height: 1.75;
  color: var(--sand)
}

.gold-rule {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin-bottom: 24px
}

/* BUTTONS */
.btn-primary-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--onyx);
  border: none;
  padding: 14px 28px;
  font-family: var(--text);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--r1);
  transition: background .25s var(--ease), transform .2s var(--ease), box-shadow .25s var(--ease);
  cursor: pointer;
  white-space: nowrap
}

.btn-primary-gold:hover {
  background: var(--gold-bright);
  color: var(--onyx);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 146, 42, .35)
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--parchment);
  border: 1px solid rgba(245, 239, 224, .25);
  padding: 13px 28px;
  font-family: var(--text);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--r1);
  transition: border-color .25s var(--ease), color .25s var(--ease);
  cursor: pointer;
  white-space: nowrap
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold)
}

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  padding: 13px 28px;
  font-family: var(--text);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: var(--r1);
  transition: background .25s var(--ease), color .25s var(--ease);
  cursor: pointer
}

.btn-ghost-dark:hover {
  background: var(--gold);
  color: var(--onyx)
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s var(--ease), transform .8s var(--ease)
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity .8s var(--ease), transform .8s var(--ease)
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity .8s var(--ease), transform .8s var(--ease)
}

.reveal.in,
.reveal-left.in,
.reveal-right.in {
  opacity: 1;
  transform: none
}

.d1 {
  transition-delay: .1s !important
}

.d2 {
  transition-delay: .2s !important
}

.d3 {
  transition-delay: .3s !important
}

/* IMAGE PLACEHOLDER */
.ph {
  background: linear-gradient(135deg, var(--slate), var(--stone));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  color: var(--dim);
  width: 100%;
  height: 100%
}

.ph i {
  font-size: 1.8rem;
  opacity: .3
}

.ph span {
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .35
}

/* TOPBAR */
.topbar {
  background: var(--onyx);
  border-bottom: 1px solid rgba(200, 146, 42, .12);
  padding: 8px 0
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px
}

.topbar-contact {
  display: flex;
  gap: 20px;
  flex-wrap: wrap
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .7rem;
  color: var(--dim)
}

.topbar-item i {
  color: var(--gold);
  font-size: .75rem
}

.topbar-item a {
  color: var(--mist);
  transition: color .2s
}

.topbar-item a:hover {
  color: var(--gold-bright)
}

.topbar-socials {
  display: flex;
  gap: 6px
}

.topbar-soc {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(200, 146, 42, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dim);
  font-size: .68rem;
  transition: border-color .2s, color .2s
}

.topbar-soc:hover {
  border-color: var(--gold);
  color: var(--gold)
}

/* NAVBAR */
.site-nav {
  background: rgba(13, 11, 8, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200, 146, 42, .1);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .3s var(--ease)
}

.site-nav.shadow-on {
  box-shadow: 0 4px 32px rgba(0, 0, 0, .6)
}

.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(20px, calc((100vw - 1280px)/2 + 20px))
}

.nav-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px
}

.nav-brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  opacity: 0
}

.nav-brand-logo[src] {
  opacity: 1
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px
}

.nav-brand-name {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--parchment);
  line-height: 1;
  letter-spacing: .01em
}

.nav-brand-tag {
  font-size: .5rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold)
}

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

.nav-link-item {
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--mist);
  padding: 6px 10px;
  border-radius: var(--r1);
  transition: color .2s, background .2s;
  white-space: nowrap
}

.nav-link-item:hover {
  color: var(--parchment);
  background: rgba(255, 255, 255, .04)
}

.nav-cta {
  margin-left: 8px;
  padding: 9px 18px;
  font-size: .72rem
}

.nav-burger {
  display: none;
  background: none;
  border: 1px solid rgba(200, 146, 42, .25);
  width: 40px;
  height: 40px;
  border-radius: var(--r2);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .2s;
  flex-shrink: 0
}

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

.nav-burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--parchment);
  box-shadow: 0 5px 0 var(--parchment), 0 -5px 0 var(--parchment)
}

/* DRAWER */
.drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(320px, 88vw);
  background: var(--charcoal);
  border-left: 1px solid rgba(200, 146, 42, .12);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  display: flex;
  flex-direction: column;
  overflow-y: auto
}

.drawer.open {
  transform: translateX(0)
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: all
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(200, 146, 42, .1)
}

.drawer-close {
  background: none;
  border: 1px solid rgba(255, 255, 255, .1);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--mist);
  font-size: .9rem;
  transition: border-color .2s, color .2s
}

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

.drawer-links {
  padding: 16px 0;
  flex: 1
}

.drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--mist);
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  transition: color .2s, background .2s
}

.drawer-link:hover {
  color: var(--gold);
  background: rgba(200, 146, 42, .04)
}

.drawer-link i {
  font-size: .7rem;
  opacity: .5
}

.drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(200, 146, 42, .1);
  display: flex;
  flex-direction: column;
  gap: 10px
}

.drawer-info {
  padding: 16px 24px;
  font-size: .78rem;
  color: var(--dim);
  line-height: 1.85;
  border-top: 1px solid rgba(255, 255, 255, .04)
}

.drawer-info i {
  color: var(--gold);
  margin-right: 8px
}

/* HERO */
.hero {
  background: var(--onyx);
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .6
}

.hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 60px) 56px 72px;
  padding-left: max(40px, calc((100vw - 1280px)/2 + 40px))
}

.hero-eyebrow {
  opacity: 0;
  animation: slideUp .7s .2s var(--ease) forwards
}

.hero-heading {
  opacity: 0;
  animation: slideUp .8s .35s var(--ease) forwards;
  margin-bottom: 20px
}

.hero-sub {
  opacity: 0;
  animation: slideUp .8s .5s var(--ease) forwards;
  max-width: 420px;
  margin-bottom: 36px
}

.hero-actions {
  opacity: 0;
  animation: slideUp .8s .65s var(--ease) forwards;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 52px
}

.hero-stats {
  opacity: 0;
  animation: slideUp .8s .8s var(--ease) forwards;
  display: flex;
  border: 1px solid rgba(200, 146, 42, .14);
  border-radius: var(--r2);
  overflow: hidden;
  width: fit-content;
  flex-wrap: wrap
}

.hero-stat {
  padding: 16px 24px;
  border-right: 1px solid rgba(200, 146, 42, .14)
}

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

.hs-val {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1
}

.hs-lbl {
  font-size: .55rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 4px
}

.hero-right {
  position: relative;
  z-index: 2;
  background: var(--charcoal);
  border-left: 1px solid rgba(200, 146, 42, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.hero-geo {
  position: absolute;
  inset: 0;
  opacity: .1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Crect width='80' height='80' fill='none' stroke='%23C8922A' stroke-width='.5'/%3E%3Cpath d='M0 0l40 40L80 0M0 80l40-40 40 40M40 0v80M0 40h80' stroke='%23C8922A' stroke-width='.4' fill='none'/%3E%3Ccircle cx='40' cy='40' r='12' stroke='%23C8922A' stroke-width='.4' fill='none'/%3E%3C/svg%3E");
  pointer-events: none
}

.hero-img-wrap {
  position: relative;
  z-index: 2;
  width: 460px;
  height: 460px;
  flex-shrink: 0;
}

.hero-img-ring {
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 2px dashed rgba(200, 146, 42, .35);
  animation: spin-cw 12s linear infinite;
}

.hero-img-ring-2 {
  position: absolute;
  inset: -34px;
  border-radius: 50%;
  border: 1px solid rgba(200, 146, 42, .15);
  animation: spin-ccw 20s linear infinite;
}

.hero-img-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid rgba(200, 146, 42, .3);
  box-shadow: 0 0 0 6px rgba(200, 146, 42, .07), 0 24px 64px rgba(0, 0, 0, .6);
  animation: spin-cw 8s linear infinite;
  position: relative;
  z-index: 1;
  overflow: hidden;
  will-change: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.hero-img-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(200, 146, 42, .3);
  background: linear-gradient(135deg, var(--slate), var(--stone));
}

.hero-img-placeholder i {
  font-size: 2.5rem
}

.hero-img-placeholder span {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .6;
  text-align: center;
  padding: 0 20px
}

.hero-orbit-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(200, 146, 42, .8);
  transform-origin: 0 0;
  margin-left: 248px;
  margin-top: -5px;
  animation: spin-cw 8s linear infinite;
}

.hero-badge {
  position: absolute;
  z-index: 5;
  background: var(--gold);
  color: var(--onyx);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  bottom: 48px;
  left: -24px;
  box-shadow: 0 8px 32px rgba(200, 146, 42, .4)
}

.hero-badge-inner {
  text-align: center
}

.hero-badge-num {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1
}

.hero-badge-lbl {
  font-size: .42rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .75
}

.hero-tag {
  position: absolute;
  top: 40px;
  right: 0;
  background: rgba(13, 11, 8, .8);
  border: 1px solid rgba(200, 146, 42, .2);
  border-right: none;
  border-radius: var(--r2) 0 0 var(--r2);
  padding: 10px 14px;
  text-align: right;
  z-index: 5
}

.hero-tag-val {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1
}

.hero-tag-lbl {
  font-size: .5rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 2px
}

/* TICKER */
.ticker {
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-dim));
  padding: 11px 0;
  overflow: hidden;
  border-top: 1px solid rgba(200, 146, 42, .3);
  border-bottom: 1px solid rgba(200, 146, 42, .3)
}

.ticker-track {
  display: flex;
  animation: ticker 32s linear infinite;
  white-space: nowrap
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--onyx);
  padding: 0 20px;
  white-space: nowrap
}

.ticker-sep {
  width: 4px;
  height: 4px;
  background: rgba(0, 0, 0, .25);
  border-radius: 50%;
  flex-shrink: 0
}

/* SECTIONS */
.section {
  padding: 96px 0
}

.section-sm {
  padding: 72px 0
}

.section-dark {
  background: var(--charcoal)
}

.section-darker {
  background: var(--onyx)
}

.section-slate {
  background: var(--slate)
}

.wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 max(20px, calc((100vw - 1280px)/2 + 20px))
}

/* ABOUT */
.about-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: center
}

.about-visual {
  position: relative
}

.about-mosaic {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 260px 180px;
  gap: 10px
}

.am-main {
  grid-column: 1/3;
  border-radius: var(--r3);
  overflow: hidden
}

.am-s1 {
  grid-column: 1;
  border-radius: var(--r3);
  overflow: hidden
}

.am-s2 {
  grid-column: 2;
  border-radius: var(--r3);
  overflow: hidden
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 96px;
  height: 96px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(200, 146, 42, .4);
  z-index: 2
}

.ab-num {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--onyx);
  line-height: 1
}

.ab-lbl {
  font-size: .45rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, .65);
  margin-top: 2px
}

.pillar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0
}

.pillar {
  background: rgba(200, 146, 42, .05);
  border: 1px solid var(--gold-line);
  border-radius: var(--r3);
  padding: 18px 16px;
  transition: border-color .2s, background .2s
}

.pillar:hover {
  border-color: rgba(200, 146, 42, .35);
  background: rgba(200, 146, 42, .08)
}

.pillar-icon {
  font-size: 1.3rem;
  margin-bottom: 10px
}

.pillar-name {
  font-family: var(--display);
  font-size: .95rem;
  font-weight: 600;
  color: var(--parchment);
  margin-bottom: 5px
}

.pillar-text {
  font-size: .8rem;
  color: var(--mist);
  line-height: 1.65
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--gold-line);
  border-radius: var(--r2);
  overflow: hidden
}

.stat-cell {
  padding: 18px 12px;
  text-align: center;
  border-right: 1px solid var(--gold-line)
}

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

.sc-val {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1
}

.sc-lbl {
  font-size: .54rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 4px
}

/* VM */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--gold-line);
  border-radius: var(--r3);
  overflow: hidden
}

.vm-panel {
  padding: 52px 44px
}

.vm-panel:first-child {
  border-right: 1px solid var(--gold-line);
  background: rgba(200, 146, 42, .04)
}

.vm-panel:last-child {
  background: rgba(200, 146, 42, .02)
}

.vm-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .04)
}

.vm-item:last-child {
  border-bottom: none
}

.vm-num {
  font-family: var(--display);
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 22px;
  padding-top: 1px
}

.vm-text {
  font-size: .86rem;
  color: var(--mist);
  line-height: 1.7
}

/* MENU */
.menu-filter {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  border: 1px solid var(--gold-line);
  border-radius: 100px;
  padding: 5px;
  background: rgba(200, 146, 42, .03);
  width: fit-content
}

.mf-btn {
  padding: 8px 20px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mist);
  background: none;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background .2s, color .2s;
  white-space: nowrap
}

.mf-btn.active,
.mf-btn:hover {
  background: var(--gold);
  color: var(--onyx)
}

.menu-card {
  background: var(--slate);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: var(--r3);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
  height: 100%;
  display: flex;
  flex-direction: column
}

.menu-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-line);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .35)
}

.mc-img {
  height: 230px;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--slate), var(--stone));
}

.menu-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s var(--ease);
}

.menu-card:hover .menu-img {
  transform: scale(1.05);
}

.mc-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.2));
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
  z-index: 1;
}

.menu-card:hover .mc-img::after {
  opacity: 1;
}

.mc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(200, 146, 42, .15);
  border: 1px solid rgba(200, 146, 42, .3);
  color: var(--gold-bright);
}

.mc-body {
  padding: 10px 14px 14px;
  flex: 1;
  display: flex;
  flex-direction: column
}

.mc-cat {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px
}

.mc-name {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--parchment);
  margin-bottom: 9px;
  line-height: 1.3
}

.mc-desc {
  font-size: .82rem;
  color: var(--mist);
  line-height: 1.72;
  flex: 1
}

/* GALLERY */
.gallery-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 200px;
  gap: 10px
}

.gallery-mosaic div {
  overflow: hidden;
  border-radius: 10px;
}

.gallery-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-mosaic div:hover img {
  transform: scale(1.08);
}

.gm1 {
  grid-column: 1;
  grid-row: 1/3;
  border-radius: var(--r3);
  overflow: hidden
}

.gm2 {
  grid-column: 2;
  grid-row: 1;
  border-radius: var(--r3);
  overflow: hidden
}

.gm3 {
  grid-column: 3;
  grid-row: 1;
  border-radius: var(--r3);
  overflow: hidden
}

.gm4 {
  grid-column: 2;
  grid-row: 2;
  border-radius: var(--r3);
  overflow: hidden
}

.gm5 {
  grid-column: 3;
  grid-row: 2;
  border-radius: var(--r3);
  overflow: hidden;
  position: relative;
  cursor: pointer
}

.gm5-over {
  position: absolute;
  inset: 0;
  background: rgba(200, 146, 42, .25);
  display: flex;
  align-items: center;
  justify-content: center
}

.gm5-over span {
  font-family: var(--display);
  font-size: 1rem;
  font-style: italic;
  color: #fff
}

/* SERVICES */
.svc-card {
  background: var(--slate);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: var(--r3);
  padding: 28px 22px;
  text-align: center;
  transition: border-color .3s, transform .3s var(--ease), background .3s;
  height: 100%
}

.svc-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-3px);
  background: rgba(200, 146, 42, .04)
}

.svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(200, 146, 42, .1);
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 16px
}

.svc-name {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--parchment);
  margin-bottom: 8px
}

.svc-text {
  font-size: .82rem;
  color: var(--mist);
  line-height: 1.72
}

/* EXP BAND */
.exp-band {
  background: var(--onyx);
  border-top: 1px solid rgba(200, 146, 42, .1);
  border-bottom: 1px solid rgba(200, 146, 42, .1)
}

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

.exp-cell {
  padding: 44px 28px;
  text-align: center;
  border-right: 1px solid rgba(200, 146, 42, .08);
  transition: background .3s
}

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

.exp-cell:hover {
  background: rgba(200, 146, 42, .04)
}

.exp-num {
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1
}

.exp-label {
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--dim);
  margin: 6px 0
}

.exp-desc {
  font-size: .8rem;
  color: #4A4030;
  line-height: 1.65
}

/* REVIEWS */
.rating-hero {
  display: flex;
  flex-direction: column;
  align-items: flex-end
}

.rh-num {
  font-family: var(--display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1
}

.rh-stars {
  color: var(--gold);
  font-size: .95rem;
  letter-spacing: 3px;
  margin: 4px 0
}

.rh-count {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dim)
}

.review-card {
  background: var(--slate);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: var(--r3);
  padding: 26px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .3s, transform .3s var(--ease)
}

.review-card:hover {
  border-color: rgba(200, 146, 42, .22);
  transform: translateY(-3px)
}

.rc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start
}

.rc-person {
  display: flex;
  gap: 12px;
  align-items: center
}

.rc-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--onyx);
  flex-shrink: 0
}

.rc-name {
  font-size: .88rem;
  font-weight: 600;
  color: var(--parchment)
}

.rc-sub {
  font-size: .65rem;
  color: var(--dim);
  margin-top: 2px
}

.rc-stars {
  color: var(--gold);
  font-size: .72rem;
  letter-spacing: 2px
}

.rc-text {
  font-family: var(--display);
  font-size: .98rem;
  font-style: italic;
  color: var(--mist);
  line-height: 1.72;
  flex: 1
}

.rc-text strong {
  color: var(--sand);
  font-style: normal;
  font-weight: 600
}

.rc-foot {
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--dim);
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .04);
  margin-top: auto
}

/* NEWSLETTER */
.nl-band {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold) 60%, var(--gold-dim));
  position: relative;
  overflow: hidden
}

.nl-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Crect width='60' height='60' fill='none' stroke='rgba(0,0,0,0.08)' stroke-width='.5'/%3E%3C/svg%3E")
}

.nl-inner {
  position: relative;
  z-index: 1
}

.nl-heading {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--onyx);
  margin-bottom: 6px
}

.nl-sub {
  font-size: .9rem;
  color: rgba(0, 0, 0, .6)
}

.nl-form {
  display: flex;
  border-radius: var(--r1);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .15)
}

.nl-input {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .25);
  border: none;
  font-size: .88rem;
  font-family: var(--text);
  color: var(--onyx);
  outline: none
}

.nl-input::placeholder {
  color: rgba(0, 0, 0, .4)
}

.nl-btn {
  padding: 14px 22px;
  background: var(--onyx);
  color: var(--parchment);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: var(--text);
  transition: background .2s;
  white-space: nowrap
}

.nl-btn:hover {
  background: #111
}

/* CONTACT */
.contact-card {
  background: var(--slate);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: var(--r2);
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color .2s
}

.contact-card:hover {
  border-color: var(--gold-line)
}

.cc-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--r1);
  background: rgba(200, 146, 42, .1);
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  flex-shrink: 0
}

.cc-label {
  font-size: .56rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px
}

.cc-val {
  font-size: .88rem;
  color: var(--sand);
  font-weight: 400;
  line-height: 1.55
}

.cc-val a {
  color: var(--gold-bright)
}

.cc-val a:hover {
  text-decoration: underline
}

.map-wrap {
  border-radius: var(--r3);
  overflow: hidden;
  border: 1px solid rgba(200, 146, 42, .12);
  height: 190px;
  margin-top: 16px
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block
}

.form-box {
  background: var(--slate);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: var(--r3);
  padding: 40px 36px
}

.form-lbl {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 6px;
  display: block
}

.form-ctrl {
  width: 100%;
  padding: 11px 13px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r1);
  color: var(--parchment);
  font-size: .9rem;
  font-family: var(--text);
  outline: none;
  transition: border-color .2s
}

.form-ctrl:focus {
  border-color: var(--gold);
  background: rgba(200, 146, 42, .04)
}

.form-ctrl option {
  background: var(--slate)
}

textarea.form-ctrl {
  resize: vertical;
  min-height: 106px
}

/* FOOTER */
.site-footer {
  background: var(--onyx);
  border-top: 1px solid rgba(200, 146, 42, .08)
}

.footer-top {
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: 2.5fr 1.5fr 1.5fr 2fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.footer-brand-name {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--parchment)
}

.footer-brand-tag {
  font-size: .5rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block
}

.footer-about {
  font-size: .82rem;
  color: var(--dim);
  line-height: 1.82;
  margin-bottom: 20px
}

.footer-soc {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dim);
  font-size: .68rem;
  transition: border-color .2s, color .2s
}

.footer-soc:hover {
  border-color: var(--gold);
  color: var(--gold)
}

.footer-col-head {
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px
}

.footer-link {
  font-size: .82rem;
  color: var(--dim);
  display: block;
  padding: 5px 0;
  transition: color .2s
}

.footer-link:hover {
  color: var(--sand)
}

.footer-fi {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 11px
}

.footer-fi-ic {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: .85rem
}

.footer-fi-tx {
  font-size: .8rem;
  color: var(--dim);
  line-height: 1.65
}

.footer-fi-tx a {
  color: var(--gold-bright)
}

.footer-bottom {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap
}

.footer-copy {
  font-size: .7rem;
  color: rgba(255, 255, 255, .12)
}

.footer-badge {
  font-size: .54rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .18);
  padding: 4px 9px;
  border-radius: 100px
}

/* WA FLOAT */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  transition: transform .25s var(--ease), box-shadow .25s
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, .5);
  color: #fff
}

/* KEYFRAMES */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes ticker {
  from {
    transform: translateX(0)
  }

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

@keyframes spin-cw {
  0% {
    transform: rotate(0deg)
  }

  100% {
    transform: rotate(360deg)
  }
}

@keyframes spin-ccw {
  0% {
    transform: rotate(0deg)
  }

  100% {
    transform: rotate(-360deg)
  }
}

/* RESPONSIVE */
@media(max-width:1199px) {
  .hero-left {
    padding-left: 40px;
    padding-right: 40px
  }

  .nav-inner {
    padding: 0 32px
  }

  .wrap {
    padding-left: 32px;
    padding-right: 32px
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px
  }

  .hero-img-wrap {
    width: 380px;
    height: 380px
  }

  .hero-orbit-dot {
    margin-left: 208px
  }
}

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

  .hero-left {
    min-height: auto;
    padding: calc(var(--nav-h) + 52px) 32px 48px
  }

  .hero-right {
    border-left: none;
    border-top: 1px solid rgba(200, 146, 42, .08);
    padding: 48px 32px;
    min-height: 360px
  }

  .hero-img-wrap {
    width: 320px;
    height: 320px
  }

  .hero-orbit-dot {
    margin-left: 178px
  }

  .hero-badge {
    display: none
  }

  .hero-tag {
    top: 20px
  }

  .hero-stats {
    width: 100%
  }

  .hero-stat {
    flex: 1
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .about-mosaic {
    grid-template-rows: 220px 160px
  }

  .about-badge {
    bottom: -16px;
    right: -10px;
    width: 80px;
    height: 80px
  }

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

  .vm-panel:first-child {
    border-right: none;
    border-bottom: 1px solid var(--gold-line)
  }

  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 200px 180px
  }

  .gm1 {
    grid-column: 1/3;
    grid-row: 1
  }

  .gm2 {
    grid-column: 1;
    grid-row: 2
  }

  .gm3 {
    grid-column: 2;
    grid-row: 2
  }

  .gm4 {
    grid-column: 1;
    grid-row: 3
  }

  .gm5 {
    grid-column: 2;
    grid-row: 3
  }

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

  .exp-cell {
    border-bottom: 1px solid rgba(200, 146, 42, .08)
  }

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

  .exp-cell:nth-last-child(-n+2) {
    border-bottom: none
  }

  .exp-desc {
    display: none
  }

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

  .nav-links {
    display: none
  }

  .nav-burger {
    display: flex
  }

  .nav-cta {
    display: none
  }

  .nav-inner {
    padding: 0 20px
  }

  .mc-img {
    height: 170px;
  }
}

@media(max-width:767px) {
  :root {
    --nav-h: 58px
  }

  .section {
    padding: 72px 0
  }

  .section-sm {
    padding: 52px 0
  }

  .wrap {
    padding-left: 20px;
    padding-right: 20px
  }

  .topbar {
    display: none
  }

  .hero-left {
    padding: calc(var(--nav-h) + 36px) 20px 40px
  }

  .hero-heading {
    font-size: clamp(2rem, 7vw, 2.8rem)
  }

  .hero-right {
    padding: 36px 20px;
    min-height: 320px
  }

  .hero-img-wrap {
    width: 260px;
    height: 260px
  }

  .hero-orbit-dot {
    margin-left: 148px
  }

  .hero-stats {
    width: 100%;
    flex-wrap: nowrap
  }

  .hero-stat {
    padding: 12px 14px
  }

  .hs-val {
    font-size: 1.25rem
  }

  .vm-panel {
    padding: 36px 28px
  }

  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto
  }

  .gm1,
  .gm2,
  .gm3,
  .gm4,
  .gm5 {
    grid-column: 1;
    grid-row: auto;
    height: 200px
  }

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

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

  .nl-form {
    flex-direction: column
  }

  .nl-btn {
    text-align: center
  }

  .form-box {
    padding: 28px 22px
  }

  .stat-row {
    grid-template-columns: 1fr 1fr
  }

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

  .stat-cell:nth-child(1),
  .stat-cell:nth-child(2) {
    border-bottom: 1px solid var(--gold-line)
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px
  }

  .hero-actions .btn-primary-gold,
  .hero-actions .btn-ghost {
    width: 100%;
    justify-content: center
  }

  .about-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: 200px 150px 150px
  }

  .am-main,
  .am-s1,
  .am-s2 {
    grid-column: 1
  }

  .about-badge {
    display: none
  }

  .pillar-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px
  }

  .rating-hero {
    align-items: flex-start
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start
  }

  .mc-img {
    height: 160px;
  }
}

@media(max-width:575px) {
  .section {
    padding: 60px 0
  }

  .wrap {
    padding-left: 16px;
    padding-right: 16px
  }

  .hero-heading {
    font-size: 2rem
  }

  .hero-sub {
    font-size: .9rem
  }

  .hero-img-wrap {
    width: 220px;
    height: 220px
  }

  .hero-orbit-dot {
    margin-left: 128px
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%
  }

  .hero-stat {
    border-right: 1px solid rgba(200, 146, 42, .14) !important;
    border-bottom: 1px solid rgba(200, 146, 42, .14)
  }

  .hero-stat:nth-child(2n) {
    border-right: none !important
  }

  .hero-stat:nth-last-child(-n+2) {
    border-bottom: none
  }

  .vm-panel {
    padding: 28px 20px
  }

  .exp-cell {
    padding: 28px 16px
  }

  .exp-num {
    font-size: 2rem
  }

  .rh-num {
    font-size: 3rem
  }

  .menu-filter {
    width: 100%;
    justify-content: center
  }

  .mf-btn {
    padding: 7px 14px;
    font-size: .68rem
  }

  .form-box {
    padding: 22px 18px
  }

  .svc-card {
    padding: 22px 16px
  }

  .pillar-grid {
    gap: 8px
  }

  .pillar {
    padding: 14px 12px
  }

  .pillar-text {
    font-size: .76rem
  }

  .mc-img {
    height: 140px;
  }
}

body {
  overflow-x: hidden
}

.about-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}