/* =========================================================================
   MARSH RESIDENTIAL — DESIGN SYSTEM
   Palette:  ink #16212C · paper #F7F3EA · brass #A9803E · moss #4B5842
   Type:     Fraunces (display serif) + Work Sans (UI / body sans)
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,340;0,9..144,440;0,9..144,560;1,9..144,440&family=Work+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --ink: #16212C;
  --ink-soft: #3B4652;
  --paper: #F7F3EA;
  --paper-dim: #EFE9DB;
  --white: #FFFFFF;
  --brass: #A9803E;
  --brass-deep: #8B6830;
  --moss: #4B5842;
  --moss-deep: #384335;
  --line: #DFD6C0;
  --line-dark: rgba(247,243,234,0.16);
  --stone: #837C6B;

  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1240px;
  --radius-s: 3px;
  --radius-m: 6px;
  --ease: cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 560;
  line-height: 1.12;
  margin: 0 0 0.4em;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 4.4vw, 4rem); font-weight: 440; }
h2 { font-size: clamp(1.9rem, 3vw, 2.7rem); font-weight: 440; }
h3 { font-size: 1.35rem; font-weight: 560; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { margin: 0 0 1em; color: var(--ink-soft); max-width: 62ch; }
.lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 46ch; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .container { padding: 0 20px; } }

section { padding: 96px 0; }
@media (max-width: 900px) { section { padding: 64px 0; } }
.section-tight { padding: 56px 0; }

.eyebrow {
  font-size: 0.78rem;
  color: var(--brass-deep);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
}

.divider { height: 1px; background: var(--line); border: none; margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: var(--radius-s);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .2s var(--ease);
  line-height: 1;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--moss-deep); }
.btn-primary:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }

.btn-brass { background: var(--brass); color: var(--white); }
.btn-brass:hover { background: var(--brass-deep); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }

.btn-outline-light { background: transparent; color: var(--paper); border-color: var(--line-dark); }
.btn-outline-light:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.btn-ghost { background: transparent; color: var(--ink); padding: 15px 6px; }
.btn-ghost:hover { color: var(--brass-deep); }

.btn:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(247,243,234,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: padding .25s var(--ease);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
  transition: padding .25s var(--ease);
}
.site-header.is-scrolled .container { padding-top: 13px; padding-bottom: 13px; }

.logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.logo span.sub { font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.14em; color: var(--brass-deep); font-weight: 600; margin-top: 4px; }

.main-nav { display: flex; align-items: center; gap: 40px; }
.main-nav ul { list-style: none; display: flex; gap: 34px; margin: 0; padding: 0; }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}
.main-nav a:hover, .main-nav a.active { color: var(--ink); }
.main-nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: var(--brass);
}
.nav-actions { display: flex; align-items: center; gap: 18px; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--ink); transition: transform .25s var(--ease), opacity .25s var(--ease); }

.mobile-nav {
  display: none;
  position: fixed; inset: 0;
  background: var(--paper);
  z-index: 300;
  padding: 100px 32px 40px;
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.mobile-nav a { display: block; padding: 16px 0; font-family: var(--serif); font-size: 1.6rem; border-bottom: 1px solid var(--line); }
.mobile-nav .btn { margin-top: 28px; }
.mobile-close { position: absolute; top: 26px; right: 24px; background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--ink); }

@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  align-items: stretch;
  min-height: 86vh;
  background: var(--ink);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 64px;
  color: var(--paper);
}
.hero-copy .eyebrow { color: #D9B77F; }
.hero-copy h1 { color: var(--white); max-width: 12ch; }
.hero-copy p.lede { color: rgba(247,243,234,0.78); margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-figure { position: relative; overflow: hidden; }
.hero-figure img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.hero-scroll {
  position: absolute;
  left: 64px;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(247,243,234,0.65);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}
.hero-scroll .line { width: 34px; height: 1px; background: rgba(247,243,234,0.5); }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding: 56px 24px 40px; order: 2; }
  .hero-figure img { min-height: 320px; }
  .hero-scroll { display: none; }
}

/* ---------- Search / Filter bar ---------- */
.search-bar-wrap { position: relative; z-index: 10; }
.search-bar {
  background: var(--white);
  margin-top: -46px;
  border-radius: var(--radius-m);
  box-shadow: 0 18px 50px rgba(22,33,44,0.14);
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr) auto;
  gap: 16px;
  align-items: end;
  position: relative;
}
@media (max-width: 980px) {
  .hero { position: relative; }
  .search-bar { margin-top: -34px; }
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.03em; color: var(--stone); }
.field select, .field input {
  font-family: var(--sans);
  font-size: 0.92rem;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: var(--paper);
  color: var(--ink);
  width: 100%;
}
.field select:focus, .field input:focus { outline: 2px solid var(--brass); outline-offset: 1px; }

@media (max-width: 980px) {
  .search-bar { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .search-bar { grid-template-columns: 1fr; margin-top: 24px; box-shadow: none; border: 1px solid var(--line); }
}

/* ---------- Section headers ---------- */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 44px;
}
.section-head h2 { margin-bottom: 10px; }
.section-head .lede { margin: 0; }
@media (max-width: 680px) { .section-head { flex-direction: column; align-items: flex-start; } }

