@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --gold: #C8A45A;
  --gold-l: #E6CC8A;
  --gold-d: #7A6232;
  --gold-glow: rgba(200, 164, 90, .15);
  --dark: #080808;
  --dark2: #0D0D0D;
  --dark3: #131313;
  --dark4: #1A1A1A;
  --dark5: #222;
  --text: #EDE6D6;
  --muted: #8A8070;
  --faint: #3E3830;
  --white: #FDFAF3;
  --border: rgba(200, 164, 90, .13);
  --nav-h: 78px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased
}

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden
}

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

img {
  display: block;
  max-width: 100%;
  height: auto
}

ul {
  list-style: none
}

button {
  cursor: pointer;
  font-family: inherit
}

input,
select,
textarea {
  font-family: inherit
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.2rem, 5vw, 5rem);
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}

.nav.solid {
  background: rgba(8, 8, 8, .97);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1
}

.nav-logo .l1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gold-l);
  letter-spacing: .02em;
  white-space: nowrap
}

.nav-logo .l2 {
  font-size: .52rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted)
}

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

.nav-links a {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color .3s;
  white-space: nowrap;
  padding: .3rem 0
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-l)
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%
}

.nav-cta {
  font-size: .63rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: .52rem 1.3rem;
  transition: background .3s, color .3s !important
}

.nav-cta::after {
  display: none !important
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: .4rem
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  transition: .3s;
  transform-origin: center
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg)
}

.mob-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(8, 8, 8, .98);
  backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}

.mob-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all
}

.mob-menu a {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 6vw, 2.2rem);
  color: var(--text);
  padding: 1rem 2rem;
  text-align: center;
  width: 100%;
  border-bottom: 1px solid rgba(200, 164, 90, .06);
  transition: color .3s;
}

.mob-menu a:hover {
  color: var(--gold-l)
}

.mob-menu .mob-cta {
  color: var(--gold);
  border: 1px solid var(--gold-d);
  margin-top: 1.5rem;
  width: auto;
  padding: .8rem 2.5rem
}

/* ─── BUTTONS ─── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: .88rem 2.2rem;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .3s, transform .25s var(--ease), box-shadow .3s;
  position: relative;
  overflow: hidden;
}

.btn-gold:hover {
  background: var(--gold-l);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(200, 164, 90, .3)
}

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: .88rem 2.2rem;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .3s, color .3s, transform .25s var(--ease);
}

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

.btn-sm {
  padding: .6rem 1.4rem;
  font-size: .62rem
}

/* ─── TYPOGRAPHY ─── */
h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.1;
  color: var(--white)
}

h1 {
  font-size: clamp(2.6rem, 6vw, 6rem)
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.4rem)
}

h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.65rem)
}

h4 {
  font-size: clamp(1rem, 2vw, 1.25rem)
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-size: .58rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold)
}

.eyebrow.c::before {
  display: none
}

.gold-bar {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.4rem 0 2rem
}

.gold-bar.c {
  margin-left: auto;
  margin-right: auto
}

.lead {
  font-size: clamp(.84rem, 1.5vw, .98rem);
  line-height: 1.9;
  color: var(--muted)
}

/* ─── REVEAL ─── */
[data-r] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s var(--ease), transform .75s var(--ease)
}

[data-r].vis {
  opacity: 1;
  transform: none
}

[data-r="l"] {
  transform: translateX(-42px)
}

[data-r="r"] {
  transform: translateX(42px)
}

[data-r="l"].vis,
[data-r="r"].vis {
  transform: none
}

[data-d="1"] {
  transition-delay: .1s
}

[data-d="2"] {
  transition-delay: .2s
}

[data-d="3"] {
  transition-delay: .3s
}

[data-d="4"] {
  transition-delay: .4s
}

[data-d="5"] {
  transition-delay: .5s
}

[data-d="6"] {
  transition-delay: .6s
}

