@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600&display=swap");

:root {
  --bg-page: #e8f7f9;
  --bg-card: #ffffff;
  --bg-muted: #eefafc;
  --text-main: #082026;
  --text-muted: #476870;
  --text-soft: #6d8c93;
  --accent: #1fa3b1;
  --accent-light: #7ee3ef;
  --accent-dark: #0d5f6c;
  --border: #c9e8ee;
  --shadow-soft: 0 20px 40px rgba(13, 95, 108, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(180deg, rgba(31, 163, 177, 0.18), rgba(232, 247, 249, 0.8)), url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=80") center/cover fixed;
  color: var(--text-main);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(215, 222, 238, 0.7);
  margin-bottom: 2rem;
  position: static;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-soft);
  border-bottom: 1px solid rgba(215, 222, 238, 0.6);
  padding-bottom: 0.5rem;
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.top-links {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.top-links a {
  color: var(--accent-dark);
  font-weight: 600;
}

.brand-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: inherit;
}

.logo-mark {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background-color: #0faeb3;
  background-image: url("/img/wave.svg");
  background-size: 60% 60%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  color: transparent;
  display: block;
  box-shadow: 0 12px 30px rgba(29, 78, 216, 0.35);
}

.logo-title {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
}

.logo-subtitle {
  display: block;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.header-chip {
  background: var(--bg-muted);
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
  color: var(--text-soft);
}
.primary-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.25rem;
  margin: 0.5rem 0 0.35rem;
  transition: max-height 0.2s ease;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.primary-nav a {
  flex: 0 0 auto;
  min-width: 0;
  padding: 0.25rem 0.48rem;
  border-radius: 999px;
  background: rgba(147, 197, 253, 0.35);
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.82rem;
  text-align: center;
  white-space: nowrap;
}
.primary-nav a[href*="contact"] {
  display: none;
}

.primary-nav a.active {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 20px rgba(17, 45, 112, 0.25);
}

.primary-nav a:hover {
  background: rgba(147, 197, 253, 0.6);
}

.header-actions {
  display: flex;
  gap: 0.15rem;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
}
.header-actions .btn.ghost[href*="sponsor"] {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: transparent;
  border: 1px solid rgba(147, 197, 253, 0.8);
  border-radius: var(--radius-sm);
  padding: 0.35rem;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--accent-dark);
  display: block;
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0.3;
}

.btn,
.link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(17, 45, 112, 0.25);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.9);
}

.link.ghost {
  color: var(--text-soft);
}
.header-actions .link.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 10px 24px rgba(17, 45, 112, 0.25);
  text-decoration: none;
}
.header-actions .link.ghost:hover {
  text-decoration: none;
  background: var(--accent-dark);
}

.site-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--text-soft);
}

.city-hero {
  background: linear-gradient(135deg, rgba(9, 115, 128, 0.88), rgba(31, 163, 177, 0.82)), url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: #fff;
  overflow: hidden;
}

