:root {
  --ink: #333333;
  --muted: #747474;
  --paper: #ffffff;
  --paper-strong: #ffffff;
  --brand: #e9a825;
  --brand-dark: #785510;
  --line: #e0dede;
  --line-soft: #e9eaee;
  --footer: #363839;
  --footer-text: #8c8989;
  --shadow: 0 10px 28px rgba(51, 51, 51, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  color: var(--muted);
  background: var(--paper);
  font-family: "Source Sans 3", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.72;
}

main {
  flex: 1;
}

a {
  color: var(--ink);
  text-decoration-color: rgba(233, 168, 37, 0.45);
  text-underline-offset: 0.18em;
  transition: color 160ms ease, border-color 160ms ease, text-decoration-color 160ms ease;
}

a:hover {
  color: var(--brand);
}

a:focus-visible,
summary:focus-visible {
  outline: 2px solid rgba(233, 168, 37, 0.45);
  outline-offset: 2px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
}

.topbar,
.nav {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.topbar {
  display: flex;
  justify-content: flex-end;
  padding: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
}

.topbar__links {
  display: flex;
  gap: 0.42rem;
}

.topbar__links a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(233, 168, 37, 0.45);
}

.topbar__links a:hover {
  color: var(--brand);
  text-decoration-color: currentColor;
}

.nav {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.25rem 0 0.9rem;
}

.brand {
  display: inline-block;
  color: var(--ink);
  text-decoration: none;
}

.brand__logo {
  display: block;
  width: 178px;
  height: auto;
  object-fit: contain;
}

.menu {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu a {
  display: block;
  border-top: 3px solid transparent;
  padding: 0.6rem 0 0.25rem;
  color: var(--ink);
  font-size: 0.95rem;
  text-decoration: none;
}

.menu a:hover,
.menu a[aria-current="page"] {
  border-color: var(--brand);
  background: transparent;
  color: var(--brand);
}

.hero,
.section,
.site-footer {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(2.2rem, 6vw, 5rem);
  align-items: start;
  padding: clamp(2.4rem, 5.5vw, 4rem) 0 clamp(1.9rem, 4.5vw, 3.2rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Libre Baskerville", Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.15;
}

h1 {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(2.15rem, 4vw, 3.45rem);
  letter-spacing: -0.024em;
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 2.5vw, 2.05rem);
  letter-spacing: -0.015em;
}

h3 {
  margin: 0 0 0.45rem;
  font-size: 1.12rem;
}

.lead {
  margin: 1rem 0 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
}

.hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
  margin-top: 2.65rem;
}

.hero-card::before {
  display: block;
  height: 0.45rem;
  background:
    linear-gradient(90deg, #e8cb90 0%, #d6ad5a 100%);
  content: "";
}

.hero-card__body {
  padding: clamp(1.3rem, 2.4vw, 1.75rem);
}

.hero-image {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--paper-strong);
  line-height: 0;
}

.hero-image::before {
  display: block;
  height: 0.45rem;
  background: linear-gradient(90deg, #e8cb90 0%, #d6ad5a 100%);
  content: "";
}

.hero-image img {
  display: block;
  width: 100%;
  height: auto;
}

.quote {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, "Times New Roman", serif;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.35;
}

.section {
  padding: clamp(2rem, 4.5vw, 3.6rem) 0;
}

.section--tight {
  padding-top: 1rem;
}

.publishers-hero {
  padding-bottom: 3rem;
}

.newsletter-section {
  padding-top: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  background: var(--paper);
  color: var(--ink);
  padding: 0.6rem 1rem;
  border: 2px solid var(--brand);
  text-decoration: none;
  font-weight: 600;
}

.grid > .panel {
  height: 100%;
}

.team {
  display: grid;
  gap: 1.1rem;
}

.person,
.client,
.panel {
  border: 1px solid var(--line);
  border-radius: 0;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.person {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 1.6rem;
  padding: 1.45rem;
}

.avatar {
  width: 180px;
  height: 232px;
  border-radius: 0;
  border: 1px solid var(--line);
  object-fit: cover;
  object-position: center top;
}

.person > div {
  min-width: 0;
}

.person p {
  max-width: 74ch;
}

.bio-details {
  max-width: 74ch;
  margin: 0 0 0.85rem;
}

.bio-details summary {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  padding: 0;
  color: var(--brand);
  font-weight: 700;
  list-style: none;
  text-decoration: underline;
  text-decoration-color: rgba(233, 168, 37, 0.45);
  text-underline-offset: 0.18em;
}

.bio-details summary::-webkit-details-marker {
  display: none;
}

.bio-details summary::after {
  margin-left: 0.35rem;
  content: "+";
}

.bio-details summary:hover {
  color: var(--brand-dark);
  text-decoration-color: currentColor;
}

.bio-details[open] summary {
  margin-bottom: 0.85rem;
}

.bio-details[open] summary::after {
  content: "-";
}

.person a:not(.button),
.client a,
.panel a {
  font-weight: 700;
}

.person a:not(.button):hover,
.client a:hover,
.panel a:hover {
  text-decoration-color: currentColor;
}

.role {
  margin: 0 0 0.7rem;
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.person p,
.client p,
.panel p {
  margin: 0 0 0.85rem;
}

.person p:last-child,
.client p:last-child,
.panel p:last-child {
  margin-bottom: 0;
}

.clients-list {
  display: grid;
  gap: 0.65rem;
}

.client {
  padding: 1.25rem;
}

.client-details {
  padding: 0;
}

.client-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  padding: 1rem 1.25rem;
  color: var(--ink);
  font-family: "Libre Baskerville", Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 700;
  list-style: none;
  transition: color 160ms ease, background-color 160ms ease;
}

.client-details summary::-webkit-details-marker {
  display: none;
}

.client-details summary::after {
  color: var(--brand);
  font-family: "Source Sans 3", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.15rem;
  content: "+";
}

.client-details summary:hover {
  background: #fafafa;
  color: var(--brand);
}

.client-details[open] summary {
  border-bottom: 1px solid var(--line);
}

.client-details[open] summary::after {
  content: "-";
}

.client-details.has-logo[open] {
  display: flow-root;
}

.client-logo {
  display: block;
  float: left;
  max-width: min(190px, calc(100% - 2rem));
  max-height: 115px;
  margin: 1.25rem 1.25rem 1.25rem 1.25rem;
  object-fit: contain;
}

.client-details.has-logo p {
  margin: 0;
  margin-left: calc(230px + 1.25rem);
  padding: 1.25rem 1.25rem 1.25rem 0;
}

.client-details.no-logo p {
  margin: 0;
  padding: 1.25rem;
}

.panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 2.6vw, 1.95rem) clamp(1.25rem, 2.5vw, 1.8rem) clamp(1.25rem, 2.5vw, 1.8rem);
}

.panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0.45rem;
  background: linear-gradient(90deg, #e8cb90 0%, #d6ad5a 100%);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  border: 1px solid #d6ad5a;
  border-radius: 0;
  padding: 0.65rem 1.05rem;
  background: linear-gradient(180deg, #e8cb90 0%, #d6ad5a 100%);
  color: var(--brand-dark);
  font-weight: 700;
  text-decoration: none;
}

.button:hover {
  background: linear-gradient(180deg, #d6ad5a 0%, #e8cb90 100%);
  color: var(--brand-dark);
}

#mc_embed_signup {
  clear: left;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

#mc_embed_signup form {
  margin-top: 1.3rem;
}

#mc_embed_signup .indicates-required {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: right;
}

#mc_embed_signup .asterisk {
  position: static !important;
  display: inline !important;
  margin-left: 0.15rem;
  color: var(--brand-dark);
  font-weight: 700;
}

