:root {
  --gold: #B07D2A;
  --gold-dark: #8B6220;
  --gold-pale: rgba(176,125,42,0.08);
  --blue: #5B7FA6;
  --dark: #0D0B09;
  --dark-2: #141210;
  --dark-3: #1C1915;
  --hero-start: #123C43;
  --hero-end: #1E4A52;
  --text: #222222;
  --text-muted: #666660;
  --text-faint: #999990;
  --light: #F5F5F5;
  --white: #FFFFFF;
  --serif: 'Playfair Display', serif;
  --sans: 'Outfit', sans-serif;
  --radius: 2px;
  --max: 1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); background: var(--white); color: var(--text); line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ── HEADER ──────────────────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--dark);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 68px;
  border-bottom: 1px solid rgba(176,125,42,0.12);
}
.header-logo { height: 38px; width: auto; }
.header-logo-text {
  font-family: var(--serif); font-size: 18px; font-weight: 500;
  letter-spacing: 0.12em; color: var(--white); text-transform: uppercase;
}
.footer-logo { height: 28px; }
.footer-logo-text {
  font-family: var(--serif); font-size: 14px; font-weight: 500;
  letter-spacing: 0.12em; color: rgba(255,255,255,0.4); text-transform: uppercase;
}
.header-scarcity {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.82);
}
.header-dot {
  width: 6px; height: 6px; background: #4CAF50; border-radius: 50%;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.header-scarcity strong { color: #ffffff; }
.btn-nav {
  background: var(--gold); color: #fff;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em; padding: 10px 22px;
  border: none; cursor: pointer; border-radius: var(--radius);
  transition: background 0.2s;
}
.btn-nav:hover { background: var(--gold-dark); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {

  min-height: 100vh;
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: 68px;
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 42%,
    rgba(13,11,9,0.55) 62%,
    rgba(13,11,9,0.88) 80%,
    var(--dark) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 48px 64px;
  max-width: 860px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--gold);
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 400;
  line-height: 0.92;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic; color: var(--gold);
}
.hero-sub {
  font-size: 15px; font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  line-height: 1.5;
}
.hero-sub strong { color: rgba(255,255,255,0.9); font-weight: 500; }
.hero-trust {
  display: flex; align-items: center; gap: 28px;
  margin-top: 20px; flex-wrap: wrap;
}
.hero-trust-item {
  font-size: 12px; color: rgba(255,255,255,0.38);
  letter-spacing: 0.05em;
  display: flex; align-items: center; gap: 7px;
}
.hero-trust-item::before {
  content: ''; width: 14px; height: 1px; background: rgba(176,125,42,0.5);
}

/* ── NUMBERS BAR ─────────────────────────────────────────── */
.numbers-bar {
  background: var(--dark-2);
  border-bottom: 1px solid rgba(176,125,42,0.1);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.numbers-item {
  padding: 36px 32px;
  border-right: 1px solid rgba(176,125,42,0.08);
  text-align: center;
}
.numbers-item:last-child { border-right: none; }
.numbers-value {
  font-family: var(--serif); font-size: 42px; font-weight: 500;
  color: var(--gold); line-height: 1;
  margin-bottom: 8px;
}
.numbers-label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.38);
  line-height: 1.5;
}

/* ── SECTION DEFAULTS ────────────────────────────────────── */
.section { padding: 96px 48px; }
.section--dark { background: var(--dark-3); }
.section--darker { background: var(--dark); }
.section--light { background: var(--light); }
.section--white { background: var(--white); }

.section-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.section-eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--gold); }
.section-eyebrow--light { color: var(--gold); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400; line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title--white { color: var(--white); }

.section-lead {
  font-size: 16px; font-weight: 300; color: var(--text-muted);
  max-width: 580px; line-height: 1.8;
  margin-bottom: 48px;
}
.section-lead--white { color: rgba(255,255,255,0.5); }

/* ── ARGUMENT CARDS ──────────────────────────────────────── */
.args-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(0,0,0,0.06);
  margin-top: 56px;
}
.arg {
  background: var(--white);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.arg::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.arg:hover { background: #FAFAF8; }
.arg:hover::after { transform: scaleX(1); }
.arg-num {
  font-family: var(--serif); font-size: 72px; font-weight: 400;
  color: rgba(176,125,42,0.1); line-height: 1;
  margin-bottom: 20px;
}
.arg-heading {
  font-family: var(--serif); font-size: 22px; font-weight: 500;
  color: var(--text); line-height: 1.25; margin-bottom: 12px;
}
.arg-body { font-size: 14px; color: var(--text-muted); line-height: 1.8; }
.arg-tag {
  display: inline-block; margin-top: 20px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
  border-bottom: 1px solid rgba(176,125,42,0.25); padding-bottom: 2px;
}

/* ── LOFT DIFFERENTIATOR ─────────────────────────────────── */
.loft-section {
  background: var(--dark);
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.loft-image {
  position: relative; overflow: hidden;
}
.loft-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}
.loft-content {
  padding: 88px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.loft-quote {
  font-family: var(--serif); font-size: 28px; font-weight: 400; font-style: italic;
  color: var(--white); line-height: 1.45;
  margin-bottom: 32px;
  border-left: 2px solid var(--gold); padding-left: 28px;
}
.loft-body {
  font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.5);
  line-height: 1.85; margin-bottom: 28px;
}
.loft-specs {
  display: flex; flex-direction: column; gap: 10px;
}
.loft-spec {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,0.6);
}
.loft-spec-dot {
  width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0;
}

/* ── URBAN HOUSE ─────────────────────────────────────────── */
.urban-section {
  background: var(--light);
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.urban-image {
  position: relative; overflow: hidden; order: 2;
}
.urban-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.urban-content {
  padding: 88px 64px;
  display: flex; flex-direction: column; justify-content: center;
  order: 1;
}
.urban-heading {
  font-family: var(--serif); font-size: 38px; font-weight: 400;
  line-height: 1.15; color: var(--text);
  margin-bottom: 20px;
}
.urban-heading em { font-style: italic; color: var(--gold); }
.urban-body {
  font-size: 15px; font-weight: 300; color: var(--text-muted);
  line-height: 1.85; margin-bottom: 28px;
}
.urban-specs {
  display: flex; flex-direction: column; gap: 10px;
}
.urban-spec {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--text-muted);
}
.urban-spec-dot {
  width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0;
}

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 420px;
  gap: 3px;
  margin-top: 48px;
}
.gallery-item { overflow: hidden; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item--tall { grid-row: span 1; }

/* ── HISTORY ─────────────────────────────────────────────── */
.history-section {
  background: var(--dark-2);
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
}
.history-image { position: relative; overflow: hidden; min-height: 480px; }
.history-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(0.2) brightness(0.7);
}
.history-content {
  padding: 80px 64px;
  background: var(--dark-3);
  display: flex; flex-direction: column; justify-content: center;
}
.history-year {
  font-family: var(--serif); font-size: 80px; font-weight: 400;
  color: rgba(176,125,42,0.15); line-height: 1;
  margin-bottom: 24px;
}
.history-body {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.5); line-height: 1.9;
}
.history-body strong { color: rgba(255,255,255,0.8); font-weight: 500; }

/* ── SCARCITY / AVAILABILITY ─────────────────────────────── */
.avail-section { background: var(--white); }
.avail-intro {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px;
  gap: 32px;
}
.avail-intro-right {
  font-size: 13px; color: var(--text-faint); text-align: right; flex-shrink: 0;
  line-height: 1.6;
}
.avail-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(0,0,0,0.06);
}
.avail-card {
  background: var(--white); padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: background 0.2s;
}
.avail-card:hover { background: #FAFAF8; }
.avail-badge {
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 2px;
  display: inline-block; margin-bottom: 20px;
}
.badge--ok { background: rgba(76,175,80,0.08); color: #2E7D32; }
.badge--few { background: rgba(176,125,42,0.1); color: var(--gold-dark); }
.badge--critical { background: rgba(180,50,30,0.08); color: #B43220; }
.avail-rooms {
  font-family: var(--serif); font-size: 30px; font-weight: 500;
  color: var(--text); margin-bottom: 8px; line-height: 1;
}
.avail-count {
  font-size: 13px; color: var(--text-muted); margin-bottom: 16px;
}
.avail-count strong { color: var(--text); font-weight: 600; }
.avail-price {
  font-family: var(--serif); font-size: 22px; font-weight: 500;
  color: var(--gold); margin-bottom: 6px;
}
.avail-size { font-size: 12px; color: var(--text-faint); margin-bottom: 24px; }
.avail-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold);
  border-bottom: 1px solid rgba(176,125,42,0.3);
  padding-bottom: 2px;
  transition: gap 0.2s, border-color 0.2s;
}
.avail-cta:hover { gap: 10px; border-color: var(--gold); }

/* ── LOCATION ────────────────────────────────────────────── */
.location-section {
  background: var(--dark);
  display: grid; grid-template-columns: 1fr 1fr;
}
.location-image { position: relative; overflow: hidden; min-height: 520px; }
.location-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.6);
}
.location-content {
  padding: 88px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.location-heading {
  font-family: var(--serif); font-size: 38px; font-weight: 400;
  color: var(--white); line-height: 1.15; margin-bottom: 12px;
}
.location-lead {
  font-size: 14px; color: rgba(255,255,255,0.4);
  margin-bottom: 40px; line-height: 1.7;
}
.location-facts {
  display: flex; flex-direction: column; gap: 0;
}
.location-fact {
  display: grid; grid-template-columns: 80px 1fr;
  align-items: center; gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.location-fact:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.location-time {
  font-family: var(--serif); font-size: 26px; font-weight: 500;
  color: var(--gold); line-height: 1;
}
.location-desc {
  font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5;
}
.location-desc strong { color: rgba(255,255,255,0.85); font-weight: 500; display: block; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-section { background: var(--light); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 56px;
}
.testimonial {
  background: var(--white); padding: 40px 36px;
  border-top: 2px solid var(--gold-pale);
  transition: border-color 0.3s;
}
.testimonial:hover { border-top-color: var(--gold); }
.testimonial-stars {
  display: flex; gap: 3px; margin-bottom: 20px;
}
.star { color: var(--gold); font-size: 13px; }
.testimonial-text {
  font-family: var(--serif); font-size: 16px; font-weight: 400; font-style: italic;
  color: var(--text); line-height: 1.75; margin-bottom: 24px;
}
.testimonial-author {
  font-size: 12px; color: var(--text-faint);
}
.testimonial-author strong {
  display: block; color: var(--text); font-weight: 600; font-size: 13px;
  margin-bottom: 2px; font-style: normal;
}

/* ── CONTACT SECTION ─────────────────────────────────────── */
.contact-section {
  background: var(--dark);
  display: grid; grid-template-columns: 1fr 1fr;
}
.contact-left {
  padding: 96px 64px;
  border-right: 1px solid rgba(176,125,42,0.1);
}
.contact-heading {
  font-family: var(--serif); font-size: 42px; font-weight: 400;
  color: var(--white); line-height: 1.15; margin-bottom: 20px;
}
.contact-heading em { font-style: italic; color: var(--gold); }
.contact-lead {
  font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.4);
  line-height: 1.8; margin-bottom: 40px; max-width: 460px;
}
.contact-channels {
  display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px;
}
.contact-channel {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: border-color 0.2s;
  cursor: pointer;
}
.contact-channel:hover { border-color: rgba(176,125,42,0.3); color: var(--white); }
.contact-channel-icon {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-channel-icon--wa { background: rgba(37,211,102,0.12); }
.contact-channel-icon--phone { background: rgba(176,125,42,0.12); }
.contact-channel-label { font-size: 11px; color: var(--text-faint); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-channel-value { font-size: 15px; font-weight: 500; }
.contact-note {
  font-size: 12px; color: rgba(255,255,255,0.25); line-height: 1.8;
}
.contact-openhouse {
  display: flex; align-items: center; gap: 16px;
  background: rgba(176,125,42,0.1);
  border: 1px solid rgba(176,125,42,0.25);
  border-radius: 2px;
  padding: 16px 20px;
  margin-bottom: 16px;
}
.contact-openhouse-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
  white-space: nowrap;
  border-right: 1px solid rgba(176,125,42,0.25);
  padding-right: 16px;
}
.contact-openhouse-time {
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

/* CONTACT FORM */
.contact-right {
  padding: 96px 64px;
  background: var(--dark-2);
}
.contact-form-title {
  font-family: var(--serif); font-size: 28px; font-weight: 400;
  color: var(--white); margin-bottom: 8px;
}
.contact-form-sub {
  font-size: 13px; color: rgba(255,255,255,0.35); margin-bottom: 36px;
}
.form-step { display: none; }
.form-step.active { display: block; }
.form-progress {
  display: flex; gap: 5px; margin-bottom: 32px;
}
.form-prog-bar {
  height: 2px; flex: 1; background: rgba(255,255,255,0.1); border-radius: 1px;
  transition: background 0.3s;
}
.form-prog-bar.done { background: var(--gold); }
.form-options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 8px; }
.form-option {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  font-family: var(--sans); font-size: 13px; font-weight: 400;
  padding: 14px 16px; cursor: pointer; text-align: left;
  border-radius: var(--radius); transition: all 0.2s;
  line-height: 1.4;
}
.form-option:hover { border-color: rgba(176,125,42,0.4); color: var(--white); }
.form-option.selected { background: rgba(176,125,42,0.12); border-color: var(--gold); color: var(--white); }
.form-option-price { display: block; font-size: 11px; color: var(--text-faint); margin-top: 3px; }
.form-field {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1); color: var(--white);
  font-family: var(--sans); font-size: 14px; font-weight: 300;
  padding: 14px 16px; border-radius: var(--radius); outline: none;
  margin-bottom: 10px; transition: border-color 0.2s;
}
.form-field:focus { border-color: rgba(176,125,42,0.5); }
.form-field::placeholder { color: rgba(255,255,255,0.25); }
.form-field.error { border-color: #C0392B; }
.btn-form {
  width: 100%; background: var(--gold); color: #fff;
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em; padding: 16px;
  border: none; cursor: pointer; border-radius: var(--radius);
  transition: background 0.2s; margin-top: 4px;
}
.btn-form:hover { background: var(--gold-dark); }
.form-back {
  background: none; border: none; color: rgba(255,255,255,0.3);
  font-family: var(--sans); font-size: 12px; cursor: pointer;
  margin-bottom: 16px; display: flex; align-items: center; gap: 6px;
  padding: 0; transition: color 0.2s;
}
.form-back:hover { color: rgba(255,255,255,0.7); }
.form-privacy {
  font-size: 11px; color: rgba(255,255,255,0.2); text-align: center; margin-top: 10px;
  line-height: 1.5;
}
.form-success { text-align: center; padding: 24px 0; }
.form-success-icon {
  width: 52px; height: 52px; background: rgba(176,125,42,0.12);
  border: 1px solid rgba(176,125,42,0.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 {
  font-family: var(--serif); font-size: 26px; font-weight: 400;
  color: var(--white); margin-bottom: 10px;
}
.form-success p { font-size: 14px; color: rgba(255,255,255,0.4); }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--dark); padding: 40px 48px;
  border-top: 1px solid rgba(176,125,42,0.1);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.footer-meta { font-size: 12px; color: rgba(255,255,255,0.2); line-height: 1.7; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.6); }

/* ── WA FLOAT ────────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 100px; right: 28px; z-index: 200;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.06); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }

/* ── GALLERY SECTION ─────────────────────────────────────── */
.gallery-section {
  padding-bottom: 0;
  padding-top: 72px;
}
.innenhof-section { padding-top: 0; }
.innenhof-wrap { padding-top: 72px; }
.avail-title { margin-bottom: 0; }

@media (max-width: 600px) {
  .gallery-section { padding-top: 40px; }
  .innenhof-wrap { padding-top: 32px; }
  .innenhof-section { padding-bottom: 0; }
}

/* ── FADE IN ─────────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .header { padding: 0 20px; }
  .hero-content { padding: 0 20px 48px; }
  .section { padding: 56px 20px; }
  .numbers-bar { grid-template-columns: repeat(2, 1fr); }
  .args-grid { grid-template-columns: 1fr; gap: 1px; }
  .loft-section, .urban-section, .history-section,
  .location-section, .contact-section { grid-template-columns: 1fr; }
  .loft-content, .urban-content, .history-content,
  .location-content, .contact-left, .contact-right { padding: 40px 20px; }
  .loft-image, .urban-image { min-height: 300px; order: 0 !important; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item--tall { grid-row: span 1; }
  .avail-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer { flex-direction: column; align-items: flex-start; gap: 16px; padding: 32px 20px; }
  .contact-section { grid-template-columns: 1fr; }
  .contact-left { border-right: none; border-bottom: 1px solid rgba(176,125,42,0.1); }
}
@media (max-width: 600px) {
  /* HEADER */
  .header { padding: 0 16px; height: 60px; }
  .header-scarcity { display: none; }
  .header-logo { height: 30px; }
  .btn-nav { font-size: 12px; padding: 8px 14px; }

  /* HERO */
  .hero-title { font-size: clamp(36px, 11vw, 56px); }
  .hero-eyebrow { font-size: 10px; }
  .hero-sub { font-size: 13px; margin-bottom: 28px; }
  .hero-content { padding: 0 16px 40px; }
  .hero-trust { gap: 16px; }
  .hero-trust-item { font-size: 11px; }

  /* NUMBERS BAR */
  .numbers-bar { grid-template-columns: 1fr 1fr; }
  .numbers-item { padding: 24px 16px; }
  .numbers-value { font-size: 32px; }
  .numbers-label { font-size: 10px; }

  /* SECTIONS */
  .section { padding: 36px 16px; }
  .section-title { font-size: clamp(26px, 7vw, 38px); }

  /* LOFT / URBAN */
  .loft-content, .urban-content { padding: 32px 16px; }
  .loft-quote { font-size: 20px; padding-left: 18px; }
  .loft-body, .urban-body { font-size: 14px; }
  .loft-image, .urban-image { min-height: 240px; }

  /* GALLERY */
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item { height: 260px; }

  /* ARGS */
  .arg { padding: 32px 20px; }
  .arg-num { font-size: 52px; }
  .arg-heading { font-size: 18px; }
  .arg-body { font-size: 13px; }

  /* AVAILABILITY */
  .avail-grid { grid-template-columns: 1fr; }
  .avail-intro { flex-direction: column; gap: 8px; }
  .avail-intro-right { text-align: left; }
  .avail-card { padding: 24px 20px; }

  /* LOCATION */
  .location-content { padding: 32px 16px; }
  .location-heading { font-size: 28px; }
  .location-time { font-size: 22px; }
  .location-image { min-height: 220px; }

  /* HISTORY */
  .history-content { padding: 32px 16px; }
  .history-year { font-size: 56px; }
  .history-image { min-height: 220px; }

  /* TESTIMONIALS */
  .testimonial { padding: 28px 20px; }
  .testimonial-text { font-size: 15px; }

  /* CONTACT */
  .contact-left, .contact-right { padding: 32px 16px; }
  .contact-heading { font-size: 28px; }
  .contact-lead { font-size: 14px; margin-bottom: 24px; }
  .contact-channels { gap: 8px; }
  .contact-form-title { font-size: 22px; }
  .form-options { grid-template-columns: 1fr; }
  .form-option { padding: 12px 14px; font-size: 13px; }
  .form-field { font-size: 16px; } /* 16px prevents iOS zoom */
  .btn-form { font-size: 14px; padding: 15px; }
  .contact-openhouse { flex-direction: column; gap: 8px; align-items: flex-start; }
  .contact-openhouse-badge { border-right: none; border-bottom: 1px solid rgba(176,125,42,0.25); padding-right: 0; padding-bottom: 8px; width: 100%; }

  /* FOOTER */
  .footer { padding: 28px 16px; gap: 16px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
  .footer-meta { font-size: 11px; }

  /* WA FLOAT */
  .wa-float { bottom: 24px; right: 24px; width: 48px; height: 48px; }
}

/* ── LANG SWITCHER ───────────────────────────────────────── */
.lang-switcher {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(176,125,42,0.25);
  border-radius: 2px;
  overflow: hidden;
  margin-right: 12px;
  flex-shrink: 0;
}
.lang-btn {
  background: none; border: none;
  color: rgba(255,255,255,0.45);
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; padding: 7px 11px;
  cursor: pointer; transition: all 0.2s;
  line-height: 1;
}
.lang-btn.active {
  background: rgba(176,125,42,0.22);
  color: var(--white);
}
.lang-btn:hover:not(.active) { color: rgba(255,255,255,0.75); }
.lang-sep { width: 1px; height: 16px; background: rgba(176,125,42,0.2); flex-shrink: 0; }
@media (max-width: 600px) {
  .lang-switcher { margin-right: 8px; }
}

    #cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: #222;
      color: #fff;
      padding: 15px;
      text-align: center;
      z-index: 9999;
    }
    #cookie-banner button {
      margin: 5px;
      padding: 8px 15px;
      border: none;
      cursor: pointer;
    }
    .accept { background: #4CAF50; color: white; }
    .decline { background: #f44336; color: white; }

      :root {
    --cookie-bg: rgba(17, 17, 17, 0.96);
    --cookie-panel: #ffffff;
    --cookie-text: #111111;
    --cookie-text-light: #f5f5f5;
    --cookie-border: rgba(255, 255, 255, 0.14);
    --cookie-muted: rgba(255, 255, 255, 0.72);
    --cookie-accent: #111111;
    --cookie-accent-2: #ffffff;
    --cookie-shadow: 0 20px 50px rgba(0,0,0,0.28);
    --cookie-radius: 18px;
    --cookie-z: 99999;
    --cookie-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }

  #fs-cookie-banner,
  #fs-cookie-modal {
    font-family: var(--cookie-font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  #fs-cookie-banner[hidden],
  #fs-cookie-modal[hidden],
  #fs-cookie-backdrop[hidden] {
    display: none !important;
  }

  #fs-cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: var(--cookie-z);
    display: flex;
    justify-content: center;
    pointer-events: none;
  }

  .fs-cookie-card {
    width: 100%;
    max-width: 1080px;
    background: var(--cookie-bg);
    color: var(--cookie-text-light);
    border: 1px solid var(--cookie-border);
    border-radius: var(--cookie-radius);
    box-shadow: var(--cookie-shadow);
    padding: 22px 22px 18px;
    pointer-events: auto;
    backdrop-filter: blur(8px);
  }

  .fs-cookie-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.9fr;
    gap: 20px;
    align-items: center;
  }

  .fs-cookie-title {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  .fs-cookie-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--cookie-muted);
    max-width: 760px;
  }

  .fs-cookie-text a,
  .fs-cookie-modal-text a {
    color: #B07D2A;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  .fs-cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
  }

  .fs-cookie-btn {
    appearance: none;
    border: 1px solid rgba(255,255,255,0.18);
    background: transparent;
    color: #fff;
    border-radius: 999px;
    padding: 12px 18px;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease, color 0.15s ease;
    min-height: 44px;
  }

  .fs-cookie-btn:hover {
    transform: translateY(-1px);
  }

  .fs-cookie-btn-primary {
    background: #fff;
    color: #111;
    border-color: #fff;
  }

  .fs-cookie-btn-secondary {
    background: transparent;
    color: #fff;
  }

  .fs-cookie-btn-ghost {
    background: rgba(255,255,255,0.06);
    color: #fff;
  }

  #fs-cookie-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: calc(var(--cookie-z) + 1);
  }

  #fs-cookie-modal {
    position: fixed;
    inset: 0;
    z-index: calc(var(--cookie-z) + 2);
    display: grid;
    place-items: center;
    padding: 24px;
  }

  .fs-cookie-modal-card {
    width: 100%;
    max-width: 760px;
    background: var(--cookie-panel);
    color: var(--cookie-text);
    border-radius: 22px;
    box-shadow: var(--cookie-shadow);
    padding: 28px;
  }

  .fs-cookie-modal-title {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.03em;
  }

  .fs-cookie-modal-text {
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(17,17,17,0.75);
  }

  .fs-cookie-option {
    border: 1px solid rgba(17,17,17,0.12);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 14px;
  }

  .fs-cookie-option-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 10px;
  }

  .fs-cookie-option-title {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
  }

  .fs-cookie-option-sub {
    margin: 4px 0 0;
    font-size: 13px;
    color: rgba(17,17,17,0.58);
  }

  .fs-cookie-option-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(17,17,17,0.75);
  }

  .fs-cookie-switch {
    position: relative;
    width: 54px;
    height: 32px;
    flex: 0 0 auto;
  }

  .fs-cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
  }

  .fs-cookie-slider {
    position: absolute;
    inset: 0;
    background: #d9d9d9;
    border-radius: 999px;
    transition: 0.2s ease;
    cursor: pointer;
  }

  .fs-cookie-slider::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    left: 4px;
    top: 4px;
    background: #fff;
    border-radius: 50%;
    transition: 0.2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.16);
  }

  .fs-cookie-switch input:checked + .fs-cookie-slider {
    background: #111;
  }

  .fs-cookie-switch input:checked + .fs-cookie-slider::before {
    transform: translateX(22px);
  }

  .fs-cookie-switch input:disabled + .fs-cookie-slider {
    background: #111;
    cursor: not-allowed;
    opacity: 0.9;
  }

  .fs-cookie-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 24px;
  }

  .fs-cookie-settings-link {
    cursor: pointer;
  }

  @media (max-width: 860px) {
    .fs-cookie-grid {
      grid-template-columns: 1fr;
    }

    .fs-cookie-actions {
      justify-content: flex-start;
    }
  }

  @media (max-width: 640px) {
    #fs-cookie-banner {
      left: 12px;
      right: 12px;
      bottom: 12px;
    }

    .fs-cookie-card {
      padding: 18px 16px 16px;
      border-radius: 16px;
    }

    .fs-cookie-title {
      font-size: 18px;
    }

    .fs-cookie-modal-card {
      padding: 22px 18px;
      border-radius: 18px;
    }

    .fs-cookie-modal-title {
      font-size: 24px;
    }

    .fs-cookie-actions,
    .fs-cookie-modal-actions {
      flex-direction: column;
    }

    .fs-cookie-btn {
      width: 100%;
      justify-content: center;
    }
  }
    

