/* ============ MELSHELL OYSTERS -- shared stylesheet ============ */

:root {
  --paper: #F4ECDE;
  --paper-soft: #ECE2CC;
  --paper-deep: #DBD1B9;
  --shell: #E6DBC1;
  --rule: #C9BDA0;
  --rule-soft: #DCD0B0;
  --ink: #0A1626;
  --navy: #142849;
  --navy-soft: #1F3A5E;
  --navy-deep: #091428;
  --gold: #C4A05F;
  --gold-light: #DDC183;
  --gold-dark: #8C6F3B;
  --sage: #5C6B4E;
  --body: #2A2620;
  --muted: #6C6450;
  --muted-soft: #948A70;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--body);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
html, body {
  max-width: 100%;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============ NAV ============ */
.nav {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244,236,222,0.96);
  border-bottom: 1px solid var(--rule);
  box-shadow: 0 8px 26px rgba(9,20,40,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.logo .firm {
  font-family: Georgia, serif;
  font-size: 22pt;
  color: var(--navy);
  letter-spacing: 0.3px;
  line-height: 1;
}
.logo .firm em {
  font-style: italic;
  color: var(--gold-dark);
}
.logo .sub {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12pt;
  color: var(--gold-dark);
  line-height: 1;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-family: -apple-system, sans-serif;
  font-size: 10.5pt;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--body);
  font-weight: 600;
  flex-wrap: nowrap;
}
.nav-links a {
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-dark); }
.nav-links a.active { color: var(--navy); border-bottom: 2px solid var(--gold); padding-bottom: 4px; }
.nav-cta {
  background: var(--navy);
  color: var(--paper) !important;
  padding: 12px 22px;
  font-family: -apple-system, sans-serif;
  font-size: 10pt;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--navy-soft); }

/* ============ MOBILE MENU (CSS-only hamburger) ============ */
.menu-toggle { display: none; }
.hamburger { display: none; }
.nav-cta-mobile { display: none; }

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--paper);
  min-height: 70vh;
  overflow: hidden;
}
.hero.hero-tall { min-height: 80vh; }
.hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,20,40,0.45) 0%, rgba(9,20,40,0.7) 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 120px 32px 90px;
}
.hero-eyebrow {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14pt;
  color: var(--gold-light);
  margin-bottom: 26px;
  letter-spacing: 0.3px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: "\2014";
  color: var(--gold);
  margin: 0 12px;
  font-style: normal;
}
.hero h1 {
  font-family: Georgia, serif;
  font-size: 64pt;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -2px;
  color: var(--paper);
  margin-bottom: 30px;
  max-width: 1020px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-lead {
  font-family: Georgia, serif;
  font-size: 18pt;
  line-height: 1.55;
  color: rgba(244,236,222,0.92);
  max-width: 720px;
  margin-bottom: 42px;
}
.hero-lead em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink) !important;
  padding: 16px 30px;
  font-family: -apple-system, sans-serif;
  font-size: 11pt;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-ghost {
  color: var(--paper) !important;
  padding: 15px 28px;
  font-family: -apple-system, sans-serif;
  font-size: 11pt;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid rgba(244,236,222,0.55);
  transition: all 0.2s;
}
.btn-ghost:hover {
  background: var(--paper);
  color: var(--ink) !important;
  border-color: var(--paper);
}

/* ============ HERO compact (subpages) ============ */
.hero-sub {
  background: var(--navy);
  color: var(--paper);
  padding: 80px 32px 70px;
  position: relative;
  overflow: hidden;
}
.hero-sub .hero-inner { padding: 0 0 0 0; }
.hero-sub h1 { font-size: 50pt; }
.hero-sub.hero-photo-bg { padding: 0; }
.hero-sub.hero-photo-bg .hero-inner { padding: 90px 32px 80px; }

