/* ============================================
   Hokkaido Alpine Estates — Global Stylesheet
   Luxury Mountain Property Showcase
   ============================================ */

/* CSS Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #3d1f2a;
  background-color: #f4f1ec;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* ============================================
   Typography
   ============================================ */

.font-display {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
}

.font-body {
  font-family: "Work Sans", system-ui, sans-serif;
}

.label {
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #8a8178;
}

/* ============================================
   Navigation
   ============================================ */

.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(244, 241, 236, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 205, 208, 0.5);
  transition: all 0.3s ease;
}

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

.nav-logo {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #3d1f2a;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #3d1f2a;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #a0522d;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #a0522d;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #3d1f2a;
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f4f1ec;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(244, 241, 236, 0.3);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 40px;
}

.hero h1 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  color: #3d1f2a;
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(244, 241, 236, 0.8);
}

.hero-subtitle {
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 16px;
  color: #5a524a;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-cta {
  display: inline-block;
  padding: 16px 40px;
  background-color: #3d1f2a;
  color: #f4f1ec;
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-cta:hover {
  background-color: #a0522d;
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  width: 24px;
  height: 24px;
  stroke: #3d1f2a;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(10px); }
  60% { transform: translateX(-50%) translateY(5px); }
}

/* ============================================
   Section Styles
   ============================================ */

.section {
  padding: 120px 0;
}

.section-alt {
  background-color: #f4f1ec;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
  padding: 0 40px;
}

.section-header .label {
  margin-bottom: 20px;
  display: block;
}

.section-header h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  color: #3d1f2a;
  line-height: 1.3;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================
   Introduction Section
   ============================================ */

.intro-section {
  padding: 180px 0;
  background-color: #f4f1ec;
}

.intro-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 0 40px;
}

.intro-content .label {
  margin-bottom: 24px;
  display: block;
}

.intro-content h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  color: #3d1f2a;
  margin-bottom: 24px;
  line-height: 1.3;
}

.intro-content p {
  color: #5a524a;
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.8;
}

.intro-link {
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #a0522d;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 1px solid #a0522d;
  padding-bottom: 4px;
  transition: all 0.3s ease;
  display: inline-block;
}

.intro-link:hover {
  color: #3d1f2a;
  border-color: #3d1f2a;
}

/* ============================================
   Property Listings
   ============================================ */

.properties-section {
  padding: 0 0 120px;
}

.property-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 0;
  min-height: 500px;
}

.property-card:nth-child(even) .property-image {
  order: 2;
}

.property-card:nth-child(even) .property-info {
  order: 1;
}

.property-image {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

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

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

.property-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 80px;
  background-color: #f4f1ec;
}

.property-info .label {
  margin-bottom: 16px;
  display: block;
}

.property-info h3 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  color: #3d1f2a;
  margin-bottom: 8px;
  line-height: 1.3;
}

.property-location {
  font-size: 14px;
  color: #8a8178;
  margin-bottom: 20px;
  font-style: italic;
}

.property-description {
  color: #5a524a;
  margin-bottom: 24px;
  line-height: 1.7;
  font-size: 15px;
}

.property-specs {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.spec-item {
  display: flex;
  flex-direction: column;
}

.spec-value {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 20px;
  color: #3d1f2a;
}

.spec-label {
  font-size: 11px;
  color: #8a8178;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.property-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.feature-tag {
  padding: 6px 14px;
  border: 1px solid #c9cdd0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #5a524a;
  background: transparent;
}

.property-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid #3d1f2a;
  background: transparent;
  color: #3d1f2a;
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #3d1f2a;
  color: #f4f1ec;
}

.btn-text {
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #a0522d;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-text:hover {
  color: #3d1f2a;
}

/* ============================================
   Map Section
   ============================================ */

.map-section {
  padding: 120px 0;
  background-color: #f4f1ec;
}

.map-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.map-section .section-header {
  margin-bottom: 60px;
}

#map {
  width: 100%;
  height: 500px;
  border-radius: 0;
  overflow: hidden;
}

.leaflet-popup-content-wrapper {
  border-radius: 0;
  padding: 0;
  font-family: "Work Sans", system-ui, sans-serif;
}

.leaflet-popup-content {
  margin: 12px 16px;
  font-size: 14px;
  color: #3d1f2a;
}

.leaflet-popup-content b {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
}

/* ============================================
   About Section
   ============================================ */

