/* ========================
   Page Hero
======================== */
.page-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(30,12,3,0.42) 0%, rgba(30,12,3,0.72) 100%);
}

.page-hero-body {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 24px;
    max-width: 700px;
}

.page-hero-body .hero-eyebrow {
    display: inline-block;
    color: rgba(255,255,255,0.65);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.page-hero-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(44px, 7vw, 80px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: #fff;
    margin: 0 0 18px;
}

.page-hero-title em {
    font-style: italic;
    font-weight: 400;
}

.page-hero-sub {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.78);
    max-width: 460px;
    margin: 0 auto;
    font-style: italic;
}

/* ========================
   About Story — 2-column
======================== */
.about-story {
    background: var(--cream, #FAF8F4);
    padding: 88px 64px;
}

.about-story-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-story-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-story-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-story-para,
.about-story-body p {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-mid, #5A3420);
    margin: 0 0 20px;
}
.about-story-body h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    color: var(--text-dark, #2A160B);
    margin: 0 0 8px;
}
.about-story-body ul { margin: 0 0 20px; padding-left: 20px; }
.about-story-body li {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-mid, #5A3420);
}

/* Text-only attribution — no avatar/icon placeholder. The border-top is the
   hairline rule the byline sits under. */
.about-founder {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 0.5px solid #EEE5D8;
}

.about-founder-name {
    font-weight: 500;
    font-size: 15px;
    color: #3E2418;
    margin: 0 0 4px;
}

.about-founder-title {
    font-size: 12px;
    font-weight: 500;
    color: #A89880;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
}

/* ========================
   Values Section
======================== */
.about-values {
    background: var(--cream-dark, #F2EBE0);
    padding: 88px 64px;
}

.about-values-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.about-values-head {
    text-align: center;
    margin-bottom: 56px;
}

.about-values-desc {
    font-size: 15px;
    color: var(--text-light, #9E7558);
    line-height: 1.75;
    max-width: 500px;
    margin: 16px auto 0;
}

/* auto-fit + minmax reflows cleanly at any value count (2-6+) instead of a
   hardcoded column count that would leave gaps or overflow as the admin
   adds/removes values — collapses to a single column on its own once the
   viewport can't fit a second 220px card, no manual breakpoint needed. */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.value-card {
    background: #FFFFFF;
    border: 0.5px solid #E5DBCC;
    border-radius: 10px;
    padding: 22px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(30,12,3,0.10);
}

.value-card-icon {
    font-size: 22px;
    color: #8A5A3B;
    margin: 0 auto 16px;
    line-height: 1;
}

.value-card h3 {
    font-size: 15px;
    font-weight: 500;
    color: var(--brown-dark, #1E0C03);
    margin: 0 0 8px;
}

.value-card p {
    font-size: 13px;
    line-height: 1.7;
    color: #8A7965;
    margin: 0;
}

/* ========================
   Responsive
======================== */
@media (max-width: 1024px) {
    .about-story { padding: 72px 40px; }
    .about-story-inner { gap: 48px; }
    .about-values { padding: 72px 40px; }
}

@media (max-width: 768px) {
    .page-hero { height: 380px; }
    .page-hero-title { font-size: 44px; }

    .about-story { padding: 56px 20px; }
    .about-story-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .about-story-image { aspect-ratio: 3 / 2; }

    .about-values { padding: 56px 20px; }
    .about-values-head { margin-bottom: 40px; }
    .values-grid { gap: 16px; }
    .value-card { padding: 20px 18px; }
}

@media (max-width: 480px) {
    .page-hero { height: 320px; }
    .page-hero-title { font-size: 36px; }
}
