:root {
    --salmon: #f4a99a;
    --salmon-light: #fdf0ed;
    --salmon-mid: #f7c4ba;
    --salmon-dark: #c46f5e;
    --salmon-deep: #8b3d30;
    --dark: #1e1e1e;
    --white: #ffffff;
    --bg: #faf6f4;
    --text-muted: #9a7060;
    --text-body: #5a3d35;
    --hero-dark: #1a0e0e;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    background: var(--bg);
    color: var(--dark);
    overflow-x: hidden;
}

/* ─────────────────────────────────────────
       HERO
    ───────────────────────────────────────── */
.abt-hero {
    position: relative;
    min-height: 62vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(160deg, #1a0e0e 0%, #2d1510 35%, #3d1f18 65%, #1a0e0e 100%);
    padding: 80px 5% 70px;
}

.abt-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 169, 154, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.abt-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247, 196, 186, 0.1) 0%, transparent 65%);
    pointer-events: none;
}

/* Floating petals */
.hero-petal {
    position: absolute;
    border-radius: 50% 0 50% 0;
    opacity: 0.07;
    pointer-events: none;
}

.hero-petal-1 {
    width: 180px;
    height: 180px;
    background: var(--salmon);
    top: 12%;
    left: 8%;
    transform: rotate(20deg);
    animation: floatPetal 8s ease-in-out infinite;
}

.hero-petal-2 {
    width: 120px;
    height: 120px;
    background: var(--salmon-mid);
    top: 60%;
    right: 10%;
    transform: rotate(-30deg);
    animation: floatPetal 10s ease-in-out infinite reverse;
}

.hero-petal-3 {
    width: 80px;
    height: 80px;
    background: var(--salmon-light);
    top: 20%;
    right: 20%;
    transform: rotate(45deg);
    animation: floatPetal 7s ease-in-out infinite 2s;
}

@keyframes floatPetal {

    0%,
    100% {
        transform: translateY(0) rotate(20deg);
    }

    50% {
        transform: translateY(-18px) rotate(25deg);
    }
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.2s;
}

.hero-eyebrow span {
    display: block;
    width: 36px;
    height: 1px;
    background: var(--salmon);
}

.hero-eyebrow p {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--salmon);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 5.5vw, 68px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 18px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero-title em {
    font-style: italic;
    color: var(--salmon);
}

.hero-caption {
    font-size: clamp(14px, 1.8vw, 17px);
    font-weight: 300;
    color: rgba(253, 240, 237, 0.75);
    letter-spacing: 0.06em;
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.8s;
}

.hero-divider div {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--salmon-mid));
}

.hero-divider div:last-child {
    background: linear-gradient(90deg, var(--salmon-mid), transparent);
}

.hero-divider span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--salmon);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─────────────────────────────────────────
       STATS BAR
    ───────────────────────────────────────── */
.abt-stats-bar {
    background: var(--white);
    border-bottom: 1px solid rgba(244, 169, 154, 0.2);
    padding: 0 6%;
}

.abt-stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
}

.abt-stat-item {
    flex: 1;
    text-align: center;
    padding: 32px 20px;
    border-right: 1px solid rgba(244, 169, 154, 0.18);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.abt-stat-item:last-child {
    border-right: none;
}

.abt-stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.abt-stat-item strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--salmon-dark);
    line-height: 1;
    margin-bottom: 6px;
}

.abt-stat-item span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ─────────────────────────────────────────
       STORY SECTION
    ───────────────────────────────────────── */
.abt-story {
    padding: 80px 6%;
    max-width: 1200px;
    margin: 0 auto;
}

.abt-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left: text */
.abt-story-left {
    position: relative;
}

.abt-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.abt-section-eyebrow span {
    display: block;
    width: 28px;
    height: 1px;
    background: var(--salmon-dark);
}

.abt-section-eyebrow p {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--salmon-dark);
    margin: 0;
}

.abt-story-left h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 10px;
}

.abt-story-left h2 em {
    font-style: italic;
    color: var(--salmon-dark);
}

.abt-story-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 180px;
    margin-bottom: 28px;
}

.abt-story-divider div {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--salmon), transparent);
}

.abt-story-divider span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--salmon);
    flex-shrink: 0;
}

.abt-story-left p {
    font-size: 14.5px;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.abt-story-left p:last-of-type {
    margin-bottom: 0;
}

/* Quote block */
.abt-quote-block {
    margin-top: 32px;
    background: var(--salmon-light);
    border-left: 3px solid var(--salmon);
    border-radius: 0 14px 14px 0;
    padding: 20px 24px;
}

.abt-quote-block p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    font-weight: 400;
    color: var(--salmon-deep);
    line-height: 1.6;
    margin: 0 !important;
}

/* Right: info cards */
.abt-story-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.abt-info-card {
    background: var(--white);
    border: 1px solid rgba(244, 169, 154, 0.22);
    border-radius: 16px;
    padding: 24px 26px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    opacity: 0;
    transform: translateX(24px);
}

