.page-hero {
  padding: 140px 0 80px;
  text-align: center;
  background: #f9f9f9;
}

.page-hero.page-hero-photo {
  position: relative;
  background: #111;
  background-image: url('../img/f_hero.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  height: 300px;
}

.page-hero.page-hero-contact {
  background-image: url('../img/c_nytop.jpg');
  background-position: center;
  height: 150px;
}

.page-hero.page-hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.3)); */
  background: linear-gradient(
    rgba(15,35,25,0.30),
    rgba(15,35,25,0.40)
);
}

.page-hero.page-hero-photo .container {
  position: relative;
  z-index: 2;
}

.page-hero.page-hero-photo h1 {
  color: #fff;
  font-weight: 800;
}

.page-hero.page-hero-photo p {
    color:white;
    font-weight: 800;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.page-hero p {
  color: #666;
}

.feature-nav {
  position: sticky;
  top: 200px; /* below header — header renders ~100px tall, not the 70px --nav-height var */
  background: linear-gradient(180deg, #fffaf2, #ffffff);
  padding: 16px 0;
  border-bottom: 1px solid #f0e4d0;
  z-index: 900;
}

.feature-section {
  scroll-margin-top: 160px; 
}

.feature-nav .container {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.feature-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #ED9C22;
  background: #fff2df;
  border: 1px solid rgba(237,156,34,0.25);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  padding: 10px 18px;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.feature-nav a i {
  width: 15px;
  height: 15px;
}

.feature-nav a:hover {
  background: linear-gradient(135deg, #ED9C22, #ffb84d);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(237,156,34,0.35);
  transform: translateY(-2px);
}

/* FEATURES */

.feature-group-header {
  padding: 70px 0 10px;
  text-align: center;
  border-top: 3px solid #ED9C22;
  scroll-margin-top: 130px;
}

.feature-group-header .group-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 13px;
  font-weight: 700;
  color: #ED9C22;
  margin-bottom: 10px;
}

.feature-group-header h2 {
  font-size: 34px;
  margin-bottom: 14px;
}

.feature-group-header p {
  max-width: 620px;
  margin: 0 auto;
  color: #666;
}

.feature-group-header:first-of-type {
  border-top: none;
}

.feature-section {
  padding: 100px 0;
  border-bottom: 1px solid #eee;
}



.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.feature-media img {
  width: 100%;
  max-width: 240px; 
  margin: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.feature-text h2 {
  font-size: 25px;
}

.feature-sub {
  font-size: 18px;
  color: #555;
  margin: 10px 0 20px;
}

.feature-text ul {
  padding-left: 20px;
}

.feature-text li {
  margin-bottom: 10px;
  color: #444;
}

/* alternating layout */
.feature-section:nth-child(even) .feature-media {
  order: 2;
}



