:root {
  --primary: #3a3a6e;
  --primary-dark: #26264a;
  --bg: #f8f5ef;
  --card: #fffdf6;
  --ink: #1f1e2c;
  --ink-soft: #56556a;
  --rule: #c6c0c8;
  --accent-moss: #a8b89a;
  --accent-deep-moss: #5e7158;
  --accent-dawn: #f4e0d4;
  --shadow: rgba(31, 30, 44, 0.10);
  --display: 'Cormorant Infant', 'Cormorant Garamond', Georgia, serif;
  --body: 'Newsreader', 'Source Serif 4', Georgia, serif;
  --ui: 'Karla', system-ui, -apple-system, sans-serif;
  --accent: 'Cormorant Infant', Georgia, serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--primary); text-decoration: underline; text-decoration-color: var(--rule); text-decoration-thickness: 1px; text-underline-offset: 0.2em; transition: text-decoration-color 0.2s, color 0.2s; }
a:hover { text-decoration-color: var(--primary); color: var(--primary-dark); }
a:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }
button:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }

h1, h2, h3, h4 { font-family: var(--display); color: var(--ink); font-weight: 500; line-height: 1.2; }
h1 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--ink);
}
h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  line-height: 1.20;
  letter-spacing: -0.005em;
}
h3 { font-family: var(--display); font-style: italic; font-weight: 500; font-size: 1.5rem; }
p { margin-bottom: 1em; }

.smallcaps {
  font-family: var(--ui);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--accent-deep-moss);
  display: inline-block;
}

.wrap { max-width: 76rem; margin: 0 auto; padding: 0 1.5rem; }
.wrap--narrow { max-width: 42rem; margin: 0 auto; padding: 0 1.5rem; }
.wrap--medium { max-width: 56rem; margin: 0 auto; padding: 0 1.5rem; }

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: var(--bg);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  z-index: 200;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

.rule { height: 1px; background: var(--rule); border: 0; margin: 4rem 0; }
.rule--moss { background: var(--accent-moss); width: 3rem; height: 1px; margin: 0 auto 2rem; }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
  border-top: 1px solid var(--primary);
  transition: box-shadow 0.3s ease;
}
.site-header.is-scrolled { box-shadow: 0 1px 6px var(--shadow); }
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 1.1rem 0;
  gap: 1.5rem;
}
.brand { text-decoration: none; }
.brand-name {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--primary);
  letter-spacing: -0.005em;
  line-height: 1.05;
  display: block;
}
.brand-tag {
  font-family: var(--ui);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-deep-moss);
  font-weight: 600;
  margin-top: 0.2rem;
  display: block;
}
.site-nav {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  justify-content: center;
}
.site-nav a {
  font-family: var(--ui);
  font-size: 0.85rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.site-nav a:hover { color: var(--primary); }
.site-nav a.is-current { color: var(--primary); border-bottom: 1px solid var(--accent-moss); padding-bottom: 0.2rem; }
.header-phone-block { text-align: right; }
.header-phone {
  font-family: var(--body);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  display: block;
}
.header-phone-hours {
  font-family: var(--ui);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-top: 0.15rem;
}
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 0.5rem; font-size: 1.4rem; color: var(--primary); }
.mobile-call {
  display: none;
  background: var(--primary);
  color: var(--bg);
  padding: 0.5rem 0.9rem;
  text-decoration: none;
  font-family: var(--ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 2px;
}

@media (max-width: 980px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .site-nav { display: none; }
  .header-phone-block { display: none; }
  .mobile-call { display: inline-block; }
}

/* HOMEPAGE HERO — Pattern #8: type-only, no photo above the fold */
.hero-type {
  position: relative;
  padding: 6rem 0 5rem;
  background: var(--bg);
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.hero-type::before {
  content: '';
  position: absolute;
  top: 4rem;
  right: -6rem;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle at center, var(--accent-dawn) 0%, transparent 65%);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.hero-type::after {
  content: '';
  position: absolute;
  bottom: -8rem;
  left: -6rem;
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle at center, var(--accent-moss) 0%, transparent 70%);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.hero-type .wrap { position: relative; z-index: 1; }
.hero-eyebrow { margin-bottom: 2rem; }
.hero-h1 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: -0.012em;
  color: var(--primary);
  max-width: 18ch;
  margin-bottom: 2.5rem;
  text-wrap: balance;
}
.hero-lede {
  font-family: var(--body);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--ink);
  max-width: 38rem;
  margin-bottom: 2.5rem;
}
.hero-rule {
  width: 4rem;
  height: 1px;
  background: var(--accent-moss);
  border: 0;
  margin: 0 0 2.5rem;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* PAGE HERO (interior pages) */
.page-hero {
  padding: 4.5rem 0 3rem;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.page-hero h1 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--primary);
  max-width: 28ch;
  text-wrap: balance;
}
.page-hero .smallcaps { display: block; margin-bottom: 1rem; }

