@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300&family=DM+Sans:wght@300;400;500&family=Space+Mono:wght@400;700&display=swap');

:root {
  --black: #ffffff;
  --white: #1a1a1a;
  --cream: #f0f0f0;
  --grey-1: #f5f5f5;
  --grey-2: #e8e8e8;
  --grey-3: #888;
  --grey-4: #666;
  --grey-5: #444;
  --gold: #c9a96e;
  --gold-light: #e8d4a8;
  --serif: 'Playfair Display', Georgia, serif;
  --mono: 'DM Mono', 'Courier New', monospace;
  --sans: 'DM Sans', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

/* TYPOGRAPHY */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.1; }
.mono { font-family: var(--mono); }
.label {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-4);
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), border-color var(--transition);
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.05em;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-5);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}

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

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black) !important;
  background: var(--gold);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* LANGUAGE SWITCHER */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.lang-switch a {
  color: var(--grey-4);
  text-decoration: none;
  padding: 0.3rem 0.5rem;
  transition: color var(--transition);
}

.lang-switch a:hover { color: var(--white); }
.lang-switch a.active { color: var(--gold); }
.lang-switch a::after { display: none !important; }
.lang-switch span { color: var(--grey-3); font-size: 0.5rem; }

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 3rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201, 169, 110, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201, 169, 110, 0.03) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 1100px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: none;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 1rem;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 2rem;
}

.hero-title em { font-style: italic; color: var(--gold); }
.hero-title .outline {
  color: var(--white);
}

.hero-sub {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--grey-4);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 3.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* BUTTONS */
.btn-primary {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 1.1rem 2.5rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border: none;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateX(-101%);
  transition: transform var(--transition);
}

.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { color: var(--black) !important; }
.btn-primary span { position: relative; z-index: 1; }

.btn-secondary {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-5);
  background: transparent;
  border: 1px solid rgba(0,0,0,0.15);
  padding: 1.1rem 2.5rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all var(--transition);
}

.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* HERO STATS */
.hero-stats {
  display: flex;
  gap: 4rem;
  padding: 3rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  justify-content: center;
}

.stat-number {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-number span { color: var(--gold); }
.stat-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-4);
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  right: 3rem;
  bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

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

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* SECTIONS */
section { padding: 8rem 3rem; }

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

.section-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-label::before { content: '— '; }

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
}

.section-title em { font-style: italic; color: var(--gold); }

.section-link {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--transition);
}

.section-link:hover { gap: 1rem; }

/* LISTINGS GRID */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.listing-card {
  background: var(--grey-1);
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
}

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

.listing-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.listing-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: grayscale(20%);
}

.listing-card:hover .listing-card-image img {
  transform: scale(1.06);
  filter: grayscale(0%);
}

.listing-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  background: var(--gold);
  color: var(--black);
}

.listing-card-body {
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.04);
  border-top: none;
}

.listing-category {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.listing-title {
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.listing-location {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--grey-4);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.listing-divider { height: 1px; background: rgba(0,0,0,0.06); margin-bottom: 1.5rem; }

.listing-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.listing-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.listing-meta-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-4);
}

.listing-meta-value {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}

/* MARQUEE */
.marquee-section {
  padding: 3rem 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--grey-3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.marquee-item::after {
  content: '✦';
  color: var(--gold);
  font-style: normal;
  font-size: 0.7rem;
}

/* ABOUT STRIP */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 70vh;
}

