:root {
  --primary: #b84a2a;
  --primary-700: #9f3d22;
  --blue-soft: #2a9bb0;
  --sand: #d9b56a;
  --brick: #b84a2a;
  --turquoise: #2a9bb0;
  --forest: #3a7a44;
  --surface-ink: #1c2c3d;

  --muted-bg: #f5f7ec;

  --text: #1f2733;
  --muted: #566273;
  --bg: #f7f3e5;
  --surface: #ffffff;
  --border: #d7dfc9;
  --shadow: 0 10px 30px rgba(15, 58, 100, 0.09);

  --panel-shadow: 0 8px 24px rgba(28, 44, 61, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', 'Manrope', Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, #fff7e8, var(--bg) 28%, #f7f7f0);
  line-height: 1.4;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background: linear-gradient(150deg, #ecf7fa, #deeee5 45%, #fff8ec);
  border-bottom: 1px solid var(--border);
  padding-top: 18px;
}

.header-shell {
  padding-bottom: 28px;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.brand-name {
  font-weight: 800;
  color: var(--surface-ink);
  letter-spacing: 0.04em;
}

.header-link {
  text-decoration: none;
  color: var(--surface-ink);
  border: 1px solid #d1d6cb;
  background: #ffffffb8;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.header-link.tel-chip {
  margin-left: auto;
  border: 1px solid var(--sand);
  background: #fff4d6;
  color: #8c4e17;
  font-weight: 700;
}

.hero-shell {
  background: linear-gradient(145deg, #fff, #fcfbf6);
  border: 1px solid #e6ecda;
  border-radius: 26px;
  padding: clamp(16px, 4vw, 30px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-shell::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  right: -130px;
  top: -80px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.36) 0%, rgba(255, 255, 255, 0) 68%);
  pointer-events: none;
}

.hero-shell::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  left: -150px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(184, 74, 42, 0.14) 0%, rgba(184, 74, 42, 0) 66%);
  pointer-events: none;
}

.hero-shell > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0;
  color: var(--forest);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

h1 {
  margin: 8px 0 10px;
  color: var(--primary);
  font-size: clamp(1.9rem, 4.8vw, 3rem);
  line-height: 1.12;
}

.hero-shell > p {
  margin: 0;
  max-width: 75ch;
  color: #3b4f67;
}

.booking-strip {
  margin: 16px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.booking-chip {
  border: 1px solid #dce8d1;
  background: #f8fdf5;
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 0.87rem;
  font-weight: 600;
  color: #344960;
  line-height: 1.2;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 10px;
  padding: 11px 18px;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

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

.btn-primary {
  background: var(--primary);
  box-shadow: 0 5px 14px rgba(184, 74, 42, 0.24);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: translateX(-120%);
  transition: transform 0.5s ease;
}

.btn-primary:hover::after {
  transform: translateX(120%);
}

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

.btn-small {
  width: fit-content;
  padding: 10px 14px;
}

.btn-outline {
  background: #fff;
  color: var(--primary);
  border: 1px solid #d3ddc7;
  box-shadow: none;
}

.btn-outline:hover {
  background: #fef7f0;
  color: var(--primary-700);
}

.addon-grid {
  align-items: stretch;
}

.addon-card {
  display: grid;
  gap: 10px;
}

.addon-price {
  margin: 0;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 800;
}

.addon-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: #4f6075;
  font-size: 0.9rem;
}

.addon-list li {
  padding-left: 18px;
  position: relative;
}

.addon-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--brick);
}

#selectedService {
  display: none;
}

.section {
  padding: 24px 0 8px;
}

.booking-panel {
  padding-top: 28px;
}

.section-head {
  margin-bottom: 14px;
}

.section-head h2 {
  margin: 0;
  color: var(--primary);
}

.section-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.review-summary {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 8px 0 14px;
}

.review-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
  margin: 8px 0 12px;
}

.trust-pill {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  color: #23415a;
}

.district-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.district-pills .btn {
  border-color: #c8d6c0;
  background: #fbfdf4;
}