/* ============ SECTIONS ============ */
section { padding: 100px 32px; }
section.soft { background: var(--paper-soft); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
section.shell { background: var(--shell); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
section.deep { background: var(--navy); color: var(--paper); }
.section-inner { max-width: 1240px; margin: 0 auto; }
.section-eyebrow {
  font-family: -apple-system, sans-serif;
  font-size: 11pt;
  letter-spacing: 3px;
  color: var(--gold-dark);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}
section.deep .section-eyebrow { color: var(--gold-light); }
.section-head {
  margin-bottom: 60px;
  max-width: 820px;
}
.section-head h2 {
  font-family: Georgia, serif;
  font-size: 44pt;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 22px;
}
.section-head h2 em {
  font-style: italic;
  color: var(--gold-dark);
}
section.deep .section-head h2 { color: var(--paper); }
section.deep .section-head h2 em { color: var(--gold-light); }
.section-head .lede {
  font-family: Georgia, serif;
  font-size: 17pt;
  font-style: italic;
  color: var(--muted);
  line-height: 1.55;
  max-width: 720px;
}
section.deep .section-head .lede { color: rgba(244,236,222,0.78); }

/* ============ PROSE ============ */
.prose p {
  font-family: Georgia, serif;
  font-size: 15.5pt;
  line-height: 1.85;
  color: var(--body);
  margin-bottom: 22px;
}
.prose p em {
  font-style: italic;
  color: var(--gold-dark);
}
.prose p strong { color: var(--navy); font-weight: 600; }
.prose .dropcap::first-letter {
  font-family: Georgia, serif;
  font-size: 76px;
  float: left;
  line-height: 0.9;
  padding: 8px 16px 0 0;
  color: var(--gold-dark);
}
section.deep .prose p { color: rgba(244,236,222,0.86); }
section.deep .prose p strong { color: var(--paper); }
section.deep .prose p em { color: var(--gold-light); }

/* ============ MEDIA CARDS ============ */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cards-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card {
  background: var(--paper);
  border: 1px solid var(--rule);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card-photo {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
  position: relative;
}
.card-photo-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,20,40,0.1) 0%, rgba(9,20,40,0.18) 45%, rgba(9,20,40,0.48) 100%);
  pointer-events: none;
}
.card-photo.tall { aspect-ratio: 3/4; }
.photo-stat-panel {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  min-width: 190px;
  padding: 14px 18px;
  background: rgba(244,236,222,0.9);
  border-left: 3px solid var(--gold);
  box-shadow: 0 10px 28px rgba(9,20,40,0.2);
}
.photo-stat-panel div {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(140,111,59,0.22);
}
.photo-stat-panel div:last-child { border-bottom: none; }
.photo-stat-panel strong {
  font-family: Georgia, serif;
  font-size: 16pt;
  line-height: 1;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-dark);
}
.photo-stat-panel span {
  font-family: -apple-system, sans-serif;
  font-size: 9pt;
  line-height: 1;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy);
}
.card-photo .corner {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(9,20,40,0.7);
  color: var(--paper);
  padding: 5px 11px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 11pt;
}
.card-body {
  padding: 26px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-body h3 {
  font-family: Georgia, serif;
  font-size: 22pt;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.18;
  letter-spacing: -0.3px;
}
.card-body h3 em {
  font-style: italic;
  color: var(--gold-dark);
}
.card-body p {
  font-family: Georgia, serif;
  font-size: 14.5pt;
  line-height: 1.7;
  color: var(--body);
  margin-bottom: 18px;
  flex: 1;
}
.card-link {
  font-family: -apple-system, sans-serif;
  font-size: 10pt;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  align-self: flex-start;
}
.card-link:hover { color: var(--navy); border-bottom-color: var(--navy); }

/* ============ SPOTLIGHT ============ */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.spotlight.reverse { direction: rtl; }
.spotlight.reverse > * { direction: ltr; }
.spotlight-photo {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
}
.spotlight-photo.face-safe-top {
  background-position: center top;
}
.support-photo {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--rule);
}
.support-photo.face-safe-top {
  background-position: center top;
}
.spotlight-content {
  background: var(--paper);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.spotlight-content.dark {
  background: var(--navy);
  color: var(--paper);
}
.spotlight-content.dark .section-eyebrow { color: var(--gold-light); }
.spotlight-content h2 {
  font-family: Georgia, serif;
  font-size: 36pt;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.7px;
  color: var(--navy);
  margin-bottom: 22px;
}
.spotlight-content h2 em { font-style: italic; color: var(--gold-dark); }
.spotlight-content.dark h2 { color: var(--paper); }
.spotlight-content.dark h2 em { color: var(--gold-light); }
.spotlight-content p {
  font-family: Georgia, serif;
  font-size: 15pt;
  line-height: 1.75;
  color: var(--body);
  margin-bottom: 18px;
}
.spotlight-content.dark p { color: rgba(244,236,222,0.84); }
.spotlight-content .quote {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 18pt;
  color: var(--gold-dark);
  line-height: 1.55;
  padding-left: 22px;
  border-left: 2px solid var(--gold);
  margin: 8px 0 24px;
}
.spotlight-content.dark .quote {
  color: var(--gold-light);
  border-left-color: var(--gold);
}
.spotlight-content .actions {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.spotlight-content .actions .btn-primary { padding: 13px 24px; font-size: 10pt; }
.spotlight-content.dark .btn-ghost { color: var(--paper) !important; border-color: var(--paper); }

/* ============ AWARDS STRIP ============ */
.awards-strip {
  background: var(--shell);
  padding: 56px 32px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.awards-inner {
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}
.awards-inner .label {
  font-family: -apple-system, sans-serif;
  font-size: 10pt;
  letter-spacing: 3px;
  color: var(--gold-dark);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 28px;
}
.awards-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px 56px;
}
.awards-row img {
  height: 88px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(10,22,38,0.16));
}

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonials-grid.two {
  grid-template-columns: 1fr 1fr;
}
.testimonial {
  background: var(--paper);
  padding: 32px 32px 30px;
  border-top: 4px solid var(--gold);
}
.testimonial.dark {
  background: rgba(244,236,222,0.06);
  border-top: 1px solid var(--gold);
}
.testimonial .stars {
  color: var(--gold);
  font-size: 14pt;
  letter-spacing: 4px;
  margin-bottom: 14px;
}
.testimonial p {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14.5pt;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 18px;
}
.testimonial.dark p { color: var(--paper); }
.testimonial .who {
  font-family: -apple-system, sans-serif;
  font-size: 10pt;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.testimonial .who .name { color: var(--navy); }
.testimonial.dark .who { color: rgba(244,236,222,0.6); }
.testimonial.dark .who .name { color: var(--gold-light); }
.testimonial .where {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12pt;
  color: var(--gold-dark);
  margin-top: 4px;
}

/* ============ LARGE QUOTE BLOCK ============ */
.big-quote {
  background: var(--navy);
  color: var(--paper);
  padding: 90px 32px;
}
.big-quote .inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.big-quote .quote {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 32pt;
  line-height: 1.35;
  color: var(--paper);
  letter-spacing: -0.3px;
  margin-bottom: 30px;
}
.big-quote .quote::before {
  content: "\201C";
  color: var(--gold);
  font-size: 44pt;
  vertical-align: -10px;
  margin-right: 6px;
}
.big-quote .quote::after {
  content: "\201D";
  color: var(--gold);
  font-size: 44pt;
  vertical-align: -10px;
  margin-left: 4px;
}
.big-quote .attrib {
  font-family: -apple-system, sans-serif;
  font-size: 11pt;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
}
.big-quote .attrib .name { color: var(--paper); }
.big-quote .source {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 13pt;
  color: var(--gold-light);
  margin-top: 6px;
}

/* ============ MASONRY GALLERY ============ */
.masonry {
  columns: 3;
  column-gap: 16px;
}
.masonry img {
  width: 100%;
  margin-bottom: 16px;
  break-inside: avoid;
  border: 1px solid var(--rule);
}

/* ============ FACTS / STATS ============ */
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.fact {
  padding: 30px 28px;
  border-right: 1px solid var(--rule);
  text-align: center;
}
.fact:last-child { border-right: none; }
.fact .num {
  font-family: Georgia, serif;
  font-size: 34pt;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 10px;
}
.fact .num em {
  font-style: italic;
  color: var(--gold-dark);
}
.fact .label {
  font-family: -apple-system, sans-serif;
  font-size: 10pt;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.fact .label small {
  display: block;
  font-family: Georgia, serif;
  font-size: 11pt;
  font-style: italic;
  color: var(--muted-soft);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  margin-top: 6px;
}

/* ============ MENU ============ */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 56px;
}
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding-bottom: 16px;
  border-bottom: 1px dotted var(--rule);
  align-items: baseline;
}
.menu-item h4 {
  font-family: Georgia, serif;
  font-size: 18pt;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.2px;
  margin-bottom: 4px;
}
.menu-item h4 em { font-style: italic; color: var(--gold-dark); }
.menu-item p {
  font-family: Georgia, serif;
  font-size: 13.5pt;
  color: var(--muted);
  line-height: 1.55;
  font-style: italic;
}
.menu-item .price {
  font-family: Georgia, serif;
  font-size: 19pt;
  color: var(--navy);
  white-space: nowrap;
}
.menu-item .price em { font-style: italic; color: var(--gold-dark); }

/* ============ FAMILY BAND ============ */
.family-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 20px;
}
.family-member {
  text-align: center;
}
.family-member .portrait {
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
  border-radius: 50%;
  margin-bottom: 14px;
  border: 3px solid var(--gold);
}
.family-member .name {
  font-family: Georgia, serif;
  font-size: 17pt;
  color: var(--navy);
  letter-spacing: -0.2px;
  margin-bottom: 2px;
  line-height: 1.2;
}
.family-member .name em {
  font-style: italic;
  color: var(--gold-dark);
}
.family-member .role {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 12pt;
  color: var(--gold-dark);
  line-height: 1.4;
}

