/* =========================================================
   MERIDIAN ESTATES — design system
   Palette: ink navy / warm stone / brass / clay
   Display: Fraunces · Body: Inter · Utility: IBM Plex Mono
   Signature: "ledger mark" — surveyor's-plat corner ticks
   ========================================================= */

:root {
  --ink:        #10202B;
  --ink-soft:   #1B3040;
  --stone:      #EFEAE0;
  --stone-deep: #E4DDCC;
  --paper:      #FBF9F5;
  --brass:      #B08D3E;
  --brass-soft: #D9C08C;
  --clay:       #8C4A34;
  --charcoal:   #232823;
  --line:       #D8D0C0;
  --line-dark:  rgba(239,234,224,0.18);
  --white:      #FFFFFF;
  --success:    #3F6B4A;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --max-width: 1280px;
  --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.5em;
  color: var(--ink);
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; }
:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--brass);
}

/* ---------- Ledger mark (signature element) ---------- */
.ledger {
  position: relative;
  border: 1px solid var(--line);
  padding: 28px;
}
.ledger::before, .ledger::after,
.ledger .lc-br, .ledger .lc-bl {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid var(--brass);
}
.ledger::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.ledger::after { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.ledger .lc-bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.ledger .lc-br { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.ledger-dark { border-color: var(--line-dark); background: var(--ink-soft); color: var(--stone); }
.ledger-dark h3, .ledger-dark h4 { color: var(--stone); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--stone); border-color: var(--ink); }
.btn-primary:hover { background: var(--brass); border-color: var(--brass); color: var(--ink); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--stone); }
.btn-brass { background: var(--brass); color: var(--ink); border-color: var(--brass); }
.btn-brass:hover { background: var(--ink); color: var(--brass); border-color: var(--ink); }
.btn-ghost-light { background: transparent; color: var(--stone); border-color: rgba(239,234,224,0.4); }
.btn-ghost-light:hover { background: var(--stone); color: var(--ink); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 12px; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,249,245,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.brand .brand-mark { color: var(--brass); font-size: 26px; line-height: 0; }
.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--brass);
  transition: width 0.25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--clay); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-toggle { display: none; background: none; border: none; }
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-phone { display: none; }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 20px 32px 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 500;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--ink);
  color: var(--stone);
  overflow: hidden;
}
.hero-blueprint {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(var(--brass-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--brass-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media video, .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,32,43,0.75) 0%, rgba(16,32,43,0.88) 60%, var(--ink) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 140px 32px 100px;
  width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 60px;
  align-items: end;
}
.hero h1 {
  color: var(--stone);
  font-size: clamp(40px, 6vw, 76px);
  margin-bottom: 24px;
}
.hero h1 em { color: var(--brass-soft); font-style: italic; }
.hero-sub {
  font-size: 17px;
  color: rgba(239,234,224,0.78);
  max-width: 480px;
  margin-bottom: 34px;
}
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.hero-stat {
  background: var(--ink);
  padding: 20px 16px;
  text-align: center;
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--brass-soft);
}
.hero-stat .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(239,234,224,0.6);
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-inner { padding: 120px 20px 70px; }
}

/* ---------- Search bar (home hero + listings) ---------- */
.search-bar {
  position: relative;
  z-index: 3;
  background: var(--paper);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr auto;
  gap: 0;
  margin-top: -46px;
  box-shadow: 0 24px 60px rgba(16,32,43,0.25);
}
.search-field {
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}
.search-field:last-of-type { border-right: none; }
.search-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 6px;
}
.search-field select, .search-field input {
  width: 100%;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  padding: 0;
}
.search-field select:focus, .search-field input:focus { outline: none; }
.search-submit {
  background: var(--brass);
  border: none;
  color: var(--ink);
  padding: 0 32px;
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.search-submit:hover { background: var(--ink); color: var(--brass); }
@media (max-width: 960px) {
  .search-bar { grid-template-columns: 1fr 1fr; }
  .search-field { border-bottom: 1px solid var(--line); border-right: none; }
  .search-submit { grid-column: 1 / -1; padding: 16px; }
}

/* ---------- Sections ---------- */
section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-dark { background: var(--ink); color: var(--stone); }
.section-dark h2 { color: var(--stone); }
.section-stone { background: var(--stone); }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(28px, 4vw, 42px); max-width: 620px; }
.section-head p { max-width: 420px; color: #5b6259; margin: 0; }
.section-dark .section-head p { color: rgba(239,234,224,0.7); }

/* ---------- Property cards ---------- */
.prop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 1000px) { .prop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .prop-grid { grid-template-columns: 1fr; } }

