:root{
  --ink: #1b1b1b;
  --muted: rgba(27,27,27,.68);
  --navbg: #eeeeee;
  --max: 1040px;
}

*{ box-sizing: border-box; }

body{
  margin: 0;
  background: #fff;
  color: var(--ink);
}

/* ===== Top nav ===== */
.topbar{
  background: var(--navbg);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.topbar__inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar__link{
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 0.20em;
  font-size: 13px;
  text-decoration: none;
  color: rgba(0,0,0,.55);
  text-transform: uppercase;
  padding: 6px 4px;
  position: relative;
}

/* underline animation */
.topbar__link::after{
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -6px;
  height: 1px;
  background: rgba(0,0,0,.35);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 200ms ease;
}
.topbar__link:hover{
  color: rgba(0,0,0,.85);
}
.topbar__link:hover::after{
  transform: scaleX(1);
}
.topbar__link.is-active{
  color: rgba(0,0,0,.85);
}
.topbar__link.is-active::after{
  transform: scaleX(1);
}

/* ===== Page ===== */
.page{
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 24px 70px;
  text-align: center;
}

/* Centered brand */
.brand{
  line-height: 1;
  margin-bottom: 34px;
}

.brand__nom{
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: 0.06em;
}

.brand__brias{
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* Big About title */
.title{
  margin: 0 0 28px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: clamp(64px, 7vw, 110px);
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

/* Centered text column */
.content{
  padding-top: 10px;
}

.content__inner{
  max-width: 900px;
  margin: 0 auto;
  text-align: left; /* your mock reads left-aligned body under centered header */
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  line-height: 1.9;
  color: var(--muted);
}

.kicker{
  margin: 0 0 10px;
  color: rgba(0,0,0,.60);
}

.source{
  margin: 16px 0 0;
  color: rgba(0,0,0,.55);
}

/* ===== Footer (same as your footer component) ===== */
.nb-footer{
  background: #eeeeee;
  margin-top: 60px;
}

.nb-footer__inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 90px 24px 70px;
  color: rgba(0,0,0,.72);
  text-align: left;
}

.nb-footer__brand{
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 42px;
}

.nb-footer__section{
  margin-bottom: 36px;
}

.nb-footer__heading{
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 10px;
  color: rgba(0,0,0,.70);
}

.nb-footer__headingLink{
  display: inline-block;
  text-decoration: none;
  color: rgba(0,0,0,.70);
}

.nb-footer__headingLink:hover{
  color: rgba(0,0,0,.90);
}

.nb-footer__link{
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  text-decoration: none;
  color: rgba(0,0,0,.62);
  margin: 6px 0;
}

.nb-footer__link:hover{
  color: rgba(0,0,0,.88);
}

.nb-footer__copyright{
  margin-top: 34px;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  color: rgba(0,0,0,.65);
}

/* ===== Responsive ===== */
@media (max-width: 900px){
  .content__inner{
    font-size: 19px;
  }
}