.city-hero .hero-copy {
  background: rgba(15, 30, 58, 0.55);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.city-hero .hero-text,
.city-hero .hero-stats,
.city-hero .hero-tags p,
.city-hero .hero-tags a {
  color: #e5edff;
}

.city-hero .link-inline {
  color: #ffd166;
  text-decoration-color: rgba(255, 209, 102, 0.9);
}

.city-hero .link-inline:hover {
  color: #fbbf24;
  text-decoration-color: #fbbf24;
}

.city-hero .highlight-card {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 12px 28px rgba(0, 24, 72, 0.2);
}

.city-hero .highlight-card h3 {
  color: var(--accent);
}

.city-hero .highlight-card ul,
.city-hero .highlight-card p {
  color: var(--text-main);
}

.guide-hero {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.guide-hero h1 {
  margin: 0.5rem 0 0.6rem;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.guide-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}
.guide-tip {
  margin: 0.4rem 0 0;
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.guide-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.guide-card h3 {
  margin: 0 0 0.4rem;
}

.guide-card ul {
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
}
.guide-card ul li a {
  font-weight: 600;
}

.faq-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-soft);
}

.faq-card h3 {
  margin: 0 0 0.4rem;
}

.faq-card p {
  margin: 0.3rem 0 0;
  color: var(--text-muted);
}

.contact-hero {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}

.contact-hero h1 {
  margin: 0.4rem 0 0.6rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.contact-card h3 {
  margin: 0 0 0.3rem;
}

.contact-card p {
  margin: 0.2rem 0 0;
  color: var(--text-muted);
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
}

.contact-form form {
  display: grid;
  gap: 0.9rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--text-main);
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.7rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font: inherit;
  background: var(--bg-muted);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form small {
  color: var(--text-soft);
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8, 32, 38, 0.92);
  color: #e5f6f8;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  max-width: 520px;
  width: calc(100% - 2rem);
  z-index: 50;
  font-size: 0.95rem;
}

.cookie-banner a {
  color: #7ee3ef;
  font-weight: 600;
}

.cookie-banner button {
  background: #fbbf24;
  color: #0b1d1d;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.cookie-banner.hidden {
  display: none;
}
.toast {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8, 32, 38, 0.95);
  color: #fff;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  font-weight: 700;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.toast.hide {
  opacity: 0;
}
.badge {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(29, 78, 216, 0.1);
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.8rem;
  margin-right: 0.3rem;
}

.today-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.today-card {
  background: #fff;
  border: 1px solid rgba(215, 222, 238, 0.9);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-soft);
}

.today-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.today-card .today-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin: 0.2rem 0;
}