.page-hero-image {
  width: 100%;
  height: clamp(280px, 36vw, 420px);
  background-size: cover;
  background-position: center;
  margin-bottom: 0;
}

.breadcrumb {
  font-family: var(--ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); text-decoration: underline; }
.breadcrumb .sep { margin: 0 0.6rem; color: var(--rule); }

/* BUTTONS */
.btn {
  font-family: var(--ui);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.9rem 1.6rem;
  text-decoration: none;
  display: inline-block;
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 2px;
}
.btn:hover { background: var(--primary); color: var(--bg); text-decoration: none; }
.btn--primary { background: var(--primary); color: var(--bg); }
.btn--primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn--ghost { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn--moss { background: transparent; color: var(--accent-deep-moss); border-color: var(--accent-moss); }
.btn--moss:hover { background: var(--accent-moss); color: var(--ink); border-color: var(--accent-moss); }
.btn--small { padding: 0.6rem 1.1rem; font-size: 0.8rem; }

/* SECTIONS */
section { padding: 5rem 0; }
section.tight { padding: 3rem 0; }

/* "A NOTE BEFORE YOU READ ON" — narrow inset band */
.note-band {
  background: var(--bg);
  padding: 3.5rem 1.5rem;
  text-align: center;
  position: relative;
}
.note-band-inner {
  max-width: 38rem;
  margin: 0 auto;
  padding: 3rem 0;
  border-top: 1px solid var(--accent-moss);
  border-bottom: 1px solid var(--accent-moss);
}
.note-band p {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.note-band .btn { margin-top: 0.5rem; }

/* WHAT WE DO — alternating image/text blocks */
.work-blocks { padding: 5rem 0; }
.work-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.work-block:last-child { margin-bottom: 0; }
.work-block.reverse > :first-child { order: 2; }
.work-block-img {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
}
.work-block .smallcaps { margin-bottom: 0.75rem; }
.work-block h2 { margin-bottom: 1.25rem; max-width: 22ch; }
.work-block p { color: var(--ink); margin-bottom: 1rem; font-size: 1.0625rem; }
.work-block .read-more {
  font-family: var(--ui);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-moss);
  padding-bottom: 0.2rem;
  display: inline-block;
  margin-top: 0.75rem;
}
.work-block .read-more:hover { border-bottom-color: var(--primary); }
@media (max-width: 880px) {
  .work-block { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3.5rem; }
  .work-block.reverse > :first-child { order: 0; }
}

/* DOCTORS — 3 portrait cards */
.doctors-section { background: var(--bg); padding: 5rem 0; border-top: 1px solid var(--rule); }
.doctors-section .section-head { text-align: center; max-width: 40rem; margin: 0 auto 3.5rem; }
.doctors-section .section-head h2 { margin: 0.5rem 0 0; }
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.doctor-card { text-align: left; }
.doctor-card-photo {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  margin-bottom: 1.25rem;
}
.doctor-card-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.doctor-card-role {
  font-family: var(--ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-deep-moss);
  font-weight: 600;
  margin-bottom: 1rem;
}
.doctor-card-bio { font-size: 1rem; color: var(--ink); line-height: 1.65; margin-bottom: 0.75rem; }
.doctor-card-pet {
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
}
.doctor-card a {
  font-family: var(--ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-moss);
  padding-bottom: 0.15rem;
  display: inline-block;
  margin-top: 1rem;
}
@media (max-width: 880px) {
  .doctors-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* QOL — 2 col band */
.qol-band {
  background: var(--card);
  padding: 5rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.qol-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 4rem;
  align-items: start;
}
.qol-grid .smallcaps { margin-bottom: 0.75rem; }
.qol-grid h2 { margin-bottom: 1.5rem; max-width: 22ch; }
.qol-grid p { color: var(--ink); margin-bottom: 1rem; }
.qol-scale {
  background: var(--bg);
  padding: 2rem;
  border: 1px solid var(--rule);
}
.qol-scale .scale-eyebrow {
  font-family: var(--ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--accent-deep-moss);
  margin-bottom: 1.25rem;
  display: block;
}
.qol-scale dl { display: grid; gap: 0.85rem; margin: 0; }
.qol-scale .scale-row {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--rule);
}
.qol-scale .scale-row:last-of-type { border-bottom: 0; padding-bottom: 0; }
.qol-scale dt {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--primary);
}
.qol-scale dd { font-family: var(--body); font-size: 0.95rem; color: var(--ink); line-height: 1.55; }
.qol-scale .scale-link {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--ui);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-moss);
  padding-bottom: 0.2rem;
  width: max-content;
}
@media (max-width: 880px) {
  .qol-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* DAWN-PINK PULL-QUOTE BAND */
.dawn-band {
  background: var(--accent-dawn);
  padding: 6rem 1.5rem;
  text-align: center;
}
.dawn-band blockquote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.625rem;
  line-height: 1.45;
  color: var(--primary-dark);
  max-width: 40rem;
  margin: 0 auto 1.5rem;
  border: 0;
  padding: 0;
}
.dawn-band cite {
  font-family: var(--ui);
  font-style: normal;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary-dark);
  font-weight: 600;
}

