:root {
  color-scheme: light;
  --color-ink: #16231d;
  --color-muted: #5e6c64;
  --color-subtle: #eef3ef;
  --color-surface: #ffffff;
  --color-paper: #f8f5ee;
  --color-primary: #0d5c45;
  --color-primary-strong: #08392d;
  --color-secondary: #8d4f24;
  --color-secondary-strong: #633512;
  --color-blue: #234c63;
  --color-line: #d9e1dc;
  --color-success: #1f6a3c;
  --color-warning: #8a4c14;
  --shadow-soft: 0 18px 45px rgb(13 44 33 / 12%);
  --shadow-card: 0 12px 28px rgb(13 44 33 / 9%);
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --container: 1180px;
  --font-heading: Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-primary-strong);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--color-secondary-strong);
}

.text-link {
  color: var(--color-primary);
  font-weight: 800;
  text-decoration-thickness: 2px;
}

:focus-visible {
  outline: 3px solid #b96a2a;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--color-ink);
  color: white;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100vw - 32px));
  margin-inline: auto;
}

.narrow {
  width: min(780px, calc(100vw - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(248 245 238 / 94%);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgb(22 35 29 / 10%);
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-ink);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-symbol {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background: var(--color-primary);
  color: #fff;
  box-shadow: inset 0 -8px 16px rgb(0 0 0 / 14%);
}

.brand-name {
  display: grid;
  line-height: 1.05;
}

.brand-name span {
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--color-ink);
  font-weight: 700;
  text-decoration: none;
}

.nav-links a[aria-current="page"] {
  color: var(--color-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  color: var(--color-ink);
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: auto;
  background: currentColor;
  content: "";
}

.menu-toggle-lines::before {
  transform: translateY(-7px);
}

.menu-toggle-lines::after {
  transform: translateY(5px);
}

.mobile-menu {
  display: none;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 11px 17px;
  background: var(--color-primary);
  color: white;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--color-primary-strong);
  color: white;
  box-shadow: var(--shadow-card);
  transform: translateY(-1px);
}

.button.secondary {
  background: var(--color-surface);
  color: var(--color-primary-strong);
  border-color: var(--color-line);
}

.button.secondary:hover {
  background: var(--color-subtle);
  color: var(--color-primary-strong);
}

.button.copper {
  background: var(--color-secondary);
}

.button.copper:hover {
  background: var(--color-secondary-strong);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-secondary-strong);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-heading);
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 7vw, 78px);
  max-width: 930px;
}

h2 {
  font-size: clamp(30px, 4.2vw, 48px);
}

h3 {
  font-size: clamp(22px, 2.5vw, 28px);
}

p {
  margin: 0;
}

.lead {
  max-width: 720px;
  color: var(--color-muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100dvh - 76px));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--color-paper);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(248 245 238 / 96%) 0%, rgb(248 245 238 / 88%) 43%, rgb(248 245 238 / 16%) 74%),
    image-set(url("images/cincinnati-property-management-hero.webp") type("image/webp"), url("images/cincinnati-property-management-hero.jpg") type("image/jpeg"));
  background-position: center;
  background-size: cover;
  content: "";
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 74px;
  background: linear-gradient(180deg, transparent, var(--color-paper));
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: clamp(64px, 10vw, 118px) 0 88px;
}

.hero-copy {
  max-width: 760px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-row {
  position: relative;
  z-index: 2;
  margin-top: -38px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-line);
  box-shadow: var(--shadow-soft);
}

.trust-item {
  min-height: 118px;
  padding: 20px;
  background: var(--color-surface);
}

.trust-item strong {
  display: block;
  color: var(--color-primary-strong);
  font-size: 24px;
  line-height: 1.1;
}

.trust-item span {
  display: block;
  margin-top: 7px;
  color: var(--color-muted);
  font-weight: 650;
}

.section {
  padding: var(--space-9) 0;
}

.section.tight {
  padding: var(--space-7) 0;
}

.section.surface {
  background: var(--color-surface);
}

.section.dark {
  background: var(--color-primary-strong);
  color: #f7fbf7;
}

.section.dark h2,
.section.dark h3,
.section.dark .lead {
  color: #f7fbf7;
}

