/* =========================
   Base / Reset
   ========================= */

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.65;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================
   Header (stacked, centered)
   ========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.header-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* Brand */

.brand {
  text-align: center;
  text-decoration: none;
  color: inherit;
  line-height: 1.05;
}

.brand-top {
  display: block;
  font-size: 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
}

.brand-bottom {
  display: block;
  font-size: 28px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 4px;
}

/* Navigation */

.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
  padding-top: 6px;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: inherit;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 10px 0;
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: rgba(0,0,0,0.45);
  transition: width 0.22s ease, left 0.22s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  width: 100%;
  left: 0;
}

.nav-link.is-active::after {
  width: 100%;
  left: 0;
  background: rgba(0,0,0,0.6);
}

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

.home-hero {
  max-width: 1100px;
  margin: 40px auto 80px;
  padding: 0 22px;
}

.hero-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
}

/* Tag on hero image */

.hero-tag {
  position: absolute;
  top: 34px;
  right: 34px;
  background: #fff;
  color: #111;
  padding: 14px 18px;
  font-size: 20px;
  font-weight: bold; 
  letter-spacing: 0.26em;
  text-transform: uppercase;
  line-height: 1;
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.12);
}

/* Hero text */

.hero-content {
  margin-top: 28px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-content h1 {
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.12;
  margin: 0 0 16px;
  font-weight: 800;
}

.hero-content p {
  font-size: 20px;
  color: #333;
  margin: 0 0 26px;
}

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

.button-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.button-primary,
.button-secondary {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  min-width: 190px;
  text-align: center;
}

.button-primary {
  background: #111;
  color: #fff;
}

.button-secondary {
  border: 1px solid rgba(0,0,0,0.22);
  color: #111;
}

/* =========================
   Editorial Single Column
   ========================= */

.about-onecol {
  margin: 0 auto 90px;
  padding: 0 22px;
}

.about-wrap {
  max-width: 700px;
  margin: 48px auto 0;
}

/* Kicker / titles */

.about-kicker {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 12px;
}

.about-title {
  font-size: clamp(42px, 6vw, 64px);
  line-height: 1.05;
  margin: 0 0 18px;
  font-weight: 800;
}

.about-lede {
  font-size: 21px;
  line-height: 1.7;
  color: #222;
  margin: 0 0 28px;
}

/* Divider */

.about-rule {
  border: 0;
  height: 1px;
  background: rgba(0,0,0,0.12);
  margin: 36px 0;
}

/* Sections */

.about-section {
  margin-bottom: 32px;
}

.about-section h2 {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.about-section p {
  font-size: 18px;
  color: #333;
  line-height: 1.85;
  margin: 0;
}

/* =========================
   ABOUT IMAGE — FIXED
   ========================= */

.about-image {
  width: 100%;
  max-width: 520px;     /* keeps photo elegant */
  margin: 24px auto 32px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,0.10);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* SAFETY: images inside text column never break layout */
.about-wrap img {
  max-width: 100%;
  height: auto;
}

/* =========================
   Callout
   ========================= */

.about-callout {
  margin: 36px 0;
  padding: 20px 22px;
  border-left: 3px solid rgba(0,0,0,0.35);
  background: rgba(0,0,0,0.02);
  border-radius: 12px;
}

.about-callout p {
  font-size: 18px;
  color: #222;
  line-height: 1.8;
  margin: 0;
}

/* CTA */

.about-cta {
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================
   Calendly container
   ========================= */

#calWrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 22px 80px;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 860px) {
  .brand-bottom { font-size: 24px; }
  .nav-center { gap: 22px; }
  .about-wrap { margin-top: 34px; }
  .about-lede { font-size: 19px; }
}

@media (max-width: 640px) {
  .header-shell {
    padding: 12px 16px 14px;
  }

  .hero-tag {
    top: 16px;
    right: 16px;
    font-size: 12px;
    padding: 12px 14px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .button-primary,
  .button-secondary {
    min-width: 170px;
  }

  .about-title {
    font-size: 40px;
  }
}

.contact-onecol {
   margin-bottom: 0 !important;   
}
