/* Luxury dark MVP theme */
:root {
  --bg-0: #07080a;
  --bg-1: #0b0d12;
  --bg-2: #0f121a;
  --text: #e8eaee;
  --muted: #aab0bf;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.12);
  --gold: #caa35a;
  --gold-bright: #f0d08a;
  --radius-card: 18px;
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.42);
  --shadow-glow:
    0 0 0 1px rgba(202, 163, 90, 0.22), 0 24px 70px rgba(0, 0, 0, 0.52);
  --container: 1100px;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    'Apple Color Emoji',
    'Segoe UI Emoji';
  color: var(--text);
  background:
    radial-gradient(
      1100px 700px at 15% -10%,
      rgba(202, 163, 90, 0.16),
      transparent 55%
    ),
    radial-gradient(
      900px 600px at 95% 15%,
      rgba(240, 208, 138, 0.1),
      transparent 55%
    ),
    radial-gradient(
      1200px 800px at 50% 50%,
      rgba(202, 163, 90, 0.08),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      var(--bg-0),
      var(--bg-1) 30%,
      rgba(11, 13, 18, 0.95) 50%,
      var(--bg-1) 70%,
      var(--bg-0)
    );
}

a {
  color: inherit;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 9999;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  padding: 10px 12px;
  border-radius: 12px;
}
.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 10, 14, 0.64);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: transform 0.22s ease;
}
.site-header.is-hidden {
  transform: translateY(-100%);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 240px;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(240, 208, 138, 0.28),
      rgba(202, 163, 90, 0.16) 40%,
      rgba(255, 255, 255, 0.04) 100%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02)
    );
  border: 1px solid rgba(202, 163, 90, 0.26);
  color: var(--gold-bright);
  letter-spacing: 0.08em;
  font-weight: 700;
}
.brand-mark img {
  width: 65%;
  height: 65%;
  object-fit: contain;
  display: block;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-name {
  font-weight: 680;
  letter-spacing: 0.01em;
}
.brand-tagline {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  gap: 12px;
  flex: 1;
  justify-content: center;
}
.nav a {
  text-decoration: none;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
}
.nav a:hover {
  color: var(--text);
  border-color: rgba(202, 163, 90, 0.22);
  background: rgba(202, 163, 90, 0.07);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.social {
  display: flex;
  gap: 8px;
}
.social-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.social-link:hover {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
}

.btn {
  appearance: none;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 620;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  position: relative;
  min-height: 44px;
}
.btn:focus-visible {
  outline: 2px solid rgba(240, 208, 138, 0.5);
  outline-offset: 2px;
}
.btn:hover {
  border-color: rgba(202, 163, 90, 0.25);
  background: rgba(202, 163, 90, 0.08);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(202, 163, 90, 0.2);
}
.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(202, 163, 90, 0.3);
}
.btn-primary {
  border-color: rgba(202, 163, 90, 0.45);
  background: linear-gradient(
    135deg,
    rgba(202, 163, 90, 0.95),
    rgba(240, 208, 138, 0.85)
  );
  color: #1a1207;
}
.btn-primary:hover {
  filter: saturate(1.02) brightness(1.02);
}
.btn-ghost {
  background: transparent;
}
.btn-outline {
  background: rgba(255, 255, 255, 0.02);
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
}
.icon-btn:hover {
  border-color: rgba(202, 163, 90, 0.25);
  background: rgba(202, 163, 90, 0.08);
}

.hero {
  padding: 68px 0 34px;
  border-bottom: 1px solid var(--line);
  background: rgba(202, 163, 90, 0.02);
}
.section:nth-child(odd) {
  background: rgba(255, 255, 255, 0.01);
}
.section:nth-child(even) {
  background: rgba(202, 163, 90, 0.015);
}
.hero {
  padding: 68px 0 34px;
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 18px;
  align-items: center;
}
.hero-kicker {
  color: var(--gold-bright);
  margin: 0 0 10px;
  font-weight: 650;
  letter-spacing: 0.03em;
}
.hero-title {
  margin: 0 0 10px;
  font-size: 44px;
  letter-spacing: -0.02em;
}
.hero-subtitle {
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 60ch;
}
.hero-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-card {
  border-radius: var(--radius-card);
  border: 1px solid rgba(202, 163, 90, 0.2);
  background:
    radial-gradient(
      700px 420px at 30% 20%,
      rgba(202, 163, 90, 0.14),
      transparent 55%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.04),
      rgba(255, 255, 255, 0.02)
    );
  padding: 20px;
  box-shadow: var(--shadow-soft);
}
.hero-card-badge {
  display: inline-flex;
  border: 1px solid rgba(202, 163, 90, 0.35);
  color: var(--gold-bright);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}
