/* ===== Global Reset ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===== Base Styles ===== */
html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  background-color: #f5f3f1;
  color: #1b1b1b;
  line-height: 1.6;
}

/* ===== Site Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(245, 243, 241, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand */
.brand {
  font-size: 1.1rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  color: #111111;
}

/* Nav */
.nav-links {
  display: flex;
  gap: 1.8rem;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: #4b4b4b;
  padding-bottom: 0.1rem;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 0;
  height: 1px;
  background-color: #111111;
  transition: width 0.2s ease;
}

.nav-links a:hover {
  color: #111111;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links .nav-active {
  color: #111111;
}

.nav-links .nav-active::after {
  width: 100%;
}

/* ===== Layout ===== */
.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3.5rem;
}

/* ===== About Layout ===== */
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.2fr);
  gap: 3rem;
  align-items: flex-start;
}

/* Main text column */
.about-text {
  font-size: 0.98rem;
  color: #333333;
}

.about-tagline {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  color: #9a8f82;
  margin-bottom: 0.6rem;
}

.hero-title {
  font-size: 1.9rem !important; /* override inline size */
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

.about-text p {
  margin-bottom: 1.1rem;
  line-height: 1.7;
}

/* Slight highlight for stats or numbers */
.about-text p span.highlight,
.about-text p strong {
  font-weight: 500;
  color: #272727;
}

/* ===== Side / Practice Column ===== */
.about-side {
  font-size: 0.9rem;
  padding: 1.2rem 1.4rem;
  border-radius: 0.9rem;
  background: #f0ece6;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.about-side h2 {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6f6254;
  margin-bottom: 0.6rem;
}

.about-side p {
  margin-bottom: 0.8rem;
}

/* ===== Links in Text ===== */
a {
  color: inherit;
}

a:hover {
  color: #111111;
}


@media (max-width: 900px) {
  .header-inner {
    padding-inline: 1.1rem;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.78rem;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-side {
    margin-top: 0.5rem;
  }
}

@media (max-width: 600px) {
  .page-wrap {
    padding-inline: 1.1rem;
  }

  .hero-title {
    font-size: 1.5rem !important;
  }

  .nav-links {
    display: none; 
  }
}
