:root {
  --mth-navy: #06264d;
  --mth-blue: #0d5fb8;
  --mth-gold: #c6a15b;
  --mth-white: #ffffff;
  --mth-light: #f6f8fb;
  --mth-text: #1c2a39;
}

/* ==============================
   Page / Layout Reset
   ============================== */

.mth-home-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.mth-home {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

/* ==============================
   Hero
   ============================== */

.mth-hero {
  width: 100%;
  min-height: 720px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 5rem 1.5rem;

  background:
    linear-gradient(
      rgba(6, 38, 77, 0.55),
      rgba(6, 38, 77, 0.55)
    ),
    url("../images/mth-hero-nyc.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  text-align: center;
}

.mth-hero-inner {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
}

.mth-logo {
  display: block;

  width: min(500px, 90%);
  height: auto;

  margin: 0 auto 2.5rem;
}

.mth-eyebrow {
  margin: 0 0 0.75rem;

  color: var(--mth-gold);

  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;

  text-transform: uppercase;
}

.mth-hero h1 {
  max-width: 850px;

  margin: 0 auto 1.25rem;

  color: var(--mth-white);

  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
}
.navbar-chulapa-fab .navbar-toggler-icon, .navbar-chulapa-fab .navbar-toggler-icon:before, .navbar-chulapa-fab .navbar-toggler-icon:after {
	background-color: var(--mth-white);
}

.mth-lead {
  max-width: 700px;

  margin: 0 auto 2rem;

  color: var(--mth-white);

  font-size: 1.15rem;
  line-height: 1.8;
}

/* ==============================
   Buttons
   ============================== */

.mth-button {
  display: inline-block;

  padding: 0.9rem 1.6rem;

  border: 2px solid var(--mth-blue);
  border-radius: 4px;

  background: var(--mth-blue);
  color: var(--mth-white);

  font-weight: 700;
  text-decoration: none;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.mth-button:hover {
  transform: translateY(-2px);

  background: var(--mth-navy);
  border-color: var(--mth-navy);

  color: var(--mth-white);
  text-decoration: none;
}

/* ==============================
   What We Do
   ============================== */

.mth-section {
  width: 100%;

  padding: 6rem 1.5rem;

  background: var(--mth-light);
  text-align: center;
}

.mth-section > .mth-section-inner {
  width: 100%;
  max-width: 1000px;

  margin: 0 auto;
}

.mth-section h2 {
  margin: 0 0 3rem;

  color: var(--mth-navy);

  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

.mth-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 2rem;

  width: 100%;
  max-width: 900px;

  margin: 0 auto;
}

.mth-service {
  padding: 2.5rem;

  background: var(--mth-white);

  border-top: 4px solid var(--mth-gold);

  box-shadow: 0 8px 30px rgba(6, 38, 77, 0.08);
}

.mth-service h3 {
  margin: 0 0 1rem;

  color: var(--mth-navy);
}

.mth-service p {
  margin: 0;

  line-height: 1.7;
}

/* ==============================
   CTA
   ============================== */

.mth-cta {
  width: 100%;

  padding: 5rem 1.5rem;

  background: var(--mth-navy);
  color: var(--mth-white);
}

.mth-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 3rem;

  width: 100%;
  max-width: 1100px;

  margin: 0 auto;
}

.mth-cta-copy {
  max-width: 650px;
}

.mth-cta .mth-eyebrow {
  color: var(--mth-gold);
}

.mth-cta h2 {
  margin: 0 0 1rem;

  color: var(--mth-white);

  font-weight: 700;
}

.mth-cta p {
  margin: 0;
}

.mth-button-light {
  flex-shrink: 0;

  background: var(--mth-white);
  border-color: var(--mth-white);

  color: var(--mth-navy);
}

.mth-button-light:hover {
  background: var(--mth-gold);
  border-color: var(--mth-gold);

  color: var(--mth-navy);
}

/* ==============================
   Mobile
   ============================== */

@media (max-width: 768px) {

  .mth-hero {
    min-height: 650px;
    padding: 4rem 1.25rem;
    background-position: center center;
  } 
  .mth-logo {
    width: min(380px, 100%);
  }

  .mth-section {
    padding: 4rem 1.25rem;
  }

  .mth-services {
    grid-template-columns: 1fr;
  }

  .mth-cta {
    padding: 4rem 1.25rem;
  }

  .mth-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==============================
   Contact Page
   ============================== */

.mth-contact {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}

.mth-contact-header {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

.mth-contact-header h1 {
  margin: 0 0 1rem;
  color: var(--mth-navy);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
}

.mth-contact-header p {
  margin: 0;
  color: var(--mth-text);
  font-size: 1.1rem;
  line-height: 1.8;
}

.mth-contact-card {
  padding: 3rem;
  background: var(--mth-white);
  border-top: 4px solid var(--mth-gold);
  box-shadow: 0 10px 35px rgba(6, 38, 77, 0.10);
}

.mth-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2rem;
}

.mth-form-group {
  display: flex;
  flex-direction: column;
}

.mth-form-full {
  grid-column: 1 / -1;
}

.mth-contact-form label {
  margin-bottom: 0.5rem;
  color: var(--mth-navy);
  font-weight: 700;
}

.mth-contact-form input,
.mth-contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;

  border: 1px solid #ccd3dc;
  border-radius: 4px;

  background: var(--mth-white);
  color: var(--mth-text);

  font: inherit;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.mth-contact-form input:focus,
.mth-contact-form textarea:focus {
  outline: none;

  border-color: var(--mth-blue);

  box-shadow: 0 0 0 3px rgba(13, 95, 184, 0.12);
}

.mth-contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

@media (max-width: 768px) {

  .mth-contact {
    padding: 3rem 1.25rem 4rem;
  }

  .mth-contact-card {
    padding: 2rem 1.25rem;
  }

  .mth-contact-form {
    grid-template-columns: 1fr;
  }

  .mth-form-full {
    grid-column: auto;
  }

}

/* =========================
   404 PAGE
   ========================= */

.mth-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem;
  text-align: center;
  background: #f6f8fb;
}

.mth-404-inner {
  max-width: 700px;
  margin: 0 auto;
}

.mth-404-code {
  font-size: clamp(6rem, 18vw, 11rem);
  font-weight: 800;
  line-height: 1;
  color: #06264d;
  opacity: 0.08;
  margin-bottom: -2rem;
}

.mth-404 h1 {
  color: #06264d;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.mth-404 p {
  max-width: 550px;
  margin: 0 auto 2rem;
  color: #1c2a39;
  font-size: 1.1rem;
  line-height: 1.7;
}

.mth-contact {
  padding: 5rem 1.5rem;
  background: #f6f8fb;
}

.mth-contact-inner {
  max-width: 900px;
  margin: 0 auto;
}

.mth-contact-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.mth-contact-heading h1 {
  color: #06264d;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.mth-contact-heading p {
  max-width: 650px;
  margin: 0 auto;
  color: #1c2a39;
  font-size: 1.1rem;
  line-height: 1.7;
}

.mth-eyebrow {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--mth-gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.mth-form-embed {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(6, 38, 77, 0.08);
}

.mth-form-embed iframe {
  display: block;
  width: 100%;
  border: 0;
}