:root {
  --hemlock: #2E4433;
  --hemlock-2: #4A6B3C;
  --hemlock-deep: #22331F;
  --wampum: #4A3B63;
  --shell: #F2F4EF;
  --shell-2: #E8E9E1;
  --shell-3: #DCDED3;
  --paper: #FBFCF9;
  --ink: #1B211A;
  --ink-2: #414A3F;
  --ink-3: #6B7368;
  --rule: #C9CCC0;
  --rule-soft: #DDE0D5;
  --grain: #C0A878;
  /* one accent per destination site */
  --acc-ewm: #4A6B3C;
  --acc-md: #5C3A1E;
  --acc-star: #056A99;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --w: 1140px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--shell);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17.5px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  width: 100%;
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 48px);
}

h1, h2, h3, h4 {
  font-weight: 400;
  line-height: 1.15;
}

img, svg {
  max-width: 100%;
}

a {
  color: var(--wampum);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wampum);
  font-weight: 600;
}

.lede {
  font-size: clamp(18px, 2.1vw, 21px);
  color: var(--ink-2);
  max-width: 62ch;
  line-height: 1.55;
  margin-top: 16px;
}

.prose {
  max-width: 66ch;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 22px;
  color: var(--ink-2);
}

.prose strong {
  color: var(--ink);
  font-weight: 600;
}

/* two-row device */
.tworow {
  display: grid;
  gap: 3px;
  max-width: 150px;
}

.tworow span {
  display: block;
  height: 5px;
  border-radius: 1px;
  background: var(--shell-3);
}

.tworow span:nth-child(1) {
  background: var(--wampum);
}

/* Top bar */
.topbar {
  background: var(--hemlock-deep);
  color: #B9C7B4;
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.05em;
}

.topbar .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
}

.topbar a {
  color: #DCE5D7;
  text-decoration: none;
  font-weight: 600;
}

.topbar a:hover {
  color: var(--grain);
}

.topbar .est {
  margin-left: auto;
  color: #8FA089;
  font-style: italic;
  font-family: var(--serif);
  font-size: 13.5px;
  letter-spacing: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--hemlock);
  border-bottom: 1px solid rgba(220, 230, 215, 0.16);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  color: #F4F7F0;
  margin-right: auto;
}

.brand svg {
  width: 40px;
  height: 40px;
  color: #C6D6BE;
  flex: none;
}

.brand .bn {
  font-size: 16.5px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  display: block;
}

.brand .bt {
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: #93A78D;
  margin-top: 3px;
  display: block;
}

nav.main {
  display: flex;
  gap: 26px;
  font-family: var(--sans);
  font-size: 13.5px;
  letter-spacing: 0.03em;
}

nav.main a {
  color: #C3D0BE;
  text-decoration: none;
}

nav.main a:hover {
  color: var(--grain);
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 11px 20px;
  border-radius: 2px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.12s ease, background 0.15s ease, color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.cream {
  background: var(--shell);
  color: var(--hemlock);
}

.btn.cream:hover {
  background: #fff;
}

.btn.outline {
  border-color: rgba(220, 230, 215, 0.45);
  color: #DCE5D7;
  background: transparent;
}

.btn.outline:hover {
  border-color: var(--grain);
  color: var(--grain);
}

.btn.green {
  background: var(--hemlock);
  color: var(--shell);
}

.btn.green:hover {
  background: var(--hemlock-2);
}

/* Hero */
.hero {
  background: var(--hemlock);
  color: #EDF0E8;
  padding: clamp(52px, 8vw, 104px) 0 clamp(46px, 7vw, 88px);
}

.hero .tworow {
  margin-bottom: 32px;
}

.hero .tworow span:nth-child(1) {
  background: #B3A0D0;
}

.hero .tworow span:nth-child(2) {
  background: #D9DDD1;
}

.hero .kicker {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #B9C7B4;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(36px, 6.6vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.02em;
  max-width: 15ch;
  color: #F4F7F0;
}

.hero .sub {
  margin-top: 24px;
  font-size: clamp(17.5px, 2.2vw, 21.5px);
  color: #C3D0BE;
  max-width: 56ch;
  line-height: 1.52;
}

.hero .cta {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero .facts {
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid rgba(220, 230, 215, 0.22);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 52px;
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: #A9BAA5;
}

.hero .facts b {
  display: block;
  color: #E6EDE1;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 14px;
  margin-top: 4px;
}

.hero .facts b a {
  color: #E6EDE1;
  text-decoration: none;
}

.hero .facts b a:hover {
  color: var(--grain);
}

/* Bands */
.band {
  padding: clamp(46px, 6.5vw, 84px) 0;
  border-bottom: 1px solid var(--rule-soft);
}

.band.alt {
  background: var(--paper);
}

.band.dark {
  background: var(--hemlock);
  color: #EDF0E8;
  border-bottom: none;
}

.band.dark .eyebrow {
  color: #B3A0D0;
}

.band.dark h2 {
  color: #F4F7F0;
}

.band.dark .lede, .band.dark .prose {
  color: #C3D0BE;
}

.band.dark .prose strong {
  color: #EDF0E8;
}

h2 {
  font-size: clamp(27px, 3.9vw, 42px);
  letter-spacing: -0.018em;
  line-height: 1.12;
  margin-top: 12px;
}

h3 {
  font-size: clamp(19px, 2.2vw, 22px);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.28;
}

/* The three doors */
.doors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
  margin-top: 40px;
  align-items: stretch;
}

.door {
  display: flex;
  flex-direction: column;
  background: var(--shell);
  border: 1px solid var(--rule-soft);
  border-top: 4px solid var(--accent);
  border-radius: 3px;
  padding: 28px 26px 26px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.14s ease, box-shadow 0.14s ease, border-color 0.14s ease;
}

.door.ewm {
  --accent: var(--acc-ewm);
}

.door.md {
  --accent: var(--acc-md);
}

.door.star {
  --accent: var(--acc-star);
}

.door:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 26px rgba(27, 33, 26, 0.1);
  border-bottom-color: var(--rule);
}

