* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #111111;
  background-color: #ffffff;
  line-height: 1.6;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #dddddd;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.nav a {
  text-decoration: none;
  color: #111111;
  margin-left: 24px;
  font-weight: 600;
  font-size: 15px;
}

.nav a:hover {
  color: #666666;
}

.nav a.active {
  color: #0b57d0;
}

.hero {
  min-height: 85vh;
  background-image: url("images/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  min-height: 85vh;
  background-color: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.hero-content {
  max-width: 850px;
  color: white;
}

.hero-content h1 {
  margin: 0 0 20px 0;
  font-size: 62px;
  line-height: 1.05;
  letter-spacing: 2px;
}

.hero-content p {
  font-size: 20px;
  max-width: 760px;
  margin: 0 auto 28px auto;
}

.hero-button {
  display: inline-block;
  background-color: white;
  color: black;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: bold;
  transition: 0.2s ease;
}

.hero-button:hover {
  background-color: #e8e8e8;
}

.page-banner {
  height: 280px;
  background-image: url("images/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-banner-overlay {
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-banner-overlay h1 {
  color: white;
  font-size: 48px;
  margin: 0;
  letter-spacing: 1px;
}

.section {
  padding: 70px 20px;
}

.section-gray {
  background-color: #f3f3f3;
}

.section-container {
  max-width: 1100px;
  margin: 0 auto;
}

.section h2 {
  font-size: 36px;
  text-align: center;
  margin-top: 0;
  margin-bottom: 36px;
}

.center-text {
  text-align: center;
}

.text-block {
  max-width: 900px;
  margin: 0 auto 28px auto;
  font-size: 17px;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.info-card {
  background-color: white;
  padding: 28px;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
  margin-top: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.person-card {
  background-color: white;
  padding: 28px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

/* 🔥 PROFILE IMAGE FIX */
.profile-pic {
  width: 100px !important;
  height: 100px !important;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 14px auto;
}

/* 🔧 Clint crop adjustment */
.clint-pic {
  object-position: center 20%;
}

.person-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.role {
  font-weight: bold;
  color: #444444;
}

.person-card a {
  color: #0b57d0;
  text-decoration: none;
}

.person-card a:hover {
  text-decoration: underline;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 800px;
  margin: 0 auto;
}

.doc-button {
  display: block;
  text-align: center;
  padding: 18px;
  background-color: #111111;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.2s ease;
}

.doc-button:hover {
  background-color: #333333;
}

.footer {
  background-color: #111111;
  color: white;
  text-align: center;
  padding: 24px 20px;
  font-size: 14px;
}

@media (max-width: 900px) {
  .two-column,
  .card-grid,
  .gallery-grid,
  .doc-grid {
    grid-template-columns: 1fr;
  }

  .nav-container {
    flex-direction: column;
    gap: 10px;
  }

  .nav a {
    margin: 0 10px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .page-banner-overlay h1 {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .section h2 {
    font-size: 28px;
  }
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #111111;
  background-color: #ffffff;
  line-height: 1.6;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #dddddd;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.nav a {
  text-decoration: none;
  color: #111111;
  margin-left: 24px;
  font-weight: 600;
  font-size: 15px;
}

.nav a:hover {
  color: #666666;
}

.nav a.active {
  color: #0b57d0;
}

.hero {
  min-height: 85vh;
  background-image: url("images/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  min-height: 85vh;
  background-color: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.hero-content {
  max-width: 850px;
  color: white;
}

.hero-content h1 {
  margin: 0 0 20px 0;
  font-size: 62px;
  line-height: 1.05;
  letter-spacing: 2px;
}

.hero-content p {
  font-size: 20px;
  max-width: 760px;
  margin: 0 auto 28px auto;
}

.hero-button {
  display: inline-block;
  background-color: white;
  color: black;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: bold;
  transition: 0.2s ease;
}

.hero-button:hover {
  background-color: #e8e8e8;
}

.page-banner {
  height: 280px;
  background-image: url("images/hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-banner-overlay {
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-banner-overlay h1 {
  color: white;
  font-size: 48px;
  margin: 0;
  letter-spacing: 1px;
}

.section {
  padding: 70px 20px;
}

.section-gray {
  background-color: #f3f3f3;
}

.section-container {
  max-width: 1100px;
  margin: 0 auto;
}

.section h2 {
  font-size: 36px;
  text-align: center;
  margin-top: 0;
  margin-bottom: 36px;
}

.center-text {
  text-align: center;
}

.text-block {
  max-width: 900px;
  margin: 0 auto 28px auto;
  font-size: 17px;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.info-card {
  background-color: white;
  padding: 28px;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
  margin-top: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.person-card {
  background-color: white;
  padding: 28px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

/* 🔥 PROFILE IMAGE FIX */
.profile-pic {
  width: 100px !important;
  height: 100px !important;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 14px auto;
}

/* 🔧 Clint crop adjustment */
.clint-pic {
  object-position: center 20%;
}

.person-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.role {
  font-weight: bold;
  color: #444444;
}

.person-card a {
  color: #0b57d0;
  text-decoration: none;
}

.person-card a:hover {
  text-decoration: underline;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 800px;
  margin: 0 auto;
}

.doc-button {
  display: block;
  text-align: center;
  padding: 18px;
  background-color: #111111;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.2s ease;
}

.doc-button:hover {
  background-color: #333333;
}

.footer {
  background-color: #111111;
  color: white;
  text-align: center;
  padding: 24px 20px;
  font-size: 14px;
}

@media (max-width: 900px) {
  .two-column,
  .card-grid,
  .gallery-grid,
  .doc-grid {
    grid-template-columns: 1fr;
  }

  .nav-container {
    flex-direction: column;
    gap: 10px;
  }

  .nav a {
    margin: 0 10px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .page-banner-overlay h1 {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .section h2 {
    font-size: 28px;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 30px auto;
  padding: 0 10px;
}

.gallery-item {
  background: #ffffff;
  padding: 10px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;        /* keeps all images same size */
  object-position: center;  /* centers crop */
  border-radius: 8px;
}.gallery-item p {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
  font-weight: 500;
.old-mold-card img {
  height: auto !important;
  width: 85% !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center center !important;
  margin: 35px auto 0 auto !important;
  display: block !important;
  border-radius: 8px;
}

.old-mold-frame {
  height: 220px;
  overflow: hidden;
  background-color: #f4f4f4;
  border-radius: 8px;
}