/* ============================================================
   Keystone Realty — shared stylesheet
   ============================================================ */

:root {
  --navy-950: #0b1720;
  --navy-900: #0f2233;
  --navy-800: #16324a;
  --navy-700: #234a68;

  --brass: #ad8a56;
  --brass-light: #c9ab7c;
  --brass-dark: #8a6b3f;

  --paper: #f1ede2;
  --paper-alt: #e8e1cf;
  --ink: #16232c;
  --ink-soft: #55636b;
  --ink-faint: #7c8890;

  --line: #dad0ba;
  --line-on-dark: rgba(241, 237, 226, 0.14);
  --white: #ffffff;

  --radius: 3px;
  --radius-lg: 6px;
  --shadow-sm: 0 1px 2px rgba(11, 23, 32, 0.07);
  --shadow-md: 0 10px 30px -8px rgba(11, 23, 32, 0.25);

  --container: 1180px;
  --font-serif: "Fraunces", Georgia, "Iowan Old Style", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.6em;
  color: var(--navy-950);
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
}

button {
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: 1rem;
}

.wrap {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (min-width: 640px) {
  .wrap {
    padding-inline: 2.25rem;
  }
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brass);
  color: var(--navy-950);
  padding: 0.75rem 1.25rem;
  z-index: 200;
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

section {
  padding-block: 5rem;
}

@media (max-width: 640px) {
  section {
    padding-block: 3.25rem;
  }
}

.section-head {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--brass);
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.on-dark .eyebrow {
  color: var(--brass-light);
}

.on-dark .eyebrow::before {
  background: var(--brass-light);
}

.on-dark h1,
.on-dark h2,
.on-dark h3 {
  color: var(--paper);
}

.on-dark p {
  color: rgba(241, 237, 226, 0.72);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.9rem 1.9rem;
  border-radius: var(--radius);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--brass);
  color: var(--navy-950);
}

.btn-primary:hover {
  background: var(--brass-light);
}

.btn-ghost-light {
  border-color: rgba(241, 237, 226, 0.4);
  color: var(--paper);
}

.btn-ghost-light:hover {
  border-color: var(--paper);
  background: rgba(241, 237, 226, 0.08);
}

.btn-outline {
  border-color: var(--navy-800);
  color: var(--navy-900);
}

.btn-outline:hover {
  background: var(--navy-900);
  color: var(--paper);
}

.btn-block {
  width: 100%;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-950);
  border-bottom: 1px solid var(--line-on-dark);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--paper);
}

.brand-mark {
  color: var(--brass-light);
  flex-shrink: 0;
}

.brand-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.01em;
}

.brand-text em {
  font-style: italic;
  font-weight: 300;
  color: var(--brass-light);
  margin-left: 0.15em;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}

.site-nav a {
  color: rgba(241, 237, 226, 0.78);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-block: 0.4rem;
  border-bottom: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.site-nav a:hover {
  color: var(--paper);
}

.site-nav a[aria-current="page"] {
  color: var(--paper);
  border-color: var(--brass);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 1px;
  margin-inline: 9px;
  background: var(--paper);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 780px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--navy-950);
    border-bottom: 1px solid var(--line-on-dark);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
  }

  .site-nav.is-open {
    max-height: 360px;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 1.5rem 1.5rem;
  }

  .site-nav li {
    width: 100%;
  }

  .site-nav a {
    display: block;
    padding-block: 0.9rem;
    border-bottom: 1px solid var(--line-on-dark);
    width: 100%;
  }

  .site-nav a[aria-current="page"] {
    border-bottom-color: var(--line-on-dark);
    border-left: 2px solid var(--brass);
    padding-left: 0.75rem;
  }

  .nav-toggle.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(165deg, var(--navy-900), var(--navy-950) 70%);
  color: var(--paper);
  overflow: hidden;
  padding-block: 7.5rem 6.5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    repeating-linear-gradient(90deg, var(--line-on-dark) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, var(--line-on-dark) 0 1px, transparent 1px 96px);
  mask-image: radial-gradient(ellipse at 60% 20%, black, transparent 72%);
}

