@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Karla:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=JetBrains+Mono:wght@300;400&display=swap');

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

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

body {
  font-family: 'Karla', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--paper);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* === CSS VARIABLES === */
:root {
  --paper: #F4EFE6;
  --paper-light: #FAF7F2;
  --ink: #2A2117;
  --ink-soft: #6B5D4D;
  --terracotta: #C4593A;
  --terracotta-dark: #A3452C;
  --sage: #5A7252;
  --sage-light: #E8EDE5;
  --sand: #D9CEBC;
  --sand-dark: #BFB19C;
  --dark-section: #1E1A14;
  --dark-ink: #F4EFE6;

  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Karla', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;

  --nav-height: 64px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
}

h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  max-width: 60ch;
}

.label {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.section-number {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
  display: block;
  margin-bottom: var(--space-sm);
}

.serif-italic {
  font-family: var(--serif);
  font-style: italic;
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-md);
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.nav.scrolled {
  background-color: rgba(244, 239, 230, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--sand);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--paper);
  transition: color 0.4s ease;
}

.nav-logo span {
  color: var(--terracotta);
  filter: brightness(1.3);
  transition: color 0.4s ease, filter 0.4s ease;
}

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

.nav.scrolled .nav-logo span {
  color: var(--terracotta);
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-links a {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.8);
  transition: color 0.4s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width 0.3s ease;
}

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

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

.nav.scrolled .nav-links a {
  color: var(--ink-soft);
}

.nav.scrolled .nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  font-family: var(--mono) !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--paper) !important;
  background: var(--terracotta) !important;
  padding: 0.6rem 1.2rem;
  transition: background-color 0.3s ease !important;
}

.nav-cta:hover {
  background: var(--terracotta-dark) !important;
}

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

.nav-lang {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.8);
  border: 1px solid rgba(244, 239, 230, 0.3);
  padding: 0.3rem 0.6rem;
  transition: all 0.4s ease;
}

.nav-lang:hover {
  border-color: rgba(244, 239, 230, 0.6);
  color: var(--paper);
}

.nav.scrolled .nav-lang {
  color: var(--ink-soft);
  border-color: var(--sand);
}

.nav.scrolled .nav-lang:hover {
  border-color: var(--ink-soft);
  color: var(--ink);
}

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--paper);
  transition: all 0.4s ease;
}

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

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

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

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

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 26, 20, 0.85) 0%,
    rgba(30, 26, 20, 0.4) 40%,
    rgba(30, 26, 20, 0.15) 70%,
    rgba(30, 26, 20, 0.05) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--paper);
  max-width: 900px;
}

.hero-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: var(--space-sm);
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero h1 {
  color: var(--paper);
  margin-bottom: var(--space-sm);
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
  filter: brightness(1.3);
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--sand);
  max-width: 50ch;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  opacity: 0;
  animation: fadeUp 0.8s ease 1.2s forwards;
}

.hero-scroll span {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  writing-mode: vertical-rl;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: var(--sand);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.3); transform-origin: top; opacity: 0.3; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 1.8rem;
  transition: all 0.3s ease;
  position: relative;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196, 89, 58, 0.3);
}

.btn-outline {
  border: 1px solid var(--sand);
  color: var(--paper);
}

.btn-outline:hover {
  border-color: var(--paper);
  background: rgba(244, 239, 230, 0.1);
  transform: translateY(-1px);
}

.btn-outline-dark {
  border: 1px solid var(--sand-dark);
  color: var(--ink);
}

.btn-outline-dark:hover {
  border-color: var(--ink);
  background: rgba(42, 33, 23, 0.05);
}

.btn-dark {
  background: var(--dark-section);
  color: var(--paper);
}

.btn-dark:hover {
  background: var(--ink);
}

/* === SECTIONS === */
.section {
  padding: var(--space-xl) var(--space-md);
}

.section-dark {
  background: var(--dark-section);
  color: var(--dark-ink);
}

.section-dark .label,
.section-dark .section-number {
  color: var(--sand-dark);
}

.section-dark p {
  color: var(--sand);
}

.section-sage {
  background: var(--sage-light);
}

.section-header {
  margin-bottom: var(--space-lg);
}

.section-header h2 {
  margin-top: 0.5rem;
}

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

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
}

