:root {
  --bg: #f2eadf;
  --surface: #fff;
  --text: #1f2a3b;
  --muted: #4b596b;
  --line: #d4c9bd;
  --brand: #a6422a;
  --brand-dark: #7f3321;
  --radius: 16px;
  --shadow: 0 12px 28px rgba(24, 18, 13, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.15;
  margin: 0 0 0.7rem;
}

p {
  margin: 0 0 0.9rem;
}

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.section {
  padding: 2.6rem 0;
}

.section-soft {
  background: rgba(255, 255, 255, 0.42);
}

.section-heading {
  margin-bottom: 1.4rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--brand);
  font-weight: 800;
  margin-bottom: 0.7rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  margin-top: 0.55rem;
  padding: 0.58rem 0.9rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 14px;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 24px rgba(25, 20, 15, 0.07);
  position: sticky;
  top: 0.45rem;
  z-index: 1200;
}

.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.4rem;
  border-radius: 12px;
  background: transparent;
  transition: transform 220ms ease;
  transform-origin: center;
}

.logo:hover,
.logo:focus-visible {
  transform: translateY(-1px) scale(1.06);
}

.logo img {
  display: block;
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: contrast(1.09) saturate(1.02)
    drop-shadow(0 0 0.2px rgba(10, 28, 67, 0.6));
  transition: filter 220ms ease;
  transform-origin: left center;
}

.logo:hover img,
.logo:focus-visible img {
  filter: contrast(1.12) saturate(1.04)
    drop-shadow(0 4px 10px rgba(10, 28, 67, 0.12));
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  gap: 1.05rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.1;
  display: inline-block;
  padding: 0.42rem 0.6rem;
  border-radius: 10px;
  transition: transform 220ms ease, color 220ms ease;
  transform-origin: center;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  transform: translateY(-1px) scale(1.06);
  color: #0f1f34;
}

.hero {
  padding-bottom: 1rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}

.hero-content {
  padding: 2.6rem 0 1.2rem;
  max-width: 680px;
}

.hero-content h1 {
  font-size: clamp(1.72rem, 3.35vw, 2.95rem);
  line-height: 1.12;
  max-width: 13.2ch;
}

.hero-content p {
  max-width: 58ch;
  font-size: 1rem;
}

.hero-actions {
  margin-top: 1.35rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-photo {
  margin: 1.2rem 0 0;
  width: 100%;
  max-width: 420px;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.7);
}

.grid {
  display: grid;
  gap: 1rem;
}

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

.card,
.listing {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transform-origin: center;
}

.card:hover,
.listing:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 16px 32px rgba(36, 26, 20, 0.14);
}

.card-link {
  color: inherit;
  text-decoration: none;
}

.listing-grid .listing {
  display: grid;
  gap: 0.45rem;
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.listing-grid .listing:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.listing-link {
  text-decoration: none;
  color: inherit;
}

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

.listing-photo {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
  background: #fff;
}

.listing-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.002);
}

.price {
  color: var(--brand);
  font-weight: 800;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  border-top: 1px solid rgba(212, 201, 189, 0.8);
  border-bottom: 1px solid rgba(212, 201, 189, 0.8);
  padding: 0.8rem 0;
}

.stats article {
  border: 0;
  border-right: 1px solid rgba(212, 201, 189, 0.7);
  border-radius: 0;
  padding: 0.55rem 1rem;
  background: transparent;
  box-shadow: none;
}

.stats article:last-child {
  border-right: 0;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 0.2rem;
}

.stat-label {
  margin: 0;
  color: var(--muted);
}

.about {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  align-items: start;
}

.about-panel {
  font-style: italic;
  border: 0;
  background: transparent;
  box-shadow: none;
  border-left: 0;
  border-radius: 0;
  padding: 0;
  margin-top: 0;
  align-self: center;
  opacity: 0.9;
  transform: none;
  transition: none;
}

.about-panel p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.52;
  max-width: 42ch;
}

.about-panel:hover {
  transform: none;
  box-shadow: none;
}

.closing-clean {
  display: grid;
  gap: 1.2rem;
}

.cta {
  background: linear-gradient(145deg, #1f2a37, #2f3f4f 58%, #4d3726);
}

.cta-wrap {
  max-width: 860px;
  display: grid;
  gap: 0.9rem;
}

.cta-wrap h2,
.cta-wrap p {
  color: #fff;
}

.subhero {
  padding-bottom: 0.5rem;
}

.subhero-content {
  padding: 1.6rem 0 0.4rem;
}

.about-page {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.75fr);
  grid-template-areas:
    "intro photo"
    "benefits photo"
    "summary photo"
    "impact impact";
  gap: 1rem 1.9rem;
  align-items: start;
}

