@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

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

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

:root {
  color-scheme: light;
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 16px;
  line-height: 1.5;
  color: #231f20;
  background: #ffffff;
}

::-moz-selection {
  background: rgba(249, 200, 79, 0.45);
}

::selection {
  background: rgba(249, 200, 79, 0.45);
}

hr {
  border: 0;
  border-top: 1px solid #e5e5e5;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #231f20;
}

p {
  margin: 0 0 1rem;
  color: #231f20;
}

small {
  color: #525252;
}

.u-container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1rem;
}

.u-muted {
  color: #525252;
}

.u-center {
  text-align: center;
}

.u-hidden {
  display: none !important;
}

.u-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 1rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid--2 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid--3 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* --------------------
   Brand / Logo
--------------------- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 200px;
}
.brand:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(45, 117, 140, 0.35);
  border-radius: 0.625rem;
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 0.625rem;
  background: radial-gradient(14px 14px at 30% 30%, rgba(255, 255, 255, 0.55), transparent 60%), linear-gradient(135deg, #f9c84f, #2d758c);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  position: relative;
}
.brand__mark::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.brand__text {
  display: grid;
  line-height: 1.1;
}

.brand__name {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #231f20;
  font-size: 1.05rem;
}

.brand__tag {
  font-size: 0.8rem;
  color: #525252;
}

/* --------------------
   Center Navigation
--------------------- */
.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(35, 31, 32, 0.06);
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.85rem;
  border-radius: 9999px;
  color: #231f20;
  font-weight: 650;
  font-size: 0.95rem;
  transition: background 200ms ease, transform 200ms ease, color 200ms ease;
}
.nav__link .nav__icon {
  font-size: 0.95rem;
  color: #2d758c;
  transition: color 200ms ease;
}
.nav__link:hover {
  background: rgba(45, 117, 140, 0.1);
  transform: translateY(-1px);
}
.nav__link:hover .nav__icon {
  color: #231f20;
}
.nav__link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(45, 117, 140, 0.35);
  border-radius: 9999px;
}
.nav__link.is-active {
  background: rgba(249, 200, 79, 0.35);
}
.nav__link.is-active .nav__icon {
  color: #231f20;
}

/* --------------------
   Right side actions
--------------------- */
.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  min-width: 260px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 9999px;
  padding: 0.25rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.lang-switch__btn {
  height: 34px;
  padding: 0 0.8rem;
  border-radius: 9999px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  color: #404040;
  transition: background 200ms ease, color 200ms ease;
}
.lang-switch__btn:hover {
  background: rgba(45, 117, 140, 0.1);
  color: #231f20;
}
.lang-switch__btn.is-active {
  background: rgba(249, 200, 79, 0.55);
  color: #231f20;
}
.lang-switch__btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(45, 117, 140, 0.35);
}

.auth-actions {
  display: inline-flex;
  gap: 0.5rem;
}

.auth-actions__btn {
  height: 40px;
  padding-inline: 1rem;
  border-radius: 9999px;
}

/* --------------------
   Mobile Toggle
--------------------- */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 0.625rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  padding: 10px;
  transition: transform 200ms ease;
}
.nav-toggle:hover {
  transform: translateY(-1px);
}
.nav-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(45, 117, 140, 0.35);
}

.nav-toggle__bar {
  display: block;
  height: 2px;
  width: 100%;
  background: #231f20;
  border-radius: 2px;
}
.nav-toggle__bar:not(:last-child) {
  margin-bottom: 6px;
}

/* Mobile animation for toggle */
.nav-toggle.is-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-toggle__bar {
  transition: transform 200ms ease, opacity 200ms ease;
}

/* --------------------
   Mobile Menu Behavior
--------------------- */
.nav__mobile-actions {
  display: none;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 0.75rem;
  gap: 0.75rem;
}

@media (max-width: calc(992px - 1px)) {
  .header-actions {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nav {
    justify-content: flex-end;
    flex: 0;
  }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 50px rgba(35, 31, 32, 0.14);
    border: 1px solid rgba(0, 0, 0, 0.08);
  }
  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    padding: 0 1rem 1rem;
    display: none;
  }
  .nav.is-open {
    display: block;
    -webkit-animation: dropdown 180ms ease-out;
            animation: dropdown 180ms ease-out;
  }
  .nav__link {
    justify-content: space-between;
    padding: 0.85rem 0.9rem;
    font-size: 1rem;
  }
  .nav__link .nav__icon {
    margin-right: 0.5rem;
  }
  .nav__mobile-actions {
    display: grid;
  }
  .auth-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .auth-actions__btn {
    width: 100%;
    justify-content: center;
  }
}
@-webkit-keyframes dropdown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes dropdown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Small screens tweaks */
@media (max-width: calc(576px - 1px)) {
  .brand__tag {
    display: none;
  }
  .brand {
    min-width: auto;
  }
}
.site-footer {
  background: #231f20;
  color: rgba(255, 255, 255, 0.85);
  padding-top: 4rem;
  position: relative;
}

/* Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

/* Column Titles */
.footer-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: #ffffff;
  position: relative;
}
.footer-title::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 3px;
  background: #f9c84f;
  border-radius: 10px;
}