.hero-inner {
  position: relative;
  max-width: 720px;
}

.hero .eyebrow {
  color: var(--brass-light);
}

.hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.25rem);
  color: var(--paper);
  margin-bottom: 0.5em;
}

.hero h1 em {
  color: var(--brass-light);
  font-style: italic;
  font-weight: 300;
}

.hero-lede {
  font-size: 1.15rem;
  color: rgba(241, 237, 226, 0.75);
  max-width: 46ch;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.75rem;
  border-top: 1px solid var(--line-on-dark);
  padding-top: 2rem;
}

.hero-stats dt {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  color: var(--paper);
}

.hero-stats dd {
  margin: 0.15rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(241, 237, 226, 0.6);
}

/* ---------- Page header (non-home hero) ---------- */
.page-header {
  background: var(--navy-950);
  color: var(--paper);
  padding-block: 4.5rem 3.75rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: repeating-linear-gradient(90deg, var(--line-on-dark) 0 1px, transparent 1px 96px);
  mask-image: radial-gradient(ellipse at 80% 0%, black, transparent 70%);
}

.page-header .wrap {
  position: relative;
}

.page-header h1 {
  color: var(--paper);
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  margin-bottom: 0.4em;
}

.page-header p {
  color: rgba(241, 237, 226, 0.72);
  max-width: 56ch;
  font-size: 1.05rem;
  margin: 0;
}

/* ---------- Value / feature grid ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.value-card {
  background: var(--paper);
  padding: 2.5rem 2.25rem;
}

.value-card .num {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--brass);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  display: block;
}

.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5em;
}

.value-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 860px) {
  .value-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Featured strip on home ---------- */
.featured-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.featured-head .section-head {
  margin-bottom: 0;
}

/* ---------- Listings ---------- */
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.15s ease;
}

.pill:hover {
  border-color: var(--brass);
  color: var(--navy-900);
}

.pill.is-active {
  background: var(--navy-950);
  border-color: var(--navy-950);
  color: var(--paper);
}

.sort-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sort-group label {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.select {
  padding: 0.6rem 2.2rem 0.6rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="6"><path d="M0 0l5 6 5-6z" fill="%2355636b"/></svg>') no-repeat right 0.9rem center;
  appearance: none;
  font-size: 0.85rem;
  color: var(--ink);
  cursor: pointer;
}

.results-count {
  font-size: 0.85rem;
  color: var(--ink-faint);
  margin: 0 0 1.75rem;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

@media (max-width: 980px) {
  .listing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .listing-grid {
    grid-template-columns: 1fr;
  }

  .toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .sort-group {
    justify-content: space-between;
  }
}

.listing-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.listing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.listing-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.listing-media svg {
  width: 100%;
  height: 100%;
  display: block;
}

.tag-type {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: rgba(11, 23, 32, 0.62);
  color: var(--paper);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  backdrop-filter: blur(2px);
}

.tag-status {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  background: var(--brass);
  color: var(--navy-950);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
}

.listing-body {
  padding: 1.4rem 1.5rem 1.6rem;
}

.listing-price {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--navy-950);
  margin-bottom: 0.2rem;
}

.listing-address {
  font-weight: 600;
  font-size: 0.98rem;
  margin-bottom: 0.1rem;
}

.listing-locale {
  color: var(--ink-faint);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.listing-meta {
  display: flex;
  gap: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.listing-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}

.listing-meta svg {
  width: 15px;
  height: 15px;
  color: var(--brass-dark);
  flex-shrink: 0;
}

.empty-state {
  text-align: center;
  padding: 4rem 1.5rem;
  color: var(--ink-faint);
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
}

/* ---------- About ---------- */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.story-figure {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}

.story-figure svg {
  width: 100%;
  height: 100%;
  display: block;
}

.pull-quote {
  border-left: 2px solid var(--brass);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--navy-900);
}

.pull-quote cite {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 0.75rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.timeline-item {
  background: var(--paper);
  padding: 2rem 1.75rem;
}

.timeline-item .year {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--brass-dark);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.6rem;
}

.timeline-item p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 860px) {
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .timeline {
    grid-template-columns: 1fr;
  }
}

