body {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}

.logo {
  width: 120px;
  height: auto;
}

.nav-link {
  font-family: Montserrat, sans-serif;
  letter-spacing: .15em;
  text-transform: uppercase;

  justify-content: center;
  min-width: 64px;
  border: none;
  border-radius: 10px;
  /* Indigo 500 */
  color: rgb(0, 106, 106);
  font-family: Roboto, Arial, sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  
  transition: background-color 200ms ease-in-out,
    box-shadow 200ms ease-in-out;
}


/* outer white band with generous breathing room */
.intro-wrapper {
  background: #fafbfa;
  display: flex;
  justify-content: center;
}

/* card with purple top border */
.intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 1080px;
  background: #ffffff;
  border-top: 4px solid #5d4a66;
  padding-top: 25px
}

/* photo */
.intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* typography */
.headline {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  color: #5d4a66;
}

.tagline {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #5d4a66;
}

@media (max-width: 900px) {
  .intro-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .intro-photo {
    order: 2;
  }
}

.about-wrap {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  color: #5d4a66;
  line-height: 1.65;
  border-top: 4px solid #5d4a66;
  padding-top: 25px;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 2.75rem);
  margin: 0 0 2rem;
  line-height: 1.2;
}

.subhead {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
}

p {
  margin: 1rem 0;
}

.contact-line {
  margin: 2rem 0;
}

.badge-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;

  img {
    width: 120px;
    height: 120px;
    object-fit: contain;
  }
}

/* Replicating Angular Material Flat Button (mat-button) */
.mat-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  min-width: 64px;
  padding: 0 16px;
  border: none;
  border-radius: 4px;
  background: transparent;
  color: #3f51b5;
  /* Default Material Indigo */
  font-family: Roboto, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  outline: none;
  transition: background-color 200ms ease-in-out;
}

.mat-button:hover {
  background-color: rgba(63, 81, 181, 0.08);
  /* Indigo hover ripple */
}

.mat-button:active {
  background-color: rgba(63, 81, 181, 0.24);
}

.mat-button:disabled {
  color: rgba(0, 0, 0, 0.26);
  cursor: default;
  background-color: transparent;
  pointer-events: none;
}

.mat-raised-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  min-width: 64px;
  padding: 0 16px;
  border: none;
  border-radius: 10px;
  background-color: rgb(249, 252, 251);
  /* Indigo 500 */
  color: rgb(0, 106, 106);
  font-family: Roboto, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  outline: none;
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2),
    0px 2px 2px 0px rgba(0, 0, 0, 0.14),
    0px 1px 5px 0px rgba(0, 0, 0, 0.12) !important;
  transition: background-color 200ms ease-in-out,
    box-shadow 200ms ease-in-out;
}

.mat-raised-button:hover {
  background-color: #e4eeed;
  /* Indigo 700 */
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12) !important;
}

.mat-raised-button:active {
  background-color: #e4eeed;
  /* Indigo 700 */
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12) !important;
}

.mat-raised-button:disabled {
  background-color: rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.26);
  box-shadow: none;
  cursor: default;
  pointer-events: none;
}

.mat-stroked-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 36px;
  padding: 0 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  background: transparent;
  color: #3f51b5; /* Material Indigo */
  font-family: Roboto, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  user-select: none;
  transition: background-color 250ms ease, box-shadow 250ms ease;
  overflow: hidden;
  position: relative;
}

.mat-stroked-button:hover {
  background-color: rgba(63, 81, 181, 0.04); /* Indigo hover bg */
  border-color: rgba(0, 0, 0, 0.24);
}

.mat-stroked-button:active {
  background-color: rgba(63, 81, 181, 0.12);
  box-shadow: none;
}

.mat-stroked-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(63, 81, 181, 0.25); /* focus ring */
}

.mat-stroked-button:disabled {
  color: rgba(0, 0, 0, 0.26);
  border-color: rgba(0, 0, 0, 0.12);
  background-color: transparent;
  cursor: not-allowed;
  pointer-events: none;
}


/*footer*/

.site-footer {
  padding: 4rem 1rem 2rem;
  background: #fafbfa;
  color: #5d4a66;
  text-align: center;
}

/* MAIN GRID */
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  justify-content: center;
  align-items: start;
  gap: 3rem;
  max-width: 1080px;
  margin: 0 auto 2.5rem;
  border-top: 4px solid #5d4a66;
  padding: 10px 0;
}

/* ─── Shared column typography ─── */
.site-footer h6 {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

/* COLUMN 1 — blurb */
.blurb {
  text-align: center;
}

/* COLUMN 2 — logo + socials */
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.brand p {
    margin: 0;
    max-width: 260px;
    font-size: 0.9rem;
    line-height: 1.6;
  }

.logo {
  height: 80px;
  width: auto;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 1.25rem;

}

.socials img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.socials a {
  color: #5d4a66;
  font-size: 1.6rem;
  display: inline-flex;
}

/* COLUMN 3 — quick links */
.quick-links ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 200px;
  /*  🔸 2‑column magic */
  column-count: 2;
  column-gap: 1.25rem;
}

.quick-links ul li {
    break-inside: avoid;
    margin: 0.15rem 0;
  }

  .quick-links ul li a {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-decoration: none;

     


  }

/* BOTTOM LEGAL LINE */
.legal {
  font-size: 0.75rem;
  opacity: 0.8;
}

 .legal a {
    color: #5d4a66;
  }

  .legal .pipe {
    margin: 0 0.5rem;
  }
/* ─── Mobile ≤900px ─── */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quick-links ul {
    text-align: center;
  }
}

button > a
{
  text-decoration: none;
  color: green
}