/* ===== VARIABLES & RESET ===== */
:root {
  --forest: #1b3a2d;
  --forest-rgb: 27, 58, 45;
  --forest-light: #234d3c;
  --pine: #2d5a44;
  --sage: #7d9b8a;
  --sage-light: #a8c4b5;
  --amber: #c49a6c;
  --amber-light: #d4b48c;
  --amber-dark: #a07a4c;
  --cream: #f7f3ed;
  --cream-dark: #ede6db;
  --stone: #8a8578;
  --charcoal: #2a2520;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--amber);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--forest);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--stone);
  line-height: 1.7;
}

/* ===== BUTTON ===== */
.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 60px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--amber);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 154, 108, 0.4);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  z-index: 2;
}

.nav-logo-icon {
  font-size: 1.8rem;
  color: var(--amber);
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  transition: var(--transition);
}

.nav-logo-text small {
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
}

.nav.scrolled .nav-logo-text { color: var(--forest); }

/* Desktop nav drawer — inline flex row */
.nav-drawer {
  display: none;
}
@media (min-width: 769px) {
  .nav-drawer { display: flex; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: 8px;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav.scrolled .nav-link {
  color: var(--charcoal);
}

.nav.scrolled .nav-link:hover {
  color: var(--forest);
  background: var(--cream);
}

/* Hamburger button */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}
@media (min-width: 769px) { .nav-toggle { display: none; } }

.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s cubic-bezier(.22,1,.36,1);
}

.nav.scrolled .nav-toggle span { background: var(--charcoal); }

.nav-toggle.active span { background: var(--white); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Mobile nav backdrop */
.mobile-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(27, 58, 45, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .3s ease;
}
.mobile-nav-backdrop.visible {
  display: block;
  opacity: 1;
}

/* Close button inside drawer */
.mobile-nav-close {
  display: none;
}
.nav-drawer.open .mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 64px;
  color: rgba(255,255,255,0.7);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color .2s;
  z-index: 2;
}
.nav-drawer.open .mobile-nav-close:hover {
  color: var(--white);
}

/* Mobile nav — slide-in drawer */
.nav-drawer.open {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 80vw);
  background: var(--forest);
  z-index: 1001;
  flex-direction: column;
  padding: 0;
  box-shadow: -8px 0 32px rgba(0,0,0,0.3);
  overflow-y: auto;
  animation: slideIn .35s cubic-bezier(.22,1,.36,1);
}

@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.nav-drawer.open .nav-links {
  flex-direction: column;
  gap: 0;
  width: 100%;
  padding: 80px 0 1rem;
}

.nav-drawer.open .nav-link {
  font-family: 'Playfair Display', serif;
  font-size: 1.0625rem;
  font-weight: 600;
  padding: 1rem 1.75rem;
  width: 100%;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-radius: 0;
  display: flex;
  align-items: center;
  transition: background .2s, color .2s;
}

.nav-drawer.open .nav-link:hover {
  background: rgba(255,255,255,0.06);
  color: var(--amber-light);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(27, 58, 45, 0.55) 0%,
    rgba(42, 37, 32, 0.45) 50%,
    rgba(27, 58, 45, 0.7) 100%
  );
}

.hero-mountains {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  width: 100%;
  height: 200px;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 800px;
}

.hero-tagline {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--amber-light);
  margin-bottom: 20px;
  padding-top: 60px;
}
@media (min-width: 769px) {
  .hero-tagline { padding-top: 0; }
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== PROPERTY CARDS ===== */
.property-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.property-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.property-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.property-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.property-card:hover .property-card-image img {
  transform: scale(1.06);
}

.property-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(27, 58, 45, 0.85);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.property-card-body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.property-card-body h3 {
  font-size: 1.4rem;
  color: var(--forest);
  margin-bottom: 4px;
}

.property-card-location {
  font-size: 0.85rem;
  color: var(--stone);
  margin-bottom: 16px;
}

.property-card-stats {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.property-card-stats span {
  background: var(--cream);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--forest-light);
}

.property-card-desc {
  font-size: 0.92rem;
  color: var(--stone);
  line-height: 1.6;
  flex: 1;
}

.property-card-link {
  display: inline-block;
  margin-top: 16px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--amber);
  transition: var(--transition);
}

.property-card:hover .property-card-link {
  color: var(--amber-dark);
}

/* ===== MOUNTAIN DIVIDER ===== */
.mountain-divider {
  margin-top: -1px;
  line-height: 0;
}

.mountain-divider svg {
  width: 100%;
  height: 120px;
  display: block;
}

.mountain-divider-reverse {
  margin-bottom: -1px;
  margin-top: 0;
}

/* ===== PROPERTY DETAIL SECTIONS ===== */
.property-detail {
  background: var(--cream);
  padding-bottom: 80px;
}

