:root {
  --primary: #135bec;
  --primary-deep: #0f3fa7;
  --primary-soft: #e5edff;
  --accent: #10b981;
  --ink: #0f172a;
  --muted: #5f6b85;
  --surface: #ffffff;
  --surface-soft: #f5f7fc;
  --line: #dbe2f1;
  --ok: #1d8f4f;
  --ok-soft: #ddf8ea;
  --warn: #b76b00;
  --warn-soft: #fff3db;
  --danger: #b42318;
  --danger-soft: #fee4e2;
  --shadow: 0 16px 40px -28px rgba(15, 23, 42, 0.7);
}

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

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 12%, rgba(19, 91, 236, 0.12), transparent 36%),
    radial-gradient(circle at 88% 6%, rgba(16, 185, 129, 0.11), transparent 26%),
    linear-gradient(180deg, #f8faff 0%, #eef3ff 100%);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

iframe {
  border: 0;
  width: 100%;
}

.material-symbols-outlined {
  font-variation-settings:
    "FILL" 1,
    "wght" 500,
    "GRAD" 0,
    "opsz" 24;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(247, 249, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(248, 251, 255, 0.97);
  border-bottom-color: #c8d4ef;
  box-shadow: 0 14px 28px -24px rgba(15, 23, 42, 0.7);
}

.site-header.slim {
  position: relative;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
}

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

.brand-logo {
  width: 78px;
  height: 78px;
  object-fit: contain;
  border-radius: 16px;
  background: #ffffff;
  padding: 6px;
  border: 1px solid #d7e2fa;
  box-shadow: 0 14px 28px -16px rgba(15, 23, 42, 0.65);
  flex-shrink: 0;
}

.brand .material-symbols-outlined {
  color: var(--primary);
  font-size: 31px;
  flex-shrink: 0;
}

.brand-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
}

.brand-subtitle {
  margin: 0;
  font-size: 0.76rem;
  color: var(--muted);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero {
  margin-top: 10px;
}

.hero-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 8px 16px 8px 9px;
}

.hero-brand-mark span {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

.hero-brand-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 12px;
  background: #ffffff;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-inner {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 52px 28px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(130deg, rgba(19, 91, 236, 0.94) 10%, rgba(15, 22, 38, 0.84) 80%),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.22), transparent 50%);
  box-shadow: var(--shadow);
}

.hero-inner::before,
.hero-inner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner::before {
  width: 270px;
  height: 270px;
  right: -110px;
  top: -150px;
  background: rgba(255, 255, 255, 0.11);
}

.hero-inner::after {
  width: 220px;
  height: 220px;
  left: -90px;
  bottom: -130px;
  background: rgba(255, 255, 255, 0.09);
}

.hero-eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.9);
}

.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(1.65rem, 2.8vw, 2.55rem);
  line-height: 1.1;
  max-width: 620px;
}

.hero p {
  margin: 0;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.9);
}

.search-wrap {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(520px, 100%);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 0 14px;
}

.search-wrap .material-symbols-outlined {
  color: rgba(255, 255, 255, 0.82);
}

.search-wrap input {
  flex: 1;
  border: 0;
  background: transparent;
  outline: 0;
  color: #ffffff;
  padding: 12px 0;
  font: inherit;
}

.search-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

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

.hero-highlights article {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 11px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
}

.hero-highlights .material-symbols-outlined {
  font-size: 18px;
  color: #cfe1ff;
}

.hero-highlights p {
  margin: 0;
  font-size: 0.82rem;
  color: #f2f7ff;
  font-weight: 700;
}

.hero-highlights small {
  display: block;
  margin-top: 2px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.86);
}

.section {
  padding: 30px 0;
}

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

.section-head h2 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.2;
}

.section-subtitle {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.plot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.plot-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.plot-card:hover {
  transform: translateY(-5px);
  border-color: #c2d3f7;
  box-shadow: 0 26px 42px -28px rgba(15, 23, 42, 0.55);
}

.plot-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.45), transparent 48%),
    linear-gradient(145deg, #dde7ff 0%, #eef3ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.plot-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 14, 28, 0.26), rgba(8, 14, 28, 0));
  z-index: 2;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.plot-card:hover .plot-media::after {
  opacity: 1;
}

.plot-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 8px;
}

.plot-media .plot-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.plot-media .plot-slide.active {
  opacity: 1;
}

.plot-dots {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 5;
  display: inline-flex;
  gap: 6px;
}

.plot-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0;
}

.plot-dot.active {
  background: #ffffff;
}

.card-video {
  aspect-ratio: 16 / 9;
  border-top: 1px solid var(--line);
  background: #f4f7ff;
}

.card-video iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.status-badge {
  position: absolute;
  top: 11px;
  left: 11px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--ok-soft);
  color: var(--ok);
  border: 1px solid rgba(29, 143, 79, 0.25);
}

.status-badge.reserved {
  background: var(--warn-soft);
  color: var(--warn);
  border-color: rgba(183, 107, 0, 0.25);
}

.status-badge.sold {
  background: var(--danger-soft);
  color: var(--danger);
  border-color: rgba(180, 35, 24, 0.2);
}

