/* ── Ashworth & Cole Law — Professional Services Template 01 ── */
:root {
  --navy: #0E2238;
  --navy-dark: #081625;
  --gold: #C9A961;
  --gold-dark: #A8863F;
  --white: #ffffff;
  --offwhite: #FAF8F4;
  --border: #E4E0D6;
  --text: #26313F;
  --muted: #5B6773;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Source Sans 3', sans-serif; background: var(--white); color: var(--text); line-height: 1.7; }

h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--navy); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
h3 { font-size: 1.3rem; }
p { color: var(--muted); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-alt { background: var(--offwhite); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: 'Source Sans 3', sans-serif; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-dark);
  margin-bottom: 1.1rem;
}
.eyebrow::before, .eyebrow::after { content: ''; width: 24px; height: 1px; background: var(--gold-dark); display: inline-block; }

/* ── HEADER ── */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--navy); padding: 1.2rem 0; border-bottom: 1px solid rgba(201,169,97,0.25); }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--white); letter-spacing: 0.01em; }
.logo-text span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2.4rem; }
.nav-link { font-size: 0.86rem; font-weight: 600; letter-spacing: 0.03em; color: rgba(255,255,255,0.82); transition: color 0.2s; }
.nav-link:hover { color: var(--gold); }
.btn-nav {
  border: 1px solid var(--gold); color: var(--gold); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.04em; text-transform: uppercase; padding: 0.7rem 1.5rem; transition: all 0.2s;
}
.btn-nav:hover { background: var(--gold); color: var(--navy-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); }

.mobile-nav {
  display: none; position: fixed; top: 4.4rem; left: 1rem; right: 1rem; z-index: 99;
  background: var(--navy-dark); border: 1px solid rgba(201,169,97,0.3);
  padding: 1.6rem 2rem; flex-direction: column; gap: 1.2rem; box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1rem; font-weight: 600; color: var(--white); }

/* ── HERO ── */
.hero { position: relative; background: var(--navy); }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; align-items: center; min-height: 600px; }
.hero-text-wrap { padding: 4rem 2rem 4rem 0; }
.hero .eyebrow { color: var(--gold); }
.hero .eyebrow::before, .hero .eyebrow::after { background: var(--gold); }
.hero h1 { color: var(--white); margin-bottom: 1.4rem; }
.hero-text-wrap p.lead { color: rgba(255,255,255,0.72); font-size: 1.12rem; max-width: 480px; margin-bottom: 2.2rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.6rem; }
.btn-primary {
  background: var(--gold); color: var(--navy-dark); font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.03em; text-transform: uppercase; padding: 1rem 2.1rem; display: inline-block; transition: background 0.2s;
}
.btn-primary:hover { background: var(--white); }
.btn-outline-hero {
  border: 1px solid rgba(255,255,255,0.5); color: var(--white); font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.03em; text-transform: uppercase; padding: 1rem 2.1rem; display: inline-block; transition: all 0.2s;
}
.btn-outline-hero:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.hero-credentials { display: flex; gap: 2.2rem; flex-wrap: wrap; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,0.15); }
.hero-cred-item { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.65); letter-spacing: 0.02em; }
.hero-cred-item strong { display: block; color: var(--gold); font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; }

.hero-img-wrap { position: relative; height: 100%; min-height: 600px; }
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-frame { position: absolute; top: 24px; left: 24px; right: -24px; bottom: -24px; border: 1px solid var(--gold); z-index: -1; display: none; }

/* ── PRACTICE AREAS ── */
.practice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: 3rem; }
.practice-card { background: var(--white); border: 1px solid var(--border); padding: 2.4rem 2rem; transition: border-color 0.2s, box-shadow 0.2s; }
.practice-card:hover { border-color: var(--gold); box-shadow: 0 12px 30px rgba(14,34,56,0.08); }
.practice-icon { width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; background: var(--offwhite); border: 1px solid var(--border); margin-bottom: 1.4rem; }
.practice-icon svg { width: 22px; height: 22px; color: var(--gold-dark); }
.practice-card h3 { margin-bottom: 0.7rem; }
.practice-card p { font-size: 0.92rem; }
.practice-link { display: inline-block; margin-top: 1.1rem; font-size: 0.82rem; font-weight: 700; color: var(--navy); letter-spacing: 0.03em; text-transform: uppercase; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

/* ── ABOUT / ATTORNEYS ── */
.attorneys-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; margin-top: 3rem; }
.attorney-card { background: var(--white); }
.attorney-photo { aspect-ratio: 4/5; overflow: hidden; }
.attorney-photo img { width: 100%; height: 100%; object-fit: cover; }
.attorney-info { padding: 1.6rem 0 0; border-top: 2px solid var(--gold); margin-top: 0; }
.attorney-info { padding-top: 1.4rem; margin-top: 1px; }
.attorney-card { border-bottom: 1px solid transparent; }
.attorney-info h3 { margin-bottom: 0.2rem; }
.attorney-role { font-size: 0.8rem; font-weight: 700; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.7rem; }
.attorney-info p.bio { font-size: 0.88rem; }

/* ── STATS STRIP ── */
.stats-strip { background: var(--navy); padding: 3rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item .stat-num { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 700; color: var(--gold); }
.stat-item .stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.65); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.3rem; }

/* ── PROCESS ── */
.process-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; position: relative; }
.process-step { text-align: center; padding: 0 1rem; }
.process-num {
  width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold);
  font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.4rem;
}
.process-step h3 { margin-bottom: 0.7rem; }
.process-step p { font-size: 0.9rem; }

/* ── TESTIMONIALS ── */
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; margin-top: 3rem; }
.testimonial-card { background: var(--offwhite); border-left: 3px solid var(--gold); padding: 2.4rem; }
.testimonial-stars { color: var(--gold-dark); font-size: 0.95rem; margin-bottom: 1rem; letter-spacing: 0.05em; }
.testimonial-card p.quote { font-size: 1rem; color: var(--text); font-style: italic; margin-bottom: 1.4rem; }
.testimonial-author { font-size: 0.85rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.02em; }

/* ── FINAL CTA ── */
.final-cta { text-align: center; padding: 6rem 2rem; background: var(--navy); position: relative; }
.final-cta .eyebrow { color: var(--gold); justify-content: center; }
.final-cta .eyebrow::before, .final-cta .eyebrow::after { background: var(--gold); }
.final-cta h2 { color: var(--white); max-width: 640px; margin: 0 auto 1.2rem; }
.final-cta p { color: rgba(255,255,255,0.65); max-width: 480px; margin: 0 auto 2.2rem; }

/* ── FOOTER ── */
.site-footer { background: var(--navy-dark); padding: 3rem 2rem 2rem; }
.footer-inner { max-width: 1180px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo-text { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--white); }
.footer-logo-text span { color: var(--gold); }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { max-width: 1180px; margin: 1.5rem auto 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.footer-copy, .footer-credit { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-credit a { color: rgba(255,255,255,0.6); }
.footer-credit a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-img-wrap { min-height: 340px; order: -1; }
  .hero-text-wrap { padding: 3rem 2rem; }
  .practice-grid, .attorneys-grid, .process-row { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }
  .practice-grid, .attorneys-grid, .process-row { grid-template-columns: 1fr; }
  .hero-text-wrap { padding: 2.5rem 1.5rem; }
  .hero-credentials { gap: 1.5rem; }
}
