/* ============================================
   PANDAS PACKED — pandaspacked.com
   Classic / Upscale Short-Term Rental Site
   ============================================ */

/* --- Google Fonts loaded in HTML head --- */

:root {
  /* Color Palette */
  --color-charcoal: #1a1a1a;
  --color-dark: #2c2c2c;
  --color-text: #3a3a3a;
  --color-text-light: #6b6b6b;
  --color-gold: #b8924a;
  --color-gold-light: #d4af6e;
  --color-gold-dark: #96752e;
  --color-cream: #faf6f0;
  --color-cream-dark: #f0ebe2;
  --color-ivory: #fffdf8;
  --color-warm-gray: #e8e3db;
  --color-sage: #7a8c6e;
  --color-sage-light: #e8ede5;
  --color-white: #ffffff;
  --color-border: #ddd6cb;

  /* Typography */
  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Outfit', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --section-padding: 7rem 0;
  --container-width: 1200px;
  --container-padding: 0 1.5rem;

  /* Transitions */
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
}

/* --- Reset & Base --- */

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-ivory);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-charcoal);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.3rem; }

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

/* --- Utility --- */

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  margin-bottom: 1.2rem;
}

.section-subtitle {
  color: var(--color-text-light);
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.8;
}

.section-subtitle.centered {
  margin-left: auto;
  margin-right: auto;
}

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

/* --- Buttons --- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}

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

.btn-primary:hover {
  background-color: var(--color-gold-dark);
}

.btn-outline {
  background: transparent;
  color: var(--color-charcoal);
  border: 1px solid var(--color-charcoal);
}

.btn-outline:hover {
  background-color: var(--color-charcoal);
  color: var(--color-white);
}

.btn-outline-light {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
  background-color: var(--color-white);
  color: var(--color-charcoal);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all var(--transition);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(255, 253, 248, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--color-border);
  padding: 0.8rem 0;
}

.site-header.scrolled .nav-link,
.site-header.scrolled .logo {
  color: var(--color-charcoal);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.logo span {
  color: var(--color-gold-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-white);
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Interior pages: dark nav by default */
.header-dark .nav-link,
.header-dark .logo {
  color: var(--color-charcoal);
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-white);
  margin: 6px 0;
  transition: all var(--transition);
}

.header-dark .nav-toggle span,
.site-header.scrolled .nav-toggle span {
  background: var(--color-charcoal);
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: 800px;
  padding: 0 1.5rem;
}

.hero-content .section-label {
  color: var(--color-gold-light);
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  color: var(--color-white);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.hero-content p {
  font-size: 1.1rem;
  font-weight: 300;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

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

/* ============================================
   PAGE HERO (interior pages)
   ============================================ */

.page-hero {
  padding: 10rem 0 5rem;
  background-color: var(--color-cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b8924a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.page-hero .section-label {
  position: relative;
}

.page-hero h1 {
  position: relative;
  margin-bottom: 1rem;
}

.page-hero p {
  position: relative;
  color: var(--color-text-light);
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================
   PROPERTY CARDS
   ============================================ */

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.property-card {
  display: block;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
}

.property-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.property-card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.property-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.property-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--color-gold);
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
}

.property-card-body {
  padding: 1.8rem;
}

.property-card-location {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.property-card-body h3 {
  margin-bottom: 0.6rem;
  font-size: 1.5rem;
}

.property-card-body p {
  color: var(--color-text-light);
  font-size: 0.92rem;
  margin-bottom: 1.3rem;
  line-height: 1.7;
}

.property-card-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--color-cream-dark);
}

.property-card-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--color-text-light);
}

.property-card-meta .meta-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-gold);
}

.property-card-price {
  margin-left: auto;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-charcoal);
  font-weight: 500;
}

.property-card-price span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--color-text-light);
}

.property-card-rating {
  margin-left: auto;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-gold);
  white-space: nowrap;
}

/* ============================================
   WHY STAY / VALUE PROPS
   ============================================ */

.value-props {
  padding: var(--section-padding);
  background: var(--color-cream);
}

.value-props-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

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

.value-prop-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-gold-light);
  border-radius: 50%;
}

