:root {
  --bg: #fbf8f3;
  --surface: #ffffff;
  --ink: #111827;
  --ink-soft: #374151;
  --muted: #6b7280;
  --line: rgba(17, 24, 39, 0.1);
  --brand: #ea580c;
  --brand-2: #7c3aed;
  --brand-3: #0ea5e9;
  --radius-lg: 20px;
  --radius-md: 12px;
  --shadow: 0 26px 60px rgba(17, 24, 39, 0.12);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --header-h: 4.1rem;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink-soft);
  background: linear-gradient(180deg, #fff 0%, var(--bg) 40%, #f5f3ff 100%);
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.75rem;
  z-index: 200;
  padding: 0.5rem 1rem;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-md);
  font-weight: 600;
}

.skip-link:focus {
  left: 0.75rem;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.95rem, 3.8vw, 2.7rem);
  margin: 0 0 0.6rem;
}

h3 {
  font-size: 1.15rem;
  margin: 0 0 0.35rem;
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--brand);
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--brand-2);
}

code {
  font-size: 0.85em;
  background: #e2e8f0;
  padding: 0.12em 0.35em;
  border-radius: 4px;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
}

.logo__mark {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2), var(--brand-3));
  border-radius: 10px;
}

.logo__text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.logo__accent {
  font-weight: 600;
  color: var(--brand-2);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle__icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 20px;
  height: 14px;
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.nav-toggle__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem 1.5rem;
}

.site-nav__list a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.site-nav__list a:hover {
  color: var(--ink);
}

.site-nav__cta {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff !important;
  text-decoration: none !important;
}

.site-nav__cta:hover {
  filter: brightness(1.08);
  color: #fff !important;
}

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

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(244, 246, 248, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.2rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.18s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }

  .site-nav__list a {
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav__cta {
    text-align: center;
    margin-top: 0.35rem;
  }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: min(88vh, 820px);
  padding: 2.2rem 1.25rem 2.8rem;
  overflow: hidden;
  display: grid;
  align-items: center;
  background: #ffffff;
}

.hero__image {
  position: absolute;
  inset-block: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(96vw, 1760px);
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
  border-radius: 32px;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero__overlay {
  position: absolute;
  inset-block: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(96vw, 1760px);
  z-index: 1;
  background: rgba(17, 24, 39, 0.28);
  border-radius: 32px;
}

.hero__container {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.12fr 0.62fr;
  gap: 1.9rem;
  align-items: end;
}

.hero__content {
  max-width: 760px;
  padding: 2.8rem 2.1rem;
  color: #f8fafc;
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.72), rgba(30, 41, 59, 0.5));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  backdrop-filter: blur(8px);
  box-shadow: 0 32px 70px rgba(17, 24, 39, 0.24);
}

.eyebrow {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fbbf24;
  margin: 0 0 1rem;
}

.hero__title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 600;
  margin: 0 0 0.9rem;
  letter-spacing: -0.03em;
  color: #fff;
  text-wrap: balance;
}

.hero__title em {
  font-style: italic;
  font-weight: 600;
  color: #93c5fd;
}

.hero__lede {
  font-size: 1.04rem;
  max-width: 48ch;
  margin-bottom: 1.4rem;
  color: #e5e7eb;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.hero__pills {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hero__pills li {
  padding: 0.36rem 0.68rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero__panel {
  align-self: stretch;
  justify-self: end;
  width: min(100%, 360px);
  display: grid;
  align-content: center;
  gap: 0.7rem;
  padding: 1.5rem 1.35rem 1.2rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 54px rgba(17, 24, 39, 0.2);
}

.hero__panel-label {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  color: #4f46e5;
}

.hero__panel-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.2;
  color: #111827;
}

