/* ============================================
   Artful Dome — Homepage (Custom Light Theme)
   ============================================ */

:root {
  --bg:           #F7F5F0;
  --bg-alt:       #EDEAE3;
  --bg-card:      #FFFFFF;
  --bg-dark:      #2e1e2d;

  --text:         #241C24;
  --text-soft:    #655A63;
  --text-muted:   #948A92;

  --accent:       #6B4568;
  --accent-light: #8F6089;
  --accent-pale:  #F0E8EF;
  --warm:         #C17F59;
  --warm-pale:    #F5EAE3;

  --border:       #D8D3CA;
  --border-dark:  #B8B2A8;
  --rule:         #C8C2B8;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;

  --radius:       6px;
  --radius-lg:    12px;

  --nav-h:        68px;
  --container:    1140px;
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Section utilities ── */
.section--alt { background: var(--bg-alt); }

.section-rule {
  height: 1px;
  background: var(--rule);
  margin: 0;
}

.section-head { margin-bottom: 48px; }
.section-head--center { text-align: center; }

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}

.section-sub {
  margin-top: 14px;
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
}
.btn--primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

.btn--bordered {
  background: var(--bg-card);
  color: var(--text);
  border: 1.5px solid var(--border-dark);
}
.btn--bordered:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--lg { padding: 18px 36px; font-size: 1rem; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: var(--transition);
}
.text-link:hover { color: var(--warm); border-color: var(--warm); }
.text-link svg { transition: transform var(--transition); }
.text-link--open svg { transform: rotate(180deg); }

/* ============================================
   NAVIGATION (shared site header)
   ============================================ */

/* Property / inner pages sit below fixed header */
.property-page.has-site-header,
.gallery-page.has-site-header,
.reviews-page.has-site-header,
.contact-page.has-site-header {
  padding-top: var(--nav-h);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.nav {
  position: relative;
  height: var(--nav-h);
  transition: box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

/* Default solid look (property page + scrolled home) */
.nav--solid,
.nav--elevated {
  background: rgba(252, 249, 245, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(216, 211, 202, 0.85);
}

.nav--elevated {
  box-shadow: 0 10px 30px rgba(36, 28, 36, 0.08);
}

/* Homepage: transparent over hero until scroll */
body.home-page .nav:not(.nav--elevated) {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}

body.home-page .nav:not(.nav--elevated) .nav__brand-text strong,
body.home-page .nav:not(.nav--elevated) .nav__link {
  color: rgba(255, 255, 255, 0.92);
}

body.home-page .nav:not(.nav--elevated) .nav__brand-text em {
  color: rgba(255, 255, 255, 0.7);
}

body.home-page .nav:not(.nav--elevated) .nav__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

body.home-page .nav:not(.nav--elevated) .nav__property {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

body.home-page .nav:not(.nav--elevated) .nav__cta {
  background: rgba(255, 255, 255, 0.16);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

body.home-page .nav:not(.nav--elevated) .nav__cta:hover {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}

body.home-page .nav:not(.nav--elevated) .nav__menu-btn {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
}

body.home-page .nav:not(.nav--elevated) .nav__menu-btn span {
  background: #fff;
}

.nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--text);
  transition: opacity 0.25s ease;
}

.nav__brand:hover {
  opacity: 0.9;
}

.nav__logo {
  display: block;
  height: 68px;
  width: auto;
  max-width: min(168px, 42vw);
  object-fit: contain;
  border-radius: 10px;
}

.nav__mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--accent), #4e324c);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 18px rgba(107, 69, 104, 0.28);
}

.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.nav__brand-text strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}