.about-copy {
  max-width: 74ch;
  font-size: 0.98rem;
  line-height: 1.6;
}

.about-copy strong {
  color: var(--text);
}

.about-tags {
  grid-area: benefits;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 1.3rem;
  padding: 0.15rem 0 0.1rem;
}

.about-tags article {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  padding: 0.28rem 0;
  border: 0;
  border-bottom: 0;
  background: transparent;
  box-shadow: none;
}

.about-tags img {
  width: 19px;
  height: 19px;
  opacity: 0.82;
}

.about-tags h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.about-photo {
  grid-area: photo;
  margin: 0.15rem 0 0;
  width: 100%;
  max-width: 360px;
  justify-self: end;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(212, 201, 189, 0.7);
  box-shadow: 0 14px 30px rgba(27, 20, 14, 0.11);
}

.about-photo img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(1.07) contrast(1.01);
}

.about-intro {
  grid-area: intro;
}

.about-summary {
  grid-area: summary;
  margin-top: 0.1rem;
}

.about-impact {
  grid-area: impact;
  margin-top: 0.45rem;
  max-width: 92ch;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(212, 201, 189, 0.75);
}

.invest-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  align-items: start;
}

.invest-copy {
  display: grid;
  gap: 1rem;
  max-width: 900px;
}

.invest-copy strong {
  color: var(--text);
}