/* PLAIN PRICING — 3 columns */
.pricing-band { padding: 5rem 0; background: var(--bg); }
.pricing-band .section-head { max-width: 48rem; margin: 0 auto 3rem; text-align: center; }
.pricing-band .section-head .smallcaps { margin-bottom: 0.75rem; }
.pricing-band .section-head h2 { margin: 0; }
.pricing-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.pricing-col { padding: 0; }
.pricing-col .num {
  font-family: var(--ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--accent-deep-moss);
  margin-bottom: 1rem;
  display: block;
}
.pricing-col h3 {
  font-family: var(--display);
  font-style: normal;
  font-weight: 500;
  font-size: 1.375rem;
  color: var(--ink);
  margin-bottom: 0.75rem;
  letter-spacing: -0.005em;
}
.pricing-col .price-line {
  font-family: var(--body);
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.pricing-col p { font-size: 1rem; color: var(--ink); line-height: 1.65; }
.pricing-band .pricing-cta { text-align: center; }
@media (max-width: 880px) {
  .pricing-cols { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* SERVICE AREA + MAP */
.service-area { border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.service-area-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 0;
  align-items: stretch;
}
.area-map-frame {
  width: 100%;
  height: 100%;
  min-height: 420px;
  aspect-ratio: 4/3;
  border: 0;
  display: block;
}
.service-area-info {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-area-info .smallcaps { margin-bottom: 0.5rem; }
.service-area-info h2 { margin-bottom: 1.5rem; }
.service-area-info .zone-block { margin-bottom: 1.5rem; }
.service-area-info .zone-label {
  font-family: var(--ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--accent-deep-moss);
  margin-bottom: 0.4rem;
}
.service-area-info .zone-list { font-size: 1rem; color: var(--ink); line-height: 1.65; }
.service-area-info .note { font-size: 0.95rem; color: var(--ink-soft); margin-top: 1rem; font-style: italic; font-family: var(--display); }
@media (max-width: 880px) {
  .service-area-grid { grid-template-columns: 1fr; }
  .service-area-info { padding: 3rem 1.5rem; }
  .area-map-frame { min-height: 320px; }
}

/* ARTICLE / LONG-FORM PROSE */
.prose-wrap {
  max-width: 44rem;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}
.prose-wrap.narrow { max-width: 42rem; }
.article-prose {
  font-family: var(--body);
  font-size: 1.125rem;
  line-height: 1.78;
  color: var(--ink);
}
.article-prose p { margin-bottom: 1.4rem; }
.article-prose h2 {
  margin: 3.5rem 0 1.25rem;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.article-prose h2 + .smallcaps { display: block; margin: -0.5rem 0 1.25rem; }
.article-prose .h2-eyebrow {
  font-family: var(--ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--accent-deep-moss);
  display: block;
  margin: 3.5rem 0 0.5rem;
}
.article-prose .h2-eyebrow + h2 { margin-top: 0; }
.article-prose h3 {
  margin: 2.25rem 0 0.75rem;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
}
.article-prose blockquote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.625rem;
  line-height: 1.45;
  color: var(--primary);
  margin: 2.5rem 0;
  padding: 1.25rem 0;
  border-top: 1px solid var(--accent-moss);
  border-bottom: 1px solid var(--accent-moss);
  text-align: center;
}
.article-prose ol, .article-prose ul { margin: 1rem 0 1.5rem 1.5rem; }
.article-prose ol li, .article-prose ul li { margin-bottom: 0.6rem; }
.article-prose .opening-pull {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.375rem;
  line-height: 1.5;
  color: var(--primary);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--accent-moss);
  margin-bottom: 2.5rem;
}

/* DOCTOR FULL-BIO SECTIONS (/our-doctors) */
.doctor-bio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding: 5rem 1.5rem;
  max-width: 76rem;
  margin: 0 auto;
  border-bottom: 1px solid var(--rule);
}
.doctor-bio:last-of-type { border-bottom: 0; }
.doctor-bio.reverse > :first-child { order: 2; }
.doctor-bio-photo {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
}
.doctor-bio-body .smallcaps { margin-bottom: 0.5rem; }
.doctor-bio-body h2 {
  font-family: var(--display);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  margin-bottom: 0.4rem;
  letter-spacing: -0.005em;
}
.doctor-bio-body .role {
  font-family: var(--ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--accent-deep-moss);
  margin-bottom: 1.5rem;
  display: block;
}
.doctor-bio-body p { font-size: 1.0625rem; line-height: 1.7; color: var(--ink); margin-bottom: 1rem; }
@media (max-width: 880px) {
  .doctor-bio { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .doctor-bio.reverse > :first-child { order: 0; }
}

/* PRICING PAGE — sections + cards */
.pricing-section {
  max-width: 56rem;
  margin: 0 auto 4rem;
  padding: 0 1.5rem;
}
.pricing-section .pricing-eyebrow {
  font-family: var(--ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--accent-deep-moss);
  margin-bottom: 0.5rem;
  display: block;
}
.pricing-section h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.625rem, 2.6vw, 2rem);
  letter-spacing: -0.005em;
  margin-bottom: 1.5rem;
}
.pricing-card {
  background: var(--card);
  padding: 2.5rem;
  border: 1px solid var(--rule);
  border-left: 3px solid var(--accent-moss);
}
.pricing-card .pricing-line {
  font-family: var(--body);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-variant-numeric: tabular-nums;
}
.pricing-card .pricing-detail {
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.6rem;
  line-height: 1.6;
}
.pricing-card .detail-label {
  font-family: var(--ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--accent-deep-moss);
  margin-right: 0.5rem;
}
.pricing-card hr {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 1.25rem 0;
}

/* FAQ */
.faq-section {
  max-width: 56rem;
  margin: 0 auto 5rem;
  padding: 0 1.5rem;
}
.faq-section h2 {
  font-family: var(--display);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule);
}
.faq-item h3 {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.6rem;
}
.faq-item p { font-size: 1rem; color: var(--ink); line-height: 1.65; }

