/* Harvestime premium About page — scoped to body.harvestime-about-page. */
.harvestime-about-page {
    --ht-ink: #16312a;
    --ht-forest: #123c30;
    --ht-green: #2f7657;
    --ht-leaf: #88ad61;
    --ht-berry: #5c3b6f;
    --ht-cream: #f5f2e9;
    --ht-mist: #edf3ee;
    --ht-line: rgba(22, 49, 42, 0.14);
    --ht-white: #ffffff;
    --ht-shadow: 0 28px 80px rgba(18, 60, 48, 0.14);
    --ht-radius: 28px;
    color: var(--ht-ink);
}

.harvestime-about-page #content.site-content > .container {
    width: 100%;
    max-width: none;
    padding: 0;
}

/* Nest applies 80px top padding to normal pages (50px on mobile). */
.harvestime-about-page #content.site-content {
    padding: 0 !important;
}

.harvestime-about-page #content.site-content > .container > .row,
.harvestime-about-page #content.site-content > .container > .no-row {
    display: block;
    width: 100%;
    margin: 0;
}

.harvestime-about-page #content.site-content > .container > .row > *,
.harvestime-about-page #content.site-content > .container > .no-row > * {
    padding-right: 0;
    padding-left: 0;
}

.harvestime-about-page .ht-about,
.harvestime-about-page .ht-about * {
    box-sizing: border-box;
}

.harvestime-about-page .ht-about {
    position: relative;
    overflow: hidden;
    background: var(--ht-white);
    color: var(--ht-ink);
    font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
}

.harvestime-about-page .ht-about h1,
.harvestime-about-page .ht-about h2,
.harvestime-about-page .ht-about h3,
.harvestime-about-page .ht-about p,
.harvestime-about-page .ht-about figure {
    margin: 0;
}

.harvestime-about-page .ht-about h1,
.harvestime-about-page .ht-about h2,
.harvestime-about-page .ht-about h3 {
    color: inherit;
    letter-spacing: -0.035em;
}

.harvestime-about-page .ht-about img {
    display: block;
    width: 100%;
    height: auto;
}

.harvestime-about-page .ht-shell {
    width: min(100% - 48px, 1280px);
    margin-inline: auto;
}

.harvestime-about-page .ht-section {
    padding: 120px 0;
}

.harvestime-about-page .ht-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--ht-green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.3;
    text-transform: uppercase;
}

.harvestime-about-page .ht-eyebrow::before {
    width: 34px;
    height: 1px;
    background: currentColor;
    content: "";
}

.harvestime-about-page .ht-eyebrow--light {
    color: #c8dfb1;
}

.harvestime-about-page .ht-about__hero {
    position: relative;
    padding: 48px 0 104px;
    overflow: hidden;
    background:
        radial-gradient(circle at 0 0, rgba(136, 173, 97, 0.2), transparent 34%),
        linear-gradient(135deg, #f8f7f1 0%, #eef5ef 100%);
}

.harvestime-about-page .ht-about__orb {
    position: absolute;
    border: 1px solid rgba(47, 118, 87, 0.14);
    border-radius: 999px;
    pointer-events: none;
}

.harvestime-about-page .ht-about__orb--one {
    top: -180px;
    right: 34%;
    width: 430px;
    height: 430px;
}

.harvestime-about-page .ht-about__orb--two {
    right: -120px;
    bottom: -220px;
    width: 520px;
    height: 520px;
}

.harvestime-about-page .ht-about__hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
    gap: clamp(56px, 7vw, 110px);
    align-items: center;
}

.harvestime-about-page .ht-breadcrumbs {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: clamp(72px, 8vw, 118px);
    color: #6d7d77;
    font-size: 13px;
}

.harvestime-about-page .ht-breadcrumbs a {
    color: var(--ht-ink);
    text-decoration: none;
}

.harvestime-about-page .ht-breadcrumbs a:hover,
.harvestime-about-page .ht-breadcrumbs a:focus-visible {
    color: var(--ht-green);
}

