:root {
  --bg-color: #11100F;
  --surface-color: #1A1816;
  --text-primary: #EAE6DE;
  --text-secondary: #9F9A90;
  --accent-color: #DE7B35;
  --accent-hover: #F08E48;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, .logo, .footer-logo {
  font-family: var(--font-heading);
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 8rem 0;
}

.text-center {
  text-align: center;
}

/* Typography */
.section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #FFF;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 4rem auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 4px;
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--accent-color);
  color: #111;
  border: 1px solid var(--accent-color);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(222, 123, 53, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.2);
}

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

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background-color: rgba(17, 16, 15, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  color: #FFF;
  letter-spacing: 1px;
}

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

.nav-links a {
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-color);
  transition: var(--transition);
}

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

.nav-links a:hover::after {
  width: 100%;
}

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 10s ease-out;
}

.hero:hover .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(17,16,15,0.3) 0%, rgba(17,16,15,0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.hero-title {
  font-size: 5.5rem;
  font-style: italic;
  color: #FFF;
  margin-bottom: 1.5rem;
  text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #EAE6DE;
  margin-bottom: 2.5rem;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

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

.text-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.rounded-image {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.shadow-lg {
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Highlights Section */
.highlights-section {
  background-color: var(--surface-color);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  background-color: var(--bg-color);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-10px);
  border-color: rgba(222, 123, 53, 0.3);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.card-img {
  height: 250px;
  background-size: cover;
  background-position: center;
  transition: var(--transition);
}

.card:hover .card-img {
  transform: scale(1.05);
}

.card-body {
  padding: 2rem;
}

.card-body h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #FFF;
}

.card-body p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Contact Section */
.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-item .icon {
  font-size: 1.5rem;
  background: var(--surface-color);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--accent-color);
}

.contact-item strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  color: #FFF;
  font-family: var(--font-heading);
}

.contact-item p {
  margin: 0;
  font-size: 1rem;
}

.mock-map {
  width: 100%;
  height: 400px;
  background-image: linear-gradient(to bottom right, #2a2824, #1a1816);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
  color: var(--accent-color);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
}

/* Footer */
.footer {
  background-color: var(--surface-color);
  padding: 4rem 0 2rem 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
  font-size: 2rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.footer p {
  color: #555;
  font-size: 0.9rem;
}

/* Animations */
.fade-in-up, .fade-in-left, .fade-in-right {
  opacity: 0;
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-up {
  transform: translateY(40px);
}
.fade-in-left {
  transform: translateX(-40px);
}
.fade-in-right {
  transform: translateX(40px);
}

.appear {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Responsive */
@media (max-width: 992px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .nav-links {
    display: none; /* simple mobile approach for now */
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 5rem 0;
  }
}