.nav__brand-text em {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.nav__link {
  position: relative;
  padding: 8px 12px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav__link:hover {
  color: var(--accent);
  background: var(--accent-pale);
}

.nav__link.is-active {
  color: var(--accent);
  background: var(--accent-pale);
  font-weight: 600;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav__social {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff !important;
  background: #1c1816;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.nav__social-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.nav__social-link--facebook { background: #1877f2; }
.nav__social-link--instagram {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 75%, #515bd4 100%);
}
.nav__social-link--twitter { background: #000000; color: #fff !important; }
.nav__social-link--youtube { background: #ff0000; }
.nav__social-link--airbnb { background: #ff5a5f; }

.nav__social-link:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow: 0 4px 10px rgba(28, 24, 22, 0.18);
  color: #fff;
}

.nav__social--mobile {
  padding: 4px 0 8px;
}

.nav__property {
  display: inline-flex;
  align-items: center;
  max-width: 200px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.nav__property:hover,
.nav__property.is-active {
  background: var(--accent-pale);
  border-color: #d4b9cd;
  box-shadow: 0 4px 14px rgba(107, 69, 104, 0.1);
}

.nav__cta {
  padding: 10px 18px;
  background: linear-gradient(145deg, var(--accent), #563652);
  border: 0;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #fff;
  box-shadow: 0 8px 18px rgba(107, 69, 104, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.nav__cta:hover {
  color: #fff;
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(107, 69, 104, 0.28);
}

.nav__menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
}

.nav__menu-btn span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 0 auto;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav__menu-btn.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav__menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}
.nav__menu-btn.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav__mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 252, 248, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 12px 28px 22px;
  flex-direction: column;
  gap: 2px;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  pointer-events: none;
  box-shadow: 0 18px 40px rgba(36, 28, 36, 0.1);
}

.nav__mobile--open {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}

.nav__mobile a {
  padding: 13px 4px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid rgba(216, 211, 202, 0.55);
}

.nav__mobile .nav__social-link {
  color: #fff !important;
  border-bottom: 0;
  padding: 0;
}

.nav__mobile a:last-child {
  border-bottom: 0;
}

.nav__mobile .nav__cta {
  margin-top: 12px;
  text-align: center;
  justify-content: center;
}

.nav__mobile .is-active,
.nav__mobile a[href*="property"]:hover {
  color: var(--accent);
}

/* ============================================
   BANNER SLIDER
   ============================================ */
.banner {
  position: relative;
  height: 92vh;
  min-height: 560px;
  max-height: 900px;
  overflow: hidden;
}

.banner__slider {
  position: absolute;
  inset: 0;
}

.banner__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.banner__slide--active { opacity: 1; z-index: 1; }

.banner__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    105deg,
    rgba(46, 30, 45, 0.72) 0%,
    rgba(46, 30, 45, 0.45) 50%,
    rgba(46, 30, 45, 0.25) 100%
  );
}

.banner__content {
  position: absolute;
  z-index: 3;
  bottom: 120px;
  left: 0; right: 0;
  padding: 0 28px;
  max-width: var(--container);
  margin: 0 auto;
}

.banner__eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.banner__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 5.5rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 16px;
  white-space: pre-line;
}

.banner__tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  letter-spacing: 0.04em;
}

.banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.banner__controls {
  position: absolute;
  z-index: 4;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
}

.banner__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.banner__arrow:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

.banner__dots { display: flex; gap: 8px; }

.banner__dot {
  width: 32px;
  height: 3px;
  background: rgba(255,255,255,0.35);
  border-radius: 2px;
  transition: var(--transition);
  cursor: pointer;
}
.banner__dot--active {
  background: #fff;
  width: 48px;
}

/* ============================================
   FEATURES (4 points)
   ============================================ */
.features {
  padding: 0;
  margin-top: -56px;
  position: relative;
  z-index: 10;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.feature-card {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  text-align: center;
  transition: background var(--transition);
}
.feature-card:last-child { border-right: none; }
.feature-card:hover { background: var(--accent-pale); }

.feature-card__num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.35;
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--warm-pale);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--warm);
  padding: 12px;
}
.feature-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.feature-card__desc {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.5;
}

/* ============================================
   INTRO CARDS (Welcome + Mission)
   ============================================ */
.intro-cards { padding: 88px 0; }

.intro-cards__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.intro-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(46, 30, 45, 0.05);
  transition: var(--transition);
}
.intro-card:hover {
  border-color: var(--border-dark);
  box-shadow: 0 12px 40px rgba(46, 30, 45, 0.08);
}

