:root {
  --primary: #9c5c33;
  --primary-700: #7d4624;
  --blue-soft: #4d8fb2;
  --sand: #d5b07a;
  --brick: #ae6032;
  --turquoise: #5f9fb8;
  --forest: #4d7359;
  --surface-ink: #20303f;

  --muted-bg: #f6f1e9;

  --text: #1f2733;
  --muted: #617081;
  --bg: #f6f0e7;
  --surface: #ffffff;
  --border: rgba(133, 109, 84, 0.16);
  --shadow: 0 24px 60px rgba(31, 39, 51, 0.08);

  --panel-shadow: 0 20px 48px rgba(32, 48, 63, 0.12);
}


* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', 'Manrope', Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(213, 176, 122, 0.15), transparent 24%),
    linear-gradient(180deg, #fbf7f2 0%, var(--bg) 32%, #f4efe8 100%);
  line-height: 1.55;
}

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

.site-header {
  position: relative;
  background: linear-gradient(145deg, #efe6d8 0%, #f7f0e6 40%, #f4efe8 100%);
  border-bottom: 1px solid var(--border);
  padding-top: 20px;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.7), transparent 24%),
    radial-gradient(circle at 85% 20%, rgba(93, 143, 166, 0.14), transparent 18%),
    radial-gradient(circle at 65% 82%, rgba(156, 92, 51, 0.12), transparent 20%);
  pointer-events: none;
}

.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;
  }
}

.hero-shell--premium {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 34px;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.hero-lead {
  max-width: 62ch;
  font-size: 1.05rem;
  color: #445465;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-soft {
  background: rgba(255,255,255,0.72);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-highlight {
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(246,240,231,0.8));
  border: 1px solid rgba(133, 109, 84, 0.12);
  border-radius: 20px;
  padding: 16px;
  display: grid;
  gap: 6px;
}

.hero-highlight-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--surface-ink);
}

