/* ===========================================================
   Vitória Montanaro · Psicóloga & Neuropsicóloga
   Design: paleta clean e suave, alinhada ao manual de marca
   =========================================================== */

:root {
  --cream:        #FBF3EF;
  --cream-deep:   #F6E7E1;
  --paper:        #FFFFFF;
  --ink:          #4A3B36;
  --ink-soft:     #7A6B62;
  --blush:        #EECCCA;
  --mauve:        #D1BAAD;
  --rose:         #9C5F4F;
  --rose-deep:    #7E4B3E;
  --gold:         #C9A15D;
  --line:         rgba(74, 59, 54, 0.15);

  --font-display: "Fraunces", "Iowan Old Style", serif;
  --font-body:    "Work Sans", -apple-system, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  --container: 1220px;
  --gutter: clamp(1.5rem, 4vw, 4rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  background: var(--ink);
  color: var(--paper);
  padding: 0.8em 1.2em;
  z-index: 200;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--rose);
  display: inline-block;
}

.coord {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  opacity: 0.75;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}

em, .italic { font-style: italic; }

p { margin: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95em 1.7em;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--rose);
  color: var(--paper);
}
.btn-primary:hover { background: var(--rose-deep); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--rose); color: var(--rose); transform: translateY(-2px); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---------- Topographic signature motif ---------- */
.contour-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.contour-layer svg { position: absolute; }
.contour-layer svg path {
  fill: none;
  stroke: var(--ink);
  stroke-width: 1;
  opacity: 0.09;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  background: transparent;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.site-header.is-scrolled {
  background: rgba(244, 237, 224, 0.92);
  backdrop-filter: blur(10px);
  padding: 0.75rem 0;
  box-shadow: 0 1px 0 var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.logo-icon { height: 40px; width: auto; display: block; }
.logo-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.logo-text em { color: var(--rose); font-style: normal; }

.logo-footer .logo-icon { height: 52px; }
.logo-footer .logo-text { font-size: 1.7rem; }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-desktop a {
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.25s ease;
  position: relative;
}
.nav-desktop a:hover { color: var(--rose); }

.header-cta { display: flex; align-items: center; gap: 1.6rem; }
.header-cta .btn-primary { padding: 0.8em 1.4em; font-size: 0.75rem; }

.icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.icon-link svg { width: 18px; height: 18px; }
.icon-link:hover { color: var(--rose); border-color: var(--mauve); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); display: block; transition: transform 0.3s ease, opacity 0.3s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.6rem;
  padding: 2rem var(--gutter);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-menu.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.9rem;
  text-decoration: none;
  color: var(--ink);
}
.mobile-menu .btn {
  margin-top: 1rem;
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mobile-menu-instagram {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.mobile-menu-instagram svg { width: 18px; height: 18px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  overflow: hidden;
  background: var(--cream);
}
.hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-copy { position: relative; max-width: 52%; }
.hero-copy .eyebrow { margin-bottom: 1.6rem; }
.hero-title {
  font-size: clamp(2.1rem, 3.6vw, 3.1rem);
  line-height: 1.12;
  margin-bottom: 1.6rem;
}
.hero-title em { color: var(--rose); }
.hero-lede {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 2.3rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.6rem; }
.hero-signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
  max-width: 34ch;
}

.hero-bg-photo {
  position: absolute;
  top: 50%;
  right: 0.5%;
  transform: translateY(-50%);
  width: clamp(340px, 41vw, 680px);
  height: auto;
  aspect-ratio: 1360 / 1743;
  max-height: 92%;
  object-fit: contain;
  object-position: right center;
  pointer-events: none;
  z-index: 0;
}

.scroll-hint {
  position: absolute;
  bottom: 2.2rem;
  left: var(--gutter);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  z-index: 1;
}
.scroll-hint .line { width: 40px; height: 1px; background: var(--ink-soft); position: relative; overflow: hidden; }
.scroll-hint .line::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--rose);
  transform: translateX(-100%);
  animation: hint-sweep 2.6s ease-in-out infinite;
}
@keyframes hint-sweep {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-hint .line::after { animation: none; transform: translateX(0); }
}

