/* ==========================================================================
   THE PRIVATE OFFICE — WEBSITE
   contact.css — page styles for the /contact route only.
   Reuses the design system (tokens · base · components · site chrome);
   nothing in this file affects any other page.
   ========================================================================== */

/* Page-local visually hidden helper */
.ct-sr {
  position: absolute;
  width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ==========================================================================
   1 · BREADCRUMB — quiet institutional wayfinding above the hero
   ========================================================================== */
.ct-crumbs {
  background: var(--c-white);
  border-bottom: 1px solid rgba(198, 161, 91, 0.22);
  padding: calc(var(--header-h) + var(--space-3)) clamp(20px, 4vw, 64px) var(--space-3);
}
.ct-crumbs__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; flex-wrap: wrap; gap: 12px;
}
.ct-crumbs__link, .ct-crumbs__here, .ct-crumbs__sep {
  font-family: var(--font-sub);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-semi);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
}
.ct-crumbs__link { color: var(--navy-800); text-decoration: none; transition: color var(--dur-2) var(--ease-standard); }
.ct-crumbs__link:hover { color: var(--gold-600); }
.ct-crumbs__link:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 3px; border-radius: var(--r-xs); }
.ct-crumbs__sep { color: var(--gold-500); }
.ct-crumbs__here { color: var(--ink-mute); }

/* ==========================================================================
   2 · PAGE HERO — centered navy band (offset provided by the breadcrumb)
   ========================================================================== */
.ct-hero {
  background: var(--grad-navy);
  color: var(--ivory-100);
  text-align: center;
  padding: var(--space-7) clamp(24px, 5vw, 64px);
}
.ct-hero__inner { max-width: 780px; margin-inline: auto; }
.ct-hero .eyebrow { color: var(--gold-400); }
.ct-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.4vw, 3.75rem);
  font-weight: var(--fw-medium);
  line-height: 1.12;
  letter-spacing: var(--track-display);
  color: var(--c-white);
  margin: 18px 0 20px;
  text-wrap: balance;
}
.ct-hero__lead {
  font-family: var(--font-body);
  font-size: var(--fs-body-lg);
  font-weight: var(--fw-light);
  line-height: 1.7;
  color: rgba(247, 242, 232, 0.74);
  max-width: 58ch;
  margin-inline: auto;
}

/* ==========================================================================
   Shared page rhythm — shells, container, heads
   ========================================================================== */
.ct-channels { background: #FAF8F3; }
.ct-formwrap { background: var(--c-white); }
.ct-office   { background: #FAF8F3; }

.ct-channels, .ct-formwrap, .ct-office {
  padding: var(--space-7) clamp(20px, 4vw, 64px);
}
.ct-inner { max-width: 1440px; margin-inline: auto; }

.ct-head { max-width: 720px; margin-bottom: var(--space-5); }
.ct-h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.9vw, 2.625rem);
  font-weight: var(--fw-semi);
  line-height: 1.15;
  letter-spacing: var(--track-display);
  color: var(--navy-800);
  margin: 16px 0 12px;
  text-wrap: balance;
}
.ct-desc { font-size: var(--fs-body); line-height: 1.75; color: var(--ink-soft); }

/* ==========================================================================
   3 · CONTACT CHANNELS — five clickable channel cards
   ========================================================================== */
.ct-channels__grid {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.ct-channel {
  position: relative;
  padding: 34px 36px;
  display: flex;
  flex-direction: column;
  background: var(--c-white);
  border: 1px solid rgba(198, 161, 91, 0.35);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition:
    transform var(--dur-3) var(--ease-lux),
    box-shadow var(--dur-3) var(--ease-lux),
    border-color var(--dur-2) var(--ease-standard);
}
.ct-channel:hover,
.ct-channel:focus-within {
  transform: translateY(-4px);
  border-color: var(--gold-500);
  box-shadow: 0 28px 52px -22px rgba(198, 161, 91, 0.28), 0 14px 30px -16px rgba(8, 20, 38, 0.14);
}
.ct-channel__icon { width: 30px; height: 30px; color: var(--gold-600); margin-bottom: 20px; }
.ct-channel__title {
  font-family: var(--font-sub);
  font-size: 0.8125rem;
  font-weight: var(--fw-semi);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--navy-800);
  margin-bottom: 12px;
  line-height: 1.55;
}
.ct-channel__text {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: var(--space-3);
}
.ct-channel__link { margin-top: auto; }