.hero-highlight-label {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-showcase {
  display: grid;
  gap: 14px;
  align-content: center;
}

.hero-card {
  border-radius: 28px;
  padding: 22px;
  border: 1px solid rgba(133, 109, 84, 0.12);
  box-shadow: 0 18px 40px rgba(31, 39, 51, 0.08);
}

.hero-card--main {
  background: linear-gradient(180deg, #fffdf9 0%, #f7f1e8 100%);
}

.hero-card--accent {
  background: linear-gradient(135deg, #20303f 0%, #32485d 100%);
  color: #fff;
}

.hero-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  color: var(--surface-ink);
}

.hero-card--accent strong {
  font-size: 1.1rem;
  line-height: 1.45;
}

.hero-card p,
.hero-card-caption {
  color: var(--muted);
}

.hero-card--accent .hero-card-caption {
  color: rgba(255,255,255,0.68);
  display: block;
  margin-bottom: 8px;
}

.hero-card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.hero-card-list span,
.hero-card-badge,
.hero-marquee span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
}

.hero-card-badge {
  margin-bottom: 14px;
  padding: 7px 12px;
  background: rgba(156, 92, 51, 0.1);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-card-list span {
  padding: 8px 12px;
  background: #fff;
  border: 1px solid rgba(133,109,84,0.12);
  font-size: 0.85rem;
  font-weight: 600;
  color: #43505d;
}

.hero-marquee {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.hero-marquee span {
  padding: 10px 14px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(133,109,84,0.12);
  color: #445465;
  font-size: 0.88rem;
  font-weight: 600;
}

.booking-panel {
  margin-top: -12px;
}

.booking-panel h2 {
  font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.panel {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(133,109,84,0.12);
  border-radius: 24px;
  box-shadow: var(--panel-shadow);
}

.cards .card,
.apartment-card,
.review-card,
.service-card,
.addon-card {
  border-radius: 26px;
  border: 1px solid rgba(133,109,84,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(249,245,239,0.98));
  box-shadow: 0 18px 38px rgba(31, 39, 51, 0.06);
}

.apartment-card {
  overflow: hidden;
}

.apartment-photo {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card-top-meta {
  padding: 18px 20px 0;
}

.apartment-content {
  padding: 16px 20px 22px;
}

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

.apt-topline h3 {
  margin: 0;
  font-size: 1.2rem;
}

.apt-status {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(77,115,89,0.12);
  color: #44634f;
  font-size: 0.8rem;
  font-weight: 700;
}

.apartment-meta li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(133,109,84,0.1);
}

.apartment-meta li:last-child {
  border-bottom: 0;
}

.apt-price {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--surface-ink);
}

.review-metrics,
.review-summary,
.district-pills,
.cards {
  gap: 14px;
}

.review-card p,
.service-card p,
.addon-card p,
.panel-note,
.section-head p {
  color: #556475;
}

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

.contacts-inner,
.lead-form {
  background: rgba(255,255,255,0.88);
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero-shell--premium {
    padding: 20px 18px;
    border-radius: 26px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-card,
  .hero-highlight,
  .panel,
  .cards .card {
    border-radius: 22px;
  }
}

/* Premium redesign — 2026-04-27 */
:root {
  --ink: #17202b;
  --ink-2: #293747;
  --cream: #f4eadc;
  --paper: #fffaf2;
  --gold: #c89b5f;
  --gold-2: #a8743c;
  --sea: #2f6e78;
  --clay: #9c5c33;
  --mist: rgba(255, 250, 242, 0.74);
  --glass: rgba(255, 255, 255, 0.58);
  --premium-shadow: 0 34px 90px rgba(23, 32, 43, 0.16);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(200, 155, 95, 0.22), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(47, 110, 120, 0.18), transparent 26%),
    linear-gradient(180deg, #fff7ec 0%, #f1e5d6 42%, #efe6dc 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .32;
  background-image:
    linear-gradient(rgba(23,32,43,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,32,43,.03) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000 0 38%, transparent 82%);
}

.site-header {
  min-height: 760px;
  padding-top: 22px;
  background:
    linear-gradient(135deg, rgba(23, 32, 43, .93), rgba(43, 59, 73, .84)),
    url('images/fridland/room-hero.jpg') center/cover;
  border-bottom: 0;
  color: #fff;
}

.hero-backdrop {
  background:
    radial-gradient(circle at 20% 12%, rgba(200,155,95,.28), transparent 28%),
    radial-gradient(circle at 78% 32%, rgba(255,255,255,.18), transparent 24%),
    linear-gradient(180deg, transparent 0%, rgba(23,32,43,.46) 100%);
}

.brand-row {
  position: relative;
  z-index: 2;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(17, 24, 32, .34);
  backdrop-filter: blur(18px);
}

.brand-name {
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.06));
  color: #fff;
  letter-spacing: .14em;
}

.header-link {
  color: rgba(255,255,255,.82);
  border-color: rgba(255,255,255,.15);
  background: transparent;
}

.header-link:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}

.header-link.tel-chip {
  background: linear-gradient(135deg, #f3d49f, #c89654);
  border-color: rgba(255,255,255,.3);
  color: #24170c;
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
}

.hero-shell--premium {
  margin-top: 36px;
  background: linear-gradient(135deg, rgba(255,250,242,.86), rgba(255,255,255,.58));
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 42px;
  box-shadow: var(--premium-shadow);
  backdrop-filter: blur(22px);
  overflow: visible;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: clamp(24px, 5vw, 56px);
}

.eyebrow {
  color: var(--gold-2);
  letter-spacing: .18em;
  font-size: .78rem;
}

h1,
.section-head h2,
.booking-panel h2,
#lead-title,
.card h2 {
  font-family: 'Prata', Georgia, serif;
  font-weight: 400;
  letter-spacing: -.04em;
}

h1 {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(3.1rem, 7.4vw, 6.7rem);
  line-height: .93;
  margin: 0;
}

.hero-lead {
  max-width: 660px;
  color: #354558;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.btn {
  border-radius: 999px;
  padding: 13px 22px;
  min-height: 46px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.btn-primary {
  color: #201509;
  background: linear-gradient(135deg, #f7d9a4, #c89351);
  box-shadow: 0 18px 38px rgba(156, 92, 51, .28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffe5b7, #b97937);
  box-shadow: 0 24px 52px rgba(156, 92, 51, .34);
}

.btn-outline {
  color: var(--ink);
  border-color: rgba(23,32,43,.12);
  background: rgba(255,255,255,.7);
}

.btn-outline:hover {
  color: var(--ink);
  background: #fff;
  border-color: rgba(200,155,95,.62);
}

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

.hero-highlight {
  border-radius: 26px;
  background: rgba(255,255,255,.62);
  border-color: rgba(255,255,255,.64);
  box-shadow: 0 18px 44px rgba(23,32,43,.08);
}

.hero-highlight-value {
  color: var(--ink);
  font-family: 'Prata', Georgia, serif;
  font-weight: 400;
  font-size: 1.75rem;
}

.hero-gallery {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: 1.1fr .86fr;
  grid-template-rows: 1fr .76fr;
  gap: 16px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 22px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255,255,255,.46);
  box-shadow: 0 26px 70px rgba(23,32,43,.2);
  color: #fff;
  isolation: isolate;
}

.gallery-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background: center/cover;
  transform: scale(1.02);
}

.gallery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 30%, rgba(11,17,24,.72));
}

.gallery-card--wide {
  grid-row: span 2;
  min-height: 520px;
}

.gallery-card--wide::before {
  background-image: url('images/fridland/room-bed.jpg');
}

.gallery-card--tall::before {
  background-image: url('images/fridland/room-kitchen.jpg');
}

.gallery-card--dark {
  background: linear-gradient(135deg, #182431, #2f6e78);
}

.gallery-card--dark::after,
.gallery-card--mini::after {
  display: none;
}

.gallery-card--mini {
  position: absolute;
  right: -20px;
  bottom: 58px;
  width: 150px;
  min-height: 150px;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ink);
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(244,234,220,.86));
}

