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

/* ═══ VARIABLES ═══ */
:root {
  --teal: #1a7a6d;
  --teal-light: #2bb5a0;
  --gold: #c7923e;
  --gold-light: #e8b86d;
  --cream: #faf8f3;
  --dark: #0d1b2a;
  --primary-dark: #0a1e23;
  --text-muted: rgba(255, 255, 255, 0.6);
}

body {
  font-family: 'DM Sans', 'Inter', sans-serif;
  background-color: var(--dark);
  color: var(--cream);
  margin: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
  line-height: 1.6;
}

h1,
h2,
h3,
.brand-font {
  font-family: 'Playfair Display', serif;
}

/* ═══ NAVIGATION ═══ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .3);
}

.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 64px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: .05em;
  flex-shrink: 0;
}

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

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  height: 100%;
  margin: 0;
  padding: 0;
}

.nav-links li {
  height: 64px;
  display: flex;
  align-items: center;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: .8rem;
  color: rgba(250, 248, 243, .55);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 500;
  padding: 0 1.2rem;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  transition: color .3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.2rem;
  right: 1.2rem;
  height: 2px;
  background: var(--gold-light);
  transform: scaleX(0);
  transition: transform .35s ease;
}

.nav-links a:hover {
  color: var(--cream);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a.active {
  color: var(--gold-light);
}

.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  padding: .55rem 1.5rem;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  background: transparent;
  text-transform: uppercase;
  letter-spacing: .14em;
  cursor: pointer;
  transition: all .3s ease;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--dark);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 200;
  background: none;
  border: none;
  padding: 4px;
}

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

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

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

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

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(13, 27, 42, .97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease;
}

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

.mobile-overlay a {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--cream);
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all .4s ease;
}

.mobile-overlay.active a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-overlay a:nth-child(1) {
  transition-delay: .05s
}

.mobile-overlay a:nth-child(2) {
  transition-delay: .1s
}

.mobile-overlay a:nth-child(3) {
  transition-delay: .15s
}

.mobile-overlay a:nth-child(4) {
  transition-delay: .2s
}

.mobile-overlay a:nth-child(5) {
  transition-delay: .25s
}

.mobile-overlay a:nth-child(6) {
  transition-delay: .3s
}

.mobile-overlay a:nth-child(7) {
  transition-delay: .35s
}

/* ═══ HERO ═══ */
.home-hero {
  position: relative;
  height: calc(100vh - 64px);
  min-height: 600px;
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1.15) translateY(-1%);
  }
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13, 27, 42, .5) 0%, rgba(13, 27, 42, .75) 100%);
}

.home-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  padding: 0 2rem;
}

.home-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .4em;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .9s ease .3s forwards;
}

.home-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.06;
  margin-bottom: 1rem;
  color: var(--cream);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .9s ease .5s forwards;
}

.home-title em {
  font-style: italic;
  font-weight: 400;
  font-family: 'Cormorant Garamond', serif;
  color: var(--teal-light);
}

.home-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  font-weight: 300;
  color: rgba(250, 248, 243, .72);
  margin-bottom: 2.5rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .9s ease .7s forwards;
}

.home-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .9s ease .9s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-primary {
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  padding: .95rem 2.4rem;
  background: var(--teal);
  color: var(--cream);
  border: none;
  text-transform: uppercase;
  letter-spacing: .14em;
  cursor: pointer;
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--teal-light);
  transform: translateX(-101%);
  transition: transform .4s ease;
}

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

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-outline {
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  padding: .95rem 2.4rem;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(250, 248, 243, .3);
  text-transform: uppercase;
  letter-spacing: .14em;
  cursor: pointer;
  transition: all .4s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.home-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: 0;
  animation: fadeUp 1s ease 1.3s forwards;
}

.home-scroll span {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(250, 248, 243, .45);
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: .3;
    transform: scaleY(.6);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ═══ FEATURES CARDS ═══ */
.card-gradient {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.4s ease;
}

.card-gradient:hover {
  border-color: rgba(199, 146, 62, 0.5);
}

/* ═══ FOOTER ═══ */
footer {
  background-color: var(--primary-dark);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  .nav-inner {
    padding: 0 1.2rem;
  }

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

  .hamburger {
    display: flex;
  }
}