.door .k {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 13px;
}

.door h3 {
  margin-bottom: 12px;
  font-size: clamp(20px, 2.4vw, 24px);
  color: var(--ink);
}

.door > p {
  color: var(--ink-2);
  font-size: 16.5px;
  line-height: 1.55;
}

.door ul {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.door li {
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--ink-2);
  padding-left: 15px;
  position: relative;
  line-height: 1.45;
}

.door li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 1px;
  background: var(--accent);
}

.door .go {
  margin-top: auto;
  padding-top: 22px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--accent);
  word-break: break-word;
}

.door .go em {
  font-style: normal;
  display: inline-block;
  transition: transform 0.14s ease;
}

.door:hover .go em {
  transform: translateX(4px);
}

/* Pull quote */
.pull {
  background: var(--shell-2);
  border-bottom: 1px solid var(--rule-soft);
  padding: clamp(44px, 6vw, 76px) 0;
}

.pull blockquote {
  max-width: 24ch;
  font-size: clamp(24px, 3.6vw, 40px);
  line-height: 1.22;
  letter-spacing: -0.018em;
  color: var(--hemlock);
  font-style: italic;
}

.pull .attr {
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* Sidenote */
.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  margin-top: 34px;
}

.sidenote {
  background: var(--shell);
  border-left: 3px solid var(--wampum);
  padding: 22px 24px;
  border-radius: 0 3px 3px 0;
  max-width: 66ch;
}

.sidenote .h {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wampum);
  font-weight: 600;
  margin-bottom: 10px;
}

.sidenote p {
  color: var(--ink-2);
  font-size: 16.5px;
  line-height: 1.58;
}

.band.alt .sidenote {
  background: var(--shell);
}

.band.dark .sidenote {
  background: rgba(255, 255, 255, 0.045);
  border-left-color: #B3A0D0;
}

.band.dark .sidenote p {
  color: #C3D0BE;
}

.band.dark .sidenote .h {
  color: #B3A0D0;
}

/* Contact */
.contactgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 38px;
}

.cblock .k {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: #B3A0D0;
  font-weight: 600;
  margin-bottom: 10px;
}

.cblock .v {
  font-size: clamp(21px, 2.7vw, 27px);
  letter-spacing: -0.01em;
  color: #F4F7F0;
}

.cblock .v.small {
  font-size: clamp(17px, 2vw, 21px);
}

.cblock .v a {
  color: #F4F7F0;
  text-decoration: none;
}

.cblock .v a:hover {
  color: var(--grain);
}

.cblock .n {
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 13px;
  color: #A9BAA5;
}

/* Footer */
.site-footer {
  background: var(--hemlock-deep);
  color: #8FA089;
  padding: 44px 0 52px;
  font-size: 15.5px;
}

.site-footer .tworow {
  margin-bottom: 22px;
}

.site-footer .tworow span:nth-child(1) {
  background: #6B5A87;
}

.site-footer .tworow span:nth-child(2) {
  background: #3A4A35;
}

.site-footer strong {
  color: #DCE5D7;
  font-weight: 600;
}

.site-footer a {
  color: #B9C7B4;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--grain);
}

.site-footer .fgrid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 56px;
  align-items: flex-start;
}

.site-footer .fine {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(220, 230, 215, 0.13);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: #75846F;
  max-width: 70ch;
  line-height: 1.6;
}

/* "Looking for Beca Lewis?" note */
.alsonote {
  margin-top: 30px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid #6B5A87;
  border-radius: 0 3px 3px 0;
  max-width: 62ch;
  color: #B9C7B4;
  font-size: 16px;
  line-height: 1.55;
}

.alsonote strong {
  color: #DCE5D7;
  font-weight: 600;
}

.alsonote a {
  color: #C3B4DE;
  text-decoration: none;
  border-bottom: 1px solid rgba(195, 180, 222, 0.4);
}

.alsonote a:hover {
  color: var(--grain);
  border-bottom-color: var(--grain);
}

/* Contact details written in by script; noscript fallback is deliberately unparseable */
.cx noscript {
  font-family: var(--sans);
  font-size: 0.82em;
  letter-spacing: 0.02em;
}

/* Interior pages (Page / 404 templates) */
#content {
  background: var(--paper);
  padding: clamp(46px, 6.5vw, 84px) 0;
}

#content .page-container {
  max-width: 68ch;
}

#content .headline-area {
  margin-bottom: 28px;
}

#content .headline-area h1 {
  font-size: clamp(28px, 4.4vw, 46px);
  letter-spacing: -0.018em;
  margin-bottom: 10px;
}

#content .byline {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-3);
}

#content .page-container p {
  margin-bottom: 16px;
  color: var(--ink-2);
}

#content .page-container ul, #content .page-container ol {
  margin-bottom: 16px;
  padding-left: 22px;
}

/* Responsive */
@media (max-width: 860px) {
  .site-header .wrap {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    text-align: center;
  }
  .brand {
    margin-right: 0;
  }
  nav.main {
    width: 100%;
    order: 3;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
  }
  .site-header .btn.cream {
    order: 2;
  }
}
@media (max-width: 520px) {
  .topbar .est {
    margin-left: 0;
    width: 100%;
  }
  .hero .cta .btn {
    width: 100%;
    text-align: center;
  }
}