.about-hero {
  background: var(--teal-dark);
  padding: 120px 60px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-hero-left h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(48px, 5vw, 72px);
  color: white;
  line-height: 1.05;
  margin-bottom: 32px;
}
.about-hero-left h1 em { font-style: italic; color: var(--gold); }
.about-hero-left p {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: rgba(250,248,243,0.8);
  line-height: 1.75;
}
.about-hero-right img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
  display: block;
}
.about-story { max-width: 760px; margin: 0 auto; padding: 100px 40px; }
.about-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.about-story p {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 36px;
}
.about-story p.body-text {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #444;
  line-height: 1.85;
}
.about-story blockquote {
  border-left: 3px solid var(--gold);
  margin: 48px 0;
  padding: 24px 36px;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--teal-dark);
  line-height: 1.4;
}
.about-together {
  background: var(--teal-dark);
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-together-left img { width: 100%; border-radius: 20px; display: block; }
.about-together-right h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 3.5vw, 52px);
  color: white;
  line-height: 1.15;
  margin-bottom: 28px;
}
.about-together-right p {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: rgba(250,248,243,0.8);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about-cta { text-align: center; padding: 100px 40px; }
.about-cta h2 {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(36px, 4vw, 52px);
  color: var(--teal-dark);
  margin-bottom: 20px;
}
.about-cta p {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: #666;
  line-height: 1.65;
  max-width: 500px;
  margin: 0 auto 40px;
}

/* About page simple footer */
.about-footer {
  background: var(--teal-dark);
  padding: 60px 60px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.about-footer a {
  color: rgba(250,248,243,0.6);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: color 0.2s;
}
.about-footer a:hover { color: var(--gold); }
.about-footer p { font-family: 'Inter', sans-serif; font-size: 13px; color: rgba(250,248,243,0.4); }

/* ── ABOUT PAGE HERO ── */
.about-page-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.about-page-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://lh3.googleusercontent.com/d/12e8PzMMrogQoK47GItKvPAc359WXroYF=w1920') left center/cover no-repeat;
}
.about-page-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 120px 60px 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
.about-page-hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #d4a574;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.about-page-hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(48px, 5vw, 72px);
  color: #1A3A38;
  line-height: 1.05;
  margin-bottom: 32px;
  max-width: 480px;
}
.about-page-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #444;
  line-height: 1.75;
  max-width: 480px;
}

@media (max-width: 900px) {
  /* Mobile hero: image on top, text below — matches homepage pattern */
  .about-page-hero {
    min-height: unset !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    overflow: visible !important;
  }
  .about-page-hero-bg {
    position: relative !important;
    height: 72vw !important;
    min-height: 260px !important;
    max-height: 420px !important;
    width: 100% !important;
    background-position: left 20% !important;
  }
  .about-page-hero-content {
    position: static !important;
    padding: 30px 22px 48px !important;
    background: var(--ivory) !important;
    align-items: flex-start !important;
    text-align: left !important;
    max-width: 100% !important;
  }
  .about-page-hero-eyebrow {
    font-size: 10px !important;
    letter-spacing: 0.1em !important;
    margin-bottom: 14px !important;
  }
  .about-page-hero-headline {
    font-size: clamp(36px, 10vw, 54px) !important;
    line-height: 1.0 !important;
    margin-bottom: 18px !important;
    color: var(--teal-dark) !important;
  }
  .about-page-hero-sub {
    font-size: 15px !important;
    line-height: 1.65 !important;
    color: #444 !important;
    max-width: 100% !important;
  }
}

@media (max-width: 900px) {
  .about-hero, .about-together { grid-template-columns: 1fr; padding: 80px 28px; gap: 48px; }
  .about-story { padding: 80px 28px; }
  .about-cta { padding: 80px 28px; }
  .about-footer { padding: 48px 28px 28px; flex-direction: column; align-items: flex-start; }
}
