/* ===========================
   ROOT VARIABLES & RESET
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Raleway:wght@300;400;500;600&display=swap');

:root {
  --clr-bg:       #0e0b07;
  --clr-surface:  #151209;
  --clr-card:     #1c1710;
  --clr-border:   #2e2718;
  --clr-gold:     #c9a96e;
  --clr-gold-lt:  #e0c99a;
  --clr-cream:    #f4ede0;
  --clr-muted:    #7a6f5e;
  --clr-white:    #ffffff;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Raleway', sans-serif;

  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-lg:   1.125rem;
  --fs-xl:   1.375rem;
  --fs-2xl:  1.75rem;
  --fs-3xl:  2.5rem;
  --fs-4xl:  3.5rem;
  --fs-5xl:  5rem;
  --fs-6xl:  7rem;

  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.5rem;
  --space-lg:   2.5rem;
  --space-xl:   4rem;
  --space-2xl:  6rem;
  --space-3xl:  9rem;

  --radius-sm: 2px;
  --radius-md: 6px;

  --shadow-gold: 0 0 40px rgba(201,169,110,0.12);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

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

body {
  background-color: var(--clr-bg);
  color: var(--clr-cream);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ===========================
   NOISE TEXTURE OVERLAY
=========================== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ===========================
   SCROLLBAR
=========================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb { background: var(--clr-gold); border-radius: 3px; }

/* ===========================
   TYPOGRAPHY UTILITIES
=========================== */
.display {
  font-family: var(--ff-display);
  font-weight: 300;
  line-height: 1.1;
}

.eyebrow {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clr-gold);
}

.text-gold  { color: var(--clr-gold); }
.text-muted { color: var(--clr-muted); }
.text-cream { color: var(--clr-cream); }

/* ===========================
   DIVIDER
=========================== */
.ornament {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  justify-content: center;
  margin: var(--space-md) 0;
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--clr-gold));
}

.ornament::after {
  background: linear-gradient(to left, transparent, var(--clr-gold));
}

.ornament-diamond {
  width: 8px;
  height: 8px;
  background: var(--clr-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn:hover::before {
  transform: translateX(0);
}

.btn-primary {
  background: var(--clr-gold);
  color: var(--clr-bg);
}

.btn-primary:hover {
  background: var(--clr-gold-lt);
}

.btn-outline {
  background: transparent;
  color: var(--clr-gold);
  border: 1px solid var(--clr-gold);
}

.btn-outline:hover {
  background: rgba(201,169,110,0.08);
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem var(--space-xl);
  transition: background 0.4s ease, padding 0.4s ease;
}

.navbar.scrolled {
  background: rgba(14,11,7,0.97);
  backdrop-filter: blur(20px);
  padding: 1rem var(--space-xl);
  border-bottom: 1px solid var(--clr-border);
}

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

.nav-logo-name {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: 400;
  color: var(--clr-gold);
  letter-spacing: 0.05em;
}

.nav-logo-tag {
  font-family: var(--ff-body);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--clr-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-cream);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}

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

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

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

.nav-reserve {
  background: var(--clr-gold);
  color: var(--clr-bg);
  padding: 0.6rem 1.4rem;
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--transition);
}

.nav-reserve:hover {
  background: var(--clr-gold-lt);
  color: var(--clr-bg);
}

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

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--clr-cream);
  transition: var(--transition);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(14,11,7,0.98);
  backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.nav-mobile a {
  font-family: var(--ff-display);
  font-size: var(--fs-3xl);
  color: var(--clr-cream);
  transition: color var(--transition);
}

.nav-mobile a:hover {
  color: var(--clr-gold);
}

/* ===========================
   SECTION WRAPPER
=========================== */
.section {
  padding: var(--space-3xl) var(--space-xl);
  max-width: 1400px;
  margin: 0 auto;
}

.section-full {
  padding: var(--space-3xl) var(--space-xl);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-title {
  font-family: var(--ff-display);
  font-size: var(--fs-4xl);
  font-weight: 300;
  line-height: 1.1;
  margin-top: var(--space-sm);
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  padding: var(--space-2xl) var(--space-xl) var(--space-lg);
}

.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--clr-border);
}

.footer-brand-name {
  font-family: var(--ff-display);
  font-size: var(--fs-2xl);
  color: var(--clr-gold);
  margin-bottom: var(--space-sm);
}

.footer-brand-desc {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  line-height: 1.8;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-muted);
  font-size: var(--fs-sm);
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

.footer-col-title {
  font-size: var(--fs-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--space-md);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--clr-cream);
}

.footer-col address {
  font-style: normal;
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  line-height: 2;
}

.footer-bottom {
  max-width: 1400px;
  margin: var(--space-md) auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: var(--clr-muted);
}

/* ===========================
   PAGE HERO (reusable)
=========================== */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding: var(--space-2xl) var(--space-xl);
  position: relative;
  background: linear-gradient(to bottom, transparent 40%, var(--clr-bg)),
              var(--clr-surface);
  overflow: hidden;
  margin-top: 0;
  padding-top: 140px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: 0;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.page-hero-title {
  font-family: var(--ff-display);
  font-size: var(--fs-5xl);
  font-weight: 300;
  line-height: 1;
}

/* ===========================
   FADE-IN ANIMATION
=========================== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* ===========================
   RESPONSIVE BREAKPOINTS
=========================== */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  :root {
    --fs-5xl: 3.5rem;
    --fs-4xl: 2.5rem;
    --fs-3xl: 2rem;
    --fs-6xl: 4rem;
  }

  .navbar {
    padding: 1.2rem var(--space-sm);
  }

  .navbar.scrolled {
    padding: 0.9rem var(--space-sm);
  }

  .nav-links,
  .nav-reserve {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-mobile {
    display: flex;
  }

  .section,
  .section-full {
    padding: var(--space-2xl) var(--space-sm);
  }

  .footer {
    padding: var(--space-xl) var(--space-sm) var(--space-md);
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-xs);
    text-align: center;
  }

  .page-hero {
    padding: var(--space-xl) var(--space-sm);
    padding-top: 120px;
  }
}
