:root {
  --ink: #1a1a1a;
  --black: #000000;
  --bg: #fafaf7;
  --card: #ffffff;
  --ink-soft: #4a4a4a;
  --rule: #d4d4d4;
  --accent: #c44b30;
  --accent-muted: #8a8a8a;
  --surface-dark: #1a1a1a;
  --shadow: rgba(0, 0, 0, 0.06);
  --display: 'Fraunces', 'GT Sectra', Georgia, serif;
  --body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --ui: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-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.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--rule); text-decoration-thickness: 1px; text-underline-offset: 0.2em; transition: text-decoration-color 0.2s; }
a:hover { text-decoration-color: var(--accent); }

h1, h2, h3, h4 { font-family: var(--body); color: var(--ink); font-weight: 600; line-height: 1.2; }
.display { font-family: var(--display); font-weight: 500; line-height: 0.95; letter-spacing: -0.025em; }
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.875rem, 3.2vw, 2.5rem); letter-spacing: -0.015em; }
h3 { font-size: 1.5rem; font-weight: 600; }
p { margin-bottom: 1em; }
em { font-family: var(--display); font-style: italic; font-weight: 500; }

.smallcaps {
  font-family: var(--ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--ink-soft);
}
.smallcaps--accent { color: var(--accent); }

.wrap { max-width: 76rem; margin: 0 auto; padding: 0 1.5rem; }
.wrap--narrow { max-width: 40rem; 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(--ink);
  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--accent { background: var(--accent); width: 3rem; height: 2px; margin: 0 auto 2rem; }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
  transition: box-shadow 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  box-shadow: 0 1px 0 var(--rule);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  gap: 1.5rem;
}
.wordmark {
  font-family: var(--ui);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.site-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.site-nav a {
  font-family: var(--ui);
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a.is-current { color: var(--ink); border-bottom: 1px solid var(--accent); padding-bottom: 0.2rem; }
.header-phone {
  font-family: var(--ui);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
}
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 0.5rem; font-size: 1.4rem; color: var(--ink); }

@media (max-width: 880px) {
  .site-nav { display: none; }
  .menu-toggle { display: block; }
}

/* HOMEPAGE HERO — 100vh full bleed */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.55) 100%);
}
.hero-content {
  position: absolute;
  bottom: 4rem;
  left: 0;
  right: 0;
  padding: 0 1.5rem;
  z-index: 3;
  color: #fff;
}
.hero-content .smallcaps { color: var(--accent); margin-bottom: 1.5rem; display: inline-block; }
.hero-content h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  max-width: 30ch;
  color: #fff;
  text-wrap: balance;
}
.hero-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 50ch;
  color: rgba(255,255,255,0.9);
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* PAGE HERO (interior pages — shorter, light bg, no overlay) */
.page-hero {
  padding: 6rem 0 3rem;
  border-bottom: 1px solid var(--rule);
}
.page-hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  max-width: 24ch;
  text-wrap: balance;
}
.page-hero .smallcaps { display: block; margin-bottom: 1rem; }

.breadcrumb {
  font-family: var(--ui);
  font-size: 0.8rem;
  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(--ink); }
.breadcrumb .sep { margin: 0 0.6rem; color: var(--accent-muted); }