/* KEEPSAKES LISTS */
.keepsake-block {
  max-width: 56rem;
  margin: 0 auto 3rem;
  padding: 0 1.5rem;
}
.keepsake-block .pricing-eyebrow {
  font-family: var(--ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--accent-deep-moss);
  margin-bottom: 0.5rem;
  display: block;
}
.keepsake-block h2 { margin-bottom: 1.5rem; font-family: var(--display); font-weight: 500; }
.keepsake-list { display: grid; gap: 1.25rem; }
.keepsake-item {
  background: var(--card);
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--rule);
}
.keepsake-item .name {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.4rem;
}
.keepsake-item p { font-size: 1rem; line-height: 1.65; color: var(--ink); }

.keepsake-image {
  width: 100%;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  margin: 2rem 0 2.5rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

/* CLOSING BLOCK */
.closing-block {
  background: var(--card);
  border: 1px solid var(--accent-moss);
  padding: 2.5rem;
  max-width: 44rem;
  margin: 3rem auto 5rem;
}
.closing-block .smallcaps { display: block; margin-bottom: 1rem; }
.closing-block ul {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
}
.closing-block li {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--primary);
}
.closing-block li a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-moss);
  padding-bottom: 0.15rem;
}
.closing-block li a:hover { border-bottom-color: var(--primary); }