/* ─── PAGE HERO ─── */
.pg-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + clamp(2rem, 8vw, 4rem)) clamp(1rem, 5vw, 5rem) clamp(2rem, 8vw, 4rem);
  overflow: hidden;
}

.pg-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center
}

.pg-hero-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 8, .72) 0%, rgba(8, 8, 8, .45) 50%, rgba(8, 8, 8, .85) 100%)
}

.pg-hero>* {
  position: relative;
  z-index: 2
}

/* ─── SECTION ─── */
.section {
  padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 4vw, 4rem)
}

.section.alt {
  background: var(--dark2)
}

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

/* ─── GRID HELPERS ─── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem)
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem)
}

/* ─── FOOTER ─── */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 5rem clamp(1.2rem, 5vw, 5rem) 2rem
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(200, 164, 90, .07)
}

.f-brand .f-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  color: var(--gold-l);
  display: block;
  margin-bottom: .3rem
}

.f-brand .f-tag {
  font-size: .52rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 1.3rem
}

.f-brand p {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.9;
  max-width: 270px
}

.f-socials {
  display: flex;
  gap: .6rem;
  margin-top: 1.5rem
}

.f-soc {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: var(--muted);
  transition: border-color .3s, color .3s, background .3s
}

.f-soc:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow)
}

.f-col h5 {
  font-size: .58rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.3rem;
  font-weight: 500
}

.f-col li {
  margin-bottom: .65rem
}

.f-col li a {
  font-size: .77rem;
  color: var(--muted);
  transition: color .3s
}

.f-col li a:hover {
  color: var(--gold-l)
}

.footer-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  font-size: .65rem;
  color: var(--faint)
}

.footer-bot a {
  color: var(--gold-d);
  transition: color .3s
}

.footer-bot a:hover {
  color: var(--gold)
}

/* ─── WA FAB ─── */
.wa-fab {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 990;
  width: 50px;
  height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .4);
  transition: transform .3s var(--ease), box-shadow .3s;
}

.wa-fab:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(37, 211, 102, .55)
}

.wa-fab svg {
  width: 25px;
  height: 25px;
  fill: #fff
}

/* ─── FORM ELEMENTS ─── */
.f-label {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .45rem
}

.f-input,
.f-select,
.f-textarea {
  width: 100%;
  background: var(--dark3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: .85rem 1rem;
  font-size: .82rem;
  outline: none;
  transition: border-color .3s;
}

.f-input:focus,
.f-select:focus,
.f-textarea:focus {
  border-color: var(--gold);
  outline: 2px solid rgba(200, 164, 90, .2);
  outline-offset: 2px
}

.f-select option {
  background: var(--dark2);
  color: var(--text)
}

.f-textarea {
  resize: none;
  height: 130px
}

.f-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.2rem
}

/* ─── STAT BOX ─── */
.stat-box {
  text-align: center;
  padding: 2rem 1rem
}

.stat-box .num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1
}

.stat-box .lbl {
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .5rem
}

/* ─── RESPONSIVE MEDIA ─── */
@media(max-width:1200px) {
  .section {
    padding: clamp(2.5rem, 5vw, 5rem) clamp(1rem, 3vw, 3rem)
  }

  .grid-2 {
    gap: clamp(1.5rem, 3vw, 3rem)
  }
}

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

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

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

  .hamburger {
    display: flex
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr
  }

  .section {
    padding: clamp(2rem, 4vw, 4rem) clamp(1rem, 2vw, 2rem)
  }
}

@media(max-width:640px) {

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr
  }

  .footer-top {
    grid-template-columns: 1fr
  }

  .footer-bot {
    justify-content: center;
    text-align: center
  }

  h2 {
    font-size: 1.75rem
  }

  .wa-fab {
    bottom: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px
  }

  .wa-fab svg {
    width: 22px;
    height: 22px
  }

  .section {
    padding: clamp(1.5rem, 3vw, 3rem) 1rem
  }

  .grid-2 {
    gap: 1.5rem
  }
}