@font-face {
  font-family: "Lora";
  src: url("../fonts/lora-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lora";
  src: url("../fonts/lora-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("../fonts/source-sans-pro-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("../fonts/source-sans-pro-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #fbfaf7;
  --panel: #ffffff;
  --ink: #111827;
  --muted: #667085;
  --border: rgba(17, 24, 39, 0.12);
  --shadow: 0 22px 70px rgba(17, 24, 39, 0.10);
  --shadow-sm: 0 10px 30px rgba(17, 24, 39, 0.08);
  --accent: #0f766e;
  --accent-2: #14b8a6;
  --radius: 18px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body.asap-static {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 10% 10%, rgba(20, 184, 166, 0.10), transparent 45%),
    radial-gradient(1100px 600px at 90% 0%, rgba(15, 118, 110, 0.08), transparent 40%),
    var(--bg);
  font-family: "Source Sans Pro", system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.75rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.5rem 0.75rem;
  z-index: 999;
  box-shadow: var(--shadow-sm);
}
.skip-link:focus { left: 0.75rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 247, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header-content {
  max-width: 1160px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-name a {
  font-family: "Lora", ui-serif, Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  font-size: 1.15rem;
}
.header-actions { display: flex; gap: 0.6rem; align-items: center; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.12s ease, box-shadow 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0px); }
.btn.btn-sm { padding: 0.55rem 0.85rem; font-size: 0.95rem; }
.btn.primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 18px 40px rgba(15, 118, 110, 0.22);
}
.btn.ghost {
  color: var(--ink);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.7);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0;
}
.lede { color: var(--muted); margin: 0; }
.hero-meta { margin: 0.75rem 0 0; color: var(--muted); font-weight: 700; }

.hero {
  max-width: 1160px;
  margin: 2.25rem auto 1.75rem;
  padding: 0 1.25rem;
}
.hero-grid {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.84));
  border: 1px solid rgba(17, 24, 39, 0.10);
  border-radius: calc(var(--radius) + 10px);
  box-shadow: var(--shadow);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-grid--solo { grid-template-columns: 1fr; }
.hero-grid::before {
  content: "";
  position: absolute;
  inset: -40% -30% auto auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 30% 30%, rgba(20,184,166,0.35), transparent 60%);
  transform: rotate(18deg);
  pointer-events: none;
}
.hero-copy { position: relative; }
.hero h1 {
  font-family: "Lora", ui-serif, Georgia, serif;
  font-size: clamp(2.2rem, 4.6vw, 3.1rem);
  line-height: 1.08;
  margin: 0.55rem 0 0.75rem;
  letter-spacing: -0.02em;
}
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.2rem; }
.hero-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.12);
  box-shadow: var(--shadow-sm);
  background: #f1f5f9;
}
.hero-media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }

.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 1rem 1.25rem 2.5rem;
}
.section-heading h2 {
  font-family: "Lora", ui-serif, Georgia, serif;
  margin: 0.35rem 0 0.4rem;
  letter-spacing: -0.01em;
  font-size: 1.9rem;
}
.grid { display: grid; gap: 1.05rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(17, 24, 39, 0.10);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: 0 12px 40px rgba(17, 24, 39, 0.06);
  display: grid;
  gap: 0.75rem;
  transition: transform 0.12s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 55px rgba(17, 24, 39, 0.10);
  border-color: rgba(15, 118, 110, 0.22);
}
.card h3 {
  margin: 0;
  font-family: "Lora", ui-serif, Georgia, serif;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}
.card-title {
  margin: 0;
  font-family: "Lora", ui-serif, Georgia, serif;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.card-title a { color: inherit; }
.card p { margin: 0; color: var(--muted); }
.excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.callout {
  border: 1px solid rgba(15, 118, 110, 0.18);
  background: linear-gradient(180deg, rgba(20, 184, 166, 0.08), rgba(255,255,255,0.0));
  border-radius: 18px;
  padding: 1.15rem 1.15rem;
  margin: 1rem 0 1.25rem;
}
.callout h2 { margin-top: 0; }
.guide > h2 { margin-top: 0; }
.bullets { margin: 0.8rem 0 0; padding-left: 1.15rem; }
.bullets li { margin: 0.35rem 0; color: var(--muted); }
.tag-list { list-style: none; padding: 0; margin: 0.8rem 0 1.1rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag-list li { padding: 0.35rem 0.7rem; border-radius: 999px; border: 1px solid rgba(17, 24, 39, 0.10); background: rgba(255,255,255,0.75); color: var(--ink); font-weight: 700; font-size: 0.92rem; }
.faq { margin-top: 0.8rem; display: grid; gap: 0.6rem; }
.faq details { border: 1px solid rgba(17, 24, 39, 0.10); border-radius: 16px; background: rgba(255,255,255,0.86); padding: 0.75rem 0.95rem; box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05); }
.faq summary { cursor: pointer; font-weight: 800; color: var(--ink); }
.faq p { margin: 0.65rem 0 0; color: var(--muted); }
.quick-links { margin: 0.85rem 0 0; color: var(--muted); font-weight: 700; }
.quick-links a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 2px; }
.top-list { margin: 0.75rem 0 1.25rem; padding-left: 1.1rem; }
.top-list li { margin: 0.4rem 0; color: var(--muted); }
.top-list a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 2px; }
.card-thumb {
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.10);
  background: #f3f4f6;
}
.card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-actions { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 0.15rem; }

.meta { color: var(--muted); font-size: 0.98rem; }
.rating { background: rgba(15, 118, 110, 0.10); color: var(--accent); padding: 0.25rem 0.55rem; border-radius: 999px; font-weight: 700; }
.meta-row { display: flex; align-items: center; gap: 0.5rem; }

