/* =============================================================
   penafort-custom.css
   Custom overrides, accessibility fixes, and CMS component styles.
   Loaded after Webflow CSS on every page.
   ============================================================= */

/* ----------------------------------------------------------
   Skip Navigation (WCAG 2.1 — 2.4.1 Bypass Blocks)
   ---------------------------------------------------------- */
.skip-nav {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  background: #1a3c2e;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0 0 4px 4px;
  z-index: 9999;
  text-decoration: none;
  transition: none;
}

.skip-nav:focus {
  position: fixed;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: auto;
  height: auto;
  clip: auto;
  overflow: visible;
  white-space: normal;
  outline: 3px solid #f7c948;
  outline-offset: 2px;
}

/* ----------------------------------------------------------
   Main content landmark
   ---------------------------------------------------------- */
main#main-content {
  display: block; /* IE11 safety */
  outline: none;
}

main#main-content:focus {
  outline: none;
}

/* ----------------------------------------------------------
   CMS error / empty states
   ---------------------------------------------------------- */
.cms-error,
.cms-empty {
  padding: 2rem;
  text-align: center;
  font-size: 1rem;
  color: #555;
}

.cms-error {
  color: #c0392b;
}

/* ----------------------------------------------------------
   Job listing cards (careers page)
   ---------------------------------------------------------- */
.job-listing-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fff;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.job-listing-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  border-color: #1a3c2e;
}

.job-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 4px;
  flex-shrink: 0;
}

.job-logo-placeholder {
  width: 48px;
  height: 48px;
  background: #e8f0eb;
  border-radius: 4px;
  flex-shrink: 0;
}

.job-info { flex: 1; }

.job-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: #1a1a1a;
}

.job-area.tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: #e8f0eb;
  color: #1a3c2e;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #666;
}

/* ----------------------------------------------------------
   Focus-visible ring (WCAG 2.4.7)
   ---------------------------------------------------------- */
:focus-visible {
  outline: 3px solid #f7c948;
  outline-offset: 2px;
}

/* Remove outlines for mouse clicks only */
:focus:not(:focus-visible) {
  outline: none;
}

/* ----------------------------------------------------------
   Cookie consent banner (placeholder)
   ---------------------------------------------------------- */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a3c2e;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  z-index: 9998;
  font-size: 0.875rem;
}

#cookie-banner a { color: #f7c948; }

#cookie-banner-accept {
  background: #f7c948;
  color: #1a1a1a;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.875rem;
}

#cookie-banner-accept:hover { background: #e6b800; }

/* ── Webflow IX2 animation fallback ──────────────────────────────────────────
 * The IX2 animation payload is not included in the static HTML export.
 * Elements with data-w-id start at opacity:0 (animation initial state) and
 * never animate to visible. Override to ensure all content is shown.
 */
[data-w-id] {
  opacity: 1 !important;
  transform: none !important;
}

/* ──────────────────────────────────────────────────────────────────────────
 * Google Reviews — modern, trust-focused testimonials redesign
 * Activated when js/google-reviews.js successfully fetches data and adds
 * the `.gr-active` class to .testimonials-wrap.
 * ────────────────────────────────────────────────────────────────────────── */

.testimonials-wrap.gr-active {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* ── Summary bar ──────────────────────────────────────────────────────────── */
.gr-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1.75rem 2rem;
  margin: 1.5rem auto 2.75rem;
  max-width: 720px;
  background: #ffffff;
  border: 1px solid #e8eaed;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(60,64,67,.06), 0 4px 16px rgba(60,64,67,.04);
  flex-wrap: wrap;
}
.gr-summary__score {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.gr-summary__rating {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: #202124;
  letter-spacing: -0.02em;
}
.gr-summary__stars-block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.gr-summary__label {
  font-size: 0.95rem;
  color: #5f6368;
  font-weight: 500;
}
.gr-summary__divider {
  width: 1px;
  align-self: stretch;
  background: #e8eaed;
}
.gr-summary__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.gr-summary__brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.gr-summary__count {
  font-size: 0.95rem;
  color: #3c4043;
}
.gr-summary__count strong { color: #202124; font-weight: 600; }
.gr-summary__view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
  color: #1a73e8;
  text-decoration: none;
  font-weight: 500;
}
.gr-summary__view-all:hover { text-decoration: underline; }
.gr-summary__view-all svg { transition: transform 0.2s ease; }
.gr-summary__view-all:hover svg { transform: translateX(2px); }

/* ── Stars ────────────────────────────────────────────────────────────────── */
.gr-stars { display: inline-flex; gap: 2px; line-height: 0; vertical-align: middle; }
.gr-stars svg { display: block; }
.gr-stars--lg svg { width: 22px; height: 22px; }

/* ── Card marquee (horizontal continuous flow) ────────────────────────────── */
.gr-grid {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0.5rem 0 1rem;
  /* Fade the left & right edges so cards enter/exit smoothly */
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.gr-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: gr-marquee 60s linear infinite;
}
.gr-track:hover { animation-play-state: paused; }
.gr-track__dup-marker { display: none; }

/* Each card has a fixed width and uses margin-right (not gap) so the
 * total track width is exactly 2x the unique-cards width, making
 * translateX(-50%) loop seamlessly. */
.gr-card {
  flex: 0 0 320px;
  margin-right: 1.5rem;
  /* Ensure the card itself doesn't get squished */
  box-sizing: border-box;
}

@keyframes gr-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .gr-track { animation: none; transform: none; }
}