.district-pills .btn.district-active {
  background: #fff4e4;
  border-color: var(--brick);
  color: #8f4f17;
}

.district-pills .btn:hover {
  border-color: #b8cbb0;
}

.booking-flow-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.booking-step {
  display: grid;
  gap: 6px;
}

.booking-step h3 {
  margin: 0;
  color: #23415a;
  font-size: 1rem;
}

.booking-step p {
  margin: 0;
  color: #4f6076;
  font-size: 0.93rem;
}

.step-num {
  margin: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
}

.review-summary span {
  border: 1px solid #d6e4f2;
  background: #f8fbff;
  border-radius: 999px;
  padding: 8px 12px;
  color: #324d6a;
  font-size: 0.9rem;
  font-weight: 600;
}

.review-card {
  display: grid;
  gap: 8px;
}

.review-title {
  color: var(--primary);
  font-weight: 700;
}

.review-stars {
  color: #e49b2b;
  letter-spacing: 1px;
  font-weight: 800;
}

.review-card p {
  margin: 0;
  color: #4a5b70;
  font-size: 0.9rem;
}

.panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  background: #ffffffcc;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--panel-shadow);
  padding: 16px;
}

.panel-actions {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.panel-actions .btn {
  flex: 1;
}

.panel-item label,
.field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.84rem;
  color: #42526d;
  font-weight: 600;
}

.panel-item input,
.panel-item select,
input,
textarea,
select {
  width: 100%;
  border: 1px solid #cbd5e4;
  border-radius: 10px;
  background: #fff;
  padding: 10px 12px;
  font: inherit;
  color: var(--text);
}

.panel-item input,
.panel-item select,
input:focus,
textarea:focus,
select:focus {
  outline: none;
}

.panel-item input:focus,
.panel-item select:focus,
input:focus,
textarea:focus,
select:focus {
  box-shadow: 0 0 0 3px rgba(15, 58, 100, 0.14);
  border-color: var(--blue-soft);
}

.panel-note {
  margin: 8px 0 0;
  color: #6a7588;
  font-size: 0.9rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.reviews-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 4px 18px rgba(11, 35, 71, 0.08);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(184, 74, 42, 0.18);
  border-radius: 16px;
  transform: translateY(0.1px);
  pointer-events: none;
}

.card::after {
  content: '';
  position: absolute;
  width: 2px;
  left: 0;
  top: 22px;
  bottom: 22px;
  background: linear-gradient(180deg, transparent, rgba(184, 74, 42, 0.32), transparent);
}

.service-card h3 {
  margin: 0;
  color: var(--primary);
  font-size: 1.03rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-card p {
  color: #4d5d6f;
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.standard-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.feature-card {
  border-radius: 20px;
}

.feature-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #fff5eb;
  border: 1px solid #ffd8bf;
}

.feature-card h3 {
  color: var(--primary);
  margin: 0;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-card p {
  margin: 8px 0 0;
  color: #4e5f73;
  font-size: 0.93rem;
}

.apartments {
  align-items: stretch;
}

.apartment-card {
  padding: 0;
  overflow: hidden;
  display: grid;
  gap: 0;
}

.apartment-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.apartment-content {
  padding: 14px;
  display: grid;
  gap: 8px;
}

.apt-topline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
}

.apartment-content h3 {
  margin: 0;
  font-size: 1.05rem;
}

.apt-status {
  color: #0e6b2f;
  font-size: 0.82rem;
  border: 1px solid rgba(12, 107, 47, 0.2);
  border-radius: 999px;
  padding: 5px 9px;
  background: #ecfcf0;
  white-space: nowrap;
  font-weight: 700;
}

.apartment-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #dce5f1;
  border-bottom: 1px solid #dce5f1;
  padding: 8px 0;
  display: grid;
  gap: 6px;
}

.apartment-meta li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  font-size: 0.9rem;
}

.apartment-meta span {
  color: #56647a;
}

.apt-footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.apt-price {
  margin: 0;
  font-weight: 800;
  color: var(--primary);
  font-size: 1.05rem;
}

