@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;600&family=Space+Grotesk:wght@300;500;700&display=swap');

:root {
  --primary: #d4a373;
  /* Natural Cedar Gold */
  --secondary: #2f3e46;
  /* Rain Cloud Shadow */
  --accent: #fefae0;
  /* Off-white */
  --bg-dark: #121415;
  --text: #e9edc9;
  --text-muted: #cad2c5;
  --organic-radius: 60px 20px 60px 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark);
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  overflow-x: hidden;
  line-height: 1.7;
}

h1,
h2,
h3 {
  font-family: 'Crimson Pro', serif;
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
}

/* --- Navigation --- */

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.4s ease;
  backdrop-filter: blur(15px);
  background: rgba(18, 20, 21, 0.7);
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo span {
  font-family: 'Crimson Pro', serif;
  font-weight: 400;
  color: var(--text);
  font-style: italic;
  margin-left: 5px;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #fff;
}

.call-btn {
  text-decoration: none;
  border: 1px solid var(--primary);
  padding: 10px 20px;
  color: var(--primary);
  border-radius: 100px;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.call-btn:hover {
  background: var(--primary);
  color: var(--bg-dark);
}

/* --- Hero --- */

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 8%;
  gap: 5%;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(212, 163, 115, 0.1);
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.hero h1 {
  font-size: clamp(3.5rem, 8vw, 6rem);
  margin-bottom: 25px;
}

.hero p {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-image-container {
  flex: 1;
  height: 80vh;
  border-radius: var(--organic-radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Buttons --- */

.btn {
  display: inline-block;
  padding: 18px 45px;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  cursor: pointer;
}

.btn.primary {
  background: var(--primary);
  color: var(--bg-dark);
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.small-note {
  font-size: 0.85rem;
  color: #666;
  margin-top: 20px;
}

/* --- Generic Section --- */

section {
  padding: 120px 8%;
}

.split-section {
  display: flex;
  align-items: center;
  gap: 10%;
}

.split-section h2 {
  font-size: 3.5rem;
  margin-bottom: 30px;
}

.check-list {
  list-style: none;
  margin-top: 40px;
}

.check-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  font-weight: 500;
}

.check-list li::before {
  content: '→';
  color: var(--primary);
  font-weight: 800;
}

.visual .rounded {
  width: 100%;
  border-radius: var(--organic-radius);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* --- Process Grid --- */

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
  margin-top: 80px;
}

.process-item {
  position: relative;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.process-item .num {
  font-family: 'Crimson Pro', serif;
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 20px;
}

/* --- Roots Section (Personalized Location) --- */

.roots-section {
  padding-bottom: 120px;
}

.roots-card {
  display: flex;
  background: #1a1d1e;
  border-radius: var(--organic-radius);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.roots-content {
  flex: 1;
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.roots-content h2 {
  font-size: 3.5rem;
  margin-bottom: 25px;
}

.roots-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.8;
}

.address-block {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(212, 163, 115, 0.05);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(212, 163, 115, 0.1);
  width: fit-content;
}

.address-block .icon {
  font-size: 2.5rem;
}

.address-block .text strong {
  color: var(--primary);
  font-size: 1.3rem;
  display: block;
  margin-bottom: 5px;
}

.roots-map-placeholder {
  flex: 1;
  background: #000;
  position: relative;
  min-height: 400px;
}

.roots-map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity 0.5s ease;
}

/* --- Quote Section --- */

.quote-cta {
  background: var(--primary);
  color: var(--bg-dark);
  text-align: center;
  border-radius: 50px;
  margin: 0 5% 100px;
  padding: 100px 5%;
}

.quote-cta h2 {
  color: var(--bg-dark);
  font-size: 3.5rem;
  margin-bottom: 30px;
}

.quote-cta .btn.large {
  background: var(--bg-dark);
  color: #fff;
  font-size: 1.8rem;
  margin: 30px 0;
  padding: 25px 60px;
}

/* --- Footer --- */

footer {
  background: #000;
  padding: 80px 8% 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 100px;
  margin-bottom: 60px;
}

.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  font-size: 0.8rem;
  color: #555;
}

/* --- Animations & Utilities --- */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    height: auto;
    padding-top: 150px;
  }

  .hero-image-container {
    width: 100%;
    height: 50vh;
    margin-top: 50px;
  }

  .split-section {
    flex-direction: column;
    text-align: center;
  }

  .roots-card {
    flex-direction: column;
  }

  .roots-content {
    padding: 60px 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 3.2rem;
  }

  .nav-links {
    display: none;
  }

  section {
    padding: 80px 5%;
  }

  .roots-content h2 {
    font-size: 2.5rem;
  }

  .address-block {
    width: 100%;
  }
}