.status-badge.fast {
  background: var(--primary-soft);
  color: var(--primary);
  border-color: rgba(19, 91, 236, 0.25);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--ok-soft);
  color: var(--ok);
  border: 1px solid rgba(29, 143, 79, 0.25);
}

.status-pill.reserved {
  background: var(--warn-soft);
  color: var(--warn);
  border-color: rgba(183, 107, 0, 0.25);
}

.status-pill.sold {
  background: var(--danger-soft);
  color: var(--danger);
  border-color: rgba(180, 35, 24, 0.2);
}

.status-pill.fast {
  background: var(--primary-soft);
  color: var(--primary);
  border-color: rgba(19, 91, 236, 0.25);
}

.plot-body {
  padding: 14px;
}

.plot-title {
  margin: 0 0 8px;
  font-size: 1.06rem;
  font-weight: 800;
}

.plot-meta {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.91rem;
}

.plot-desc {
  margin: -6px 0 12px;
  color: #42506c;
  font-size: 0.88rem;
  line-height: 1.5;
}

.card-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: 0.2s ease;
  font-family: inherit;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -14px rgba(15, 23, 42, 0.75);
}

.btn:disabled,
.btn.disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.btn.compact {
  padding: 9px 11px;
  font-size: 0.8rem;
}

.btn.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 12px 24px -16px rgba(19, 91, 236, 0.8);
}

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

.btn-soft {
  background: var(--surface-soft);
  border-color: var(--line);
  color: var(--ink);
}

.btn-soft:hover {
  border-color: #b6c5e7;
}

.btn-dark {
  background: #0f172a;
  color: #ffffff;
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 12px 24px -16px rgba(37, 211, 102, 0.82);
}

.footer-showcase {
  margin-top: 16px;
}

.footer-showcase-inner {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 26px 20px;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(120deg, rgba(15, 33, 64, 0.94), rgba(19, 91, 236, 0.56)),
    url("https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?auto=format&fit=crop&w=1600&q=70")
      center / cover no-repeat;
  box-shadow: var(--shadow);
}

.footer-showcase-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.5), rgba(2, 6, 23, 0.12));
}

.footer-col {
  position: relative;
  z-index: 1;
  color: #f2f6ff;
}

.footer-brand-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 12px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.footer-brand-col p {
  margin: 12px 0 0;
  max-width: 320px;
  line-height: 1.55;
  font-size: 0.96rem;
}

.footer-links-col h3,
.footer-connect-col h3 {
  margin: 0 0 10px;
  font-size: 1.02rem;
  letter-spacing: 0.03em;
  color: #8fddff;
}

.footer-links-col h3 + a {
  margin-top: 0;
}

.footer-links-col a {
  display: block;
  color: #ffffff;
  margin-top: 8px;
  font-size: 0.95rem;
}

.footer-links-col h3:not(:first-child) {
  margin-top: 16px;
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.footer-connect-col p {
  margin: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.45;
}

.footer-connect-col a {
  color: #ffffff;
}

.footer-connect-col .material-symbols-outlined {
  font-size: 20px;
  color: #74d4ff;
  margin-top: 1px;
}

.footer-map-btn {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 10px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.14);
  font-weight: 700;
}

.footer-map-col {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  min-height: 250px;
}

.footer-map-col iframe {
  min-height: 250px;
}

.site-footer {
  border-top: 1px solid #c8d4ef;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 249, 255, 0.94));
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding: 18px 0;
}

.footer-inner p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-actions a {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
}

.details-page {
  padding-bottom: 118px;
}

.details-layout {
  display: grid;
  gap: 16px;
}

.details-media-card,
.details-info-card,
.details-video-card,
.details-map-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.details-media-card {
  position: relative;
}

.details-media-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.45), transparent 45%),
    linear-gradient(145deg, #dde7ff 0%, #eef3ff 100%);
}

.detail-image-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  z-index: 5;
  display: inline-flex;
  gap: 7px;
}

.detail-image-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  padding: 0;
}

.detail-image-dot.active {
  background: #ffffff;
}

.details-info-card {
  padding: 18px;
}

.details-info-card h1 {
  margin: 0 0 8px;
  font-size: clamp(1.3rem, 2vw, 2rem);
}

.detail-area {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 12px;
  color: var(--primary);
  font-weight: 700;
}

.detail-description {
  margin: 0;
  color: #374151;
  line-height: 1.62;
}

.details-video-card,
.details-map-card {
  padding: 14px;
}

.details-head-row {
  margin-bottom: 10px;
}

.details-head-row h2 {
  margin: 0;
  font-size: 1.04rem;
}

.embed-frame {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 260px;
  display: grid;
  place-items: center;
  background: #f4f7ff;
}

.embed-frame iframe {
  min-height: 260px;
}

