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

:root {
  --cream: #FAF7F2;
  --cream-dark: #EEE6D8;
  --gold: #C9A96E;
  --gold-dark: #A8854A;
  --gold-light: #E2C98E;
  --gold-faint: rgba(201, 169, 110, 0.12);
  --text-dark: #2A1F0E;
  --text-mid: #5C4A2A;
  --text-light: #9C8466;
  --white: #FFFFFF;
  --glass-bg: rgba(250, 247, 242, 0.72);
  --glass-border: rgba(201, 169, 110, 0.25);
  --shadow-soft: 0 8px 40px rgba(42, 31, 14, 0.08);
  --shadow-card: 0 16px 60px rgba(42, 31, 14, 0.12);
  --shadow-hover: 0 24px 80px rgba(42, 31, 14, 0.18);
  --transition: all 0.36s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── TYPOGRAPHY ─────────────────────────────────── */

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

/* ─── NAVBAR ─────────────────────────────────────── */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-soft);
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.4);
  flex-shrink: 0;
}

.logo-circle span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.logo-text span {
  color: var(--gold);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.navbar__links a {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  position: relative;
  transition: var(--transition);
}

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

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

.navbar__links a:hover::after {
  width: 100%;
}

.navbar__links a.active {
  color: var(--gold);
}

.navbar__links a.active::after {
  width: 100%;
}

.btn-instagram {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-instagram:hover {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.35);
}

.btn-instagram svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
}

/* ─── BREADCRUMB ─────────────────────────────────── */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 28px 0 0;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}

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

.breadcrumb__sep {
  color: var(--gold-light);
  font-size: 12px;
}

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

/* ─── PAGE WRAPPER ───────────────────────────────── */

.page-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ─── SECTION LABEL ──────────────────────────────── */

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

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

/* ─── GOLD DIVIDER ───────────────────────────────── */

.gold-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px auto;
}

/* ─── BUTTONS ─────────────────────────────────────── */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(201, 169, 110, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(201, 169, 110, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 34px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

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

/* ─── FOOTER ──────────────────────────────────────── */

.footer {
  margin-top: 120px;
  padding: 56px 48px 32px;
  border-top: 1px solid var(--glass-border);
  background: linear-gradient(180deg, transparent, rgba(201, 169, 110, 0.04));
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-dark);
}

.footer__tagline {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.footer__links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer__links a {
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer__copy {
  width: 100%;
  text-align: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

/* ─── FADE-UP ANIMATION ──────────────────────────── */

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* ─── RESPONSIVE ─────────────────────────────────── */

@media (max-width: 1024px) {
  .navbar {
    padding: 0 32px;
  }
  .page-wrapper {
    padding: 0 32px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
    height: 64px;
  }
  .navbar__links {
    display: none;
  }
  .logo-text {
    font-size: 18px;
    letter-spacing: 2px;
  }
  .page-wrapper {
    padding: 0 20px;
  }
  .footer {
    padding: 40px 20px 24px;
  }
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer__links {
    flex-wrap: wrap;
    gap: 16px;
  }
}

/* ─── LIGHTBOX ──────────────────────────────────── */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 8, 5, 0.93);
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 2px;
  display: block;
  user-select: none;
  pointer-events: none;
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 34px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px 8px;
  transition: color 0.2s;
}

.lightbox__close:hover { color: #fff; }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  font-size: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }

.lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.45);
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  .lightbox__nav { width: 36px; height: 36px; font-size: 18px; }
  .lightbox__prev { left: 10px; }
  .lightbox__next { right: 10px; }
}