/* Stretched link — the entire card is the hit area */
.ct-channel__link::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
.ct-channel__link:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 4px; border-radius: var(--r-xs); }

/* ==========================================================================
   4 · GENERAL CONTACT FORM — .card + form kit + real client-side validation
   ========================================================================== */
.ct-card { max-width: 880px; margin-inline: auto; padding: clamp(28px, 4vw, 48px); position: relative; }

.ct-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px var(--space-3);
}
.ct-form__full { grid-column: 1 / -1; }

.ct-form__banner {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 var(--space-3);
  padding: 13px 18px;
  background: var(--error-100);
  color: var(--error-600);
  border: 1px solid rgba(168, 67, 47, 0.35);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
}
.ct-form__banner[hidden] { display: none; }
.ct-form__banner .icon { width: 17px; height: 17px; flex: none; }

.ct-form__actions { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: var(--space-1); }
.ct-submit { gap: 10px; }
.ct-form__demo { text-align: center; }

/* Error text inside fields — surfaced by .field--error from the form kit */
.error-text:empty { display: none; }

/* File field — dashed gold well with type/size guidance */
.ct-file__input {
  width: 100%;
  padding: 13px 15px;
  background: var(--c-white);
  border: 1.5px dashed rgba(198, 161, 91, 0.5);
  border-radius: var(--r-md);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  transition: border-color var(--dur-2) var(--ease-standard), box-shadow var(--dur-2) var(--ease-standard);
}
.ct-file__input:hover:not(:disabled) { border-color: rgba(198, 161, 91, 0.85); }
.ct-file__input:focus-visible { outline: none; border-color: var(--gold-500); box-shadow: var(--focus-ring); }
.ct-file__input::file-selector-button {
  margin-right: 14px;
  padding: 10px 18px;
  border: 1px solid rgba(198, 161, 91, 0.55);
  border-radius: var(--r-sm);
  background: var(--gold-50);
  color: var(--gold-700);
  font-family: var(--font-sub);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-semi);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color var(--dur-2) var(--ease-standard);
}
.ct-file__input::file-selector-button:hover { background: var(--gold-100); }
.ct-file__hint { margin-top: 8px; }
.field--error .ct-file__input { border-style: dashed; border-color: var(--error-600); }

/* Loading state — gold-rim spinner inside the primary button */
.ct-submit__spinner {
  display: none;
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(13, 27, 46, 0.28);
  border-top-color: var(--navy-900);
  animation: ct-spin 0.7s linear infinite;
}
.ct-submit.is-loading .ct-submit__spinner { display: inline-block; }
.ct-submit:disabled { cursor: wait; }
@keyframes ct-spin { to { transform: rotate(1turn); } }

/* Success panel — replaces the form, announced via role="status" */
.ct-success { text-align: center; padding: clamp(12px, 2vw, 28px) 0; }
.ct-success__badge {
  display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--grad-gold);
  box-shadow: var(--shadow-gold);
}
.ct-success__badge .icon { width: 28px; height: 28px; color: var(--navy-800); }
.ct-success__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: var(--fw-semi);
  letter-spacing: var(--track-display);
  color: var(--navy-800);
  margin-bottom: 10px;
  outline: none;
}
.ct-success__text {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 auto var(--space-3);
}

/* ==========================================================================
   5 · OFFICE DETAILS — contact ledger + abstract map panel
   ========================================================================== */
