.footer-section {
  font-family: "Zen Kaku Gothic New", sans-serif;;
  position: relative;
  overflow: hidden;
  background: #1f1a17;
  color: #fff;
}

.footer-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer-overlay {
  position: relative;
  z-index: 1;
  /* background: rgba(28, 21, 16, 0.48); */
}

.footer-container {
  max-width: none;
  width: 100%;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  display: block;
  width: 5rem;
  height: auto;
  margin-bottom: 1.5rem;
}

.footer-title {
  margin: 0 0 4rem;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.12em;
  color: #fff;
}

.footer-info {
  width: 100%;
}

.footer-row {
  width: 100%;
  margin: 0 0 1.5rem;
  align-items: center;
}

.footer-row:last-of-type {
  margin-bottom: 4rem;
}

.footer-label,
.footer-text,
.footer-copy p {
  margin: 0;
  color: #fff;
}

.footer-label {
  min-height: 2.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.98);
  color: #000;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

.footer-row a{
  text-decoration: underline;
  color: #FFF;
}

.footer-row a:hover{
  text-decoration: none;
}

.footer-tel {
  font-size: 1.25rem;
}

.footer-copy {
  margin-top: 2rem;
  text-align: center;
}

.footer-copy p {
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

/* cvp */
.cvp-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
  z-index: 1000;
}

.cvp-action {
  display: block;
  width: calc(50% - 0.25rem);
  padding: 0.75rem;
  background: #fff;
  text-decoration: none;
  border: solid 1px #be9768;
  transition:
    transform 380ms ease-out,
    box-shadow 380ms ease-out;
}

.cvp-action:hover {
  text-decoration: none;
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.cvp-action-row {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}

.cvp-action-row > * {
  padding: 0;
}

.cvp-action-icon-wrap {
  width: 1.5rem;
  margin-right: 0.75rem;
  flex: 0 0 auto;
}

.cvp-action-icon {
  display: block;
  width: 100%;
  height: auto;
}

.cvp-action-label-wrap {
  width: auto;
  max-width: none;
  flex: 0 0 auto;
}

.cvp-action-label {
  margin: 0;
  color: #be9768;
  font-family: "Zen Antique", serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.cvp-action-label p {
  margin-bottom: 0;
}

/* popup */
.cvp-popup {
  font-family: "Zen Kaku Gothic New", sans-serif;
  position: fixed;
  inset: 0;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 280ms ease,
    visibility 280ms ease;
}

.cvp-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cvp-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 26, 23, 0.48);
}

.cvp-popup-dialog {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cvp-popup-body {
  width: 100%;
  max-width: 90vw;
  min-width: 0;
  max-height: 92vh;
  overflow: scroll;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  color: #000;
  text-align: center;
}

.cvp-popup-title,
.cvp-popup-notes p,
.cvp-popup-hours p,
.cvp-popup-call p {
  margin: 0;
}

.cvp-popup-title {
  margin-bottom: 1.25rem;
  font-family: "Zen Antique", serif;
  font-size: 1.25rem;
  line-height: 1.4;
}

.cvp-popup-notes {
  margin-bottom: 1rem;
}

.cvp-popup-notes p {
  font-size: .875rem;
  line-height: 1.9;
  text-align: left;
  padding-left: 1em;
  text-indent: -1em;
}

.cvp-popup-notes p.no-indent {
  padding-left: 0;
  text-indent: 0;
}

.cvp-popup-hours {
  margin-bottom: 2rem;
}

.cvp-popup-hours p {
  font-size: .875rem;
  line-height: 1.8;
}

.cvp-popup-call {
  width: 8rem;
  height: 8rem;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: #be9768;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cvp-popup-call:hover {
  color: #fff;
  text-decoration: none;
}

.cvp-popup-call p {
  font-family: "Zen Antique", serif;
  font-size: 1.25rem;
  line-height: 1.35;
}

.cvp-popup-close-button {
  min-width: 3.75rem;
  min-height: 1.75rem;
  padding: 0.25rem 0.75rem;
  border: 0;
  border-radius: 999px;
  background: #9b9b9b;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.4;
  display: inline-block;
}

.cvp-popup-close-button p{
  margin: auto;
  cursor: pointer;
}

body.is-cvp-popup-open {
  overflow: hidden;
}

@media (min-width: 415px) {
  .cvp-popup-body {
    padding: 3rem 1.5rem 2rem;
  }

  .cvp-popup-title {
    margin-bottom: 2rem;
    font-size: 2rem;
  }

  .cvp-action-label {
    font-size: 1rem;
    white-space: nowrap;
  }
}

@media (min-width: 769px) {
  .footer-info {
    max-width: 32rem;
  }

  .cvp-actions {
    right: 2rem;
    bottom: 2rem;
    left: auto;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
  }

  .cvp-action {
    width: 100%;
    padding: 0.75rem 1rem;
  }

  .cvp-popup-dialog {
    padding: 2rem;
  }

  .cvp-popup-body {
    padding: 3rem 2rem 2rem;
  }
}

@media (min-width: 992px) {
  .cvp-popup-body {
    max-width: 60vw;
    min-width: 52rem;
  }

  .footer-info {
    max-width: 50rem;
  }
}