.intro-card--mission::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(107, 69, 104, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 0%, rgba(193, 127, 89, 0.07) 0%, transparent 50%);
  pointer-events: none;
}

.intro-card__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  position: relative;
}

.intro-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 6px;
  position: relative;
}

.intro-card__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 22px;
  position: relative;
}

.intro-card__ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: var(--warm);
  position: relative;
}
.intro-card__ornament::before,
.intro-card__ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-dark), transparent);
}
.intro-card__ornament span { font-size: 0.6rem; }

.intro-card__body {
  position: relative;
  flex: 1;
}
.intro-card__body p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 16px;
}
.intro-card__body p:last-child { margin-bottom: 0; }

.intro-card--mission .intro-card__body p:last-child {
  font-style: italic;
  color: var(--text);
}

.intro-card__hosts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  position: relative;
}

.intro-card__host {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(46, 30, 45, 0.04);
}
.intro-card__host:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 28px rgba(107, 69, 104, 0.12);
  transform: translateY(-2px);
}

.intro-card__host-photo {
  position: relative;
  height: 148px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(36, 28, 36, 0.08) 0%, rgba(36, 28, 36, 0.22) 100%),
    url('../images/host-background.png') center / cover no-repeat;
}

.intro-card__host-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 20%, rgba(255, 255, 255, 0.18) 0%, transparent 55%);
  pointer-events: none;
}

.intro-card__host-portrait {
  position: relative;
  z-index: 1;
  width: 108px;
  height: 108px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    0 8px 22px rgba(36, 28, 36, 0.28),
    0 0 0 1px rgba(107, 69, 104, 0.18);
  margin-bottom: 14px;
  background: #1a1218;
}

.intro-card__host-body {
  padding: 14px 14px 16px;
  text-align: center;
}

.intro-card__host-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.2;
}

.intro-card__host-role {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.intro-card__host-phone {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}
.intro-card__host-phone:hover { color: var(--accent); }

/* ============================================
   ABOUT
   ============================================ */
.about { padding: 88px 0; }

.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about__lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 3px solid var(--accent);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-item {
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
  background: var(--bg-card);
}
.stat-item:last-child { border-right: none; }

.stat-item__val {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.stat-item__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.about__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: stretch;
}

.about__img-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 330px;
}

.about__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about__img--main {
  min-height: 330px;
}
.about__img--sub {
  flex: 1;
  min-height: 0;
}

/* ============================================
   AMENITIES
   ============================================ */
.amenities { padding: 88px 0; }

.amenities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

.amenity-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--transition);
}
.amenity-chip:hover {
  border-color: var(--accent);
  background: var(--accent-pale);
}
.amenity-chip__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.amenities__footer { text-align: center; }

/* ============================================
   GALLERY STRIP
   ============================================ */
.gallery-strip { padding: 88px 0; }

.gallery-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  aspect-ratio: 4/3;
  background: #1a1218;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(46, 30, 45, 0);
  transition: background var(--transition);
  pointer-events: none;
}
.gallery-item:hover::after { background: rgba(46, 30, 45, 0.12); }
.gallery-item__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.6rem 0.85rem 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(transparent, rgba(20, 12, 18, 0.78));
  pointer-events: none;
}

.gallery-strip__footer {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews { padding: 88px 0; }

.reviews__top {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.reviews__heading-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.reviews__score-card {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
  align-items: center;
}

.score-big {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.score-big__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.score-big__label {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  line-height: 1;
}

.score-bars { display: flex; flex-direction: column; gap: 8px; justify-content: center; }

.score-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
}
.score-bar__label { width: 90px; color: var(--text-soft); }
.score-bar__track {
  width: 100px;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.score-bar__fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}
.score-bar__val { font-weight: 500; width: 28px; text-align: right; }

.reviews__slider-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviews__viewport {
  flex: 1;
  overflow: hidden;
}

.reviews__track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.reviews__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border-dark);
  border-radius: 50%;
  color: var(--text);
  background: var(--bg-card);
  transition: var(--transition);
}
.reviews__arrow:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-pale);
}
.reviews__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.reviews__dot {
  width: 32px;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
}
.reviews__dot--active {
  background: var(--accent);
  width: 48px;
}