.ct-office__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: var(--space-5);
  align-items: start;
}
.ct-details { font-style: normal; display: flex; flex-direction: column; }
.ct-detail {
  padding: 20px 0;
  border-bottom: 1px solid rgba(198, 161, 91, 0.22);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ct-detail:first-child { padding-top: 0; }
.ct-detail__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sub);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-semi);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--gold-700);
}
.ct-detail__label .icon { width: 16px; height: 16px; color: var(--gold-600); }
.ct-detail__value { font-family: var(--font-body); font-size: 0.9375rem; line-height: 1.65; color: var(--navy-800); }
.ct-detail__link { color: var(--gold-700); text-decoration-color: rgba(198, 161, 91, 0.55); text-underline-offset: 3px; }
.ct-detail__link:hover { color: var(--gold-600); }
.ct-detail__ph {
  font-family: var(--font-sub);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-semi);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--warning-600);
}

/* Abstract illustrative map — no precise pin, decorative coastline */
.ct-map {
  margin: 0;
  background: var(--c-white);
  border: 1px solid rgba(198, 161, 91, 0.35);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 12px;
}
.ct-map__art { display: block; width: 100%; height: auto; border-radius: var(--r-sm); }
.ct-map__caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 6px 6px;
  font-family: var(--font-sub);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-semi);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--navy-800);
}
.ct-map__caption span {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: normal;
  text-transform: none;
  font-weight: var(--fw-regular);
  color: var(--ink-mute);
}

/* ==========================================================================
   6 · IMPORTANT NOTICE — dark navy block
   ========================================================================== */
.ct-notice {
  background: var(--grad-navy);
  color: var(--ivory-100);
  padding: var(--space-7) clamp(20px, 4vw, 64px);
}
.ct-notice__inner { max-width: 880px; margin-inline: auto; text-align: center; }
.ct-notice__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.6vw, 2.375rem);
  font-weight: var(--fw-semi);
  line-height: 1.2;
  letter-spacing: var(--track-display);
  color: var(--c-white);
  text-wrap: balance;
}
.ct-notice__icon { width: 26px; height: 26px; flex: none; color: var(--gold-400); }
.ct-notice__text {
  margin: 16px auto var(--space-3);
  max-width: 66ch;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.75;
  color: rgba(247, 242, 232, 0.74);
}
.ct-notice__link { color: var(--gold-400); }
.ct-notice__link:hover { color: var(--gold-300); }
.ct-notice__link:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 4px; border-radius: var(--r-xs); }

/* Anchor landing — navigation repair only: keeps the anchored card clear
   of the fixed header when arriving via contact.html#community-correspondence.
   No visual, spacing, colour or layout effect at rest.                       */
#community-correspondence { scroll-margin-top: calc(var(--header-h) + 20px); }

/* ==========================================================================
   Responsive — tablet & mobile
   ========================================================================== */
@media (min-width: 768px) and (max-width: 1023px) {
  .ct-channels__grid { grid-template-columns: repeat(2, 1fr); }
  .ct-office__grid { grid-template-columns: 1fr; }
  .ct-map { max-width: 640px; }
}
@media (max-width: 767px) {
  .ct-crumbs { padding-top: calc(var(--header-h) + var(--space-2)); }
  .ct-hero { padding: var(--space-6) clamp(20px, 5vw, 40px); }
  .ct-hero__title { font-size: clamp(2.125rem, 7.6vw, 2.5rem); }
  .ct-channels, .ct-formwrap, .ct-office { padding-block: var(--space-6); }
  .ct-channels__grid { grid-template-columns: 1fr; }
  .ct-form__grid { grid-template-columns: 1fr; }
  .ct-office__grid { grid-template-columns: 1fr; }
  .ct-notice { padding-block: var(--space-6); }
}

/* ==========================================================================
   7 · VISIT — premium location card (location-section redesign area only)
   ========================================================================== */

/* Repair — after the legacy illustrative map panel was withdrawn, the office
   details grid holds a single card: collapse it to one comfortable column. */
.ct-office__grid { grid-template-columns: minmax(0, 1fr); max-width: 840px; }