.about-section {
  padding: 180px 0;
  background-color: #f4f1ec;
}

.about-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: start;
}

.about-content .label {
  margin-bottom: 20px;
  display: block;
}

.about-content h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  color: #3d1f2a;
  margin-bottom: 24px;
  line-height: 1.3;
}

.about-content p {
  color: #5a524a;
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 15px;
}

.about-values {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #c9cdd0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 18px;
  color: #3d1f2a;
  font-style: italic;
}

.about-image {
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Team */
.team-section {
  margin-top: 60px;
}

.team-title {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 24px;
  color: #3d1f2a;
  margin-bottom: 40px;
}

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

.team-member h4 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 18px;
  color: #3d1f2a;
  margin-bottom: 4px;
}

.team-member .role {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #a0522d;
  margin-bottom: 8px;
}

.team-member .bio {
  font-size: 14px;
  color: #5a524a;
  line-height: 1.6;
}

/* ============================================
   Contact Section
   ============================================ */

.contact-section {
  padding: 180px 0;
  background-color: #f4f1ec;
}

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
}

.contact-form .label {
  margin-bottom: 20px;
  display: block;
}

.contact-form h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  color: #3d1f2a;
  margin-bottom: 40px;
  line-height: 1.3;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #8a8178;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #c9cdd0;
  background-color: #ffffff;
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 15px;
  color: #3d1f2a;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #a0522d;
}

.form-control::placeholder {
  color: #c9cdd0;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238a8178' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.btn-submit {
  display: inline-block;
  padding: 16px 40px;
  background-color: #3d1f2a;
  color: #f4f1ec;
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: #a0522d;
}

/* Contact Info */
.contact-info {
  padding-top: 60px;
}

.contact-info-block {
  margin-bottom: 40px;
}

.contact-info-block .label {
  margin-bottom: 12px;
  display: block;
}

.contact-info-block p {
  color: #5a524a;
  font-size: 15px;
  line-height: 1.8;
}

.contact-info-block a {
  color: #a0522d;
  transition: color 0.3s ease;
}

.contact-info-block a:hover {
  color: #3d1f2a;
}

.contact-response {
  margin-top: 40px;
  padding: 20px;
  background-color: rgba(160, 82, 45, 0.08);
  border-left: 3px solid #a0522d;
  font-size: 14px;
  color: #5a524a;
  font-style: italic;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background-color: #1f2e25;
  color: #c9cdd0;
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 2fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .footer-logo {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #f4f1ec;
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  font-size: 14px;
  color: #8a8178;
  line-height: 1.7;
  max-width: 300px;
}

.footer-heading {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f4f1ec;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  color: #8a8178;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f4f1ec;
}

.footer-bottom {
  border-top: 1px solid rgba(201, 205, 208, 0.15);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 12px;
  color: #5c4a3a;
  line-height: 1.7;
  max-width: 600px;
}

.footer-copyright {
  font-size: 12px;
  color: #5c4a3a;
}

/* ============================================
   Cookie Consent
   ============================================ */

.consent-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f2e25;
  color: #8a8178;
  border-top: 1px solid #a0522d;
  padding: 14px 28px;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  font-family: "Work Sans", system-ui, sans-serif;
}

.consent-strip a {
  color: #a0522d;
  text-decoration: underline;
}

.consent-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.c-btn {
  font-family: "Work Sans", system-ui, sans-serif;
  padding: 7px 20px;
  border-radius: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  border: none;
}

.c-yes {
  background: #a0522d;
  color: #f4f1ec;
}

.c-min {
  background: transparent;
  color: #8a8178;
  border: 1px solid #5c4a3a;
}

/* ============================================
   Property Detail Page
   ============================================ */

.property-hero {
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
}

.property-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

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

.property-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(31, 46, 37, 0.4);
  z-index: 2;
}

.property-hero-content {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  color: #f4f1ec;
}

.property-hero-content .label {
  color: #c9cdd0;
  margin-bottom: 12px;
  display: block;
}

.property-hero-content h1 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  margin-bottom: 8px;
}

.property-hero-content .location {
  font-size: 16px;
  color: #c9cdd0;
  font-style: italic;
}

/* Property Gallery (Swiper) */
.property-gallery {
  padding: 80px 0;
  background-color: #f4f1ec;
}

.swiper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  height: 500px;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.swiper-pagination-bullet {
  background: #8a8178;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: #3d1f2a;
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: #f4f1ec;
  background: rgba(61, 31, 42, 0.6);
  width: 48px;
  height: 48px;
  transition: background 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(61, 31, 42, 0.9);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
}

