/* Monochrome & Line Art Inspired CSS */
:root {
  --primary: #ffffff;
  --text: #000000;
  --secondary-text: #444444;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', sans-serif;
}

body {
  background: var(--primary);
  color: var(--text);
}

section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

section + section {
  margin-top: 6rem;
}

header, footer {
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: auto;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 2rem;
  background-color: var(--primary);
  border-bottom: 2px solid var(--text);
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo-img {
  height: 100px;
  width: auto;
}

nav a {
  color: var(--text);
  text-decoration: none;
  margin-left: 2rem;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--secondary-text);
  cursor: pointer;
}

.hero {
  text-align: center;
  padding: 6rem 2rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.hero p {
  font-size: 1.2rem;
  color: var(--secondary-text);
  margin-bottom: 2rem;
}

.hero button {
  padding: 1rem 2rem;
  font-size: 1rem;
  background-color: var(--text);
  border: 2px solid var(--text);
  color: var(--primary);
  cursor: pointer;
  border-radius: 0;
  transition: background 0.3s ease;
}

.hero button:hover {
  background-color: #222;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--text);
}

.service-intro {
  max-width: 900px;
  margin: 2rem auto 3rem auto;
  text-align: center;
  font-size: 1.1rem;
  color: var(--secondary-text);
  line-height: 1.6;
}

.tabbed-service {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 1000px;
  height: 200px;
  background-color: var(--primary);
  border: 2px solid var(--text);
  border-radius: 0;
  margin: 2rem auto;
}

.tabbed-service img {
  width: 25%;
  height: 100%;
  object-fit: cover;
  border-right: 2px solid var(--text);
}

.tabbed-service .info {
  width: 75%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--secondary-text);
}

.tabbed-service h3 {
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.tabbed-service p {
  font-size: 1rem;
  line-height: 1.4;
}

.service-link {
  display: block;
  width: fit-content;
  margin: auto;
  text-decoration: none;
  color: inherit;
}

.service-link * {
  text-decoration: none !important;
  color: inherit;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
  
}

.placard {
  width: 300px;
  height: 400px;
  background-color: var(--primary);
  border: 2px solid var(--text);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-triangle .placard {
  position: relative;
  background: var(--primary);
  border: 2px solid var(--text);
  z-index: 1;
  margin: 1rem;
}


.placard img {
  width: 100%;
  height: 60%;
  object-fit: cover;
  border-bottom: 2px solid var(--text);
}

.placard .info {
  padding: 1rem;
  text-align: center;
  height: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.placard h3 {
  margin-bottom: 0.3rem;
  font-size: 1.3rem;
  color: var(--text);
}

.placard p {
  font-size: 1rem;
  color: var(--secondary-text);
}

form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: auto;
}

form input, form textarea {
  margin-bottom: 1rem;
  padding: 1rem;
  border: 2px solid var(--text);
  border-radius: 0;
  font-size: 1rem;
  background: var(--primary);
  color: var(--text);
}

form button {
  background-color: var(--text);
  color: var(--primary);
  padding: 1rem;
  font-size: 1rem;
  border: 2px solid var(--text);
  cursor: pointer;
  border-radius: 0;
}

footer {
  background-color: #f8f8f8;
  color: var(--text);
  padding: 2rem;
  font-size: 0.95rem;
  border-top: 2px solid #000;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer-copy,
.footer-address {
  flex: 1 1 300px;
  line-height: 1.5;
  text-align: left;
}
.team-triangle {
  position: relative;
  background: var(--primary);
  padding: 0.5rem 0.8rem;
  
  
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 2rem;
  justify-items: center;
  align-items: center;
}

.team-triangle .top-left {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}

.team-triangle .top-right {
  grid-column: 5 / 7;
  grid-row: 1 / 2;
}

.team-triangle .bottom-center {
  grid-column: 2 / 6;
  grid-row: 2 / 3;
}
.triangle-ring {
  position: absolute;
  width: 700px;
  height: 700px;
  border: 1px solid #000000;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 1;
  pointer-events: none;
}

.about-blurb {
  border: 2px solid var(--text);
  padding: 2rem;
  margin-bottom: 4rem;
  background-color: var(--primary);
}



.team-title {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: -3rem;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 768px) {
    nav {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    gap: 0.5rem;
  }

  nav a {
    margin: 0;
    padding: 0.5rem 1rem;
    text-align: center;
    display: block;
    width: 100%;
    max-width: 200px;
  }
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero button {
    width: 100%;
  }

  .tabbed-service {
    flex-direction: column;
    width: 100%;
    height: auto;
  }

  .tabbed-service img {
    width: 100%;
    height: 200px;
    border-right: none;
    border-bottom: 2px solid var(--text);
  }

  .tabbed-service .info {
    width: 100%;
    padding: 1rem;
  }

  .team-triangle {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }

  .triangle-ring {
    width: 90vw;
    height: 90vw;
  }

  .placard {
    width: 90vw;
    height: auto;
    margin-bottom: 2rem;
  }

  .placard img {
    height: 200px;
  }

  .about-blurb,
  .about-services,
  .team-triangle {
    padding: 1rem;
  }

  form {
    width: 90vw;
  }
  footer {
    padding: 1.5rem 1rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .footer-section {
    margin: 0;
    padding: 0.2rem 0;
    line-height: 1.4;
  }
}