:root {
  --color-ink: #1c1f1a;
  --color-forest: #244237;
  --color-moss: #4f6b4e;
  --color-sand: #f6f1e7;
  --color-clay: #d6c6af;
  --color-sky: #e6eef0;
  --font-display: "Manrope";
  --font-body: "Manrope";
}

body {
  background: linear-gradient(135deg, #f6f1e7 0%, #eef2ed 40%, #e3ebe8 100%);
  color: var(--color-ink);
  font-family: var(--font-body), system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  margin: 0;
}

h1,
h2,
h3,
h4,
.font-display {
  font-family: var(--font-display), system-ui, -apple-system, sans-serif;
}

a {
  text-decoration: none;
  cursor: pointer;
}

button {
  cursor: pointer;
}

.container-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem 2rem;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(36, 66, 55, 0.15);
  box-shadow: 0 20px 40px rgba(28, 31, 26, 0.08);
  backdrop-filter: blur(12px);
}

.card-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

@media (min-width: 1024px) {
  .card-grid-3 {
    grid-template-columns: repeat(3, minmax(240px, 1fr));
  }
}

.input-base {
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(28, 31, 26, 0.2);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.button-primary {
  background: linear-gradient(135deg, #244237 0%, #496c52 100%);
  color: #fefcf7;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(36, 66, 55, 0.2);
}

.button-secondary {
  background: transparent;
  border: 1px solid rgba(36, 66, 55, 0.5);
  color: #244237;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(36, 66, 55, 0.2);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(36, 66, 55, 0.1);
  color: #244237;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  flex-wrap: wrap;
}

/* Utility classes replacing Tailwind */
.container-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1rem 4rem;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

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

.justify-end {
  justify-content: flex-end;
}

.grid {
  display: grid;
}

.block {
  display: block;
}

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

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.min-h-screen {
  min-height: 100vh;
}

.overflow-hidden {
  overflow: hidden;
}

.bg-cover {
  background-size: cover;
}

.bg-center {
  background-position: center;
}

.object-cover {
  object-fit: cover;
}

.text-left {
  text-align: left;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-5 {
  padding: 1.25rem;
}

.p-4 {
  padding: 1rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-2 {
  padding: 0.5rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-5 > * + * {
  margin-top: 1.25rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.space-y-8 > * + * {
  margin-top: 2rem;
}

.space-y-10 > * + * {
  margin-top: 2.5rem;
}

.space-y-12 > * + * {
  margin-top: 3rem;
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.9rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.leading-relaxed {
  line-height: 1.6;
}

.font-semibold {
  font-weight: 600;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-full {
  border-radius: 999px;
}

.h-40 {
  height: 10rem;
}

.h-48 {
  height: 12rem;
}

.h-20 {
  height: 5rem;
}

.w-28 {
  width: 7rem;
}

.border-b {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.\-top-2 {
  top: -0.5rem;
}

.\-right-2 {
  right: -0.5rem;
}

h3 {
  margin: 0;
}

.hero {
  text-align: center;
}

.section-block {
  margin-top: 6rem;
}

.section-block:first-child {
  margin-top: 0;
}

.container-shell > .section-block + .section-block {
  margin-top: 6rem;
}

.hero-panel {
  position: relative;
  border-radius: 2.5rem;
  padding: 2.5rem;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(136, 163, 143, 0.25), transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(36, 66, 55, 0.01), transparent 45%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(246, 241, 231, 0.55)),
    url("./barsovagora.webp");
  background-size: auto, auto, auto, cover;
  background-position: center, center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  border: none;
  box-shadow: 0 24px 60px rgba(28, 31, 26, 0.12);
}

.hero-panel::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(36, 66, 55, 0.22), transparent 70%);
  filter: blur(2px);
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2rem;
  z-index: 1;
}

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

.hero-kicker {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(36, 66, 55, 0.8);
}

.hero-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #13241c;
}

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #3f4b45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero-stats {
  display: grid;
  gap: 1rem;
}

.stat-card {
  padding: 1.25rem 1.5rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(36, 66, 55, 0.14);
  box-shadow: 0 14px 28px rgba(28, 31, 26, 0.08);
  font-weight: 600;
  color: #244237;
}

.stat-text {
  font-size: 1rem;
  line-height: 1.4;
}

.house-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-card {
  border-radius: 2.5rem;
  padding: 1.5rem;
}

.hero-card-inner {
  border-radius: 2rem;
}

.hero-orb {
  background: radial-gradient(circle at top, #88a38f 0%, #244237 65%);
}

.admin-card {
  transition: box-shadow 0.2s ease;
}

.admin-card:hover {
  box-shadow: 0 16px 32px rgba(28, 31, 26, 0.12);
}

.max-w-120 {
  max-width: 120px;
}

.max-w-220 {
  max-width: 220px;
}

.min-h-110 {
  min-height: 110px;
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .md\:text-5xl {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-panel {
    padding: 6rem 2.5rem;
  }

  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .house-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* House card */
.card {
  border-radius: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.cardHover {
  transition: box-shadow 0.2s ease;
}

.link:hover .cardHover {
  box-shadow: 0 16px 32px rgba(28, 31, 26, 0.12);
}

.image {
  height: 14rem;
  background-size: cover;
  background-position: center;
  flex: 0 0 auto;
}

.content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1 1 auto;
}

.titleRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.description {
  font-size: 0.9rem;
  color: #3f4b45;
  line-height: 1.5;
  margin: 0;
}

.priceRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* House page */
.house-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.houseGrid {
  display: grid;
  gap: 1.5rem;
}

.leftColumn {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.titleBlock {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.title {
  font-family: var(--font-display), "Times New Roman", serif;
  font-size: 2.25rem;
  font-weight: 600;
  margin: 0;
}

.subtitle {
  font-size: 0.9rem;
  color: #3f4b45;
  margin: 0;
  width: fit-content;
}

.description {
  font-size: 1rem;
  color: #3f4b45;
  line-height: 1.6;
  margin: 0;
}

.priceCard {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(36, 66, 55, 0.15);
  box-shadow: 0 20px 40px rgba(28, 31, 26, 0.08);
  backdrop-filter: blur(12px);
  border-radius: 1.5rem;
  padding: 1.25rem;
}

.priceLabel {
  font-size: 0.9rem;
  color: #3f4b45;
}

.priceValue {
  font-size: 1.5rem;
  font-weight: 600;
}

.house-content {
  color: #3f4b45;
  line-height: 1.65;
}

.house-content h3 {
  margin: 1.2rem 0 0.5rem;
}

.house-content ul {
  margin: 0.5rem 0 0.5rem 1.2rem;
  padding: 0;
}

.container-shell ul {
  margin: 0.5rem 0 0.5rem 1.2rem;
  padding: 0;
  color: #3f4b45;
  line-height: 1.6;
}

@media (min-width: 900px) {
  .houseGrid {
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .houseGrid {
    grid-template-columns: minmax(0, 1fr) 400px;
  }
}

/* Gallery */
.gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero {
  position: relative;
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.55);
}

.heroImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.thumbs {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.thumbButton {
  border: none;
  padding: 0;
  background: transparent;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(36, 66, 55, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.thumbButton:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(28, 31, 26, 0.12);
}

.thumbButton:focus-visible {
  box-shadow: 0 10px 18px rgba(28, 31, 26, 0.12);
}

.thumbActive {
  box-shadow: 0 12px 20px rgba(28, 31, 26, 0.18);
}

.thumbImage {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.house-aside {
  position: sticky;
  top: 110px;
}

@media (max-width: 899px) {
  .hero {
    aspect-ratio: 3 / 2;
  }

  .priceCard {
    text-align: center;
  }

  .priceCard .button-primary {
    width: 100%;
  }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 241, 231, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(36, 66, 55, 0.12);
}

.header .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header .left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.header .logo {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(36, 66, 55, 0.1);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  position: relative;
}

.header .logo img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 14px;
}

.header .logoImage {
  width: 28px;
  height: 28px;
}

.header .brand {
  font-family: var(--font-display), "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1c1f1a;
  white-space: nowrap;
}

.header .right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header .phone {
  color: #244237;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}

.header .ctaButton {
  border: none;
  cursor: pointer;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  background: linear-gradient(135deg, #244237 0%, #496c52 100%);
  color: #fefcf7;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header .ctaLabel {
  display: inline;
}

.header .ctaIcon {
  display: none;
  width: 16px;
  height: 16px;
  line-height: 0;
}

.header .ctaButton:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(36, 66, 55, 0.2);
}

/* Footer */
.footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(36, 66, 55, 0.12);
  background: rgba(246, 241, 231, 0.6);
}

.footer .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
}

.footer .left {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}

.footer .logo {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(36, 66, 55, 0.1);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  position: relative;
}

.footer .logo img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 14px;
}

.footer .logoImage {
  width: 28px;
  height: 28px;
}

.footer .brandBlock {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer .brand {
  font-family: var(--font-display), "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1c1f1a;
}

.footer .phone {
  color: #244237;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer .phoneInline {
  color: #244237;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  display: none;
}

.footer .middle {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.footer .right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.footer .ctaButton {
  border: none;
  cursor: pointer;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  background: linear-gradient(135deg, #244237 0%, #496c52 100%);
  color: #fefcf7;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer .ctaButton:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(36, 66, 55, 0.2);
}

.footer .links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer .docButton {
  border: none;
  background: none;
  color: #244237;
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
  cursor: pointer;
  width: fit-content;
  align-self: flex-end;
  text-decoration: none;
}

.footer .madeWith {
  display: block;
  text-align: center;
  margin: 0.35rem auto 0.9rem;
  font-size: 0.75rem;
  line-height: 1.2;
  padding: 0.2rem 0.8rem;
  color: rgba(36, 66, 55, 0.8);
  text-decoration: none;
  width: fit-content;
}

.footer .madeWith:hover {
  text-decoration: underline;
}

.footer .legal {
  border-top: 1px solid rgba(36, 66, 55, 0.12);
  margin-top: 0.75rem;
  padding: 0.9rem 1.5rem 1.1rem;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(36, 66, 55, 0.85);
}

.footer .legal a {
  color: #244237;
  text-decoration: underline;
}

@media (max-width: 899px) {
  .hero-copy {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-actions button,
  .hero-actions a {
    width: 100%;
  }

  .cta-copy {
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
    align-items: center;
  }

  .cta-actions button,
  .cta-actions a {
    width: 100%;
  }

  .header .phone {
    display: none;
  }

  .header .ctaButton {
    padding: 0.65rem;
    min-width: 40px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header .ctaLabel {
    display: none;
  }

  .header .ctaIcon {
    display: inline-flex;
  }

  .footer .inner {
    flex-direction: column;
    align-items: center;
  }

  .footer .right {
    width: 100%;
    align-items: center;
  }

  .footer .phone {
    display: none;
  }

  .footer .phoneInline {
    display: inline-flex;
  }

  .footer .docButton {
    align-self: center;
  }

  .footer .madeWith {
    width: fit-content;
    margin-top: 0.25rem;
    margin-bottom: 0.8rem;
    padding: 0.2rem 0.6rem;
  }

  .footer .legal {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(28, 31, 26, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal {
  width: min(420px, 100%);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 24px 40px rgba(28, 31, 26, 0.2);
  border: 1px solid rgba(36, 66, 55, 0.15);
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.modal-overlay.is-hidden {
  display: flex;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.modal-overlay.is-hidden .modal {
  opacity: 0;
  transform: translateY(10px) scale(0.98);
}

.modalHeader {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.modalTitle {
  font-family: var(--font-display), "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
}

.modalSubtitle {
  margin: 0.3rem 0 0;
  font-size: 0.9rem;
  color: #59645f;
}

.modalPhone {
  display: inline-block;
  margin-top: 0.2rem;
  color: #244237;
  font-weight: 600;
  text-decoration: none;
}

.closeButton {
  border: none;
  background: transparent;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: #3f4b45;
}

.form {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hp-wrap {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hp-input {
  width: 1px;
  height: 1px;
  opacity: 0;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #3f4b45;
}

.input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(28, 31, 26, 0.2);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: #3f4b45;
  line-height: 1.4;
}

.consent-checkbox {
  margin-top: 0.08rem;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: #244237;
  cursor: pointer;
  flex: 0 0 auto;
}

.consent-text {
  min-width: 0;
}

.consent-link {
  color: #244237;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.submitButton {
  border: none;
  cursor: pointer;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  background: #244237;
  color: #fffdf7;
}

.is-hidden {
  display: none;
}

.small-note {
  font-size: 0.85rem;
  color: #3f4b45;
}

.extra-card {
  border-radius: 1.5rem;
  padding: 1.25rem;
}

.map-frame {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(36, 66, 55, 0.12);
  box-shadow: 0 16px 32px rgba(28, 31, 26, 0.08);
}

.map-frame iframe {
  display: block;
  border: 0;
}

.cta-section {
  padding: 2.5rem;
}

.cta-grid {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}

.cta-map .map-frame {
  height: 100%;
}

.cta-map iframe {
  height: 100%;
  min-height: 260px;
}

.cta-phone {
  color: #244237;
  text-decoration: none;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.cta-phone:hover {
  text-decoration: underline;
}

@media (min-width: 960px) {
  .cta-grid {
    grid-template-columns: 1.1fr 1fr;
  }
}

/* Notepub additions */
.search-page-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.search-page-form .input {
  flex: 1 1 260px;
}

.search-page-results .card {
  min-height: 120px;
}

.search-card .content {
  justify-content: center;
}

.search-page-results ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.search-item-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem;
  border-radius: 1rem;
  border: 1px solid rgba(36, 66, 55, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: inherit;
}

.search-item-thumb {
  width: 64px;
  height: 64px;
  border-radius: 0.75rem;
  object-fit: cover;
  flex: 0 0 auto;
}

.search-item-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.search-item-title {
  font-weight: 700;
}

.search-item-snippet,
.muted {
  color: #3f4b45;
}

.snowmobile-pricing,
.snowmobile-features {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.snowmobile-gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.snowmobile-photo {
  border-radius: 1.25rem;
  overflow: hidden;
  padding: 0;
}

.snowmobile-photo img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.snowmobile-card {
  border-radius: 1.5rem;
  padding: 1.25rem;
}

.snowmobile-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.snowmobile-price {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  color: #244237;
}

.snowmobile-list {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
  color: #3f4b45;
  line-height: 1.55;
}

.snowmobile-cta {
  border-radius: 1.5rem;
  padding: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.snowmobile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

@media (min-width: 900px) {
  .snowmobile-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .snowmobile-photo img {
    height: 340px;
  }

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