/* ============================================
   Offices at the Hotel Strasburg
   Burgundy + Blush — Warm, Friendly, Modern
   ============================================ */

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

:root {
  --burgundy: #7B2D3B;
  --burgundy-dark: #5C1F2C;
  --burgundy-light: #9A3D4E;
  --blush: #F5E6E8;
  --blush-light: #FDF6F7;
  --blush-warm: #FADCE0;
  --cream: #FFF9F9;
  --sand: #F9F0F1;
  --text-dark: #2A1A1E;
  --text-mid: #5C3A42;
  --text-light: #8A6068;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(123, 45, 59, 0.06);
  --shadow-md: 0 4px 20px rgba(123, 45, 59, 0.10);
  --shadow-lg: 0 8px 40px rgba(123, 45, 59, 0.14);
  --shadow-xl: 0 16px 60px rgba(123, 45, 59, 0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-accent: 'Lora', Georgia, serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--burgundy-dark);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--burgundy);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-size: 0.875rem;
}

.skip-link:focus {
  top: 1rem;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}

.btn-secondary:hover {
  background: var(--burgundy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}

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

.btn-light {
  background: var(--white);
  color: var(--burgundy);
  border-color: var(--white);
}

.btn-light:hover {
  background: var(--blush);
  color: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-ghost-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
}

.btn-full {
  width: 100%;
}

/* ========== EYEBROW ========== */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1rem;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--burgundy);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/* ========== SECTION TITLE ========== */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 249, 249, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(123, 45, 59, 0.08);
  transition: all var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: var(--burgundy);
  flex-shrink: 0;
}

.logo-icon {
  color: var(--burgundy);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.3;
  color: var(--text-dark);
}

.logo-accent {
  color: var(--burgundy);
}

.logo-light .logo-text {
  color: var(--white);
}

.logo-light .logo-accent {
  color: var(--blush-warm);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
  margin-right: 1.5rem;
}

.nav-links a {
  color: var(--text-mid);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-xl);
  transition: all var(--transition);
}

.nav-links a:hover {
  color: var(--burgundy);
  background: var(--blush);
}

.nav-cta {
  padding: 0.625rem 1.25rem !important;
  font-size: 0.875rem !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO ========== */
.hero {
  padding-top: 7rem;
  padding-bottom: 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--blush-light) 50%, var(--sand) 100%);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(123, 45, 59, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-bottom: 4rem;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1.5rem;
  background: rgba(123, 45, 59, 0.08);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-xl);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--burgundy);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.hero-headline em {
  color: var(--burgundy);
  font-style: italic;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(123, 45, 59, 0.12);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--burgundy);
  line-height: 1;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(123, 45, 59, 0.15);
}

/* Hero Image Stack */
.hero-image-stack {
  position: relative;
  height: 600px;
}

.hero-img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

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

.hero-img-main {
  width: 370px;
  height: 460px;
  top: 0;
  right: 0;
  z-index: 2;
}

.hero-img-accent {
  width: 260px;
  height: 200px;
  bottom: 60px;
  left: 0;
  z-index: 3;
  border: 5px solid var(--white);
}

.hero-badge {
  position: absolute;
  bottom: 0;
  right: 40px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--burgundy);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  letter-spacing: 0.02em;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: var(--cream);
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ========== ABOUT ========== */
.about {
  padding: 6rem 0;
  background: var(--cream);
}

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

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  background: var(--blush);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-content .section-title {
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.75;
}

.about-values {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.value-icon {
  width: 48px;
  height: 48px;
  background: var(--blush);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  flex-shrink: 0;
}

.value-item strong {
  display: block;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.value-item span {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========== SERVICES ========== */
.services {
  padding: 6rem 0;
  background: var(--blush-light);
}

.services .section-header {
  margin-bottom: 3.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  border: 1px solid rgba(123, 45, 59, 0.06);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(123, 45, 59, 0.12);
}

.service-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--blush) 0%, var(--blush-warm) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3125rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--burgundy);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap var(--transition);
}

.service-link:hover {
  gap: 0.625rem;
}

/* ========== LISTINGS ========== */
.listings {
  padding: 6rem 0;
  background: var(--cream);
}