/* Logo */
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 900;
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f9c84f, #2d758c);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.footer-about__desc {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.25s ease;
}
.footer-social a:hover {
  background: #f9c84f;
  color: #231f20;
  transform: translateY(-3px);
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.7rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}
.footer-links a:hover {
  color: #f9c84f;
  padding-left: 5px;
}

/* Quick Enquiry Form */
.footer-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-form input,
.footer-form textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  color: #ffffff;
  font-size: 0.9rem;
}
.footer-form input::-moz-placeholder, .footer-form textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.footer-form input::placeholder,
.footer-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.footer-form input:focus,
.footer-form textarea:focus {
  outline: none;
  border-color: #f9c84f;
  background: rgba(255, 255, 255, 0.12);
}

.footer-form__btn {
  margin-top: 0.5rem;
  height: 44px;
  border-radius: 999px;
  font-weight: 700;
}

/* Bottom Copyright */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  background: rgba(0, 0, 0, 0.15);
}

.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.footer-bottom__inner p {
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: calc(992px - 1px)) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: calc(576px - 1px)) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom__inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
.btn {
  height: 44px;
  padding: 0 1rem;
  border-radius: 9999px;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms ease;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(45, 117, 140, 0.35);
}

.btn--primary {
  background: #f9c84f;
  color: #231f20;
}
.btn--primary:hover {
  transform: translateY(-1px);
}

.btn--secondary {
  background: #2d758c;
  color: #ffffff;
}
.btn--secondary:hover {
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  border-color: #e5e5e5;
}
.btn--ghost:hover {
  background: #f5f5f5;
}

.input,
.select,
.textarea {
  width: 100%;
  border: 1px solid #e5e5e5;
  border-radius: 0.625rem;
  background: #ffffff;
  color: #231f20;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.input:focus-visible,
.select:focus-visible,
.textarea:focus-visible {
  border-color: #2d758c;
  outline: none;
  box-shadow: 0 0 0 3px rgba(45, 117, 140, 0.35);
}

.input,
.select {
  height: 44px;
  padding: 0 0.875rem;
}

.textarea {
  min-height: 120px;
  padding: 0.75rem 0.875rem;
  resize: vertical;
}

.label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* =========================================
   HERO SECTION
========================================= */
.hero-typing {
  padding: 40px 0;
}

.hero-typing__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  gap: 60px;
}

/* LEFT CONTENT */
.hero-typing__title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 20px;
  color: #111827;
}

.typing-text {
  color: #2d758c;
}

.cursor {
  color: #2d758c;
  -webkit-animation: blink 1s infinite;
          animation: blink 1s infinite;
}

/* BIG LINE */
.hero-typing__bigline {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 18px;
  color: #1f2937;
}