/* ---------- Property cards ---------- */
.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 980px) { .property-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; } }
@media (max-width: 640px) { .property-grid { grid-template-columns: 1fr; gap: 30px; } }

.property-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.property-card:hover { box-shadow: 0 22px 44px rgba(22,33,44,0.12); transform: translateY(-3px); }

.property-card .thumb { position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--paper-dim); }
.property-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.property-card:hover .thumb img { transform: scale(1.06); }

.badge-row { position: absolute; top: 14px; left: 14px; display: flex; gap: 8px; }
.badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 6px 11px;
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
}
.badge.featured { background: var(--brass); color: var(--white); }
.badge.available { background: var(--moss); color: var(--white); }

.property-card .body { padding: 22px 22px 24px; }
.property-card .price { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); }
.property-card .price span { font-family: var(--sans); font-size: 0.78rem; color: var(--stone); font-weight: 500; }
.property-card h3 { margin: 6px 0 4px; font-size: 1.15rem; }
.property-card .loc { font-size: 0.86rem; color: var(--stone); margin-bottom: 14px; }
.property-card .meta {
  display: flex;
  gap: 14px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  padding-top: 14px;
  border-top: 1px solid var(--line);
  margin-bottom: 16px;
}
.property-card .desc { font-size: 0.88rem; margin-bottom: 16px; }
.property-card .view-link {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.property-card .view-link .arrow { transition: transform .25s var(--ease); }
.property-card:hover .view-link .arrow { transform: translateX(4px); }

/* Spotlight (asymmetric featured) layout */
.spotlight-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
}
.spotlight-grid .property-card:first-child .thumb { aspect-ratio: 16/11; }
.spotlight-stack { display: flex; flex-direction: column; gap: 32px; }
@media (max-width: 900px) {
  .spotlight-grid { grid-template-columns: 1fr; }
}

/* ---------- Process steps ---------- */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
@media (max-width: 780px) { .process-grid { grid-template-columns: 1fr; gap: 36px; } }
.process-step .num { font-family: var(--serif); font-size: 0.95rem; color: var(--brass-deep); margin-bottom: 14px; }
.process-step h3 { margin-bottom: 8px; }

/* ---------- Why work with me / trust cards ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.trust-card { background: var(--paper); padding: 34px 28px; }
.trust-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.trust-card p { font-size: 0.92rem; margin: 0; }
@media (max-width: 900px) { .trust-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .trust-grid { grid-template-columns: 1fr; } }

/* ---------- Realtor intro ---------- */
.realtor-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
.realtor-grid figure { margin: 0; border-radius: var(--radius-m); overflow: hidden; }
.realtor-grid img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
@media (max-width: 860px) { .realtor-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- Service areas ---------- */
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 860px) { .areas-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .areas-grid { grid-template-columns: 1fr; } }
.area-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: var(--white);
}
.area-card .eyebrow { margin-bottom: 8px; }
.area-card h3 { margin-bottom: 6px; }
.area-card p { font-size: 0.88rem; margin: 0; }

/* ---------- Contact / inquiry forms ---------- */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-m); padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-field label { font-size: 0.82rem; font-weight: 600; color: var(--ink); }
.form-field label .req { color: var(--brass-deep); }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: var(--paper);
  color: var(--ink);
  width: 100%;
  resize: vertical;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 2px solid var(--brass); outline-offset: 1px; }
.form-note { font-size: 0.8rem; color: var(--stone); margin-top: 14px; }
.form-success { display: none; padding: 18px 20px; background: rgba(75,88,66,0.1); border: 1px solid var(--moss); border-radius: var(--radius-s); color: var(--moss-deep); font-size: 0.92rem; margin-bottom: 18px; }
.form-success.show { display: block; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); color: var(--paper); text-align: center; }
.cta-band h2 { color: var(--white); }
.cta-band p.lede { color: rgba(247,243,234,0.75); margin: 0 auto 30px; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(247,243,234,0.85); padding: 76px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--white); font-family: var(--sans); font-size: 0.82rem; letter-spacing: 0.04em; margin-bottom: 18px; }
.site-footer .logo { color: var(--white); margin-bottom: 14px; }
.site-footer p { color: rgba(247,243,234,0.62); font-size: 0.9rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.site-footer a { font-size: 0.9rem; color: rgba(247,243,234,0.72); }
.site-footer a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; border-top: 1px solid var(--line-dark); font-size: 0.8rem; color: rgba(247,243,234,0.5); flex-wrap: wrap; gap: 12px; }
.footer-social { display: flex; gap: 16px; }

/* ---------- Utility: reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Mobile sticky contact bar ---------- */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 250;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 12px 16px;
  gap: 10px;
  box-shadow: 0 -8px 24px rgba(22,33,44,0.08);
}
@media (max-width: 720px) { .mobile-sticky-cta { display: flex; } body { padding-bottom: 70px; } }
.mobile-sticky-cta a { flex: 1; text-align: center; }