.hero__stats {
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.hero__stats li {
  display: grid;
  gap: 0.12rem;
  padding: 0.58rem 0.5rem;
  border-radius: 12px;
  background: #eef2ff;
  border: 1px solid #dbeafe;
  text-align: center;
}

.hero__stats strong {
  font-size: 1rem;
  color: #1f2937;
}

.hero__stats span {
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b7280;
}

.hero__panel-link {
  justify-self: start;
  margin-top: 0.45rem;
  font-size: 0.87rem;
  font-weight: 800;
  color: #1d4ed8;
  text-decoration: none;
}

.hero__panel-link:hover {
  color: #7c3aed;
}

.hero-search {
  display: grid;
  gap: 0.75rem;
}

.hero-search__services {
  margin: 0;
  padding: 0;
  border: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hero-search__services legend {
  width: 100%;
  margin-bottom: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.hero-search__services label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.36rem 0.6rem;
  border-radius: 999px;
  border: 1px solid #c7d2fe;
  background: #eef2ff;
  color: #312e81;
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
}

.hero-search__services input {
  margin: 0;
  accent-color: #4f46e5;
}

.hero-search__filters {
  display: grid;
  gap: 0.5rem;
}

.hero-search__filters label {
  display: grid;
  gap: 0.2rem;
}

.hero-search__filters span {
  font-size: 0.72rem;
  font-weight: 700;
  color: #6b7280;
}

.hero-search__filters select {
  appearance: none;
  width: 100%;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #111827;
  border-radius: 10px;
  padding: 0.5rem 0.6rem;
  font-size: 0.85rem;
  font-family: inherit;
  font-weight: 600;
}

.hero-search__submit {
  margin-top: 0.2rem;
  border: 0;
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, #ea580c, #7c3aed);
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(124, 58, 237, 0.25);
}

.hero-search__submit:hover {
  filter: brightness(1.05);
}

.hero__fade {
  position: absolute;
  z-index: 2;
  right: clamp(1rem, 4vw, 3rem);
  bottom: clamp(1rem, 3.5vw, 2.4rem);
  display: grid;
  gap: 0.34rem;
}

.hero__fade-line {
  width: 56px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.9));
}

@media (max-width: 980px) {
  .hero {
    min-height: min(92vh, 900px);
    padding: 1.4rem 1rem 1.8rem;
  }

  .hero__image {
    width: min(100vw, 1600px);
    border-radius: 24px;
  }

  .hero__overlay {
    width: min(100vw, 1600px);
    border-radius: 24px;
  }

  .hero__container {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .hero__content {
    padding: 2.2rem 1.35rem;
  }

  .hero__panel {
    justify-self: stretch;
    width: 100%;
    padding: 1.2rem 1rem 1rem;
  }

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

  .hero__fade {
    display: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
}

.btn--primary:hover {
  filter: brightness(1.08);
  color: #fff;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
}

/* ——— Sections ——— */
.section {
  padding: 4.2rem 1.25rem;
}

.section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section__inner--narrow {
  max-width: 520px;
  text-align: center;
}

.section__head {
  max-width: 48ch;
  margin-bottom: 2rem;
}

.section__head p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.section__title--single-line {
  white-space: nowrap;
  font-size: clamp(1.7rem, 3.1vw, 2.45rem);
}

.listing-results-note {
  margin: 0 0 1rem;
  color: #475569;
  font-weight: 600;
  min-height: 1.2rem;
}

.section--listings {
  background: var(--surface);
  box-shadow: 0 -8px 40px rgba(17, 24, 39, 0.05);
}

.listing-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.listing-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: grid;
  grid-template-rows: 360px auto;
}

.listing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.1);
}

.listing-card__image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.listing-card__body {
  padding: 0.5rem 0.75rem 0.55rem;
}

.listing-card__tag {
  margin: 0 0 0.1rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-2);
}

.listing-card h3 {
  margin: 0 0 0.15rem;
  font-size: 0.95rem;
  line-height: 1.2;
}

.listing-card__meta {
  margin: 0 0 0.2rem;
  font-size: 0.74rem;
  line-height: 1.35;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.listing-card__price {
  margin: 0;
  font-weight: 700;
  font-size: 0.84rem;
  color: #1d4ed8;
}

.listing-card__hitarea {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 3;
}

.listing-card__hint {
  margin: 0.4rem 0 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: #7c3aed;
}

.section--services {
  background: linear-gradient(180deg, #fef3c7 0%, #fff 100%);
}

.feature-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.feature-grid li {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.section--gallery {
  background: linear-gradient(180deg, #ede9fe 0%, #fff 100%);
}

.section__head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(90px, 130px);
  gap: 0.85rem;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.gallery-grid img:nth-child(1) { grid-column: 1 / 8; grid-row: 1 / 4; }
.gallery-grid img:nth-child(2) { grid-column: 8 / 13; grid-row: 1 / 3; }
.gallery-grid img:nth-child(3) { grid-column: 8 / 13; grid-row: 3 / 5; }
.gallery-grid img:nth-child(4) { grid-column: 1 / 8; grid-row: 4 / 5; }

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(140px, 200px);
  }
  .gallery-grid img:nth-child(1),
  .gallery-grid img:nth-child(2),
  .gallery-grid img:nth-child(3),
  .gallery-grid img:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }
}

.feature-grid p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

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

.section__inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 820px) {
  .section__inner--split {
    grid-template-columns: 1fr;
  }
}

