

:root {
  --black: #070707;
  --dark: #0f0f0f;
  --dark-2: #161616;
  --dark-3: #1e1e1e;
  --dark-4: #252525;
  --gold: #c9a84c;
  --gold-l: #e2c97e;
  --gold-d: #a07c2e;
  --gold-dim: rgba(201, 168, 76, .12);
  --gold-dim2: rgba(201, 168, 76, .06);
  --white: #f4f2ed;
  --muted: #7a7870;
  --muted-l: #a09e98;
  --border: rgba(201, 168, 76, .16);
  --border-s: rgba(255, 255, 255, .05);
  --radius: 0px;
  --transition: .25s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold);
  color: var(--black);
  padding: .5rem 1rem;
  font-size: .8rem;
  font-weight: 500;
  z-index: 10000;
  transition: top .2s;
}

.skip-link:focus {
  top: .5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

::-webkit-scrollbar {
  width: 2px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
}

h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 6rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}

p {
  line-height: 1.8;
  color: var(--muted-l);
  font-size: .9rem;
}

strong {
  font-weight: 500;
  color: var(--white);
}

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

.muted {
  color: var(--muted);
}

#cur {
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 100000;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s;
}

#cur-r {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, .45);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width .32s, height .32s, opacity .2s;
}

body:has(a:hover) #cur-r,
body:has(button:hover) #cur-r {
  width: 54px;
  height: 54px;
  opacity: .55;
}

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

#btt {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: var(--dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .75rem;
  cursor: none;
  z-index: 800;
  opacity: 0;
  transition: opacity .3s, background var(--transition);
  text-decoration: none;
}

#btt.v {
  opacity: 1;
}

#btt:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
}

#toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--gold);
  color: var(--black);
  padding: .85rem 1.7rem;
  font-size: .78rem;
  letter-spacing: .1em;
  font-weight: 500;
  z-index: 5000;
  transform: translateY(120%);
  opacity: 0;
  visibility: hidden;
  transition: transform .35s ease, opacity .35s ease, visibility .35s ease;
  pointer-events: none;
}

#toast.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

#toast.error {
  background: #c0392b;
  color: #fff;
}

#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  height: 74px;
  border-bottom: 1px solid transparent;
  transition: background .4s, border-color .4s;
}

#nav.s {
  background: rgba(7, 7, 7, .92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-color: var(--border);
}

.n-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
}

.n-logo-box {
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 700;
  position: relative;
}

.n-logo-box::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(201, 168, 76, .2);
  z-index: -1;
}

.n-logo-txt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .07em;
}

.n-logo-txt em {
  color: var(--gold);
  font-style: normal;
}

.n-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.n-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .75rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
}

.n-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s;
}

.n-links a:hover {
  color: var(--white);
}

.n-links a:hover::after {
  width: 100%;
}

.n-lang {
  font-size: .7rem !important;
  letter-spacing: .18em !important;
  color: var(--gold) !important;
  border: 1px solid var(--border) !important;
  padding: .2rem .6rem !important;
}

.n-lang::after {
  display: none !important;
}

.n-lang:hover {
  background: var(--gold-dim) !important;
}

.n-cta {
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: .4rem 1.2rem !important;
  transition: background var(--transition) !important;
}

.n-cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}

.n-cta::after {
  display: none !important;
}

.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  background: transparent;
  border: none;
  padding: 4px;
}

.ham span {
  width: 22px;
  height: 1px;
  background: var(--white);
  display: block;
  transition: .3s;
}

.ham.o span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.ham.o span:nth-child(2) {
  opacity: 0;
}

.ham.o span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