.hero-card-logo {
  margin-top: 14px;
  width: 100%;
  height: auto;
  max-height: 120px;
  object-fit: contain;
  display: block;
}

.watermark-logo {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.08;
  width: 60vw;
  max-width: 800px;
}

.watermark-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.hero-card-title {
  margin-top: 14px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
}
.hero-card-line {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.6;
}

/* Touch target improvements */
.icon-btn,
.mini-btn {
  min-width: 44px;
  min-height: 44px;
}

/* Responsive spacing improvements */
@media (max-width: 600px) {
  .section {
    padding: 32px 0;
  }
  .hero {
    padding: 48px 0 24px;
  }
  .container {
    padding: 0 16px;
  }
  .section-head h2 {
    font-size: 24px;
  }
}

.section {
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.section-head h2 {
  margin: 0;
  font-size: 28px;
  position: relative;
  padding-left: 18px;
}
.section-head h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 28px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  border-radius: 999px;
}
.section-subtitle {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}
.section-foot {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.toolbar {
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow-soft);
  padding: 14px;
  margin-bottom: 16px;
}
.toolbar-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: flex-end;
}
.toolbar-row-meta {
  justify-content: space-between;
  margin-top: 10px;
}
.toolbar-hint {
  color: var(--muted);
  font-size: 12px;
}
.results {
  font-weight: 650;
  color: var(--gold-bright);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 160px;
  flex: 1;
}
.field-label {
  color: var(--muted);
  font-size: 12px;
}
input,
select,
textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 10px 12px;
  color: var(--text);
}
textarea {
  resize: vertical;
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(240, 208, 138, 0.5);
  outline-offset: 2px;
  border-color: rgba(202, 163, 90, 0.4);
  background: rgba(202, 163, 90, 0.05);
  box-shadow: 0 0 0 3px rgba(202, 163, 90, 0.1);
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.card {
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.card:hover {
  transform: scale(1.02);
  box-shadow:
    0 0 0 1px rgba(202, 163, 90, 0.25),
    0 24px 60px rgba(0, 0, 0, 0.5);
  border-color: rgba(202, 163, 90, 0.2);
}
.card:hover {
  border-color: rgba(202, 163, 90, 0.22);
  box-shadow: var(--shadow-glow);
}
.card-btn {
  appearance: none;
  border: none;
  background: transparent;
  color: inherit;
  text-align: left;
  padding: 0;
  margin: 0;
  cursor: pointer;
  width: 100%;
}

.image-wrap {
  position: relative;
  aspect-ratio: 16/10;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}
.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.skeleton::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.04)
  );
  background-size: 200% 100%;
  animation: shimmer 1.2s ease-in-out infinite;
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.badge {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 10, 14, 0.58);
  backdrop-filter: blur(12px);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
}
.badge.gold {
  border-color: rgba(202, 163, 90, 0.35);
  color: var(--gold-bright);
}
.badge.count {
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text);
}