.section.dark .eyebrow {
  color: #e3aa73;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

.section-header .lead {
  max-width: 560px;
}

.grid {
  display: grid;
  gap: var(--space-5);
}

.grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  box-shadow: 0 1px 0 rgb(22 35 29 / 4%);
}

.service-card,
.blog-card,
.property-card,
.testimonial-card,
.content-card {
  padding: 22px;
}

.service-card h2,
.blog-card h2,
.property-card h2,
.content-card h2,
.side-cta h2,
.toc h2 {
  font-size: 25px;
  line-height: 1.16;
}

.icon-box {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius-sm);
  background: var(--color-subtle);
  color: var(--color-primary);
}

.service-card p,
.blog-card p,
.property-card p,
.testimonial-card p,
.content-card p {
  color: var(--color-muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 68px);
}

.media-panel {
  position: relative;
}

.media-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.floating-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 260px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgb(255 255 255 / 94%);
  box-shadow: var(--shadow-card);
  color: var(--color-ink);
}

.process-list {
  counter-reset: process;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-line);
}

.process-step {
  counter-increment: process;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  padding: 24px;
  background: var(--color-surface);
}

.process-step::before {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--color-primary);
  color: white;
  content: counter(process);
  font-weight: 900;
}

.property-toolbar,
.blog-toolbar {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, minmax(120px, 1fr)) auto;
  gap: 12px;
  align-items: end;
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

label {
  display: grid;
  gap: 6px;
  color: var(--color-ink);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #bdcac2;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  background: #fff;
  color: var(--color-ink);
  font: inherit;
}

textarea {
  min-height: 126px;
  resize: vertical;
}

.drawer-trigger {
  display: none;
}

.results-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 26px 0 18px;
  color: var(--color-muted);
  font-weight: 750;
}

.property-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.property-card:hover,
.property-card:focus-within {
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.property-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--color-subtle);
}

.property-card-body {
  padding: 18px;
}

.property-price {
  color: var(--color-primary-strong);
  font-size: 24px;
  font-weight: 900;
}

.property-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
  padding: 0;
  list-style: none;
}

.property-facts li,
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 3px 10px;
  background: var(--color-subtle);
  color: var(--color-primary-strong);
  font-size: 13px;
  font-weight: 850;
}

.badge.copper {
  background: #f5e6d7;
  color: #6b3512;
}

.empty-state,
.loading-state {
  display: grid;
  gap: 10px;
  padding: 28px;
  border: 1px dashed #afbeb5;
  border-radius: var(--radius-lg);
  background: #fff;
}

