/* ==========================================================================
   Showpiece Realty — Design System
   Brand colors sampled directly from the company logo:
     blue  #80B7DE  |  ink #0B0B10  |  gray #777777
   Accent "dusk gold" (#C9A24B) added deliberately: it's the one color not in
   the logo, used sparingly as a warm counterpoint to the cool brand blue —
   evokes desert dusk / Strip-at-night without diluting the brand mark.
   ========================================================================== */

:root {
  /* Brand */
  --blue-50:  #eef6fc;
  --blue-100: #d7ebf7;
  --blue-300: #a9d0ec;
  --blue-500: #80b7de; /* logo blue */
  --blue-600: #5a9bcb;
  --blue-700: #3f7fb0;
  --blue-800: #2c5f87;
  --blue-900: #1c3f5b;

  --ink:      #0b0b10; /* logo black */
  --ink-800:  #17171d;
  --ink-700:  #24242c;
  --gray-600: #6b6b70;
  --gray-500: #86868c; /* logo gray ~ #777 tuned for AA contrast on white */
  --gray-300: #c7c7cc;
  --gray-100: #ececee;
  --paper:    #faf9f6;
  --white:    #ffffff;

  --gold-300: #e3c98a;
  --gold-500: #c9a24b; /* dusk accent, used sparingly */
  --gold-700: #8f6f2e;

  --success: #2f8f5b;
  --danger:  #b3432f;

  /* Semantic */
  --color-bg: var(--paper);
  --color-surface: var(--white);
  --color-text: var(--ink);
  --color-text-muted: var(--gray-600);
  --color-border: #e4e2db;
  --color-primary: var(--blue-600);
  --color-primary-ink: var(--blue-900);
  --color-accent: var(--gold-500);

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --step--1: clamp(0.83rem, 0.8rem + 0.15vw, 0.9rem);
  --step-0:  clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.4rem);
  --step-2:  clamp(1.5rem, 1.3rem + 1vw, 1.9rem);
  --step-3:  clamp(1.9rem, 1.5rem + 2vw, 2.6rem);
  --step-4:  clamp(2.4rem, 1.8rem + 3vw, 3.6rem);
  --step-5:  clamp(3rem, 2.1rem + 4.5vw, 5rem);

  /* Layout */
  --container-w: 1240px;
  --container-pad: 1.5rem;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(11,11,16,0.06), 0 1px 1px rgba(11,11,16,0.04);
  --shadow-md: 0 8px 24px -8px rgba(11,11,16,0.18);
  --shadow-lg: 0 24px 60px -16px rgba(11,11,16,0.28);
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0 0 0.5em; font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; line-height: 1.1; color: var(--ink); }
p { margin: 0 0 1em; }
button { font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
:focus-visible { outline: 2px solid var(--blue-600); outline-offset: 3px; }

h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-4); }
h3 { font-size: var(--step-3); }
h4 { font-size: var(--step-2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--step--1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-700);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}
.lede { font-size: var(--step-1); color: var(--color-text-muted); max-width: 60ch; }