.divider {
  width: 0;
  height: 1px;
  background: var(--sand-dark);
  margin: var(--space-md) 0;
  transition: width 0.6s ease 0.3s;
}

.reveal.is-visible .divider {
  width: 60px;
}

.divider-center {
  margin-left: auto;
  margin-right: auto;
}

/* === INTRO SECTION === */
.intro {
  padding: var(--space-xl) var(--space-md);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.intro-text {
  max-width: 480px;
}

.intro-text p {
  color: var(--ink-soft);
  margin-top: var(--space-sm);
}

.intro-text p + p {
  margin-top: var(--space-sm);
}

.intro-image {
  position: relative;
}

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

.intro-image-caption {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: var(--space-xs);
  text-align: right;
}

/* === EDITORIAL IMAGE STRIP === */
.image-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 8px;
  padding: 0;
}

.image-strip img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 2px;
}

/* === SPACE SECTION (Apartment Details) === */
.space-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.space-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.feature {
  border-top: 1px solid var(--sand);
  padding-top: var(--space-sm);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.feature:hover {
  border-top-color: var(--terracotta);
  transform: translateY(-2px);
}

.feature h4 {
  font-family: var(--serif);
  margin-bottom: 0.3rem;
}

.feature p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* === ROOFTOP SECTION === */
.rooftop-fullbleed {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.rooftop-fullbleed img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rooftop-fullbleed::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 26, 20, 0.85) 0%,
    rgba(30, 26, 20, 0.4) 50%,
    rgba(30, 26, 20, 0.1) 100%
  );
}

.rooftop-overlay {
  position: relative;
  z-index: 2;
  padding: var(--space-lg) var(--space-md);
  color: var(--paper);
  max-width: 700px;
}

.rooftop-overlay p {
  color: var(--sand);
  margin-top: var(--space-sm);
  font-size: 1.05rem;
}

/* === AMENITIES === */
.amenities-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--sand);
  max-width: 1200px;
  margin: var(--space-lg) auto 0;
}

.amenity-item {
  background: var(--paper);
  padding: var(--space-md);
  text-align: center;
  transition: background-color 0.3s ease;
}

.amenity-item:hover {
  background: var(--paper-light);
}

.amenity-icon svg {
  transition: transform 0.3s ease;
}

.amenity-item:hover .amenity-icon svg {
  transform: scale(1.1);
}

.amenity-icon {
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.amenity-item h4 {
  font-family: var(--serif);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.amenity-item p {
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.4;
  max-width: 100%;
}

/* === NEIGHBORHOOD === */
.neighborhood-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.neighborhood-text h3 {
  margin-bottom: var(--space-sm);
}

.neighborhood-text p {
  color: var(--ink-soft);
  margin-bottom: var(--space-sm);
}

.distance-list {
  margin-top: var(--space-md);
}

.distance-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--sand);
}

.distance-item span:first-child {
  font-size: 0.95rem;
}

.distance-item span:last-child {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
}

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

/* === REVIEWS === */
.reviews-layout {
  max-width: 1200px;
  margin: 0 auto;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.review-card {
  border-top: 2px solid var(--sand-dark);
  padding-top: var(--space-md);
}

.section-dark .review-card {
  border-top-color: rgba(191, 177, 156, 0.3);
}

.review-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: var(--space-sm);
}

.section-dark .review-quote {
  color: var(--paper);
}