/* ============ CONTACT BAND ============ */
.contact-band {
  background: var(--navy);
  color: var(--paper);
  padding: 90px 32px;
}
.contact-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.contact-band h2 {
  font-family: Georgia, serif;
  font-size: 42pt;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.8px;
  color: var(--paper);
  margin-bottom: 22px;
}
.contact-band h2 em { font-style: italic; color: var(--gold-light); }
.contact-band > .contact-inner > div > p {
  font-family: Georgia, serif;
  font-size: 16pt;
  line-height: 1.7;
  color: rgba(244,236,222,0.84);
  margin-bottom: 32px;
}
.contact-info {
  background: rgba(244,236,222,0.06);
  padding: 32px 36px;
  border: 1px solid rgba(196,160,95,0.3);
}
.contact-row {
  padding: 14px 0;
  border-bottom: 1px solid rgba(196,160,95,0.22);
  display: flex;
  gap: 22px;
  align-items: baseline;
}
.contact-row:first-child { padding-top: 0; }
.contact-row:last-child { border-bottom: none; padding-bottom: 0; }
.contact-row .l {
  font-family: -apple-system, sans-serif;
  font-size: 10pt;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  width: 92px;
  flex-shrink: 0;
}
.contact-row .v {
  font-family: Georgia, serif;
  font-size: 15.5pt;
  color: var(--paper);
  line-height: 1.45;
}
.contact-row .v a {
  color: var(--paper);
  border-bottom: 1px solid rgba(196,160,95,0.5);
}