.areas-panel {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #0f172a 0%, #1e3a5f 100%);
  color: #e2e8f0;
  box-shadow: var(--shadow);
}

.areas-panel__title {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  color: #fff;
}

.areas-list {
  margin: 0;
  padding-left: 1.1rem;
  line-height: 1.65;
  font-size: 0.95rem;
}

.section--contact {
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 7.5rem;
  background:
    radial-gradient(ellipse 80% 55% at 12% 0%, rgba(234, 88, 12, 0.09), transparent 58%),
    radial-gradient(ellipse 70% 50% at 88% 8%, rgba(124, 58, 237, 0.08), transparent 55%),
    linear-gradient(180deg, #fff 0%, #fff7ed 38%, #ecfeff 72%, #f8fafc 100%);
}

.section--contact::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5rem;
  background: linear-gradient(180deg, transparent, #fff);
  pointer-events: none;
}

.contact__inner {
  position: relative;
  z-index: 1;
  max-width: 1040px;
}

.contact__head {
  max-width: 42rem;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.contact__lede {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.section--contact h2 {
  margin-bottom: 0.65rem;
}

.section--contact h2.contact-title {
  margin-bottom: 0.85rem;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}

.contact-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: #0f766e;
}

.contact__layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
  align-items: stretch;
}

.contact__column {
  display: flex;
  min-width: 0;
  min-height: 100%;
}

.contact__aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-actions .btn {
  width: 100%;
  min-height: 2.85rem;
}

.contact-actions__wa {
  box-shadow: 0 12px 28px rgba(234, 88, 12, 0.22);
}

.contact-actions__ghost {
  color: #334155;
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(15, 23, 42, 0.18);
}

.contact-actions__ghost:hover {
  color: #0f172a;
  background: #fff;
  border-color: rgba(15, 23, 42, 0.4);
}

.contact-panel {
  flex: 1;
  width: 100%;
  min-height: 100%;
  padding: 0.35rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.07);
  display: flex;
  flex-direction: column;
}

.contact-panel--form .inquiry-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 0;
}

.contact-panel__header {
  flex: 0 0 auto;
  padding: 0.7rem 0.85rem 0.25rem;
}

.contact-details__title,
.contact-panel--form .inquiry-form__title {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.contact-details__subtitle,
.inquiry-form__subtitle {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.contact-panel__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.contact-details__card {
  gap: 1rem;
  padding: 1.15rem 1.2rem 1.25rem;
}

.contact-panel__card,
.contact-list__item {
  padding: 0.85rem 1rem;
  border-radius: calc(var(--radius-md) + 2px);
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.06);
}

.contact-list {
  list-style: none;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  justify-content: space-between;
}

.contact-list__item--highlight {
  background: linear-gradient(135deg, #ecfdf5, #f0fdfa);
  border-color: rgba(15, 118, 110, 0.18);
}

.contact-list__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.contact-list a {
  font-size: 1.02rem;
  font-weight: 700;
  color: #0f766e;
  text-decoration: none;
}

.contact-list a:hover {
  color: #0d9488;
  text-decoration: underline;
}

.contact-list__text {
  margin: 0;
  font-size: 0.98rem;
  color: #0f172a;
  font-weight: 600;
  line-height: 1.45;
}

.contact-list__hint {
  display: block;
  margin-top: 0.22rem;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 400;
}

.listing-modal[hidden] {
  display: none;
}

.listing-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
}

.listing-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}

.listing-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100vw - 2rem));
  margin: min(10vh, 4rem) auto;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.35);
}

.listing-modal__close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  font-size: 1.35rem;
  line-height: 1;
  color: #fff;
  background: rgba(15, 23, 42, 0.65);
  cursor: pointer;
}

.listing-modal__image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.listing-modal__body {
  padding: 1rem 1rem 1.2rem;
}