/* ---------- Misc page bits ---------- */
.page-hero {
  padding: 200px 0 64px;
  background: var(--ink);
  color: var(--paper);
  margin-top: -1px;
}
.page-hero .eyebrow { color: #D9B77F; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p.lede { color: rgba(247,243,234,0.75); }
.breadcrumb { font-size: 0.82rem; color: rgba(247,243,234,0.55); margin-bottom: 18px; }
.breadcrumb a { color: rgba(247,243,234,0.8); }
.breadcrumb a:hover { color: var(--white); }

.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.toolbar-filters { display: flex; gap: 12px; flex-wrap: wrap; }
.toolbar-filters select, .toolbar-sort select {
  font-family: var(--sans);
  font-size: 0.86rem;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: var(--white);
}
.results-count { font-size: 0.88rem; color: var(--stone); }

.empty-state { text-align: center; padding: 80px 20px; color: var(--stone); }

/* ---------- Lightbox ---------- */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 400;
  background: rgba(22,33,44,0.94);
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 84vh; border-radius: 4px; }
.lightbox-close { position: absolute; top: 26px; right: 30px; background: none; border: none; color: var(--paper); font-size: 2rem; cursor: pointer; line-height: 1; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(247,243,234,0.12); border: none; color: var(--paper); width: 52px; height: 52px; border-radius: 50%; cursor: pointer; font-size: 1.4rem; }
.lightbox-nav.prev { left: 22px; }
.lightbox-nav.next { right: 22px; }
.lightbox-nav:hover { background: rgba(247,243,234,0.24); }
.lightbox-count { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: rgba(247,243,234,0.7); font-size: 0.85rem; }

/* ---------- Property detail page ---------- */
.detail-header { padding: 168px 0 0; }
.detail-header .top-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; margin-bottom: 26px; }
.detail-header h1 { margin-bottom: 8px; }
.detail-loc { font-size: 1rem; color: var(--stone); }
.detail-price { font-family: var(--serif); font-size: 2rem; color: var(--ink); text-align: right; }
.detail-price span { display: block; font-family: var(--sans); font-size: 0.78rem; color: var(--stone); font-weight: 500; margin-top: 4px; }
.detail-type-badges { display: flex; gap: 10px; margin-bottom: 30px; }

.gallery { display: grid; grid-template-columns: 2fr 1fr; gap: 10px; margin-bottom: 8px; }
.gallery .main-img { grid-row: span 2; position: relative; border-radius: var(--radius-m); overflow: hidden; aspect-ratio: 4/3; cursor: zoom-in; }
.gallery .main-img img { width: 100%; height: 100%; object-fit: cover; }
.gallery .sub-img { position: relative; border-radius: var(--radius-m); overflow: hidden; aspect-ratio: 4/3.2; cursor: zoom-in; }
.gallery .sub-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery .sub-img:hover img, .gallery .main-img:hover img { transform: scale(1.04); }
.gallery-expand {
  position: absolute; bottom: 14px; right: 14px;
  background: rgba(22,33,44,0.72); color: var(--paper);
  font-size: 0.78rem; padding: 8px 14px; border-radius: 20px;
  display: flex; align-items: center; gap: 6px;
}
@media (max-width: 780px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery .main-img { grid-row: auto; aspect-ratio: 4/3; }
  .gallery .sub-img:nth-child(n+3) { display: none; }
}

.detail-body { display: grid; grid-template-columns: 1.55fr 1fr; gap: 64px; align-items: start; margin-top: 64px; }
@media (max-width: 980px) { .detail-body { grid-template-columns: 1fr; gap: 48px; } }

.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px 20px; margin: 26px 0 44px; padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (max-width: 560px) { .info-grid { grid-template-columns: 1fr 1fr; } }
.info-item .label { font-size: 0.74rem; color: var(--stone); font-weight: 600; letter-spacing: 0.02em; margin-bottom: 5px; }
.info-item .value { font-size: 0.98rem; color: var(--ink); font-weight: 500; }

.amenity-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 20px; margin-top: 20px; }
.amenity-item { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; color: var(--ink-soft); padding: 12px 0; border-bottom: 1px solid var(--line); }
.amenity-item .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brass); flex-shrink: 0; }

.sidebar-card {
  position: sticky;
  top: 110px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 30px;
}
.sidebar-card .price { font-family: var(--serif); font-size: 1.6rem; margin-bottom: 4px; }
.sidebar-card .price span { font-family: var(--sans); font-size: 0.8rem; color: var(--stone); font-weight: 500; }
.sidebar-card h3 { font-size: 1.1rem; margin: 4px 0 20px; }
.sidebar-card .divider { margin: 22px 0; }
.sidebar-contact { display: flex; flex-direction: column; gap: 10px; font-size: 0.9rem; }
.sidebar-contact a { font-weight: 600; color: var(--ink); }

.related-strip { margin-top: 88px; }

/* ---------- Focus visibility everywhere ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--paper); padding: 12px 18px; z-index: 500;
}
.skip-link:focus { left: 16px; top: 16px; }