.review-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 0;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.review-card:hover {
  border-color: var(--border-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.review-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.review-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-pale);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  overflow: hidden;
  flex-shrink: 0;
}

.review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card__name { font-weight: 500; font-size: 0.95rem; }
.review-card__date { font-size: 0.78rem; color: var(--text-muted); }

.review-card__stars {
  color: var(--warm);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-card__text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-soft);
}

/* ============================================
   LOCATION
   ============================================ */
.location { padding: 88px 0; }

.location__box {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.location__text {
  font-size: 1.05rem;
  color: var(--text-soft);
  margin: 16px 0;
}

.location__note {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.location__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.location__badge {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px 40px;
  background: var(--accent-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.location__badge-icon { font-size: 2.5rem; }
.location__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text);
}
.location__badge span {
  font-size: 0.85rem;
  color: var(--text-soft);
}

/* ============================================
   CTA
   ============================================ */
.cta { padding: 0 0 88px; }

.cta__box {
  text-align: center;
  padding: 72px 48px;
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  color: #fff;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta__text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta .btn--primary {
  background: #c15d59;
  border-color: #c15d59;
}
.cta .btn--primary:hover {
  background: #d06e6a;
  border-color: #d06e6a;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}

.site-footer {
  margin-top: 2rem;
  background:
    radial-gradient(80% 120% at 0% 0%, rgba(107, 69, 104, 0.1), transparent 55%),
    linear-gradient(180deg, #2a1a28 0%, #1c121b 100%);
  color: rgba(255, 252, 248, 0.88);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 1fr 1.15fr;
  gap: 2rem 1.75rem;
  padding: 3rem 0 2.25rem;
}

.site-footer__logo {
  display: inline-block;
  margin-bottom: 0.9rem;
}

.site-footer__logo img {
  display: block;
  height: 72px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  border-radius: 10px;
}

.site-footer__about {
  margin: 0;
  max-width: 28rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 252, 248, 0.68);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

.site-footer__heading {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}

.site-footer__links,
.site-footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.site-footer__links a,
.site-footer__contact a,
.site-footer__contact span {
  color: rgba(255, 252, 248, 0.72);
  font-size: 0.92rem;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.2s ease;
  word-break: break-word;
}

.site-footer__links a:hover,
.site-footer__contact a:hover {
  color: #fff;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  background: #111;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.site-footer__social-link svg {
  width: 15px;
  height: 15px;
}

.site-footer__social-link--facebook { background: #1877f2; }
.site-footer__social-link--instagram {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 75%, #515bd4 100%);
}
.site-footer__social-link--twitter { background: #000000; color: #fff; }
.site-footer__social-link--youtube { background: #ff0000; }
.site-footer__social-link--airbnb { background: #ff5a5f; }

.site-footer__social-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  color: #fff;
}

.site-footer__map {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
  aspect-ratio: 4 / 3;
  max-height: 160px;
}

.site-footer__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer__map-empty {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 252, 248, 0.6);
  line-height: 1.45;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 1rem 0 1.25rem;
  font-size: 0.82rem;
  color: rgba(255, 252, 248, 0.55);
}

.site-footer__credit a {
  color: rgba(255, 252, 248, 0.78);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 252, 248, 0.25);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-footer__credit a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 1000px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 2.25rem 0 1.75rem;
  }

  .site-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(46, 30, 45, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.lightbox--open { opacity: 1; visibility: visible; }

.lightbox__close {
  position: absolute;
  top: 24px; right: 28px;
  color: #fff;
  font-size: 1.5rem;
  opacity: 0.7;
  transition: var(--transition);
  z-index: 2;
}
.lightbox__close:hover { opacity: 1; }

.lightbox img {
  max-width: 88vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2.5rem;
  opacity: 0.6;
  padding: 16px;
  transition: var(--transition);
  z-index: 2;
}
.lightbox__nav:hover { opacity: 1; }
.lightbox__nav--prev { left: 16px; }
.lightbox__nav--next { right: 16px; }

.lightbox__counter {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

/* ============================================
   MODAL
   ============================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.modal--open { opacity: 1; visibility: visible; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.modal__panel {
  position: relative;
  width: 92%;
  max-width: 600px;
  max-height: 80vh;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transform: translateY(16px);
  transition: transform var(--transition);
}
.modal--open .modal__panel { transform: translateY(0); }

.modal__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
}
.modal__head h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
}
.modal__close { font-size: 1.2rem; color: var(--text-muted); }
.modal__close:hover { color: var(--text); }

.modal__body {
  padding: 20px 28px;
  overflow-y: auto;
}
.modal__body .amenity-chip { margin-bottom: 8px; }

.modal__panel--wide { max-width: 720px; }

.modal__panel--gallery {
  width: min(1100px, 94vw);
  max-width: 1100px;
  max-height: 90vh;
  height: 90vh;
}

.modal__panel--gallery .modal__head {
  flex-shrink: 0;
}

.modal__panel--gallery .modal__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal__body--gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
  align-content: start;
  gap: 14px;
  max-height: none;
  height: auto;
  padding: 20px 24px 28px;
}

.modal__body--gallery .gallery-item {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  min-height: 140px;
  align-self: start;
}

.modal__body--gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal__body--gallery .gallery-item__caption {
  font-size: 0.72rem;
  line-height: 1.3;
  padding: 1.25rem 0.7rem 0.55rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.modal__body--story p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-soft);
  margin-bottom: 18px;
}
.modal__body--story p:last-child { margin-bottom: 0; }

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal--visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .nav__actions .nav__social {
    display: none;
  }
}

@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card:nth-child(2) { border-right: none; }
  .feature-card:nth-child(1),
  .feature-card:nth-child(2) { border-bottom: 1px solid var(--border); }

  .about__layout { grid-template-columns: 1fr; gap: 40px; }
  .intro-cards__grid { grid-template-columns: 1fr; }
  .amenities__grid { grid-template-columns: repeat(2, 1fr); }
  .review-card { flex: 0 0 calc((100% - 20px) / 2); }
  .modal__body--gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .location__box { grid-template-columns: 1fr; }
  .gallery-strip__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about__stats { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }
}

@media (max-width: 900px) {
  :root {
    --nav-h: 58px;
  }

  .nav__links,
  .nav__actions {
    display: none;
  }

  .nav__menu-btn {
    display: flex;
  }

  .nav__logo {
    height: 44px;
  }

  .nav__mobile {
    display: flex;
    max-height: min(70vh, 520px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav__mobile .nav__social--mobile {
    display: flex;
  }

  .nav__brand-text em {
    display: none;
  }

  .container {
    padding: 0 20px;
  }

  .location__box {
    padding: 28px 22px;
  }

  .location__badge {
    padding: 22px 20px;
  }

  .intro,
  .about,
  .amenities,
  .reviews,
  .gallery-strip,
  .location {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .cta {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

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

  .nav__inner {
    padding: 0 14px;
  }

  .nav__mobile {
    padding: 12px 16px 20px;
  }

  .nav__social-link {
    width: 40px;
    height: 40px;
  }

  .nav__social-link svg {
    width: 16px;
    height: 16px;
  }

  .banner {
    height: 78vh;
    min-height: 420px;
  }

  .banner__content {
    bottom: 88px;
    left: 16px;
    right: 16px;
    padding: 0;
  }

  .banner__title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .banner__text {
    font-size: 0.98rem;
    max-width: 100%;
  }

  .banner__actions {
    flex-wrap: wrap;
    gap: 10px;
  }

  .banner__actions .btn {
    flex: 1 1 auto;
    min-width: min(100%, 140px);
    white-space: normal;
  }

  .banner__controls {
    bottom: 56px;
  }

  .features {
    display: none;
  }

  .intro-card { padding: 28px 20px; }
  .intro-card__hosts { grid-template-columns: 1fr; }
  .intro-card--mission { display: none; }
  .intro-cards__grid { grid-template-columns: 1fr; }

  .about__stats { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); }

  .about__images { grid-template-columns: 1fr; }
  .about__img-col { display: none; }
  .about__img--main {
    min-height: 0;
    height: 200px;
  }

  .amenities__grid { grid-template-columns: 1fr; }
  .reviews__top {
    margin-bottom: 28px;
    padding-bottom: 20px;
  }
  .reviews__heading-row {
    gap: 12px;
  }
  .reviews__heading-row .section-heading {
    font-size: clamp(1.55rem, 6.5vw, 2.2rem);
    flex: 1;
    min-width: 0;
  }
  .reviews__score-card {
    gap: 0;
  }
  .score-big {
    padding: 12px 16px;
  }
  .score-big__num {
    font-size: 2.4rem;
  }
  .review-card { flex: 0 0 100%; }
  .reviews__slider-wrap {
    display: grid;
    grid-template-columns: 1fr auto auto 1fr;
    grid-template-areas:
      "view view view view"
      ". prev next .";
    column-gap: 12px;
    row-gap: 14px;
    align-items: center;
  }
  .reviews__viewport {
    grid-area: view;
    width: 100%;
    touch-action: pan-y;
    cursor: grab;
  }
  .reviews__arrow {
    display: flex;
    width: 42px;
    height: 42px;
  }
  .reviews__arrow--prev { grid-area: prev; }
  .reviews__arrow--next { grid-area: next; }
  .gallery-strip__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .modal__panel--gallery { height: 90dvh; max-height: 90dvh; width: 96vw; }
  .modal__body--gallery { grid-template-columns: 1fr; gap: 12px; padding: 16px; }
  .modal__body--gallery .gallery-item { min-height: 180px; }

  .score-bar {
    flex-wrap: wrap;
    gap: 8px;
  }

  .score-bar__label {
    width: auto;
    min-width: 72px;
  }

  .score-bar__track {
    flex: 1;
    width: auto;
    min-width: 0;
  }

  .cta__box { padding: 40px 20px; }
  .cta .btn--lg {
    width: 100%;
    white-space: normal;
  }

  .location__box {
    padding: 22px 16px;
    gap: 28px;
  }

  .location__badge {
    padding: 18px 16px;
    flex-wrap: wrap;
    gap: 14px;
  }

  .site-footer__social-link {
    width: 40px;
    height: 40px;
  }

  .site-footer__map {
    max-height: none;
    aspect-ratio: 16 / 10;
  }

  .footer__inner { flex-direction: column; gap: 8px; text-align: center; }

  .lightbox__close {
    top: max(12px, env(safe-area-inset-top));
    right: max(12px, env(safe-area-inset-right));
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }

  .lightbox__nav {
    font-size: 2rem;
    padding: 12px;
  }

  .lightbox__nav--prev { left: 4px; }
  .lightbox__nav--next { right: 4px; }

  .lightbox img {
    max-width: 92vw;
    max-height: 70vh;
  }

  .lightbox__counter {
    bottom: max(16px, env(safe-area-inset-bottom));
  }

  .btn {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  :root {
    --nav-h: 54px;
  }

  .section-heading {
    font-size: clamp(1.85rem, 8vw, 2.6rem);
  }

  .gallery-strip__grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

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

  .banner {
    min-height: 380px;
    height: 72vh;
  }

  .banner__content {
    bottom: 76px;
  }

  .banner__controls {
    bottom: 44px;
  }

  .banner__actions .btn {
    width: 100%;
  }

  .site-footer__logo img {
    height: 60px;
  }

  .site-footer__bottom-inner {
    font-size: 0.78rem;
    padding-inline: 4px;
  }
}

@media (max-width: 360px) {
  .gallery-strip__grid {
    grid-template-columns: 1fr;
  }

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

  .stat-item {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
  }
}