.on-dark.section-alt {
  background: var(--navy-950);
}

.section-alt {
  background: var(--paper-alt);
}

/* ---------- Agents ---------- */
.agent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

@media (max-width: 980px) {
  .agent-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .agent-grid {
    grid-template-columns: 1fr;
  }
}

.agent-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
}

.agent-photo {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--paper);
  letter-spacing: 0.02em;
}

.agent-info {
  padding: 1.5rem 1.25rem 1.75rem;
}

.agent-info h3 {
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.agent-role {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin-bottom: 0.9rem;
  display: block;
}

.agent-bio {
  font-size: 0.87rem;
  color: var(--ink-soft);
  margin-bottom: 1.1rem;
}

.agent-contact {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
}

.agent-contact a {
  color: var(--ink-soft);
  transition: color 0.15s ease;
}

.agent-contact a:hover {
  color: var(--brass-dark);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 3.5rem;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }
}

.field {
  margin-bottom: 1.4rem;
}

.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  color: var(--navy-900);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(173, 138, 86, 0.15);
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 520px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}

.field-error {
  display: none;
  color: #a3402f;
  font-size: 0.78rem;
  margin-top: 0.4rem;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #a3402f;
}

.field.has-error .field-error {
  display: block;
}

.form-note {
  font-size: 0.78rem;
  color: var(--ink-faint);
  margin-top: 1rem;
}

.form-success {
  display: none;
  align-items: flex-start;
  gap: 0.9rem;
  background: #eef3ea;
  border: 1px solid #cddcc4;
  color: #38512f;
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
}

.form-success.is-visible {
  display: flex;
}

.form-success svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.contact-card {
  background: var(--navy-950);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-card h3 {
  color: var(--paper);
  font-size: 1.2rem;
}

.contact-card address {
  font-style: normal;
  color: rgba(241, 237, 226, 0.75);
  line-height: 1.9;
  margin-bottom: 1.75rem;
}

.contact-line {
  display: flex;
  gap: 0.9rem;
  padding-block: 1rem;
  border-top: 1px solid var(--line-on-dark);
  font-size: 0.9rem;
}

.contact-line:first-of-type {
  border-top: none;
}

.contact-line svg {
  flex-shrink: 0;
  color: var(--brass-light);
  margin-top: 0.1rem;
}

.contact-line a {
  color: var(--paper);
}

.contact-line a:hover {
  color: var(--brass-light);
}

.map-block {
  margin-top: 1.75rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-on-dark);
}

.map-block svg {
  width: 100%;
  display: block;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy-950);
  color: var(--paper);
  text-align: center;
  padding-block: 5rem;
}

.cta-band h2 {
  color: var(--paper);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 0.5em;
}

.cta-band p {
  color: rgba(241, 237, 226, 0.7);
  max-width: 50ch;
  margin-inline: auto 2rem;
  margin-bottom: 2.25rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950);
  color: rgba(241, 237, 226, 0.7);
  border-top: 1px solid var(--line-on-dark);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 3rem;
  padding-block: 4rem 3rem;
}

@media (max-width: 780px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
}

.footer-brand .brand-text {
  color: var(--paper);
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  max-width: 34ch;
}

.footer-col h3 {
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.1rem;
}

.footer-col ul li {
  margin-bottom: 0.7rem;
}

.footer-col a {
  font-size: 0.9rem;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--paper);
}

.footer-col address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.9;
}

.footer-bottom {
  border-top: 1px solid var(--line-on-dark);
  padding-block: 1.5rem;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
