:root {
    --icc-ink: #1B1A17;
    --icc-ink-soft: #2A2822;
    --icc-parchment: #F3EDE0;
    --icc-parchment-dim: #E9E0CC;
    --icc-bronze: #A97142;
    --icc-bronze-bright: #C98A52;
    --icc-marigold: #E3A008;
    --icc-teal: #2B4C43;
    --icc-teal-bright: #3E6A5C;
    --icc-vermillion: #9B3B2D;
    --icc-display: 'Marcellus', 'Georgia', serif;
    --icc-body: 'Karla', -apple-system, sans-serif;
}

.icc-about {
    background: var(--icc-parchment);
    color: var(--icc-ink);
    font-family: var(--icc-body);
    overflow: hidden;
}

.icc-eyebrow {
    display: flex;
    align-items: center;
    gap: .65rem;
    font-family: var(--icc-body);
    font-size: .72rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--icc-bronze);
    margin-bottom: 1rem;
}

.icc-eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--icc-bronze);
    display: inline-block;
}

/* ---------- Signature element: resonance rings ---------- */
.icc-rings {
    position: absolute;
    pointer-events: none;
}

.icc-rings svg {
    display: block;
    width: 100%;
    height: 100%;
}

.icc-rings circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1;
    transform-origin: center;
    transform-box: fill-box;
    animation: icc-ripple 6s ease-out infinite;
}

.icc-rings circle:nth-child(2) {
    animation-delay: 1.4s;
}

.icc-rings circle:nth-child(3) {
    animation-delay: 2.8s;
}

@keyframes icc-ripple {
    0% {
        opacity: .55;
        transform: scale(.55);
    }

    70% {
        opacity: .08;
    }

    100% {
        opacity: 0;
        transform: scale(1.35);
    }
}

@media (prefers-reduced-motion: reduce) {
    .icc-rings circle {
        animation: none;
        opacity: .25;
    }
}

.icc-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 56px;
    color: var(--icc-bronze);
    position: relative;
}

.icc-divider svg {
    width: 46px;
    height: 46px;
}

.icc-divider circle {
    fill: none;
    stroke: currentColor;
}

/* ---------- Hero ---------- */
.icc-hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: flex-end;
    background-color: var(--icc-ink);
    background-position: center 68%;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--icc-parchment);
}

.icc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(27, 26, 23, .35) 0%, rgba(27, 26, 23, .55) 55%, rgba(27, 26, 23, .94) 100%);
}

.icc-hero .icc-rings {
    top: 8%;
    right: 6%;
    width: 280px;
    height: 280px;
    color: var(--icc-marigold);
    z-index: 1;
}

.icc-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
    padding: 0 24px 64px;
}

.icc-hero .icc-eyebrow {
    color: var(--icc-marigold);
}

.icc-hero .icc-eyebrow::before {
    background: var(--icc-marigold);
}

.icc-hero h1 {
    font-family: var(--icc-display);
    font-weight: 400;
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 1.04;
    margin: 0 0 1.1rem;
    max-width: 15ch;
}

.icc-hero p {
    font-family: var(--icc-body);
    font-size: 1.08rem;
    line-height: 1.6;
    max-width: 46ch;
    color: #EFE7D6;
    margin: 0;
}

/* ---------- Story ---------- */
.icc-story {
    max-width: 1180px;
    margin: 0 auto;
    padding: 108px 24px;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 64px;
    align-items: center;
}

.icc-story-media {
    position: relative;
    aspect-ratio: 1/1;
    max-width: 440px;
}

.icc-story-media .icc-photo-ring {
    position: absolute;
    inset: -18px;
    border: 1px solid var(--icc-bronze);
    border-radius: 50%;
    opacity: .55;
}

.icc-story-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 30px 60px -20px rgba(27, 26, 23, .45);
}

.icc-story-media .icc-rings {
    inset: -40px;
    color: var(--icc-bronze);
}

.icc-story h2 {
    font-family: var(--icc-display);
    font-weight: 400;
    font-size: clamp(1.9rem, 3.2vw, 2.7rem);
    margin: 0 0 1.25rem;
    color: var(--icc-ink);
}

.icc-story p {
    font-size: 1.02rem;
    line-height: 1.75;
    color: #3E3B33;
    margin: 0 0 1.1rem;
}

.icc-story p:last-child {
    margin-bottom: 0;
}

/* ---------- Mission / Vision ---------- */
.icc-mv-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px 108px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.icc-mv-card {
    --icc-mv-img: none;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    min-height: 420px;
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--icc-parchment);
    background-color: var(--icc-ink);
    isolation: isolate;
}

.icc-mv-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--icc-mv-img);
    background-size: cover;
    background-position: center;
}

.icc-mv-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
}

.icc-mv-card.icc-mission::after {
    background: linear-gradient(160deg, rgba(43, 76, 67, .28) 0%, rgba(27, 26, 23, .9) 82%);
}

.icc-mv-card.icc-vision::after {
    background: linear-gradient(160deg, rgba(169, 113, 66, .32) 0%, rgba(27, 26, 23, .92) 82%);
}

