/* ===== Base ===== */
:root{
  --ink: #0c0c0c;
  --muted: #666;
  --rule: #d9d9d9;
  --accent-red: #C14E42;
}

* { box-sizing: border-box; }
html, body { margin:0; padding:0; }
body { font-family: Arial, Helvetica, sans-serif; color: var(--ink); background:#fff; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

/* ===== Info grid ===== */
.info-grid { border-top: 1px solid #cfcfcf; }

.row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 12rem;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}

/* Left column */
.row-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .65rem;
}

/* Label row: arrow is pinned to the right edge like a tab stop */
.label {
  margin: 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 0.95rem;

  display: flex;
  align-items: center;
  justify-content: space-between;  /* text on left, arrow on right */
  width: 100%;
}

/* Arrow (circular with chevron) */
.label .arrow{
  flex-shrink: 0;
  margin-left: 1rem;
  width: 24px;
  height: 24px;
  position: relative;
}
.label .arrow::before{
  content:"";
  position:absolute;
  inset: 0;
  margin:auto;
  width: 6px;
  height: 6px;
  border-right: 2px solid #000;
  border-top: 2px solid #000;
  transform: rotate(45deg);
}

/* Stack under the label when needed (used in Directions row) */
.row-left-content{
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

/* Right column */
.row-right { }

/* Bullet list with red dot */
.bullet{ list-style:none; margin:.2rem 0 0; padding:0; }
.bullet li{
  padding-left: 22px;
  position: relative;
  margin: .25rem 0;
  font-size: .95rem;
}
.bullet li::before{
  content:"";
  width:15px; height:15px; border-radius:50%;
  background: var(--accent-red);
  position:absolute; left:0; top:.25rem;
}

/* Single paragraph with red dot */
.dotline{
  margin: .2rem 0 0;
  line-height: 1.55;
  padding-left: 22px;
  position: relative;
  font-size: .95rem;
}
.dotline::before{
  content:"";
  width:15px; height:15px; border-radius:50%;
  background: var(--accent-red);
  position:absolute; left:0; top:0.25rem;
}

/* Address + 'Get directions' */
.addr{
  font-style: normal;
  color: var(--ink);
  margin: 0;
  font-size: .95rem;
}
.get-directions{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  text-decoration:none;
  color:#000;
  font-weight:700;
  font-size:.9rem;
  padding-bottom: 2px;
}
.tiny-dot{
  width: 15px; height: 15px;
  background: var(--accent-red);
  border-radius: 50%;
  display: inline-block;
}

/* Directions map image (right column) */
.map-img{
  display: block;
  max-width: 100%;
  height: auto;
}

/* ===== Full-bleed helper (edge-to-edge sections) ===== */
.full-bleed{
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* ===== Floor plans single image ===== */
.floor-block{
  padding: 28px 0 36px;
}
.floor-figure{ margin: 0; }
.floor-figure img{
  display: block;
  width: 100%;
  height: auto;           /* show full image, keep proportions */
  max-width: 100%;
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .row{ grid-template-columns: 220px 1fr; }
}
@media (max-width: 640px){
  .container{ padding: 0 1.25rem; }
  .row{ grid-template-columns: 1fr; gap: .75rem; }
  .row-left{ align-items: stretch; }
  .label{ width: 100%; }
}

.dotline a {
  color: var(--ink);          /* same as text color */
  font-weight: 700;           /* bold */
  text-decoration: none;      /* remove underline */
}

.dotline a:hover {
  text-decoration: underline; /* optional: show underline only on hover */
  color: var(--accent-red);   /* optional: change to red on hover */
}