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

:root {
  --black: #000000;
  --gold: #D4AF37;
  --gold-light: #E8C95A;
  --gold-dark: #B8941F;
  --charcoal: #1A1A1A;
  --white: #F5F0E8;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
  --gold-gradient: linear-gradient(135deg, #D4AF37, #F5E6A3, #D4AF37);
  --gold-text-grad: linear-gradient(135deg, #D4AF37 0%, #F5E6A3 40%, #D4AF37 60%, #E8C95A 100%);
  --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.15);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--black)
}

html::-webkit-scrollbar {
  width: 6px
}

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

html::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

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

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

ul {
  list-style: none
}

button {
  cursor: pointer;
  border: none;
  font-family: var(--font-body)
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px
}

.gold-text {
  background: var(--gold-text-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 16px auto
}

.section {
  padding: 100px 0;
  position: relative
}

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

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 8px
}

.section-header p {
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.6);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
  letter-spacing: .5px
}

/* PAGE ENTRANCE */
body {
  opacity: 0;
}

body.loaded {
  opacity: 1;
}

.page-hero-content h1,
.page-hero-content .gold-line,
.page-hero-content p {
  opacity: 0;
  transform: translateY(25px);
}

/* PRELOADER */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px
}

#preloader .logo-preloader {
  width: 100px;
  height: 100px;
  opacity: 0;
  transform: scale(.8)
}

#preloader .brand-name {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  letter-spacing: 12px;
  opacity: 0;
  background: var(--gold-text-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

#preloader .tagline {
  font-size: .8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.5);
  opacity: 0;
  margin-top: -15px;
}

/* TOP BAR */
.top-bar {
  background: var(--charcoal);
  padding: 8px 0;
  font-size: .78rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  position: relative;
  z-index: 1001;
  transition: transform .3s ease
}

.top-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px
}

.top-bar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 500
}

.top-bar-phone svg {
  width: 14px;
  height: 14px;
  fill: var(--gold)
}

.top-bar-social {
  display: flex;
  gap: 16px;
  align-items: center
}

.top-bar-social a {
  color: var(--gold);
  transition: all .3s ease;
  display: flex;
  align-items: center
}

.top-bar-social a:hover {
  color: var(--gold-light);
  transform: translateY(-2px)
}

.top-bar-social svg {
  width: 16px;
  height: 16px;
  fill: var(--gold)
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all .4s var(--ease)
}

.header.scrolled .top-bar {
  padding: 6px 0;
  font-size: .72rem
}

.navbar {
  background: transparent;
  padding: 16px 0;
  transition: all .4s var(--ease)
}

.header.scrolled .navbar {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1)
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap
}

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

.nav-brand img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  transition: transform .3s ease
}

.nav-brand {
  display: flex;
}

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

.nav-brand-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 3px;
  background: var(--gold-text-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

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

.nav-links a {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding: 8px 0;
  transition: color .3s ease
}

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

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

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

.nav-cta-btn {
  padding: 12px 28px !important;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05)) !important;
  border: 1px solid rgba(212, 175, 55, 0.6) !important;
  border-radius: 30px;
  font-size: .75rem !important;
  letter-spacing: 2.5px !important;
  color: var(--gold) !important;
  transition: all .4s ease !important;
  position: relative;
  overflow: hidden
}

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

.nav-cta-btn:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.35), 0 0 60px rgba(212, 175, 55, 0.12) !important;
  border-color: var(--gold) !important;
  transform: translateY(-1px)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
  z-index: 1002
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: all .3s ease;
  display: block
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.hamburger.active span:nth-child(2) {
  opacity: 0
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px)
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(30px);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding: 100px 40px 40px;
  transition: right .5s var(--ease);
  border-left: 1px solid rgba(212, 175, 55, 0.15)
}

.mobile-nav.active {
  right: 0
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white);
  padding: 20px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  transition: all .4s ease;
  position: relative;
  letter-spacing: 1px
}

.mobile-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold-gradient);
  transition: width .4s ease
}

.mobile-nav a:hover {
  color: var(--gold);
  padding-left: 16px
}

.mobile-nav a:hover::before {
  width: 100%
}

.mobile-nav a.active {
  color: var(--gold);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  padding-left: 16px;
}

.mobile-nav a.active::before {
  width: 100%;
}

.footer-link-text {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link-text:hover {
  color: var(--gold);
}

.mobile-nav a:last-child {
  margin-top: 20px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-bottom: 1px solid rgba(212, 175, 55, 0.5);
  text-align: center;
  font-size: 1rem;
  font-family: var(--font-body);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 16px 0;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent)
}

.mobile-nav a:last-child:hover {
  background: var(--gold);
  color: var(--black);
  padding-left: 0
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible
}