.icc-mv-ring {
    width: 44px;
    height: 44px;
    margin-bottom: 1.4rem;
    color: var(--icc-marigold);
}

.icc-mv-card.icc-mission .icc-mv-ring {
    color: #8FD6C0;
}

.icc-mv-card h3 {
    font-family: var(--icc-display);
    font-weight: 400;
    font-size: 1.7rem;
    margin: 0 0 .85rem;
}

.icc-mv-card p {
    font-size: .98rem;
    line-height: 1.7;
    color: #E9E2D2;
    margin: 0;
    max-width: 38ch;
}

/* ---------- Why ICC — redesigned card grid ---------- */
.icc-features {
    background: var(--icc-ink);
    color: var(--icc-parchment);
    padding: 108px 24px 112px;
    position: relative;
    overflow: hidden;
}

/* Subtle mandala watermark behind the section */
.icc-features::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(169, 113, 66, .07) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 20% 80%, rgba(43, 76, 67, .09) 0%, transparent 60%);
    pointer-events: none;
}

.icc-features-inner {
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
}

.icc-features .icc-eyebrow {
    color: var(--icc-marigold);
    justify-content: flex-start;
}

.icc-features .icc-eyebrow::before {
    background: var(--icc-marigold);
}

.icc-features-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.icc-features h2 {
    font-family: var(--icc-display);
    font-weight: 400;
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    margin: 0;
    max-width: 22ch;
}

.icc-features-tagline {
    font-size: .9rem;
    color: #9E9788;
    line-height: 1.6;
    max-width: 28ch;
    text-align: right;
}

/* Card grid */
.icc-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(243, 237, 224, .08);
    border: 1px solid rgba(243, 237, 224, .08);
    border-radius: 6px;
    overflow: hidden;
}

.icc-feature {
    background: rgba(255, 255, 255, .025);
    padding: 36px 32px 38px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: background .3s;
    position: relative;
    overflow: hidden;
}

.icc-feature::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 32px;
    right: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--icc-bronze), var(--icc-marigold), transparent);
    opacity: 0;
    transition: opacity .35s;
}

.icc-feature:hover {
    background: rgba(255, 255, 255, .055);
}

.icc-feature:hover::after {
    opacity: 1;
}

/* Icon circle */
.icc-feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(169, 113, 66, .45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--icc-bronze-bright);
    flex-shrink: 0;
    transition: border-color .3s, color .3s;
}

.icc-feature:hover .icc-feat-icon {
    border-color: var(--icc-marigold);
    color: var(--icc-marigold);
}

.icc-feat-icon i {
    font-size: 20px;
    line-height: 1;
}

.icc-feature h4 {
    font-family: var(--icc-display);
    font-weight: 400;
    font-size: 1.08rem;
    margin: 0;
    color: var(--icc-parchment);
    line-height: 1.4;
}

.icc-feature p {
    font-size: .88rem;
    line-height: 1.68;
    color: #9E9788;
    margin: 0;
    flex-grow: 1;
}

/* Span last card full width if odd */
.icc-feature:last-child:nth-child(3n+1) {
    grid-column: span 3;
}

@media(max-width:900px) {
    .icc-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .icc-feature:last-child:nth-child(3n+1) {
        grid-column: span 1;
    }

    .icc-features-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .icc-features-tagline {
        text-align: left;
        max-width: 100%;
    }
}

@media(max-width:560px) {
    .icc-feature-grid {
        grid-template-columns: 1fr;
    }

    .icc-feature {
        padding: 28px 24px 30px;
    }
}

/* ---------- Reach marquee ---------- */
.icc-reach {
    background: var(--icc-parchment-dim);
    padding: 70px 0 78px;
    text-align: center;
}

.icc-reach .icc-eyebrow {
    justify-content: center;
    margin: 0 auto 1.6rem;
}

.icc-marquee {
    overflow: hidden;
    border-top: 1px solid rgba(27, 26, 23, .15);
    border-bottom: 1px solid rgba(27, 26, 23, .15);
    padding: 20px 0;
}

.icc-marquee-track {
    display: flex;
    width: max-content;
    gap: 3.2rem;
    animation: icc-scroll 34s linear infinite;
}

.icc-marquee-track span {
    font-family: var(--icc-display);
    font-size: 1.35rem;
    color: var(--icc-ink-soft);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 3.2rem;
}

.icc-marquee-track span::after {
    content: "◦";
    color: var(--icc-bronze);
    font-size: 1rem;
}

@keyframes icc-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .icc-marquee-track {
        animation: none;
    }
}

@media (max-width: 900px) {
    .icc-story {
        grid-template-columns: 1fr;
        padding: 76px 20px;
        gap: 40px;
    }

    .icc-story-media {
        margin: 0 auto;
        max-width: 280px;
    }

    .icc-mv-wrap {
        grid-template-columns: 1fr;
        padding: 0 20px 76px;
    }

    .icc-hero {
        min-height: 70vh;
    }

    .icc-hero-inner {
        padding: 0 20px 48px;
    }
}