/* BUTTONS */
.btn {
  font-family: var(--ui);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.85rem 1.5rem;
  text-decoration: none;
  display: inline-block;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s;
}
.btn:hover { background: var(--ink); color: var(--bg); }
.btn--primary { background: var(--ink); color: var(--bg); }
.btn--primary:hover { background: #000; }
.btn--accent { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn--accent:hover { background: var(--accent); color: var(--bg); }
.btn--ghost { background: transparent; color: rgba(255,255,255,0.95); border-color: rgba(255,255,255,0.4); }
.btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

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

/* MARKER THESIS (2-paragraph centered prose) */
.thesis {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
  padding: 6rem 1.5rem;
}
.thesis p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.thesis p:last-child { margin-bottom: 0; }

/* PRICING TILES (homepage) */
.pricing-tiles {
  background: var(--bg);
  padding: 4rem 0 5rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.pricing-tiles-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.pricing-tiles-header h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.02em;
  max-width: 20ch;
}
.tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tile {
  background: var(--card);
  padding: 2rem;
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
}
.tile-num {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.tile-name {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.tile-price {
  font-family: var(--ui);
  font-size: 2.75rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 1rem 0 1.5rem;
  color: var(--ink);
}
.tile-desc { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1.5rem; flex: 1; }
.tile dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
  margin: 1rem 0;
  border-top: 1px solid var(--rule);
  padding-top: 1rem;
}
.tile dt {
  font-family: var(--ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-muted);
  font-weight: 600;
}
.tile dd { font-size: 0.95rem; color: var(--ink); margin-bottom: 0.5rem; }
.tile .btn { width: 100%; text-align: center; margin-top: 1rem; }
@media (max-width: 800px) { .tiles-grid { grid-template-columns: 1fr; } }

/* EDITORIAL PHOTO STRIP */
.editorial-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  padding: 0;
}
.editorial-strip > div {
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
}
@media (max-width: 800px) { .editorial-strip { grid-template-columns: 1fr 1fr; } }

/* ABOUT PREVIEW BLOCK (homepage) */
.about-preview {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 0;
}
.about-preview-img {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
}
.about-preview h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.about-preview p { font-size: 1.0625rem; color: var(--ink-soft); line-height: 1.7; }
@media (max-width: 800px) {
  .about-preview { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 0; }
}

/* OBITUARIES PREVIEW */
.obit-preview {
  padding: 5rem 0;
  border-top: 1px solid var(--rule);
}
.obit-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.obit-preview-header h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.obit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.obit-grid--two { grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 56rem; margin: 0 auto; }
.obit-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.obit-card-photo {
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  margin-bottom: 1rem;
  filter: saturate(0.95);
  transition: filter 0.3s;
}
.obit-card:hover .obit-card-photo { filter: saturate(0.7) brightness(0.95); }
.obit-card-name {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
}
.obit-card-dates {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}
.obit-card-service {
  font-family: var(--ui);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}
@media (max-width: 700px) { .obit-grid, .obit-grid--two { grid-template-columns: 1fr; } }

/* SERVICE AREA + MAP */
.service-area {
  border-top: 1px solid var(--rule);
}
.service-area-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 0;
  align-items: stretch;
}
.area-map-frame {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}
.service-area-info {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-area-info h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.service-area-info address {
  font-style: normal;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.service-area-info p { color: var(--ink-soft); line-height: 1.7; }
@media (max-width: 800px) {
  .service-area-grid { grid-template-columns: 1fr; }
  .service-area-info { padding: 3rem 1.5rem; }
}

/* ARTICLE PROSE */
.article-prose {
  font-family: var(--body);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink);
}
.article-prose p { margin-bottom: 1.25rem; }
.article-prose h2 { margin: 3rem 0 1rem; font-family: var(--display); font-weight: 500; letter-spacing: -0.02em; }
.article-prose h3 { margin: 2rem 0 0.75rem; }
.article-prose blockquote {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink);
  border-left: 2px solid var(--accent);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
}
.article-prose ul { margin: 1rem 0 1.5rem 1.5rem; }
.article-prose li { margin-bottom: 0.4rem; }

/* DEFINITION LISTS (services pages) */
dl.included {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.75rem 1.75rem;
  margin: 1.5rem 0 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
dl.included dt {
  font-family: var(--ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-muted);
  font-weight: 600;
  align-self: center;
}
dl.included dd { font-size: 1.0625rem; color: var(--ink); }

/* DETAIL PAGE LAYOUT (services/cremation, services/memorial) */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 18rem;
  gap: 5rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  align-items: start;
}
.detail-sidebar {
  position: sticky;
  top: 6rem;
  padding: 2rem;
  border: 1px solid var(--rule);
  background: var(--card);
}
.detail-sidebar h3 {
  font-family: var(--ui);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 600;
}
.detail-sidebar p { font-size: 0.95rem; line-height: 1.6; color: var(--ink-soft); }
.detail-sidebar a.sidebar-link {
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
}
.detail-sidebar a.sidebar-link:last-child { border-bottom: 0; }
.detail-sidebar a.sidebar-link:hover { color: var(--accent); }
.detail-sidebar .sidebar-cta {
  display: block;
  background: var(--ink);
  color: var(--bg);
  padding: 0.85rem 1rem;
  text-align: center;
  margin-top: 1.25rem;
  font-family: var(--ui);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
}
.detail-sidebar .sidebar-cta:hover { background: var(--accent); }
@media (max-width: 900px) {
  .detail-layout { grid-template-columns: 1fr; gap: 2rem; }
  .detail-sidebar { position: static; }
}

/* SERVICES INDEX BLOCKS (alternating L/R) */
.svc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.svc-block.reverse > :first-child { order: 2; }
.svc-block-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}
.svc-block-num {
  display: block;
  font-family: var(--ui);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.svc-block h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.svc-block p { font-size: 1.0625rem; line-height: 1.7; color: var(--ink-soft); margin-bottom: 1rem; }
.svc-block-price {
  font-family: var(--ui);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
@media (max-width: 800px) {
  .svc-block { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }
  .svc-block.reverse > :first-child { order: 0; }
}

/* "WHAT WE DON'T DO" */
.dont-do {
  background: var(--surface-dark);
  color: var(--bg);
  padding: 5rem 0;
}
.dont-do h2 {
  font-family: var(--display);
  font-weight: 500;
  color: var(--bg);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
.dont-do .smallcaps { color: var(--accent); }
.dont-do-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 2rem;
}
.dont-do-item h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--bg);
  margin-bottom: 0.75rem;
}
.dont-do-item p { color: rgba(250,250,247,0.75); font-size: 0.95rem; line-height: 1.65; }
@media (max-width: 800px) { .dont-do-list { grid-template-columns: 1fr; gap: 2rem; } }

