:root{
  --ink: #1b1b1b;
  --muted: rgba(27,27,27,.55);
  --rule: rgba(27,27,27,.25);
  --page-max: 980px;
}

*{ box-sizing: border-box; }
body{
  margin: 0;
  color: var(--ink);
  background: #fff;
}

.page{
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 48px 24px 80px;
}

/* Brand (NOM / BRIAS) */
.brand{
  text-align: center;
  margin-bottom: 28px;
  line-height: 1;
}

.brand__nom{
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: clamp(44px, 5vw, 64px);
  letter-spacing: 0.06em;
}

.brand__brias{
  margin-top: 2px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(44px, 5vw, 64px);
  letter-spacing: 0.04em;
}

/* Hero */
.hero{
  position: relative;
  margin: 12px auto 34px;
}

.hero__img{
  width: 100%;
  height: auto;
  display: block;
  /* Canva-ish “framed” feel */
  border: 0;
}

.hero__band{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  /* band height similar to your design */
  height: 28%;
  background: rgba(255,255,255,.70);
  display: grid;
  place-items: center;
}

.hero__title{
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: 0.08em;
}

/* Testimonials heading + rule */
.testimonials{
  margin-top: 10px;
  text-align: center;
}

.testimonials__title{
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 36px);
}

.rule{
  height: 1px;
  background: var(--rule);
  margin: 0 auto 28px;
  width: 100%;
}

/* Grid */
.grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}

.card{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card__img{
  width: 100%;
  aspect-ratio: 16 / 9;  /* keeps the tidy banner look */
  object-fit: cover;
  display: block;
}

.card__quote{
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  line-height: 1.35;
  color: var(--muted);
}

.card__sig{
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 4px;
  font-family: "Cormorant Garamond", serif;
}

.card__dash{
  color: var(--muted);
}

.card__name{
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.01em;
  font-style: regular;
}

/* Responsive: stack into 1 column on mobile (so it stays chic) */
@media (max-width: 820px){
  .grid{
    grid-template-columns: 1fr;
  }
  .card__name{
    font-size: 26px;
  }
}

.nb-footer{
  background: #eeeeee;
  margin-top: 80px;
}

.nb-footer__inner{
  max-width: 1040px;      /* match your pages */
  margin: 0 auto;
  padding: 90px 24px 70px;
  color: rgba(0,0,0,.72);
}

.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);
}