/* ---------- Layout helpers ---------- */
.wrap {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.section { padding-block: clamp(3.5rem, 6vw, 7rem); }
.section-tight { padding-block: clamp(2.5rem, 4vw, 4rem); }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.bg-ink { background: var(--ink); color: var(--white); }
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4 { color: var(--white); }
.bg-ink .lede { color: rgba(255,255,255,0.72); }
.bg-blue-50 { background: var(--blue-50); }
.bg-surface { background: var(--color-surface); }

.grid { display: grid; gap: clamp(1.25rem, 3vw, 2.5rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split.reverse { grid-template-columns: 0.9fr 1.1fr; }
@media (max-width: 900px) { .split.reverse { grid-template-columns: 1fr; } }
.split.reverse > :first-child { order: 2; }

/* ---------- Growth-mark motif (echoes the logo's bar/arrow) ---------- */
.ascend-rule {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 18px;
  margin-bottom: 1.1rem;
}
.ascend-rule span { display: block; width: 5px; background: var(--gold-500); border-radius: 1px; }
.ascend-rule span:nth-child(1) { height: 40%; background: var(--blue-500); }
.ascend-rule span:nth-child(2) { height: 65%; background: var(--blue-600); }
.ascend-rule span:nth-child(3) { height: 100%; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.85em 1.6em;
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--ease), background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { background: var(--blue-800); }
.btn-accent { background: var(--blue-500); color: var(--ink); }
.btn-accent:hover { background: var(--blue-600); color: var(--white); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: var(--white); color: var(--ink); }
.btn-lg { padding: 1em 2em; font-size: var(--step-0); }
.btn-block { width: 100%; }

/* ---------- Site header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,249,246,0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: 0.65rem; }
.brand { display: flex; align-items: center; gap: 0.65rem; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; color: var(--ink); }
.brand img { height: 44px; width: auto; }
.brand .brand-realty { color: var(--gray-500); font-weight: 400; }

.primary-nav { display: flex; align-items: center; gap: 1.9rem; }
.primary-nav > ul { display: flex; align-items: center; gap: 1.6rem; }
.primary-nav a.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-700);
  padding: 0.4rem 0;
  position: relative;
}
.primary-nav a.nav-link::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--gold-500);
  transform: scaleX(0); transform-origin: left;
  transition: transform .2s var(--ease);
}
.primary-nav a.nav-link:hover::after,
.primary-nav li.current-menu-item > a.nav-link::after { transform: scaleX(1); }

.has-dropdown { position: relative; }
.has-dropdown > .dropdown {
  position: absolute; top: 100%; left: -1rem; margin-top: 0.75rem;
  background: var(--white); border: 1px solid var(--color-border); border-radius: var(--radius-md);
  box-shadow: var(--shadow-md); min-width: 220px; padding: 0.5rem;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 0.6rem 0.75rem; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 500; color: var(--ink-700); }
.dropdown a:hover { background: var(--blue-50); color: var(--blue-800); }

.header-ctas { display: flex; align-items: center; gap: 0.75rem; }
.header-ctas .btn { padding: 0.6em 1.2em; }
.nav-toggle { display: none; }

@media (max-width: 1080px) {
  .primary-nav { position: fixed; inset: 0 0 0 auto; width: min(86vw, 380px); background: var(--white);
    flex-direction: column; align-items: stretch; padding: 5.5rem 1.5rem 2rem; box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform .28s var(--ease); overflow-y: auto; }
  .primary-nav.open { transform: translateX(0); }
  .primary-nav > ul { flex-direction: column; align-items: stretch; gap: 0.2rem; }
  .primary-nav a.nav-link { padding: 0.75rem 0.25rem; border-bottom: 1px solid var(--color-border); }
  .has-dropdown > .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: none; margin: 0 0 0.5rem; display: none; }
  .has-dropdown.open > .dropdown { display: block; }
  .header-ctas { margin-top: 1.5rem; flex-direction: column; align-items: stretch; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; gap: 5px; width: 30px; height: 22px; background: none;
    border: none; cursor: pointer; padding: 0; z-index: 110;
  }
  .nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s var(--ease), opacity .2s var(--ease); }
  .nav-scrim { position: fixed; inset: 0; background: rgba(11,11,16,0.4); opacity: 0; visibility: hidden; transition: opacity .2s var(--ease); z-index: 99; }
  .nav-scrim.open { opacity: 1; visibility: visible; }
  body.nav-open { overflow: hidden; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(88vh, 800px);
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,16,0.25) 0%, rgba(11,11,16,0.35) 45%, rgba(11,11,16,0.92) 100%);
}
.hero-content { position: relative; z-index: 1; padding-block: clamp(3rem, 9vw, 6rem) clamp(2.5rem, 6vw, 4rem); width: 100%; }
.hero-content .eyebrow { color: var(--blue-300); }
.hero-content .eyebrow::before { background: var(--gold-500); }
.hero h1 { font-size: var(--step-5); max-width: 16ch; color: var(--white); }
.hero .lede { color: rgba(255,255,255,0.82); font-size: var(--step-1); max-width: 55ch; }
.hero-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 1.75rem; }
.hero-stats { display: flex; gap: clamp(1.5rem, 4vw, 3.5rem); margin-top: clamp(2.5rem, 5vw, 4rem); flex-wrap: wrap; }
.hero-stats .stat-num { font-family: var(--font-display); font-size: var(--step-3); color: var(--white); }
.hero-stats .stat-label { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.65); }

.subhero-search {
  position: relative; z-index: 2; margin-top: -46px;
}
.search-card {
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 1.25rem; display: grid; grid-template-columns: 2fr 1fr 1fr auto; gap: 0.75rem; align-items: end;
}
@media (max-width: 780px) { .search-card { grid-template-columns: 1fr; } }
.field label { display: block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-600); margin-bottom: 0.35rem; }
.field input, .field select {
  width: 100%; border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  padding: 0.75em 0.85em; background: var(--paper); color: var(--ink);
}

/* ---------- Cards ---------- */
.card { background: var(--color-surface); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--color-border); transition: box-shadow .2s var(--ease), transform .2s var(--ease); }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.property-card .thumb { position: relative; aspect-ratio: 4/3; background: var(--blue-900); overflow: hidden; }
.property-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.property-card .thumb .tag { position: absolute; top: 12px; left: 12px; background: var(--white); color: var(--ink); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 0.35em 0.8em; border-radius: 999px; }
.property-card .thumb .tag.status-sold { background: var(--ink); color: var(--white); }
.property-card .thumb .tag.status-new { background: var(--gold-500); color: var(--ink); }
.property-card .body { padding: 1.1rem 1.2rem 1.3rem; }
.property-card .price { font-family: var(--font-display); font-size: var(--step-2); margin-bottom: 0.15em; }
.property-card .addr { color: var(--color-text-muted); font-size: 0.92rem; margin-bottom: 0.75rem; }
.property-card .meta { display: flex; gap: 1rem; font-size: 0.85rem; color: var(--gray-600); border-top: 1px solid var(--color-border); padding-top: 0.75rem; }
.property-card .meta strong { color: var(--ink); }
.placeholder-badge { display: inline-block; margin-top: .6rem; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--blue-700); background: var(--blue-50); padding: .3em .7em; border-radius: 999px; }

.team-card { text-align: left; }
.team-card .thumb { aspect-ratio: 1/1; overflow: hidden; }
.team-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.team-card .body { padding: 1.1rem 1.2rem 1.4rem; }
.team-card h3 { font-size: var(--step-1); margin-bottom: 0.1em; }
.team-card .role { color: var(--blue-700); font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 0.6em; }
.team-card .lic { color: var(--gray-500); font-size: 0.78rem; margin-bottom: 0.8em; }
.team-card .contact { display: flex; gap: 0.7rem; font-size: 0.85rem; flex-wrap: wrap; }
.team-card .contact a { color: var(--ink); font-weight: 600; border-bottom: 1px solid var(--gold-500); }

.partner-card { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem; padding: 2rem 1.25rem; text-align: center; }
.partner-card .mark { width: 56px; height: 56px; border-radius: 50%; background: var(--blue-50); display: flex; align-items: center; justify-content: center; color: var(--blue-700); font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; }
.partner-card h4 { font-size: 1rem; margin: 0; }
.partner-card p { font-size: 0.85rem; color: var(--color-text-muted); margin: 0; }

.testimonial-card { padding: 1.75rem; }
.testimonial-card .stars { color: var(--gold-500); letter-spacing: 0.1em; margin-bottom: .75rem; }
.testimonial-card blockquote { margin: 0 0 1rem; font-family: var(--font-display); font-size: var(--step-1); line-height: 1.4; }
.testimonial-card cite { font-style: normal; font-weight: 700; font-size: 0.85rem; }
.testimonial-card .cite-role { color: var(--color-text-muted); font-size: 0.8rem; display: block; }

.area-card { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 5/4; }
.area-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s var(--ease); }
.area-card:hover img { transform: scale(1.06); }
.area-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(11,11,16,0.85) 100%); }
.area-card .label { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; z-index: 1; color: var(--white); }
.area-card .label h3 { color: var(--white); font-size: var(--step-1); margin-bottom: 0.1em; }
.area-card .label span { font-size: 0.82rem; color: rgba(255,255,255,0.75); }