.harvestime-about-page .ht-about__hero h1 {
    max-width: 720px;
    margin-bottom: 30px;
    font-size: clamp(44px, 5.3vw, 78px);
    font-weight: 650;
    line-height: 1.02;
}

.harvestime-about-page .ht-about__lead {
    max-width: 660px;
    color: #536760;
    font-size: clamp(17px, 1.5vw, 20px);
    line-height: 1.75;
}

.harvestime-about-page .ht-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    align-items: center;
    margin-top: 40px;
}

.harvestime-about-page .ht-button {
    display: inline-flex;
    min-height: 56px;
    padding: 0 28px;
    border: 1px solid transparent;
    border-radius: 999px;
    gap: 16px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.harvestime-about-page .ht-button:hover,
.harvestime-about-page .ht-button:focus-visible {
    transform: translateY(-2px);
}

.harvestime-about-page .ht-button--primary {
    background: var(--ht-forest);
    color: var(--ht-white);
    box-shadow: 0 14px 35px rgba(18, 60, 48, 0.2);
}

.harvestime-about-page .ht-button--primary:hover,
.harvestime-about-page .ht-button--primary:focus-visible {
    background: var(--ht-green);
    color: var(--ht-white);
}

.harvestime-about-page .ht-button--text {
    min-height: auto;
    padding: 12px 0;
    border-bottom: 1px solid var(--ht-ink);
    border-radius: 0;
    color: var(--ht-ink);
}

.harvestime-about-page .ht-button--text:hover,
.harvestime-about-page .ht-button--text:focus-visible {
    border-color: var(--ht-green);
    color: var(--ht-green);
}

.harvestime-about-page .ht-button--light {
    background: var(--ht-white);
    color: var(--ht-forest);
}

.harvestime-about-page .ht-button--light:hover,
.harvestime-about-page .ht-button--light:focus-visible {
    background: #dff0d4;
    color: var(--ht-forest);
}

.harvestime-about-page .ht-about__trust-line {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 26px;
    margin-top: 48px;
    color: #566a63;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.harvestime-about-page .ht-about__trust-line span {
    display: inline-flex;
    gap: 9px;
    align-items: center;
}

.harvestime-about-page .ht-about__trust-line i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ht-leaf);
    box-shadow: 0 0 0 4px rgba(136, 173, 97, 0.14);
}

.harvestime-about-page .ht-about__hero-media {
    position: relative;
    min-width: 0;
    padding: 28px 0 38px;
}

.harvestime-about-page .ht-about__image-frame {
    position: relative;
    aspect-ratio: 0.95;
    overflow: hidden;
    border-radius: 240px 240px 34px 34px;
    background: #dfe9df;
    box-shadow: var(--ht-shadow);
}

.harvestime-about-page .ht-about__image-frame::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 52%, rgba(12, 41, 32, 0.28));
    content: "";
}

.harvestime-about-page .ht-about__image-frame img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.harvestime-about-page .ht-about__hero-note {
    position: absolute;
    right: -24px;
    bottom: 0;
    z-index: 2;
    width: min(280px, 68%);
    padding: 22px 26px;
    border-left: 4px solid var(--ht-leaf);
    background: var(--ht-white);
    box-shadow: 0 18px 48px rgba(18, 60, 48, 0.16);
}

.harvestime-about-page .ht-about__hero-note strong,
.harvestime-about-page .ht-about__hero-note span {
    display: block;
}

.harvestime-about-page .ht-about__hero-note strong {
    margin-bottom: 6px;
    font-size: 15px;
}

.harvestime-about-page .ht-about__hero-note span {
    color: #697a74;
    font-size: 12px;
    line-height: 1.5;
}

.harvestime-about-page .ht-about__stamp {
    position: absolute;
    top: 20px;
    left: -34px;
    z-index: 2;
    display: flex;
    width: 108px;
    height: 108px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--ht-berry);
    color: var(--ht-white);
    box-shadow: 0 16px 36px rgba(92, 59, 111, 0.25);
}

.harvestime-about-page .ht-about__stamp span {
    font-size: 10px;
    letter-spacing: 0.14em;
}

