/* ===== About page tokens ===== */
.about-page {
    --gold: #b46a02;
    --gold-soft: rgba(198, 134, 46, 0.18);
    --cream: #FBF3E7;
    --blush: #F3E1D2;
    --ink: #2B211C;
    --ink-soft: #6B5D53;
    background-color: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
    position: relative;
}

.about-page h1, .about-page h2, .about-page h3 { font-family: "Rasa", serif; }
.about-page p, .about-page span, .about-page a { font-family: "Work Sans", -apple-system, sans-serif; }

@media (prefers-reduced-motion: reduce) {
    .about-page * { animation: none !important; transition: none !important; }
}

/* ===== Reveal-on-scroll (staggered) ===== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1.is-visible { transition-delay: .12s; }
.reveal-delay-2.is-visible { transition-delay: .24s; }
.reveal-delay-3.is-visible { transition-delay: .36s; }

/* ===== Floating petals ===== */
.petal-field {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.petal {
    position: absolute;
    bottom: -40px;
    width: 10px;
    height: 10px;
    background: var(--gold);
    opacity: .35;
    border-radius: 60% 0 60% 0;
    animation: float-up linear infinite;
}
.petal:nth-child(1) { left: 6%;  width: 8px;  height: 8px;  animation-duration: 14s; animation-delay: 0s; background: #D9A24B; }
.petal:nth-child(2) { left: 18%; width: 12px; height: 12px; animation-duration: 18s; animation-delay: 2s; background: var(--primary); opacity: .18; }
.petal:nth-child(3) { left: 32%; width: 7px;  height: 7px;  animation-duration: 12s; animation-delay: 4s; }
.petal:nth-child(4) { left: 48%; width: 10px; height: 10px; animation-duration: 20s; animation-delay: 1s; background: var(--primary); opacity: .15; }
.petal:nth-child(5) { left: 63%; width: 9px;  height: 9px;  animation-duration: 15s; animation-delay: 5s; }
.petal:nth-child(6) { left: 77%; width: 11px; height: 11px; animation-duration: 17s; animation-delay: 3s; }
.petal:nth-child(7) { left: 90%; width: 8px;  height: 8px;  animation-duration: 13s; animation-delay: 6s; background: var(--primary); opacity: .18; }

@keyframes float-up {
    0%   { transform: translateY(0) translateX(0) rotate(0deg);   opacity: 0; }
    10%  { opacity: .4; }
    50%  { transform: translateY(-50vh) translateX(20px) rotate(180deg); }
    90%  { opacity: .3; }
    100% { transform: translateY(-100vh) translateX(-10px) rotate(360deg); opacity: 0; }
}

/* ===== Hero ===== */
.about-hero {
    position: relative;
    padding: 96px 24px 80px;
    text-align: center;
    background: radial-gradient(ellipse at top, var(--blush) 0%, var(--cream) 60%);
    overflow: hidden;
}

/* Faint dot-grid texture, masked to a soft vignette so it fades at the edges */
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--gold-soft) 1px, transparent 1px);
    background-size: 28px 28px;
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 72%);
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 72%);
    opacity: .5;
    pointer-events: none;
    z-index: 0;
}

@keyframes fade-up {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-anim { opacity: 0; animation: fade-up .9s cubic-bezier(.22,1,.36,1) forwards; position: relative; z-index: 1; }
.hero-anim.d1 { animation-delay: .05s; }
.hero-anim.d2 { animation-delay: .2s; }
.hero-anim.d3 { animation-delay: .4s; }
.hero-anim.d4 { animation-delay: .55s; }

.about-kicker {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    font-size: 13px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); font-weight: 600; margin-bottom: 28px;
}
.about-kicker::before, .about-kicker::after {
    content: ""; width: 32px; height: 1px; background: var(--gold); opacity: .6;
    transform-origin: center; animation: line-grow 1.2s ease-out .3s both;
}
@keyframes line-grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.kicker-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-block;
    opacity: .7;
}

.glow-wrap { position: relative; width: 168px; height: 168px; margin: 0 auto 28px; }

