* { box-sizing: border-box; margin: 0; padding: 0; }

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

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

/* ===== Sky Header (About/Offerings/Contact) ===== */

.sky-header {
  background: linear-gradient(to bottom, rgba(70,130,180,0.95), rgba(70,130,180,0.85));
  padding: 18px 0;
}

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

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

.sky-nav ul {
  list-style: none;
  display: flex;
  gap: 1.75rem;
}

.sky-nav a {
  color: white;
  font-weight: 600;
  text-decoration: none;
}

.sky-nav a.active,
.sky-nav a:hover { text-decoration: underline; }

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

main { padding: 3rem 1.25rem 4rem; }

.section-inner { max-width: 1100px; margin: 0 auto; }

.pill {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background-color: rgba(125, 150, 99, 0.15);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
  color: #5f7b4d;
}

.section-heading {
  font-family: Georgia, serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.two-column {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2.5rem;
}

.btn-primary {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  background-color: #7d9663;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  text-decoration: none;
}

/* ===== About Founder Section ===== */

.about-founder { margin-top: 2rem; }

.about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.about-photo img { border-radius: 10px; }

.about-bio h1 { margin-bottom: 0.25rem; }

.about-bio h3 {
  margin-bottom: 1.25rem;
  font-weight: 500;
  color: #6c7f6a;
}

.about-bio p { margin-bottom: 1rem; }

/* ===== Footer ===== */

footer {
  background-color: #10221b;
  color: rgba(255,255,255,0.86);
  padding: 1.75rem 1.25rem;
  font-size: 0.85rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ===== Home Page Hero (index.html) ===== */

.hero-wrapper {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

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

/* Invisible click strip over nav words baked into hero image */
.hero-nav-clicks {
  position: absolute;
  top: 52px;
  right: 10%;
  width: 360px;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  z-index: 20;
}

.hero-nav-clicks a {
  flex: 1;
  display: block;
  height: 100%;
  cursor: pointer;

  /* hide text so “duplicate links” don’t appear */
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
  background: transparent;
}

/* Invisible click area over Learn More button baked into hero image */
.hero-learnmore {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 80px;
  cursor: pointer;
  z-index: 20;

  /* hide text */
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
}

/* ===== Contact Form ===== */

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.35rem;
  margin-bottom: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(31, 43, 39, 0.18);
  font: inherit;
  background: #fff;
}

.contact-form textarea { resize: vertical; }

.contact-form .form-note {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: rgba(31, 43, 39, 0.7);
}

.hp-field { display: none !important; }

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

@media (max-width: 768px) {

  .about-grid {
    grid-template-columns: 1fr;
  }

  .sky-inner {
    flex-direction: column;
    gap: 1rem;
  }

  .sky-nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .two-column {
    grid-template-columns: 1fr;
  }
}