:root {
  --bg: #070707;
  --bg-soft: #111111;
  --bg-card: rgba(255, 255, 255, 0.05);
  --white: #ffffff;
  --text: #1e1e1e;
  --muted: #666666;
  --gold: #d1ad62;
  --gold-soft: #f2e3bf;
  --gold-dark: #a37f3a;
  --light: #fbf7f1;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --transition: all 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1150px, 92%);
  margin: 0 auto;
}

/* Loader */
.page-loader {
  position: fixed;
  inset: 0;
  background: #080808;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  text-align: center;
  color: var(--white);
}

.loader-ring {
  width: 54px;
  height: 54px;
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--gold);
  border-radius: 50%;
  margin: 0 auto 16px;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Scroll top */
.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  z-index: 1200;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1500;
  transition: var(--transition);
  background: rgba(5, 5, 5, 0.35);
  backdrop-filter: blur(8px);
}

.site-header.scrolled {
  background: rgba(8, 8, 8, 0.96);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.brand-logo {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(209, 173, 98, 0.35);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.brand-tag {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  position: relative;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.74)),
    url("images/logo-black.jpg") center/cover no-repeat;
  color: var(--white);
  padding-top: 100px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.78), rgba(0,0,0,0.35));
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.22;
}

.hero-glow-1 {
  width: 240px;
  height: 240px;
  background: var(--gold);
  top: 12%;
  right: 12%;
}

.hero-glow-2 {
  width: 180px;
  height: 180px;
  background: #ffffff;
  bottom: 12%;
  left: 8%;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: center;
}

.eyebrow,
.section-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.hero h1,
.section h2,
.cta-box h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.96;
  margin-bottom: 20px;
}

.hero-copy {
  max-width: 650px;
  font-size: 1.06rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: var(--transition);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #e0c07d);
  color: #111111;
  box-shadow: 0 10px 24px rgba(209, 173, 98, 0.25);
}

.btn-gold:hover {
  transform: translateY(-3px);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 16px;
  border-radius: 18px;
  backdrop-filter: blur(6px);
}

.hero-stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-soft);
}

.hero-stat span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.hero-card {
  position: relative;
}

.hero-card-inner {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 30px;
  padding: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.24);
  transform: rotate(2deg);
  transition: var(--transition);
}

.hero-card-inner:hover {
  transform: rotate(0deg) translateY(-6px);
}

.hero-card img {
  border-radius: 24px;
  width: 100%;
}

/* Intro */
.intro-strip {
  background: var(--light);
  padding: 36px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.intro-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.intro-box:hover {
  transform: translateY(-6px);
}

.intro-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff7e7;
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.intro-box h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  margin-bottom: 8px;
}

/* Sections */
.section {
  padding: 95px 0;
}

.two-col {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: start;
}

.two-col p {
  margin-bottom: 16px;
  color: #444;
}

.section-dark {
  background: linear-gradient(180deg, #090909, #111111);
  color: var(--white);
}

.section-dark h2,
.section-dark p {
  color: var(--white);
}

.center {
  text-align: center;
}

.cards {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 28px;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(209, 173, 98, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.card-number {
  display: inline-block;
  margin-bottom: 14px;
  color: rgba(209, 173, 98, 0.85);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 12px;
}

/* Gallery */
.gallery-note {
  margin-top: 10px;
  color: var(--muted);
}

.gallery-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.45)),
    linear-gradient(135deg, #f7e8cb, #caa05d);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.01);
}

.gallery-item span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.4px;
}

/* CTA */
.cta-section {
  background: #f5eee1;
}

.cta-box {
  background: linear-gradient(135deg, #0e0e0e, #171717);
  color: var(--white);
  border-radius: 32px;
  padding: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.15);
}

/* Contact */
.section-contact {
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.contact-details {
  margin-top: 18px;
}

.contact-details p {
  margin-bottom: 11px;
}

.contact-form {
  background: #fcfaf6;
  border: 1px solid #efe5d2;
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #ddd;
  border-radius: 14px;
  margin-bottom: 14px;
  background: #fff;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(209, 173, 98, 0.12);
}

.form-btn {
  border: none;
  cursor: pointer;
}

.form-message {
  margin-top: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  min-height: 24px;
}

/* Footer */
.site-footer {
  background: #0b0b0b;
  color: rgba(255,255,255,0.82);
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: 30px;
  padding-bottom: 34px;
}

.footer-logo {
  width: 82px;
  border-radius: 50%;
  margin-bottom: 14px;
}

.footer-grid h3,
.footer-grid h4 {
  color: var(--white);
  margin-bottom: 14px;
}

.footer-grid li {
  margin-bottom: 10px;
}

.footer-grid a {
  color: rgba(255,255,255,0.82);
  transition: var(--transition);
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.93rem;
}

/* Reveal animations */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-content,
  .intro-grid,
  .two-col,
  .cards,
  .gallery-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .brand-text {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 86px;
    right: 4%;
    width: min(260px, 88%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.25);
    transform: translateY(-15px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav-links.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .hero {
    min-height: auto;
    padding: 130px 0 70px;
  }

  .hero h1,
  .section h2,
  .cta-box h2 {
    line-height: 1;
  }

  .section {
    padding: 78px 0;
  }
}