.blog-card .thumb { aspect-ratio: 16/10; overflow: hidden; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .body { padding: 1.1rem 1.2rem 1.4rem; }
.blog-card .cat { color: var(--blue-700); font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: .06em; }
.blog-card h3 { font-size: 1.2rem; margin: 0.4em 0 0.4em; }
.blog-card .excerpt { color: var(--color-text-muted); font-size: 0.92rem; }
.blog-card .meta { font-size: 0.78rem; color: var(--gray-500); margin-top: 0.75rem; }

.resource-card { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.25rem; }
.resource-card .icon { flex: none; width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--blue-50); color: var(--blue-700); display: flex; align-items: center; justify-content: center; font-weight: 700; }
.resource-card .name { font-weight: 700; margin: 0 0 0.15em; }
.resource-card .type { font-size: 0.78rem; color: var(--gray-500); }
.resource-card .dl { margin-left: auto; }

/* ---------- CTA band ---------- */
.cta-band { border-radius: var(--radius-lg); padding: clamp(2.25rem, 5vw, 4rem); position: relative; overflow: hidden; }
.cta-band.ink { background: var(--ink); color: var(--white); }
.cta-band.ink h2 { color: var(--white); }
.cta-band.blue { background: linear-gradient(135deg, var(--blue-800), var(--blue-600)); color: var(--white); }
.cta-band.blue h2 { color: var(--white); }
.cta-band .row { display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }

