/* ===========================
   ABOUT & CONTACT PAGE STYLES
   Extends styles.css / landing.css tokens — no new palette.
=========================== */

/* Shared page hero (About / Contact intro) */
.page-hero{
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 32px 4px;
  text-align: center;
}
.page-hero .badge-pill{ margin-bottom: 18px; }
.page-hero h1{
  font-family: var(--font-display);
  font-size: clamp(32px, 4.2vw, 46px);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 16px;
  letter-spacing: -.01em;
}
.page-hero p{
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto;
}

/* ===========================
   ABOUT PAGE
=========================== */
.about-content{
  max-width: 740px;
  margin: 0 auto;
  padding: 36px 32px 0;
}
.about-content p{
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0 0 20px;
}
.about-content p strong{ color: var(--ink); font-weight: 700; }

.about-quote{
  background: var(--rose-50);
  border-left: 4px solid var(--coral);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--coral-deep);
  margin: 8px 0 36px;
}

.offer-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.offer-card{
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.offer-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.offer-icon{
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  color: var(--coral);
  box-shadow: var(--shadow-soft);
}
.offer-icon svg{ width: 24px; height: 24px; }
.offer-card h4{
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  margin: 0 0 6px;
}
.offer-card p{
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

.about-cta{
  text-align: center;
  padding: 12px 32px 8px;
}
.about-cta p{
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0 0 20px;
}

/* ===========================
   CONTACT PAGE
=========================== */
.contact-grid{
  max-width: 1080px;
  margin: 0 auto;
  padding: 16px 32px 0;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: start;
}

.contact-info-list{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-info-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow-soft);
}
.contact-info-icon{
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--rose-50);
  color: var(--coral-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg{ width: 20px; height: 20px; }
.contact-info-card h4{
  font-size: 14.5px;
  font-weight: 700;
  margin: 0 0 4px;
}
.contact-info-card p{
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}
.contact-info-card a{
  color: var(--coral-deep);
  font-weight: 700;
  word-break: break-all;
}
.contact-info-card a:hover{ text-decoration: underline; }

.contact-form-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-card);
}
.contact-form-card h3{
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  margin: 0 0 6px;
}
.contact-form-card > p.form-sub{
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0 0 22px;
}
.form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-field{ margin-bottom: 16px; }
.form-field label{
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-field input,
.form-field textarea{
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  background: var(--cream);
  transition: border-color .15s, background .15s;
}
.form-field input:focus,
.form-field textarea:focus{
  outline: none;
  border-color: var(--coral);
  background: #fff;
}
.form-field textarea{ resize: vertical; min-height: 130px; }
.form-note{
  font-size: 12px;
  color: var(--ink-soft);
  margin: 10px 0 0;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 900px){
  .page-hero{ padding: 32px 20px 4px; }
  .about-content{ padding: 28px 20px 0; }
  .offer-grid{ grid-template-columns: repeat(2,1fr); }
  .contact-grid{ grid-template-columns: 1fr; padding: 12px 20px 0; }
}
@media (max-width: 640px){
  .offer-grid{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
  .contact-form-card{ padding: 22px; }
}
