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

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&family=Lato:wght@300;400;700&family=Nunito:wght@300;400;500;600&display=swap');

:root {
  --navy:    #1c3150;
  --navy-dk: #132440;
  --gold:    #b8893a;
  --gold-lt: #d4a84e;
  --cream:   #f8f5f0;
  --white:   #ffffff;
  --text:    #282828;
  --mid:     #5c5c5c;
  --light-border: #e2ddd6;
}

body {
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 400;
  background: var(--cream);
  color: var(--text);
  line-height: 1.75;
}

/* ── Navigation ── */
nav {
  background: var(--navy-dk);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.nav-brand {
  display: none;
}

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

.nav-links a {
  display: block;
  padding: 1.1rem 1.6rem;
  color: #b0b8c8;
  text-decoration: none;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
}

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

/* ── Hero ── */
.hero {
  position: relative;
  height: 440px;
  overflow: hidden;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(20,38,64,0.35) 0%, rgba(20,38,64,0.82) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: #fff;
}
.hero-overlay h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.hero-overlay .tagline {
  margin-top: 0.75rem;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #d4b96a;
  text-align: center;
  white-space: nowrap;
}
.hero-rule {
  display: none;
}

/* ── Page header (sub-pages) ── */
.page-header {
  background: var(--navy-dk);
  padding: 3.5rem 2rem 3rem;
  text-align: center;
  color: #fff;
}
.page-header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.03em;
}
.page-header .sub {
  margin-top: 0.5rem;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d4b96a;
}
.page-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 1.1rem auto 0;
}

/* ── Main ── */
main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
}

/* ── Intro ── */
.intro {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3.5rem;
  align-items: start;
  margin-bottom: 4.5rem;
}
.intro-photo img {
  width: 100%;
  border-radius: 3px;
  display: block;
  border: 2px solid var(--gold);
}
.intro-text .eyebrow {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.intro-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 1.1rem;
}
.intro-text p {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.97rem;
  color: var(--mid);
  margin-bottom: 0.85rem;
}
.intro-text a.text-link {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: color 0.18s;
}
.intro-text a.text-link:hover { color: var(--gold); }

.section-label {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  text-align: center;
}


/* ── Practice cards ── */
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 4.5rem;
}
.card {
  background: var(--white);
  border-top: 3px solid var(--gold);
  padding: 2rem;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.7rem;
}
.card h3 a { color: var(--navy); text-decoration: none; }
.card h3 a:hover { color: var(--gold); }
.card p {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.2rem;
}
.card a.card-link {
  margin-top: auto;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  align-self: flex-start;
  transition: color 0.18s;
}
.card a.card-link:hover { color: var(--gold); }

/* ── Intake form ── */
.form-section { max-width: 720px; margin-left: auto; margin-right: auto; }
.form-section h2 {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  text-align: center;
}
.form-section > p {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.97rem;
  color: var(--mid);
  text-align: center;
  max-width: 520px;
  margin: 0 auto 1.8rem;
}
.intake-form {
  background: var(--white);
  border-radius: 8px;
  padding: 2.4rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.2rem;
}
.form-group label {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 0.97rem;
  color: var(--text);
  background: #faf9f7;
  border: 1.5px solid #d8d2c8;
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  outline: none;
  transition: border-color 0.18s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group select { appearance: none; cursor: pointer; }
input[type="file"] {
  border: 1.5px dashed #c8c0b4;
  background: #f5f2eb;
  padding: 0.6rem;
  font-size: 0.88rem;
  border-radius: 8px;
  cursor: pointer;
}
.file-note {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.76rem;
  color: #aaa;
  margin-top: 0.35rem;
}
.btn-submit {
  display: block;
  margin: 1.6rem auto 0;
  background: var(--navy);
  color: #fff;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 2.8rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--navy-dk); }
.form-note {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.78rem;
  color: #aaa;
  margin-top: 1.2rem;
  line-height: 1.6;
  text-align: center;
}
.form-group .optional {
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: #b0b0b0;
  margin-left: 0.35rem;
  text-transform: none;
  letter-spacing: 0;
}
input.dob-input::placeholder { color: #b8b0a0; }
main .contact-box { margin-top: 6rem; }

/* ── Jurisdiction strip ── */
.juris {
  background: var(--white);
  border-top: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.6rem 2rem;
  margin-bottom: 4.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.juris .jlabel {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
}
.juris-tags { display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; }
.jtag {
  background: var(--navy);
  border: 1px solid var(--navy);
  color: #e8e0d4;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.86rem;
  padding: 0.25rem 0.9rem;
  border-radius: 3px;
  letter-spacing: 0.04em;
}

/* ── About page ── */
.about-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4.5rem;
}
.about-photo img {
  width: 100%;
  border-radius: 3px;
  border: 2px solid var(--gold);
  display: block;
}
.about-photo .caption {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.74rem;
  color: #999;
  margin-top: 0.5rem;
  text-align: center;
}
.about-text .eyebrow {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.about-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1.4rem;
  line-height: 1.3;
}
.about-text p {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.97rem;
  color: var(--mid);
  margin-bottom: 0.9rem;
  line-height: 1.75;
}
.about-text a { color: var(--navy); border-bottom: 1px solid var(--gold); text-decoration: none; }
.about-text a:hover { color: var(--gold); }
.pull-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--navy);
  border-left: 3px solid var(--gold);
  padding-left: 1.4rem;
  margin: 2rem 0;
  line-height: 1.6;
}
.about-bars-full {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--light-border);
  margin-bottom: 4rem;
}
.about-bars {
  margin-top: 2rem;
  padding-top: 1.8rem;
  text-align: center;
}
.about-bars h4 {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  text-align: center;
}
.bars-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}
.bar-tag {
  background: var(--navy);
  color: #e8e0d4;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.82rem;
  padding: 0.3rem 0.9rem;
  border-radius: 2px;
}
a.redfish-link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,137,58,0.4);
  transition: color 0.18s;
}
a.redfish-link:hover { color: var(--navy); }