.property-hero {
  position: relative;
  height: 50vh;
  min-height: 380px;
  overflow: hidden;
}

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

.property-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 58, 45, 0.8) 0%, rgba(0,0,0,0.1) 60%);
}

.property-hero-content {
  position: absolute;
  bottom: 48px;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--white);
  z-index: 2;
}

.property-hero-location {
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--amber-light);
  margin-bottom: 12px;
}

.property-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.property-hero-title span {
  font-weight: 400;
  font-size: 0.7em;
}

/* Stats Bar */
.property-stats-bar {
  display: flex;
  justify-content: center;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin: -40px auto 48px;
  position: relative;
  z-index: 5;
  max-width: 700px;
  overflow: hidden;
}

.stat {
  flex: 1;
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid var(--cream-dark);
}

.stat:last-child { border-right: none; }

.stat-icon {
  display: block;
  font-size: 0.6rem;
  color: var(--amber);
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--stone);
  margin-bottom: 4px;
}

.stat-value {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--forest);
}

/* Property Content */
.property-content {
  max-width: 900px;
  margin: 0 auto 64px;
}

.property-content h3 {
  font-size: 1.6rem;
  color: var(--forest);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--cream-dark);
}

.property-content h4 {
  font-size: 1.2rem;
  color: var(--forest-light);
  margin: 28px 0 12px;
}

.property-description {
  margin-bottom: 48px;
}

.property-description p {
  margin-bottom: 16px;
  font-size: 1.02rem;
  color: #4a4440;
  line-height: 1.8;
}

.property-highlight {
  background: var(--cream-dark);
  padding: 20px 24px;
  border-radius: var(--radius);
  border-left: 4px solid var(--amber);
  font-weight: 500;
  color: var(--forest) !important;
}

/* Amenities */
.property-amenities {
  margin-bottom: 48px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.amenity {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: var(--transition);
}

.amenity:hover {
  background: var(--cream-dark);
}

.amenity span {
  color: var(--amber);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Rooms */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.room {
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius);
  font-size: 0.92rem;
  color: #4a4440;
  line-height: 1.6;
  border-left: 3px solid var(--sage);
}

.room strong {
  color: var(--forest);
  font-size: 0.95rem;
}

/* ===== GALLERY ===== */
.property-gallery {
  max-width: 1100px;
  margin: 0 auto;
}

.property-gallery h3 {
  font-size: 1.6rem;
  color: var(--forest);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--cream-dark);
}

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

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(27, 58, 45, 0);
  transition: var(--transition);
}

.gallery-item:hover::after {
  background: rgba(27, 58, 45, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-lg {
  grid-column: span 2;
  grid-row: span 2;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  position: relative;
  background: var(--forest);
  color: var(--white);
  overflow: hidden;
}

.about-bg {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
}

.about-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.about-section .section-label {
  color: var(--amber-light);
}

.about-section .section-title {
  color: var(--white);
}

.about-content p {
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  background: var(--forest);
  color: var(--white);
}

.footer-mountains {
  position: relative;
  line-height: 0;
  margin-top: -1px;
}

.footer-mountains svg {
  width: 100%;
  height: 150px;
  display: block;
}

.footer-inner {
  padding: 0 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.footer-brand p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 320px;
}

.footer-links-group h4 {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  color: var(--amber-light);
}

.footer-links-group a {
  display: block;
  padding: 4px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-links-group a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-image-wrap {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 60px rgba(0,0,0,0.5);
  transition: opacity 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  opacity: 0.7;
  transition: var(--transition);
  z-index: 10;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: none;
  color: white;
  font-size: 2.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: var(--transition);
  z-index: 10;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
  background: rgba(255,255,255,0.2);
}

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .property-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item-lg {
    grid-column: span 2;
    grid-row: span 1;
  }

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

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .property-stats-bar {
    flex-wrap: wrap;
    margin: -30px 16px 36px;
  }

  .stat {
    flex: 0 0 50%;
    border-right: none;
    border-bottom: 1px solid var(--cream-dark);
    padding: 20px 12px;
  }

  .stat:nth-child(odd) {
    border-right: 1px solid var(--cream-dark);
  }

  .stat:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .gallery-item-lg {
    grid-column: span 2;
  }

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

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

  .hero-title {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }

  .hero-scroll { display: none; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand { grid-column: span 1; }

  .lightbox-prev,
  .lightbox-next {
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
  }

  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
}

@media (max-width: 480px) {
  .property-hero {
    height: 40vh;
    min-height: 300px;
  }

  .property-hero-title {
    font-size: 2rem;
  }

  .property-content h3 {
    font-size: 1.3rem;
  }

  .container {
    padding: 0 16px;
  }
}