/* ---------- Steps / process ---------- */
.step-list { counter-reset: step; display: grid; gap: 1.5rem; }
.step { display: flex; gap: 1.1rem; }
.step .num { counter-increment: step; flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); }
.step .num::before { content: counter(step); }
.step h4 { margin-bottom: 0.25em; font-size: 1.05rem; }
.step p { margin: 0; color: var(--color-text-muted); font-size: 0.95rem; }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid .full { grid-column: 1 / -1; }
.form-field label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 0.4em; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 0.85em 1em; border-radius: var(--radius-sm); border: 1px solid var(--color-border);
  background: var(--white);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--shadow-sm); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.78); padding-block: 4rem 1.75rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand { color: var(--white); }
.site-footer .brand .brand-realty { color: var(--gray-300); }
.site-footer h5 { color: var(--white); font-family: var(--font-body); font-size: 0.8rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.site-footer ul li { margin-bottom: 0.6rem; }
.site-footer a:hover { color: var(--blue-300); }
.footer-badges { display: flex; align-items: center; gap: 1rem; margin-top: 1.25rem; }
.footer-bottom { margin-top: 3rem; padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: rgba(255,255,255,0.6); }
.social-row { display: flex; gap: 0.6rem; }
.social-row a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; }
.social-row a:hover { background: var(--blue-500); border-color: var(--blue-500); color: var(--ink); }

/* Equal Housing / Realtor badge (drawn, not a reproduced logo) */
.fh-badge { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; color: rgba(255,255,255,0.65); }
.fh-badge svg { flex: none; }
.fh-badge.on-light { color: var(--gray-600); }

/* ---------- Misc ---------- */
.tag-pill { display: inline-flex; align-items: center; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 0.35em 0.85em; border-radius: 999px; background: var(--blue-50); color: var(--blue-800); }
.divider { height: 1px; background: var(--color-border); border: none; margin: 2.5rem 0; }
.table-simple { width: 100%; border-collapse: collapse; }
.table-simple th, .table-simple td { text-align: left; padding: 0.85rem 1rem; border-bottom: 1px solid var(--color-border); font-size: 0.92rem; }
.table-simple th { font-size: 0.75rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-600); }

.breadcrumb { font-size: 0.82rem; color: var(--gray-500); margin-bottom: 1rem; }
.breadcrumb a:hover { color: var(--blue-700); }

.page-hero { padding-block: clamp(3rem, 7vw, 5.5rem) clamp(2rem, 4vw, 3rem); }
.page-hero.with-photo { position: relative; color: var(--white); padding-block: clamp(5rem, 12vw, 8rem) clamp(3rem, 6vw, 5rem); }
.page-hero.with-photo .hero-media { position: absolute; inset: 0; }
.page-hero.with-photo .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero.with-photo .hero-media::after { content: ""; position: absolute; inset: 0; background: rgba(11,11,16,0.55); }
.page-hero.with-photo .wrap { position: relative; z-index: 1; }
.page-hero.with-photo h1 { color: var(--white); }

.login-box { max-width: 420px; margin-inline: auto; }
.badge-locked { display: inline-flex; align-items: center; gap: .5em; font-size: .8rem; color: var(--gray-600); }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: var(--white); padding: 0.75em 1.25em; z-index: 200; }
.skip-link:focus { left: 1rem; top: 1rem; }

@media (max-width: 900px) {
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