.gallery-card--mini strong {
  font-family: 'Prata', Georgia, serif;
  font-size: 3rem;
  line-height: 1;
}

.gallery-card--wide strong,
.gallery-card--dark strong {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.15;
  max-width: 12ch;
}

.hero-card-badge {
  width: fit-content;
  margin-bottom: 12px;
  color: #2b1b0b;
  background: linear-gradient(135deg, #ffe5b7, #c89351);
}

.hero-marquee {
  margin-top: 22px;
  justify-content: center;
}

.hero-marquee span {
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
}

.section {
  padding-top: clamp(46px, 7vw, 86px);
}

.section-head h2,
.booking-panel h2,
#lead-title,
.card h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.02;
}

.section-head {
  max-width: 780px;
}

.panel,
.cards .card,
.apartment-card,
.review-card,
.service-card,
.addon-card,
.lead-form,
.contacts-inner,
.compare-wrap,
.availability-wrap,
.faq-list details,
.map-highlights {
  border: 1px solid rgba(255,255,255,.7);
  background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,250,242,.58));
  box-shadow: 0 22px 60px rgba(23,32,43,.08);
  backdrop-filter: blur(12px);
}

.panel {
  padding: 18px;
}

.panel-item label,
.field label {
  color: var(--ink-2);
  font-weight: 800;
  letter-spacing: .02em;
}

input,
textarea,
select {
  border-radius: 18px !important;
  border: 1px solid rgba(23,32,43,.13) !important;
  background: rgba(255,255,255,.76) !important;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(200,155,95,.8) !important;
  box-shadow: 0 0 0 4px rgba(200,155,95,.16) !important;
}

.apartment-card {
  border-radius: 34px;
  transform: translateZ(0);
  transition: transform .25s ease, box-shadow .25s ease;
}

.apartment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 80px rgba(23,32,43,.14);
}

.apartment-photo {
  height: 280px;
  filter: saturate(1.04) contrast(1.02);
}

.card-tag,
.apt-badge,
.apt-status,
.trust-pill {
  border-radius: 999px;
  font-weight: 800;
}

.card-tag {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(23,32,43,.08);
}

.apt-status {
  background: rgba(47,110,120,.12);
  color: var(--sea);
}

.apt-price {
  font-family: 'Prata', Georgia, serif;
  font-weight: 400;
  font-size: 1.75rem;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-right: 10px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(200,155,95,.25), rgba(47,110,120,.12));
}

.booking-step .step-num {
  font-family: 'Prata', Georgia, serif;
  color: var(--gold-2);
  font-size: 3.5rem;
  line-height: 1;
}

