:root {
  --primary: #1a1a1a;
  --accent: #d4af37; /* Sophisticated Gold */
  --bg-dark: #0f1113;
  --bg-light: #f8f9fa;
  --text-main: #2d3436;
  --text-muted: #636e72;
  --text-inv: #ffffff;
  --border: #e0e0e0;
  --card-bg: #ffffff;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --radius: 4px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, .display-text {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: var(--spacing-md);
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  padding: 8px 20px;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 1;
  margin-bottom: var(--spacing-sm);
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 300;
  opacity: 0.9;
  letter-spacing: 4px;
}

/* Sections */
section {
  padding: var(--spacing-lg) var(--spacing-md);
  max-width: 1200px;
  margin: 0 auto;
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-inv);
  max-width: 100%;
}

.section-accent {
  background-color: var(--accent);
  color: var(--primary);
  max-width: 100%;
}

.grid {
  display: grid;
  gap: var(--spacing-md);
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

/* Summary Card */
.summary-box {
  background: white;
  padding: var(--spacing-md);
  border-left: 8px solid var(--accent);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.yield-badge {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.yield-label {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}

/* Typography Helpers */
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.serif { font-family: var(--font-display); }

/* Key Details List */
.details-list {
  list-style: none;
  padding: 0;
  margin: var(--spacing-md) 0;
}

.details-list li {
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.details-list li span:first-child {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Map/Location Styles */
.location-card {
  background: white;
  padding: var(--spacing-md);
  border-radius: var(--radius);
  height: 100%;
}

.placeholder-image {
  background: #eee;
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.placeholder-image.tall { aspect-ratio: 3/4; }

/* Contact Component */
.contact-card {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  background: var(--bg-dark);
  color: white;
  padding: var(--spacing-md);
}

.contact-avatar {
  width: 100px;
  height: 100px;
  background: #333;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Navigation for multi-page feel on one page */
.sticky-nav {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
}

.nav-link {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* Tables */
.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th {
  text-align: left;
  padding: 12px;
  border-bottom: 2px solid var(--accent);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.data-table td {
  padding: 12px;
  border-bottom: 1px solid var(--border);
}

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

.animate {
  animation: fadeInUp 0.8s ease forwards;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .hero-title { font-size: 3rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .sticky-nav { overflow-x: auto; justify-content: flex-start; padding: 15px var(--spacing-md); }
}
