/* ------------------------------- */
/* MAISON FONT DECLARATIONS        */
/* ------------------------------- */

@font-face {
  font-family: "Maison";
  src: url("../fonts/Maison Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Maison";
  src: url("../fonts/Maison Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Maison Mono";
  src: url("../fonts/Maison Mono Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Maison Mono";
  src: url("../fonts/Maison Mono Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* ------------------------------- */
/* ABOUT PAGE LAYOUT               */
/* ------------------------------- */

.about-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 25px 0 0;
  /* 2rem 0 0 */
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  /* 1/3 – 2/3 layout */
  gap: 65px;
  /* 3rem */
  align-items: start;
  /* text starts at top */
}

.about-text p {
  margin: 0;          /* removes browser default top/bottom margins */
  padding: 0;         /* optional, ensures no padding is affecting layout */
}

/* Text column */
.about-text {
  font-family: "Maison Mono", "NB Architekt Neue", sans-serif;
  font-weight: 300;
  /* 300 = Maison Light.otf */
  font-size: 16px;
  line-height: 1.8;
  /* text-transform: uppercase; */
  color: #000;
  display: flex;
  flex-direction: column;
  gap: 15px;
  /* space between <p> blocks */
}

/* Match line width/spacing to .meta-row */
.about-line {
  width: 100%;
  /* full width of the column, just like .meta-row */
  border-top: 1px solid #000;
  padding-top: 4px;
  /* 0.25rem */
  margin-bottom: 1px;
  /* 0.75rem */
}

/* Image column */
.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive stacking */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    /* 1.5rem */
  }

  .about-text,
  .about-image {
    order: unset;
  }
}


header {
  margin: 18px 0 8px;
}

/* SVG logo container */
.brand {
  display: inline-block;
  line-height: 0;
  /* removes text spacing below image */
}

/* SVG image itself */
.brand img {
  display: block;
  width: 63px;
  /* adjust this value to scale the logo */
  height: auto;
  /* keeps proportions */
}