.sticky-booking {
  background: linear-gradient(135deg, #f7d9a4, #c89351);
  color: #201509;
  box-shadow: 0 22px 48px rgba(23,32,43,.22);
}

.footer {
  color: rgba(23,32,43,.64);
}

@media (max-width: 960px) {
  .site-header {
    min-height: auto;
  }

  .brand-row {
    border-radius: 24px;
  }

  .hero-grid,
  .hero-gallery {
    grid-template-columns: 1fr;
  }

  .hero-gallery,
  .gallery-card--wide {
    min-height: auto;
  }

  .gallery-card {
    min-height: 240px;
  }

  .gallery-card--mini {
    position: static;
    width: 100%;
    min-height: 120px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding-top: 12px;
  }

  .hero-shell--premium {
    margin-top: 16px;
    border-radius: 30px;
  }

  h1 {
    font-size: clamp(2.55rem, 16vw, 4.4rem);
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .gallery-card {
    border-radius: 26px;
  }

  .apartment-photo {
    height: 220px;
  }
}

/* Premium polish fixes — prevent hero collisions */
@media (min-width: 961px) {
  .hero-shell--premium {
    padding: clamp(26px, 3.2vw, 38px);
  }

  .hero-grid {
    grid-template-columns: minmax(0, .98fr) minmax(320px, .72fr);
    gap: clamp(22px, 3.6vw, 44px);
  }

  h1 {
    max-width: 760px;
    font-size: clamp(3rem, 5.25vw, 5.25rem);
    line-height: .96;
  }

  .hero-lead {
    max-width: 620px;
  }

  .hero-gallery {
    min-height: 460px;
  }

  .gallery-card--wide {
    min-height: 460px;
  }

  .gallery-card--mini {
    right: 16px;
    bottom: 20px;
    width: 132px;
    min-height: 132px;
  }
}

.gallery-card::after {
  background: linear-gradient(180deg, rgba(8,13,20,.06) 0%, rgba(8,13,20,.32) 42%, rgba(8,13,20,.82) 100%);
}

.gallery-card--tall span,
.gallery-card--wide strong,
.gallery-card--dark strong,
.hero-card-caption {
  text-shadow: 0 2px 18px rgba(0,0,0,.34);
}

.sticky-booking {
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.sticky-booking.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  pointer-events: none;
}

/* Final hero safety */
h1 {
  overflow-wrap: normal;
  hyphens: auto;
}

@media (min-width: 961px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(300px, .68fr);
  }

  .hero-gallery {
    grid-template-columns: 1fr .78fr;
    min-width: 0;
  }

  .gallery-card--mini {
    display: none;
  }

  .gallery-card--dark strong {
    max-width: none;
    font-size: 1.2rem;
  }

  .gallery-card--wide strong {
    max-width: 11ch;
  }
}

.sticky-booking {
  display: none;
}

/* Final readability polish */
.hero-shell--premium {
  overflow: hidden;
  margin-top: 24px;
}

.hero-highlight-label,
.hero-lead,
.section-head p,
.panel-note {
  color: #334255;
}

.gallery-card--dark {
  gap: 10px;
  padding: 24px;
}

.gallery-card--dark .hero-card-caption {
  color: rgba(255,255,255,.84);
}

.gallery-card--dark strong {
  line-height: 1.22;
}

@media (min-width: 961px) {
  h1 {
    font-size: clamp(2.9rem, 4.9vw, 4.9rem);
  }

  .hero-gallery {
    min-height: 430px;
  }

  .gallery-card--wide {
    min-height: 430px;
  }
}

.gallery-card--tall {
  justify-content: center;
  text-align: center;
}

.gallery-card--tall::before {
  filter: saturate(1.12) contrast(1.05) brightness(.92);
}

.gallery-card--tall span {
  display: inline-flex;
  align-self: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(18, 28, 38, .54);
  color: #fff;
  font-weight: 800;
}

.hero-marquee {
  padding-bottom: 8px;
}

/* UX upgrade — 2026-04-28 */
.brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-name {
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 3px 0;
  border-radius: 999px;
  background: currentColor;
}

.menu-toggle b {
  font-size: .86rem;
}

.hero-trustline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: -2px;
}

.hero-trustline span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(23,32,43,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  color: #243142;
  font-size: .9rem;
  font-weight: 800;
}

.hero-trustline span::before {
  content: '';
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sea), var(--gold));
  box-shadow: 0 0 0 4px rgba(47,110,120,.10);
}

.quick-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.quick-proof div {
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  background: rgba(17,24,32,.32);
  backdrop-filter: blur(14px);
  color: #fff;
}

.quick-proof strong {
  display: block;
  font-family: 'Prata', Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1;
}

.quick-proof span {
  display: block;
  margin-top: 7px;
  color: rgba(255,255,255,.72);
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.25;
}

.booking-panel {
  position: relative;
  z-index: 3;
  margin-top: -34px;
}

.booking-panel h2 {
  margin-bottom: 16px;
}

.panel {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  align-items: end;
}

.panel-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.panel-actions .btn {
  width: 100%;
}

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

.card-top-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

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

.apartment-content {
  display: flex;
  flex-direction: column;
  height: calc(100% - 280px);
}

.apartment-meta {
  flex: 1;
}

.apt-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 12px;
}

.apt-footer .btn {
  flex-shrink: 0;
}

.compare-wrap,
.availability-wrap {
  overflow-x: auto;
}

.compare-table,
.availability-table {
  min-width: 720px;
}

#lead {
  scroll-margin-top: 24px;
}