:root {
  --gold: #B07D2A;
  --gold-dark: #8B6220;
  --dark: #0D0B09;
  --dark-2: #141210;
  --dark-3: #1C1915;
  --text: #222222;
  --text-muted: #666660;
  --text-faint: #999990;
  --light: #F5F5F5;
  --white: #FFFFFF;
  --serif: 'Playfair Display', serif;
  --sans: 'Outfit', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--white); color: var(--text); line-height: 1.7; overflow-x: hidden; }
a { text-decoration: none; }
.header {
  background: var(--dark);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 68px;
  border-bottom: 1px solid rgba(176,125,42,0.12);
}
.header-logo { height: 38px; width: auto; }
.btn-nav {
  background: var(--gold); color: #fff;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em; padding: 10px 22px;
  border-radius: 2px; display: inline-block;
}
.btn-nav:hover { background: var(--gold-dark); }
.page-wrap { max-width: 800px; margin: 0 auto; padding: 80px 48px 120px; }
.page-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.page-eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--gold); }
.page-title {
  font-family: var(--serif); font-size: clamp(32px,4vw,48px);
  font-weight: 400; color: var(--text); margin-bottom: 48px;
  line-height: 1.15; border-bottom: 1px solid rgba(0,0,0,0.08);
  padding-bottom: 32px;
}
.section-block { margin-bottom: 40px; }
.section-block h2 {
  font-family: var(--serif); font-size: 20px; font-weight: 500;
  color: var(--text); margin-bottom: 12px;
}
.section-block h3 {
  font-size: 14px; font-weight: 600; color: var(--text);
  margin-bottom: 8px; margin-top: 20px;
}
.section-block p, .section-block li {
  font-size: 15px; color: var(--text-muted); line-height: 1.85;
  margin-bottom: 10px;
}
.section-block ul { list-style: none; padding: 0; }
.section-block ul li::before {
  content: '—'; margin-right: 10px; color: var(--gold);
}
.section-block a { color: var(--gold); border-bottom: 1px solid rgba(176,125,42,0.3); }
.section-block a:hover { border-color: var(--gold); }
.divider { height: 1px; background: rgba(0,0,0,0.07); margin: 32px 0; }
.footer {
  background: var(--dark); padding: 40px 48px;
  border-top: 1px solid rgba(176,125,42,0.1);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo { height: 28px; }
.footer-meta { font-size: 12px; color: rgba(255,255,255,0.2); line-height: 1.7; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.25); transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.6); }
@media (max-width: 768px) {
  .header { padding: 0 24px; }
  .page-wrap { padding: 60px 24px 80px; }
  .footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
}
    