/* Faint slowly-rotating om watermark behind the portrait */
.om-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    line-height: 1;
    color: var(--gold);
    opacity: .08;
    font-family: serif;
    z-index: -1;
    animation: om-spin 60s linear infinite;
    pointer-events: none;
}
@keyframes om-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.glow-aura {
    position: absolute; inset: -40px; border-radius: 50%;
    background: radial-gradient(circle, rgba(198,134,46,0.35) 0%, rgba(198,134,46,0) 70%);
    animation: breathe 4s ease-in-out infinite;
}
.glow-ring {
    position: absolute; inset: -14px; border-radius: 50%;
    border: 1px solid var(--gold-soft);
    animation: ring-pulse 3s ease-out infinite;
}
/* Second, larger ring pulsing on a delay for a layered "ripple" effect */
.glow-ring--outer {
    inset: -28px;
    animation-duration: 4s;
    animation-delay: 1s;
}
@keyframes breathe { 0%, 100% { transform: scale(0.92); opacity: .7; } 50% { transform: scale(1.08); opacity: 1; } }
@keyframes ring-pulse {
    0%   { transform: scale(1);   opacity: .7; }
    100% { transform: scale(1.35); opacity: 0; }
}
.about-portrait {
    position: relative; width: 168px; height: 168px; border-radius: 50%;
    object-fit: cover; border: 4px solid #fff;
    box-shadow: 0 12px 40px rgba(110,7,26,0.25);
    transition: transform .5s ease;
}
.glow-wrap:hover .about-portrait { transform: scale(1.04); }

.about-hero h1 { font-size: 44px; font-weight: 700; color: var(--primary); margin-bottom: 16px; }
.about-hero .lede { font-size: 18px; color: var(--ink-soft); max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* Scroll-down cue */
.scroll-cue {
    position: relative;
    z-index: 1;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: fit-content;
    color: var(--gold);
    cursor: pointer;
    transition: opacity .4s ease;
}
.scroll-cue span {
    width: 1px;
    height: 28px;
    background: linear-gradient(to bottom, transparent, var(--gold));
}
.scroll-cue i {
    font-size: 12px;
    animation: cue-bounce 1.8s ease-in-out infinite;
}
@keyframes cue-bounce {
    0%, 100% { transform: translateY(0); opacity: .6; }
    50% { transform: translateY(6px); opacity: 1; }
}

/* ===== Arch divider between sections ===== */
.arch-divider { position: relative; height: 48px; margin-top: -24px; z-index: 1; }
.arch-divider svg { width: 100%; height: 100%; display: block; }

/* ===== Mission panel ===== */
.mission-section { position: relative; padding: 40px 24px 100px; max-width: 1040px; margin: 0 auto; }
.mission-blob {
    position: absolute; top: 20px; right: 8%; width: 280px; height: 280px; border-radius: 50%;
    background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%); z-index: 0;
    animation: drift 8s ease-in-out infinite;
}
@keyframes drift { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(-14px, 16px); } }

.mission-panel {
    position: relative; z-index: 1; background: rgba(255,255,255,0.6);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(198,134,46,0.25); border-radius: 24px; padding: 48px;
    box-shadow: 0 20px 60px rgba(110,7,26,0.08);
    transition: box-shadow .5s ease, border-color .5s ease;
}
.mission-panel:hover { box-shadow: 0 28px 70px rgba(110,7,26,0.14); border-color: rgba(198,134,46,0.45); }
.mission-panel h2 { font-size: 30px; color: var(--primary); margin-bottom: 18px; position: relative; }
.mission-panel h2::before {
    content: "\201C"; font-family: "Rasa", serif; font-size: 64px; color: var(--gold-soft);
    position: absolute; top: -30px; left: -12px; line-height: 1; z-index: -1;
}
.mission-panel p { font-size: 17px; line-height: 1.85; color: var(--ink-soft); }

.corner-flourish {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    color: var(--gold);
    opacity: .5;
}
.corner-flourish svg { width: 100%; height: 100%; }

/* ===== Shared section eyebrow label ===== */
.section-kicker {
    text-align: center;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 32px;
}

/* ===== Offerings ===== */
.offerings-section { padding: 20px 24px 100px; max-width: 1040px; margin: 0 auto; }
.offering-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.offering-card {
    position: relative; background: #fff; border-radius: 20px; padding: 36px;
    border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 10px 30px rgba(110,7,26,0.06);
    transition: transform .4s ease, box-shadow .4s ease;
    overflow: hidden;
}
.offering-card::after {
    content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(198,134,46,0.15), transparent);
    transform: skewX(-20deg); transition: left .7s ease;
}
.offering-card:hover::after { left: 130%; }
.offering-card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(110,7,26,0.14); }

