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

:root {
  --navy: #1a2a3a;
  --charcoal: #2a3a4a;
  --cream: #f5f1e8;
  --ivory: #fafaf8;
  --gold: #b8956a;
  --accent-gray: #7a8a9a;
  --light-gray: #e8e6e0;
  --border: #d4cfc5;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Garamond', 'Book Antiqua', 'Palatino', serif;
  color: var(--charcoal);
  line-height: 1.9;
  background: var(--ivory);
  letter-spacing: 0.3px;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 40px; }

/* ============ NAVIGATION ============ */
.navbar {
  background: linear-gradient(to bottom, var(--navy), var(--charcoal));
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

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

.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
  font-family: 'Garamond', serif;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.logo:hover {
  letter-spacing: 4px;
  color: var(--cream);
}

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

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  color: var(--cream);
  transition: all 0.4s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 6px;
  letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
  color: var(--cream);
  padding: 140px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="dots" patternUnits="userSpaceOnUse" width="80" height="80"><circle cx="40" cy="40" r="2" fill="rgba(184,149,106,0.08)"/></pattern></defs><rect width="1000" height="1000" fill="url(%23dots)"/></svg>');
  opacity: 1;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 25px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.2;
  color: var(--gold);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 20px;
  opacity: 0.95;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

/* ============ DECORATIVE DIVIDER ============ */
.ornament {
  text-align: center;
  padding: 30px 0;
  color: var(--gold);
  font-size: 24px;
  letter-spacing: 3px;
  opacity: 0.6;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 16px 42px;
  border: 2px solid var(--gold);
  border-radius: 1px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(184, 149, 106, 0.2);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--navy);
  z-index: -1;
  transition: left 0.5s ease;
}

.btn:hover {
  color: var(--gold);
  box-shadow: 0 6px 16px rgba(184, 149, 106, 0.3);
  transform: translateY(-2px);
}

.btn:hover::before {
  left: 0;
}

/* ============ DISCLAIMER BAR ============ */
.disclaimer-bar {
  background: linear-gradient(to right, var(--cream), var(--ivory));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 40px;
  font-size: 13px;
  color: var(--accent-gray);
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.3px;
}

/* ============ CONTENT SECTIONS ============ */
.content {
  padding: 100px 40px;
  background: var(--ivory);
}

.content h1 {
  font-size: 52px;
  margin-bottom: 40px;
  color: var(--navy);
  font-weight: 400;
  letter-spacing: 1.5px;
  position: relative;
  padding-bottom: 30px;
}

.content h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--gold), transparent);
}

.content h2 {
  font-size: 36px;
  margin-top: 70px;
  margin-bottom: 30px;
  color: var(--navy);
  font-weight: 400;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border);
}

.content h2::before {
  content: '❦';
  display: block;
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 15px;
  letter-spacing: 3px;
}

.content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.content p {
  color: var(--charcoal);
  margin-bottom: 20px;
  line-height: 2;
  letter-spacing: 0.4px;
}

/* ============ IMAGE SECTIONS ============ */
.image-section {
  width: 100%;
  height: 350px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--light-gray) 100%);
  border: 1px solid var(--border);
  border-radius: 1px;
  margin: 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gray);
  font-size: 14px;
  font-style: italic;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.image-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="lines" patternUnits="userSpaceOnUse" width="10" height="10"><line x1="0" y1="0" x2="10" y2="10" stroke="rgba(184,149,106,0.04)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23lines)"/></svg>');
  animation: float 20s linear infinite;
}

@keyframes float {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.image-section:hover {
  box-shadow: inset 0 2px 8px rgba(184, 149, 106, 0.1);
}

/* ============ GRID & CARDS ============ */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.card {
  background: linear-gradient(135deg, var(--cream) 0%, var(--ivory) 100%);
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 1px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--gold);
}

.card:hover::before {
  transform: scaleX(1);
}

.card h3 {
  color: var(--navy);
  margin-bottom: 15px;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.card p {
  font-size: 14.5px;
  color: var(--accent-gray);
  line-height: 1.9;
}

/* ============ PRACTICE AREAS ============ */
.practice-area {
  margin-bottom: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.practice-area:last-child {
  border-bottom: none;
}

.practice-area::before {
  content: '◆';
  position: absolute;
  left: -25px;
  top: 0;
  color: var(--gold);
  font-size: 12px;
}

.practice-area h2 {
  color: var(--navy);
  font-size: 28px;
  margin-bottom: 18px;
  font-weight: 600;
  border-bottom: none;
  padding-bottom: 0;
}

.practice-area h2::before {
  display: none;
}

.practice-area p {
  color: var(--charcoal);
  line-height: 2;
  letter-spacing: 0.3px;
}

/* ============ FOOTER ============ */
footer {
  background: linear-gradient(to bottom, var(--charcoal), var(--navy));
  color: var(--cream);
  padding: 50px 40px;
  text-align: center;
  font-size: 13px;
  border-top: 3px solid var(--gold);
  letter-spacing: 0.5px;
}

footer a {
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

footer a:hover {
  border-bottom-color: var(--gold);
  color: var(--cream);
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  animation: fadeInUp 0.6s ease-out both;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .container { padding: 0 25px; }
  
  .navbar .container {
    flex-direction: column;
    gap: 20px;
    padding: 20px 25px;
  }
  
  .nav-links { gap: 25px; flex-wrap: wrap; justify-content: center; }
  
  .hero {
    padding: 100px 25px;
  }
  
  .hero h1 {
    font-size: 38px;
  }
  
  .content {
    padding: 60px 25px;
  }
  
  .content h1 {
    font-size: 38px;
  }
  
  .content h2 {
    font-size: 26px;
  }
  
  .grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .image-section {
    height: 250px;
  }
}