.sticky-actions {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: rgba(247, 249, 255, 0.96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 12px max(12px, calc((100vw - min(1120px, 92vw)) / 2));
}

.sticky-actions .btn {
  min-height: 44px;
  border-radius: 12px;
}

.admin-container {
  display: grid;
  gap: 16px;
  padding-bottom: 10px;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.login-panel {
  max-width: 510px;
  position: relative;
  overflow: hidden;
}

.login-panel::before {
  content: "";
  position: absolute;
  inset: -60px auto auto -80px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(19, 91, 236, 0.2), transparent 72%);
  pointer-events: none;
}

.panel h1,
.panel h2 {
  margin: 0 0 8px;
}

.muted {
  color: var(--muted);
  margin: 0;
}

.help-text {
  display: block;
  margin-top: 6px;
}

.small {
  font-size: 0.81rem;
}

.field {
  display: grid;
  gap: 7px;
  margin-top: 14px;
}

.field label {
  font-weight: 700;
  font-size: 0.9rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  outline: none;
  background: #ffffff;
}

.field textarea {
  min-height: 108px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(19, 91, 236, 0.15);
}

.dashboard-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.dashboard-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.table-wrap {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: auto;
}

.admin-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 680px;
  background: #ffffff;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid var(--line);
  padding: 11px 10px;
  text-align: left;
  font-size: 0.9rem;
}

.admin-table th {
  background: #f7f9ff;
  font-size: 0.79rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #485676;
}

.admin-table tbody tr:nth-child(2n) {
  background: #fbfcff;
}

.admin-table tbody tr:hover {
  background: #f1f6ff;
}

.table-image {
  width: 68px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--line);
  background: #edf2ff;
}

.table-actions {
  display: flex;
  gap: 8px;
}

.btn-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  background: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
}

.btn-table.edit {
  color: var(--primary);
}

.btn-table.delete {
  color: var(--danger);
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.56);
  display: grid;
  place-items: center;
  padding: 15px;
  z-index: 70;
}

.modal-card {
  width: min(680px, 100%);
  max-height: 92vh;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: auto;
  box-shadow: var(--shadow);
  animation: modalIn 0.2s ease;
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.modal-head h3 {
  margin: 0;
}

.icon-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.plot-form {
  padding: 4px 16px 16px;
}

.image-preview {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.image-preview img {
  width: 100%;
  object-fit: cover;
}

.image-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 8px;
  padding: 10px;
}

.image-preview-grid img {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #edf2ff;
  height: 74px;
}

.modal-actions {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.alert {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 11px 12px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.alert.info {
  background: #eef4ff;
  color: #1f3a8a;
  border-color: #c6d7ff;
}

.alert.success {
  background: var(--ok-soft);
  color: #106039;
  border-color: #afe7c8;
}

.alert.error {
  background: var(--danger-soft);
  color: #7a1d15;
  border-color: #fac5c0;
}

.inline-error {
  margin: 10px 0 0;
  color: var(--danger);
  font-size: 0.9rem;
}

.empty-state,
.empty-message {
  color: var(--muted);
  text-align: center;
  padding: 20px;
  margin: 0;
}

.center {
  text-align: center;
}

.hidden {
  display: none !important;
}

.skeleton-card {
  padding: 12px;
}

.skeleton {
  border-radius: 9px;
  background: linear-gradient(90deg, #ebeffa, #dce6ff, #ebeffa);
  background-size: 180% 100%;
  animation: shimmer 1.2s infinite;
}

.skeleton.media {
  height: 156px;
}

.skeleton.line {
  height: 14px;
  margin-top: 10px;
}

.skeleton.line.short {
  width: 72%;
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.35s ease forwards;
}

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (min-width: 980px) {
  .footer-showcase-inner {
    grid-template-columns: 1.1fr 0.7fr 1fr 1.3fr;
    align-items: start;
    padding: 30px 24px;
  }

  .details-layout {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  #detailsAlert {
    grid-column: 1 / -1;
  }

  .details-media-card,
  .details-info-card {
    grid-column: 1 / 2;
  }

  .details-video-card,
  .details-map-card {
    grid-column: 2 / 3;
  }

  .details-video-card {
    position: sticky;
    top: 84px;
  }
}

@media (max-width: 780px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .hero-inner {
    padding: 34px 18px;
    border-radius: 20px;
  }

  .section {
    padding: 20px 0;
  }

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

  .sticky-actions .btn {
    padding: 10px 8px;
    font-size: 0.8rem;
  }

  .footer-map-col,
  .footer-map-col iframe {
    min-height: 230px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(1120px, 94vw);
  }

  .brand-subtitle {
    display: none;
  }

  .btn.compact {
    padding: 8px 9px;
    font-size: 0.75rem;
  }

  .brand-logo {
    width: 66px;
    height: 66px;
  }

  .hero-brand-logo {
    width: 52px;
    height: 52px;
  }

  .hero-brand-mark span {
    font-size: 0.8rem;
  }

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

  .card-actions .btn:last-child {
    grid-column: 1 / -1;
  }

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

  .sticky-actions {
    grid-template-columns: 1fr 1fr;
    padding: 10px 10px;
  }

  .dashboard-actions {
    width: 100%;
  }

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

  .modal-card {
    max-height: 95vh;
  }

  .modal-actions {
    flex-direction: column-reverse;
  }

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