/* ── Card ─────────────────────────────────────────────────────────────────── */
.gr-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #e8eaed;
  border-radius: 16px;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 1px 2px rgba(60,64,67,.04);
}
.gr-card:hover {
  box-shadow: 0 4px 12px rgba(60,64,67,.08), 0 12px 28px rgba(60,64,67,.10);
  transform: translateY(-2px);
  border-color: #dadce0;
}
.gr-card__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.gr-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.gr-card__avatar--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a73e8, #4285f4);
  color: #ffffff;
  font-weight: 600;
  font-size: 1.25rem;
}
.gr-card__meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.gr-card__name {
  font-weight: 600;
  font-size: 1rem;
  color: #202124;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
a.gr-card__name:hover { color: #1a73e8; text-decoration: underline; }
.gr-card__date {
  font-size: 0.85rem;
  color: #5f6368;
}
.gr-card__brand {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f8f9fa;
}
.gr-card__stars { margin-top: 0.25rem; }
.gr-card__quote {
  margin: 0;
  padding: 0;
  font-size: 0.975rem;
  line-height: 1.55;
  color: #3c4043;
  font-family: inherit;
  font-style: normal;
  quotes: none;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gr-card__quote::before, .gr-card__quote::after { content: none; }

/* ── Footer CTA ───────────────────────────────────────────────────────────── */
.gr-footer {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
.gr-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  background: #ffffff;
  color: #202124;
  border: 1px solid #dadce0;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.gr-cta:hover {
  border-color: #1a73e8;
  box-shadow: 0 2px 8px rgba(26,115,232,.15);
  background: #f8f9ff;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .gr-summary {
    padding: 1.25rem 1.5rem;
    gap: 1.25rem;
    flex-direction: column;
    text-align: center;
  }
  .gr-summary__divider {
    width: 60%;
    height: 1px;
    align-self: center;
  }
  .gr-summary__rating { font-size: 2.5rem; }
  .gr-card { padding: 1.25rem; }
  
}

/* Override inherited center alignment from Webflow parent */
.gr-card, .gr-card * { text-align: left; }
.gr-card__head { text-align: left; }
.gr-summary, .gr-summary * { text-align: left; }
.gr-summary__view-all { text-align: left; }
.gr-footer { text-align: center; }

/* ──────────────────────────────────────────────────────────────────────────
 * Our Trusted Partners — uniform logo grid
 * Overrides Webflow's .w-row / .w-col flex layout with a CSS grid so every
 * logo occupies an identical card regardless of native aspect ratio.
 * Applies on index.html, about.html, drink-depot.html (same markup).
 * ────────────────────────────────────────────────────────────────────────── */

.logos-row.w-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
  /* Reset Webflow's row negative margins so the grid actually aligns. */
  margin-left: auto !important;
  margin-right: auto !important;
}

.logos-row.w-row > .logo-column,
.logos-row.w-row > .w-col {
  /* Override Webflow's flex-based column widths — let grid handle it. */
  width: auto !important;
  padding: 0 !important;
  float: none !important;
}

.logos-row .logo-column {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 2;
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid #e8eaed;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.04);
  transition: box-shadow 0.25s ease,
              transform   0.25s ease,
              border-color 0.25s ease;
  overflow: hidden;
}

.logos-row .logo-column:hover {
  box-shadow: 0 4px 14px rgba(60, 64, 67, 0.08),
              0 12px 28px rgba(60, 64, 67, 0.06);
  transform: translateY(-2px);
  border-color: #c8d4df;
}

.logos-row .client-logo {
  display: block;
  max-width: 100%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.logos-row .logo-column:hover .client-logo {
  filter: grayscale(0%);
  opacity: 1;
}

/* On touch devices (no hover), keep the full-color treatment so the logos
 * are still readable. */
@media (hover: none) {
  .logos-row .client-logo {
    filter: grayscale(0%);
    opacity: 1;
  }
}

/* Responsive: 3 columns on tablet, 2 on mobile. Cards stay square-ish. */
@media (max-width: 991px) {
  .logos-row.w-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 580px) {
  .logos-row.w-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.875rem;
  }
  .logos-row .client-logo { max-height: 56px; }
  .logos-row .logo-column { padding: 1rem; }
}

/* Webflow's .w-row uses ::before/::after for clearfix — they consume grid
 * cells in our display:grid override and bump every logo one column to
 * the right. Hide them. */
.logos-row.w-row::before,
.logos-row.w-row::after {
  content: none !important;
  display: none !important;
}

/* ──────────────────────────────────────────────────────────────────────────
 * Contact page — Map + Message Form redesign
 * Replaces Webflow's flex .w-row / .w-col split with a CSS grid card layout.
 * Both sides become rounded cards with shadow + border. Form fields get a
 * modern, accessible visual language with proper focus states.
 * ────────────────────────────────────────────────────────────────────────── */

.section-connect.contact { padding: 4rem 1.25rem; }
.section-connect.contact .w-container {
  max-width: 1180px;
  width: 100%;
}

/* Two-column responsive grid (map | form) */
.contact-info-row.w-row {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 2rem;
  align-items: stretch;
  margin: 0 !important;
}
.contact-info-row.w-row::before,
.contact-info-row.w-row::after {
  content: none !important;
  display: none !important;
}
.contact-info-row.w-row > .w-col {
  width: auto !important;
  padding: 0 !important;
  float: none !important;
  display: flex;
}

/* ── Map card ─────────────────────────────────────────────────────────────── */
.contact-map-wrapper {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e8eaed;
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.06),
              0 8px 24px rgba(60, 64, 67, 0.05);
}
.contact-map-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  border-radius: 16px;
}

