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

:root {
  --bg-primary: #120b08;
  --bg-secondary: #1a120e;
  --bg-glass: rgba(255, 255, 255, 0.04);
  
  --accent-primary: #c68642;
  --accent-secondary: #a97142;
  --accent-highlight: #f2d2a9;
  --accent-organic: #7a5c3a;
  
  --text-primary: #fdf6ee;
  --text-secondary: #e6d3c1;
  --text-muted: #c4a484;
  
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;
  
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 20px rgba(198, 134, 66, 0.15);
  
  --transition-slow: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-med: 0.3s ease-in-out;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

h1 { font-size: 4rem; line-height: 1.1; }
h2 { font-size: 3rem; line-height: 1.2; }
h3 { font-size: 2rem; line-height: 1.3; }

p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-weight: 300;
  font-size: 1.125rem;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

/* Layout */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 100px 0;
}

.section-bg {
  background-color: var(--bg-secondary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-med);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: var(--bg-primary);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(198, 134, 66, 0.3);
  background: linear-gradient(135deg, #d49553, var(--accent-primary));
}

.btn-outline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--accent-organic);
}

.btn-outline:hover {
  border-color: var(--accent-highlight);
  color: var(--accent-highlight);
  background: rgba(242, 210, 169, 0.05);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  background: rgba(18, 11, 8, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-med);
}

.header.scrolled {
  padding: 16px 0;
  background: rgba(18, 11, 8, 0.9);
  border-bottom: 1px solid var(--accent-organic);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-highlight);
  letter-spacing: 0.5px;
}

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

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

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

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

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 70% 50%, rgba(198, 134, 66, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  padding-right: 40px;
}

.hero-title {
  font-size: 4.5rem;
  color: var(--accent-highlight);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-visual img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transform: scale(1.05);
}

/* Cards & Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card {
  background: var(--bg-glass);
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition-med);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(198, 134, 66, 0.2);
  box-shadow: var(--shadow-soft), var(--shadow-glow);
}

.card-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.card-meta {
  color: var(--accent-primary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}

/* Editorial Story Section */
.editorial-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}

.editorial-text h2 {
  font-size: 3.5rem;
  color: var(--accent-highlight);
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(122, 92, 58, 0.2);
}

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

.footer-brand p {
  color: var(--text-muted);
  margin-top: 16px;
}

.footer-title {
  font-size: 1.125rem;
  color: var(--accent-highlight);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Forms */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.form-control {
  width: 100%;
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  transition: all var(--transition-med);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-primary);
  background: rgba(255,255,255,0.05);
}

/* Utilities */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }