/* --------------------------------------------------------------------------
   solocasebelle.it — public site styles
   Palette: bottle green + warm off-white
   -------------------------------------------------------------------------- */
:root {
  --c-bg: #F8F6F1;
  --c-bg-alt: #EFEAE0;
  --c-ink: #1A1A1A;
  --c-ink-soft: #3a3a3a;
  --c-muted: #7A7A7A;
  --c-line: #d8d2c4;
  --c-primary: #1F3A2E;
  --c-primary-2: #3B6B52;
  --c-primary-ink: #F8F6F1;
  --c-accent: #B68B4A;
  --c-danger: #8a3027;
  --c-success: #2d6a4f;

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 18px 40px rgba(0,0,0,.14);

  --container: 1200px;
  --container-narrow: 880px;

  --f-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --f-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); }
a:hover { color: var(--c-primary-2); }

h1, h2, h3, h4 {
  font-family: var(--f-serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--c-ink);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); margin: 0 0 .4em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 0 0 .5em; }
h3 { font-size: 1.4rem; margin: 0 0 .4em; }
h4 { font-size: 1.1rem; margin: 0 0 .35em; }

p { margin: 0 0 1em; }
.muted { color: var(--c-muted); }
.lead { font-size: 1.15rem; color: var(--c-ink-soft); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform .15s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  letter-spacing: .02em;
}
.btn--primary { background: var(--c-primary); color: var(--c-primary-ink); }
.btn--primary:hover { background: var(--c-primary-2); color: var(--c-primary-ink); }
.btn--ghost { background: transparent; color: var(--c-primary-ink); border-color: rgba(248,246,241,.4); }
.btn--ghost:hover { background: rgba(248,246,241,.12); color: var(--c-primary-ink); }
.btn--outline { background: transparent; color: var(--c-primary); border-color: var(--c-primary); }
.btn--outline:hover { background: var(--c-primary); color: var(--c-primary-ink); }
.btn:active { transform: translateY(1px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248,246,241,.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--c-line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--c-primary); }
.brand__logo { display: block; line-height: 0; }
.brand__logo img {
  display: block;
  height: 56px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}
@media (max-width: 600px) {
  .brand__logo img { height: 44px; max-width: 180px; }
}

.primary-nav ul { display: flex; gap: 30px; margin: 0; padding: 0; list-style: none; }
.primary-nav a {
  color: var(--c-ink); text-decoration: none; font-size: .92rem; font-weight: 500;
  padding: 6px 0; position: relative;
}
.primary-nav a.is-active::after,
.primary-nav a:hover::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--c-primary);
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: 0; cursor: pointer;
  padding: 0;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--c-ink); margin: 5px auto; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .primary-nav {
    position: absolute; top: var(--header-h); left: 0; right: 0;
    background: var(--c-bg);
    border-bottom: 1px solid var(--c-line);
    overflow: hidden;
    max-height: 0;
    transition: max-height .3s ease;
  }
  .primary-nav.is-open { max-height: 500px; }
  .primary-nav ul { flex-direction: column; gap: 0; padding: 12px 24px; }
  .primary-nav li { border-bottom: 1px solid var(--c-line); }
  .primary-nav li:last-child { border-bottom: 0; }
  .primary-nav a { display: block; padding: 14px 0; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(440px, 62vh, 700px);
  display: flex; align-items: flex-end;
  color: var(--c-primary-ink);
  isolation: isolate;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: -2;
  background: linear-gradient(135deg, #1F3A2E 0%, #2c5a44 50%, #3B6B52 100%);
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 30%, rgba(255,255,255,.08), transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(0,0,0,.25), transparent 60%);
}
.hero--has-image .hero__backdrop { display: none; }
.hero--has-image .hero__bg::after { display: none; }
.hero--has-image picture.hero__bg { background: #1a1a1a; }
.hero--has-image picture.hero__bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(.82) saturate(1.05);
}
/* on wide screens make the hero a bit taller proportionally so the side-crop is minimal */
@media (min-width: 1100px) {
  .hero--has-image { min-height: clamp(560px, calc(100vw / 2.3), 760px); }
}
@media (max-width: 700px) {
  .hero--has-image picture.hero__bg img {
    object-position: center 35%;
  }
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.10) 35%, rgba(0,0,0,.65) 100%);
  z-index: -1;
}
.hero__content { padding: 60px 24px 80px; }
.hero__eyebrow { color: rgba(248,246,241,.8); letter-spacing: .15em; text-transform: uppercase; font-size: .8rem; margin: 0 0 20px; }
.hero__title { color: var(--c-primary-ink); max-width: 920px; font-size: clamp(1.6rem, 3.5vw, 2.6rem); line-height: 1.3; font-weight: 500; }
.hero__cta { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }

/* page hero (lighter, used on inner pages) */
.page-hero {
  background: var(--c-primary);
  color: var(--c-primary-ink);
  padding: 80px 0 56px;
}
.page-hero h1 { color: var(--c-primary-ink); }
.page-hero .lead { color: rgba(248,246,241,.85); }
.page-hero .eyebrow { color: rgba(248,246,241,.7); letter-spacing: .15em; text-transform: uppercase; font-size: .8rem; margin: 0 0 14px; }
.page-hero a { color: rgba(248,246,241,.9); }

.page-hero--apt h1 { display: inline; margin-right: 16px; }

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section--alt { background: var(--c-bg-alt); }
.section__title { margin-bottom: 6px; }
.section__lead { color: var(--c-muted); margin-bottom: 32px; }
.section__subtitle { font-size: 1.4rem; margin: 36px 0 16px; }

.eyebrow { letter-spacing: .15em; text-transform: uppercase; font-size: .8rem; color: var(--c-muted); margin: 0 0 14px; }

/* ---------- Prose ---------- */
.prose { max-width: 60ch; }
.prose ul { padding-left: 1.2em; }
.prose li { margin: .25em 0; }

/* ---------- Two col ---------- */
.two-col { display: grid; grid-template-columns: 1.6fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
}

.info-card {
  background: white;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.info-card h3 { margin-top: 0; font-size: 1.05rem; color: var(--c-primary); }
.info-card h3 + p { margin-top: -2px; }
.info-card h3:not(:first-child) { margin-top: 18px; }

/* ---------- Features list ---------- */
.features {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px 28px;
}
.features li { padding-left: 0; color: var(--c-ink-soft); }
.features li > span { color: var(--c-primary); margin-right: 8px; }

.values { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px; }
.values article h3 { color: var(--c-primary); }

/* ---------- Building grid (home) ---------- */
.building-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.building-card {
  display: flex; flex-direction: column;
  text-decoration: none;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: white;
  border: 1px solid var(--c-line);
  color: var(--c-ink);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.building-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.building-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--c-bg-alt); }
.building-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.building-card:hover .building-card__media img { transform: scale(1.04); }
.building-card__body { padding: 22px 24px 24px; }
.building-card__status {
  display: inline-block;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--c-bg-alt); color: var(--c-primary);
  margin-bottom: 12px;
}
.building-card.is-ready .building-card__status { background: var(--c-primary); color: var(--c-primary-ink); }
.building-card.is-building .building-card__status { background: var(--c-accent); color: white; }
.building-card.is-reserving .building-card__status { background: #2b4a8b; color: white; }
.building-card__title { margin: 0 0 6px; font-size: 1.6rem; }
.building-card__cta { margin: 0; color: var(--c-primary); font-weight: 500; }

/* ---------- Apartment grid + card ---------- */
.apt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.apt-card {
  position: relative;
  display: flex; flex-direction: column;
  background: white; border: 1px solid var(--c-line); border-radius: var(--r-md);
  overflow: hidden; text-decoration: none; color: var(--c-ink);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.apt-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.apt-card__media { position: relative; aspect-ratio: 4 / 3; background: var(--c-bg-alt); overflow: hidden; }
.apt-card__media img { width: 100%; height: 100%; object-fit: contain; padding: 10px; background: white; }
.apt-card__overlay { position: absolute; top: 12px; right: 12px; }
.apt-card--sold .apt-card__media img { filter: grayscale(.2) opacity(.8); }
.apt-card--sold::after {
  content: ''; position: absolute; inset: 0; background: rgba(255,255,255,.05); pointer-events: none;
}
.apt-card__body { padding: 18px 20px; }
.apt-card__title { margin: 0 0 6px; font-size: 1.15rem; }
.apt-card__meta { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 14px; color: var(--c-muted); font-size: .9rem; }
.apt-card__meta strong { color: var(--c-ink); }

/* ---------- Badge ---------- */
.badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.badge--available { background: #e6f3ec; color: var(--c-success); }
.badge--reserved { background: #fcf2dc; color: #8a6300; }
.badge--sold { background: #f4dada; color: var(--c-danger); }

/* ---------- Tabs ---------- */
.tabs {
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  background: white;
  overflow: hidden;
}
.tabs__nav {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--c-line);
  background: var(--c-bg-alt);
}
.tabs__nav button {
  flex: 1 1 auto;
  padding: 16px 20px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: .95rem;
  color: var(--c-ink-soft);
  border-right: 1px solid var(--c-line);
  border-bottom: 2px solid transparent;
  transition: background-color .2s ease, color .2s ease;
}
.tabs__nav button:last-child { border-right: 0; }
.tabs__nav button[aria-selected="true"] {
  background: white; color: var(--c-primary); border-bottom-color: var(--c-primary);
}
.tabs__panel { display: none; padding: 32px; }
.tabs__panel.is-active { display: block; }

.building-header { display: flex; align-items: baseline; gap: 14px; margin-bottom: 18px; }
.building-header h3 { margin: 0; }

/* ---------- Forms ---------- */
.form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; font-size: .9rem; }
.field span { font-weight: 500; color: var(--c-ink-soft); }
.field input, .field textarea {
  font: inherit; padding: 12px 14px; border: 1px solid var(--c-line);
  border-radius: var(--r-sm); background: white; color: var(--c-ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus {
  outline: 0; border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(31,58,46,.12);
}
.field__err { color: var(--c-danger); font-size: .85rem; }
.hp { position: absolute; left: -10000px; }
.alert { padding: 16px 20px; border-radius: var(--r-md); margin-bottom: 18px; }
.alert--ok { background: #e6f3ec; color: var(--c-success); border: 1px solid #b7d8c4; }

/* ---------- Map ---------- */
.map-frame {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-frame iframe { width: 100%; height: 460px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-primary);
  color: rgba(248,246,241,.85);
  padding: 64px 0 24px;
  margin-top: 60px;
}
.site-footer h3, .site-footer h4 { color: var(--c-primary-ink); }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
@media (max-width: 800px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .site-footer__grid { grid-template-columns: 1fr; } }
.site-footer a { color: rgba(248,246,241,.9); }
.footer-nav { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.site-footer__bottom { margin-top: 48px; padding-top: 18px; border-top: 1px solid rgba(248,246,241,.15); color: rgba(248,246,241,.6); }

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed; right: 22px; bottom: 22px;
  width: 56px; height: 56px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.2);
  z-index: 100;
  transition: transform .2s ease;
}
.whatsapp-fab:hover { transform: scale(1.07); color: white; }

/* ---------- Anchor nav ---------- */
.anchor-nav {
  position: sticky;
  top: var(--header-h);
  background: rgba(248,246,241,.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--c-line);
  z-index: 30;
}
.anchor-nav__inner { display: flex; gap: 28px; padding: 14px 24px; overflow-x: auto; }
.anchor-nav a { color: var(--c-ink-soft); text-decoration: none; font-size: .92rem; font-weight: 500; white-space: nowrap; padding: 6px 0; }
.anchor-nav a:hover { color: var(--c-primary); }

/* ---------- Specs table ---------- */
.specs { width: 100%; border-collapse: collapse; max-width: 720px; }
.specs th, .specs td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--c-line); }
.specs th { width: 36%; color: var(--c-muted); font-weight: 500; }
.specs tr:last-child th, .specs tr:last-child td { border-bottom: 0; }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

/* ---------- Building plan figure ---------- */
.building-plan { margin: 0; }
.building-plan img { background: white; border: 1px solid var(--c-line); border-radius: var(--r-md); padding: 16px; }
.building-plan figcaption { color: var(--c-muted); font-size: .9rem; margin-top: 8px; text-align: center; }

/* ---------- Apartment title row ---------- */
.apt-title-row { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; }
.gallery__item {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--r-sm);
  background: var(--c-bg-alt);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gallery__item:hover img { transform: scale(1.04); }
.gallery__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 6px 10px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.7));
  color: white; font-size: .8rem;
}

