/* Shared site navigation: one consistent header on every interior page. */
.top-bar {
  height: 48px !important;
  padding: 0 24px !important;
}

.byline .author-name {
  color: inherit;
  text-decoration: none;
}

.byline .author-name:hover,
.byline .author-name:focus-visible {
  color: #4ade80;
  text-decoration: underline;
}

.header {
  top: 48px !important;
  min-height: 78px;
  padding: 0 40px !important;
  display: flex;
  align-items: center;
}

.header-top {
  display: contents !important;
}

.header-logo {
  order: 1;
  flex: 0 0 auto;
  margin-right: 34px;
  position: relative;
  z-index: 103;
}

.header-logo img {
  display: block;
  height: 44px !important;
  width: auto;
}

.header-logo a {
  display: block;
  border-radius: 4px;
  pointer-events: auto !important;
  cursor: pointer;
}

.header-logo a:focus-visible {
  outline: 3px solid #4ade80;
  outline-offset: 5px;
}

.header-nav-row {
  order: 2;
  flex: 1 1 auto;
  min-width: 0;
  border-top: 0 !important;
  overflow: visible !important;
}

.header-nav {
  display: flex !important;
  align-items: center;
  gap: 4px;
  padding: 0 !important;
}

.header-nav a {
  padding: 27px 16px 25px !important;
  font-size: 14px !important;
}

.header-book-btn {
  order: 3;
  flex: 0 0 auto;
  margin-left: 24px;
  padding: 11px 22px !important;
}

.menu-toggle {
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 3px 0;
  border-radius: 2px;
  background: #fff;
  transition: transform .25s ease, opacity .2s ease;
}

@media (max-width: 767px) {
  .top-bar {
    height: 76px !important;
    padding: 12px 20px !important;
    align-items: flex-start !important;
    justify-content: center !important;
    flex-direction: column;
    gap: 1px !important;
  }

  .top-bar p,
  .top-bar a {
    font-size: 13px !important;
    line-height: 1.35;
  }

  .header {
    top: 76px !important;
    min-height: 72px;
    height: 72px;
    padding: 0 18px !important;
    display: flex;
    flex-wrap: nowrap;
  }

  .header-logo {
    margin-right: auto;
  }

  .header-logo img {
    height: 38px !important;
  }

  .header-book-btn {
    margin-left: 10px;
    padding: 9px 14px !important;
    font-size: 12px !important;
  }

  .menu-toggle {
    display: block;
    order: 4;
    flex: 0 0 auto;
    margin-left: 5px;
  }

  .header-nav-row {
    position: absolute;
    top: 72px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    z-index: 101;
    flex: none !important;
    width: 100% !important;
    min-width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    align-self: auto !important;
    max-height: 0;
    overflow: hidden !important;
    opacity: 0;
    visibility: hidden;
    background: rgba(10,10,10,.98);
    border-top: 1px solid rgba(255,255,255,.07) !important;
    border-bottom: 1px solid rgba(255,255,255,.07);
    transition: max-height .3s ease, opacity .2s ease, visibility .2s ease;
  }

  .header.menu-open .header-nav-row {
    max-height: calc(100dvh - 148px);
    opacity: 1;
    visibility: visible;
    overflow-y: auto !important;
  }

  .header-nav {
    display: flex !important;
    align-items: stretch;
    justify-content: flex-start !important;
    flex-direction: column;
    gap: 0;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 10px 18px 16px !important;
  }

  .header-nav a {
    width: 100%;
    padding: 11px 8px !important;
    font-size: 15px !important;
    border-bottom: 0 !important;
    border-left: 2px solid transparent;
  }

  .header-nav a.active {
    padding-left: 14px !important;
    border-left-color: var(--green);
  }

  .header.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .header.menu-open .menu-toggle span:nth-child(2),
  .header.menu-open .menu-toggle span:nth-child(3) { opacity: 0; }
  .header.menu-open .menu-toggle span:nth-child(4) { transform: translateY(-7.5px) rotate(-45deg); }

  .page-hero { padding-top: 188px !important; }
  .profile-start { padding-top: 188px !important; }
}

@media (min-width: 768px) and (max-width: 1020px) {
  .header { padding: 0 24px !important; }
  .header-logo { margin-right: 18px; }
  .header-nav a { padding-left: 9px !important; padding-right: 9px !important; font-size: 12px !important; }
  .header-book-btn { margin-left: 12px; }
}

/* Exact shared version of the homepage “Get In Touch” component. */
.cta-banner {
  display: none !important;
}

.site-contact {
  padding: 80px 24px;
  color: var(--white);
}

.site-contact .section-title {
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
}

.site-contact .info-grid { display: grid; gap: 24px; }
.site-contact .info-card { padding: 24px 8px; border-top: 2px solid var(--gray-800); transition: border-color .3s; }
.site-contact .info-card:hover { border-top-color: var(--green); }
.site-contact .info-card .label { margin-bottom: 8px; color: var(--gray-500); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.site-contact .info-card .value { color: var(--white); font-size: 16px; font-weight: 700; line-height: 1.5; }
.site-contact .info-card a { color: var(--green); text-decoration: none; }
.site-contact .info-card a:hover { text-decoration: underline; }
.site-contact .directions-link { display: inline-block; margin-top: 8px; font-size: 13px; }
.site-contact .closed-note { color: var(--gray-500); font-size: 13px; }
.site-contact .map-container { margin-top: 20px; overflow: hidden; border: 1px solid rgba(74,222,128,.45); border-radius: var(--radius); box-shadow: 0 12px 40px rgba(74,222,128,.12); }
.site-contact .map-container iframe { display: block; width: 100%; height: 250px; border: 0; filter: saturate(1.18) contrast(1.04); }

@media (min-width: 640px) {
  .site-contact .info-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 960px) {
  .site-contact { padding-left: 80px; padding-right: 80px; }
  .site-contact .info-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1200px) {
  .site-contact { max-width: 1400px; margin: 0 auto; padding-left: 120px; padding-right: 120px; }
}