/* ---------- Section shell ---------- */
section { position: relative; }
.section {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}
.section-deep { background: var(--cream-deep); }
.section-head { max-width: 62ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .eyebrow { margin-bottom: 1.2rem; }
.section-title { font-size: clamp(1.9rem, 3.4vw, 2.7rem); line-height: 1.15; }

/* ---------- Sobre ---------- */
.sobre .container {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.sobre-photo { position: relative; }
.sobre-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
  border-radius: 2px;
}
.sobre-photo-frame {
  position: absolute;
  top: 1.1rem; left: 1.1rem;
  width: 100%; height: 100%;
  border: 1px solid var(--gold);
  z-index: -1;
}
.sobre-body { padding-top: 0.5rem; }
.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.35;
  color: var(--rose);
  margin-bottom: 1.8rem;
}
.sobre-text { color: var(--ink-soft); font-size: 1rem; max-width: 58ch; }
.sobre-text + .sobre-text { margin-top: 1.1rem; }
.credentials {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem 2rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--line);
}
.credential dt {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.35rem;
}
.credential dd { margin: 0; font-size: 0.95rem; color: var(--ink); }

.stat-callout {
  display: flex;
  align-items: baseline;
  gap: 1.1rem;
  margin-top: 2.2rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--line);
}
.stat-number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.6rem;
  color: var(--rose);
  line-height: 1;
  flex-shrink: 0;
}
.stat-label { color: var(--ink-soft); font-size: 0.92rem; max-width: 32ch; }

.specialties { margin-top: 2.2rem; }
.specialties-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.specialties-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.9rem;
}
.specialties-grid li {
  background: var(--cream-deep);
  border-radius: 2px;
  padding: 0.8em 1em;
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}
.specialties-grid strong { font-size: 0.9rem; color: var(--ink); font-weight: 600; }
.specialties-grid span { font-size: 0.76rem; color: var(--ink-soft); line-height: 1.3; }

/* ---------- Diagnóstico ---------- */
.diagnostico-inner {
  max-width: 62ch;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.diagnostico-inner .eyebrow { justify-content: center; }
.diagnostico-statement {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.25;
  color: var(--ink);
  margin: 1.1rem 0 1.4rem;
}
.diagnostico-statement em { color: var(--rose); font-style: italic; }
.diagnostico-text { color: var(--ink-soft); font-size: 1.02rem; }

/* ---------- Serviços: pranchas de avaliação ---------- */
.servicos-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.servicos-photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
  isolation: isolate;
  border: 1px solid rgba(74, 59, 54, 0.22);
}
.servicos-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.servicos-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  outline: 10px solid var(--paper);
  outline-offset: -10px;
  pointer-events: none;
}

.plates { border-top: 1px solid var(--line); }
.plate {
  display: grid;
  grid-template-columns: 5rem 1fr 1.4fr;
  gap: 1.5rem 2rem;
  align-items: start;
  padding: 2.1rem 0;
  border-bottom: 1px solid var(--line);
}
.plate-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  color: var(--rose);
  line-height: 1;
}
.plate-name h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
}
.plate-tag {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose-deep);
  background: var(--blush);
  border-radius: 999px;
  padding: 0.3em 0.7em;
}
.plate-tag-restrict {
  color: var(--ink-soft);
  background: var(--cream-deep);
  border: 1px solid var(--line);
}
.plate-name .coord { display: block; }
.plate-desc { color: var(--ink-soft); font-size: 0.98rem; max-width: 52ch; }

/* ---------- Atendimento / Localização ---------- */
.atendimento-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
}

.online-card {
  background: linear-gradient(135deg, var(--blush), var(--mauve));
  color: var(--ink);
  border-radius: 2px;
  padding: clamp(2rem, 4vw, 2.6rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid rgba(74, 59, 54, 0.14);
}
.online-card .eyebrow { color: var(--rose-deep); }
.online-card .eyebrow::before { background: var(--rose-deep); }
.online-card-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--ink);
}
.online-card-text { color: var(--ink); opacity: 0.82; font-size: 0.98rem; }
.online-card-list {
  list-style: none;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(74, 59, 54, 0.16);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  color: var(--ink);
  font-size: 0.92rem;
}
.online-card .btn-primary { align-self: flex-start; margin-top: auto; }