.mm {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(7, 7, 7, .97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mm[hidden] {
  display: none;
}

.mm.o {
  display: flex;
}

.mm a {
  display: block;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  color: var(--white);
  text-decoration: none;
  transition: color .2s;
}

.mm a:hover {
  color: var(--gold);
}

.mm-lang {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 1rem !important;
  letter-spacing: .18em;
  color: var(--gold) !important;
  border: 1px solid var(--border);
  padding: .4rem 1.2rem;
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .n-links {
    display: none;
  }

  .ham {
    display: flex;
  }
}

.sec {
  position: relative;
  z-index: 1;
}

.sec-dark {
  background: var(--dark);
}

.sec-dark2 {
  background: var(--dark-2);
}

.sp {
  padding: 110px clamp(1.5rem, 5vw, 4rem);
}

.s-label {
  font-size: .63rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1rem;
}

.s-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.s-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
}

.g-line {
  width: 44px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.btn-g {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: .82rem 2.2rem;
  font-size: .75rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: background var(--transition), transform .2s;
  cursor: none;
}

.btn-g:hover {
  background: var(--gold-l);
  transform: translateY(-2px);
  color: var(--black);
}

.btn-og {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  padding: .82rem 2.2rem;
  font-size: .75rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: background var(--transition), transform .2s;
  cursor: none;
}

.btn-og:hover {
  background: var(--gold-dim);
  transform: translateY(-2px);
  color: var(--gold);
}

#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px clamp(1.5rem, 5vw, 4rem) 80px;
  position: relative;
  overflow: hidden;
}

.h-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 35%, rgba(201, 168, 76, .08) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 5% 85%, rgba(201, 168, 76, .04) 0%, transparent 60%);
}

.h-orb {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 6%;
}

.orb-wrap {
  position: relative;
  width: min(52vw, 660px);
  height: min(52vw, 660px);
}

.orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  inset: 0;
  animation: spin 60s linear infinite;
}

.orb-ring:nth-child(1) {
  border-color: rgba(201, 168, 76, .18);
  animation-duration: 80s;
}

.orb-ring:nth-child(2) {
  border-color: rgba(201, 168, 76, .10);
  inset: 8%;
  animation-duration: 55s;
  animation-direction: reverse;
}

.orb-ring:nth-child(3) {
  border-color: rgba(201, 168, 76, .06);
  inset: 18%;
  animation-duration: 40s;
}

.orb-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  box-shadow: 0 0 8px var(--gold);
}

.orb-ring:nth-child(2) .orb-dot {
  left: auto;
  right: 0;
}

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

.orb-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: rgba(201, 168, 76, .25);
}

.h-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.h-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp .8s .2s forwards;
}

.h-eyebrow-line {
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.h-eyebrow span {
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

.h-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8.5vw, 7.5rem);
  font-weight: 300;
  line-height: .92;
  letter-spacing: -.01em;
  opacity: 0;
  animation: fadeUp .9s .35s forwards;
}

.h-title .it {
  font-style: italic;
  color: var(--gold);
}

.h-title .thin {
  font-weight: 300;
  opacity: .4;
}

.h-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 2.2rem 0;
  opacity: 0;
  animation: fadeUp .8s .55s forwards;
}

.h-sub {
  font-size: 1rem;
  color: var(--muted-l);
  line-height: 1.85;
  max-width: 480px;
  opacity: 0;
  animation: fadeUp .9s .65s forwards;
}

.h-btns {
  margin-top: 2.8rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s .8s forwards;
}

.h-pills {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  opacity: 0;
  animation: fadeUp .9s 1s forwards;
}

.pill {
  border: 1px solid var(--border);
  padding: .25rem .9rem;
  font-size: .65rem;
  letter-spacing: .1em;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.pill i {
  color: var(--gold);
  font-size: .6rem;
}

.pill-soon {
  font-size: .55rem;
  color: var(--gold);
  margin-left: .2rem;
  font-style: normal;
}

.h-scroll {
  position: absolute;
  bottom: 2rem;
  left: clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  gap: .9rem;
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp .9s 1.2s forwards;
}

.h-scroll-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: .3;
  }

  50% {
    opacity: 1;
  }
}

.mq-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: .7rem 0;
  background: var(--dark);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.mq-inner {
  display: flex;
  white-space: nowrap;
  animation: mq 28s linear infinite;
}

.mq-inner:hover {
  animation-play-state: paused;
}

.mq-item {
  padding: 0 2.5rem;
  font-size: .64rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  flex-shrink: 0;
}

.mq-item .d {
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
}

@keyframes mq {
  from {
    transform: translateX(0);
  }

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

.eco-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 5rem;
}

.eco-intro .s-label {
  justify-content: center;
}