.ct-visit {
  background: var(--grad-navy);
  color: var(--ivory-100);
  padding: var(--space-7) clamp(20px, 4vw, 64px);          /* generous vertical spacing */
}
.ct-visit__inner { max-width: 1440px; margin-inline: auto; } /* matches the page container */
.ct-visit .eyebrow { color: var(--gold-400); }
.ct-visit__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: var(--fw-medium);
  line-height: 1.2;
  letter-spacing: var(--track-display);
  color: var(--c-white);
  margin: 18px 0 0;
  text-wrap: balance;
}
.ct-visit__rule {                                             /* thin muted-gold divider */
  width: 64px; height: 1px;
  background: rgba(198, 161, 91, 0.55);
  margin-top: var(--space-3);
}
.ct-visit__head { margin-bottom: var(--space-5); }

/* featured office card */
.ct-visit__card {
  background: var(--navy-800);
  border: 1px solid rgba(198, 161, 91, 0.35);                /* thin gold border */
  border-radius: var(--r-md);                                /* existing border radius */
  overflow: hidden;
}
.ct-visit__media { position: relative; height: 420px; background: var(--navy-800); overflow: hidden; }
.ct-visit__img {
  display: block; width: 100%; height: 100%;
  object-fit: cover; object-position: center 62%;            /* principal façade stays visible */
  transition: transform var(--dur-4) var(--ease-lux);
}
.ct-visit__card:hover .ct-visit__img { transform: scale(1.01); }   /* never more than 1.01 */
.ct-visit__hq {
  position: absolute; top: 18px; left: 18px;
  padding: 7px 14px;
  background: var(--gold-500);
  border-radius: 999px;
  font-family: var(--font-sub);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-semi);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--navy-800);
}

/* building-image fallback (shown only if the approved image is unavailable) */
.ct-visit__media--fallback { display: grid; place-items: center; }
.ct-visit__img-fallback {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  font-family: var(--font-sub);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-semi);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--gold-400);
}
.ct-visit__img-fallback .icon { width: 30px; height: 30px; }

/* bottom · dark navy information panel */
.ct-visit__info {
  font-style: normal;
  padding: clamp(24px, 3.2vw, 38px);
  border-top: 1px solid rgba(198, 161, 91, 0.28);
  display: flex; flex-direction: column; gap: 14px;
}
.ct-visit__city {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.6vw, 2.25rem);
  font-weight: var(--fw-medium);
  letter-spacing: var(--track-caps);
  color: var(--c-white);
  margin: 0;
}
.ct-visit__addr {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.8;
  color: rgba(247, 242, 232, 0.78);
  margin: 0;
}
.ct-visit__tel { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px 14px; margin: 0; }
.ct-visit__tel-label {
  font-family: var(--font-sub);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-semi);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--gold-400);
}
.ct-visit__tel-link {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--ivory-100);
  text-decoration: none;
  border-bottom: 1px solid rgba(198, 161, 91, 0.4);
  padding-bottom: 2px;
  transition: color var(--dur-2) var(--ease-standard), border-color var(--dur-2) var(--ease-standard);
}
.ct-visit__tel-link:hover { color: var(--gold-300); border-color: var(--gold-400); }
.ct-visit__tel-link:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 4px; border-radius: var(--r-xs); }

/* refined text call-to-action — view on map */
.ct-visit__map {
  display: inline-flex; align-items: center; gap: 10px;
  align-self: flex-start;
  min-height: 44px;                                          /* comfortable tap target */
  margin-top: 6px;
  font-family: var(--font-sub);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-semi);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold-400);
  transition: color var(--dur-2) var(--ease-standard);
}
.ct-visit__map:hover { color: var(--gold-300); }
.ct-visit__map:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 4px; border-radius: var(--r-xs); }
.ct-visit__map .icon { flex: none; }
.ct-visit__pin { width: 17px; height: 17px; }
.ct-visit__arrow { width: 15px; height: 15px; transition: transform var(--dur-2) var(--ease-standard); }
.ct-visit__map:hover .ct-visit__arrow { transform: translateX(4px); }   /* arrow shifts slightly right */