.offering-index {
    position: absolute;
    top: 20px;
    right: 28px;
    font-family: "Rasa", serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--gold-soft);
    line-height: 1;
}

.offering-badge {
    position: relative; width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary), #8b0a21); color: #fff; font-size: 22px;
    transition: transform .4s ease;
}
.offering-card:hover .offering-badge { transform: scale(1.1) rotate(-6deg); }
.offering-badge::before {
    content: ""; position: absolute; inset: -10px; border-radius: 50%;
    background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
    animation: breathe 5s ease-in-out infinite; z-index: -1;
}
.offering-card h3 { font-size: 21px; color: var(--ink); margin-bottom: 10px; }
.offering-card p { color: var(--ink-soft); line-height: 1.75; font-size: 15px; }

/* ===== Values (glass triptych) ===== */
.values-section { padding: 20px 24px 100px; max-width: 1040px; margin: 0 auto; text-align: center; }
.values-section .section-kicker { margin-bottom: 10px; }
.values-section h2 { font-size: 30px; color: var(--primary); margin-bottom: 48px; }
.values-row {
    display: grid; grid-template-columns: 1fr; gap: 0;
    background: rgba(255,255,255,0.55); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(198,134,46,0.2); border-radius: 24px; overflow: hidden;
}
.value-card {
    padding: 44px 28px; border-bottom: 1px solid rgba(198,134,46,0.2);
    transition: background-color .4s ease;
    position: relative;
}
.value-card:last-child { border-bottom: none; }
.value-card:hover { background-color: rgba(255,255,255,0.5); }
.value-icon {
    width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px; background: var(--gold-soft); color: var(--primary); font-size: 24px;
    transition: transform .4s cubic-bezier(.34,1.56,.64,1), background-color .4s ease;
}
.value-card:hover .value-icon { transform: scale(1.15) rotate(8deg); background: var(--primary); color: #fff; }
.value-card h3 { font-size: 18px; margin-bottom: 8px; color: var(--ink); position: relative; display: inline-block; }
.value-card h3::after {
    content: ""; position: absolute; left: 50%; bottom: -4px; width: 0; height: 2px;
    background: var(--gold); transform: translateX(-50%); transition: width .4s ease;
}
.value-card:hover h3::after { width: 60%; }
.value-card p { font-size: 14px; color: var(--ink-soft); }

/* ===== Closing CTA ===== */
.about-cta-section { padding: 20px 24px 100px; max-width: 1040px; margin: 0 auto; }
.about-cta {
    position: relative; text-align: center; padding: 64px 32px; border-radius: 28px; overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, #8b0a21 100%); color: #fff;
}
.about-cta::before {
    content: ""; position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
    width: 320px; height: 320px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    animation: breathe 6s ease-in-out infinite;
}
.cta-flourish {
    display: block;
    font-size: 20px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
    position: relative;
}
.about-cta h2 { font-size: 28px; margin-bottom: 14px; position: relative; }
.about-cta p { color: rgba(255,255,255,0.85); max-width: 420px; margin: 0 auto 28px; position: relative; }
.about-cta .btn {
    position: relative; height: 52px; padding: 0 36px; background: #fff; color: var(--primary);
    font-weight: 700; overflow: hidden; z-index: 1;
}
.about-cta .btn::after {
    content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(110,7,26,0.15), transparent);
    transform: skewX(-20deg); transition: left .6s ease; z-index: -1;
}
.about-cta .btn:hover::after { left: 130%; }
.about-cta .btn:hover { background: var(--cream); }
.about-cta .btn:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

/* ===== Responsive ===== */
@media (min-width: 640px) {
    .offering-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
    .offering-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
    .about-hero h1 { font-size: 56px; }
    .values-row { grid-template-columns: repeat(3, 1fr); }
    .value-card { border-bottom: none; border-right: 1px solid rgba(198,134,46,0.2); }
    .value-card:last-child { border-right: none; }
    .mission-panel { padding: 56px; }
}