.location-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.location-photo { aspect-ratio: 4/3; overflow: hidden; }
.location-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%; }
.location-body {
  padding: clamp(1.5rem, 3vw, 1.9rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.location-card-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  margin-top: 0.7rem;
  color: var(--ink);
}
.location-card-text {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-top: 0.6rem;
}
.map-pin {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-top: 1.4rem;
}
.map-pin svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--rose); margin-top: 0.2rem; }
.map-pin address { font-style: normal; font-size: 1.02rem; line-height: 1.5; color: var(--ink-soft); }
.location-card-foot {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.3rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: linear-gradient(135deg, var(--blush), var(--mauve));
  color: var(--ink);
  overflow: hidden;
}
.cta-band .contour-layer svg path { stroke: rgba(74, 59, 54, 0.1); }
.cta-band .container {
  position: relative;
  z-index: 1;
  padding-top: clamp(4rem, 8vw, 6rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-band h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-style: italic;
  max-width: 18ch;
  color: var(--ink);
}
.cta-band .eyebrow { color: var(--rose-deep); }
.cta-band .eyebrow::before { background: var(--rose-deep); }
.cta-band-text { max-width: 40ch; }
.cta-band-text p { color: var(--ink); opacity: 0.82; }
.cta-band-instagram {
  margin-top: 1.1rem;
  font-size: 0.85rem;
  color: var(--ink);
  opacity: 0.75;
}
.cta-band-instagram a { color: var(--rose-deep); font-weight: 600; text-decoration: underline; opacity: 1; }
.cta-band .btn-primary { background: var(--rose); color: var(--paper); }
.cta-band .btn-primary:hover { background: var(--rose-deep); color: var(--paper); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--cream-deep);
  color: var(--ink);
  padding: clamp(3rem, 6vw, 4.5rem) 0 1.8rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.6rem;
  border-bottom: 1px solid var(--line);
}
.footer-tagline { margin-top: 0.9rem; color: var(--ink-soft); max-width: 34ch; font-size: 0.95rem; }
.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin: 0 0 1rem;
  font-weight: 600;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a { text-decoration: none; color: var(--ink-soft); font-size: 0.95rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--rose); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.8rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

/* ---------- Floating actions ---------- */
.float-actions {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(74, 59, 54, 0.3);
  transition: transform 0.25s ease, background 0.25s ease;
}
.float-btn svg { width: 26px; height: 26px; }
.float-whatsapp { background: var(--rose); color: var(--paper); }
.float-whatsapp:hover { transform: translateY(-3px) scale(1.04); background: var(--rose-deep); }
.float-instagram {
  width: 46px; height: 46px;
  background: var(--paper);
  color: var(--rose);
  border: 1px solid var(--line);
}
.float-instagram svg { width: 21px; height: 21px; }
.float-instagram:hover { transform: translateY(-3px) scale(1.04); color: var(--rose-deep); border-color: var(--mauve); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-desktop, .header-cta .btn-primary, .header-cta .icon-link { display: none; }
  .header-cta { gap: 0; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }

  .hero {
    flex-direction: column;
    justify-content: flex-start;
    min-height: 0;
    padding-top: 6.5rem;
    padding-bottom: 2.5rem;
  }
  .hero-copy { max-width: 100%; }
  .hero-bg-photo {
    position: static;
    order: -1;
    width: 68%;
    max-width: 300px;
    height: auto;
    max-height: none;
    margin: 0 auto 1.6rem;
    transform: none;
  }
  .scroll-hint { display: none; }

  .sobre .container { grid-template-columns: 1fr; }
  .sobre-photo { max-width: 360px; }

  .servicos-head { grid-template-columns: 1fr; }
  .servicos-photo { max-width: 320px; aspect-ratio: 4/3; }
  .plate { grid-template-columns: 3.2rem 1fr; }
  .plate-desc { grid-column: 2 / 3; }

  .atendimento-cards { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 560px) {
  .plate { grid-template-columns: 1fr; gap: 0.6rem; }
  .plate-desc { grid-column: 1; }
  .credentials { grid-template-columns: 1fr; }
  .location-card-foot { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
