/* =========================================================
   AGE ESSENTIALS â€” ABOUT US
   Built to match the existing site visual system:
   cream + deep green + warm orange + SF Pro + rounded cards
   ========================================================= */

   :root {
    --ae-green: #244c44;
    --ae-green-dark: #1b3532;
    --ae-green-soft: #aab8b4;
    --ae-cream: #f6f0df;
    --ae-cream-light: #fbf8ef;
    --ae-orange: #ffa162;
    --ae-yellow: #ffffca;
    --ae-white: #ffffff;
    --ae-border: rgba(36, 76, 68, 0.14);
    --ae-copy: rgba(36, 76, 68, 0.78);
    --ae-radius: 32px;
  }
  
  .about-page {
    margin: 0;
    overflow-x: hidden;
    background: var(--ae-cream-light);
    color: var(--ae-green);
    font-family: "SFR", Arial, Helvetica, sans-serif;
  }
  
  .about-page main {
    overflow: hidden;
  }
  
  .about-page p {
    margin: 0;
    color: var(--ae-copy);
  }
  
  .about-page h1,
  .about-page h2,
  .about-page h3 {
    margin: 0;
    color: var(--ae-green);
    letter-spacing: -0.035em;
  }
  
  .about-shell {
    width: min(calc(100% - 48px), 1240px);
    margin: 0 auto;
  }
  
  .eyebrow {
    margin-bottom: 20px !important;
    color: var(--ae-orange) !important;
    font-size: 12px !important;
    font-weight: 600;
    letter-spacing: 0.16em;
  }
  
  .eyebrow-light {
    color: #ffd0ad !important;
  }
  
  .section-number {
    margin-bottom: 10px !important;
    color: rgba(36, 76, 68, 0.45) !important;
    font-size: 12px !important;
    font-weight: 600;
    letter-spacing: 0.08em;
  }
  
  
  /* ================= HERO ================= */
  
  .about-hero {
    min-height: 100svh;
    padding: 112px 0 38px;
    display: flex;
    align-items: stretch;
    background: var(--ae-cream);
  }
  
  .about-hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 28px;
    align-items: stretch;
  }
  
  .about-hero-copy,
  .about-hero-visual {
    min-height: calc(100svh - 150px);
    border-radius: var(--ae-radius);
    overflow: hidden;
  }
  
  .about-hero-copy {
    padding: clamp(44px, 7vw, 88px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--ae-cream-light);
    border: 1px solid rgba(36, 76, 68, 0.07);
  }
  
  .about-hero h1 {
    max-width: 780px;
    font-size: clamp(54px, 7.5vw, 104px);
    font-weight: 600;
    line-height: 0.92;
  }
  
  .about-hero h1 span {
    color: var(--ae-orange);
  }
  
  .about-hero-lead {
    max-width: 620px;
    margin-top: 34px !important;
    font-size: clamp(18px, 2vw, 24px) !important;
    line-height: 1.55;
  }
  
  .about-hero-actions,
  .closing-actions {
    margin-top: 38px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .about-btn {
    min-height: 50px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
  }
  
  .about-btn:hover {
    transform: translateY(-2px);
  }
  
  .about-btn-primary {
    background: var(--ae-green);
    color: var(--ae-white);
  }
  
  .about-btn-primary:hover {
    background: var(--ae-green-dark);
  }
  
  .about-btn-secondary {
    background: var(--ae-yellow);
    color: var(--ae-orange);
    border: 1px solid rgba(255, 161, 98, 0.18);
  }
  
  .about-btn-secondary:hover {
    background: #fff3b9;
  }
  
  .about-hero-visual {
    position: relative;
    background: #d8d8d6;
  }
  
  .about-hero-visual > img {
    width: 100%;
    height: 100%;
    min-height: calc(100svh - 150px);
    object-fit: cover;
    object-position: center;
  }
  
  .about-hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 53, 50, 0.38), transparent 45%);
    pointer-events: none;
  }
  
  .visual-note {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 18px;
    background: rgba(246, 240, 223, 0.84);
    backdrop-filter: blur(18px);
  }
  
  .visual-note span {
    color: var(--ae-orange);
    font-size: 12px;
    font-weight: 600;
  }
  
  .visual-note p {
    color: var(--ae-green) !important;
    font-size: 15px !important;
    font-weight: 600;
  }
  
  /* ================= MANIFESTO ================= */
  
  .manifesto-section {
    padding: clamp(100px, 12vw, 170px) 0;
    background: var(--ae-green);
  }
  
  .manifesto-inner h2 {
    max-width: 1050px;
    color: var(--ae-white);
    font-size: clamp(44px, 6vw, 82px);
    font-weight: 500;
    line-height: 1.02;
  }
  
  .manifesto-copy {
    max-width: 760px;
    margin-top: 44px !important;
    color: rgba(255, 255, 255, 0.68) !important;
    font-size: clamp(18px, 2vw, 22px) !important;
    line-height: 1.65;
  }
  
  /* ================= STORY ================= */
  
  .about-story-section,
  .future-section {
    padding: clamp(96px, 11vw, 150px) 0;
    background: var(--ae-cream-light);
  }
  
  .split-story,
  .future-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: clamp(52px, 9vw, 120px);
  }
  
  .story-heading h2,
  .future-grid h2,
  .origin-copy h2,
  .honesty-heading h2 {
    max-width: 570px;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 500;
    line-height: 1.02;
  }
  
  .story-copy,
  .future-copy {
    align-self: end;
  }
  
  .story-copy p,
  .future-copy p,
  .origin-copy > p:not(.section-number):not(.eyebrow) {
    max-width: 680px;
    margin-bottom: 24px !important;
    font-size: clamp(17px, 1.8vw, 20px) !important;
    line-height: 1.75;
  }
  
  .story-copy p:last-child,
  .future-copy p:last-child,
  .origin-copy > p:last-child {
    margin-bottom: 0 !important;
  }
  
  .lead-copy {
    color: var(--ae-green) !important;
    font-size: clamp(21px, 2.3vw, 28px) !important;
    font-weight: 400;
    line-height: 1.5 !important;
  }
  
  /* ================= CARE ================= */
  
  .care-section {
    padding: 26px 0 clamp(100px, 11vw, 150px);
    background: var(--ae-cream-light);
  }
  
  .care-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  
  .care-card {
    min-height: 680px;
    border-radius: var(--ae-radius);
    overflow: hidden;
  }
  
  .care-image-card {
    background: var(--ae-cream);
  }
  
  .care-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .care-copy-card {
    padding: clamp(42px, 6vw, 74px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--ae-cream);
    border: 1px solid rgba(36, 76, 68, 0.07);
  }
  
  .care-copy-card h2 {
    max-width: 560px;
    margin-bottom: 34px;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 500;
    line-height: 1.02;
  }
  
  .care-copy-card > p:not(.section-number):not(.eyebrow) {
    max-width: 610px;
    margin-bottom: 20px !important;
    font-size: clamp(17px, 1.8vw, 20px) !important;
    line-height: 1.72;
  }
  
  /* ================= PRINCIPLES ================= */
  
  .principles-section {
    padding: clamp(100px, 12vw, 160px) 0;
    background: var(--ae-cream);
  }
  
  .principles-heading {
    margin-bottom: 58px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;
    align-items: end;
  }
  
  .principles-heading h2 {
    max-width: 720px;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 500;
    line-height: 1.02;
  }
  
  .principles-heading > p {
    max-width: 440px;
    justify-self: end;
    font-size: 17px !important;
    line-height: 1.7;
  }
  
  .principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  
  .principle-card {
    min-height: 330px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 26px;
    background: var(--ae-cream-light);
    border: 1px solid rgba(36, 76, 68, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
  }
  
  .principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(36, 76, 68, 0.08);
  }
  
  .principle-card > span {
    color: var(--ae-orange);
    font-size: 12px;
    font-weight: 600;
  }
  
  .principle-card h3 {
    margin-bottom: 14px;
    font-size: clamp(25px, 2.3vw, 34px);
    font-weight: 500;
  }
  
  .principle-card p {
    max-width: 300px;
    font-size: 15px !important;
    line-height: 1.65;
  }
  
  .accent-card {
    background: var(--ae-green);
  }
  
  .accent-card h3,
  .accent-card p {
    color: var(--ae-white) !important;
  }
  
  .accent-card p {
    color: rgba(255, 255, 255, 0.7) !important;
  }
  
  /* ================= ORIGIN ================= */
  
  .origin-section {
    padding: clamp(100px, 12vw, 160px) 0;
    background: var(--ae-cream-light);
  }
  
  .origin-grid {
    display: grid;
    grid-template-columns: 1fr 0.86fr;
    gap: 28px;
  }
  
  .origin-copy,
  .origin-quote {
    min-height: 590px;
    padding: clamp(42px, 6vw, 74px);
    border-radius: var(--ae-radius);
  }
  
  .origin-copy {
    background: var(--ae-cream);
  }
  
  .origin-copy h2 {
    margin-bottom: 34px;
  }
  
  .origin-quote {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--ae-orange);
  }
  
  .quote-mark {
    color: var(--ae-green) !important;
    font-size: 82px !important;
    font-weight: 600;
    line-height: 0.8;
  }
  
  .origin-quote blockquote {
    margin: 0;
    color: var(--ae-green);
    font-size: clamp(38px, 4.6vw, 64px);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.035em;
  }
  
  /* ================= HONESTY ================= */
  
  .honesty-section {
    padding: clamp(100px, 12vw, 160px) 0;
    background: var(--ae-green-dark);
  }
  
  .honesty-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(60px, 9vw, 120px);
  }
  
  .honesty-heading .section-number {
    color: rgba(255, 255, 255, 0.45) !important;
  }
  
  .honesty-heading h2 {
    color: var(--ae-white);
  }
  
  .honesty-list {
    align-self: end;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }
  
  .honesty-item {
    min-height: 88px;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
  
  .honesty-item span {
    color: var(--ae-orange);
    font-size: 12px;
    font-weight: 600;
  }
  
  .honesty-item p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: clamp(17px, 1.8vw, 20px) !important;
  }
  
  /* ================= FUTURE ================= */
  
  .future-section {
    background: var(--ae-cream-light);
  }
  
  /* ================= CLOSING ================= */
  
  .closing-section {
    padding: clamp(110px, 13vw, 180px) 0;
    text-align: center;
    background: var(--ae-cream);
  }
  
  .closing-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .closing-inner h2 {
    max-width: 930px;
    font-size: clamp(50px, 7vw, 92px);
    font-weight: 500;
    line-height: 0.98;
  }
  
  .closing-inner > p:not(.eyebrow) {
    margin-top: 28px !important;
    font-size: clamp(18px, 2vw, 22px) !important;
  }
  
  .closing-actions {
    justify-content: center;
  }
  
  /* ================= FOOTER ================= */
  
  .about-footer {
    width: calc(100% - 32px);
    margin: 0 16px 16px;
  }
  
  /* ================= RESPONSIVE ================= */
  
  @media (max-width: 1000px) {
    .about-hero-grid,
    .care-grid,
    .origin-grid {
      grid-template-columns: 1fr;
    }
  
    .about-hero-copy,
    .about-hero-visual {
      min-height: auto;
    }
  
    .about-hero-copy {
      padding-top: 90px;
      padding-bottom: 90px;
    }
  
    .about-hero-visual > img {
      min-height: 620px;
    }
  
    .split-story,
    .future-grid,
    .honesty-grid {
      grid-template-columns: 1fr;
      gap: 54px;
    }
  
    .principles-heading {
      grid-template-columns: 1fr;
      gap: 28px;
    }
  
    .principles-heading > p {
      justify-self: start;
    }
  
    .principles-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .care-card,
    .origin-copy,
    .origin-quote {
      min-height: 560px;
    }
  }
  
  @media (max-width: 768px) {
    .about-shell {
      width: min(calc(100% - 28px), 1240px);
    }
  
    .about-page .nav,
    .about-page .nav.shrink {
      top: 10px;
      left: 12px;
      right: 12px;
      padding: 10px 14px;
    }
  
    .about-hero {
      padding-top: 88px;
      padding-bottom: 14px;
    }
  
    .about-hero-grid {
      gap: 14px;
    }
  
    .about-hero-copy,
    .about-hero-visual,
    .care-card,
    .origin-copy,
    .origin-quote {
      border-radius: 24px;
    }
  
    .about-hero-copy {
      padding: 66px 26px 54px;
    }
  
    .about-hero h1 {
      font-size: clamp(48px, 14vw, 72px);
    }
  
    .about-hero-lead {
      margin-top: 26px !important;
    }
  
    .about-hero-visual > img {
      min-height: 500px;
    }
  
    .principles-grid {
      grid-template-columns: 1fr;
    }
  
    .principle-card {
      min-height: 270px;
    }
  
    .care-card,
    .origin-copy,
    .origin-quote {
      min-height: auto;
    }
  
    .care-image-card img {
      min-height: 520px;
    }
  
    .origin-quote {
      min-height: 430px;
    }
  
    .honesty-item {
      grid-template-columns: 42px 1fr;
    }
  
    .about-footer {
      width: calc(100% - 20px);
      margin: 0 10px 10px;
    }
  }
  
  @media (max-width: 480px) {
    .about-hero-actions,
    .closing-actions {
      flex-direction: column;
    }
  
    .about-btn {
      width: 100%;
    }
  
    .visual-note {
      left: 14px;
      right: 14px;
      bottom: 14px;
    }
  
    .care-copy-card,
    .origin-copy,
    .origin-quote {
      padding: 38px 24px;
    }
  
    .care-image-card img {
      min-height: 440px;
    }
  }