.prop-card {
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.prop-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(16,32,43,0.12); }
.prop-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.prop-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.prop-card:hover .prop-media img { transform: scale(1.06); }
.prop-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--ink); color: var(--stone);
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 12px;
}
.prop-tag.rent { background: var(--clay); }
.prop-price-tag {
  position: absolute; bottom: 14px; left: 14px;
  background: var(--brass); color: var(--ink);
  font-family: var(--font-mono); font-weight: 600; font-size: 14px;
  padding: 6px 14px;
}
.prop-body { padding: 22px; }
.prop-body h3 { font-size: 19px; margin-bottom: 6px; }
.prop-loc {
  font-size: 13px; color: #6b7268;
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 16px;
}
.prop-specs {
  display: flex; gap: 18px;
  font-family: var(--font-mono); font-size: 12px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.prop-specs span { display: flex; align-items: center; gap: 5px; }

/* ---------- Feature / value grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.feature-item {
  background: var(--paper);
  padding: 36px 28px;
}
.feature-item .fnum {
  font-family: var(--font-mono);
  font-size: 12px; color: var(--brass);
  margin-bottom: 18px;
}
.feature-item h4 { font-size: 18px; margin-bottom: 10px; }
.feature-item p { font-size: 14px; color: #5b6259; margin: 0; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }

/* ---------- Agents ---------- */
.agent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 960px) { .agent-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .agent-grid { grid-template-columns: 1fr; } }
.agent-card { text-align: left; }
.agent-photo { aspect-ratio: 3/4; overflow: hidden; margin-bottom: 16px; position: relative; }
.agent-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); }
.agent-card h4 { font-size: 17px; margin-bottom: 2px; }
.agent-role { font-family: var(--font-mono); font-size: 11px; color: var(--brass); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; }
.agent-meta { font-size: 13px; color: #5b6259; }

/* ---------- Testimonials ---------- */
.testi-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 960px) { .testi-track { grid-template-columns: 1fr; } }
.testi-card { padding: 32px; background: var(--ink-soft); border: 1px solid var(--line-dark); }
.testi-quote { font-family: var(--font-display); font-size: 19px; font-style: italic; color: var(--stone); margin-bottom: 20px; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-person img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testi-person .tn { font-weight: 600; font-size: 14px; color: var(--stone); }
.testi-person .tr { font-size: 12px; color: rgba(239,234,224,0.6); }
.testi-stars { color: var(--brass); font-size: 13px; margin-bottom: 12px; letter-spacing: 2px; }

/* ---------- Process steps (real sequence — numbering justified) ---------- */
.process-list { display: flex; flex-direction: column; }
.process-step {
  display: grid;
  grid-template-columns: 90px 1fr 1fr;
  gap: 30px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.process-step:last-child { border-bottom: 1px solid var(--line); }
.process-step .pnum { font-family: var(--font-mono); font-size: 30px; color: var(--brass-soft); }
.process-step h4 { font-size: 20px; margin-bottom: 8px; }
.process-step p { color: #5b6259; margin: 0; }
@media (max-width: 760px) { .process-step { grid-template-columns: 50px 1fr; } .process-step .pcol3 { grid-column: 2/3; } }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--brass);
  color: var(--ink);
  padding: 72px 0;
  text-align: center;
}
.cta-band h2 { color: var(--ink); }
.cta-band .btn-primary { background: var(--ink); color: var(--stone); border-color: var(--ink); }
.cta-band .btn-primary:hover { background: var(--paper); color: var(--ink); }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-field label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink); }
.form-field input, .form-field select, .form-field textarea {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--charcoal);
  border-radius: var(--radius);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--brass);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 12px; color: #6b7268; margin-top: -10px; margin-bottom: 20px; }