/* ---------- 404 ---------- */
.page-404 { text-align: center; padding: 80px 0; }
.page-404 h1 { font-size: 6rem; line-height: 1; margin-bottom: 0; color: var(--c-primary); }

/* ---------- Spaces grid (home) ---------- */
.spaces-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.space-card {
  position: relative;
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}
.space-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform .45s ease;
}
.space-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.78) 100%);
  z-index: -1;
}
.space-card:hover img { transform: scale(1.05); }
.space-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 22px 24px;
  color: var(--c-primary-ink);
}
.space-card figcaption h3 {
  color: var(--c-primary-ink);
  margin: 0 0 6px;
  font-size: 1.3rem;
}
.space-card figcaption p {
  margin: 0;
  font-size: .92rem;
  color: rgba(248,246,241,.85);
  line-height: 1.4;
}

/* ---------- Location banner (home) ---------- */
.location-banner {
  position: relative;
  isolation: isolate;
  color: var(--c-primary-ink);
  padding: 100px 0;
  margin-top: 0;
  overflow: hidden;
}
.location-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  z-index: -2;
  filter: saturate(1.05);
}
.location-banner::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(31,58,46,.85) 0%, rgba(31,58,46,.55) 50%, rgba(31,58,46,.20) 100%);
  z-index: -1;
}
.location-banner__inner { max-width: 720px; }
.location-banner h2 { color: var(--c-primary-ink); margin: 0 0 12px; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.location-banner .eyebrow { color: rgba(248,246,241,.7); margin: 0 0 14px; }
.location-banner .lead { color: rgba(248,246,241,.92); }
.location-banner .cta-row { margin-top: 22px; }
.location-banner .btn--ghost { border-color: rgba(248,246,241,.45); }

/* ---------- Animations ---------- */
@media (prefers-reduced-motion: no-preference) {
  [data-fade-in] { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
  [data-fade-in].is-visible { opacity: 1; transform: none; }
}

/* ---------- Floorplan with markers ---------- */
.floorplan { position: relative; display: inline-block; max-width: 100%; }
.floorplan__img { display: block; width: 100%; height: auto; border-radius: var(--r-md, 8px); }
.floorplan__markers {
  position: absolute; inset: 0;
  list-style: none; margin: 0; padding: 0;
}
.floorplan__marker {
  position: absolute;
  transform: translate(-50%, -50%);
}
.floorplan__pin {
  display: grid; place-items: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--c-primary, #1F3A2E);
  color: var(--c-primary-ink, #f8f6f1);
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,.25), 0 0 0 3px rgba(248,246,241,.85);
  transition: transform .18s ease, box-shadow .18s ease;
  cursor: pointer;
}
.floorplan__pin:hover,
.floorplan__pin:focus-visible {
  transform: scale(1.18);
  box-shadow: 0 6px 18px rgba(0,0,0,.35), 0 0 0 3px var(--c-accent, #d4a574);
  outline: none;
}
.floorplan__legend {
  margin-top: 18px;
  padding: 0; list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px 18px;
  font-size: .95rem;
}
.floorplan__legend li {
  display: flex; align-items: center; gap: 10px;
}
.floorplan__legend-num {
  display: inline-grid; place-items: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--c-primary, #1F3A2E);
  color: var(--c-primary-ink, #f8f6f1);
  font-size: .8rem; font-weight: 600;
  flex: none;
}
.floorplan__caption { margin-top: 12px; }
@media (max-width: 600px) {
  .floorplan__pin { width: 28px; height: 28px; font-size: .85rem; }
}