/* CONTACT GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 4rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.contact-form-card {
  background: var(--card);
  padding: 2.5rem;
  border: 1px solid var(--rule);
}
.contact-form-card h2 { font-family: var(--display); font-weight: 500; margin-bottom: 1.5rem; }
.contact-info { padding: 2rem 0; }
.contact-info .big-phone {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 2.25rem;
  letter-spacing: -0.005em;
  color: var(--primary);
  display: block;
  margin: 0.25rem 0 0.5rem;
  text-decoration: none;
}
.contact-info .phone-note {
  font-family: var(--ui);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}
.contact-info .label {
  font-family: var(--ui);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--accent-deep-moss);
  margin: 1.5rem 0 0.4rem;
  display: block;
}
.contact-info .label:first-of-type { margin-top: 0; }
.contact-info p { font-size: 1rem; line-height: 1.65; color: var(--ink); }
.contact-info a { color: var(--primary); }
.emergency-block {
  background: var(--accent-dawn);
  padding: 1.75rem;
  margin-top: 2rem;
  border-left: 3px solid var(--primary);
}
.emergency-block .label { color: var(--primary-dark); margin-bottom: 0.5rem; }
.emergency-block p { font-size: 0.95rem; color: var(--primary-dark); }
.emergency-block strong { color: var(--primary-dark); }

/* FORM */
.form-row { margin-bottom: 1.25rem; }
.form-row label {
  display: block;
  font-family: var(--ui);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 0.75rem 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  resize: vertical;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-bottom-color: var(--primary); }
.form-submit {
  background: var(--primary);
  color: var(--bg);
  border: 0;
  padding: 1rem 2rem;
  font-family: var(--ui);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  margin-top: 0.5rem;
  transition: background 0.2s;
  border-radius: 2px;
}
.form-submit:hover { background: var(--primary-dark); }

.contact-map-frame {
  width: 100%;
  aspect-ratio: 21/9;
  border: 0;
  display: block;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 4rem 1.5rem 5rem;
  max-width: 72rem;
  margin: 0 auto;
}
.info-grid h3 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.info-grid p { font-size: 1rem; line-height: 1.7; color: var(--ink); margin-bottom: 0.75rem; }
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .info-grid { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
}

/* FOOTER */
.footer {
  background: var(--primary-dark);
  color: var(--bg);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 5fr 3fr 4fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer h3 {
  font-family: var(--ui);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-moss);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer .brand-name { color: var(--bg); display: inline-block; margin-bottom: 0.75rem; }
.footer-mission { color: rgba(248,245,239,0.78); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.25rem; max-width: 38ch; }
.footer-credentials {
  font-family: var(--ui);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-moss);
  font-weight: 600;
  margin-top: 1rem;
}
.footer-nav { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-nav a {
  color: rgba(248,245,239,0.78);
  text-decoration: none;
  font-size: 0.95rem;
}
.footer-nav a:hover { color: var(--bg); text-decoration: underline; }
.footer-nap p { color: rgba(248,245,239,0.85); font-size: 0.95rem; line-height: 1.65; margin-bottom: 0.5rem; }
.footer-nap a { color: var(--bg); text-decoration: none; }
.footer-nap a:hover { text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(248,245,239,0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--ui);
  font-size: 0.8rem;
  color: rgba(248,245,239,0.55);
}
.footer-bottom em {
  font-family: var(--display);
  font-style: italic;
  color: rgba(248,245,239,0.7);
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* PRINT */
@media print {
  .site-header, .footer, .menu-toggle, .mobile-call, .hero-buttons, .form-submit { display: none; }
  body { background: white; color: black; }
}