.alert { padding: 16px 20px; border-left: 3px solid var(--success); background: rgba(63,107,74,0.08); font-size: 14px; margin-bottom: 24px; }
.alert-error { border-color: #9C3B2E; background: rgba(156,59,46,0.08); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(239,234,224,0.75); padding: 80px 0 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line-dark);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { font-family: var(--font-display); font-size: 24px; color: var(--stone); margin-bottom: 14px; }
.footer-col h5 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brass-soft); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; font-size: 14px; }
.footer-col ul li a:hover { color: var(--brass-soft); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: 12px; flex-wrap: wrap; gap: 12px; }
.social-row { display: flex; gap: 14px; }
.social-row a { width: 34px; height: 34px; border: 1px solid var(--line-dark); display: flex; align-items: center; justify-content: center; font-size: 13px; }
.social-row a:hover { background: var(--brass); color: var(--ink); border-color: var(--brass); }
.newsletter-form { display: flex; gap: 0; margin-top: 8px; border: 1px solid var(--line-dark); }
.newsletter-form input { flex: 1; background: transparent; border: none; padding: 12px 14px; color: var(--stone); font-size: 13px; }
.newsletter-form input::placeholder { color: rgba(239,234,224,0.5); }
.newsletter-form button { background: var(--brass); color: var(--ink); border: none; padding: 0 18px; font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: var(--ink);
  color: var(--stone);
  padding: 150px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero .hero-blueprint { opacity: 0.12; }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { font-family: var(--font-mono); font-size: 12px; color: rgba(239,234,224,0.6); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--brass-soft); }
.page-hero h1 { color: var(--stone); font-size: clamp(34px, 5vw, 54px); max-width: 700px; }
.page-hero p { color: rgba(239,234,224,0.75); max-width: 560px; font-size: 16px; }

/* ---------- Utility ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; gap: 36px; } }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-pill {
  font-family: var(--font-mono); font-size: 12px;
  border: 1px solid var(--line); padding: 8px 14px;
  color: var(--ink);
}
.divider { height: 1px; background: var(--line); margin: 60px 0; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
table.data-table { width: 100%; border-collapse: collapse; }
table.data-table th, table.data-table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: 14px; }
table.data-table th { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--brass); }

/* ---------- Pagination ---------- */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 50px; }
.pagination a, .pagination span {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); font-family: var(--font-mono); font-size: 13px;
}
.pagination a:hover { background: var(--ink); color: var(--stone); border-color: var(--ink); }
.pagination .current { background: var(--brass); color: var(--ink); border-color: var(--brass); }

/* ---------- Sidebar filters (properties page) ---------- */
.listing-layout { display: grid; grid-template-columns: 280px 1fr; gap: 40px; }
@media (max-width: 900px) { .listing-layout { grid-template-columns: 1fr; } }
.filter-box { border: 1px solid var(--line); padding: 26px; margin-bottom: 24px; }
.filter-box h5 { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--brass); margin-bottom: 16px; }
.check-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 14px; }
.results-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
.results-bar select { border: 1px solid var(--line); padding: 10px 12px; font-family: var(--font-body); font-size: 13px; background: var(--paper); }

/* ---------- WhatsApp float ---------- */
.float-whatsapp {
  position: fixed; bottom: 26px; right: 26px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.float-whatsapp:hover { transform: scale(1.06); }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 960px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { border: 1px solid var(--line); background: var(--paper); }
.blog-media { aspect-ratio: 16/10; overflow: hidden; }
.blog-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 20px; }
.blog-cat { font-family: var(--font-mono); font-size: 11px; color: var(--brass); text-transform: uppercase; margin-bottom: 10px; }
.blog-body h3 { font-size: 18px; margin-bottom: 10px; }
.blog-meta { font-size: 12px; color: #6b7268; }

/* ---------- FAQ accordion ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 22px 0; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display); font-size: 18px; color: var(--ink);
}
.faq-q .plus { font-family: var(--font-mono); font-size: 20px; color: var(--brass); transition: transform 0.25s ease; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding-bottom: 22px; color: #5b6259; margin: 0; }

/* ---------- Map embed frame ---------- */
.map-frame { border: 1px solid var(--line); width: 100%; height: 380px; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }
