/* ==========================================================================
   Site header: gradient accent band (logo + wordmark + tagline) with a
   teal rule beneath it, then a white bar with the centered page title.
   Self-contained: safe to include on any page.
   ========================================================================== */

:root {
  --site-header-height: 130px;
  /* Accent band + teal rule only (excludes the white title bar). The side
     rail docks right beneath this, alongside the title bar, not below it. */
  --site-header-accent-height: 67px;
}

.site-header {
  width: 100%;
}

.site-header__accent {
  display: flex;
  align-items: center;
  height: 63px;
  padding: 0 24px;
  box-sizing: border-box;
  background: linear-gradient(to bottom, #f8f6f4, #e4dfda);
  border-bottom: 4px solid var(--sw-teal, #00697d);
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-header__logo {
  height: 40px;
  width: 40px;
  display: block;
  flex-shrink: 0;
}

.site-header__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.site-header__brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 700;
  color: #262626;
  letter-spacing: 1.5px;
}

.site-header__tagline {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666;
  margin-top: 2px;
}

.site-header__bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 63px;
  background: #ffffff;
  border-bottom: 1px solid #ececec;
  padding: 0 20px;
  box-sizing: border-box;
}

.site-header__title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 600;
  color: #1f2d3d;
  letter-spacing: 0.2px;
}

@media (max-width: 480px) {
  .site-header__accent {
    height: 62px;
    padding: 0 14px;
  }

  .site-header__brand-name {
    font-size: 20px;
  }

  .site-header__tagline {
    display: none;
  }

  .site-header__title {
    font-size: 17px;
  }

  :root {
    --site-header-height: 106px;
    --site-header-accent-height: 55px;
  }
}