.breadcrumbs {
  max-width: 1160px;
  margin: 0.85rem auto 0;
  padding: 0 1.25rem;
  color: var(--muted);
  font-size: 0.98rem;
}
.breadcrumbs a { color: inherit; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }

.page-content {
  max-width: 980px;
  margin: 0 auto;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(17, 24, 39, 0.10);
  border-radius: calc(var(--radius) + 6px);
  padding: 1.6rem;
  box-shadow: 0 12px 50px rgba(17, 24, 39, 0.08);
}
.page-content h2,
.page-content h3,
.page-content h4 {
  font-family: "Lora", ui-serif, Georgia, serif;
  letter-spacing: -0.01em;
  margin-top: 1.4rem;
}
.city-page h2 { text-align: center; }
.page-content a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.page-content p { margin: 0.9rem 0; }
.page-content ol,
.page-content ul { padding-left: 1.25rem; }
.has-text-align-center { text-align: center; }
.has-text-align-right { text-align: right; }
.has-text-align-left { text-align: left; }
.info-panel {
  border: 1px solid rgba(15, 118, 110, 0.22);
  background: rgba(20, 184, 166, 0.08);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
}
.ad-slot {
  max-width: 1140px;
  margin: 0 auto 1.5rem;
  display: block;
}
.map-card {
  max-width: 1100px;
  margin: 0 auto 1.5rem;
  border-radius: 22px;
  border: 1px solid rgba(17, 24, 39, 0.10);
  background: linear-gradient(145deg, rgba(20, 184, 166, 0.06), rgba(255,255,255,0.9));
  box-shadow: 0 22px 60px rgba(17, 24, 39, 0.12);
  padding: 1.5rem;
}
.map-card-header { text-align: center; margin-bottom: 1rem; }
.map-card .map-embed {
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.10);
  background: #f3f4f6;
  box-shadow: 0 14px 40px rgba(17, 24, 39, 0.07);
}
.map-card .map-embed iframe { width: 100%; height: 100%; display: block; border: 0; }
.map-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; justify-content: space-between; margin-top: 0.75rem; }
.summary-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(17, 24, 39, 0.10);
  border-radius: 22px;
  box-shadow: 0 18px 60px rgba(17, 24, 39, 0.10);
  padding: 1.6rem;
  margin-top: 1.2rem;
}
.summary-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr;
  align-items: start;
}
.summary-box {
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 16px;
  background: rgba(20, 184, 166, 0.06);
  padding: 1rem 1.1rem;
}
.summary-links { margin-top: 1.1rem; display: flex; gap: 0.65rem; flex-wrap: wrap; }
@media (min-width: 860px) {
  .summary-grid { grid-template-columns: 1.2fr 0.9fr; }
}
.motel-detail .motel-facts {
  border: 1px solid rgba(15, 118, 110, 0.18);
  background: linear-gradient(180deg, rgba(20, 184, 166, 0.10), rgba(255,255,255,0.0));
  border-radius: 20px;
  padding: 1.15rem;
  margin-bottom: 1.25rem;
}
.motel-detail .facts-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  align-items: start;
}
.motel-detail .facts {
  margin: 0;
  display: grid;
  gap: 0.85rem;
}
.motel-detail .fact { display: grid; gap: 0.25rem; }
.motel-detail .fact dt {
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.motel-detail .fact dd { margin: 0; color: var(--ink); font-weight: 700; }
.motel-detail .fact dd a { color: inherit; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 2px; }
.motel-detail .facts-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }

.motel-detail .wp-block-stackable-map {
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.10);
  background: #f3f4f6;
  box-shadow: 0 14px 40px rgba(17, 24, 39, 0.07);
  margin: 0.85rem 0 0.35rem;
}
.motel-detail .wp-block-stackable-map iframe { width: 100%; height: 100%; display: block; }
.motel-detail .map-embed {
  height: 360px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.10);
  background: #f3f4f6;
  box-shadow: 0 14px 40px rgba(17, 24, 39, 0.07);
  margin: 0.85rem 0 0.35rem;
}
.motel-detail .map-embed iframe { width: 100%; height: 100%; display: block; border: 0; }
.motel-detail .motel-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.75rem; }
.motel-detail .motel-actions .btn { width: auto; }

.more-motels {
  margin: 0 auto;
  max-width: 980px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(17, 24, 39, 0.10);
  border-radius: calc(var(--radius) + 6px);
  padding: 1.1rem 1.2rem;
  box-shadow: 0 12px 50px rgba(17, 24, 39, 0.08);
}
.more-motels summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--ink);
}
.motel-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.55rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.motel-list li {
  border: 1px solid rgba(17, 24, 39, 0.10);
  border-radius: 16px;
  padding: 0.7rem 0.85rem;
  background: rgba(255,255,255,0.86);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
}
.motel-list a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 2px; font-weight: 800; }

@media (min-width: 860px) {
  .motel-detail .facts-grid { grid-template-columns: 1fr auto; }
  .motel-detail .facts-actions { justify-content: flex-end; }
}

.site-footer {
  margin-top: 2.5rem;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.55);
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 2.2rem 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}
.footer-links { list-style: none; padding: 0; margin: 0.65rem 0 0; display: grid; gap: 0.4rem; }
.footer-links a { color: var(--ink); opacity: 0.85; }
.footer-links a:hover { opacity: 1; }

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .hero-actions .btn { width: 100%; }
  .header-actions { gap: 0.5rem; }
  .header-actions .btn { width: auto; }
}