/* ============ FOOTER ============ */
footer {
  background: var(--navy-deep);
  color: rgba(244,236,222,0.7);
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 32px 30px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
footer h4 {
  font-family: -apple-system, sans-serif;
  font-size: 10pt;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 18px;
}
footer p, footer a {
  font-family: Georgia, serif;
  font-size: 13.5pt;
  line-height: 1.85;
  color: rgba(244,236,222,0.7);
}
footer a:hover { color: var(--paper); }
.footer-logo {
  font-family: Georgia, serif;
  font-size: 26pt;
  color: var(--paper);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
  line-height: 1.1;
}
.footer-logo em {
  font-style: italic;
  color: var(--gold);
}
.footer-tagline {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 13pt;
  color: var(--gold-light);
  margin-bottom: 22px;
}
.footer-bottom {
  border-top: 1px solid rgba(196,160,95,0.18);
  padding: 22px 32px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 11pt;
  color: rgba(244,236,222,0.45);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  max-width: 1240px;
  margin: 0 auto;
}

/* ============ NEWSLETTER STRIP ============ */
.news-strip {
  background: var(--paper-deep);
  padding: 48px 32px;
  text-align: center;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.news-strip h3 {
  font-family: Georgia, serif;
  font-size: 28pt;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.4px;
}
.news-strip h3 em { font-style: italic; color: var(--gold-dark); }
.news-strip p {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 15pt;
  color: var(--muted);
  margin-bottom: 24px;
}
.news-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  max-width: 540px;
  margin: 0 auto;
}
.news-form input {
  flex: 1;
  padding: 14px 18px;
  font-family: Georgia, serif;
  font-size: 14pt;
  background: var(--paper);
  border: 1px solid var(--rule);
  color: var(--body);
  outline: none;
}
.news-form input:focus { border-color: var(--gold-dark); }
.news-form button {
  background: var(--navy);
  color: var(--paper);
  padding: 14px 26px;
  font-family: -apple-system, sans-serif;
  font-size: 10pt;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  cursor: pointer;
}
.news-form button:hover { background: var(--navy-soft); }

/* ============ RESPONSIVE ============ */
@media (max-width: 920px) {
  .nav {
    top: env(safe-area-inset-top, 0);
  }
  .nav-inner {
    flex-wrap: wrap;
    gap: 0;
    padding: 12px 22px;
    align-items: center;
  }
  .logo { flex: 1; }

  /* Hide the desktop CTA, surface mobile equivalent inside the drop menu */
  .nav-cta { display: none; }

  /* Show the hamburger */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    padding: 0;
    background: transparent;
    border: none;
  }
  .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--navy);
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
  }

  /* Drop menu: hidden by default, full-width when checked */
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding-top: 10px;
    margin-top: 12px;
    border-top: 1px solid var(--rule);
    font-size: 11pt;
    letter-spacing: 1.2px;
  }
  .nav-links a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--rule);
    white-space: nowrap;
  }
  .nav-links a.active {
    border-bottom-color: var(--rule);
    padding-bottom: 14px;
  }
  .nav-links a:last-child { border-bottom: none; }

  /* Mobile CTA inside the drop menu */
  .nav-cta-mobile {
    display: block;
    background: var(--navy);
    color: var(--paper) !important;
    padding: 14px 18px;
    text-align: center;
    margin-top: 14px;
    font-family: -apple-system, sans-serif;
    font-size: 10pt;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: none !important;
    white-space: nowrap;
  }

  /* Open state */
  .menu-toggle:checked ~ .nav-links { display: flex; }
  .menu-toggle:checked ~ .hamburger span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .menu-toggle:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
  .menu-toggle:checked ~ .hamburger span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    display: flex;
    align-items: stretch;
  }
  .hero.hero-tall { min-height: auto; }
  .hero-photo {
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
  }
  .hero-photo::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: min(48vw, 300px);
    bottom: 0;
    background: var(--navy);
  }
  .hero-photo::after {
    background: linear-gradient(180deg, rgba(9,20,40,0.1) 0%, rgba(9,20,40,0.68) min(48vw, 300px), rgba(9,20,40,0.96) 100%);
  }
  .hero-inner {
    width: 100%;
    padding: min(38vw, 235px) 22px 38px;
  }
  .hero.hero-tall {
    min-height: min(760px, calc(100svh - 0px));
    display: block;
  }
  .hero.hero-tall .hero-photo {
    background-size: auto 132% !important;
    background-position: 50% bottom !important;
    background-repeat: no-repeat !important;
  }
  .hero.hero-tall .hero-photo::before {
    content: none !important;
    display: none !important;
  }
  .hero.hero-tall .hero-photo::after {
    background: linear-gradient(180deg, rgba(9,20,40,0.28) 0%, rgba(9,20,40,0.56) 42%, rgba(9,20,40,0.82) 100%);
  }
  .hero.hero-tall .hero-inner {
    min-height: inherit;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: clamp(108px, 18vh, 145px);
    padding-bottom: 34px;
  }
  .hero h1 {
    font-size: 28pt;
    line-height: 1.08;
    margin-bottom: 18px;
    letter-spacing: 0;
  }
  .hero-lead {
    font-size: 13.5pt;
    line-height: 1.5;
    margin-bottom: 26px;
  }
  .hero-eyebrow {
    font-size: 11.5pt;
    line-height: 1.35;
    margin-bottom: 14px;
  }
  .hero-eyebrow::before,
  .hero-eyebrow::after {
    display: none;
  }

  .hero-sub h1 { font-size: 30pt; }

  section { padding: 60px 22px; }
  .section-head h2 { font-size: 28pt; }
  .section-head .lede { font-size: 14pt; }

  .prose p { font-size: 13.5pt; }

  .cards-3, .cards-4 { grid-template-columns: 1fr; }
  .cards-2 { grid-template-columns: 1fr; gap: 24px; }
  .card-photo {
    width: 85%;
    margin: 20px auto 0;
  }
  .card-photo.tall {
    width: min(74%, 360px);
    aspect-ratio: 4/3;
    margin: 20px auto 0;
  }
  .support-photo,
  .support-photo.support-photo-portrait {
    width: min(74%, 380px);
    aspect-ratio: 4/3;
    margin: 0 auto;
  }

  .spotlight {
    grid-template-columns: 1fr;
    padding-top: 40px;
    background: var(--paper);
  }
  .spotlight.reverse { direction: ltr; }
  .spotlight-photo {
    width: min(74%, 380px);
    aspect-ratio: 4/3;
    margin: 0 auto;
    border: 1px solid var(--rule);
  }
  .spotlight-content { padding: 36px 24px; }
  .spotlight-content h2 { font-size: 24pt; }

  .awards-strip { padding: 36px 22px; }
  .awards-row { gap: 22px 32px; }
  .awards-row img { height: 56px; }

  .testimonials-grid, .testimonials-grid.two { grid-template-columns: 1fr; }

  .big-quote .quote { font-size: 20pt; }
  .big-quote { padding: 56px 22px; }

  .masonry { columns: 2; column-gap: 12px; }
  .masonry img {
    width: 85%;
    margin: 0 auto 12px;
  }

  .facts { grid-template-columns: repeat(2, 1fr); }
  .fact { border-right: none; border-bottom: 1px solid var(--rule); padding: 22px 16px; }
  .fact:nth-child(odd) { border-right: 1px solid var(--rule); }
  .fact:nth-child(n+3) { border-bottom: none; }
  .fact .num { font-size: 26pt; }

  .menu-grid { grid-template-columns: 1fr; }

  .family-row { grid-template-columns: repeat(2, 1fr); gap: 22px; }

  .contact-band { padding: 56px 22px; }
  .contact-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-band h2 { font-size: 28pt; }

  .footer-inner { grid-template-columns: 1fr; padding: 40px 22px 20px; gap: 28px; }

  .news-form { flex-direction: column; }
}

