@charset "UTF-8";
/*-- -------------------------- -->
<---            Hero            -->
<--- -------------------------- -*/
#hero {
  position: relative;
  padding: calc(var(--nav-height) + clamp(2.5rem, 6vw, 5rem)) clamp(1rem, 4vw, 2rem) clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  /* soft sage glow behind the copy */
}
#hero::before {
  content: "";
  position: absolute;
  top: -6rem;
  left: -8rem;
  width: 34rem;
  height: 34rem;
  background: radial-gradient(circle, var(--sage) 0%, rgba(90, 139, 141, 0) 68%);
  opacity: 0.32;
  pointer-events: none;
  z-index: 0;
}
#hero .hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
#hero .hero-copy {
  max-width: 38rem;
}
#hero h1 {
  font-size: var(--fs-h1);
  margin-bottom: 1.5rem;
}
#hero .hero-text {
  font-size: var(--fs-lead);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 40ch;
  margin-bottom: 2.25rem;
}
#hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
}
#hero {
  /* Image */
}
#hero .hero-figure {
  position: relative;
}
#hero .hero-figure .hero-picture {
  display: block;
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(20, 40, 50, 0.45);
}
#hero .hero-figure .hero-picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#hero .hero-figure .hero-picture {
  /* darken the lower portion so the quote stays legible over any photo */
}
#hero .hero-figure .hero-picture::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 40, 50, 0.62) 0%, rgba(20, 40, 50, 0) 45%);
  pointer-events: none;
}
#hero {
  /* sage corner accent behind the image */
}
#hero .hero-figure::before {
  content: "";
  position: absolute;
  right: -1.25rem;
  bottom: -1.25rem;
  width: 60%;
  height: 60%;
  background: var(--sage);
  opacity: 0.3;
  border-radius: var(--radius);
  z-index: -1;
}
#hero .hero-quote {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.4;
  color: #fbf1ed;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}
#hero .hero-quote span {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(251, 241, 237, 0.85);
}
#hero {
  /* Credentials strip */
}
#hero .hero-credentials {
  position: relative;
  z-index: 1;
  max-width: var(--content-width);
  margin: clamp(3rem, 6vw, 4.5rem) auto 0;
  padding-top: clamp(1.75rem, 3vw, 2.25rem);
  border-top: 1px solid var(--line);
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 2rem;
  justify-content: center;
}
#hero .hero-credentials li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.4;
}
#hero .hero-credentials li::before {
  content: "";
  flex: none;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--primary);
}

/* Phones — stack the hero CTAs, centered (button at its natural width). */
@media only screen and (max-width: 36rem) {
  #hero .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
}
/* Tablet */
@media only screen and (min-width: 48rem) {
  #hero .hero-credentials {
    grid-template-columns: auto auto auto;
  }
}
/* Desktop */
@media only screen and (min-width: 64rem) {
  #hero .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
  /* Constrain the whole figure (not just the picture) so the overlaid quote
     and corner accent line up with the image instead of the column. */
  #hero .hero-figure {
    max-width: 30rem;
    margin-left: auto;
  }
}
/*# sourceMappingURL=critical.css.map */