.value-prop-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.5;
}

.value-prop h4 {
  font-family: var(--font-heading);
  margin-bottom: 0.8rem;
  font-size: 1.25rem;
}

.value-prop p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  padding: var(--section-padding);
  background: var(--color-ivory);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.testimonial-card {
  padding: 2.5rem;
  border: 1px solid var(--color-border);
  position: relative;
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1.2rem;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--color-gold);
}

.testimonial-card blockquote {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  position: relative;
  padding: 6rem 0;
  text-align: center;
  overflow: hidden;
}

.cta-banner .cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-banner .cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.7);
}

.cta-banner .container {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* ============================================
   FEATURED PROPERTIES SECTION
   ============================================ */

.featured-properties {
  padding: var(--section-padding);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
}

.section-header .btn {
  margin-bottom: 0.3rem;
}

/* ============================================
   FILTER BAR (Properties page)
   ============================================ */

.filter-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-bar label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-right: 0.3rem;
}

.filter-bar select,
.filter-bar input {
  font-family: var(--font-body);
  font-size: 0.88rem;
  padding: 0.6rem 1rem;
  border: 1px solid var(--color-border);
  background: var(--color-ivory);
  color: var(--color-text);
  appearance: none;
  min-width: 140px;
  cursor: pointer;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-bar .btn {
  margin-left: auto;
  padding: 0.7rem 1.5rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-story {
  padding: var(--section-padding);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-story-image {
  height: 500px;
  overflow: hidden;
}

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

.about-story-content .section-label {
  margin-bottom: 1rem;
}

.about-story-content h2 {
  margin-bottom: 1.5rem;
}

.about-story-content p {
  color: var(--color-text-light);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

/* Team */
.team-section {
  padding: var(--section-padding);
  background: var(--color-cream);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

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

.team-card-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--color-gold-light);
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  margin-bottom: 0.3rem;
  font-size: 1.4rem;
}

.team-card .role {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.8rem;
}

.team-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* Values */
.values-section {
  padding: var(--section-padding);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.value-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px solid var(--color-border);
}

.value-card h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.value-card-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-gold-light);
  margin-bottom: 1rem;
  font-weight: 300;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-section {
  padding: var(--section-padding);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-sidebar {
  padding: 2.5rem;
  background: var(--color-cream);
  height: fit-content;
}

.contact-sidebar h3 {
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-info-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.contact-info-item h4 {
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 0.3rem;
}

.contact-info-item p {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.6;
}

.map-placeholder {
  width: 100%;
  height: 220px;
  background: var(--color-warm-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  color: var(--color-text-light);
  font-size: 0.85rem;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--color-charcoal);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 0;
}

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

.footer-brand .logo {
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--color-gold-light);
}

.footer-bottom {
  padding: 1.8rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Stagger children */
.stagger-children .fade-in:nth-child(1) { transition-delay: 0s; }
.stagger-children .fade-in:nth-child(2) { transition-delay: 0.12s; }
.stagger-children .fade-in:nth-child(3) { transition-delay: 0.24s; }
.stagger-children .fade-in:nth-child(4) { transition-delay: 0.36s; }
.stagger-children .fade-in:nth-child(5) { transition-delay: 0.48s; }
.stagger-children .fade-in:nth-child(6) { transition-delay: 0.6s; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .value-props-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

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

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

  .about-story-grid {
    gap: 3rem;
  }

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

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

@media (max-width: 768px) {
  :root {
    --section-padding: 4.5rem 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 253, 248, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
  }

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

  .nav-links .nav-link {
    color: var(--color-charcoal);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
  }

  .nav-toggle {
    display: block;
    z-index: 1001;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
    background: var(--color-charcoal);
  }

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

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
    background: var(--color-charcoal);
  }

  .hero { min-height: 500px; }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

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

  .value-props-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .about-story-image {
    height: 300px;
  }

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

  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-bar select,
  .filter-bar input {
    width: 100%;
  }

  .filter-bar .btn {
    margin-left: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .property-card-image {
    height: 220px;
  }

  .testimonial-card {
    padding: 1.8rem;
  }
}
