/* Sinthanamantion — Landing (condo management prototype) */

:root {
  --bg0: #e6ecec;
  --bg1: #eef3f2;
  --bg2: #f7faf9;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-solid: #ffffff;
  --ink: #12202a;
  --ink-soft: #3d4f5c;
  --muted: #6b7c88;
  --line: rgba(18, 32, 42, 0.09);
  --accent: #1f7a6d;
  --accent-soft: #d8efe9;
  --navy: #16323f;
  --navy-hover: #1f4454;
  --ok: #2f8f72;
  --warn: #c17a3a;
  --info: #3a6ea5;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 24px;
  --shadow: 0 12px 36px rgba(18, 32, 42, 0.08);
  --shadow-sm: 0 4px 16px rgba(18, 32, 42, 0.05);
  --font: "Bai Jamjuree", "Segoe UI", sans-serif;
  --font-display: "Outfit", "Bai Jamjuree", sans-serif;
  --container: 1120px;
  --nav-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(900px 480px at 8% -8%, rgba(31, 122, 109, 0.14), transparent 55%),
    radial-gradient(700px 420px at 92% 6%, rgba(22, 50, 63, 0.1), transparent 50%),
    radial-gradient(600px 500px at 50% 100%, rgba(140, 170, 165, 0.18), transparent 55%),
    linear-gradient(180deg, var(--bg1) 0%, var(--bg0) 45%, var(--bg2) 100%);
  background-attachment: fixed;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(238, 243, 242, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.88);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nav-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand__mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background:
    linear-gradient(145deg, #1f4454 0%, #12202a 100%);
  box-shadow: inset 0 0 0 2px rgba(31, 122, 109, 0.45);
  flex-shrink: 0;
  position: relative;
}

.brand__mark::after {
  content: "";
  position: absolute;
  inset: 10px 11px 9px;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 3px 3px 6px 6px;
  border-top: none;
  clip-path: polygon(0 30%, 50% 0, 100% 30%, 100% 100%, 0 100%);
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.brand__tag {
  font-size: 0.68rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  padding: 0.45rem 0.7rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav__links a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.65);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.lang {
  display: inline-flex;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.lang__btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang__btn.is-active {
  background: var(--navy);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 8px 20px rgba(30, 36, 48, 0.18);
}

.btn--primary:hover {
  background: var(--navy-hover);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
  color: var(--ink);
}

.btn--ghost:hover {
  background: #fff;
  border-color: rgba(26, 28, 34, 0.16);
}

.btn--sm {
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  border-radius: 10px;
}

.btn--login {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.nav-toggle {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--ink);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background: var(--ink);
}

.nav-toggle span::before { top: -5px; }
.nav-toggle span::after { top: 5px; }

.mobile-nav {
  display: none;
  padding: 0 0 1rem;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 0.25rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

/* —— Cards / surfaces —— */
.card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.card--solid {
  background: var(--surface-solid);
}

/* —— Hero —— */
.hero {
  padding: 1.5rem 0 1.25rem;
}

.hero__grid {
  display: grid;
  gap: 1.25rem;
}

.hero__copy {
  padding: 1.5rem 1.35rem 1.4rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 3px rgba(61, 139, 110, 0.18);
}

.hero__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.2vw, 2.55rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.03em;
}

.hero__title em {
  font-style: normal;
  color: var(--accent);
}

.hero__desc {
  margin: 0 0 1.15rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  max-width: 36rem;
}

.hero__mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.mini-card {
  padding: 0.9rem 0.95rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
}

.mini-card__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: #8a6d2e;
  margin-bottom: 0.55rem;
  font-size: 0.85rem;
}

.mini-card__title {
  margin: 0 0 0.2rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.mini-card__text {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* Slider */
.hero-slider {
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.hero-slider__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
  padding: 0 0.2rem;
}

.hero-slider__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.hero-slider__meta {
  font-size: 0.72rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
}

.hero-slider__frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #d8dde4;
}

.hero-slider__track {
  display: flex;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-slider__slide {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider__nav {
  position: absolute;
  inset: auto 0.65rem 0.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.hero-slider__arrow {
  pointer-events: auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}

.hero-slider__dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.hero-slider__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 0;
  background: rgba(30, 36, 48, 0.2);
  cursor: pointer;
  padding: 0;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-slider__dot.is-active {
  width: 18px;
  border-radius: 999px;
  background: var(--navy);
}

/* —— Highlights —— */
.highlights {
  padding: 0.5rem 0 1.5rem;
}

.highlights__grid {
  display: grid;
  gap: 0.9rem;
}

.highlight {
  padding: 1.15rem 1.1rem 1.2rem;
}

.highlight__icon {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
  background: #eef1f5;
  color: var(--navy);
}

.highlight h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.highlight p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* —— Sections —— */
.section {
  padding: 1.75rem 0 0.5rem;
}

.section__head {
  margin-bottom: 1rem;
}

.section__head h2 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  letter-spacing: -0.02em;
}

.section__head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 36rem;
}

.section__grid {
  display: grid;
  gap: 1rem;
}

/* Announcements */
.announce-list {
  display: grid;
  gap: 0.75rem;
}

.announce {
  padding: 1rem 1.05rem;
}

.announce__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.7rem;
  margin-bottom: 0.45rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  background: #eef1f5;
  color: var(--ink-soft);
}

.tag--system { background: #e8f0fa; color: var(--info); }
.tag--legal { background: #f7efe4; color: var(--warn); }
.tag--ops { background: #e8f5ef; color: var(--ok); }

.announce__date {
  font-size: 0.75rem;
  color: var(--muted);
}

.announce h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
}

.announce p {
  margin: 0 0 0.75rem;
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.announce__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.focus-card {
  padding: 1.15rem 1.1rem 1.2rem;
  height: 100%;
}

.focus-card h3 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-family: var(--font-display);
}

.focus-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.focus-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.65rem;
  align-items: start;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.focus-list strong {
  display: block;
  color: var(--ink);
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.focus-list__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #eef1f5;
  color: var(--navy);
  font-size: 0.8rem;
}

/* Contact */
.contact-channels {
  display: grid;
  gap: 0.7rem;
}

.channel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
}

.channel__left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.channel__icon {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: #eef1f5;
  color: var(--navy);
  flex-shrink: 0;
}

.channel__label {
  font-size: 0.78rem;
  color: var(--muted);
}

.channel__value {
  font-weight: 600;
  font-size: 0.92rem;
  word-break: break-all;
}

.form-card {
  padding: 1.15rem 1.1rem 1.2rem;
}

.form-card h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.form-card > p {
  margin: 0 0 1rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.form-grid {
  display: grid;
  gap: 0.75rem;
}

.field label {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(31, 122, 109, 0.45);
  box-shadow: 0 0 0 3px rgba(31, 122, 109, 0.12);
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field--full {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.9rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%) translateY(120%);
  background: var(--navy);
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  z-index: 100;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.toast.is-show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Footer */
.site-footer {
  padding: 0;
  margin-top: 1.5rem;
  width: 100%;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--muted);
  background: linear-gradient(90deg, rgba(248, 250, 252, 0.6) 0%, rgba(241, 245, 249, 0.9) 50%, rgba(248, 250, 252, 0.6) 100%);
}

.site-footer__inner--full {
  width: 100%;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
}

.site-footer__credit {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem 0.85rem;
  line-height: 1.5;
}

.site-footer__brand {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}

.site-footer__credit strong {
  color: var(--ink);
  font-weight: 700;
}

.site-footer__credit a {
  color: var(--accent, #0f766e);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--accent, #0f766e) 40%, transparent);
}

.site-footer__credit a:hover {
  color: var(--ink);
}

.site-footer a:hover {
  color: var(--ink);
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* —— Full-bleed hero —— */
.hero-bleed {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}

.hero-bleed__media {
  position: absolute;
  inset: 0;
}

.hero-bleed__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}

.hero-bleed__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 24, 32, 0.35) 0%, rgba(10, 24, 32, 0.55) 42%, rgba(10, 24, 32, 0.88) 100%),
    linear-gradient(90deg, rgba(18, 32, 42, 0.55) 0%, transparent 55%);
}

.hero-bleed__inner {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0 3.25rem;
  max-width: 40rem;
}

.hero-bleed__brand {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero-bleed__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.8vw, 1.55rem);
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.94);
}

.hero-bleed__desc {
  margin: 0 0 1.35rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  max-width: 34rem;
}

.hero-bleed__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn--light {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn--light:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-bleed__stat {
  margin: 1.1rem 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
}

/* —— Vacant rooms —— */
.section--vacant {
  padding-top: 3rem;
}

.vacant-empty {
  padding: 1.5rem;
  text-align: center;
}

.vacant-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.35rem;
}

.vacant-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.vacant-chip span {
  display: inline-flex;
  min-width: 1.35rem;
  justify-content: center;
  padding: 0.05rem 0.35rem;
  border-radius: 999px;
  background: rgba(18, 32, 42, 0.06);
  font-size: 0.75rem;
}

.vacant-chip.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.vacant-chip.is-active span {
  background: rgba(255, 255, 255, 0.18);
}

.vacant-floor {
  margin-bottom: 1.75rem;
}

.vacant-floor.is-hidden {
  display: none;
}

.vacant-floor__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.vacant-floor__head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.vacant-floor__head span {
  font-size: 0.82rem;
  color: var(--muted);
}

.vacant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.9rem;
}