/* ============ NARROW PHONE BREAKPOINT ============ */
@media (max-width: 600px) {
  .nav-inner {
    padding: 9px 20px;
  }
  .logo {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .logo .firm { font-size: 19pt; }
  .logo .sub { font-size: 10pt; }
  .hamburger {
    width: 28px;
    height: 20px;
  }

  .hero-photo::after {
    background: linear-gradient(180deg, rgba(9,20,40,0.1) 0%, rgba(9,20,40,0.68) min(60vw, 250px), rgba(9,20,40,0.96) 100%);
  }
  .hero-photo::before {
    top: min(60vw, 250px);
  }
  .hero-inner {
    padding: min(48vw, 200px) 20px 30px;
  }
  .hero.hero-tall {
    min-height: min(760px, 100svh);
  }
  .hero.hero-tall .hero-photo {
    background-size: auto 140% !important;
    background-position: 50% bottom !important;
  }
  .hero.hero-tall .hero-inner {
    padding-top: clamp(92px, 15vh, 128px);
  }
  .hero h1 {
    font-size: 22pt;
    line-height: 1.08;
    margin-bottom: 14px;
    letter-spacing: 0;
  }
  .hero-lead {
    font-size: 12pt;
    line-height: 1.45;
    margin-bottom: 20px;
  }
  .hero-eyebrow {
    font-size: 10pt;
    line-height: 1.35;
    margin-bottom: 10px;
  }
  .hero-eyebrow::before,
  .hero-eyebrow::after {
    display: none;
  }
  .hero-buttons {
    gap: 10px;
  }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-ghost {
    width: 100%;
    padding: 11px 14px;
    text-align: center;
    font-size: 8.5pt;
    letter-spacing: 1.5px;
  }

  .hero-sub.hero-photo-bg .hero-inner { padding: 56px 22px 48px; }
  .hero-sub h1 { font-size: 22pt; }

  /* Card photos: less tall on mobile so they don't dominate the scroll */
  .card-photo { aspect-ratio: 16/9; }
  .card-photo.tall {
    width: min(78%, 300px);
    aspect-ratio: 1/1;
    margin: 18px auto 0;
  }
  .photo-stat-panel {
    top: 12px;
    right: 12px;
    min-width: 150px;
    padding: 10px 12px;
  }
  .photo-stat-panel strong { font-size: 13pt; }
  .photo-stat-panel span {
    font-size: 8pt;
    letter-spacing: 1.2px;
  }

  /* Paired spotlight photos act as supporting images on phones, not full-width slabs */
  .spotlight-photo {
    width: min(82%, 340px);
    aspect-ratio: 4/3;
    max-height: none;
    margin: 0 auto;
    border: 1px solid var(--rule);
  }
  .spotlight-content {
    margin-top: 24px;
  }

  /* Masonry tighter on phones */
  .masonry { columns: 2; column-gap: 8px; }
  .masonry img { margin-bottom: 8px; }

  /* Family portraits a bit smaller */
  .family-row { gap: 18px; }
  .family-member .portrait { max-width: 130px; margin-left: auto; margin-right: auto; }

  /* Awards strip -- smaller badges */
  .awards-strip { padding: 24px 20px; }
  .awards-row { gap: 14px 22px; }
  .awards-row img { height: 44px; }

  /* Big quote tighter */
  .big-quote { padding: 44px 22px; }
  .big-quote .quote { font-size: 17pt; }
  .big-quote .quote::before, .big-quote .quote::after { font-size: 28pt; }

  /* Section padding reduced */
  section { padding: 48px 20px; }
  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: 24pt; margin-bottom: 16px; }
  .section-head .lede { font-size: 13pt; }

  /* Spotlight content padding */
  .spotlight-content { padding: 30px 22px; }
  .spotlight-content h2 { font-size: 22pt; }
  .spotlight-content p { font-size: 13.5pt; }
  .spotlight-content .quote { font-size: 14pt; }

  /* Contact band */
  .contact-band { padding: 44px 20px; }
  .contact-band h2 { font-size: 24pt; }
  .contact-band > .contact-inner > div > p { font-size: 14pt; margin-bottom: 24px; }
  .contact-info { padding: 24px 22px; }
  .contact-row .v { font-size: 13.5pt; }

  /* News strip */
  .news-strip { padding: 36px 22px; }
  .news-strip h3 { font-size: 22pt; }
  .news-strip p { font-size: 13pt; }
}