#mc_embed_signup .mc-field-group {
  margin: 0 0 0.95rem;
}

#mc_embed_signup label,
#mc_embed_signup .input-group p {
  display: block;
  margin: 0 0 0.35rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

#mc_embed_signup label br,
#mc_embed_signup .mc-field-group > br {
  display: none;
}

#mc_embed_signup input[type="email"],
#mc_embed_signup input[type="text"] {
  width: min(100%, 32rem);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0.55rem 0.65rem;
  color: var(--ink);
  font: inherit;
}

#mc_embed_signup input[type="email"]:focus,
#mc_embed_signup input[type="text"]:focus {
  border-color: #d6ad5a;
  outline: 2px solid rgba(233, 168, 37, 0.25);
  outline-offset: 0;
}

#mc_embed_signup ul {
  display: grid;
  gap: 0.22rem;
  margin: 0.2rem 0 0;
  padding: 0;
  list-style: none;
}

#mc_embed_signup li {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  margin: 0;
}

#mc_embed_signup input[type="checkbox"],
#mc_embed_signup input[type="radio"] {
  flex: 0 0 auto;
  margin: 0;
  accent-color: var(--brand);
}

#mc_embed_signup li label {
  display: inline;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.45;
}

#mc_embed_signup .clear {
  clear: both;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  border-top: 1px solid #4b4c4d;
  padding: 2rem max(18px, calc((100vw - 1120px) / 2)) 3rem;
  background: var(--footer);
  color: var(--footer-text);
  font-size: 0.95rem;
}

.site-footer a {
  color: #bfbfbf;
}

.site-footer__links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

@media (max-width: 820px) {
  .topbar,
  .nav,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu {
    flex-wrap: wrap;
  }

  .brand__logo {
    width: 165px;
    height: auto;
  }

  .hero,
  .grid {
    grid-template-columns: 1fr;
  }

  .client-logo {
    float: none;
    justify-self: start;
    max-width: min(220px, calc(100% - 2.5rem));
    margin: 1.1rem 1.25rem 0.3rem;
  }

  .client-details p,
  .client-details.has-logo p {
    margin-left: 0;
    padding: 0.75rem 1.25rem 1.25rem;
  }

  .person {
    grid-template-columns: 1fr;
  }

  .avatar {
    width: min(100%, 240px);
    height: auto;
    aspect-ratio: 3 / 4;
  }
}