.vacant-card {
  padding: 1rem 1.05rem 1.05rem;
  border-radius: var(--radius);
  background: var(--surface-solid);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vacant-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.vacant-card__top {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-start;
}

.vacant-card__code {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.vacant-card__meta {
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.vacant-card__badge {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
}

.vacant-card__badge--occupied {
  background: #ffe4e6;
  color: #be123c;
  border: 1px solid rgba(225, 29, 72, 0.25);
}

.vacant-card--occupied {
  background: linear-gradient(180deg, #fff5f6 0%, #fff 72%);
  border-color: rgba(225, 29, 72, 0.28);
  box-shadow: 0 4px 14px rgba(190, 18, 60, 0.08);
  opacity: 1;
}

.vacant-card--occupied:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(190, 18, 60, 0.12);
}

.vacant-card--occupied .vacant-card__code {
  color: #9f1239;
}

.vacant-card--occupied .vacant-card__meta,
.vacant-card--occupied .vacant-card__facts {
  color: #9f4258;
}

.vacant-card__locked {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #be123c;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: #ffe4e6;
  border: 1px solid rgba(225, 29, 72, 0.2);
}

.vacant-card__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.75rem;
  font-size: 0.84rem;
  color: var(--ink-soft);
}

.vacant-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.news-grid .announce {
  padding: 1.15rem 1.2rem 1.2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-grid .announce h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}

.news-grid .announce p {
  flex: 1;
}

.news-more {
  margin-top: 1.25rem;
  text-align: center;
}

.announce--empty {
  padding: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .nav-toggle { display: none; }

  .nav__links {
    display: flex;
  }

  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
  }

  .hero__copy {
    padding: 1.75rem 1.6rem 1.55rem;
  }

  .highlights__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section__grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }

  .hero-bleed__inner {
    padding: 6.5rem 0 4rem;
  }
}

@media (min-width: 1024px) {
  .brand__tag {
    max-width: none;
  }

  .hero {
    padding-top: 1.75rem;
  }
}

@media (max-width: 480px) {
  .hero__mini {
    grid-template-columns: 1fr;
  }

  .btn--login .btn__label-full {
    display: none;
  }

  .hero-bleed {
    min-height: 78vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bleed__media img {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