/* ── Community ── */
.community {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4.5rem;
}
.community img {
  width: 100%;
  border-radius: 3px;
  border: 2px solid var(--gold);
  display: block;
}
.community-copy .eyebrow {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.community-copy h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.8rem;
}
.community-copy p {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--mid);
}

/* ── Photo strip ── */
.strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 4.5rem;
}
.strip img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}

/* ── Contact box ── */
.contact-box {
  background: var(--navy-dk);
  color: #fff;
  text-align: center;
  padding: 3.5rem 2rem;
}
.contact-box .eyebrow {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d4b96a;
  margin-bottom: 0.8rem;
}
.contact-box h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}
.contact-box p {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.95rem;
  color: #a0a8b8;
  margin-bottom: 1.5rem;
}

.contact-box .contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  align-items: center;
  margin-top: 0.2rem;
}
.contact-box .contact-links .divider {
  color: rgba(255,255,255,0.2);
  font-size: 0.78rem;
}
.contact-box a.page-link,
.contact-box a.email-link {
  color: #d4b96a;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(212,185,106,0.4);
  padding-bottom: 1px;
  transition: color 0.18s, border-color 0.18s;
}
.contact-box a.page-link:hover,
.contact-box a.email-link:hover { color: #fff; border-color: #fff; }

/* ── Practice page content ── */
.practice-wrap {
  max-width: 760px;
  margin-bottom: 4rem;
}
.practice-wrap h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.4;
}
.practice-wrap p {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.97rem;
  color: var(--mid);
  margin-bottom: 0.85rem;
}
.practice-wrap ul {
  margin: 0.5rem 0 1.5rem 1.3rem;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--mid);
}
.practice-wrap ul li { margin-bottom: 0.3rem; }
.practice-wrap .note {
  font-size: 0.88rem;
  color: var(--gold);
  font-style: italic;
}

/* ── Section divider ── */
hr.section-rule {
  border: none;
  border-top: 1px solid var(--light-border);
  margin: 3.5rem 0;
}

/* ── Mobile (iPhone ≤480px) ── */
@media (max-width: 480px) {
  /* Nav: even tabs with dividers */
  .nav-inner { padding: 0; }
  .nav-links { width: 100%; flex-wrap: nowrap; }
  .nav-links li { flex: 1; text-align: center; border-right: 1px solid rgba(255,255,255,0.15); }
  .nav-links li:last-child { border-right: none; }
  .nav-links a { padding: 0.85rem 0; font-size: 0.58rem; letter-spacing: 0.05em; display: block; white-space: nowrap; }

  /* Hero */
  .hero { height: 280px; }
  .hero-overlay h1 { font-size: 2rem; }
  .hero-overlay .tagline { white-space: normal; font-size: 0.68rem; letter-spacing: 0.1em; }

  /* Stack all 2-col grids */
  .intro { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-photo img { max-width: 220px; }
  .about-text h2 { font-size: 1.3rem; }
  .cards { grid-template-columns: 1fr; }
  .community { grid-template-columns: 1fr; gap: 1.5rem; }
  .strip { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .intake-form { padding: 1.4rem; }
  .contact-page { grid-template-columns: 1fr; }
  .page-header h1 { font-size: 1.8rem; }

  /* Contact box: hide dividers, stack links */
  .contact-box .contact-links { flex-direction: column; gap: 0.8rem; }
  .contact-box .contact-links .divider { display: none; }
}