.listings .section-header {
  margin-bottom: 3.5rem;
}

.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.listing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid rgba(123, 45, 59, 0.06);
}

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

.listing-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

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

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

.listing-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--burgundy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-xl);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.listing-info {
  padding: 1.5rem;
}

.listing-info h3 {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.375rem;
}

.listing-location {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.listing-desc {
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.listing-details {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.listing-details span {
  font-size: 0.8125rem;
  color: var(--text-light);
}

.listing-details strong {
  color: var(--burgundy);
}

/* ========== COMMUNITY ========== */
.community {
  padding: 6rem 0;
  background: var(--burgundy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.community::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 230, 232, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.community::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 230, 232, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.community-content .section-eyebrow {
  color: var(--blush-warm);
}

.community-content .section-eyebrow .eyebrow-dot {
  background: var(--blush-warm);
}

.community-content .section-title {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.community-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.community-highlights {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.highlight-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--blush-warm);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.highlight-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.community-images {
  position: relative;
  height: 500px;
}

.comm-img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

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

.comm-img-1 {
  width: 260px;
  height: 340px;
  top: 0;
  right: 0;
  z-index: 2;
}

.comm-img-2 {
  width: 240px;
  height: 260px;
  bottom: 0;
  left: 0;
  z-index: 1;
  border: 4px solid rgba(255, 255, 255, 0.2);
}

/* ========== CTA BANNER ========== */
.cta-banner {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--blush) 0%, var(--sand) 100%);
}

.cta-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3.5rem 4rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-decor {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: var(--blush);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content {
  flex: 1;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.cta-content p {
  font-size: 1.0625rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 500px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* ========== CONTACT ========== */
.contact {
  padding: 6rem 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info .section-title {
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--text-mid);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--blush);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.contact-item span,
.contact-item a {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-item a:hover {
  color: var(--burgundy);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(123, 45, 59, 0.06);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-note {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 1.75rem;
}

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

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(123, 45, 59, 0.15);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--blush-light);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

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

.form-success {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(34, 139, 34, 0.08);
  border: 1px solid rgba(34, 139, 34, 0.2);
  border-radius: var(--radius-md);
  color: #1a6b1a;
  font-size: 0.9375rem;
  font-weight: 500;
}

.form-success svg {
  color: #2d8a2d;
  flex-shrink: 0;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 0;
}

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

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 400;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--blush-warm);
}

.footer-contact p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact a:hover {
  color: var(--blush-warm);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

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

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

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 1;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image-stack {
    height: 400px;
    order: 0;
    margin-bottom: 1rem;
  }

  .hero-img-main {
    width: 280px;
    height: 350px;
  }

  .hero-img-accent {
    width: 200px;
    height: 160px;
  }

  .about-grid,
  .community-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-image-wrap {
    max-width: 500px;
    margin: 0 auto;
  }

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

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

  .cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem;
  }

  .cta-content p {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0.5rem;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition);
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.0625rem;
    padding: 0.75rem 0;
    width: 100%;
  }

  .nav-cta {
    display: none !important;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding-top: 5rem;
    min-height: auto;
  }

  .hero-image-stack {
    height: 300px;
  }

  .hero-img-main {
    width: 220px;
    height: 280px;
  }

  .hero-img-accent {
    width: 160px;
    height: 130px;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.875rem;
    bottom: -10px;
    right: 20px;
  }

  .services-grid,
  .listings-grid {
    grid-template-columns: 1fr;
  }

  .community-images {
    height: 350px;
  }

  .comm-img-1 {
    width: 200px;
    height: 260px;
  }

  .comm-img-2 {
    width: 180px;
    height: 200px;
  }

  .community-highlights {
    gap: 1.5rem;
  }

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

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

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

  .contact-form-wrap {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero-headline {
    font-size: 1.75rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .hero-image-stack {
    height: 240px;
  }

  .hero-img-main {
    width: 180px;
    height: 230px;
  }

  .hero-img-accent {
    width: 140px;
    height: 110px;
  }
}

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(42, 26, 30, 0.4);
  z-index: 998;
  backdrop-filter: blur(4px);
}

.nav-overlay.active {
  display: block;
}