.card-body {
  padding: 14px;
}
.card-line {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 6px;
}
.card-title {
  font-weight: 700;
  margin: 0 0 10px;
}
.card-desc {
  color: var(--muted);
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-meta {
  display: flex;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  flex-wrap: wrap;
}
.card-price {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 750;
  color: var(--gold-bright);
}

.card-actions {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.mini-actions {
  display: flex;
  gap: 8px;
}
.mini-btn {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  color: var(--text);
}
.mini-btn:hover {
  border-color: rgba(202, 163, 90, 0.25);
  background: rgba(202, 163, 90, 0.08);
}
.mini-btn.is-active {
  border-color: rgba(202, 163, 90, 0.45);
  background: rgba(202, 163, 90, 0.12);
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.service-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(202, 163, 90, 0.3),
    0 28px 70px rgba(0, 0, 0, 0.5);
  border-color: rgba(202, 163, 90, 0.25);
}
.service-media {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-body h3 {
  margin: 0 0 10px;
}
.feature-list {
  margin: 0 0 16px;
  padding-left: 18px;
  color: var(--muted);
}
.feature-list li {
  margin: 6px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  align-items: start;
}
.form {
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow-soft);
  padding: 16px;
}
.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.form-status {
  margin-top: 10px;
  color: var(--muted);
  min-height: 20px;
}
.hint {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.office {
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow-soft);
  padding: 16px;
}
.office h3 {
  margin: 0 0 10px;
}
.office-line {
  color: var(--muted);
  margin: 6px 0;
}
.map {
  margin-top: 12px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.map iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

.footer {
  padding: 18px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
}
.footer-right {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-right a {
  text-decoration: none;
}
.footer-right a:hover {
  color: var(--text);
}
.footer-sep {
  opacity: 0.6;
}

.back-to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(202, 163, 90, 0.3);
  background: rgba(8, 10, 14, 0.62);
  color: var(--gold-bright);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
}
.modal[hidden] {
  display: none;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.modal-panel {
  position: relative;
  width: min(980px, calc(100vw - 22px));
  max-height: min(88vh, 980px);
  overflow: auto;
  border-radius: 22px;
  border: 1px solid rgba(202, 163, 90, 0.22);
  background: var(--bg-1);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-glow);
}
.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.modal-head h3 {
  margin: 0;
}
.modal-head-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.modal-body {
  padding: 16px;
}

#agent-modal .modal-panel {
  width: min(520px, calc(100vw - 22px));
}

.offer-modal-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
}
.image-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.image-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  user-select: none;
}
.image-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  pointer-events: none;
}
.icon-pill {
  pointer-events: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 10, 14, 0.58);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 10px;
  cursor: pointer;
}
.icon-pill:hover {
  border-color: rgba(202, 163, 90, 0.25);
  background: rgba(202, 163, 90, 0.1);
}
.image-indicator {
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 10, 14, 0.58);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 12px;
}

.thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.thumb {
  width: 64px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  cursor: pointer;
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.thumb.is-active {
  border-color: rgba(202, 163, 90, 0.45);
}

.offer-meta {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 10px;
}
.offer-price {
  font-size: 22px;
  font-weight: 780;
  color: var(--gold-bright);
  margin-bottom: 12px;
}
.offer-desc {
  color: var(--muted);
  line-height: 1.5;
}
.offer-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.agent-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 480px;
  margin: 0 auto;
}
.agent-photo {
  width: 140px;
  height: 140px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}
.agent-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.agent-info {
  text-align: center;
  width: 100%;
}
.agent-info h4 {
  margin: 0 0 8px;
  font-size: 20px;
}
.agent-info .muted {
  color: var(--muted);
  margin: 4px 0;
}
.agent-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  width: 100%;
}
.agent-links .btn {
  width: 100%;
  justify-content: center;
}

.admin-panel {
  border-top: 1px solid rgba(202, 163, 90, 0.12);
}
.admin-inline {
  display: flex;
  gap: 10px;
}
.admin-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.admin-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 12px 0;
}
.admin-media-title {
  font-weight: 700;
  color: var(--gold-bright);
  margin: 0 0 8px;
}

.toast {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  z-index: 80;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(202, 163, 90, 0.26);
  background: rgba(8, 10, 14, 0.78);
  backdrop-filter: blur(14px);
  color: var(--text);
  box-shadow: var(--shadow-soft);
  max-width: min(520px, calc(100vw - 24px));
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .services {
    grid-template-columns: 1fr;
  }
  .service-card {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .offer-modal-grid {
    grid-template-columns: 1fr;
  }
  .image-frame img {
    height: 360px;
  }
}
@media (max-width: 620px) {
  .nav {
    display: none;
  }
  .brand {
    min-width: auto;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 36px;
  }
  .agent-modal {
    grid-template-columns: 1fr;
  }
  .agent-photo {
    width: 100%;
    height: 220px;
  }
}
