:root {
  --oyster: #f4efec;
  --mauve: #b89a98;
  --rosewood: #6a3f44;
  --stone: #9a8c86;
  --plum: #2f2529;
  --crimson: #8e3b46;
  --white: #fff;
  --ff-display: "Cormorant Garamond", Georgia, serif;
  --ff-body: "Montserrat", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: var(--oyster);
  color: var(--plum);
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select { font: inherit; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--crimson);
  outline-offset: 3px;
}
.sr-only {
  clip: rect(0, 0, 0, 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.breadcrumb {
  margin: 0 auto;
  max-width: 1180px;
  padding: 20px 24px 0;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}
.breadcrumb li {
  color: #7f716c;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
}
.breadcrumb a {
  color: #7f716c;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--rosewood); }

.site-header {
  background: var(--plum);
  border-bottom: 1px solid rgba(184, 154, 152, 0.25);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header.light { background: var(--oyster); }
.site-header-inner {
  align-items: center;
  display: flex;
  height: 68px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 24px;
}
.site-logo {
  align-items: center;
  color: var(--mauve);
  display: flex;
  text-decoration: none;
}
.site-header.light .site-logo { color: var(--rosewood); }
.site-logo img { height: 52px; width: auto; }
.nav-cta {
  background: var(--rosewood);
  border-radius: 2px;
  color: var(--oyster);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  padding: 8px 18px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--crimson); }
.site-nav {
  align-items: center;
  display: flex;
  gap: 18px;
}
.site-nav > a:not(.nav-cta) {
  color: var(--mauve);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.site-header.light .site-nav > a:not(.nav-cta) { color: var(--rosewood); }
.site-nav > a:not(.nav-cta):hover { color: var(--oyster); }
.site-header.light .site-nav > a:not(.nav-cta):hover { color: var(--crimson); }
.site-footer {
  background: var(--plum);
  color: var(--stone);
  padding: 40px 24px;
}
.footer-bottom {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1280px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-links a {
  color: var(--stone);
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--mauve); }
.footer-copy {
  color: var(--stone);
  font-size: 0.6rem;
  letter-spacing: 0.04em;
}
.back-to-top {
  align-items: center;
  background: var(--rosewood);
  border: 1px solid rgba(244, 239, 236, 0.32);
  border-radius: 999px;
  bottom: 18px;
  box-shadow: 0 12px 28px rgba(26, 17, 23, 0.28);
  color: var(--oyster);
  cursor: pointer;
  display: none;
  font-family: var(--ff-display);
  font-size: 1.6rem;
  height: 46px;
  justify-content: center;
  line-height: 1;
  opacity: 0;
  position: fixed;
  right: 18px;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, background 0.2s;
  width: 46px;
  z-index: 120;
}
.back-to-top:hover {
  background: var(--crimson);
}
.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}
.footer-trust a {
  color: var(--mauve);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}
.eyebrow {
  color: var(--mauve);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero .eyebrow,
.roundup-hero .eyebrow,
.home-footer .eyebrow {
  color: #eadfda;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

@media (max-width: 700px) {
  .site-header-inner { height: 60px; padding: 0 16px; }
  .site-logo img { height: 44px; }
  .site-footer { overflow: hidden; padding: 28px 18px 30px; }
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }
  .footer-links {
    column-gap: 12px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
    row-gap: 12px;
    width: 100%;
  }
  .footer-links a {
    font-size: 0.54rem;
    letter-spacing: 0.075em;
    line-height: 1.25;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
    text-align: left;
  }
  .footer-copy { font-size: 0.58rem; }
  .back-to-top {
    display: none;
  }
}