.today-meta {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.mini-itineraries .card-grid,
.local-picks .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.itinerary-card,
.pick-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.itinerary-card h3,
.pick-card h3 {
  margin: 0 0 0.4rem;
}

.itinerary-card ul,
.pick-card ul {
  margin: 0.5rem 0 0.8rem;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.itinerary-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-weight: 600;
}

.utility-band {
  background: linear-gradient(135deg, #0d5f6c, #1fa3b1);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  align-items: center;
}

.utility-band h3 {
  margin: 0 0 0.4rem;
}

.utility-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.utility-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.utility-actions .btn.primary {
  background: #fbbf24;
  color: #0b1d1d;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.utility-actions .btn.ghost {
  border-color: rgba(255, 255, 255, 0.9);
  color: #fff;
}

.city-hero .hero-search {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-copy h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin: 0.5rem 0 1rem;
  font-family: "Playfair Display", serif;
}

.hero-text {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-search {
  background: var(--bg-muted);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.8rem;
  border: 1px solid var(--border);
}

.hero-search label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.hero-search input {
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.8rem;
  font-size: 0.95rem;
  background: #fff;
}

.hero-search input:focus {
  outline: 2px solid var(--accent-light);
}

.hero-search button {
  border: none;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-tags {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.hero-tags ul {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.hero-tags li a {
  display: inline-flex;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(147, 197, 253, 0.4);
  font-size: 0.85rem;
  color: var(--accent-dark);
}

.hero-stats {
  list-style: none;
  display: flex;
  gap: 1.3rem;
  flex-wrap: wrap;
  margin: 1.2rem 0 0;
  padding: 0;
}

.hero-stats span {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.highlight-card {
  background: var(--bg-muted);
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid var(--border);
}

.highlight-card ul {
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.quick-links article {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.6rem;
  align-items: center;
}

.quick-actions .link-inline {
  font-weight: 700;
  color: #0a3140;
  text-decoration: underline;
}
.quick-actions .btn,
.quick-actions .link-inline {
  color: #0a3140;
  border-color: #0fa3b1;
}
.quick-actions .btn {
  background: #0fa3b1;
  color: #fff;
  border: 1px solid #0fa3b1;
}
.quick-actions .btn.ghost {
  background: #ffffff;
  border: 1px solid #0fa3b1;
  color: #0a3140;
}

.dir-search-box {
  background: #eef7fb;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 480px;
}
.dir-search-box select {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  min-width: 0;
  flex: 1 1 auto;
}
.dir-search-box button {
  padding: 10px 18px;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}
.dir-search-box a.btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: #0a3140;
  background: #fff;
}

.quick-actions a.btn,
.quick-actions a.link-inline {
  color: #0a3140;
}

.section {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.7rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.link-inline {
  font-weight: 600;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.category-card {
  display: block;
  padding: 1.3rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-muted);
  color: inherit;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.category-card h2 {
  margin: 0.4rem 0;
  font-size: 1.1rem;
}

.category-card p {
  margin: 0;
  color: var(--text-muted);
}

.is-dim {
  opacity: 0.25;
  pointer-events: none;
}

.category-count {
  font-weight: 600;
  color: var(--accent);
  margin-top: 0.5rem;
}

.city-panels {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 1rem;
}

.panel {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg-muted);
  padding: 1.5rem;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.city-media {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 1rem;
}

.media-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.media-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.neighborhood-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
}

.neighborhood-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.9rem;
  background: var(--bg-muted);
}

.neighborhood-card h3 {
  margin: 0 0 0.3rem;
}

.neighborhood-tip {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin: 0.3rem 0 0;
}


.spotlight-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.spotlight-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.spotlight-card p {
  margin: 0;
  color: var(--text-muted);
}

.spotlight-meta {
  font-size: 0.85rem;
  color: var(--text-soft);
}

.panel-aside {
  background: var(--bg-card);
}

.events-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.events-list li {
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.6rem;
}

.group-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.group-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #f9fcff 0%, #f3f8fb 100%);
  padding: 1.1rem;
  box-shadow: 0 8px 24px rgba(15, 91, 112, 0.06);
}

.group-card-header {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  align-items: center;
}

.group-card-header .group-icon {
  background: #e6f3f9;
  color: #0c7a8f;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}

.group-card-header .eyebrow {
  margin-bottom: 0.15rem;
}

.group-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  font-size: 0.97rem;
  gap: 0.2rem;
}

.group-list li {
  display: block;
  padding: 0.5rem 0.35rem;
  border-radius: 10px;
  transition: background 0.15s ease, color 0.15s ease;
}

.group-list li:hover {
  background: #eaf5fa;
}

.group-list a {
  color: var(--text);
  font-weight: 600;
}

.group-list a:hover {
  color: #0c7a8f;
}

.group-list span {
  display: none;
}

.map-section .map-shell {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.directory-hero,
.category-hero {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.4rem;
  box-shadow: var(--shadow-soft);
}

.directory-hero .hero-search {
  flex: 1 1 320px;
}

.directory-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.1rem;
}

.directory-group {
  background: linear-gradient(180deg, #f9fcff 0%, #f3f8fb 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: 0 8px 24px rgba(15, 91, 112, 0.06);
}

.directory-group-head {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.directory-group-head .group-icon {
  background: #e6f3f9;
  color: #0c7a8f;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}

.directory-group-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.35rem;
}

.directory-group-list li {
  padding: 0.45rem 0.35rem;
  border-radius: 10px;
  transition: background 0.15s ease, color 0.15s ease;
}

.directory-group-list li:hover {
  background: #eaf5fa;
}

.directory-group-list a {
  color: var(--text);
  font-weight: 600;
}

.directory-group-list a:hover {
  color: #0c7a8f;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-soft);
}

.category-stat {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-end;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.8rem 1rem;
  box-shadow: var(--shadow-soft);
}

.category-stat span {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}

.category-stat .btn {
  padding: 8px 14px;
  border-radius: 10px;
  white-space: nowrap;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}

.category-stat .link-inline {
  font-weight: 700;
  color: var(--accent);
}

.business-section {
  margin-top: 1.5rem;
}

.related-links {
  margin-top: 1.2rem;
}

.related-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip {
  display: inline-block;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: #0a3140;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
}

.category-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.category-actions.simple {
  margin: 0.5rem 0 1rem;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  justify-content: flex-start;
  gap: 0.8rem;
}

.category-actions.simple .btn {
  padding: 10px 16px;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}

.category-actions .link-inline {
  font-weight: 700;
  color: var(--accent);
}

.action-spacer {
  flex: 1 1 auto;
}

.business-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.business-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: var(--bg-muted);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.business-card h2 {
  margin: 0;
  font-size: 1.05rem;
}

.business-meta,
.business-desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.business-links {
  font-size: 0.85rem;
}

.empty-state {
  color: var(--text-muted);
}

.site-footer {
  margin-top: 3rem;
  text-align: center;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  text-align: left;
  margin-bottom: 1rem;
}

.footer-heading,
.footer-title {
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.footer-grid a {
  display: block;
  color: var(--text-soft);
  margin-bottom: 0.2rem;
}

.footer-note {
  margin-top: 1rem;
}

@media (max-width: 720px) {
  .site-header {
    padding: 1rem;
  }

  .header-actions {
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
  }

  .primary-nav.nav-open {
    max-height: 360px;
  }

  .hero-copy h1 {
    font-size: 1.8rem;
  }

  .city-panels {
    grid-template-columns: 1fr;
  }
}
.city-map-hero {
  background: #06224f;
  color: #fff;
}

.city-map-hero .hero-copy {
  max-width: 640px;
}

.resources-hero {
  background: linear-gradient(135deg, #0e1c44, #2563eb);
  color: #fff;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.resource-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  background: var(--bg-muted);
}

.resource-card ul {
  list-style: disc;
  padding-left: 1.1rem;
  margin: 0.6rem 0 0;
  color: var(--text-muted);
}

.widget-card {
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: #f7fbfd;
  color: var(--text-main);
}

.widget-card pre {
  background: #0b1f3b;
  color: #e6f7ff;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  overflow-x: auto;
  font-size: 0.9rem;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.spotlight-card {
  border: 1px solid rgba(15, 163, 177, 0.2);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  background: linear-gradient(135deg, #f9feff, #eef7fb);
  box-shadow: 0 18px 42px rgba(13, 95, 108, 0.16);
}

.spotlight-card.muted {
  background: #f1f6f8;
  border-style: dashed;
}

.spotlight-card .spotlight-meta {
  color: var(--text-soft);
  margin: 0.4rem 0;
  font-size: 0.95rem;
}

.spotlight-card .badge {
  background: rgba(15, 163, 177, 0.16);
  color: #0d5f6c;
}

.spotlight-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.spotlight-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #5fd4e1, #0fa3b1);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 20px rgba(15, 163, 177, 0.35);
}

.spotlight-tagline {
  margin: 0.05rem 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.resource-card a {
  font-weight: 600;
}

.resource-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.resource-column {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: var(--bg-muted);
}

/* Default hide mobile menu elements on desktop */
.mobile-menu-overlay {
  display: none;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu {
  display: none;
}

/* Utility visibility */
.mobile-only {
  display: none;
}
.desktop-only {
  display: block;
}

/* Mobile-first adjustments */
@media (max-width: 768px) {
  body {
    background: #f6fbfd;
  }
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: block;
  }

  .site-shell {
    padding: 0;
  }

  .mobile-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #0a3140;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .mobile-brand {
    font-weight: 700;
    font-size: 1rem;
  }
  .icon-button {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.2rem;
    padding: 8px;
  }
  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    opacity: 0;
    pointer-events: none;
    z-index: 1200;
    transition: opacity 0.18s ease;
  }
  .mobile-menu-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-menu {
    background: #fff;
    width: 90%;
    max-width: 320px;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    flex-direction: column;
    gap: 12px;
    position: relative;
  }
  .mobile-menu-overlay:not(.active) .mobile-menu {
    display: none;
  }
  .mobile-menu-overlay.active .mobile-menu {
    display: flex;
  }
  .mobile-menu a {
    font-weight: 600;
    color: #0a3140;
  }
  .mobile-menu-close {
    position: absolute;
    top: 8px;
    right: 8px;
  }
  .contact-hero {
    grid-template-columns: 1fr;
    padding: 1.2rem 1rem;
    gap: 1rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .contact-card,
  .contact-form {
    padding: 1.1rem;
  }
  .city-media {
    grid-template-columns: 1fr;
  }
  .map-links {
    flex-direction: column;
    align-items: flex-start;
  }
  .gmap {
    height: 340px;
  }

  /* Mobile homepage */
  .mobile-home {
    padding: 16px;
    padding-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .mobile-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
    margin-bottom: 10px;
  }
  .mobile-hero h1 {
    font-size: 1.6rem;
    margin: 4px 0;
  }
  .mobile-hero p {
    margin: 0 0 12px;
    color: var(--text-muted);
  }
  .mobile-hero .eyebrow {
    margin: 0;
  }
  .mobile-search {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .mobile-search input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
  }
  .hero-search select,
  .mobile-card select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    background: #fff;
  }
  .mobile-search button {
    padding: 12px;
    border: none;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
  }
  .mobile-card .btn {
    display: inline-block;
    text-align: center;
    width: 100%;
  }
  .mobile-card .btn.ghost {
    border: 1px solid var(--accent);
    color: #fff;
    background: var(--accent);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  }

  .mobile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .mobile-tile {
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #f8fbfd;
  }
  .mobile-tile h3 {
    margin: 0;
    font-size: 1rem;
  }

  .mobile-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .mobile-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text-main);
  }

  .mobile-mini-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 10px;
  }
  .mini-card {
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
  }
  .mini-card h4 {
    margin: 0 0 6px;
  }
  .mini-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
  }

  .mobile-footer {
    padding: 16px;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-soft);
  }
  .mobile-footer a {
    margin: 0 6px;
    color: var(--accent);
    font-weight: 600;
  }

  /* Directory compact cards */
  .business-card {
    border: none;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    padding: 12px 0;
    box-shadow: none;
    background: transparent;
  }
  .business-card h2 {
    margin: 0 0 4px;
    font-size: 1.05rem;
  }
  .business-meta,
  .business-desc,
  .business-links {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
  }
  .business-desc {
    display: none;
  }
  .business-meta + p {
    display: none;
  }
  .business-links {
    display: flex;
    gap: 12px;
    margin-top: 4px;
  }
  .business-links a {
    font-weight: 700;
    color: var(--accent);
  }

  /* Section spacing */
  .section {
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 16px 0;
    background: transparent;
  }

  /* Hide heavy hero sections on mobile events */
  .mobile-hide {
    display: none !important;
  }

  /* Directory/category backgrounds cleaner */
  .category-hero,
  .directory-hero,
  .hero {
    background: #fff;
    box-shadow: none;
    border: 1px solid var(--border);
  }
  .category-hero .category-stat a.btn,
  .category-hero .category-stat span,
  .category-hero .category-stat p {
    color: var(--text-main);
  }

  /* Advertise card spacing */
  .mobile-card:last-child {
    margin-bottom: 12px;
  }
}

.resource-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.resource-column li span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.events-hero {
  background: linear-gradient(135deg, #0f172a, #1d4ed8);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.5rem;
}

.home-events {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  background: var(--bg-card);
  box-shadow: var(--shadow-soft);
  margin: 1.5rem 0;
}
.home-events-list {
  list-style: none;
  margin: 0.6rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.home-events-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 0.4rem;
  align-items: center;
}
.home-events-date {
  font-weight: 700;
  color: var(--accent-dark);
  font-size: 0.95rem;
}
.home-events-title {
  margin: 0;
  color: var(--text-main);
  font-weight: 700;
}
.home-events-meta {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.event-card {
  border: 1px solid rgba(15, 163, 177, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  background: linear-gradient(135deg, #ffffff, #f8fdff);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
  overflow: hidden;
}

.event-date {
  font-weight: 800;
  color: var(--accent-dark);
  background: rgba(31, 163, 177, 0.12);
  padding: 0.4rem 0.65rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  margin: 0;
}

.event-date span {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.event-meta {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin: 0;
}

.event-card h3 {
  margin: 0.1rem 0 0.2rem;
  font-size: 1.1rem;
}

.event-card .event-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.event-card .btn-primary,
.event-card .map-link.primary {
  margin-top: auto;
  align-self: flex-start;
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--accent);
  color: #fff;
  background: var(--accent);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(15, 163, 177, 0.25);
}

.event-card .btn-primary:hover,
.event-card .map-link.primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  text-decoration: none;
}

.event-card .map-link {
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--accent-dark);
  background: #fff;
  font-weight: 700;
  text-decoration: none;
}

.event-card .map-link:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
  text-decoration: none;
}

/* Live beach hub */
.live-beach-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 20% 20%, rgba(111, 221, 234, 0.2), transparent 45%), linear-gradient(135deg, rgba(8, 32, 38, 0.9), rgba(13, 95, 108, 0.78));
  color: #f4fbfd;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.live-beach-copy h1 {
  color: #ffffff;
}

.live-beach-copy .hero-text {
  color: rgba(244, 251, 253, 0.9);
}

.live-beach-copy .hero-stats li {
  color: #f4fbfd;
}

.live-beach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.live-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  backdrop-filter: blur(6px);
}

.live-card .eyebrow {
  color: rgba(244, 251, 253, 0.75);
  letter-spacing: 0.08em;
}

.live-card .today-value {
  color: #ffffff;
  font-size: 1.6rem;
  margin: 0.2rem 0 0.1rem;
}

.live-card .today-meta {
  color: rgba(244, 251, 253, 0.85);
  margin: 0;
}

.live-card a {
  color: #b9f3ff;
}

@media (max-width: 960px) {
  .live-beach-hero {
    grid-template-columns: 1fr;
  }
}

.map-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
  color: #ffffff;
  font-weight: 700;
}

.map-links a {
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}
.gmap {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.recurring-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.recurring-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: var(--bg-muted);
}

.recurring-card p {
  margin: 0.2rem 0 0;
  color: var(--text-muted);
}

/* Today strip readability */
.today-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: var(--radius-lg);
  background: rgba(8, 32, 38, 0.55);
  color: #f4fbfd;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(6px);
}

.today-item {
  text-align: center;
}

.today-item .eyebrow {
  letter-spacing: 0.08em;
  color: rgba(244, 251, 253, 0.75);
}

.today-value {
  font-size: 1.85rem;
  font-weight: 700;
  margin: 0.35rem 0 0.15rem;
  color: #ffffff;
}

.today-meta {
  margin: 0.1rem 0;
  color: rgba(244, 251, 253, 0.85);
  font-size: 1.05rem;
}

.today-item a {
  color: #b9f3ff;
  font-weight: 600;
}

@media (max-width: 768px) {
  .today-strip {
    grid-template-columns: 1fr 1fr;
    padding: 1.25rem;
  }
}

.mobile-stats-card {
  padding-top: 1rem;
}
.mobile-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.mobile-stats li {
  background: var(--bg-muted);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-weight: 600;
  color: var(--text-soft);
}
.mobile-stats span {
  display: block;
  font-size: 1.2rem;
  color: var(--text-main);
}

.mobile-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.mobile-chips .chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--bg-muted);
  color: var(--text-main);
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border);
}

.mobile-inline-event {
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.98rem;
}
.mobile-inline-event a {
  color: var(--accent);
}
.mobile-help {
  margin-top: 0.35rem;
}
.mobile-help a {
  font-weight: 600;
  color: var(--accent);
}

.btn.icon-left {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.quote-form-wrap {
  max-width: 960px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

.quote-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 2rem;
}

.quote-card h2 {
  margin: 0 0 0.5rem;
}

.quote-subtext {
  margin: 0 0 1.5rem;
  color: var(--text-soft);
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote-grid {
  display: grid;
  gap: 1rem;
}

.quote-grid.two {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.quote-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--text-main);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  background: #f9fdfe;
}

.quote-form textarea {
  min-height: 120px;
  resize: vertical;
}

.quote-hint {
  display: flex;
  align-items: flex-end;
  font-weight: 600;
  color: var(--text-soft);
  padding-bottom: 0.25rem;
}
.quote-hint.hidden {
  display: none;
}

.quote-actions {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 640px) {
  .quote-card {
    padding: 1.5rem;
  }
  .quote-actions {
    justify-content: center;
  }
}