.harvestime-about-page .ht-about__stamp strong {
    font-size: 24px;
    line-height: 1.2;
}

.harvestime-about-page .ht-about__numbers {
    position: relative;
    z-index: 2;
    background: var(--ht-forest);
    color: var(--ht-white);
}

.harvestime-about-page .ht-about__numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.harvestime-about-page .ht-number {
    position: relative;
    padding: 40px clamp(18px, 3vw, 44px);
}

.harvestime-about-page .ht-number:not(:last-child)::after {
    position: absolute;
    top: 24px;
    right: 0;
    bottom: 24px;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    content: "";
}

.harvestime-about-page .ht-number strong,
.harvestime-about-page .ht-number span {
    display: block;
}

.harvestime-about-page .ht-number strong {
    color: var(--ht-white);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 600;
    line-height: 1.1;
}

.harvestime-about-page .ht-number span {
    margin-top: 9px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.harvestime-about-page .ht-about__story-grid {
    display: grid;
    grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1.14fr);
    gap: clamp(60px, 8vw, 124px);
    align-items: center;
}

.harvestime-about-page .ht-about__story-media {
    position: relative;
    padding: 0 34px 46px 0;
}

.harvestime-about-page .ht-about__story-image {
    aspect-ratio: 0.88;
    overflow: hidden;
    border-radius: var(--ht-radius);
    background: var(--ht-mist);
}

.harvestime-about-page .ht-about__story-image img {
    height: 100%;
    object-fit: cover;
}

.harvestime-about-page .ht-about__story-card {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(300px, 76%);
    padding: 26px 28px;
    border-radius: 18px;
    background: var(--ht-cream);
    box-shadow: 0 18px 50px rgba(18, 60, 48, 0.12);
}

.harvestime-about-page .ht-about__story-card span,
.harvestime-about-page .ht-about__story-card strong {
    display: block;
}

.harvestime-about-page .ht-about__story-card span {
    margin-bottom: 10px;
    color: var(--ht-green);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.harvestime-about-page .ht-about__story-card strong {
    font-size: 15px;
    line-height: 1.55;
}

.harvestime-about-page .ht-about__story-copy h2,
.harvestime-about-page .ht-section-heading h2,
.harvestime-about-page .ht-about__mission h2,
.harvestime-about-page .ht-about__cta h2 {
    font-size: clamp(35px, 4vw, 58px);
    font-weight: 600;
    line-height: 1.12;
}

.harvestime-about-page .ht-about__story-copy h2 {
    max-width: 780px;
    margin-bottom: 34px;
}

.harvestime-about-page .ht-about__story-copy > p:not(.ht-eyebrow) {
    max-width: 760px;
    margin-top: 18px;
    color: #5d6f69;
    font-size: 15px;
    line-height: 1.85;
}

.harvestime-about-page .ht-about__story-copy .ht-about__intro {
    color: var(--ht-ink);
    font-size: 18px;
    font-weight: 500;
}

.harvestime-about-page .ht-about__signature {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-top: 34px;
}

.harvestime-about-page .ht-about__signature > span {
    display: block;
    width: 48px;
    height: 2px;
    background: var(--ht-leaf);
}

.harvestime-about-page .ht-about__signature p {
    color: #5d6f69;
    font-size: 13px;
    line-height: 1.55;
}

.harvestime-about-page .ht-about__signature strong {
    color: var(--ht-ink);
}

.harvestime-about-page .ht-about__values {
    background: var(--ht-cream);
}

.harvestime-about-page .ht-about__timeline {
    position: relative;
    border-top: 1px solid var(--ht-line);
    background: #fbfcf9;
}

.harvestime-about-page .ht-timeline {
    position: relative;
    max-width: 1040px;
    margin-inline: auto;
}

.harvestime-about-page .ht-timeline::before {
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 173px;
    width: 1px;
    background: var(--ht-line);
    content: "";
}

.harvestime-about-page .ht-timeline__item {
    position: relative;
    display: grid;
    grid-template-columns: 130px 46px minmax(0, 1fr);
    gap: 20px;
    padding: 0 0 52px;
}

.harvestime-about-page .ht-timeline__item:last-child {
    padding-bottom: 0;
}

.harvestime-about-page .ht-timeline__year {
    padding-top: 8px;
    color: var(--ht-ink);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-align: right;
}

.harvestime-about-page .ht-timeline__marker {
    position: relative;
    z-index: 1;
    width: 15px;
    height: 15px;
    margin: 14px auto 0;
    border: 4px solid #fbfcf9;
    border-radius: 50%;
    background: var(--ht-green);
    box-shadow: 0 0 0 1px rgba(47, 118, 87, 0.26);
}

.harvestime-about-page .ht-timeline__content {
    padding: 4px 0 0 24px;
}

.harvestime-about-page .ht-timeline__content > span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--ht-green);
    color: var(--ht-white);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.harvestime-about-page .ht-timeline__content h3 {
    margin-bottom: 10px;
    font-size: 25px;
    font-weight: 600;
}

.harvestime-about-page .ht-timeline__content p {
    max-width: 720px;
    color: #62736d;
    font-size: 14px;
    line-height: 1.8;
}

.harvestime-about-page .ht-timeline__item--featured .ht-timeline__marker {
    width: 21px;
    height: 21px;
    margin-top: 11px;
    background: var(--ht-berry);
    box-shadow: 0 0 0 5px rgba(92, 59, 111, 0.11);
}

.harvestime-about-page .ht-timeline__item--featured .ht-timeline__content {
    padding: 28px 30px;
    border-radius: 18px;
    background: var(--ht-white);
    box-shadow: 0 18px 48px rgba(18, 60, 48, 0.08);
}

.harvestime-about-page .ht-about__journey-source {
    max-width: 1040px;
    margin: 56px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--ht-line);
    color: #77847f;
    font-size: 12px;
}

.harvestime-about-page .ht-about__journey-source a {
    color: var(--ht-green);
    font-weight: 700;
    text-decoration: none;
}

.harvestime-about-page .ht-about__journey-source a:hover,
.harvestime-about-page .ht-about__journey-source a:focus-visible {
    text-decoration: underline;
}

.harvestime-about-page .ht-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
    gap: 60px;
    align-items: end;
    margin-bottom: 58px;
}

.harvestime-about-page .ht-section-heading > p {
    color: #5d6f69;
    font-size: 15px;
    line-height: 1.8;
}

.harvestime-about-page .ht-about__value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.harvestime-about-page .ht-value-card {
    position: relative;
    min-height: 380px;
    padding: 40px;
    overflow: hidden;
    border: 1px solid rgba(22, 49, 42, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.harvestime-about-page .ht-value-card:hover {
    transform: translateY(-7px);
    background: var(--ht-white);
    box-shadow: 0 24px 60px rgba(18, 60, 48, 0.1);
}

.harvestime-about-page .ht-value-card__icon {
    display: grid;
    width: 64px;
    height: 64px;
    margin-bottom: 74px;
    border-radius: 18px;
    place-items: center;
    background: var(--ht-mist);
    color: var(--ht-green);
}

.harvestime-about-page .ht-value-card__icon svg {
    width: 34px;
    height: 34px;
}

.harvestime-about-page .ht-value-card > span {
    position: absolute;
    top: 42px;
    right: 40px;
    color: rgba(22, 49, 42, 0.32);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.harvestime-about-page .ht-value-card h3 {
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 600;
}

.harvestime-about-page .ht-value-card p {
    color: #60716b;
    font-size: 14px;
    line-height: 1.75;
}

.harvestime-about-page .ht-about__mission {
    position: relative;
    min-height: 690px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--ht-forest);
    color: var(--ht-white);
}

.harvestime-about-page .ht-about__mission-image,
.harvestime-about-page .ht-about__mission-shade {
    position: absolute;
    inset: 0;
}

.harvestime-about-page .ht-about__mission-image img {
    height: 100%;
    object-fit: cover;
    object-position: 57% center;
}

.harvestime-about-page .ht-about__mission-shade {
    background: linear-gradient(90deg, rgba(10, 39, 30, 0.97) 0%, rgba(10, 39, 30, 0.9) 42%, rgba(10, 39, 30, 0.28) 74%, rgba(10, 39, 30, 0.08) 100%);
}

.harvestime-about-page .ht-about__mission-inner {
    position: relative;
    z-index: 1;
}

.harvestime-about-page .ht-about__mission-copy {
    max-width: 660px;
    padding: 100px 0;
}

.harvestime-about-page .ht-about__mission h2 {
    margin-bottom: 28px;
    color: var(--ht-white);
}

.harvestime-about-page .ht-about__mission-copy > p:not(.ht-eyebrow) {
    max-width: 600px;
    margin-bottom: 38px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
    line-height: 1.8;
}

.harvestime-about-page .ht-section-heading--center {
    display: block;
    max-width: 760px;
    margin-right: auto;
    margin-bottom: 68px;
    margin-left: auto;
    text-align: center;
}

.harvestime-about-page .ht-section-heading--center .ht-eyebrow {
    justify-content: center;
}

.harvestime-about-page .ht-section-heading--center h2 {
    margin-bottom: 22px;
}

.harvestime-about-page .ht-section-heading--center > p {
    max-width: 650px;
    margin-inline: auto;
}

.harvestime-about-page .ht-about__difference-list {
    max-width: 1000px;
    margin-inline: auto;
    border-top: 1px solid var(--ht-line);
}

.harvestime-about-page .ht-difference {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    padding: 36px 8px;
    border-bottom: 1px solid var(--ht-line);
}

.harvestime-about-page .ht-difference > span {
    padding-top: 4px;
    color: var(--ht-green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.harvestime-about-page .ht-difference > div {
    display: grid;
    grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1fr);
    gap: 50px;
}

.harvestime-about-page .ht-difference h3 {
    font-size: 23px;
    font-weight: 600;
}

.harvestime-about-page .ht-difference p {
    color: #62736d;
    font-size: 14px;
    line-height: 1.75;
}

.harvestime-about-page .ht-about__cta {
    padding: 0 0 120px;
}

.harvestime-about-page .ht-about__cta-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 70px;
    align-items: center;
    padding: clamp(48px, 7vw, 86px);
    overflow: hidden;
    border-radius: 30px;
    background:
        radial-gradient(circle at 100% 0, rgba(200, 223, 177, 0.2), transparent 35%),
        var(--ht-forest);
    color: var(--ht-white);
}

.harvestime-about-page .ht-about__cta-card::after {
    position: absolute;
    right: -85px;
    bottom: -180px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.harvestime-about-page .ht-about__cta h2 {
    max-width: 720px;
    margin-bottom: 20px;
    color: var(--ht-white);
}

.harvestime-about-page .ht-about__cta-card > div:first-child > p:last-child {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    line-height: 1.75;
}

.harvestime-about-page .ht-about__cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    min-width: 260px;
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
}

.harvestime-about-page .ht-about__phone {
    display: block;
    color: var(--ht-white);
    text-align: center;
    text-decoration: none;
}

.harvestime-about-page .ht-about__phone span,
.harvestime-about-page .ht-about__phone strong {
    display: block;
}

.harvestime-about-page .ht-about__phone span {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
    text-transform: uppercase;
}

.harvestime-about-page .ht-about__phone strong {
    color: var(--ht-white);
    font-size: 18px;
}

.harvestime-js .harvestime-about-page .ht-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 650ms ease, transform 650ms ease;
}

.harvestime-js .harvestime-about-page .ht-reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1100px) {
    .harvestime-about-page .ht-about__hero-grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
        gap: 48px;
    }

    .harvestime-about-page .ht-about__hero h1 {
        font-size: clamp(42px, 5.4vw, 62px);
    }

    .harvestime-about-page .ht-about__stamp {
        left: -18px;
    }

    .harvestime-about-page .ht-about__value-grid {
        gap: 16px;
    }

    .harvestime-about-page .ht-value-card {
        padding: 32px;
    }

    .harvestime-about-page .ht-about__cta-card {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .harvestime-about-page .ht-about__cta-actions {
        width: min(100%, 330px);
    }
}

@media (max-width: 860px) {
    .harvestime-about-page .ht-section {
        padding: 88px 0;
    }

    .harvestime-about-page .ht-about__hero {
        padding: 30px 0 82px;
    }

    .harvestime-about-page .ht-about__hero-grid,
    .harvestime-about-page .ht-about__story-grid,
    .harvestime-about-page .ht-section-heading {
        grid-template-columns: 1fr;
    }

    .harvestime-about-page .ht-breadcrumbs {
        margin-bottom: 64px;
    }

    .harvestime-about-page .ht-about__hero-copy {
        max-width: 690px;
    }

    .harvestime-about-page .ht-about__hero-media {
        width: min(100%, 620px);
        margin-inline: auto;
    }

    .harvestime-about-page .ht-about__image-frame {
        aspect-ratio: 1.08;
        border-radius: 160px 160px 28px 28px;
    }

    .harvestime-about-page .ht-about__numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .harvestime-about-page .ht-number:nth-child(2)::after {
        content: none;
    }

    .harvestime-about-page .ht-number:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .harvestime-about-page .ht-about__story-media {
        width: min(100%, 600px);
        margin-inline: auto;
    }

    .harvestime-about-page .ht-section-heading {
        gap: 24px;
    }

    .harvestime-about-page .ht-about__value-grid {
        grid-template-columns: 1fr;
    }

    .harvestime-about-page .ht-value-card {
        min-height: 0;
    }

    .harvestime-about-page .ht-value-card__icon {
        margin-bottom: 42px;
    }

    .harvestime-about-page .ht-about__mission {
        min-height: 620px;
    }

    .harvestime-about-page .ht-about__mission-shade {
        background: linear-gradient(90deg, rgba(10, 39, 30, 0.96) 0%, rgba(10, 39, 30, 0.83) 68%, rgba(10, 39, 30, 0.48) 100%);
    }
}