.about-strip-left {
  background: var(--grey-1);
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

.about-strip-left::before {
  content: 'ANKOR';
  position: absolute;
  bottom: -2rem;
  left: -1rem;
  font-family: var(--serif);
  font-size: 12rem;
  font-weight: 900;
  color: rgba(201, 169, 110, 0.04);
  pointer-events: none;
  line-height: 1;
}

.about-strip-right {
  background: var(--gold);
  padding: 4.5rem 5rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.about-strip .section-label { margin-bottom: 1.5rem; }
.about-strip-right .section-label { color: var(--black); opacity: 0.6; font-size: 0.75rem; }
.about-strip-right .section-title { color: var(--black); margin-bottom: 2.5rem; }
.about-strip-right p { color: rgba(0,0,0,0.7); margin-top: 1.5rem; font-size: 1.05rem; line-height: 1.8; }

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

.value-item { display: flex; gap: 1.5rem; align-items: flex-start; }
.value-num { font-family: var(--mono); font-size: 0.75rem; color: var(--gold); padding-top: 0.3rem; letter-spacing: 0.1em; }
.value-text h4 { font-family: var(--serif); font-size: 1.15rem; color: var(--white); margin-bottom: 0.4rem; }
.value-text p { font-size: 1rem; color: var(--grey-4); line-height: 1.7; }

/* PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.06);
  margin-top: 5rem;
}

.process-step {
  background: var(--black);
  padding: 3rem 2rem;
  position: relative;
  transition: background var(--transition);
}

.process-step:hover { background: var(--grey-1); }

.process-step-num {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(201, 169, 110, 0.1);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.process-step h3 { font-family: var(--serif); font-size: 1.2rem; color: var(--white); margin-bottom: 1rem; }
.process-step p { font-size: 0.85rem; color: var(--grey-4); line-height: 1.7; }
.process-step-icon { width: 2rem; height: 1px; background: var(--gold); margin-bottom: 1rem; }

/* TESTIMONIALS */
.testimonials-section { background: var(--grey-1); }

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

.testimonial-card { background: var(--black); padding: 3rem; position: relative; }

.testimonial-card::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 8rem;
  color: rgba(201, 169, 110, 0.08);
  position: absolute;
  top: -1rem;
  left: 2rem;
  line-height: 1;
}

.testimonial-text {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--grey-5);
  line-height: 1.7;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.testimonial-author { display: flex; align-items: center; gap: 1rem; }

.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--black);
  font-size: 0.9rem;
}

.testimonial-name { font-family: var(--serif); font-size: 0.95rem; color: var(--white); }
.testimonial-role {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-4);
  margin-top: 0.15rem;
}

/* CONTACT */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 80vh;
}

.contact-left {
  padding: 6rem 4rem;
  background: var(--grey-1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-right {
  padding: 6rem 4rem;
  background: var(--black);
  border-left: 1px solid rgba(0,0,0,0.06);
}

.contact-info-items { margin-top: 3rem; display: flex; flex-direction: column; gap: 2rem; }

.contact-info-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.contact-info-value { font-family: var(--sans); font-size: 0.95rem; color: var(--grey-5); line-height: 1.6; }
.contact-info-value a { text-decoration: none; color: var(--grey-5); transition: color var(--transition); }
.contact-info-value a:hover { color: var(--gold); }

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

.form-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-4);
  display: block;
  margin-bottom: 0.6rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--grey-1);
  border: 1px solid rgba(0,0,0,0.08);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 1rem 1.2rem;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
}

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

.form-input::placeholder,
.form-textarea::placeholder { color: var(--grey-3); }

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

.form-select option { background: var(--grey-2); }

.form-textarea { min-height: 150px; resize: vertical; font-family: var(--sans); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  border: none;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.25rem;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: translateX(-101%);
  transition: transform var(--transition);
}

.btn-submit:hover::before { transform: translateX(0); }
.btn-submit span { position: relative; z-index: 1; }

/* FOOTER */
footer {
  background: var(--grey-1);
  padding: 4rem 3rem 2rem;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--grey-4);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
}

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

.footer-col h4 {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col ul a { font-size: 0.9rem; color: var(--grey-4); text-decoration: none; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.footer-copyright {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--grey-4);
}

.footer-legal { display: flex; gap: 2rem; }
.footer-legal a {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--grey-4);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--gold); }

/* PAGE HERO */
.page-hero {
  padding: 12rem 3rem 6rem;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.03) 0%, transparent 60%);
}

.page-hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
}

.page-hero-sub {
  font-size: 1rem;
  color: var(--grey-4);
  margin-top: 1.5rem;
  max-width: 500px;
}

/* FILTERS */
.filters-bar {
  padding: 2rem 3rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-4);
  background: transparent;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 0.6rem 1.2rem;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.filter-select {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-4);
  background: transparent;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 0.6rem 2rem 0.6rem 1rem;
  cursor: pointer;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  transition: all var(--transition);
}

.filter-select option { background: var(--grey-2); color: var(--white); }
.filter-select:focus { border-color: var(--gold); }

.filter-dropdown {
  position: relative;
}
.filter-dropdown-btn {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-4);
  background: transparent;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 0.6rem 2rem 0.6rem 1rem;
  cursor: pointer;
  outline: none;
  white-space: nowrap;
  transition: all var(--transition);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
}
.filter-dropdown-btn:hover,
.filter-dropdown.open .filter-dropdown-btn {
  border-color: var(--gold);
}
.filter-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 220px;
  background: var(--black);
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  z-index: 100;
}
.filter-dropdown.open .filter-dropdown-menu {
  display: block;
}
.filter-dropdown-search {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--white);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 0.7rem 1rem;
  width: 100%;
  outline: none;
  box-sizing: border-box;
}
.filter-dropdown-search::placeholder {
  color: var(--grey-3);
  text-transform: uppercase;
}
.filter-dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
  max-height: 220px;
  overflow-y: auto;
}
.filter-dropdown-list li {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  padding: 0.5rem 1rem;
  cursor: pointer;
  color: var(--grey-4);
  transition: background 0.15s;
}
.filter-dropdown-list li:hover {
  background: rgba(0,0,0,0.03);
}
.filter-dropdown-list li.active {
  color: var(--gold);
}
.filter-dropdown-list li.hidden {
  display: none;
}

.filters-count {
  display: block;
  text-align: right;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-4);
  margin-bottom: 1.5rem;
}

/* LISTINGS FULL PAGE */
.listings-full { padding: 1.5rem 3rem 8rem; }
.listings-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }

/* SINGLE LISTING */
.listing-detail {
  padding-top: 0;
  display: grid;
  grid-template-columns: 1fr 340px;
}

.listing-detail-content {
  min-width: 0;
}

/* Listing detail: top section — fills viewport */
.listing-detail-top {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 5rem;
}

/* Info strip: meta + title/price */
.listing-detail-info {
  padding: 1.25rem 2.5rem;
}

.listing-detail-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 0.6rem;
}

.listing-detail-cat {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.listing-detail-loc {
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--grey-4);
}

.listing-detail-ref {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-4);
  margin-left: auto;
}

.listing-detail-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
}

.listing-detail-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin: 0;
}

.listing-detail-price {
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
  margin: 0;
}

/* Image gallery — compact */
.listing-image-gallery {
  position: relative;
  overflow: hidden;
  margin: 0 2.5rem;
}

.listing-image-gallery img {
  width: 100%;
  aspect-ratio: 16/6;
  object-fit: cover;
  display: none;
}

.listing-image-gallery img.active { display: block; }

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  z-index: 2;
}

.gallery-arrow:hover { background: rgba(0,0,0,0.8); }
.gallery-arrow-left { left: 0.5rem; }
.gallery-arrow-right { right: 0.5rem; }

.gallery-counter {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 0.25rem 0.5rem;
  z-index: 2;
}

/* Highlights — inside top section */
.listing-detail-top .listing-highlights {
  margin: 0 2.5rem;
  flex: 1;
}

/* Sidebar form */
.listing-detail-sidebar {
  background: var(--grey-1);
  border-left: 1px solid rgba(0,0,0,0.06);
}

.sidebar-sticky {
  position: sticky;
  top: 5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.listing-detail-sidebar .form-group { margin-bottom: 1rem; }
.listing-detail-sidebar .form-input,
.listing-detail-sidebar .form-textarea { padding: 0.75rem 1rem; font-size: 0.9rem; }
.listing-detail-sidebar .form-textarea { min-height: auto; }

/* Body content below */
.listing-detail-body {
  padding: 4rem 3rem;
  max-width: 900px;
}

.listing-section-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.listing-description {
  font-size: 0.95rem;
  color: var(--grey-5);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.listing-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.06);
  margin-bottom: 4rem;
}

.highlight-item { background: var(--black); padding: 1.2rem 1.5rem; }

.highlight-value {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.highlight-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-4);
}

/* ABOUT PAGE */
.about-hero {
  padding: 12rem 3rem 8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

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

.team-card { background: var(--grey-1); overflow: hidden; }

.team-card-img {
  aspect-ratio: 3/4;
  background: var(--grey-2);
  position: relative;
  overflow: hidden;
}

.team-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(201, 169, 110, 0.15);
}

.team-card-body { padding: 2rem; }
.team-name { font-family: var(--serif); font-size: 1.3rem; color: var(--white); margin-bottom: 0.25rem; }
.team-role {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.team-bio { font-size: 0.85rem; color: var(--grey-4); line-height: 1.7; }

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.blog-card {
  background: var(--grey-1);
  text-decoration: none;
  display: block;
  transition: transform var(--transition);
}

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

.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.06);
  filter: grayscale(0%);
}

