/* Area Guide — extends guide-single base styles */

.area-hero-map { padding: 0 0 20px; }
.area-inline-map { margin: 24px 0 32px; }
#area-map {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 300px;
  border-radius: 6px;
  box-shadow: 0 2px 16px rgba(3,26,97,0.08);
}

.area-pin { background: none; border: none; }

.area-nearby-label {
  background: none;
  border: none;
  white-space: nowrap;
}

.area-nearby-label span {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brown);
  text-shadow: 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff;
}

@media (max-width: 640px) {
  #area-map { height: 220px; }
  .area-nearby-label span { font-size: 9px; }
}

/* Practical data — clean rows */
.practical-grid-area {
  margin: 0 0 28px;
  padding: 0;
  background: rgba(221,210,199,0.12);
  border-radius: 6px;
  border-left: 3px solid rgba(3,26,97,0.1);
}

.practical-row {
  display: flex;
  gap: 16px;
  padding: 12px 24px;
  border-bottom: 1px solid rgba(3,26,97,0.04);
  font-size: 15px;
  line-height: 1.5;
}

.practical-row:last-child { border-bottom: none; }

.practical-row strong {
  flex-shrink: 0;
  width: 130px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
  padding-top: 1px;
}

.practical-row span {
  color: var(--text);
}

/* Property cards inside guide content */
.area-prop-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 12px;
}

.area-prop-card {
  display: block;
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s;
  text-decoration: none;
}

.area-prop-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  text-decoration: none;
}

.area-prop-card__img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
}

.area-prop-card__body { padding: 14px 16px; }

.area-prop-card__price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  margin: 0 0 3px;
}

.area-prop-card__type {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brown);
  margin: 0 0 8px;
}

.area-prop-card__stats {
  display: flex;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-light);
}

@media (max-width: 640px) {
  .area-prop-cards { grid-template-columns: 1fr; }
  .practical-row { flex-direction: column; gap: 2px; }
  .practical-row strong { width: auto; }
}

/* Life & Leisure */
.ll-category { margin-bottom: 28px; }
.ll-category:last-child { margin-bottom: 0; }

.ll-category-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brown);
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(3,26,97,0.06);
}

.ll-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
}

.ll-item {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  border-bottom: 1px solid rgba(3,26,97,0.04);
}

.ll-name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  color: var(--navy);
}

.ll-desc {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-light);
  margin-top: 1px;
}

@media (max-width: 640px) {
  .ll-items { grid-template-columns: 1fr; }
}

/* Hero tagline */
.guide-hero-tagline {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.38em;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: none;
  color: var(--sand);
  margin-top: 4px;
}

/* FAQ accordion */
.area-faq { margin-bottom: 28px; }

.faq-item {
  border-bottom: 1px solid rgba(3,26,97,0.06);
}

.faq-question {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  float: right;
  font-size: 18px;
  font-weight: 300;
  color: var(--brown);
  transition: transform 0.2s;
}

.faq-item[open] .faq-question::after {
  content: '\2212';
}

.faq-answer {
  padding: 0 0 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
}

.faq-answer p { margin: 0; }

/* Hero photo below navy title */
.area-hero-photo {
  width: 100%;
  max-height: 520px;
  overflow: hidden;
}
.area-hero-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 768px) {
  .area-hero-photo, .area-hero-photo img { max-height: 260px; height: 260px; }
}

/* Subzone hero with background photo */
.guide-hero[style*="background-image"] {
  padding: 220px 0 120px;
  background-color: var(--navy);
}
.guide-hero[style*="background-image"] h1 {
  padding-top: 60px;
}
@media (max-width: 768px) {
  .guide-hero[style*="background-image"] { padding: 160px 0 32px; }
}
