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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Manrope', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 26px;
}

.entry-content {
  margin-top: 0 !important;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  line-height: 1.04;
  letter-spacing: -.02em;
}

.serif {
  font-family: 'Fraunces', serif;
}

.acc {
  font-style: normal !important;
}



/* ---- footer ---- */
footer.ft {
  background: var(--ink);
  color: var(--cream-2);
  padding: 60px 0 30px;
}

.ft-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

.ft-brand img {
  height: 46px;
  border-radius: 8px;
  margin-bottom: 14px;
}

.ft-brand p {
  font-size: 13px;
  color: var(--muted);
  max-width: 260px;
}

.ft h4 {
  font-family: 'Bricolage Grotesque';
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 16px;
}

.ft a {
  display: block;
  font-size: 14px;
  color: var(--cream-2);
  opacity: .78;
  margin-bottom: 10px;
  transition: .2s;
}

.ft a:hover {
  opacity: 1;
  color: var(--brass);
}

.ft-social {
  display: flex;
  gap: 18px;
  margin-top: 20px;
}

.ft-social a {
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.ft-social a:hover {
  filter: drop-shadow(0 0 8px rgba(201, 162, 75, 0.8));
}

.ft-bottom {
  border-top: 1px solid rgba(244, 239, 226, .12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: var(--muted);
}

.ft-disc {
  font-size: 12px;
  color: var(--muted);
  max-width: 560px;
  margin-top: 10px;
  line-height: 1.55;
}

@media(max-width:900px) {
  .ft-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:640px) {

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


.post, 
.page, 
.type-page, 
.type-post, 
.site-main, 
.entry-content {
  margin: 0 !important;
  padding: 0 !important;
}

.entry-content > *:last-child {
  margin-bottom: 0 !important;
}

body {
  margin: 0;
  padding: 0;
}