.blog-card-body { padding: 2rem; }
.blog-card-meta {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-4);
  margin-bottom: 1rem;
  display: flex;
  gap: 1.5rem;
}

.blog-card-meta .cat { color: var(--gold); }

.blog-card-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.blog-card-excerpt {
  font-size: 0.85rem;
  color: var(--grey-4);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.blog-card-link {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* BLOG POST */
.blog-post-hero {
  padding: 12rem 3rem 4rem;
  max-width: 800px;
  margin: 0 auto;
}

.blog-post-meta {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-4);
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.blog-post-meta .cat { color: var(--gold); }

.blog-post-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 2rem;
}

.blog-post-image {
  width: 100%;
  aspect-ratio: 16/8;
  object-fit: cover;
  margin-bottom: 4rem;
  filter: grayscale(10%);
}

.blog-post-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 3rem 8rem;
}

.blog-post-content h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin: 3rem 0 1.5rem;
}

.blog-post-content h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin: 2.5rem 0 1rem;
}

.blog-post-content p {
  font-size: 1rem;
  color: var(--grey-5);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.blog-post-content ul,
.blog-post-content ol {
  color: var(--grey-5);
  margin: 1.5rem 0 1.5rem 1.5rem;
  line-height: 1.9;
}

.blog-post-content li { margin-bottom: 0.5rem; }

.blog-post-content blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 2rem;
  margin: 2rem 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--grey-4);
  line-height: 1.7;
}

.blog-post-content strong { color: var(--white); font-weight: 500; }

/* LEGAL PAGES */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 3rem 8rem;
}

.legal-content h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin: 3rem 0 1rem;
}

.legal-content h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin: 2rem 0 0.75rem;
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--grey-5);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  color: var(--grey-5);
  margin: 1rem 0 1rem 1.5rem;
  line-height: 1.8;
}

.legal-content li { margin-bottom: 0.5rem; }
.legal-content a { color: var(--gold); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }

/* CTA BANNER */
.cta-banner {
  background: var(--gold);
  padding: 6rem 3rem;
  text-align: center;
}

.cta-banner .section-label { color: rgba(0,0,0,0.5); }
.cta-banner h2 { font-family: var(--serif); font-size: clamp(2.5rem,4vw,4rem); color: var(--black); margin: 1rem 0 1.5rem; font-weight: 900; }
.cta-banner p { color: rgba(0,0,0,0.6); max-width: 480px; margin: 0 auto 3rem; font-size: 1rem; }
.cta-banner-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* WHATSAPP BUTTON */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: transform var(--transition);
  animation: whatsappPulse 2s ease infinite;
}

.whatsapp-btn:hover { transform: scale(1.1); }

.whatsapp-btn svg { width: 28px; height: 28px; fill: white; }

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--grey-1);
  border-top: 1px solid rgba(201,169,110,0.15);
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  z-index: 95;
  transform: translateY(100%);
  transition: transform var(--transition);
}

.cookie-banner.show { transform: translateY(0); }

.cookie-banner p {
  font-size: 0.85rem;
  color: var(--grey-5);
  line-height: 1.6;
  flex: 1;
}

.cookie-banner a { color: var(--gold); text-decoration: none; }
.cookie-banner a:hover { text-decoration: underline; }

.cookie-banner-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }

.cookie-btn {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border: none;
  transition: all var(--transition);
}

.cookie-btn-accept { background: var(--gold); color: var(--black); }
.cookie-btn-accept:hover { background: var(--gold-light); }
.cookie-btn-reject { background: transparent; color: var(--grey-4); border: 1px solid rgba(0,0,0,0.1); }
.cookie-btn-reject:hover { border-color: var(--grey-4); color: var(--white); }

/* NOTIFICATION */
.notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--gold);
  color: var(--black);
  padding: 1rem 1.5rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  z-index: 1000;
  transform: translateY(calc(100% + 4rem));
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}

.notification.show { transform: translateY(0); opacity: 1; pointer-events: auto; }

/* HONEYPOT */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* SELLER CTA STRIP */
.seller-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 40vh;
}

