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

:root {
  --n: #060606;
  --n2: #0c0c0c;
  --n3: #141414;
  --n4: #1e1e1e;
  --g: #2a2a2a;
  --g2: #3a3a3a;
  --d: #c9a84c;
  --d2: #ddb85a;
  --d3: rgba(201,168,76,0.12);
  --c: #e8dcc8;
  --c2: #b5a58c;
  --b: #f0ebe3;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--n);
  color: var(--c);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 300;
  letter-spacing: 0.015em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--d);
  color: var(--n);
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.1;
  color: var(--b);
  word-break: keep-all;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--d);
  margin-bottom: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  text-align: justify;
}

a {
  color: var(--d);
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  color: var(--d2);
}

strong {
  color: var(--b);
  font-weight: 500;
}

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

.navbar {
  background: rgba(6,6,6,0.85) !important;
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--g);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  padding: 0.6rem 0;
  background: rgba(6,6,6,0.95) !important;
  border-bottom-color: var(--d3);
}

.navbar-brand {
  padding: 0;
}

.navbar-brand img {
  height: 44px;
  width: auto;
  transition: all 0.3s ease;
  filter: brightness(1.05);
}

.navbar-toggler {
  border: 1px solid var(--g);
  padding: 0.4rem 0.7rem;
  border-radius: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
  border-color: var(--d);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28200,168,76,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='1.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 1.2em;
  height: 1.2em;
}

.nav-link {
  color: var(--c) !important;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.6rem 1.4rem !important;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--d) !important;
}

.nav-cta {
  border: 1px solid var(--d);
  margin-left: 0.8rem;
  padding: 0.55rem 1.2rem !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.12em !important;
  transition: all 0.35s ease;
}

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

.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(30%) contrast(1.1) brightness(0.5);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--n) 0%,
    rgba(6,6,6,0.85) 25%,
    rgba(6,6,6,0.4) 60%,
    rgba(6,6,6,0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0 5rem;
}

.hero h1 {
  margin-bottom: 2.5rem;
  max-width: 900px;
}

.hero h1 span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--d);
  margin-bottom: 1.5rem;
  padding-left: 3rem;
  position: relative;
}

.hero h1 span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 1px;
  background: var(--d);
}

.hero-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
}

.hero-text p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--c);
  margin-bottom: 0;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--d);
  margin: 3rem 0;
}

.hero-cta {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--c2);
  border-bottom: 1px solid var(--g);
  padding-bottom: 0.3rem;
  transition: all 0.3s ease;
}

.hero-cta a:hover {
  color: var(--d);
  border-bottom-color: var(--d);
}

.hero-cta i {
  color: var(--d);
  font-size: 1rem;
}

.section {
  padding: 7rem 0;
  position: relative;
  background: var(--n);
}

.section-alt {
  background: var(--n2);
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 5rem;
  background: linear-gradient(to bottom, transparent, var(--g));
}

.section-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 0;
  align-items: stretch;
  min-height: 600px;
}

.section-grid.reverse {
  grid-template-columns: 45% 55%;
}

.section-visual {
  position: relative;
  overflow: hidden;
}

.section-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(35%) contrast(1.05);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-visual:hover img {
  filter: grayscale(10%) contrast(1.1);
  transform: scale(1.04);
}

.section-visual::after {
  content: '';
  position: absolute;
  inset: 1.5rem;
  border: 1px solid rgba(201,168,76,0.2);
  pointer-events: none;
  z-index: 2;
  transition: all 0.5s ease;
}

.section-visual:hover::after {
  border-color: rgba(201,168,76,0.4);
  inset: 1rem;
}

.section-visual-number {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  font-weight: 700;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  z-index: 3;
  pointer-events: none;
}

.section-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 5rem;
  position: relative;
}

.section-body::before {
  content: '';
  position: absolute;
  top: 4rem;
  left: 0;
  width: 3rem;
  height: 1px;
  background: var(--d);
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--d);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-body h2 {
  margin-bottom: 1rem;
}

.section-body .meta {
  font-size: 0.78rem;
  color: var(--c2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-body .meta i {
  color: var(--d);
  font-size: 0.9rem;
}

.section-body p {
  font-size: 0.92rem;
  line-height: 1.85;
}

.divider-line {
  height: 1px;
  background: var(--g);
  margin: 0;
  border: none;
  opacity: 0.5;
}

.footer-main {
  background: var(--n2);
  padding: 6rem 0 4rem;
  text-align: center;
  position: relative;
}

.footer-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 4rem;
  background: linear-gradient(to bottom, transparent, var(--d));
}

.footer-main h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 2rem;
}

.footer-main > .container > p {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.95rem;
  color: var(--c);
  line-height: 1.8;
}

.footer-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2.2rem;
  border: 1px solid var(--d);
  background: transparent;
  color: var(--d);
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.btn-gold:hover {
  background: var(--d);
  color: var(--n);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(201,168,76,0.2);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2.2rem;
  border: 1px solid var(--g);
  background: transparent;
  color: var(--c2);
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: all 0.4s ease;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--d);
  color: var(--d);
  transform: translateY(-2px);
}

.copyright {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--g);
}

.copyright p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--c2);
  margin-bottom: 0;
  text-align: center;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate {
  opacity: 0;
}

.animate.fade-in-up {
  animation: fadeInUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate.fade-in {
  animation: fadeIn 1.2s ease forwards;
}

.animate-delay-1 { animation-delay: 0.15s; }
.animate-delay-2 { animation-delay: 0.3s; }
.animate-delay-3 { animation-delay: 0.45s; }
.animate-delay-4 { animation-delay: 0.6s; }
.animate-delay-5 { animation-delay: 0.8s; }

@media (max-width: 991px) {
  .section-grid,
  .section-grid.reverse {
    grid-template-columns: 1fr;
  }

  .section-visual {
    min-height: 350px;
    order: -1;
  }

  .section-body {
    padding: 3rem 2rem;
  }

  .section-body::before {
    display: none;
  }

  .hero-text {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section {
    padding: 4rem 0;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .navbar-collapse {
    background: rgba(6,6,6,0.97);
    padding: 1rem;
    margin-top: 0.75rem;
    border: 1px solid var(--g);
  }
}

@media (max-width: 575px) {
  .hero {
    min-height: auto;
    padding-bottom: 3rem;
  }

  .hero-content {
    padding: 2rem 0 3rem;
  }

  .section-visual {
    min-height: 280px;
  }

  .section-body {
    padding: 2.5rem 1.5rem;
  }

  .footer-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-gold,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }
}