/* DESCRIPTION */
.hero-typing__description {
  font-size: 16px;
  color: #6b7280;
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* ACTION BUTTONS */
.hero-typing__actions {
  display: flex;
  gap: 16px;
}

/* RIGHT IMAGE */
.hero-typing__right img {
  width: 100%;
  max-width: 520px;
}

/* CURSOR BLINK */
@-webkit-keyframes blink {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes blink {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 992px) {
  .hero-typing__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-typing__description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-typing__actions {
    justify-content: center;
  }
  .hero-typing__title {
    font-size: 40px;
  }
}
@media (max-width: 576px) {
  .hero-typing {
    padding: 70px 0;
  }
  .hero-typing__title {
    font-size: 32px;
  }
  .hero-typing__bigline {
    font-size: 18px;
  }
}
/* =========================================
   MAIN LISTINGS SECTION
========================================= */
.listings {
  padding: 60px 0 80px;
  background: #f7f7f7; /* Airbnb soft grey */
}

/* =========================================
   HEADER AREA
========================================= */
.listings__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
}

.listings__title {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin: 0 0 6px;
}

.listings__subtitle {
  font-size: 15px;
  color: #6b7280;
  margin: 0;
}

/* CTA button alignment */
.listings__cta {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

/* =========================================
   FILTER SECTION SPACING
========================================= */
.listings > .container > .listings-filters {
  margin-bottom: 40px;
}

/* =========================================
   LISTING RESULT SECTION
========================================= */
.listing-section {
  margin-top: 40px;
}

/* Remove double container padding inside */
.listing-section .container {
  padding: 0;
}

/* =========================================
   GRID WRAPPER
========================================= */
.listing-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* =========================================
   RESPONSIVE BREAKPOINTS
========================================= */
@media (max-width: 1200px) {
  .listing-grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .listings {
    padding: 50px 0 70px;
  }
  .listing-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .listings__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .listings__cta {
    margin-top: 12px;
  }
}
@media (max-width: 576px) {
  .container {
    padding: 0 16px;
  }
  .listing-grid-4 {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .listings__title {
    font-size: 22px;
  }
  .listings__subtitle {
    font-size: 14px;
  }
}
/* --------------------
   Filters
--------------------- */
/* =========================================
   AIRBNB STYLE FILTER BAR
========================================= */
.listings-filters {
  padding: 30px 0;
}

/* MAIN PILL CONTAINER */
.air-filters {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
  overflow: visible;
  position: relative;
}

/* EACH CELL */
.air-filters__cell {
  position: relative;
  padding: 14px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-width: 180px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.air-filters__cell:hover {
  background: #f7f7f7;
  border-radius: 999px;
}

/* LABEL */
.air-filters__label {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
}

/* INPUT */
.air-filters__control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.air-filters__input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
  background: transparent;
}

/* DIVIDER */
.air-filters__divider {
  width: 1px;
  background: #e5e5e5;
  margin: 10px 0;
}

/* DROPDOWN TRIGGER */
.air-dd__trigger {
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.air-dd__chev {
  font-size: 12px;
  opacity: 0.6;
}

/* SEARCH BUTTON */
.air-filters__submit {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: none;
  background: #231f20;
  color: #fff;
  font-size: 18px;
  margin: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.air-filters__submit:hover {
  background: #e31c5f;
  transform: scale(1.05);
}

/* =========================================
   DROPDOWN PANEL
========================================= */
.air-dd {
  position: absolute;
  top: 110%;
  left: 0;
  width: 320px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  padding: 20px;
  display: none;
  z-index: 100;
}

.air-dd--scroll {
  max-height: 350px;
  overflow-y: auto;
}

.air-dd__title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.air-dd__item {
  display: flex;
  gap: 14px;
  width: 100%;
  border: none;
  background: none;
  padding: 12px;
  border-radius: 14px;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}

.air-dd__item:hover {
  background: #f7f7f7;
}

.air-dd__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.air-dd__primary {
  font-weight: 600;
  font-size: 14px;
}

.air-dd__secondary {
  font-size: 12px;
  color: #6b7280;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 992px) {
  .air-filters {
    flex-direction: column;
    border-radius: 20px;
  }
  .air-filters__divider {
    display: none;
  }
  .air-filters__cell {
    border-bottom: 1px solid #eee;
  }
  .air-filters__submit {
    align-self: flex-end;
    margin: 15px;
  }
  .air-dd {
    width: 100%;
    left: 0;
  }
}
/* --------------------
   Listing Cards
--------------------- */
.listing-section {
  padding: 1.25rem 0 3.5rem;
  background: #fafafa;
}

/* 4 listings per row on desktop */
.listing-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 2rem;
}

/* ==============================
   LISTING CARD MODERN DESIGN
================================= */
.listing-card2 {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.listing-card2:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

/* ==============================
   IMAGE SECTION
================================= */
.listing-card2__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.listing-card2__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}

.listing-card2:hover .listing-card2__media img {
  transform: scale(1.05);
}

/* Category Tag */
.listing-card2__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #f9c84f;
  color: #231f20;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
}

/* ==============================
   BODY
================================= */
.listing-card2__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* TITLE (Fixed Height Area) */
.listing-card2__title {
  font-size: 18px;
  font-weight: 600;
  color: #231f20;
  margin: 0 0 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 48px; /* ensures equal space */
}

.listing-card2__title a {
  color: inherit;
  text-decoration: none;
}

/* META INFO */
.listing-card2__meta {
  font-size: 14px;
  color: #525252;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.listing-card2__meta i {
  margin-right: 5px;
}

/* PRICE */
.listing-card2__price {
  font-size: 20px;
  font-weight: 700;
  color: #231f20;
  margin-bottom: 16px;
}

/* ==============================
   FOOTER (ALWAYS FIXED)
================================= */
.listing-card2__footer {
  margin-top: auto; /* 🔥 keeps footer fixed */
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

/* ICON BUTTON */
.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #f9c84f;
  background: #f9c84f;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.icon-btn:hover {
  background: #231f20;
  color: #ffffff;
  border-color: #231f20;
}

/* VIEW BUTTON */
.listing-card2__btn {
  flex: 1;
  text-align: center;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  background: #2d758c;
  color: #fff;
  transition: all 0.3s ease;
}

.listing-card2__btn:hover {
  background: #231f20;
}

/* Responsive */
@media (max-width: calc(1200px - 1px)) {
  .listing-grid-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: calc(992px - 1px)) {
  .listing-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: calc(576px - 1px)) {
  .listing-grid-4 {
    grid-template-columns: 1fr;
  }
}
.sl {
  padding: 2rem 0 4rem;
  background: radial-gradient(900px 400px at 20% 0%, rgba(249, 200, 79, 0.2), transparent 60%), radial-gradient(900px 420px at 85% 10%, rgba(45, 117, 140, 0.16), transparent 55%);
}

.sl__container {
  display: grid;
  gap: 1rem;
}

/* Breadcrumbs */
.sl__crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #404040;
}

.sl__crumb {
  color: #2d758c;
  font-weight: 650;
}

.sl__crumb-sep {
  color: #a3a3a3;
}

.sl__crumb--current {
  color: #404040;
  font-weight: 700;
}

/* Header card */
.sl__header {
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (max-width: calc(768px - 1px)) {
  .sl__header {
    flex-direction: column;
  }
}
.sl__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.sl__badge {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  font-size: 0.85rem;
  color: #262626;
}

.sl__badge--primary {
  border-color: rgba(249, 200, 79, 0.55);
  background: rgba(249, 200, 79, 0.3);
  color: #231f20;
}

.sl__badge--ghost {
  border-color: rgba(45, 117, 140, 0.18);
  background: rgba(45, 117, 140, 0.1);
  color: #262626;
}

.sl__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.15;
}

.sl__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: #404040;
  font-weight: 600;
}

.sl__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.sl__meta-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(45, 117, 140, 0.55);
}