/* PRICING PAGE */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.pricing-table th, .pricing-table td {
  padding: 1rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--rule);
}
.pricing-table th {
  font-family: var(--ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-muted);
  font-weight: 600;
  border-bottom: 2px solid var(--ink);
}
.pricing-table td.price {
  font-family: var(--ui);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  text-align: right;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
}
.pricing-section { margin-bottom: 4rem; }
.pricing-section h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 2.4vw, 1.875rem);
}
.no-charge {
  background: var(--card);
  padding: 2rem;
  border-left: 2px solid var(--accent);
  margin: 3rem 0;
}
.no-charge h3 {
  font-family: var(--ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 600;
}
.no-charge ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.no-charge li {
  font-size: 1.0625rem;
  padding-left: 1.5rem;
  position: relative;
}
.no-charge li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}
@media (max-width: 600px) { .no-charge ul { grid-template-columns: 1fr; } }

/* OBIT DETAIL */
.obit-detail-hero {
  padding: 4rem 0 2rem;
  text-align: center;
}
.obit-detail-portrait {
  max-width: 28rem;
  width: 70vw;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  margin: 0 auto 2rem;
  filter: saturate(0.92);
}
.obit-detail-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.obit-detail-dates {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.375rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}
.obit-meta-strip {
  max-width: 56rem;
  margin: 0 auto 2rem;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  font-family: var(--ui);
  font-size: 0.95rem;
  text-align: center;
}
.obit-meta-strip > div { min-width: 12rem; }
.obit-meta-strip dt {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-muted);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.obit-meta-strip dd { font-weight: 500; }
.obit-cta-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0 4rem;
  flex-wrap: wrap;
}

.obit-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 3rem 0;
}
.obit-gallery > div {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
}
@media (max-width: 700px) { .obit-gallery { grid-template-columns: 1fr 1fr; } }

.notes-wall {
  border-top: 1px solid var(--rule);
  padding-top: 3rem;
  margin-top: 3rem;
}
.note-card {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--rule);
}
.note-card:last-child { border-bottom: 0; }
.note-card-from {
  font-family: var(--ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-muted);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.note-card-body { font-size: 1.0625rem; line-height: 1.7; color: var(--ink); font-style: italic; font-family: var(--display); }

.note-form {
  background: var(--card);
  padding: 2rem;
  border: 1px solid var(--rule);
  margin-top: 3rem;
}
.form-row { margin-bottom: 1.25rem; }
.form-row label {
  display: block;
  font-family: var(--ui);
  font-size: 0.7rem;
  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(--accent); }
.form-submit {
  background: var(--ink);
  color: var(--bg);
  border: 0;
  padding: 1rem 2rem;
  font-family: var(--ui);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  margin-top: 0.5rem;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--accent); }

/* CONTACT PAGE */
.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;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.contact-info {
  padding: 2.5rem;
}
.contact-info .big-phone {
  font-family: var(--display);
  font-weight: 500;
  font-size: 2.5rem;
  letter-spacing: -0.025em;
  display: block;
  margin: 0.5rem 0 1.5rem;
  color: var(--ink);
  text-decoration: none;
}
.contact-info .label {
  font-family: var(--ui);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
  display: block;
}
.contact-info .label:first-of-type { margin-top: 0; }
.contact-info p { font-size: 1.0625rem; line-height: 1.6; }
.contact-info a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--rule); }
.contact-info a:hover { text-decoration-color: var(--accent); }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; } }

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

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding: 4rem 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}
.info-grid h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.info-grid p { font-size: 1rem; line-height: 1.65; color: var(--ink-soft); }
@media (max-width: 700px) { .info-grid { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; } }

/* FOOTER */
.footer {
  background: var(--surface-dark);
  color: var(--bg);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 5fr 4fr 4fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer h3 {
  font-family: var(--ui);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.footer .wordmark { color: var(--bg); display: inline-block; margin-bottom: 1rem; }
.footer-mission { color: rgba(250,250,247,0.7); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.5rem; max-width: 30ch; }
.footer-rule { width: 2rem; height: 2px; background: var(--accent); margin-bottom: 1rem; }
.footer-locale { font-family: var(--ui); font-size: 0.85rem; color: rgba(250,250,247,0.7); }
.footer-nav { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a {
  color: rgba(250,250,247,0.75);
  text-decoration: none;
  font-size: 0.95rem;
}
.footer-nav a:hover { color: var(--bg); }
.footer-nap p { color: rgba(250,250,247,0.85); font-size: 0.95rem; line-height: 1.65; margin-bottom: 0.5rem; }
.footer-nap a { color: rgba(250,250,247,0.95); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(250,250,247,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(250,250,247,0.5);
}
.footer-bottom em {
  font-family: var(--display);
  font-style: italic;
  color: rgba(250,250,247,0.6);
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
