:root {
  --off-white: #FAF9F6;
  --deep-ink: #111827;
  --ink-light: #1F2937;
  --saffron: #D97736;
  --saffron-hover: #C26429;
  --text-body: #374151;
  --text-muted: #6B7280;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--off-white);
  color: var(--deep-ink);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .serif {
  font-family: 'Playfair Display', serif;
  color: var(--deep-ink);
  font-weight: 500;
}

a {
  color: var(--deep-ink);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--saffron);
}

.btn-primary {
  background-color: var(--deep-ink);
  border-color: var(--deep-ink);
  color: var(--off-white);
  padding: 0.75rem 1.5rem;
  border-radius: 2px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--saffron);
  border-color: var(--saffron);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 119, 54, 0.2);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--deep-ink);
  color: var(--deep-ink);
  padding: 0.75rem 1.5rem;
  border-radius: 2px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: var(--deep-ink);
  color: var(--off-white);
}

/* Navbar */
.navbar {
  background-color: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.05);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--deep-ink) !important;
  letter-spacing: 0.5px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body) !important;
  margin: 0 0.5rem;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--saffron);
  transition: width 0.3s ease;
}

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

.nav-link:hover {
  color: var(--deep-ink) !important;
}

/* Hero Section */
.hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-img-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  mask-image: linear-gradient(to right, transparent, black 30%);
  -webkit-mask-image: linear-gradient(to right, transparent, black 30%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--saffron);
  margin-bottom: 2rem;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

.hero-text {
  font-size: 1.1rem;
  color: var(--text-body);
  max-width: 500px;
  margin-bottom: 2.5rem;
}

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

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.section-title-sm {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--saffron);
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  margin-bottom: 1rem;
  display: block;
}

.lead-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-body);
}

/* Cards */
.practice-card {
  background-color: white;
  padding: 3rem 2rem;
  border-radius: 4px;
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(17, 24, 39, 0.05);
}

.practice-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.08);
}

.practice-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 1rem;
}

.practice-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--saffron);
}

.practice-card p {
  color: var(--text-body);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Journal Preview */
.journal-item {
  border-bottom: 1px solid rgba(17, 24, 39, 0.1);
  padding: 2rem 0;
  transition: all 0.3s ease;
}

.journal-item:hover {
  padding-left: 1rem;
  border-color: var(--saffron);
}

.journal-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.journal-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.journal-title a {
  color: var(--deep-ink);
}

.journal-title a:hover {
  color: var(--saffron);
}

/* Footer */
footer {
  background-color: var(--ink-light);
  color: white;
  padding: 5rem 0 2rem;
}

footer h5 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

footer a {
  color: rgba(255, 255, 255, 0.7);
}

footer a:hover {
  color: var(--saffron);
}

.footer-essence {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.newsletter-form .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 2px;
}

.newsletter-form .form-control:focus {
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: none;
  border-color: var(--saffron);
}

.newsletter-form .btn {
  background-color: var(--saffron);
  color: white;
  border: none;
  border-radius: 2px;
}

.newsletter-form .btn:hover {
  background-color: var(--saffron-hover);
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .hero-img-container {
    width: 100%;
    opacity: 0.2;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .hero-title {
    font-size: 3rem;
  }
}