.abt-info-card.visible {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.abt-info-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--salmon-mid), var(--salmon));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    border-radius: 0 0 16px 16px;
}

.abt-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(196, 111, 94, 0.13);
    border-color: var(--salmon-mid);
}

.abt-info-card:hover::after {
    transform: scaleX(1);
}

.abt-info-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.abt-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: var(--salmon-light);
    border: 1.5px solid var(--salmon-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.abt-info-card:hover .abt-info-icon {
    background: var(--salmon-mid);
    transform: rotate(6deg) scale(1.08);
}

.abt-info-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--dark);
}

.abt-info-card p {
    font-size: 13.5px;
    font-weight: 300;
    color: var(--text-body);
    line-height: 1.75;
}

/* ─────────────────────────────────────────
       SERVICES OFFERED STRIP
    ───────────────────────────────────────── */
.abt-services-strip {
    background: var(--white);
    border-top: 1px solid rgba(244, 169, 154, 0.2);
    border-bottom: 1px solid rgba(244, 169, 154, 0.2);
    padding: 52px 6%;
}

.abt-services-strip-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.abt-strip-header {
    text-align: center;
    margin-bottom: 40px;
}

.abt-strip-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.abt-strip-header h2 em {
    font-style: italic;
    color: var(--salmon-dark);
}

.abt-strip-header p {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

.abt-strip-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 10px 0 0;
}

.abt-strip-divider div {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--salmon-mid));
}

.abt-strip-divider div:last-child {
    background: linear-gradient(90deg, var(--salmon-mid), transparent);
}

.abt-strip-divider span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--salmon);
}

.abt-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.abt-service-pill {
    background: var(--salmon-light);
    border: 1px solid rgba(244, 169, 154, 0.3);
    border-radius: 14px;
    padding: 20px 18px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    cursor: default;
    opacity: 0;
    transform: translateY(16px);
}

.abt-service-pill.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.abt-service-pill:hover {
    transform: translateY(-4px);
    background: var(--white);
    box-shadow: 0 8px 28px rgba(244, 169, 154, 0.2);
}

.abt-service-pill-icon {
    font-size: 26px;
    margin-bottom: 10px;
    display: block;
}

.abt-service-pill span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--salmon-deep);
    display: block;
}

/* ─────────────────────────────────────────
       TAGLINE + CTA FOOTER
    ───────────────────────────────────────── */
.abt-footer-banner {
    background: linear-gradient(135deg, #1a0e0e 0%, #2d1510 50%, #1a0e0e 100%);
    padding: 70px 6%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.abt-footer-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(244, 169, 154, 0.1) 0%, transparent 65%);
    pointer-events: none;
}

.abt-footer-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.abt-footer-star {
    font-size: 26px;
    margin-bottom: 16px;
    display: block;
}

.abt-footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(22px, 3.5vw, 38px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 10px;
}

.abt-footer-tagline em {
    color: var(--salmon);
    font-style: normal;
}

.abt-footer-sub {
    font-size: 13px;
    font-weight: 300;
    color: rgba(253, 240, 237, 0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 36px;
}

.abt-footer-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 32px;
}

.abt-footer-divider div {
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 169, 154, 0.5));
}

.abt-footer-divider div:last-child {
    background: linear-gradient(90deg, rgba(244, 169, 154, 0.5), transparent);
}

.abt-footer-divider span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--salmon);
}

.abt-footer-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.abt-btn-primary {
    display: inline-block;
    padding: 13px 38px;
    background: var(--salmon);
    color: var(--white);
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(244, 169, 154, 0.35);
}

.abt-btn-primary:hover {
    background: var(--salmon-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(196, 111, 94, 0.4);
}

.abt-btn-outline {
    display: inline-block;
    padding: 13px 38px;
    background: transparent;
    color: var(--salmon);
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1.5px solid var(--salmon);
    border-radius: 40px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.abt-btn-outline:hover {
    background: var(--salmon);
    color: var(--white);
    transform: translateY(-2px);
}

/* ─────────────────────────────────────────
       RESPONSIVE
    ───────────────────────────────────────── */
@media (max-width: 960px) {
    .abt-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .abt-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .abt-story {
        padding: 56px 5% 60px;
    }

    .abt-stats-inner {
        flex-wrap: wrap;
    }

    .abt-stat-item {
        flex: 1 1 50%;
        border-right: none;
        border-bottom: 1px solid rgba(244, 169, 154, 0.18);
    }

    .abt-stat-item:nth-child(odd) {
        border-right: 1px solid rgba(244, 169, 154, 0.18);
    }

    .abt-stat-item:last-child {
        border-bottom: none;
    }

    .abt-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .abt-footer-ctas {
        flex-direction: column;
        align-items: center;
    }

    .abt-btn-primary,
    .abt-btn-outline {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

@media (max-width: 400px) {
    .abt-services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .abt-hero {
        min-height: 52vh;
    }
}