.invest-calc-promo {
  border: 1px solid #d6b8a4;
  border-radius: 16px;
  padding: 1rem;
  background: linear-gradient(135deg, #fff8f1, #fff);
  box-shadow: 0 14px 28px rgba(48, 34, 24, 0.1);
  display: grid;
  gap: 0.6rem;
}

.invest-calc-promo h2 {
  margin: 0;
  font-size: clamp(1.3rem, 2.8vw, 1.8rem);
}

.invest-calc-promo .btn {
  justify-self: start;
}

.invest-calc-promo .btn-primary {
  background: #d93b33;
}

.invest-calc-promo .btn-primary:hover {
  background: #b72e27;
}

.invest-side {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
}

.invest-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.invest-box-plain {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.invest-box h2 {
  margin-bottom: 0.6rem;
  font-size: 1.35rem;
}

.invest-box ul {
  margin: 0 0 0.8rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.invest-photo {
  margin: 0;
  border-radius: 0;
  overflow: visible;
  border: 0;
  box-shadow: none;
}

.invest-photo img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: contain;
}

.invest-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.invest-cta {
  background: linear-gradient(145deg, #1f2a37, #2f3f4f 58%, #4d3726);
}

.invest-cta-wrap {
  max-width: 940px;
  display: grid;
  gap: 1rem;
}

.invest-cta-wrap h2,
.invest-cta-wrap p {
  color: #fff;
}

.sold-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.listing-description {
  max-width: 90ch;
  display: grid;
  gap: 0.95rem;
}

.listing-description p {
  margin: 0;
  line-height: 1.68;
}

.listing-description ul {
  margin: 0.1rem 0 0.1rem;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
}

.listing-description li::marker {
  color: var(--brand);
}

.listing-map {
  display: grid;
  gap: 0.55rem;
}

.listing-map h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
}

.listing-map p {
  margin: 0;
  color: var(--muted);
}

.listing-map-frame {
  margin-top: 0.4rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.listing-map-frame iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.2rem;
  align-items: stretch;
  padding-top: 1.4rem;
}

.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #1f3347, #2f3f52 62%, #4f3825);
  box-shadow: 0 16px 34px rgba(17, 23, 34, 0.24);
  padding: 1.25rem;
  display: grid;
  gap: 0.55rem;
  min-height: 360px;
}

.contact-card h2 {
  margin: 0 0 0.25rem;
  color: #fff;
}

.contact-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.contact-card strong {
  color: #fff;
}

.contact-card a {
  color: #fff;
  text-underline-offset: 2px;
}

.contact-actions {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.contact-card .btn-primary {
  background: #a6422a;
  color: #fff;
}

.contact-card .btn-primary:hover {
  background: #8d3823;
}

.contact-card .btn-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.contact-map {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-map iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

.sold-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
  display: grid;
  gap: 0.75rem;
}

.sold-time {
  color: var(--brand);
  font-weight: 700;
  margin: 0;
}

.sold-gallery {
  margin-top: 0.2rem;
  padding-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.sold-thumb {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.sold-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.25s ease;
  cursor: pointer;
}

.sold-thumb img:hover {
  transform: scale(1.05);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(12, 15, 22, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox.open {
  display: flex;
}

.lightbox-image {
  max-width: min(92vw, 1280px);
  max-height: 86vh;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-counter {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  margin: 0;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  font-weight: 700;
}

.no-scroll {
  overflow: hidden;
}

.manage-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 1.6rem;
  align-items: start;
}

.manage-intro-copy { display: grid; gap: 0.95rem; }
.manage-intro-copy h2 { margin: 0; font-size: clamp(1.9rem, 3.8vw, 2.8rem); }

.manage-intro-list {
  margin-top: 0.25rem;
  padding-top: 0.35rem;
}

.manage-intro-list h3 {
  margin: 0 0 0.8rem;
  font-size: 1.2rem;
}

.manage-intro-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 1rem;
}

.manage-intro-list li {
  position: relative;
  padding: 0 0 0.55rem 1.25rem;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.45;
  border-bottom: 1px solid rgba(212, 201, 189, 0.7);
}

.manage-intro-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0.02rem;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
}

.manage-intro-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem;
  background: linear-gradient(145deg, #fff, #fff8f0);
  box-shadow: var(--shadow);
}

.manage-intro-panel h3 { margin: 0 0 0.75rem; font-size: 1.2rem; }
.manage-intro-panel ul { margin: 0; padding-left: 1.05rem; display: grid; gap: 0.55rem; color: var(--muted); }

.manage-timeline {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.manage-timeline article {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.manage-timeline .num {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.65rem;
  font-size: 0.92rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #d37d49);
}

.manage-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.manage-services .card {
  cursor: default;
  position: relative;
  border-radius: 16px;
  background:
    linear-gradient(90deg, var(--brand), #d58d55) top / 100% 4px no-repeat,
    linear-gradient(180deg, #fffdf9, #fff);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding-top: 1.12rem;
}

.manage-services .card::after {
  content: "✓";
  position: absolute;
  top: 0.68rem;
  right: 0.88rem;
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 800;
}

.manage-services .benefit-icon {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff8ef;
  font-size: 1rem;
  margin-bottom: 0.55rem;
}

.manage-tariffs {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.manage-tariffs-cta {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
}

.tariff-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 1.2rem 1rem 1rem;
  box-shadow: var(--shadow);
  position: relative;
}

.tariff-card h3 { margin: 0; font-size: clamp(1.45rem, 2.4vw, 2rem); }
.tariff-sub { margin: 0.5rem 0 0.9rem; color: var(--muted); font-weight: 700; }

.tariff-fee,
.tariff-vacancy {
  margin: 0 0 0.95rem;
  padding: 0.62rem 0.72rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff8ef;
  display: grid;
  gap: 0.15rem;
}

.tariff-vacancy { background: #fff; border-color: #ead8cb; }

.tariff-fee span,
.tariff-vacancy span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand);
  font-weight: 800;
}

.tariff-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 0.55rem; }
.tariff-card li { position: relative; padding-left: 1.45rem; }
.tariff-card li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 800; }

.tariff-card.featured {
  border-color: #d96554;
  background: linear-gradient(180deg, #fff, #fff7f4);
}

.manage-cta {
  background: linear-gradient(140deg, #1f2a37, #2f3f4f 58%, #4d3726);
}

.manage-cta-wrap { max-width: 860px; display: grid; gap: 1rem; }
.manage-cta-wrap h2,
.manage-cta-wrap p { color: #fff; }

.page-end-cta {
  background: linear-gradient(140deg, #1f2a37, #2f3f4f 58%, #4d3726);
}

.page-end-cta-wrap {
  max-width: 860px;
  display: grid;
  gap: 1rem;
}

.page-end-cta-wrap h2,
.page-end-cta-wrap p {
  color: #fff;
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  margin-top: 0.75rem;
}

.footer-wrap {
  padding: 0.55rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.footer-wrap p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.2;
  color: rgba(20, 30, 42, 0.82);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .about,
  .invest-side,
  .invest-steps,
  .manage-intro,
  .manage-tariffs,
  .manage-timeline,
  .stats,
  .cards-3,
  .sold-grid,
  .contact-page,
  .manage-services,
  .about-tags {
    grid-template-columns: 1fr;
  }

  .stats {
    border-top: 0;
    border-bottom: 0;
    padding: 0;
  }

  .stats article {
    border-right: 0;
    border-bottom: 1px solid rgba(212, 201, 189, 0.7);
    padding: 0.7rem 0;
  }

  .stats article:last-child {
    border-bottom: 0;
  }

  .hero-photo {
    justify-self: start;
  }

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

  .about-page {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "benefits"
      "photo"
      "summary"
      "impact";
  }

  .about-photo {
    width: min(460px, 100%);
    margin: 0.4rem auto 1rem;
    justify-self: center;
  }

  .listing-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem 1rem;
  }

  .manage-intro-list ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .logo img { height: 40px; }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    padding-top: 0.4rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.55rem 0.6rem;
  }

  .listing-grid-4 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