.seller-strip-left {
  background: var(--grey-1);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.seller-strip-right {
  background: var(--gold);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.seller-strip-right h3 { color: var(--black); font-size: 2rem; margin-bottom: 1rem; }
.seller-strip-right p { color: rgba(0,0,0,0.6); line-height: 1.7; margin-bottom: 2rem; }

/* SIDEBAR FORM */
.sidebar-form-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.sidebar-form-sub {
  font-size: 0.85rem;
  color: var(--grey-4);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* INCLUDED LIST */
.included-list { list-style: none; margin-bottom: 3rem; }
.included-list li {
  font-size: 0.9rem;
  color: var(--grey-5);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.included-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 500;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.5); }
}

/* REVEAL ON SCROLL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* MOBILE NAV */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--mono);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-menu .nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 0.8rem 2.5rem;
  margin-top: 0.5rem;
}

.mobile-menu .close-menu {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: color var(--transition);
  z-index: 201;
  padding: 0.5rem;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu .close-menu:hover { color: var(--gold); }
.mobile-menu .mobile-logo {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.mobile-menu .mobile-logo span { color: var(--gold); }

/* MOBILE LANG DROPDOWN (next to hamburger) */
.nav-lang-mobile {
  display: none;
  position: relative;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-left: auto;
  margin-right: 1rem;
}
.nav-lang-mobile .lang-current {
  color: var(--grey-4);
  cursor: pointer;
  padding: 0;
  background: none;
  border: none;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.nav-lang-mobile .lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 3px;
  margin-top: 0.5rem;
  z-index: 201;
}
.nav-lang-mobile .lang-dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--grey-4);
  text-decoration: none;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-lang-mobile .lang-dropdown a:hover { color: var(--gold); }
.nav-lang-mobile.open .lang-dropdown { display: block; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .listings-grid,
  .listings-full-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-strip { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .about-hero { grid-template-columns: 1fr; gap: 3rem; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .seller-strip { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 1.25rem 1.5rem; }
  section { padding: 5rem 1.5rem; }
  .hero { padding: 0 1.5rem; }
  .hero-stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
    padding: 2.5rem 1.5rem;
    justify-items: center;
    text-align: center;
  }
  .hero-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .process-step {
    text-align: center !important;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .process-step-icon {
    margin-left: auto;
    margin-right: auto;
  }
  .process-step h3,
  .process-step p {
    text-align: center !important;
  }
  .listings-grid,
  .listings-full-grid,
  .blog-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-lang-mobile { display: flex; align-items: center; }
  .about-hero { padding: 8rem 1.5rem 4rem; grid-template-columns: 1fr; gap: 2rem; }
  section[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    padding: 4rem 1.5rem !important;
    gap: 2rem !important;
  }
  .listing-detail-meta {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.3rem 1rem;
    align-items: center;
  }
  .listing-detail-meta .listing-detail-cat {
    grid-column: 1 / -1;
  }
  .listing-detail-meta .listing-detail-loc {
    grid-column: 1;
    justify-self: start;
  }
  .listing-detail-meta .listing-detail-ref {
    grid-column: 2;
    justify-self: end;
  }
  .section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .filters-bar { padding: 1.5rem; }
  .listing-detail { grid-template-columns: 1fr; }
  .listing-detail-top { min-height: auto; padding-top: 5rem; }
  .listing-detail-sidebar { border-left: none; border-top: 1px solid rgba(0,0,0,0.06); }
  .sidebar-sticky { position: static; }
  .listing-detail-info { padding: 1.25rem 1.5rem; }
  .listing-image-gallery { margin: 0 1.5rem; }
  .listing-detail-top .listing-highlights { margin: 0 1.5rem; }
  .listing-detail-title-row { flex-direction: column; gap: 0.5rem; }
  .listing-detail-body { padding: 3rem 1.5rem; }
  .listing-highlights { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-left,
  .contact-right { padding: 4rem 1.5rem; }
  .about-strip-left,
  .about-strip-right { padding: 4rem 1.5rem; }
  .seller-strip-left,
  .seller-strip-right { padding: 3rem 1.5rem; }
  .page-hero { padding: 10rem 1.5rem 4rem; }
  .scroll-indicator { display: none; }
  .blog-post-hero { padding: 10rem 1.5rem 4rem; }
  .blog-post-content { padding: 0 1.5rem 5rem; }
  .legal-content { padding: 0 1.5rem 5rem; }
  .listings-full { padding: 3rem 1.5rem 5rem; }
  .cookie-banner { flex-direction: column; padding: 1.5rem; text-align: center; }
  .whatsapp-btn { bottom: 1.5rem; right: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.8rem, 10vw, 4rem); }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary { width: 100%; justify-content: center; }
  .team-grid { grid-template-columns: 1fr; }
  .listing-highlights { grid-template-columns: 1fr; }
}
