:root {
  --color-bg: #1a0f0f;
  --color-surface: #f2ede4;
  --color-primary: #d4c5b3;
  --color-accent: #8b2635;
  --color-text: #f2ede4;
  --color-text-dark: #1a0f0f;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(26,15,15,0.9), transparent);
  padding: 1.5rem 0;
  transition: var(--transition);
}

header.scrolled {
  background: var(--color-bg);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(212, 197, 179, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container img {
  height: 50px;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.8;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--color-primary);
}

.cta-book {
  background: var(--color-primary);
  color: var(--color-text-dark);
  padding: 0.8rem 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cta-book:hover {
  background: var(--color-surface);
  transform: translateY(-2px);
}

/* Hero Sections */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: -1;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.hero-content h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: 1rem;
  animation: fadeInUp 1.2s ease forwards;
}

.hero-content p {
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-primary);
  animation: fadeInUp 1.2s ease 0.3s forwards;
  opacity: 0;
}

/* Sections */
section {
  padding: 8rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-title .subtitle {
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.9rem;
}

/* Grid Layouts */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.image-frame {
  position: relative;
  padding: 1rem;
  border: 1px solid var(--color-primary);
}

.image-frame img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.content-block h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.content-block p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212, 197, 179, 0.1);
  padding: 3rem;
  transition: var(--transition);
  text-align: center;
}

.card:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--color-primary);
  transform: translateY(-10px);
}

.card h3 {
  margin-bottom: 1rem;
  color: var(--color-primary);
}

/* Footer */
footer {
  background: #0d0808;
  padding: 6rem 0 2rem;
  border-top: 1px solid rgba(212, 197, 179, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.footer-col h4 {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-primary);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .split-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  section {
    padding: 4rem 0;
  }
  .hero-content h1 {
    font-size: 3.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}