.sl__header-right {
  display: grid;
  gap: 0.75rem;
  justify-items: end;
}

@media (max-width: calc(768px - 1px)) {
  .sl__header-right {
    justify-items: start;
    width: 100%;
  }
}
.sl__price {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #231f20;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(249, 200, 79, 0.28);
  border: 1px solid rgba(249, 200, 79, 0.5);
}

.sl__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.sl__iconbtn {
  width: 44px;
  padding: 0;
}

/* Layout */
.sl__layout {
  align-items: start;
}

.sl__maincol {
  display: grid;
  gap: 1rem;
}

.sl__sidecol {
  display: grid;
  gap: 1rem;
}

@media (min-width: 992px) {
  .sl__sidecol {
    position: -webkit-sticky;
    position: sticky;
    top: 92px;
    align-self: start;
  }
}
/* Gallery */
.sl__gallery {
  overflow: hidden;
}

.sl__gallery-main {
  border-bottom: 1px solid #e5e5e5;
  background: #f5f5f5;
}

.sl__gallery-img {
  width: 100%;
  height: clamp(220px, 36vw, 420px);
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.sl__thumbs {
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

@media (max-width: calc(768px - 1px)) {
  .sl__thumbs {
    grid-template-columns: repeat(4, 1fr);
  }
}
.sl__thumb {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.625rem;
  overflow: hidden;
  padding: 0;
  background: #ffffff;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.sl__thumb:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.sl__thumb:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(45, 117, 140, 0.35);
}
.sl__thumb.is-active {
  border-color: rgba(45, 117, 140, 0.45);
}

.sl__thumb img {
  width: 100%;
  height: 64px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Sections */
.sl__section {
  padding: 1.5rem;
}

.sl__h2 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
}

.sl__h3 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.sl__desc {
  color: #262626;
}

/* Features list */
.sl__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.sl__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 600;
  color: #262626;
}

.sl__check {
  width: 26px;
  height: 26px;
  border-radius: 9999px;
  background: rgba(45, 117, 140, 0.12);
  border: 1px solid rgba(45, 117, 140, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

/* Map placeholder */
.sl__map {
  border: 1px dashed rgba(0, 0, 0, 0.18);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.65);
}

.sl__map-inner {
  min-height: 220px;
  display: grid;
  place-content: center;
  gap: 0.75rem;
  text-align: center;
  padding: 1.5rem;
}

.sl__map-pin {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: rgba(249, 200, 79, 0.3);
  border: 1px solid rgba(249, 200, 79, 0.55);
  margin-inline: auto;
  position: relative;
}
.sl__map-pin::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 9999px;
  background: rgba(45, 117, 140, 0.35);
}

/* Sidebar */
.sl__side {
  padding: 1.5rem;
}

.sl__poster {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sl__avatar {
  width: 56px;
  height: 56px;
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  -o-object-fit: cover;
     object-fit: cover;
}

.sl__poster-name {
  font-weight: 900;
  color: #231f20;
}

.sl__poster-role {
  font-weight: 650;
}

.sl__poster-since {
  font-size: 0.9rem;
}

.sl__side-divider {
  height: 1px;
  background: #e5e5e5;
  margin: 1.25rem 0;
}

.sl__kv {
  display: grid;
  gap: 0.75rem;
}

.sl__kv-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.sl__kv-v {
  font-weight: 800;
  color: #171717;
}

.sl__side-actions {
  display: grid;
  gap: 0.75rem;
}

/* Form */
.sl__form {
  display: grid;
  gap: 0.75rem;
}

.sl__submit {
  width: 100%;
}

.sl__hint {
  margin: 0.5rem 0 0;
  font-size: 0.92rem;
}

/* Similar cards */
.sl__section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.sl__similar {
  margin-top: 1rem;
}

.sl__card {
  display: grid;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.sl__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.sl__card-imgwrap {
  height: 160px;
  background: #f5f5f5;
  border-bottom: 1px solid #e5e5e5;
}
.sl__card-imgwrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.sl__card-body {
  padding: 1rem;
  display: grid;
  gap: 0.5rem;
}

.sl__card-title {
  font-weight: 900;
  color: #231f20;
}

.sl__card-price {
  font-weight: 900;
  color: #171717;
}

.hojo-crumb-banner {
  position: relative;
  background-image: var(--hojo-crumb-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 1rem;
  overflow: hidden;
  margin-block: 1.5rem;
  padding: 2.5rem 0;
}
.hojo-crumb-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, var(--hojo-crumb-overlay, 0.6));
}
.hojo-crumb-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
}
.hojo-crumb-banner__title {
  margin: 0 0 0.5rem;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #f9c84f;
}
.hojo-crumb-banner__nav {
  display: flex;
  justify-content: center;
}
.hojo-crumb-banner__list {
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  align-items: center;
}
.hojo-crumb-banner__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}
.hojo-crumb-banner__link {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.hojo-crumb-banner__link:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.hojo-crumb-banner__sep {
  color: rgba(255, 255, 255, 0.55);
}
.hojo-crumb-banner__current {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

/* =========================
   PAGE HERO (About)
========================= */
.page-hero {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background: url("../images/hero/about-hero.jpg") center/cover no-repeat;
  transform: scale(1.02);
  filter: saturate(0.95);
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(35, 31, 32, 0.85) 0%, rgba(35, 31, 32, 0.65) 55%, rgba(35, 31, 32, 0.55) 100%);
}
.page-hero__inner {
  position: relative;
  z-index: 1;
}
.page-hero__content {
  max-width: 760px;
}
.page-hero__eyebrow {
  display: inline-block;
  margin: 0 0 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  background: rgba(249, 200, 79, 0.18);
  border: 1px solid rgba(249, 200, 79, 0.32);
  color: #ffffff;
  font-weight: 600;
}
.page-hero__title {
  color: #ffffff;
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 3.6vw, 3rem);
  letter-spacing: -0.03em;
}
.page-hero__subtitle {
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* =========================
   ABOUT SECTIONS
========================= */
.about-section {
  padding: clamp(3rem, 5vw, 5rem) 0;
}
.about-section--soft {
  background: #fafafa;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.about-head {
  margin-bottom: 2.5rem;
}
.about-head h2 {
  margin-bottom: 0.5rem;
}
.about-head p {
  max-width: 720px;
  margin: 0 auto;
}

/* Two-column content + media */
.about-split {
  align-items: start;
}
.about-split__content h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}
.about-split__media {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .about-split--reverse .about-split__content {
    order: 2;
  }
  .about-split--reverse .about-split__media {
    order: 1;
  }
}