.lead-form .btn-primary {
  width: 100%;
  min-height: 54px;
  font-size: 1rem;
}

.faq-list details {
  transition: transform .18s ease, box-shadow .18s ease;
}

.faq-list details:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 70px rgba(23,32,43,.11);
}

@media (min-width: 961px) {
  .header-link.tel-chip {
    margin-left: auto;
  }
}

@media (max-width: 1100px) {
  .panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cards.apartments {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 960px) {
  .brand-row {
    position: relative;
    flex-wrap: wrap;
    overflow: visible;
    border-radius: 28px;
  }

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

  .nav-links {
    display: none;
    width: 100%;
    flex: 0 0 100%;
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 10px;
  }

  .brand-row.is-open .nav-links {
    display: grid;
  }

  .header-link,
  .header-link.tel-chip {
    width: 100%;
    justify-content: center;
    text-align: center;
    min-height: 44px;
    margin-left: 0;
    background: rgba(255,255,255,.12);
  }

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

  .booking-panel {
    margin-top: -10px;
  }

  .cards.apartments {
    grid-template-columns: 1fr;
  }

  .apartment-content {
    height: auto;
  }
}

@media (max-width: 680px) {
  .container {
    padding-inline: 16px;
  }

  .site-header {
    min-height: 0;
  }

  .hero-shell--premium {
    padding: 22px 16px;
  }

  h1 {
    font-size: clamp(2.3rem, 13vw, 3.7rem);
    line-height: .98;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-trustline span {
    width: 100%;
  }

  .quick-proof {
    grid-template-columns: 1fr;
  }

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

  .card-top-meta,
  .apt-topline,
  .apt-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .card-top-meta .btn,
  .apt-footer .btn {
    width: 100%;
  }

  .section-head h2,
  .booking-panel h2,
  #lead-title,
  .card h2 {
    font-size: clamp(1.9rem, 10vw, 2.75rem);
  }
}

/* Booking/detail pages upgrade — 2026-04-28 */
.trust-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-step {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,250,242,.58));
  box-shadow: 0 22px 60px rgba(23,32,43,.08);
  backdrop-filter: blur(12px);
}

.trust-step span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold-2);
  font-family: 'Prata', Georgia, serif;
  font-size: 2.1rem;
  line-height: 1;
}

.trust-step h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.08rem;
}

.trust-step p {
  margin: 0;
  color: #556475;
}

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

.apartment-detail-header {
  min-height: 0;
  padding-bottom: 58px;
}

.detail-hero {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, .7fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
}

.detail-hero-copy {
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(255,250,242,.86), rgba(255,255,255,.58));
  box-shadow: var(--premium-shadow);
  backdrop-filter: blur(22px);
}

.detail-hero h1 {
  font-size: clamp(2.5rem, 5.2vw, 5.1rem);
}

.detail-hero-media img,
.detail-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detail-hero-media {
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(255,255,255,.46);
  border-radius: 38px;
  box-shadow: 0 26px 70px rgba(23,32,43,.2);
}

.detail-gallery {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 14px;
}

.detail-gallery figure {
  overflow: hidden;
  min-height: 260px;
  margin: 0;
  border-radius: 30px;
  background: rgba(255,255,255,.5);
  box-shadow: 0 22px 60px rgba(23,32,43,.08);
}

.detail-gallery figure:first-child {
  grid-row: span 2;
  min-height: 540px;
}

.detail-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.detail-fact {
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.64);
  border: 1px solid rgba(23,32,43,.08);
}

.detail-fact strong {
  display: block;
  color: var(--ink);
  font-size: 1.1rem;
}

.detail-fact span {
  display: block;
  margin-top: 5px;
  color: #556475;
  font-size: .9rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 20px;
  align-items: start;
}

.detail-sidebar {
  position: sticky;
  top: 18px;
}

.detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.detail-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(133,109,84,.12);
}

.detail-list li:last-child { border-bottom: 0; }

.detail-card {
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.7);
  background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,250,242,.58));
  box-shadow: 0 22px 60px rgba(23,32,43,.08);
}

@media (max-width: 1100px) {
  .trust-steps,
  .detail-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-layout,
  .detail-hero {
    grid-template-columns: 1fr;
  }

  .detail-sidebar { position: static; }
}

@media (max-width: 680px) {
  .trust-steps,
  .detail-facts,
  .detail-gallery {
    grid-template-columns: 1fr;
  }

  .detail-gallery figure,
  .detail-gallery figure:first-child,
  .detail-hero-media {
    min-height: 260px;
  }
}
