/* Contact public page — matches homepage / restaurant chrome */

body.page-contact .contact-page {
  padding: calc(var(--site-header-height, 96px) + 40px) 0 72px;
  background: linear-gradient(165deg, #f4f7f8 0%, #e8eef0 45%, #dfe8ea 100%);
  min-height: calc(100svh - var(--site-header-height, 96px));
  box-sizing: border-box;
}

@media (max-width: 575px) {
  body.page-contact .contact-page {
    padding-top: calc(var(--site-header-height, 72px) + 24px);
  }
}

body.page-contact .container {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
  box-sizing: border-box;
}

.contact-page__eyebrow {
  font-family: "Jost", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3d5a62;
  margin: 0 0 12px;
}

.contact-page__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.12;
  color: #1a2e32;
  margin: 0 0 16px;
}

.contact-page__lead {
  font-family: "Jost", sans-serif;
  font-size: 1.125rem;
  line-height: 1.55;
  color: #4a5f66;
  margin: 0 auto;
  max-width: 52ch;
}

.contact-page__intro {
  text-align: center;
  margin-bottom: 40px;
}

.contact-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
  gap: 28px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

.contact-page__cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-page__card {
  padding: 24px 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(18, 34, 35, 0.08);
  box-shadow: 0 4px 16px rgba(18, 34, 35, 0.06);
}

.contact-page__card-icon {
  display: block;
  font-size: 28px;
  color: #3d6b75;
  margin-bottom: 14px;
}

.contact-page__card-icon--pin {
  width: 28px;
  height: 28px;
  margin-bottom: 14px;
  background-color: #3d6b75;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 21s7-4.5 7-11a7 7 0 1 0-14 0c0 6.5 7 11 7 11z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 21s7-4.5 7-11a7 7 0 1 0-14 0c0 6.5 7 11 7 11z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.contact-page__card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: #1a2e32;
  margin: 0 0 8px;
}

.contact-page__card-text {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #2a3f45;
  margin: 0 0 6px;
}

.contact-page__card-text a {
  color: #263e42;
  text-decoration: none;
}

.contact-page__card-text a:hover {
  color: #3d6b75;
  text-decoration: underline;
}

.contact-page__card-address {
  font-family: "Jost", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #4a5f66;
  margin: 0 0 10px;
}

.contact-page__card-note {
  font-family: "Jost", sans-serif;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #5a7078;
  margin: 0;
}

.contact-page__card-link {
  display: inline-block;
  margin-top: 12px;
  font-family: "Jost", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #3d6b75;
  text-decoration: none;
}

.contact-page__card-link:hover {
  text-decoration: underline;
}

.contact-page__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-page__hours,
.contact-page__cta-box {
  padding: 22px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(18, 34, 35, 0.08);
  box-shadow: 0 4px 16px rgba(18, 34, 35, 0.06);
}

.contact-page__aside-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: #1a2e32;
  margin: 0 0 14px;
}

.contact-page__hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-page__hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: "Jost", sans-serif;
  font-size: 0.875rem;
  color: #4a5f66;
}

.contact-page__hours-list li span:last-child {
  font-weight: 500;
  color: #2a3f45;
  text-align: right;
}

.contact-page__cta-text {
  font-family: "Jost", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #4a5f66;
  margin: 0 0 16px;
}

.contact-page__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: "Jost", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  box-sizing: border-box;
  transition: background 0.2s ease, color 0.2s ease;
}

.contact-page__btn--primary {
  color: #fff;
  background: #1a2e32;
  border: 1px solid #1a2e32;
}

.contact-page__btn--primary:hover {
  background: #2d4549;
  color: #fff;
}

.contact-page__map {
  max-width: 1120px;
  margin: 48px auto 0;
  padding: 40px clamp(16px, 4vw, 32px) 0;
  border-top: 1px solid rgba(18, 34, 35, 0.08);
  box-sizing: border-box;
}

.contact-page__section-head {
  margin-bottom: 24px;
  text-align: center;
}

.contact-page__section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.15;
  color: #1a2e32;
  margin: 0 0 12px;
}

.contact-page__section-lead {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #4a5f66;
  margin: 0 auto;
  max-width: 48ch;
}

.contact-page__map-frame {
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 16 / 9;
  min-height: 320px;
  background: #d8e2e5;
  border: 1px solid rgba(18, 34, 35, 0.08);
  box-shadow: 0 8px 32px rgba(18, 34, 35, 0.1);
}

.contact-page__map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.contact-page__map-footer {
  margin: 16px 0 0;
  text-align: center;
  font-family: "Jost", sans-serif;
  font-size: 0.875rem;
}

.contact-page__map-footer a {
  color: #3d6b75;
  font-weight: 600;
  text-decoration: none;
}

.contact-page__map-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .contact-page__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .contact-page__map {
    margin-top: 40px;
    padding-top: 32px;
  }
}

@media (max-width: 575px) {
  .contact-page__map-frame {
    min-height: 260px;
  }

  .contact-page__map-frame iframe {
    min-height: 260px;
  }
}