.about-kicker {
  margin: 0 0 0.5rem;
  font-weight: 700;
  color: #2d758c;
}

/* Media blocks */
.about-media {
  overflow: hidden;
  padding: 0;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.about-media:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.about-media__img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-media__placeholder {
  aspect-ratio: 16/10;
  display: grid;
  place-items: center;
  background: radial-gradient(1200px 500px at 10% 10%, rgba(45, 117, 140, 0.14), transparent 60%), radial-gradient(900px 420px at 90% 30%, rgba(249, 200, 79, 0.18), transparent 55%), #f5f5f5;
  border-bottom: 1px solid #e5e5e5;
}
.about-media__placeholder span {
  font-weight: 700;
  color: #404040;
  padding: 0.75rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid #e5e5e5;
}
.about-media__note {
  padding: 1rem;
  color: #404040;
  font-size: 0.95rem;
}
.about-media__note strong {
  color: #231f20;
}
.about-media--tall .about-media__placeholder {
  aspect-ratio: 4/5;
}

/* Small stat cards */
.about-stats .about-stat {
  padding: 1rem;
}
.about-stats .about-stat__label {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: #525252;
  font-weight: 600;
}
.about-stats .about-stat__value {
  margin: 0;
  font-weight: 800;
  color: #231f20;
  letter-spacing: -0.02em;
}

/* Values cards */
.about-values {
  margin-top: 1.5rem;
}

.value-card {
  padding: 1.5rem;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.value-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.value-card h3 {
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}
.value-card p {
  margin: 0;
  color: #404040;
  line-height: 1.75;
}
.value-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  background: rgba(45, 117, 140, 0.12);
  border: 1px solid rgba(45, 117, 140, 0.25);
  color: #2d758c;
}

/* How we work list */
.about-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}
.about-list li {
  position: relative;
  padding-left: 1.4rem;
  color: #262626;
}
.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #f9c84f;
  box-shadow: 0 0 0 3px rgba(249, 200, 79, 0.25);
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* CTA */
.about-cta {
  padding: clamp(3rem, 5vw, 5rem) 0;
}
.about-cta__card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about-cta__card {
    grid-template-columns: 1fr auto;
  }
}
.about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .about-cta__actions {
    justify-content: flex-end;
  }
}

/* Contact page hero (reuses .page-hero base from about) */
.page-hero--contact .page-hero__bg {
  background: url("../images/hero/contact-hero.jpg") center/cover no-repeat;
}

/* Layout */
.contact-page {
  padding: clamp(3rem, 5vw, 5rem) 0;
}