.listing-modal__tag {
  margin: 0 0 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #7c3aed;
}

.listing-modal__body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}

.listing-modal__meta {
  margin: 0 0 0.5rem;
  color: #475569;
}

.listing-modal__price {
  margin: 0 0 0.95rem;
  color: #1d4ed8;
  font-weight: 800;
}

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

  .contact__column {
    min-height: auto;
  }

  .contact-panel {
    min-height: auto;
  }

  .contact__column:last-child {
    order: -1;
  }

  .contact-list {
    justify-content: flex-start;
  }

  .contact-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-actions .btn {
    width: auto;
    flex: 1 1 12rem;
  }
}

@media (max-width: 760px) {
  .section--contact {
    padding-bottom: 6rem;
  }

  .contact__head {
    margin-bottom: 2rem;
  }
}

/* ——— Footer ——— */
.site-footer {
  margin-top: 0;
  padding: 3rem 1.25rem 2.5rem;
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.site-footer__brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.25rem;
}

.site-footer__meta {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.site-footer__copy {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ——— Upgrade: trust, inquiry, skeleton, modal details ——— */
.section__title--single-line {
  white-space: normal;
}

@media (max-width: 640px) {
  .section__title--single-line {
    font-size: clamp(1.35rem, 5vw, 1.85rem);
  }
}

.section--trust {
  background: linear-gradient(180deg, #ecfdf5 0%, #fff 100%);
}

.section--trust .section__head {
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.trust__block {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.trust__block h3 {
  font-size: 1rem;
  color: var(--brand);
  margin-bottom: 0.35rem;
}

.trust__block p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.listing-card--skeleton {
  pointer-events: none;
}

.listing-skeleton {
  background: linear-gradient(90deg, #f1f5f9 0%, #e2e8f0 50%, #f8fafc 100%);
  background-size: 200% 100%;
  animation: listing-shimmer 1.2s ease-in-out infinite;
  border-radius: 8px;
}

.listing-skeleton--media {
  height: 360px;
  width: 100%;
}

.listing-skeleton--line {
  height: 12px;
  margin: 0.5rem 0.75rem;
}

.listing-skeleton--short {
  width: 55%;
}

@keyframes listing-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.listing-grid__more {
  text-align: center;
  margin: 1.25rem 0 0.5rem;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.inquiry-form__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 1.15rem 1.2rem 1.25rem;
  min-height: 0;
}

.inquiry-form::before {
  display: none;
}

.inquiry-form__header {
  padding-top: 0;
}

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

.inquiry-form__field,
.inquiry-form label {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}

.inquiry-form__field--full {
  flex: 1;
  margin-top: 0.1rem;
}

.inquiry-form__field--full textarea {
  flex: 1;
  min-height: 7rem;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  box-sizing: border-box;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 12px;
  background: #f8fafc;
  color: var(--ink);
  min-height: 2.85rem;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.inquiry-form input:hover,
.inquiry-form textarea:hover {
  background: #fff;
  border-color: rgba(17, 24, 39, 0.2);
}

.inquiry-form textarea {
  min-height: 7rem;
  line-height: 1.55;
  resize: vertical;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.inquiry-form input:focus-visible,
.inquiry-form textarea:focus-visible {
  outline: none;
  background: #fff;
  border-color: #0f766e;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.16);
}

.inquiry-form__error,
.inquiry-form__success {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
}

.inquiry-form__error {
  color: #b91c1c;
}

.inquiry-form__success {
  color: #047857;
}

.inquiry-form__submit {
  width: 100%;
  min-height: 3rem;
  margin-top: auto;
  font-size: 1rem;
  box-shadow: 0 14px 30px rgba(234, 88, 12, 0.2);
}

.listing-modal__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 1rem;
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
}

.listing-modal__details dt {
  font-weight: 700;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.listing-modal__details dd {
  margin: 0.15rem 0 0;
  color: var(--ink);
  font-weight: 600;
}

.listing-modal__wa {
  display: inline-flex;
  margin-bottom: 0.65rem;
  margin-right: 0.5rem;
}

.listing-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

@media (max-width: 640px) {
  .inquiry-form__card {
    padding: 1rem 0.95rem 1.05rem;
  }

  .inquiry-form__grid,
  .listing-modal__details {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .listing-skeleton {
    animation: none;
  }
}
