/* About page layout — matches site look & type scale */
.container{ max-width: 1100px; margin: 0 auto; padding: 0 16px; }
.about-hero{ padding: 28px 0 8px; text-align: center; }
.about-hero .brand{ font-size: clamp(32px, 6vw, 56px); margin-bottom: 8px; }
.about-hero .lede{ font-size: clamp(18px, 2.2vw, 22px); color: #394854; }

/* Alternating blocks */
.about-block{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 32px 0;
}
.about-block.img-right { grid-template-columns: 1fr 1.1fr; }

.about-img img{
  width: 100%;
  height: auto;
  border-radius: 16px;
  /* removed box-shadow */
  border: 1px solid rgba(0,0,0,.06);
}

.about-copy h2{ margin: 0 0 8px; font-size: clamp(24px, 3.8vw, 34px); }
.about-copy p{ margin: 10px 0; font-size: clamp(16px, 1.8vw, 18px); color:#2d3a46; }
.about-copy .note{ color:#5b5b66; }

.btn-link{ font-weight: 700; text-decoration: none; border-bottom: 2px solid currentColor; }
.btn-link:hover{ opacity:.9; }

.about-cta{
  text-align: center; padding: 40px 0 60px;
}
.about-cta h2{ font-size: clamp(24px, 4.5vw, 36px); margin-bottom: 8px; }
.about-cta p{ max-width: 760px; margin: 0 auto 16px; color:#394854; }

.btn{
  display:inline-block;
  color:#fff;
  font-weight:800;
  padding:12px 20px;
  border-radius:999px;
  text-decoration:none;
  /* removed button shadow */
  border: 1px solid rgba(0,0,0,.06);
}
.btn:hover{ filter: brightness(1.03); }

/* Responsive stacks */
@media (max-width: 900px){
  .about-block,
  .about-block.img-right{
    grid-template-columns: 1fr;
  }
  .about-img{ order: -1; } /* image first on narrow screens */
}

/* Optional: hide decorative site “deco” on small screens if present */
@media (max-width: 640px){
  .deco, .deco * { display:none !important; }
}


/* Center and pad the subscribe form on the About page */
.about-cta .subscribe-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
  padding: 24px 0;
  max-width: 420px;
  margin-inline: auto; /* centers horizontally */
}

.about-cta .subscribe-form input[type="email"] {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 1rem;
  text-align: center;
}

.about-cta .subscribe-form .btn {
  width: auto;
  min-width: 160px;
  text-align: center;
}

/* Stack neatly on smaller screens */
@media (max-width: 480px) {
  .about-cta .subscribe-form {
    width: 100%;
    padding-inline: 16px;
  }
  .about-cta .subscribe-form input[type="email"] {
    text-align: left;
  }
}