.contact-layout {
  align-items: start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.contact-card,
.contact-form-card,
.campus-card,
.contact-map {
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.contact-card:hover,
.contact-form-card:hover,
.campus-card:hover,
.contact-map:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* Contact info */
.contact-card {
  padding: 2rem;
}
.contact-card__title {
  margin-bottom: 1.5rem;
}

.contact-methods {
  display: grid;
  gap: 1.25rem;
}

.contact-method {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  align-items: start;
}
.contact-method__icon {
  width: 44px;
  height: 44px;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  background: rgba(45, 117, 140, 0.12);
  border: 1px solid rgba(45, 117, 140, 0.25);
  color: #2d758c;
}
.contact-method__label {
  margin: 0 0 0.25rem;
  font-weight: 700;
  color: #231f20;
}
.contact-method__value {
  margin: 0;
  color: #262626;
}
.contact-method__value a {
  color: inherit;
  text-decoration: none;
}
.contact-method__value a:hover {
  text-decoration: underline;
}
.contact-method__muted {
  display: inline-block;
  margin-left: 0.5rem;
  color: #525252;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Campuses */
.contact-campuses {
  margin-top: 1.5rem;
}
@media (max-width: calc(768px - 1px)) {
  .contact-campuses {
    grid-template-columns: 1fr;
  }
}

.campus-card {
  padding: 1.5rem;
}
.campus-card__title {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.campus-meta {
  margin-top: 1.25rem;
}
.campus-meta__label {
  margin: 0 0 0.5rem;
  font-weight: 700;
  color: #231f20;
}
.campus-meta__value {
  margin: 0;
  color: #262626;
  line-height: 1.7;
}

/* Hours list */
.hours-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px dashed #e5e5e5;
}
.hours-list li:last-child {
  border-bottom: 0;
}
.hours-list li span:first-child {
  color: #404040;
  font-weight: 600;
}
.hours-list li span:last-child {
  color: #231f20;
  font-weight: 700;
  text-align: right;
}

/* Form card */
.contact-form-wrap {
  display: grid;
  gap: 1.5rem;
}

.contact-form-card {
  padding: 2rem;
}
.contact-form-card__title {
  margin-bottom: 0.5rem;
}
.contact-form-card__subtitle {
  margin-bottom: 1.5rem;
}

.contact-form .form-field {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.contact-form .form-field label {
  font-weight: 700;
  color: #231f20;
}
.contact-form .form-field input,
.contact-form .form-field textarea {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid #e5e5e5;
  background: #ffffff;
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.contact-form .form-field input:focus,
.contact-form .form-field textarea:focus {
  border-color: rgba(45, 117, 140, 0.55);
  box-shadow: 0 0 0 4px rgba(45, 117, 140, 0.14);
}
.contact-form .form-field textarea {
  resize: vertical;
  min-height: 160px;
}
@media (max-width: calc(768px - 1px)) {
  .contact-form__grid {
    grid-template-columns: 1fr;
  }
}
.contact-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.contact-form__hint {
  margin: 0;
  font-size: 0.95rem;
}

/* Optional map */
.contact-map {
  padding: 0;
  overflow: hidden;
}
.contact-map__placeholder {
  aspect-ratio: 16/10;
  display: grid;
  place-items: center;
  background: radial-gradient(900px 420px at 10% 10%, rgba(249, 200, 79, 0.18), transparent 60%), radial-gradient(900px 420px at 90% 25%, rgba(45, 117, 140, 0.14), transparent 55%), #f5f5f5;
  border-bottom: 1px solid #e5e5e5;
}
.contact-map__placeholder span {
  font-weight: 800;
  color: #404040;
  padding: 0.75rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #e5e5e5;
}
.contact-map__note {
  padding: 1rem;
  color: #404040;
  font-size: 0.95rem;
}

.grid--2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.campus-card {
  padding: 30px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}
.campus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.campus-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.campus-meta {
  margin-bottom: 22px;
}

.campus-meta__label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 8px;
}

.campus-meta__value {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

/* HOURS FIX */
.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  display: grid;
  grid-template-columns: 120px 1fr; /* fixed day column */
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid #f1f1f1;
  font-size: 14px;
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list span:first-child {
  font-weight: 500;
  color: #444;
}

.hours-list span:last-child {
  text-align: right;
  color: #666;
  white-space: nowrap; /* prevents time break */
}

/* Reuse existing page-hero base. Only override bg image for legal pages */
.page-hero--legal .page-hero__bg {
  background: url("../images/hero/legal-hero.jpg") center/cover no-repeat;
}

/* Legal pages shell */
.legal-page {
  padding: clamp(3rem, 5vw, 5rem) 0;
}

.legal-shell {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.legal-shell:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.legal-meta {
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e5e5e5;
}
.legal-meta__updated {
  margin: 0;
  color: #404040;
}
.legal-meta__updated strong {
  color: #231f20;
}

/* Layout with sticky TOC on desktop */
.legal-layout {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
@media (min-width: 992px) {
  .legal-layout {
    grid-template-columns: 280px 1fr;
    align-items: start;
  }
}

/* TOC */
.legal-nav {
  border: 1px solid #e5e5e5;
  border-radius: 1.5rem;
  padding: 1.25rem;
  background: #ffffff;
}
@media (min-width: 992px) {
  .legal-nav {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
  }
}
.legal-nav__title {
  margin: 0 0 1rem;
  font-weight: 800;
  color: #231f20;
  letter-spacing: -0.01em;
}
.legal-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.25rem;
}
.legal-nav__list a {
  display: block;
  padding: 0.6rem 0.75rem;
  border-radius: 1rem;
  text-decoration: none;
  color: #262626;
  font-weight: 600;
}
.legal-nav__list a:hover {
  background: #fafafa;
  color: #231f20;
}

/* Content blocks */
.legal-content {
  min-width: 0; /* prevents overflow issues */
}

.legal-block {
  padding: 1.5rem;
  border: 1px solid #e5e5e5;
  border-radius: 1.5rem;
  background: #ffffff;
}
.legal-block + .legal-block {
  margin-top: 1.5rem;
}
.legal-block h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  letter-spacing: -0.02em;
}
.legal-block p {
  margin: 0;
  color: #404040;
  line-height: 1.8;
}
.legal-block p + p {
  margin-top: 1rem;
}

.legal-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: #404040;
  line-height: 1.8;
}
.legal-list li + li {
  margin-top: 0.5rem;
}

/* Small polish: anchor offset so headings don’t hide behind sticky header */
.legal-block[id] {
  scroll-margin-top: 110px;
}

/* Hero */
.auth-hero {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: hidden;
}
.auth-hero__bg {
  position: absolute;
  inset: 0;
  background: url("../images/hero/auth-hero.jpg") center/cover no-repeat;
  transform: scale(1.02);
  filter: saturate(0.95);
}
.auth-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(35, 31, 32, 0.86) 0%, rgba(35, 31, 32, 0.62) 60%, rgba(35, 31, 32, 0.55) 100%);
}
.auth-hero__inner {
  position: relative;
  z-index: 1;
}
.auth-hero__content {
  max-width: 760px;
}
.auth-hero__title {
  color: #ffffff;
  font-size: clamp(2rem, 3.8vw, 3rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}
.auth-hero__subtitle {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}
.auth-hero__note {
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 1rem;
  font-weight: 600;
}
.auth-hero__link {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}
.auth-hero__link a {
  color: #f9c84f;
  text-decoration: none;
  font-weight: 800;
}
.auth-hero__link a:hover {
  text-decoration: underline;
}
.auth-hero--compact {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

/* Page */
.auth-page {
  padding: clamp(3rem, 5vw, 5rem) 0;
}

.auth-shell {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.auth-shell:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.auth-shell--narrow {
  max-width: 560px;
  margin: 0 auto;
}

/* Head */
.auth-head {
  margin-bottom: 2rem;
}
.auth-head__step {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.auth-head__title {
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}
.auth-head__subtitle {
  margin: 0;
}

.auth-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.8rem;
  border-radius: 9999px;
  border: 1px solid #e5e5e5;
  background: #fafafa;
  color: #404040;
  font-weight: 800;
  font-size: 0.95rem;
}
.auth-step.is-active {
  background: rgba(249, 200, 79, 0.18);
  border-color: rgba(249, 200, 79, 0.35);
  color: #231f20;
}

/* Panels */
.auth-step-panel {
  display: none;
}

.auth-step-panel.is-active {
  display: block;
}

.auth-type-panel {
  display: none;
}

.auth-type-panel.is-active {
  display: block;
}

/* Choices */
.auth-choice-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .auth-choice-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.auth-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.auth-choice__card {
  display: grid;
  gap: 0.5rem;
  border: 1px solid #e5e5e5;
  border-radius: 1.5rem;
  background: #ffffff;
  padding: 1.25rem;
  cursor: pointer;
  transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}
.auth-choice__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.auth-choice__tag {
  display: inline-flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
  border: 1px solid #e5e5e5;
  background: #fafafa;
  font-weight: 800;
  font-size: 0.85rem;
  color: #404040;
}
.auth-choice__title {
  font-weight: 900;
  color: #231f20;
  letter-spacing: -0.01em;
}
.auth-choice__desc {
  color: #404040;
  line-height: 1.6;
  font-size: 0.95rem;
}
.auth-choice input:checked + .auth-choice__card {
  border-color: rgba(45, 117, 140, 0.55);
  box-shadow: 0 0 0 4px rgba(45, 117, 140, 0.12);
}

/* Form */
.auth-form .form-field {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.auth-form .form-field label {
  font-weight: 800;
  color: #231f20;
}
.auth-form .form-field input,
.auth-form .form-field textarea,
.auth-form .form-field select {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid #e5e5e5;
  background: #ffffff;
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.auth-form .form-field input:focus,
.auth-form .form-field textarea:focus,
.auth-form .form-field select:focus {
  border-color: rgba(45, 117, 140, 0.55);
  box-shadow: 0 0 0 4px rgba(45, 117, 140, 0.14);
}

@media (max-width: calc(768px - 1px)) {
  .auth-grid {
    grid-template-columns: 1fr;
  }
}

.auth-section-title {
  margin-bottom: 1.5rem;
}
.auth-section-title h3 {
  margin: 0 0 0.5rem;
}
.auth-section-title p {
  margin: 0;
}

.auth-password-hint {
  margin: -0.5rem 0 1.25rem;
  font-weight: 600;
}

/* Upload */
.upload-field {
  display: grid;
  gap: 0.5rem;
}
.upload-field__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.upload-field__ui {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1.5rem;
  border: 1px dashed #e5e5e5;
  background: #fafafa;
  cursor: pointer;
}
.upload-field__ui:hover {
  border-color: rgba(45, 117, 140, 0.45);
  background: rgba(45, 117, 140, 0.06);
}
.upload-field__text {
  color: #404040;
  line-height: 1.6;
  font-weight: 600;
}
.upload-field__icon {
  width: 44px;
  height: 44px;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  background: rgba(249, 200, 79, 0.18);
  border: 1px solid rgba(249, 200, 79, 0.32);
  color: #231f20;
  flex: 0 0 auto;
}
.upload-field__filename {
  font-size: 0.95rem;
}

/* Footer bits */
.auth-divider {
  height: 1px;
  background: #e5e5e5;
  margin: 1.5rem 0;
}

.auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1rem 0 1.5rem;
}

.auth-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 1rem;
  color: #404040;
}
.auth-check input {
  margin-top: 0.25rem;
}
.auth-check a {
  color: #2d758c;
  font-weight: 800;
  text-decoration: none;
}
.auth-check a:hover {
  text-decoration: underline;
}
.auth-check--inline {
  margin: 0;
}

.auth-link,
.auth-links a {
  color: #2d758c;
  font-weight: 800;
  text-decoration: none;
}
.auth-link:hover,
.auth-links a:hover {
  text-decoration: underline;
}

.auth-submit {
  width: 100%;
}

.auth-legal-note {
  margin-top: 1.25rem;
}
.auth-legal-note a {
  color: #2d758c;
  font-weight: 800;
  text-decoration: none;
}
.auth-legal-note a:hover {
  text-decoration: underline;
}

.auth-links {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}
.auth-links__dot {
  color: #525252;
}

/* Hero background */
.page-hero--news .page-hero__bg {
  background: url("../images/hero/news-hero.jpg") center/cover no-repeat;
}

/* Layout */
.news-page {
  padding: clamp(3rem, 5vw, 5rem) 0;
}

.news-layout {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
@media (min-width: 992px) {
  .news-layout {
    grid-template-columns: 1fr 360px;
    align-items: start;
  }
}

/* Toolbar */
.news-toolbar {
  padding: 1.25rem;
  display: grid;
  gap: 1rem;
}

.news-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
}
.news-search input {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid #e5e5e5;
  background: #ffffff;
  padding: 0.9rem 1rem;
  outline: none;
}
.news-search input:focus {
  border-color: rgba(45, 117, 140, 0.55);
  box-shadow: 0 0 0 4px rgba(45, 117, 140, 0.14);
}
.news-search button {
  padding-inline: 0.9rem;
  display: grid;
  place-items: center;
}

.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Chips */
.news-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid #e5e5e5;
  background: #fafafa;
  color: #262626;
  font-weight: 700;
  text-decoration: none;
}
.news-chip:hover {
  background: rgba(45, 117, 140, 0.08);
  border-color: rgba(45, 117, 140, 0.25);
}
.news-chip.is-active {
  background: rgba(249, 200, 79, 0.18);
  border-color: rgba(249, 200, 79, 0.35);
  color: #231f20;
}

/* List */
.news-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.5rem;
}

.news-card {
  padding: 0;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
  display: grid;
}
.news-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
@media (min-width: 768px) {
  .news-card {
    grid-template-columns: 260px 1fr;
  }
}
.news-card__media {
  position: relative;
  display: block;
  background: #f5f5f5;
}
.news-card__media img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.news-card__body {
  padding: 1.5rem;
  display: grid;
  gap: 0.75rem;
}
.news-card__title {
  margin: 0;
}
.news-card__title a {
  color: #231f20;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.news-card__title a:hover {
  text-decoration: underline;
}
.news-card__excerpt {
  margin: 0;
  color: #404040;
  line-height: 1.8;
}
.news-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.news-card__author {
  color: #525252;
  font-weight: 700;
}

.news-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  background: rgba(35, 31, 32, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.85rem;
}

.news-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  color: #404040;
  font-weight: 700;
  font-size: 0.95rem;
}

.news-meta__cat {
  color: #2d758c;
  font-weight: 900;
}

.news-meta__dot {
  color: #525252;
}

/* Sidebar */
.news-sidebar {
  display: grid;
  gap: 1.5rem;
}

.sidebar-card {
  padding: 1.5rem;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.sidebar-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.sidebar-card__title {
  margin: 0 0 1rem;
}

.sidebar-links {
  display: grid;
  gap: 0.5rem;
}
.sidebar-links a {
  color: #262626;
  font-weight: 700;
  text-decoration: none;
}
.sidebar-links a:hover {
  text-decoration: underline;
}

.sidebar-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.recent-list {
  display: grid;
  gap: 0.75rem;
}

.recent-item {
  display: grid;
  gap: 0.25rem;
  text-decoration: none;
  padding: 0.75rem;
  border-radius: 1rem;
  border: 1px solid #e5e5e5;
  background: #fafafa;
}
.recent-item:hover {
  background: rgba(45, 117, 140, 0.08);
  border-color: rgba(45, 117, 140, 0.25);
}
.recent-item__title {
  font-weight: 900;
  color: #231f20;
  line-height: 1.4;
}

/* Empty */
.news-empty {
  padding: 2.5rem;
  text-align: center;
}
.news-empty h2 {
  margin-bottom: 0.5rem;
}

/* Pagination */
.news-pagination {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.news-page-btn {
  text-decoration: none;
  font-weight: 900;
  color: #2d758c;
  padding: 0.5rem 0.85rem;
  border-radius: 9999px;
  border: 1px solid #e5e5e5;
  background: #fafafa;
}
.news-page-btn:hover {
  background: rgba(45, 117, 140, 0.08);
  border-color: rgba(45, 117, 140, 0.25);
}
.news-page-btn.is-disabled {
  opacity: 0.55;
  pointer-events: none;
}

.news-page-count {
  color: #404040;
  font-weight: 800;
}
/*# sourceMappingURL=main.css.map */