/* =========================================
   ABOUT PAGE — Ease My Holiday
========================================= */

.ab-page {
    --navy: #14213d;
    --gold: #d4a017;
    --ink: #1b2a44;
    --muted: #5c6b80;
    --line: #e2e8f0;
    --bg: #f3f6fb;
    --soft: #eef3f9;

    font-family: "Manrope", system-ui, sans-serif;
    background: var(--bg);
    color: var(--ink);
    overflow-x: hidden;
}

.ab-wrap {
    width: min(1140px, calc(100% - 32px));
    margin: 0 auto;
}

.ab-brand {
    margin: 0 0 10px;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #fff;
}

.ab-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.ab-eyebrow.dark {
    color: var(--gold);
}

.ab-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ab-btn:hover {
    transform: translateY(-2px);
}

.ab-btn-gold {
    background: var(--gold);
    color: var(--navy);
}

.ab-btn-navy {
    background: var(--navy);
    color: #fff;
}

.ab-btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.ab-btn-wa {
    background: #1fad66;
    color: #fff;
}

/* Hero */
.ab-hero {
    position: relative;
    min-height: clamp(380px, 58vw, 520px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #0f1a2b;
}

.ab-hero-media,
.ab-hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ab-hero-media img {
    transform: scale(1.04);
    animation: abKen 18s ease-in-out infinite alternate;
}

.ab-hero-veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 18, 32, 0.35) 0%, rgba(10, 18, 32, 0.78) 70%, rgba(10, 18, 32, 0.92) 100%),
        linear-gradient(90deg, rgba(10, 18, 32, 0.55) 0%, rgba(10, 18, 32, 0.15) 55%, transparent 100%);
}

.ab-hero-inner {
    position: relative;
    z-index: 1;
    width: min(1140px, calc(100% - 32px));
    margin: 0 auto;
    padding: 72px 0 56px;
}

.ab-hero-inner h1 {
    margin: 0 0 14px;
    max-width: 16ch;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.35rem);
    line-height: 1.12;
    font-weight: 700;
    color: #fff;
}

.ab-hero-inner h1 span {
    color: var(--gold);
}

.ab-hero-inner > p {
    margin: 0 0 22px;
    max-width: 46ch;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.65;
}

.ab-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Story */
.ab-story {
    padding: 72px 0 40px;
    background:
        radial-gradient(ellipse 60% 40% at 100% 0%, rgba(212, 160, 23, 0.08), transparent 60%),
        #fff;
}

.ab-story-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.ab-story-copy h2 {
    margin: 0 0 16px;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    line-height: 1.15;
    color: var(--navy);
}

.ab-story-copy h2 span {
    color: var(--gold);
}

.ab-story-copy p {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.ab-checklist {
    margin: 18px 0 24px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.ab-checklist li {
    position: relative;
    padding-left: 28px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
}

.ab-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35em;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.18);
    box-shadow: inset 0 0 0 4px var(--gold);
}

.ab-story-visual {
    position: relative;
}

.ab-story-figure {
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #102038;
}

.ab-story-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.ab-story-visual:hover .ab-story-figure img {
    transform: scale(1.04);
}

.ab-story-note {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 14px 16px;
    background: rgba(20, 33, 61, 0.88);
    color: #fff;
    backdrop-filter: blur(6px);
}

.ab-story-note strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

.ab-story-note span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.78);
}

/* Promises */
.ab-promises {
    padding: 56px 0 64px;
}

.ab-head {
    max-width: 640px;
    margin-bottom: 28px;
}

.ab-head h2 {
    margin: 0 0 10px;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    line-height: 1.2;
    color: var(--navy);
}

.ab-head h2 span {
    color: var(--gold);
}

.ab-head p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.ab-promise-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.ab-promise {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px 16px;
    background: #fff;
    border-bottom: 3px solid rgba(212, 160, 23, 0.35);
}

.ab-promise-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(20, 33, 61, 0.06);
    color: var(--navy);
    font-size: 16px;
}

.ab-promise h3 {
    margin: 0 0 6px;
    font-size: 16px;
    color: var(--navy);
}

.ab-promise p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Mission / Vision */
.ab-mv {
    padding: 20px 0 64px;
}

.ab-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: hidden;
}

.ab-mv-block {
    padding: clamp(28px, 4vw, 42px);
    background: var(--navy);
    color: #fff;
}

.ab-mv-alt {
    background: #1b3158;
}

.ab-mv-block h2 {
    margin: 0 0 12px;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    line-height: 1.25;
}

.ab-mv-block p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.7;
    max-width: 42ch;
}

/* Steps */
.ab-steps {
    padding: 20px 0 72px;
    background: #fff;
}

.ab-steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.ab-step {
    padding: 8px 8px 8px 0;
    border-top: 2px solid var(--gold);
}

.ab-step-n {
    display: block;
    margin: 14px 0 10px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.ab-step h3 {
    margin: 0 0 8px;
    font-size: 17px;
    color: var(--navy);
}

.ab-step p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

/* CTA */
.ab-cta {
    padding: 0 0 80px;
}

.ab-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding: clamp(28px, 4vw, 40px);
    background:
        linear-gradient(135deg, #0f1a2b 0%, #1a3358 55%, #243f66 100%);
    color: #fff;
}

.ab-cta-inner h2 {
    margin: 0 0 8px;
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.45rem, 2.8vw, 2rem);
}

.ab-cta-inner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
}

.ab-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Motion */
.ab-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--d, 0s);
}

.ab-reveal.is-in {
    opacity: 1;
    transform: none;
}

@keyframes abKen {
    from { transform: scale(1.04) translate3d(0, 0, 0); }
    to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .ab-hero-media img,
    .ab-reveal {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .ab-story-grid,
    .ab-mv-grid,
    .ab-steps-row,
    .ab-promise-list {
        grid-template-columns: 1fr;
    }

    .ab-story-figure {
        aspect-ratio: 16 / 11;
    }

    .ab-hero-inner {
        padding: 64px 0 44px;
    }

    .ab-story,
    .ab-promises {
        padding-top: 48px;
    }
}

@media (max-width: 560px) {
    .ab-wrap {
        width: calc(100% - 24px);
    }

    .ab-hero-inner h1 {
        max-width: none;
    }

    .ab-cta-inner {
        padding: 24px 18px;
    }

    .ab-btn {
        flex: 1 1 auto;
    }
}