.eco-intro p {
  max-width: 480px;
  margin: 1rem auto 0;
}

.eco-map {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eco-holding {
  border: 1px solid var(--gold);
  padding: 1.8rem 3rem;
  background: var(--dark-2);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 240px;
}

.eco-holding::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(201, 168, 76, .2);
  pointer-events: none;
}

.eco-h-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .7rem;
  color: var(--gold);
}

.eco-h-lbl {
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .25rem;
}

.eco-h-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.eco-cv {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold), rgba(201, 168, 76, .2));
}

.eco-bar {
  width: 100%;
  max-width: 980px;
  display: flex;
  align-items: flex-start;
  position: relative;
}

.eco-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), var(--gold), var(--border), transparent);
}

.eco-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eco-cc {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold), rgba(201, 168, 76, .2));
}

.eco-col-lbl {
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .9rem;
  text-align: center;
}

.eco-col-cards {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  width: 100%;
  padding: 0 .5rem;
}

.eco-card {
  background: var(--dark-2);
  border: 1px solid var(--border-s);
  padding: 1.1rem 1.3rem;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, background .3s;
  cursor: none;
}

.eco-card:hover {
  border-color: var(--border);
  background: var(--dark-3);
}

.eco-card.ab {
  border-color: var(--border);
}

.eco-card.ab:hover {
  border-color: rgba(201, 168, 76, .4);
}

.eco-card-tag {
  font-size: .57rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .2rem;
}

.eco-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: .98rem;
  font-weight: 600;
  margin-bottom: .15rem;
}

.eco-card-desc {
  font-size: .73rem;
  color: var(--muted);
  line-height: 1.55;
}

.eco-card-icon {
  position: absolute;
  top: .8rem;
  right: .9rem;
  font-size: .8rem;
  color: rgba(201, 168, 76, .2);
}

.eco-card.ab .eco-card-icon {
  color: rgba(201, 168, 76, .45);
}

.eco-soon {
  opacity: .5;
  border-style: dashed !important;
}

.eco-soon:hover {
  opacity: .75;
}

.brand-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  border: 1.5px solid var(--border);
  margin-top: 5rem;
}

.bc {
  background: var(--dark-2);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  transition: background .35s;
  cursor: none;
}

.bc::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dim), transparent 55%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}

.bc:hover {
  background: var(--dark-3);
}

.bc:hover::before {
  opacity: 1;
}

.bc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  color: rgba(201, 168, 76, .07);
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  transition: color .35s;
}

.bc:hover .bc-num {
  color: rgba(201, 168, 76, .18);
}

.bc-icon {
  width: 50px;
  height: 50px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  transition: border-color .3s, background .3s;
}

.bc:hover .bc-icon {
  border-color: var(--gold);
  background: var(--gold-dim);
}

.bc-icon i {
  color: var(--gold);
  font-size: 1.1rem;
}

.bc-sub {
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

.bc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  transition: color .3s;
}

.bc:hover .bc-name {
  color: var(--gold-l);
}

.bc-desc {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.85;
  margin-bottom: 1.8rem;
}

.bc-feats {
  list-style: none;
  margin-bottom: 2rem;
}

.bc-feats li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .82rem;
  color: var(--muted-l);
  padding: .4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .03);
}

.bc-feats li:last-child {
  border-bottom: none;
}

.bc-feats li::before {
  content: '';
  width: 4px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.bc-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  position: relative;
  z-index: 1;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap var(--transition);
}

.bc-link:hover {
  gap: .8rem;
  color: var(--gold-l);
}

.bc-link i {
  font-size: .6rem;
}

.brand-soon {
  background: var(--dark-2);
  padding: 3.5rem;
  border-top: 1.5px solid var(--border);
}

.soon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.si {
  border: 1px dashed rgba(201, 168, 76, .2);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  opacity: .55;
  transition: opacity .3s;
}

.si:hover {
  opacity: .8;
}

.si i {
  color: var(--gold);
  font-size: .9rem;
}

.si strong {
  font-size: .76rem;
  font-weight: 500;
}

.si span {
  font-size: .7rem;
  color: var(--muted);
}

