/* ============================================
   TLC Beach Rentals — Styles
   Forest Green + Off-White | Vibrant Modern
   ============================================ */

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

:root {
  --green-dark: #1B5E20;
  --green-mid: #2E7D32;
  --green-light: #4CAF50;
  --green-pale: #E8F5E9;
  --green-accent: #66BB6A;
  --off-white: #FAFAF5;
  --cream: #F5F5EE;
  --warm-gray: #6B6B60;
  --dark: #1A1A16;
  --dark-soft: #2D2D28;
  --white: #FFFFFF;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px rgba(27, 94, 32, 0.08);
  --shadow-md: 0 8px 30px rgba(27, 94, 32, 0.12);
  --shadow-lg: 0 20px 60px rgba(27, 94, 32, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--off-white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  color: var(--dark);
}

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

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

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

.text-accent {
  color: var(--green-dark);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: var(--green-pale);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--warm-gray);
  max-width: 560px;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--green-pale);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

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

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 245, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(27, 94, 32, 0.08);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(250, 250, 245, 0.95);
  box-shadow: var(--shadow-sm);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--green-dark);
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-soft);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-dark);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--green-dark);
}

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

.nav-cta {
  background: var(--green-dark);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

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

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--off-white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  padding: 8px;
}

.mobile-menu-link {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  padding: 12px 24px;
  transition: var(--transition);
}

.mobile-menu-link:hover {
  color: var(--green-dark);
}

.mobile-menu-cta {
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  background: var(--green-dark);
  color: var(--white);
  padding: 14px 36px;
  border-radius: var(--radius-md);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: var(--off-white);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(76, 175, 80, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(27, 94, 32, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: var(--green-pale);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-badge svg {
  opacity: 0.7;
}

.hero-headline {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--dark);
}

.hero-headline .text-accent {
  color: var(--green-dark);
  display: block;
}

.hero-subheadline {
  font-size: 1.15rem;
  color: var(--warm-gray);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-main-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-main-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.hero-main-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(26, 26, 22, 0.8));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.overlay-tag {
  background: var(--green-light);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.overlay-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
}

.overlay-text span {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Floating Stat Cards */
.hero-stats {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 16px;
  z-index: 10;
  flex-wrap: wrap;
  padding: 0 24px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

.stat-card--1 { order: 1; }
.stat-card--2 { order: 2; }
.stat-card--3 { order: 3; }

.stat-icon {
  width: 48px;
  height: 48px;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--warm-gray);
  font-weight: 500;
}

/* Geometric Shapes */
.geo-shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.5;
}

.geo-circle-1 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--green-pale);
  top: -80px;
  right: -60px;
}

.geo-circle-2 {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--green-light);
  opacity: 0.15;
  top: 200px;
  left: -40px;
}

.geo-square-1 {
  width: 80px;
  height: 80px;
  background: var(--green-dark);
  opacity: 0.06;
  border-radius: var(--radius-md);
  bottom: 200px;
  right: 40px;
  transform: rotate(15deg);
}

.geo-triangle-1 {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 86px solid var(--green-light);
  opacity: 0.1;
  top: 150px;
  left: 60px;
  transform: rotate(-10deg);
}

/* --- Properties --- */
.properties {
  padding: 120px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

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

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

.property-img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.property-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.property-type {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.property-body {
  padding: 24px;
}

.property-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.property-desc {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.property-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.feature {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--green-dark);
  background: var(--green-pale);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
}

.properties-cta {
  text-align: center;
  padding: 40px;
  background: var(--green-pale);
  border-radius: var(--radius-xl);
}

.properties-cta p {
  font-size: 1.05rem;
  color: var(--warm-gray);
  margin-bottom: 20px;
}

/* --- Amenities --- */
.amenities {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.amenities-bg-block {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: var(--green-pale);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

.amenities-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.amenity-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.amenity-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.amenity-icon {
  width: 52px;
  height: 52px;
  background: var(--green-dark);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.amenity-item strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
}

.amenity-item span {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.5;
}

.amenities-visual {
  position: relative;
}

.amenities-img-grid {
  position: relative;
}

.amenities-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.amenities-img-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.amenities-img-stack {
  position: absolute;
  bottom: -40px;
  left: -40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.amenities-img-stack img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 300px;
  height: 200px;
  object-fit: cover;
}

/* --- Location --- */
.location {
  padding: 120px 0;
  background: var(--cream);
}

.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.location-visual {
  position: relative;
}

.location-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.location-img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.location-map-pin {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
}

.location-content {
  max-width: 480px;
}

.location-highlights {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lh-number {
  width: 36px;
  height: 36px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.lh-text {
  font-size: 0.95rem;
  color: var(--dark-soft);
}

/* --- About --- */
.about {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.about-bg-shape {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--green-pale);
  opacity: 0.5;
  top: -100px;
  left: -150px;
  pointer-events: none;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

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

.about-image-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about-image-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--off-white);
}

.about-image-accent img {
  width: 280px;
  height: 280px;
  object-fit: cover;
}

.about-body {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-values {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark-soft);
}

.value-icon {
  width: 28px;
  height: 28px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* --- CTA Section --- */
.cta-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: var(--green-dark);
}

.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 50%, rgba(255,255,255,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-content .section-tag {
  background: rgba(255,255,255,0.15);
  color: var(--green-pale);
}

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

.cta-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 440px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Contact --- */
.contact {
  padding: 120px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-desc {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cd-icon {
  width: 48px;
  height: 48px;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.contact-detail span,
.contact-detail a {
  font-size: 0.95rem;
  color: var(--dark-soft);
  line-height: 1.6;
}

.contact-detail a:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #E8E8E0;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-dark);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.1);
}

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

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  gap: 16px;
}

.form-success.show {
  display: flex;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success h3 {
  font-size: 1.5rem;
  color: var(--green-dark);
}

.form-success p {
  color: var(--warm-gray);
  line-height: 1.6;
  max-width: 320px;
}

/* --- Footer --- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 16px;
}

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

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col strong {
  color: var(--white);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-col span {
  font-size: 0.9rem;
  line-height: 1.6;
}

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

/* --- Animations --- */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    max-width: 560px;
  }

  .hero-stats {
    position: relative;
    bottom: auto;
    margin-top: 32px;
    justify-content: flex-start;
  }

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

  .amenities-layout,
  .location-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .amenities-img-stack {
    left: 16px;
    bottom: -20px;
  }

  .amenities-img-stack img {
    width: 220px;
    height: 150px;
  }

  .about-image-accent {
    right: 16px;
    bottom: -16px;
  }

  .cta-card {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .cta-subtitle {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 24px 100px;
  }

  .hero-headline {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }

  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }

  .stat-card {
    width: 100%;
    max-width: 300px;
  }

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

  .amenities-img-main img {
    height: 320px;
  }

  .amenities-img-stack {
    position: relative;
    left: 0;
    bottom: 0;
    flex-direction: row;
    margin-top: 16px;
  }

  .amenities-img-stack img {
    width: calc(50% - 8px);
    height: 160px;
  }

  .about-image-main img {
    height: 400px;
  }

  .about-image-accent img {
    width: 180px;
    height: 180px;
  }

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

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

  .contact-form-wrap {
    padding: 24px;
  }

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

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

  .geo-shape {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

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

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
