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

:root {
  --navy: #1a2744;
  --navy-deep: #0f1a30;
  --gold: #b8965a;
  --gold-light: #d4af7a;
  --cream: #f8f5f0;
  --white: #ffffff;
  --gray-light: #f0ede8;
  --gray-mid: #d0ccc6;
  --gray-text: #6b6560;
  --text: #2a2420;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 15px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

p { margin-bottom: 1rem; color: var(--gray-text); }

a { color: var(--navy); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--navy-deep); color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.75); }
.section-dark h2, .section-dark h3 { color: var(--white); }

.gold-rule {
  width: 60px; height: 2px;
  background: var(--gold);
  margin: 1rem 0 1.5rem;
}
.gold-rule.centered { margin: 1rem auto 1.5rem; }

.text-center { text-align: center; }
.text-gold { color: var(--gold); }

.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}
.btn:hover { background: var(--gold); color: var(--white); }
.btn-solid { background: var(--gold); color: var(--white); }
.btn-solid:hover { background: var(--gold-light); color: var(--white); border-color: var(--gold-light); }
.btn-navy { border-color: var(--navy); color: var(--navy); }
.btn-navy:hover { background: var(--navy); color: var(--white); }
.btn-white { border-color: var(--white); color: var(--white); }
.btn-white:hover { background: var(--white); color: var(--navy); }

/* ── HEADER / NAV ── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26,39,68,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184,150,90,0.3);
  transition: all 0.3s;
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1300px; margin: 0 auto;
}

.logo { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
}
.logo-tagline {
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
}

nav { display: flex; align-items: center; gap: 0; }
nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.5rem 1rem;
  transition: color 0.2s;
  position: relative;
}
nav a::after {
  content: ''; position: absolute; bottom: 0; left: 1rem; right: 1rem;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.3s;
}
nav a:hover { color: var(--gold); }
nav a:hover::after { transform: scaleX(1); }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: var(--navy-deep);
  border-top: 2px solid var(--gold);
  min-width: 220px;
  opacity: 0; pointer-events: none;
  transform: translateY(-5px); transition: all 0.2s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav-dropdown-menu a {
  display: block; padding: 0.7rem 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.65rem;
}
.nav-cta {
  margin-left: 1rem;
  padding: 0.55rem 1.4rem !important;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
}
.nav-cta:hover { background: var(--gold); color: var(--white) !important; }
.nav-cta::after { display: none !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #243356 100%);
  position: relative; overflow: hidden;
  padding-top: 80px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b8965a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero::after {
  content: '';
  position: absolute; right: -100px; top: 50%; transform: translateY(-50%);
  width: 600px; height: 600px;
  border: 1px solid rgba(184,150,90,0.15);
  border-radius: 50%;
}

.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-eyebrow {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.hero h1 { color: var(--white); margin-bottom: 1rem; font-weight: 300; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 540px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.3); backdrop-filter: blur(5px);
  border-top: 1px solid rgba(184,150,90,0.2);
}
.hero-bar-inner {
  max-width: 1200px; margin: 0 auto; padding: 1rem 2rem;
  display: flex; gap: 3rem; align-items: center;
}
.hero-stat { color: rgba(255,255,255,0.85); font-size: 0.72rem; letter-spacing: 0.08em; }
.hero-stat strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--gold); }

/* ── PRACTICE AREAS GRID ── */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px;
  background: var(--gray-mid);
}
.practice-card {
  background: var(--white);
  padding: 2.5rem;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.practice-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--gold);
  transform: scaleY(0); transition: transform 0.3s;
}
.practice-card:hover { background: var(--cream); }
.practice-card:hover::before { transform: scaleY(1); }
.practice-card:hover { padding-left: 2.8rem; }
.practice-icon { font-size: 2rem; margin-bottom: 1rem; }
.practice-card h3 { margin-bottom: 0.5rem; font-size: 1.3rem; }
.practice-card p { font-size: 0.9rem; margin-bottom: 1rem; }
.practice-link { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }

/* ── WHY CHOOSE ── */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.why-list { list-style: none; }
.why-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--gray-mid);
}
.why-list li:last-child { border-bottom: none; }
.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300; color: var(--gold);
  line-height: 1; min-width: 2.5rem;
}
.why-text h4 { font-size: 1rem; font-weight: 600; font-family: 'Montserrat', sans-serif; margin-bottom: 0.3rem; }
.why-text p { font-size: 0.88rem; margin: 0; }

.why-visual {
  background: var(--navy);
  padding: 3rem;
  position: relative;
}
.why-visual::before {
  content: ''; position: absolute;
  top: -15px; left: -15px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold);
  z-index: -1;
}
.why-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 300; font-style: italic;
  color: var(--white); line-height: 1.5;
}
.why-quote-attr { margin-top: 1.5rem; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }

/* ── ATTORNEY CARDS ── */
.attorney-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.attorney-card {
  background: var(--cream);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.attorney-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.attorney-img {
  height: 280px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: rgba(184,150,90,0.4);
}
.attorney-info { padding: 1.5rem; }
.attorney-info h3 { font-size: 1.3rem; margin-bottom: 0.2rem; }
.attorney-title { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.attorney-info p { font-size: 0.88rem; }

/* ── TESTIMONIALS ── */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,150,90,0.2);
  padding: 2rem;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; line-height: 1;
  color: var(--gold); opacity: 0.4;
  position: absolute; top: 0.5rem; left: 1.5rem;
}
.testimonial-text { font-style: italic; font-size: 0.95rem; margin-bottom: 1.5rem; padding-top: 2rem; color: rgba(255,255,255,0.85); }
.testimonial-author { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 0.5rem; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--gold);
  padding: 4rem 0;
}
.cta-banner-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem;
}
.cta-banner h2 { color: var(--white); font-size: 2rem; }
.cta-banner p { color: rgba(255,255,255,0.85); }

/* ── CONTACT SECTION ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--gray-mid);
  background: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.contact-info-block { display: flex; flex-direction: column; gap: 2rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { font-size: 1.3rem; color: var(--gold); min-width: 2rem; }
.contact-text h4 { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.3rem; }
.contact-text p { margin: 0; font-size: 0.92rem; }
.contact-map {
  height: 200px; background: var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--gray-text);
  border: 1px solid var(--gray-mid);
  margin-top: 1.5rem;
}

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-mid); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; cursor: pointer;
  color: var(--navy);
}
.faq-question span { font-size: 1.2rem; color: var(--gold); transition: transform 0.3s; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding-bottom: 1.5rem; font-size: 0.93rem; }
.faq-item.open .faq-question span { transform: rotate(45deg); }
.faq-item.open .faq-answer { max-height: 400px; }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--cream);
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-mid);
}
.breadcrumb-inner { display: flex; gap: 0.5rem; align-items: center; font-size: 0.78rem; color: var(--gray-text); }
.breadcrumb-inner a { color: var(--navy); }
.breadcrumb-inner a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--gray-mid); }

/* ── PAGE HERO (interior) ── */
.page-hero {
  background: var(--navy);
  padding: 8rem 0 4rem;
  position: relative;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 600px; font-size: 1.05rem; }

/* ── CONTENT BLOCKS ── */
.content-block { max-width: 820px; }
.content-block h2 { color: var(--navy); margin: 2.5rem 0 0.5rem; }
.content-block h3 { color: var(--navy); margin: 2rem 0 0.5rem; font-size: 1.3rem; }
.content-block p { font-size: 0.95rem; }
.content-block ul { list-style: none; margin: 1rem 0 1.5rem; }
.content-block ul li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative; font-size: 0.93rem; color: var(--gray-text);
}
.content-block ul li::before {
  content: '→'; position: absolute; left: 0; color: var(--gold);
}

/* ── SIDEBAR LAYOUT ── */
.sidebar-layout { display: grid; grid-template-columns: 1fr 320px; gap: 4rem; }
.sidebar { display: flex; flex-direction: column; gap: 2rem; }
.sidebar-card {
  background: var(--cream);
  border-top: 3px solid var(--gold);
  padding: 1.5rem;
}
.sidebar-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 1rem;
}
.sidebar-nav { list-style: none; }
.sidebar-nav li { border-bottom: 1px solid var(--gray-mid); }
.sidebar-nav li a { display: block; padding: 0.7rem 0; font-size: 0.88rem; transition: all 0.2s; }
.sidebar-nav li a:hover { padding-left: 0.5rem; color: var(--gold); }
.sidebar-phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; color: var(--navy); font-weight: 600;
}

/* ── FOOTER ── */
footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(184,150,90,0.3);
}
.footer-main {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding: 4rem 0 3rem;
}
.footer-logo-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--white); margin-bottom: 0.3rem; }
.footer-logo-tagline { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-about { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-contact-line { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-bottom: 0.4rem; }
.footer-contact-line a { color: rgba(255,255,255,0.65); }
.footer-contact-line a:hover { color: var(--gold); }

.footer-col h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin: 0; }
.footer-disclaimer { font-size: 0.7rem; color: rgba(255,255,255,0.25); max-width: 800px; line-height: 1.5; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .sidebar-layout { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  nav { display: none; }
  .hamburger { display: flex; }
  .hero-bar-inner { flex-wrap: wrap; gap: 1rem; }
}
@media (max-width: 600px) {
  .footer-main { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
}