@media (max-width: 640px) {
    .harvestime-about-page .ht-shell {
        width: min(100% - 32px, 1280px);
    }

    .harvestime-about-page .ht-section {
        padding: 72px 0;
    }

    .harvestime-about-page .ht-about__hero h1 {
        font-size: clamp(39px, 12vw, 52px);
    }

    .harvestime-about-page .ht-about__lead {
        font-size: 16px;
        line-height: 1.7;
    }

    .harvestime-about-page .ht-button-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .harvestime-about-page .ht-about__trust-line {
        align-items: flex-start;
        flex-direction: column;
    }

    .harvestime-about-page .ht-about__image-frame {
        aspect-ratio: 0.9;
        border-radius: 110px 110px 24px 24px;
    }

    .harvestime-about-page .ht-about__stamp {
        top: 14px;
        left: -8px;
        width: 88px;
        height: 88px;
    }

    .harvestime-about-page .ht-about__stamp strong {
        font-size: 20px;
    }

    .harvestime-about-page .ht-about__hero-note {
        right: 10px;
        padding: 18px 20px;
    }

    .harvestime-about-page .ht-number {
        padding: 30px 16px;
    }

    .harvestime-about-page .ht-number strong {
        font-size: 30px;
    }

    .harvestime-about-page .ht-number span {
        font-size: 10px;
    }

    .harvestime-about-page .ht-about__story-media {
        padding: 0 18px 56px 0;
    }

    .harvestime-about-page .ht-about__story-card {
        width: min(290px, 88%);
        padding: 22px;
    }

    .harvestime-about-page .ht-about__story-copy h2,
    .harvestime-about-page .ht-section-heading h2,
    .harvestime-about-page .ht-about__mission h2,
    .harvestime-about-page .ht-about__cta h2 {
        font-size: clamp(32px, 9vw, 44px);
    }

    .harvestime-about-page .ht-timeline::before {
        left: 7px;
    }

    .harvestime-about-page .ht-timeline__item {
        grid-template-columns: 16px minmax(0, 1fr);
        gap: 16px;
        padding-bottom: 44px;
    }

    .harvestime-about-page .ht-timeline__year {
        grid-column: 2;
        grid-row: 1;
        padding-top: 0;
        color: var(--ht-green);
        font-size: 16px;
        text-align: left;
    }

    .harvestime-about-page .ht-timeline__marker {
        grid-column: 1;
        grid-row: 1 / span 2;
        width: 15px;
        height: 15px;
        margin-top: 3px;
    }

    .harvestime-about-page .ht-timeline__content {
        grid-column: 2;
        grid-row: 2;
        padding: 6px 0 0;
    }

    .harvestime-about-page .ht-timeline__item--featured .ht-timeline__marker {
        width: 17px;
        height: 17px;
        margin-top: 1px;
    }

    .harvestime-about-page .ht-timeline__item--featured .ht-timeline__content {
        padding: 24px 20px;
    }

    .harvestime-about-page .ht-value-card {
        padding: 28px;
    }

    .harvestime-about-page .ht-about__mission {
        min-height: 660px;
        align-items: flex-end;
    }

    .harvestime-about-page .ht-about__mission-image img {
        object-position: 65% center;
    }

    .harvestime-about-page .ht-about__mission-shade {
        background: linear-gradient(0deg, rgba(10, 39, 30, 0.98) 0%, rgba(10, 39, 30, 0.86) 58%, rgba(10, 39, 30, 0.38) 100%);
    }

    .harvestime-about-page .ht-about__mission-copy {
        padding: 86px 0 64px;
    }

    .harvestime-about-page .ht-difference {
        grid-template-columns: 42px 1fr;
        gap: 10px;
        padding: 30px 0;
    }

    .harvestime-about-page .ht-difference > div {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .harvestime-about-page .ht-about__cta {
        padding-bottom: 72px;
    }

    .harvestime-about-page .ht-about__cta-card {
        padding: 42px 26px;
        border-radius: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .harvestime-about-page .ht-button,
    .harvestime-about-page .ht-value-card,
    .harvestime-js .harvestime-about-page .ht-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ------------------------------------------------------------------
   v1.5.0 — five-stat counter row + "Why Harvestime" image layout
------------------------------------------------------------------- */

.harvestime-about-page .ht-about__numbers-grid--five {
    grid-template-columns: repeat(5, 1fr);
}

.harvestime-about-page .ht-about__numbers-grid--five .ht-number {
    text-align: center;
}

.harvestime-about-page .ht-about__difference-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
    max-width: 1160px;
    margin-inline: auto;
}

.harvestime-about-page .ht-about__difference-media {
    margin: 0;
    align-self: stretch;
}

.harvestime-about-page .ht-about__difference-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 30px 60px rgba(15, 40, 30, 0.16);
}

.harvestime-about-page .ht-about__difference-grid .ht-about__difference-list {
    max-width: none;
}

.harvestime-about-page .ht-about__difference-grid .ht-difference {
    grid-template-columns: 56px 1fr;
    padding: 28px 4px;
}

.harvestime-about-page .ht-about__difference-grid .ht-difference > div {
    grid-template-columns: 1fr;
    gap: 8px;
}

@media (max-width: 1100px) {
    .harvestime-about-page .ht-about__numbers-grid--five .ht-number {
        padding-inline: 14px;
    }
}

@media (max-width: 860px) {
    .harvestime-about-page .ht-about__numbers-grid--five {
        grid-template-columns: repeat(2, 1fr);
    }

    .harvestime-about-page .ht-about__numbers-grid--five .ht-number:nth-child(2)::after,
    .harvestime-about-page .ht-about__numbers-grid--five .ht-number:nth-child(4)::after,
    .harvestime-about-page .ht-about__numbers-grid--five .ht-number:last-child::after {
        content: none;
    }

    .harvestime-about-page .ht-about__numbers-grid--five .ht-number:nth-child(-n+4) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .harvestime-about-page .ht-about__numbers-grid--five .ht-number:last-child {
        grid-column: 1 / -1;
    }

    .harvestime-about-page .ht-about__difference-grid {
        grid-template-columns: 1fr;
    }

    .harvestime-about-page .ht-about__difference-media {
        width: min(100%, 600px);
        margin-inline: auto;
    }

    .harvestime-about-page .ht-about__difference-media img {
        min-height: 260px;
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 640px) {
    .harvestime-about-page .ht-about__numbers-grid--five .ht-number {
        padding: 26px 10px;
    }
}

/* v2.0.0 refresh — Bricolage Grotesque display face for About headings,
   matching the homepage. Manrope carries body copy and UI. */
.harvestime-about-page .ht-about :is(h1, h2, h3) {
    font-family: var(--font-display) !important;
    font-optical-sizing: auto;
    letter-spacing: -0.03em !important;
}

/* ── Group structure: four brands, three routes to market (v2.4.0) ───────────
   Uses the same card language as .ht-value-card so the section reads as part
   of the page rather than an addition to it. */

.harvestime-about-page .ht-about__group-label {
    margin: 0 0 22px;
    color: var(--ht-ink, #16312a);
    font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    line-height: 1.5;
    text-transform: uppercase;
    opacity: 0.55;
}

.harvestime-about-page .ht-about__group-label + * {
    margin-bottom: 58px;
}

.harvestime-about-page .ht-about__brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.harvestime-about-page .ht-brand-card {
    display: flex;
    position: relative;
    padding: 34px 30px;
    flex-direction: column;
    border: 1px solid rgba(22, 49, 42, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.harvestime-about-page .ht-brand-card:hover {
    transform: translateY(-7px);
    background: var(--ht-white, #fff);
    box-shadow: 0 24px 60px rgba(18, 60, 48, 0.1);
}

.harvestime-about-page .ht-brand-card__num {
    margin-bottom: 16px;
    color: #0e6b49;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.harvestime-about-page .ht-brand-card h4 {
    margin: 0 0 12px;
    color: var(--ht-ink, #16312a);
    font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.harvestime-about-page .ht-brand-card h4 sup {
    top: -0.5em;
    font-size: 0.5em;
}

.harvestime-about-page .ht-brand-card p {
    margin: 0 0 22px;
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.78;
}

.harvestime-about-page .ht-brand-card__link {
    display: inline-flex;
    margin-top: auto;
    gap: 7px;
    align-items: center;
    color: #0e6b49;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.harvestime-about-page .ht-brand-card__link:hover {
    text-decoration: underline;
}

.harvestime-about-page .ht-about__channel-row {
    display: flex;
    gap: 14px;
    align-items: stretch;
}

.harvestime-about-page .ht-channel-card {
    display: flex;
    padding: 30px 28px;
    flex: 1 1 0;
    flex-direction: column;
    border: 1px solid rgba(22, 49, 42, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
}

.harvestime-about-page .ht-channel-card h4 {
    margin: 0 0 12px;
    color: var(--ht-ink, #16312a);
    font-family: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.25;
}

.harvestime-about-page .ht-channel-card p {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.78;
}

.harvestime-about-page .ht-channel-card a {
    margin-top: auto;
    color: #0e6b49;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.harvestime-about-page .ht-channel-card a:hover {
    text-decoration: underline;
}

.harvestime-about-page .ht-channel-arrow {
    align-self: center;
    color: #0e6b49;
    font-size: 20px;
    opacity: 0.45;
}

.harvestime-about-page .ht-about__group-note {
    max-width: 760px;
    margin: 34px 0 0;
    font-size: 13px;
    line-height: 1.75;
    opacity: 0.62;
}

@media (max-width: 1100px) {
    .harvestime-about-page .ht-about__brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .harvestime-about-page .ht-about__channel-row {
        flex-wrap: wrap;
    }

    .harvestime-about-page .ht-channel-card {
        flex: 1 1 260px;
    }

    .harvestime-about-page .ht-channel-arrow {
        display: none;
    }
}

@media (max-width: 640px) {
    .harvestime-about-page .ht-about__brand-grid {
        grid-template-columns: 1fr;
    }
}
