/* ─────────────────────────────────────────────────────
   ABOUT US PAGE — Warmlyn design system
   ───────────────────────────────────────────────────── */

:root {
  --bg:            #FAF7F2;
  --ink:           #191311;
  --muted:         #5E5048;
  --gold:          #C9A96E;
  --gold-deep:     #A8883D;
  --gold-pale:     #F5EDD8;
  --cream-border:  #E5DDD3;
  --btn:           #3A2F2A;
  --line:          rgba(94, 80, 72, 0.13);
  --shadow:        0 8px 32px rgba(58, 47, 42, 0.08);
  --max-width:     1120px;
  --content-width: 720px;
}

* { box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Geist", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

/* ── PAGE WRAPPER ──────────────────────────────────── */
.about-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 80px 6rem;
  position: relative;
}

/* ── HEADER ────────────────────────────────────────── */
.about-header {
  padding: 88px 0 40px;
}

.header-content {
  max-width: var(--content-width);
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
}

.about-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.about-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0 0 12px;
  color: var(--ink);
}

.about-subtitle {
  font-size: 15px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
}

/* ── HERO IMAGE STRIP ──────────────────────────────── */
.hero-strip {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 6px;
  height: 400px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 72px;
}

.hero-strip__cell {
  overflow: hidden;
  position: relative;
}

.hero-strip__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.hero-strip__cell:hover .hero-strip__img {
  transform: scale(1.04);
}

/* ── CONTENT WRAPPER ───────────────────────────────── */
.content-wrapper {
  max-width: var(--content-width);
  margin: 0 auto;
  padding-bottom: 3rem;
}

/* ── SECTIONS ──────────────────────────────────────── */
.about-section {
  margin-bottom: 56px;
}

.about-section h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--ink);
  letter-spacing: -0.03em;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.about-section h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.about-section p {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.7;
  letter-spacing: -0.01em;
}

.lead {
  font-size: 16px !important;
  color: var(--ink) !important;
  font-weight: 500;
  line-height: 1.65 !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 16px !important;
}

.emphasis {
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 500;
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
  letter-spacing: -0.01em;
  line-height: 1.65;
  margin: 0;
}

.note {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

/* ── EDITORIAL BREAK IMAGE ─────────────────────────── */
.editorial-wrap {
  margin: 0 0 64px;
}

.editorial-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center 60%;
  border-radius: 18px;
  display: block;
}

.editorial-caption {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 7px;
}

.editorial-caption::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── RESIDENCE GRID ────────────────────────────────── */
.residence-grid {
  display: flex;
  flex-direction: column;
  margin: 20px 0;
}

.residence-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.residence-item:first-child { padding-top: 0; }
.residence-item:last-child  { border-bottom: none; padding-bottom: 0; }

.residence-item.featured {
  background: var(--gold-pale);
  border-radius: 12px;
  padding: 18px 16px;
  border: 1px solid rgba(201, 169, 110, 0.28);
  margin-top: 4px;
}

.residence-thumb {
  width: 96px;
  height: 76px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  display: block;
  background: var(--cream-border);
  flex-shrink: 0;
}

.residence-text h3 { margin: 0 0 2px; font-size: 14px; }

.residence-meta {
  font-size: 10.5px;
  color: var(--muted);
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 600;
}

.residence-desc {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

/* ── AMENITIES GRID ────────────────────────────────── */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 16px 0;
}

.amenity-col h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 10px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
}

.plain-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plain-list li {
  font-size: 13.5px;
  color: var(--muted);
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.01em;
  line-height: 1.45;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.plain-list li::before {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}

.plain-list li:last-child { border-bottom: none; }

.plain-list.columns {
  columns: 2;
  column-gap: 24px;
}

.plain-list.columns li {
  border-bottom: none;
  padding: 4px 0;
  break-inside: avoid;
}

/* ── MAP BOX ───────────────────────────────────────── */
.map-box {
  height: 340px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--cream-border);
  margin: 16px 0 8px;
  background: var(--cream-border);
}

.map-credit {
  font-size: 12px;
  color: var(--muted);
  margin: 6px 0 0;
  letter-spacing: -0.01em;
}

/* ── CONTACT CARD ──────────────────────────────────── */
.contact-card {
  background: var(--btn);
  border-radius: 18px;
  padding: 48px;
  margin: 56px 0 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact-title {
  font-size: 24px;
  font-weight: 600;
  color: #FAF7F2;
  margin: 0 0 8px;
  letter-spacing: -0.03em;
}

.contact-sub {
  font-size: 14px;
  color: rgba(250, 247, 242, 0.6);
  margin: 0 0 28px;
  letter-spacing: -0.01em;
  line-height: 1.6;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--ink);
  border: none;
  border-radius: 10px;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 0.18s, transform 0.14s;
  font-family: inherit;
}

.contact-button:hover {
  background: #dbbf82;
  transform: translateY(-1px);
}

/* ── BACK TO TOP ───────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  height: 42px;
  background: var(--btn);
  border: none;
  border-radius: 21px;
  color: #FAF7F2;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  transition: opacity 0.25s ease, background 0.2s, transform 0.18s;
  opacity: 0;
  pointer-events: none;
  z-index: 100;
  box-shadow: 0 4px 16px rgba(58, 47, 42, 0.22);
  letter-spacing: -0.01em;
  font-family: inherit;
  white-space: nowrap;
}

.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover   { background: #2a221f; transform: translateY(-2px); }
.back-to-top:active  { transform: scale(0.97); }
.back-to-top-text    { font-size: 13px; }

/* ── SCROLL REVEAL ─────────────────────────────────── */
.policy-section,
.about-section,
.contact-card,
.hero-strip,
.editorial-wrap {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.policy-section.visible,
.about-section.visible,
.contact-card.visible,
.hero-strip.visible,
.editorial-wrap.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-page { padding: 0 44px 5rem; }
}

@media (max-width: 768px) {
  .about-page   { padding: 0 24px 4rem; }
  .about-header { padding: 76px 0 32px; }
  .about-title  { font-size: 26px; }

  .hero-strip {
    grid-template-columns: 1fr 1fr;
    height: 240px;
    margin-bottom: 48px;
  }
  .hero-strip__cell:last-child { display: none; }

  .editorial-img { height: 260px; }

  .amenities-grid { grid-template-columns: 1fr; gap: 24px; }
  .plain-list.columns { columns: 1; }

  .residence-item { grid-template-columns: 80px 1fr; gap: 12px; }
  .residence-thumb { width: 80px; height: 64px; }

  .map-box { height: 260px; }

  .contact-card  { padding: 32px 24px; }
  .contact-title { font-size: 20px; }

  .back-to-top { bottom: 20px; right: 20px; height: 38px; padding: 0 14px; font-size: 12px; }
}

@media (max-width: 480px) {
  .about-page { padding: 0 16px 3rem; }

  .hero-strip {
    grid-template-columns: 1fr;
    height: 200px;
    margin-bottom: 36px;
  }
  .hero-strip__cell:not(:first-child) { display: none; }

  .editorial-img { height: 200px; }

  .residence-item { grid-template-columns: 1fr; }
  .residence-thumb { width: 100%; height: 150px; border-radius: 10px; }
  .residence-item.featured { padding: 14px; }

  .plain-list.columns { columns: 1; }
}