/* secondary · inline map preview */
.ct-visit__preview { margin-top: var(--space-4); }
.ct-visit__toggle {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 44px;
  padding: 0; border: 0; background: none; cursor: pointer;
  font-family: var(--font-sub);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-semi);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--gold-400);
  transition: color var(--dur-2) var(--ease-standard);
}
.ct-visit__toggle .icon { width: 15px; height: 15px; flex: none; transition: transform var(--dur-2) var(--ease-standard); }
.ct-visit__toggle:hover { color: var(--gold-300); }
.ct-visit__toggle:hover .icon { transform: translateX(4px); }
.ct-visit__toggle[aria-expanded="true"] .icon { transform: rotate(90deg); }
.ct-visit__toggle:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 4px; border-radius: var(--r-xs); }

.ct-visit__mappanel {
  margin-top: var(--space-3);
  border: 1px solid rgba(198, 161, 91, 0.35);                /* gold border, existing radius */
  border-radius: var(--r-md);
  background: var(--navy-800);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.ct-visit__mappanel:not([hidden]) { animation: ctVisitReveal var(--dur-4) var(--ease-lux) both; }
@keyframes ctVisitReveal {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.ct-visit__close {
  align-self: flex-end;
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px;
  margin: 10px 14px;
  padding: 0; border: 0; background: none; cursor: pointer;
  font-family: var(--font-sub);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-semi);
  letter-spacing: var(--track-caps);
  text-transform: uppercase;
  color: var(--gold-400);
  transition: color var(--dur-2) var(--ease-standard);
}
.ct-visit__close .icon { width: 14px; height: 14px; flex: none; }
.ct-visit__close:hover { color: var(--gold-300); }
.ct-visit__close:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 4px; border-radius: var(--r-xs); }

/* responsive — tablet & mobile */
@media (min-width: 768px) and (max-width: 1023px) {
  .ct-visit__media { height: 300px; }
}
@media (max-width: 767px) {
  .ct-visit { padding: var(--space-6) clamp(20px, 5vw, 40px); }
  .ct-visit__media { height: 240px; }
  .ct-visit__head { margin-bottom: var(--space-4); }
  .ct-visit__hq { top: 14px; left: 14px; }
}

/* location-preview panel (replaces the blocked embedded map) */
.ct-visit__loc {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}
.ct-visit__loc-art {
  display: block; width: 100%; height: 100%;
  min-height: 320px;
  background: var(--navy-800);
}
.ct-visit__loc-body {
  padding: clamp(24px, 3.2vw, 40px);
  display: flex; flex-direction: column; gap: 14px;
  background: var(--navy-800);
  border-left: 1px solid rgba(198, 161, 91, 0.22);
}
.ct-visit__loc-eyebrow { color: var(--gold-400); margin: 0; }
.ct-visit__loc-title {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2vw, 1.625rem);
  font-weight: var(--fw-medium);
  line-height: 1.25;
  letter-spacing: var(--track-display);
  color: var(--c-white);
  margin: 0;
}
.ct-visit__loc-addr {
  font-style: normal;
  display: flex; align-items: flex-start; gap: 12px;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  line-height: 1.75;
  color: rgba(247, 242, 232, 0.78);
}
.ct-visit__loc-pin { width: 17px; height: 17px; flex: none; color: var(--gold-400); margin-top: 3px; }
.ct-visit__loc-tel { margin: 0; }
.ct-visit__loc-actions {
  display: flex; flex-wrap: wrap; gap: var(--space-2);
  margin-top: var(--space-2);
}

@media (max-width: 1023px) {
  .ct-visit__loc { grid-template-columns: 1fr; }
  .ct-visit__loc-art { min-height: 0; height: 180px; }
  .ct-visit__loc-body { border-left: 0; border-top: 1px solid rgba(198, 161, 91, 0.22); }
}
@media (max-width: 767px) {
  .ct-visit__loc-actions { flex-direction: column; align-items: stretch; max-width: 420px; }
  .ct-visit__loc-actions .btn { justify-content: center; }
}