.map-layout {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.35fr 1fr;
  align-items: center;
}

.map-frame {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(11, 35, 71, 0.08);
  background: #fff;
  min-height: 260px;
}

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

.map-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: #4d5d6f;
  font-size: 0.95rem;
}

.map-highlights li {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
}

.map-highlights a {
  color: var(--primary);
}

.availability-wrap {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  overflow-x: auto;
}

.availability-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.availability-table th,
.availability-table td {
  border-bottom: 1px solid #dbe4f0;
  text-align: left;
  padding: 10px 12px;
  white-space: nowrap;
  font-size: 0.9rem;
}

.availability-table th {
  background: #f5f9ff;
  color: #2f4260;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.availability-table td:last-child,
.availability-table th:last-child {
  text-align: center;
}

.availability-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 5px 10px;
  font-weight: 700;
  font-size: 0.82rem;
}

.availability-status.free {
  background: #e8fff0;
  color: #14723a;
  border: 1px solid #9fd9ae;
}

.availability-status.booked {
  background: #fff3f1;
  color: #b13b2b;
  border: 1px solid #f3bcb2;
}

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

.faq-list details {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #2f4362;
  outline: none;
}

.faq-list p {
  margin: 10px 0 0;
  color: #4c5d72;
  font-size: 0.93rem;
  line-height: 1.5;
}

.grid-cols-2 {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  margin-top: 8px;
}

.grid-cols-2 .card,
.grid-cols-2 section {
  padding: 16px;
}

.contacts-inner {
  display: grid;
  gap: 8px;
  color: #42526d;
}

.lead-form {
  display: grid;
  gap: 12px;
}

.section-note {
  margin: 12px 0 0;
  color: #6a7384;
}

.hidden {
  display: none;
}

.card-top-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 10px 14px 0;
}

.card-top-meta-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.apt-badge {
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.73rem;
  font-weight: 700;
}

.apt-badge--sale {
  background: #fff2e4;
  color: #8f4f13;
  border: 1px solid #ffd0b5;
}

.apt-badge--new {
  background: #e8f7f9;
  color: #176d7d;
  border: 1px solid #b6dce5;
}

.apt-badge--comfort {
  background: #eef7ee;
  color: #2c683f;
  border: 1px solid #bde0c2;
}

.card-tag {
  font-size: 0.75rem;
  color: #41516d;
  background: #f4f8ff;
  border: 1px solid #d4e0f0;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.card-top-meta {
  align-items: stretch;
}

.card-top-meta-left {
  gap: 6px;
}

.compare-wrap {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  overflow-x: auto;
  box-shadow: var(--panel-shadow);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.compare-table th,
.compare-table td {
  border-bottom: 1px solid #dbe4f0;
  padding: 10px 12px;
  text-align: left;
  font-size: 0.9rem;
}

.compare-table th {
  background: #f5f9ff;
  color: #2f4260;
}

.compare-table tr td:first-child {
  font-weight: 700;
  color: #2d3e5a;
  width: 30%;
}

.compare-table td:not(:first-child) {
  white-space: nowrap;
}

.lead-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 12px;
}

input,
textarea,
select {
  transition: border-color .2s ease, box-shadow .2s ease;
}

.message {
  margin: 0;
  font-weight: 600;
  min-height: 1.3em;
}

.footer {
  padding: 26px 0 40px;
  color: #66758c;
}

.sticky-booking {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.93rem;
  box-shadow: 0 12px 30px rgba(15, 58, 100, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.sticky-booking:hover {
  background: var(--primary-700);
}

@media (max-width: 960px) {
  .brand-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .brand-row::-webkit-scrollbar {
    display: none;
  }

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

  .lead-grid,
  .grid-cols-2 {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    padding: 16px;
  }

  .brand-row {
    gap: 8px;
    padding-bottom: 2px;
  }

  .header-link.tel-chip {
    margin-left: 0;
  }

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

  .review-summary {
    margin-top: 12px;
  }

  .sticky-booking {
    left: 16px;
    right: 16px;
    text-align: center;
  }
}