.about-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.av-frame {
  aspect-ratio: 1 / .9;
  background: var(--dark-2);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.av-pat {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-s) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-s) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: .7;
}

.av-k {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 12rem;
  font-weight: 700;
  color: rgba(201, 168, 76, .04);
  white-space: nowrap;
  line-height: 1;
}

.av-c {
  position: absolute;
  width: 50px;
  height: 50px;
  border-color: var(--gold);
}

.av-c.tl {
  top: -1px;
  left: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.av-c.br {
  bottom: -1px;
  right: -1px;
  border-bottom: 1px solid;
  border-right: 1px solid;
}

.av-year {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 88px;
  height: 88px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.av-year .n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.av-year .l {
  font-size: .5rem;
  letter-spacing: .12em;
  color: var(--black);
  text-transform: uppercase;
}

.tl-wrap {
  margin-top: 2rem;
}

.tl-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  align-items: start;
}

.tl-item:last-child {
  border-bottom: none;
}

.tl-yr {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
}

.tl-t {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.75;
}

.vals-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid var(--border);
}

.vi {
  background: var(--dark-2);
  padding: 1.5rem;
  transition: background .3s;
}

.vi:hover {
  background: var(--dark-3);
}

.vi-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .9rem;
}

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

.vi-t {
  font-size: .82rem;
  font-weight: 500;
  margin-bottom: .3rem;
  font-family: 'DM Sans', sans-serif;
}

.vi-d {
  font-size: .76rem;
  color: var(--muted);
  line-height: 1.65;
}

#stats {
  background: var(--black);
}

.stats-g {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.sb {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background .3s;
}

.sb:last-child {
  border-right: none;
}

.sb:hover {
  background: var(--dark-2);
}

.sb-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.sb-l {
  font-size: .65rem;
  letter-spacing: .15em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: .5rem;
  display: block;
}

.partners-g {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5px;
  border: 1.5px solid var(--border);
}

.pc {
  background: var(--dark-2);
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
  transition: background .3s;
  cursor: none;
}

.pc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .35s;
}

.pc:hover {
  background: var(--dark-3);
}

.pc:hover::before {
  opacity: 1;
}

.pc-type {
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .8rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.pc-type::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--muted);
}

.pc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: .6rem;
}

.pc-desc {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.75;
}

.pc-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: rgba(201, 168, 76, .15);
  font-size: 1.1rem;
}

.contact-g {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.ci {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--border);
}

.ci:first-child {
  padding-top: 0;
}

.ci-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ci-icon i {
  color: var(--gold);
  font-size: .85rem;
}

.ci-lbl {
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .15rem;
}

.ci-val {
  font-size: .9rem;
}

.ci-val a {
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition);
}

.ci-val a:hover {
  color: var(--gold);
}

.f-social {
  display: flex;
  gap: .6rem;
}

.s-btn {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  font-size: .8rem;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.s-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.fg {
  margin-bottom: 1.2rem;
}

label {
  display: block;
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .45rem;
}

.req {
  color: var(--gold);
}

input,
textarea,
select {
  width: 100%;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, .07);
  color: var(--white);
  padding: .82rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .87rem;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  border-radius: 0;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--gold);
}

input.error,
textarea.error {
  border-color: #e74c3c;
}