/* ── Form card ────────────────────────────────────────────────────────────── */
.map-contact-form {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e8eaed;
  border-radius: 16px;
  padding: 2.25rem 2rem;
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.06),
              0 8px 24px rgba(60, 64, 67, 0.05);
}
.map-contact-form > form { margin: 0; }

/* Heading */
.map-contact-form .contact-title-wrapper {
  margin-bottom: 1.5rem;
  text-align: left !important;
}
.map-contact-form .contact-title-wrapper .section-title-2 {
  margin: 0;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #202124;
  line-height: 1.25;
}

/* Field row */
.map-contact-form .w-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 0 0 1rem;
}
.map-contact-form .w-row::before,
.map-contact-form .w-row::after { content: none !important; display: none !important; }
.map-contact-form .field-column.w-col {
  width: auto !important;
  padding: 0 !important;
  float: none !important;
}

/* Labels */
.map-contact-form .field-label-2 {
  display: block;
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5f6368;
}

/* Inputs */
.map-contact-form .dark-field {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 0.9rem;
  margin: 0;
  background: #f8f9fa;
  border: 1px solid #e8eaed;
  border-radius: 10px;
  color: #202124;
  font-size: 0.95rem;
  font-family: inherit;
  line-height: 1.4;
  transition: border-color 0.2s ease,
              background 0.2s ease,
              box-shadow 0.2s ease;
}
.map-contact-form .dark-field:hover {
  background: #f1f3f4;
}
.map-contact-form .dark-field:focus,
.map-contact-form .dark-field:focus-visible {
  outline: none;
  background: #ffffff;
  border-color: #2e8b57;
  box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.12);
}
.map-contact-form .dark-field::placeholder { color: #9aa0a6; }
.map-contact-form .dark-field.area {
  min-height: 130px;
  resize: vertical;
  margin: 0.4rem 0 1.5rem;
}

/* Submit button */
.map-contact-form .button-send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.875rem 1.5rem;
  margin: 0;
  background: #2e8b57;
  color: #ffffff;
  border: 0;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-transform: none;
  transition: background 0.2s ease,
              box-shadow 0.2s ease,
              transform 0.2s ease;
}
.map-contact-form .button-send:hover {
  background: #24704a;
  box-shadow: 0 6px 16px rgba(46, 139, 87, 0.22);
  transform: translateY(-1px);
}
.map-contact-form .button-send:active { transform: translateY(0); }
.map-contact-form .button-send:focus-visible {
  outline: 3px solid rgba(46, 139, 87, 0.45);
  outline-offset: 2px;
}