.skeleton {
  min-height: 16px;
  border-radius: var(--radius-xs);
  background: linear-gradient(90deg, #edf2ee, #fafafa, #edf2ee);
  background-size: 220% 100%;
  animation: shimmer 1.4s linear infinite;
}

.blog-toolbar {
  grid-template-columns: 1fr auto auto auto;
}

.featured-post {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.featured-post img,
.blog-card img,
.article-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.featured-post-content {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(24px, 5vw, 44px);
}

.blog-card {
  overflow: hidden;
  padding: 0;
}

.blog-card-content {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.blog-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.meta {
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 750;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 750;
}

.breadcrumbs a {
  color: var(--color-muted);
}

.page-hero {
  padding: 72px 0 42px;
  background: linear-gradient(180deg, var(--color-surface), var(--color-paper));
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 280px;
  gap: 56px;
  align-items: start;
}

.article-body {
  font-size: 18px;
}

.article-body > * + * {
  margin-top: 22px;
}

.article-body h2 {
  margin-top: 42px;
  font-size: 34px;
}

.article-body h3 {
  margin-top: 30px;
}

.toc,
.side-cta {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 12px;
  padding: 18px;
}

.toc a {
  color: var(--color-muted);
  font-weight: 750;
  text-decoration: none;
}

.callout,
.quote {
  padding: 22px;
  border-left: 5px solid var(--color-secondary);
  border-radius: var(--radius-md);
  background: var(--color-subtle);
}

.quote {
  color: var(--color-primary-strong);
  font-family: var(--font-heading);
  font-size: 25px;
  line-height: 1.3;
}

.content-blocks {
  display: grid;
  gap: var(--space-6);
}

.faq {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  overflow: hidden;
}

.faq-button {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  padding: 16px 18px;
  background: transparent;
  color: var(--color-ink);
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.faq-button::after {
  content: "+";
  font-size: 24px;
}

.faq-button[aria-expanded="true"]::after {
  content: "-";
}

.faq-panel {
  display: none;
  padding: 0 18px 18px;
  color: var(--color-muted);
}

.faq-panel.is-open {
  display: block;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field-full {
  grid-column: 1 / -1;
}

.helper {
  color: var(--color-muted);
  font-size: 13px;
}

.form-help,
.form-error {
  margin: 0;
  font-size: 14px;
}

.form-help {
  color: var(--color-muted);
}

.form-error {
  color: #9f1d20;
  font-weight: 800;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.page-number {
  min-width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  color: var(--color-ink);
  font-weight: 850;
  text-decoration: none;
}

.page-number[aria-current="page"] {
  background: var(--color-primary);
  color: white;
}

.property-detail-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.property-detail-hero img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.fact-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: var(--color-line);
}

.fact-bar div {
  padding: 18px;
  background: var(--color-surface);
}

.site-footer {
  padding: 58px 0 30px;
  background: var(--color-ink);
  color: #eaf0ec;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 32px;
}

.site-footer a {
  color: #eaf0ec;
}

.footer-list {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

.mobile-sticky-cta {
  display: none;
}

@keyframes shimmer {
  to {
    background-position: -220% 0;
  }
}

@media (max-width: 1040px) {
  .nav-actions .button.secondary,
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .mobile-menu {
    position: fixed;
    inset: 77px 0 auto 0;
    display: none;
    border-bottom: 1px solid var(--color-line);
    background: var(--color-surface);
    box-shadow: var(--shadow-soft);
  }

  .mobile-menu.is-open {
    display: block;
  }

  .mobile-menu ul {
    display: grid;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 18px;
  }

  .mobile-menu a {
    display: block;
    min-height: 46px;
    padding: 10px 8px;
    color: var(--color-ink);
    font-weight: 850;
    text-decoration: none;
  }

  .grid.cols-4,
  .grid.cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .property-toolbar {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-toolbar {
    grid-template-columns: 1fr 1fr;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .toc,
  .side-cta {
    position: static;
  }
}

@media (max-width: 760px) {
  .container,
  .narrow {
    width: calc(100vw - 32px);
  }

  .site-header {
    position: sticky;
  }

  .nav-shell {
    min-height: 68px;
  }

  .brand-name span {
    display: none;
  }

  .nav-actions .button {
    display: none;
  }

  .mobile-menu {
    inset-top: 69px;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgb(248 245 238 / 96%) 0%, rgb(248 245 238 / 86%) 58%, rgb(248 245 238 / 70%) 100%),
      image-set(url("images/cincinnati-property-management-hero.webp") type("image/webp"), url("images/cincinnati-property-management-hero.jpg") type("image/jpeg"));
    background-position: 60% center;
  }

  .hero-inner {
    padding: 42px 0 68px;
  }

  h1 {
    font-size: clamp(36px, 10.8vw, 48px);
  }

  .hero-actions,
  .section-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .trust-row {
    margin-top: -22px;
  }

  .trust-grid,
  .fact-bar {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .section-header {
    display: grid;
    gap: 14px;
  }

  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4,
  .split,
  .featured-post,
  .property-detail-hero {
    grid-template-columns: 1fr;
  }

  .property-toolbar {
    display: none;
  }

  .property-toolbar.is-open {
    display: grid;
    grid-template-columns: 1fr;
  }

  .drawer-trigger {
    display: inline-flex;
    margin-top: 20px;
  }

  .blog-toolbar {
    grid-template-columns: 1fr;
  }

  .results-meta {
    display: grid;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .floating-note {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

  .process-step {
    grid-template-columns: 52px 1fr;
    padding: 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 12px max(10px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--color-line);
    background: rgb(248 245 238 / 96%);
    backdrop-filter: blur(14px);
  }

  .mobile-sticky-cta.is-visible {
    display: grid;
  }

  body:has(.mobile-sticky-cta.is-visible) {
    padding-bottom: 74px;
  }
}

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