/* Property Detail Content */
.property-detail {
  padding: 80px 0;
  background-color: #f4f1ec;
}

.property-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
}

.property-detail h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 24px;
  color: #3d1f2a;
  margin-bottom: 24px;
}

.property-detail-description p {
  color: #5a524a;
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 15px;
}

.property-detail-specs {
  margin-bottom: 40px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid #c9cdd0;
}

.specs-table td {
  padding: 14px 0;
  font-size: 14px;
}

.specs-table td:first-child {
  color: #8a8178;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
  font-weight: 500;
  width: 40%;
}

.specs-table td:last-child {
  color: #3d1f2a;
}

.property-detail-features {
  margin-bottom: 40px;
}

.features-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.features-list li {
  font-size: 14px;
  color: #5a524a;
  padding-left: 20px;
  position: relative;
}

.features-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: #a0522d;
  border-radius: 50%;
}

/* Property Detail Sidebar */
.detail-sidebar {
  background-color: #ffffff;
  padding: 40px;
  border: 1px solid #c9cdd0;
}

.detail-sidebar h3 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 20px;
  color: #3d1f2a;
  margin-bottom: 24px;
}

/* Property Map */
.property-map-section {
  padding: 0 0 80px;
  background-color: #f4f1ec;
}

.property-map-section #map {
  height: 400px;
}

/* Similar Properties */
.similar-properties {
  padding: 80px 0;
  background-color: #f4f1ec;
  border-top: 1px solid #c9cdd0;
}

.similar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.similar-card {
  background-color: #ffffff;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.similar-card:hover {
  transform: translateY(-4px);
}

.similar-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.similar-card-info {
  padding: 24px;
}

.similar-card-info h4 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 18px;
  color: #3d1f2a;
  margin-bottom: 4px;
}

.similar-card-info .location {
  font-size: 13px;
  color: #8a8178;
  font-style: italic;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #a0522d;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #3d1f2a;
}

/* ============================================
   Legal Pages
   ============================================ */

.legal-page {
  padding: 160px 0 80px;
  background-color: #f4f1ec;
  min-height: 100vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.legal-content h1 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(28px, 4vw, 40px);
  color: #3d1f2a;
  margin-bottom: 8px;
}

.legal-content .last-updated {
  font-size: 13px;
  color: #8a8178;
  margin-bottom: 48px;
  font-style: italic;
}

.legal-content h2 {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 22px;
  color: #3d1f2a;
  margin: 48px 0 20px;
}

.legal-content h3 {
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #3d1f2a;
  margin: 32px 0 12px;
}

.legal-content p {
  color: #5a524a;
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 15px;
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content li {
  color: #5a524a;
  margin-bottom: 8px;
  line-height: 1.7;
}

.legal-content a {
  color: #a0522d;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a:hover {
  color: #3d1f2a;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
  .property-card {
    grid-template-columns: 1fr;
  }

  .property-card:nth-child(even) .property-image,
  .property-card:nth-child(even) .property-info {
    order: unset;
  }

  .property-image {
    min-height: 300px;
  }

  .property-info {
    padding: 40px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .property-detail-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .similar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(244, 241, 236, 0.98);
    flex-direction: column;
    padding: 24px 40px;
    gap: 20px;
    border-bottom: 1px solid rgba(201, 205, 208, 0.5);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-mobile-toggle {
    display: block;
  }

  .section {
    padding: 80px 0;
  }

  .intro-section,
  .about-section,
  .contact-section {
    padding: 120px 0;
  }

  .container {
    padding: 0 20px;
  }

  .nav-inner {
    padding: 0 20px;
  }

  .property-info {
    padding: 32px 24px;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
  }

  .consent-strip {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }

  .swiper {
    height: 300px;
  }

  .hero-content {
    padding: 0 20px;
  }

  .map-container {
    padding: 0 20px;
  }

  .property-hero-content {
    padding: 0 20px;
  }

  .legal-content {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .property-specs {
    gap: 16px;
  }

  .spec-value {
    font-size: 16px;
  }

  .features-list {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Utility Classes
   ============================================ */

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

.mb-0 {
  margin-bottom: 0;
}

.mt-0 {
  margin-top: 0;
}

/* Swiper override for property gallery */
.property-gallery .swiper {
  border-radius: 0;
}