/* Success / error states */
.map-contact-form .success-message {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: #e6f4ea;
  color: #137333;
  border: 1px solid #ceead6;
  border-radius: 10px;
  text-align: center;
}
.map-contact-form .error-bg {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: #fce8e6;
  color: #b3261e;
  border: 1px solid #f4cfcc;
  border-radius: 10px;
  text-align: center;
}

/* Responsive — stack on tablet/mobile */
@media (max-width: 880px) {
  .section-connect.contact { padding: 2.5rem 1rem; }
  .contact-info-row.w-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .contact-map-wrapper,
  .contact-map-wrapper iframe { min-height: 320px; }
  .map-contact-form { padding: 1.5rem 1.25rem; }
  .map-contact-form .w-row { grid-template-columns: 1fr; }
}

/* Higher-specificity override for the submit button to beat
 * Webflow's .w-button / .green / .btn-outline styles. */
.map-contact-form input.button-send,
.map-contact-form .button-send.w-button {
  background-color: #2e8b57 !important;
  color: #ffffff !important;
  border: 0 !important;
  border-radius: 999px !important;
  padding: 0.875rem 1.5rem !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  width: 100% !important;
  cursor: pointer;
  transition: background-color 0.2s ease,
              box-shadow 0.2s ease,
              transform 0.2s ease !important;
}
.map-contact-form input.button-send:hover,
.map-contact-form .button-send.w-button:hover {
  background-color: #24704a !important;
  box-shadow: 0 6px 16px rgba(46, 139, 87, 0.22) !important;
  transform: translateY(-1px);
}

/* ──────────────────────────────────────────────────────────────────────────
 * Contact page — Our Locations section
 * Two-location card grid. Replaces the old 3-column "Our Location / Call Us
 * / Mail Us" row with a richer card per business location.
 * ────────────────────────────────────────────────────────────────────────── */

.locations-section {
  padding: 3rem 1.25rem;
  max-width: 1180px;
  margin: 0 auto;
}
.locations-section__head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.locations-section__head .page-subtitle {
  margin-bottom: 0.5rem;
}
.locations-section__head h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #202124;
}

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

.location-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding: 2rem;
  background: #ffffff;
  border: 1px solid #e8eaed;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.05),
              0 8px 24px rgba(60, 64, 67, 0.04);
  transition: box-shadow 0.25s ease,
              transform   0.25s ease,
              border-color 0.25s ease;
}
.location-card:hover {
  box-shadow: 0 4px 12px rgba(60, 64, 67, 0.08),
              0 16px 32px rgba(60, 64, 67, 0.06);
  transform: translateY(-3px);
  border-color: #c8d4df;
}

.location-card__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  background: #e6f4ea;
  color: #137333;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.location-card__badge--new {
  background: #2c8c3b;
  color: #ffffff;
}

.location-card__name {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #202124;
  padding-right: 4rem; /* leave room for badge */
}

.location-card__row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #3c4043;
}
.location-card__row svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0.1rem;
  fill: #2c8c3b;
}
.location-card__row a {
  color: inherit;
  text-decoration: none;
}
.location-card__row a:hover { text-decoration: underline; color: #2c8c3b; }

.location-card__cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: #2c8c3b;
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s ease,
              box-shadow 0.2s ease,
              transform   0.2s ease;
}
.location-card__cta:hover {
  background: #24704a;
  box-shadow: 0 4px 12px rgba(46, 139, 87, 0.25);
  transform: translateY(-1px);
}
.location-card__cta svg { width: 14px; height: 14px; fill: currentColor; }

@media (max-width: 880px) {
  .locations-section { padding: 2rem 1rem; }
  .locations-section__head h2 { font-size: 1.5rem; }
  .location-card { padding: 1.5rem; }
}