input::placeholder,
textarea::placeholder {
  color: rgba(120, 118, 112, .4);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

select option {
  background: var(--dark-2);
}

.btn-send {
  background: var(--gold);
  color: var(--black);
  border: none;
  width: 100%;
  padding: .95rem;
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  transition: background var(--transition), transform .2s;
  margin-top: 1.3rem;
}

.btn-send:hover {
  background: var(--gold-l);
  transform: translateY(-2px);
}

.btn-send:disabled {
  opacity: .6;
  transform: none;
}

.f-note {
  font-size: .7rem;
  color: var(--muted);
  margin-top: .7rem;
  text-align: center;
}

.f-note i {
  color: var(--gold);
  font-size: .6rem;
  margin-right: .2rem;
}

footer {
  border-top: 1px solid var(--border);
  padding: 5rem clamp(1.5rem, 5vw, 4rem) 2.5rem;
  background: var(--black);
}

.footer-g {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}

.f-about {
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 1.3rem 0;
}

.f-col-t {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.f-links {
  list-style: none;
}

.f-links li {
  margin-bottom: .7rem;
}

.f-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .82rem;
  transition: color var(--transition);
}

.f-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.f-copy {
  font-size: .7rem;
  color: var(--muted);
}

.f-copy em {
  color: var(--gold);
  font-style: normal;
}

.f-legal {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}

.f-legal a {
  color: var(--muted);
  font-size: .7rem;
  text-decoration: none;
  transition: color var(--transition);
}

.f-legal a:hover {
  color: var(--white);
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.v {
  opacity: 1;
  transform: translateY(0);
}

.rd1 {
  transition-delay: .12s;
}

.rd2 {
  transition-delay: .24s;
}

.rd3 {
  transition-delay: .36s;
}

.rd4 {
  transition-delay: .48s;
}

@media (max-width: 1100px) {
  .footer-g {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .brand-duo {
    grid-template-columns: 1fr;
  }

  .about-g {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .contact-g {
    grid-template-columns: 1fr;
  }

  .eco-bar {
    flex-direction: column;
    align-items: center;
    max-width: 400px;
  }

  .eco-bar::before {
    display: none;
  }

  .eco-col {
    width: 100%;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
  }

  .eco-cc {
    display: none;
  }

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

  .sb:nth-child(2) {
    border-right: none;
  }

  .sb:nth-child(3) {
    border-top: 1px solid var(--border);
  }

  .sb:nth-child(4) {
    border-top: 1px solid var(--border);
    border-right: none;
  }
}

@media (max-width: 768px) {
  .soon-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vals-g {
    grid-template-columns: 1fr;
  }

  .cf-row {
    grid-template-columns: 1fr;
  }

  .footer-g {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 500px) {
  .footer-g {
    grid-template-columns: 1fr;
  }

  .soon-grid {
    grid-template-columns: 1fr;
  }

  .h-pills {
    display: none;
  }
}

@media print {
  body {
    cursor: auto;
    background: #fff;
    color: #000;
  }

  #cur,
  #cur-r,
  .mm,
  #btt,
  #toast,
  .h-orb,
  .mq-strip {
    display: none !important;
  }

  #nav {
    position: static;
    background: transparent;
    border: none;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  a {
    color: inherit;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.n-logo-img {
  height: 34px;
  width: auto;
  display: block;
  object-fit: contain;
}

.orb-logo-img {
  width: 60px;
  height: auto;
  object-fit: contain;
  opacity: 0.25;
  filter: sepia(1) saturate(3) hue-rotate(10deg);
}

.av-logo-img {
  width: 400px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.06;
  filter: sepia(1) saturate(3) hue-rotate(10deg);
}

#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(15,13,10,.97);
  border-top: 1px solid var(--border);
  padding: 1.2rem 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: slideUp .35s ease;
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.cb-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.cb-text { flex: 1; min-width: 260px; }
.cb-text strong { color: var(--white); font-size: .95rem; }
.cb-text p { margin: .3rem 0 0; font-size: .82rem; color: var(--muted); line-height: 1.5; }
.cb-link { color: var(--gold); text-decoration: underline; }
.cb-actions { display: flex; gap: .7rem; flex-wrap: wrap; align-items: center; }
.cb-btn {
  padding: .6rem 1.25rem; min-width: 140px; font-size: .78rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase; text-align: center;
  background: transparent; color: var(--gold); border: 1px solid var(--gold);
  cursor: pointer; transition: all .2s; border-radius: 2px;
}
.cb-btn:hover { background: var(--gold); color: var(--black); }

.legal-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; color: var(--gold);
  margin: 2.2rem 0 .7rem; font-weight: 600;
}
.legal-body p, .legal-body li {
  color: var(--muted); font-size: .95rem; line-height: 1.75;
}
.legal-body ul { padding-left: 1.4rem; margin: .6rem 0; }
.legal-body li { margin-bottom: .3rem; }
.legal-body a { color: var(--gold); text-decoration: underline; }
.legal-body a:hover { color: var(--white); }
.legal-meta { color: rgba(201,168,76,.5); font-size: .82rem; margin-top: .5rem; }
.cookie-table {
  width: 100%; border-collapse: collapse; margin: 1rem 0;
  font-size: .85rem;
}
.cookie-table th, .cookie-table td {
  padding: .6rem .8rem; border: 1px solid var(--border);
  color: var(--muted); text-align: left;
}
.cookie-table th { color: var(--white); background: rgba(255,255,255,.04); }
.btn-outline-gold {
  display: inline-block; padding: .7rem 1.6rem;
  border: 1px solid var(--gold); color: var(--gold);
  font-size: .82rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; text-decoration: none;
  transition: all .2s; background: transparent;
}
.btn-outline-gold:hover { background: var(--gold); color: #0f0d0a; }

.f-addr {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}
.f-addr-icon {
  color: var(--gold);
  font-size: .72rem;
  margin-top: .18rem;
  opacity: .7;
  flex-shrink: 0;
}
.f-addr span {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.5;
}

a.eco-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  cursor: pointer;
}
a.eco-card-link:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
a.eco-card-link:hover .eco-card-name {
  color: var(--gold);
}
.eco-card-ext {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: .65rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity .2s;
}
a.eco-card-link:hover .eco-card-ext {
  opacity: .7;
}

a.pill-link {
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, color .2s, background .2s;
}
a.pill-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,.08);
}

.bc-link .fa-external-link-alt {
  font-size: .75em;
  margin-left: .3rem;
  vertical-align: middle;
}

.cm-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(7,7,7,.8);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 1.2rem;
}
.cm-overlay.open { display: flex; animation: cmFade .25s ease; }
@keyframes cmFade { from { opacity: 0; } to { opacity: 1; } }
.cm-dialog {
  width: 100%; max-width: 640px; max-height: 88vh; overflow-y: auto;
  background: var(--dark-2); border: 1px solid var(--border);
  border-radius: 4px; padding: 1.8rem 1.8rem 1.6rem;
  box-shadow: 0 24px 70px rgba(0,0,0,.6);
}
.cm-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.cm-title { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; color: var(--gold); margin: 0; font-weight: 600; }
.cm-close { background: none; border: none; color: var(--muted); font-size: 1.7rem; line-height: 1; cursor: pointer; transition: color .2s; padding: 0; }
.cm-close:hover { color: var(--white); }
.cm-intro { color: var(--muted-l); font-size: .88rem; line-height: 1.65; margin: .5rem 0 1.3rem; }
.cm-cat {
  border: 1px solid var(--border); border-radius: 3px;
  padding: 1rem 1.1rem; margin-bottom: .85rem; background: var(--dark-3);
}
.cm-cat-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.cm-cat-name { color: var(--white); font-size: .92rem; font-weight: 600; letter-spacing: .02em; }
.cm-cat-desc { color: var(--muted); font-size: .82rem; line-height: 1.6; margin: .55rem 0 0; }
.cm-cat-cookies { color: var(--muted); font-size: .73rem; margin: .5rem 0 0; opacity: .85; word-break: break-word; }
.cm-locked { font-size: .68rem; color: var(--gold); text-transform: uppercase; letter-spacing: .08em; white-space: nowrap; }
.cm-switch { position: relative; width: 44px; height: 24px; flex: 0 0 auto; }
.cm-switch input { opacity: 0; width: 0; height: 0; position: absolute; }
.cm-slider {
  position: absolute; inset: 0; cursor: pointer;
  background: var(--dark-4); border: 1px solid var(--border);
  border-radius: 24px; transition: .25s;
}
.cm-slider::before {
  content: ""; position: absolute; height: 16px; width: 16px; left: 3px; top: 3px;
  background: var(--muted-l); border-radius: 50%; transition: .25s;
}
.cm-switch input:checked + .cm-slider { background: var(--gold-dim); border-color: var(--gold); }
.cm-switch input:checked + .cm-slider::before { background: var(--gold); transform: translateX(20px); }
.cm-switch input:disabled + .cm-slider { opacity: .55; cursor: not-allowed; }
.cm-switch input:disabled + .cm-slider::before { background: var(--gold); }
.cm-actions { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: 1.4rem; }
.cm-actions .cb-btn { flex: 1 1 auto; min-width: 130px; }