.review-author {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-dark .review-author {
  color: var(--sand-dark);
}

.reviews-cta {
  margin-top: var(--space-lg);
  text-align: center;
}

.reviews-cta .btn-outline {
  border-color: rgba(191, 177, 156, 0.4);
  color: var(--sand);
}

.reviews-cta .btn-outline:hover {
  border-color: var(--sand);
  background: rgba(244, 239, 230, 0.05);
}

/* === NOMAD SECTION === */
.nomad-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.nomad-text p {
  margin-top: var(--space-sm);
}

.nomad-features {
  margin-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.nomad-tag {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 1px solid var(--sage);
  color: var(--sage);
}

.nomad-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

/* === CONTACT SECTION === */
.contact-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.contact-info h2 {
  margin-bottom: var(--space-md);
}

.contact-detail {
  margin-bottom: var(--space-md);
}

.contact-detail .label {
  display: block;
  margin-bottom: 0.3rem;
}

.contact-detail p,
.contact-detail a {
  font-size: 1rem;
}

.contact-detail a {
  border-bottom: 1px solid var(--sand);
  transition: border-color 0.3s ease;
}

.contact-detail a:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.contact-actions .btn {
  justify-content: center;
  text-align: center;
}

.contact-hours {
  border-top: 1px solid var(--sand);
  padding-top: var(--space-md);
}

.contact-hours p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: 0.3rem;
}

.contact-map {
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  filter: saturate(0.7) contrast(1.1);
}

/* === FOOTER === */
.footer {
  background: var(--dark-section);
  color: var(--sand);
  padding: var(--space-md) var(--space-md) 5rem;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--paper);
}

.footer-logo span {
  color: var(--terracotta);
}

.footer-info {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand-dark);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.footer-links {
  display: flex;
  gap: var(--space-sm);
}

.footer-links a {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand-dark);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(191, 177, 156, 0.15);
}

.footer-lang {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand-dark);
  border: 1px solid rgba(191, 177, 156, 0.3);
  padding: 0.3rem 0.6rem;
  transition: all 0.3s ease;
}

.footer-lang:hover {
  border-color: var(--sand);
  color: var(--paper);
}

.footer-credit {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(191, 177, 156, 0.4);
}

.footer-credit a {
  color: rgba(191, 177, 156, 0.5);
  transition: color 0.3s ease;
}

.footer-credit a:hover {
  color: var(--sand);
}

/* === PARALLAX === */
.hero-bg img,
.rooftop-fullbleed > img {
  transform: scale(1.08);
  will-change: transform;
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reveal system (staggered) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.image-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.image-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* === WHATSAPP FLOATING BUTTON === */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, background-color 0.3s ease;
  pointer-events: none;
}

.whatsapp-float.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.whatsapp-float:hover {
  background: #1DA851;
  transform: translateY(-2px);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* === FINAL CTA BANNER === */
.final-cta {
  background: var(--dark-section);
  color: var(--dark-ink);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
}

.final-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.final-cta h2 {
  margin-bottom: var(--space-sm);
}

.final-cta p {
  color: var(--sand);
  max-width: 50ch;
  margin: 0 auto var(--space-md);
}

/* === TOUCH TARGETS === */
.btn,
.nav-toggle,
.whatsapp-float {
  touch-action: manipulation;
}

/* === COUNTER ANIMATION === */
.distance-item span:last-child {
  transition: none;
}

/* === GRAIN OVERLAY === */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .amenities-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-strip {
    grid-template-columns: 1fr 1fr;
  }

  .image-strip img:nth-child(3) {
    grid-column: span 2;
    height: 300px;
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 4rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--paper);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: var(--space-lg);
    gap: var(--space-md);
    transition: right 0.4s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  }

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

  .nav-links.open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
  }

  .nav-toggle {
    display: flex;
  }

  .intro-grid,
  .space-grid,
  .neighborhood-grid,
  .review-grid,
  .nomad-content,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .intro-image {
    order: -1;
  }

  .intro-image img {
    height: 350px;
  }

  .image-strip {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0 var(--space-sm);
  }

  .image-strip img {
    height: 200px;
  }

  .image-strip img:nth-child(3) {
    grid-column: span 2;
    height: 200px;
  }

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

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

  .neighborhood-image img {
    height: 350px;
  }

  .review-quote {
    font-size: 1.15rem;
  }

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

  .hero-actions .btn {
    text-align: center;
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .rooftop-fullbleed {
    height: 60vh;
    min-height: 400px;
  }

  .nomad-image img {
    height: 300px;
  }

  .contact-map {
    min-height: 300px;
  }

  .contact-map iframe {
    min-height: 300px;
  }

  .footer {
    text-align: center;
  }

  .footer-main {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .footer-info {
    position: static;
    transform: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .hero-scroll {
    display: none;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: var(--space-lg) var(--space-sm);
  }

  .intro {
    padding: var(--space-lg) var(--space-sm);
  }

  .rooftop-overlay {
    padding: var(--space-md) var(--space-sm);
  }

  h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
}
