/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    color: white;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.08) 3rem, transparent 3.1rem),
        radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.08) 2.5rem, transparent 2.6rem),
        radial-gradient(circle at 60% 80%, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 4rem, transparent 4.1rem),
        linear-gradient(90deg, #f58f91, #f79a99);
    min-height: 3.75rem;
    font-size: 0.95rem;
}

.header .header-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.header .item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header .item img {
    filter: brightness(0) saturate(100%) invert(37%) sepia(35%) saturate(1618%) hue-rotate(323deg) brightness(102%) contrast(89%);
    width: 1rem;
}

.header .header-socials {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.header .header-socials a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background: rgba(203, 81, 83, 0.95);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Navigation */
.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 248, 247, 0.96);
    min-height: 6.1rem;
    box-shadow: 0 1.25rem 2.5rem rgba(223, 157, 156, 0.1);
}

.navigation .brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.navigation .brand img {
    width: 3rem;
}

.navigation .brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.navigation .brand-title {
    color: #d8625d;
    font-family: "Arimo", sans-serif;
    font-size: 2rem;
    font-weight: 700;
}

.navigation .brand-subtitle {
    color: #8c817f;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.navigation .links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    color: #d85e59;
    font-size: 1rem;
    font-weight: 600;
}

.navigation .links a {
    display: inline-flex;
    align-items: center;
}

.navigation .links a.active {
    color: #f07f7a;
}

.navigation .quote-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 1rem 1.55rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #f58f91, #f79997);
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
}

.navigation .quote-icon {
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 0.2rem;
    position: relative;
}

.navigation .quote-icon::before {
    content: '';
    position: absolute;
    top: 0.15rem;
    left: 0.2rem;
    width: 0.4rem;
    height: 0.18rem;
    border-left: 2px solid rgba(255, 255, 255, 0.9);
    border-bottom: 2px solid rgba(255, 255, 255, 0.9);
    transform: rotate(-45deg);
}

.navigation .quote-icon::after {
    content: '';
    position: absolute;
    top: -0.22rem;
    left: 0.28rem;
    width: 0.3rem;
    height: 0.18rem;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-bottom: 0;
    border-radius: 0.2rem 0.2rem 0 0;
}

/* Hero */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 85vh;
    padding-top: 5rem;
    padding-bottom: 5rem;
    gap: 4rem;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(63, 47, 46, 0.68), rgba(63, 47, 46, 0.68)), url('../images/hero_7.jpg');
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transform: scale(1.04);
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero-panel {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    min-width: 32rem;
    max-width: 35rem;
}

.hero-stats {
    position: absolute;
    top: -1.75rem;
    left: -1rem;
    width: 12.5rem;
    padding: 2rem 1.8rem;
    border-radius: 2.25rem;
    background: linear-gradient(180deg, rgba(223, 157, 156, 0.96), rgba(209, 104, 101, 0.92));
    color: white;
    z-index: 2;
}

.stat-block {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
    max-width: 6rem;
}

.stat-divider {
    width: 100%;
    height: 1px;
    margin: 1.35rem 0;
    background: rgba(255, 255, 255, 0.4);
}

.hero-photo-frame {
    width: 100%;
    aspect-ratio: 0.8;
    border-radius: 3.25rem;
    overflow: hidden;
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.18);
    background: rgba(223, 157, 156, 0.9);
}

.hero-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 28% center;
}

.hero .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 42rem;
    color: white;
}

.hero .content .eyebrow {
    color: #ff9b98;
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1.25rem;
}

.hero .content h1 {
    font-size: clamp(3.5rem, 7vw, 6rem);
    color: white;
    font-weight: 700;
    line-height: 0.97;
    max-width: 12ch;
}

.hero .content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 38rem;
    line-height: 1.7;
    margin-top: 1.75rem;
}

.hero .content .actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 2.25rem;
}

.hero .content .play-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    background: rgba(223, 157, 156, 0.88);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.7);
}

.hero .content .play-icon {
    width: 0;
    height: 0;
    margin-left: 0.3rem;
    border-top: 0.85rem solid transparent;
    border-bottom: 0.85rem solid transparent;
    border-left: 1.2rem solid white;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 12rem;
    padding: 1rem 2rem;
    background: #fb8e8a;
    color: white;
    border-radius: 999px;
    font-size: 1.1rem;
    font-weight: 600;
}

.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 12rem;
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 999px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

/* About Page */
.page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 35rem);
    align-items: center;
    gap: 4rem;
    min-height: 82vh;
    padding-top: 5rem;
    padding-bottom: 6rem;
    background: linear-gradient(180deg, #fff6f5 0%, #ffffff 100%);
}

.page-hero-copy h1 {
    color: #404247;
    font-size: clamp(3.5rem, 6.5vw, 5.8rem);
    line-height: 0.96;
    max-width: 10ch;
}

.page-hero-copy p {
    margin-top: 1.6rem;
    max-width: 34rem;
    color: #6d6f75;
    font-size: 1.08rem;
    line-height: 1.8;
}

.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.page-hero-actions .button {
    background: #fb8e8a;
    color: white;
}

.page-hero-actions .ghost-button {
    border-color: rgba(248, 142, 138, 0.38);
    color: #d96a66;
}

.page-hero-visual {
    position: relative;
}

.page-hero-frame {
    overflow: hidden;
    border-radius: 3rem;
    box-shadow: 0 2rem 4rem rgba(213, 172, 167, 0.3);
}

.page-hero-frame img {
    width: 100%;
    aspect-ratio: 0.86;
    object-fit: cover;
    object-position: center;
}

.page-hero-badge {
    position: absolute;
    left: -2rem;
    bottom: -2rem;
    max-width: 14rem;
    padding: 1.6rem;
    border-radius: 1.8rem;
    background: linear-gradient(180deg, rgba(255, 155, 153, 0.98), rgba(242, 127, 123, 0.96));
    color: white;
    box-shadow: 0 1.2rem 2.8rem rgba(216, 127, 124, 0.3);
}

.page-hero-badge strong {
    display: block;
    font-size: 2.4rem;
    line-height: 1;
}

.page-hero-badge span {
    display: block;
    margin-top: 0.6rem;
    line-height: 1.55;
}

.about-story {
    display: grid;
    grid-template-columns: minmax(20rem, 34rem) minmax(0, 1fr);
    align-items: center;
    gap: 4rem;
    padding-top: 6rem;
    padding-bottom: 6rem;
    background: linear-gradient(180deg, #ffffff 0%, #fff9f8 100%);
}

.about-story-visual {
    position: relative;
    min-height: 38rem;
}

.story-image-large,
.story-image-small {
    overflow: hidden;
    box-shadow: 0 1.6rem 3.8rem rgba(213, 172, 167, 0.24);
}

.story-image-large {
    width: 84%;
    height: 100%;
    border-radius: 2.8rem;
}

.story-image-large img,
.story-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-image-small {
    position: absolute;
    right: 0;
    bottom: 2rem;
    width: 42%;
    height: 15rem;
    border-radius: 2rem;
}

.about-story-copy h2,
.about-pillars-heading h2,
.about-metrics-copy h2 {
    color: #424449;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    line-height: 1.02;
    max-width: 11ch;
}

.about-story-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.story-point {
    padding: 1.35rem 1.5rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 1rem 2.4rem rgba(215, 190, 184, 0.18);
}

.story-point strong {
    color: #484a4f;
    font-size: 1.15rem;
}

.story-point p {
    margin-top: 0.7rem;
    color: #75767b;
    line-height: 1.65;
}

.about-pillars {
    padding-top: 2rem;
    padding-bottom: 6rem;
    background: #ffffff;
}

.about-pillars-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: end;
    gap: 3rem;
    margin-bottom: 2.75rem;
}

.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.about-pillar-card {
    padding: 2rem;
    border-radius: 2rem;
    background: #fff9f8;
    box-shadow: 0 1.5rem 3.8rem rgba(206, 178, 170, 0.22);
}

.about-pillar-card .service-card-icon {
    color: #ff8f8d;
}

.about-pillar-card h3 {
    margin-top: 1.4rem;
    color: #47494e;
    font-size: 1.45rem;
}

.about-pillar-card p {
    margin-top: 1rem;
    color: #72737a;
    line-height: 1.75;
}

.about-pillar-card-accent {
    background: linear-gradient(180deg, #ff9b99, #f79190);
}

.about-pillar-card-accent .service-card-icon,
.about-pillar-card-accent h3,
.about-pillar-card-accent p {
    color: white;
}

.about-pillar-card .service-card-icon.service-card-group::before,
.about-pillar-card .service-card-icon.service-card-group::after,
.about-pillar-card .service-card-icon.service-card-featured::before,
.about-pillar-card .service-card-icon.service-card-featured::after,
.about-pillar-card .service-card-icon.service-card-document::before,
.about-pillar-card .service-card-icon.service-card-document::after {
    border-color: currentColor;
}

.about-pillar-card .service-card-icon.service-card-document::before {
    top: 0.25rem;
    left: 0.45rem;
    width: 1.35rem;
    height: 1.6rem;
    border-radius: 0.35rem;
}

.about-pillar-card .service-card-icon.service-card-document::after {
    top: 0.6rem;
    left: 1.35rem;
    width: 1.15rem;
    height: 1.4rem;
    border-radius: 0.35rem;
}

.about-pillar-card .service-card-icon.service-card-group::before {
    top: 0.15rem;
    left: 1rem;
    width: 0.85rem;
    height: 0.85rem;
    border-radius: 50%;
}

.about-pillar-card .service-card-icon.service-card-group::after {
    left: 0.6rem;
    bottom: 0.2rem;
    width: 1.7rem;
    height: 1.2rem;
    border-radius: 1rem 1rem 0.7rem 0.7rem;
}

.about-pillar-card .service-card-icon.service-card-group {
    box-shadow: -0.95rem 1rem 0 -0.75rem currentColor, 0.95rem 1rem 0 -0.75rem currentColor;
}

.about-pillar-card .service-card-icon.service-card-featured::before {
    top: 0.15rem;
    left: 0.95rem;
    width: 0.9rem;
    height: 1rem;
    border-radius: 0.7rem 0.7rem 0.45rem 0.45rem;
    border-bottom: 0;
}

.about-pillar-card .service-card-icon.service-card-featured::after {
    left: 0.55rem;
    bottom: 0.2rem;
    width: 1.7rem;
    height: 1.35rem;
    border-radius: 1rem 1rem 0.7rem 0.7rem;
}

.about-metrics {
    padding-top: 2rem;
    padding-bottom: 7rem;
    background: linear-gradient(180deg, #fff9f8 0%, #ffffff 100%);
}

.about-metrics-ribbon {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 1.7rem 4rem rgba(211, 176, 171, 0.22);
}

.about-metrics-ribbon article {
    padding: 2rem;
    background: linear-gradient(180deg, rgba(255, 155, 153, 0.95), rgba(242, 127, 123, 0.92));
    color: white;
    text-align: center;
}

.about-metrics-ribbon strong {
    display: block;
    font-size: clamp(2.8rem, 5vw, 4rem);
    line-height: 1;
}

.about-metrics-ribbon span {
    display: block;
    margin-top: 0.65rem;
    font-size: 1rem;
}

.about-metrics-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 25rem);
    gap: 3rem;
    align-items: center;
    margin-top: 4rem;
}

.about-metrics-copy p {
    margin-top: 1.5rem;
    max-width: 38rem;
    color: #72737a;
    line-height: 1.8;
}

.about-metrics-quote {
    padding: 2.2rem 2rem 1.8rem;
    border-radius: 2rem;
    background: #4b4444;
    color: white;
    box-shadow: 0 1.5rem 3.5rem rgba(79, 66, 66, 0.18);
}

.site-subpage-hero {
    background: linear-gradient(180deg, #fff6f5 0%, #ffffff 100%);
}

.info-grid-section {
    padding-top: 2rem;
    padding-bottom: 6rem;
    background: #ffffff;
}

.info-grid-heading {
    margin-bottom: 2.5rem;
}

.info-grid-heading h2,
.split-content-copy h2,
.contact-page-section .split-content-copy h2 {
    color: #424449;
    font-size: clamp(2.7rem, 5vw, 4rem);
    line-height: 1.03;
    max-width: 11ch;
}

.info-grid-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.info-card {
    padding: 2rem;
    border-radius: 2rem;
    background: #fff9f8;
    box-shadow: 0 1.2rem 3rem rgba(213, 181, 174, 0.2);
}

.info-card strong {
    display: block;
    color: #47494e;
    font-size: 1.35rem;
}

.info-card p {
    margin-top: 1rem;
    color: #75767b;
    line-height: 1.75;
}

.info-card-accent {
    background: linear-gradient(180deg, #ff9b99, #f79190);
}

.info-card-accent strong,
.info-card-accent p {
    color: white;
}

.split-content-section,
.contact-page-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 26rem);
    gap: 3rem;
    align-items: start;
    padding-top: 2rem;
    padding-bottom: 7rem;
    background: linear-gradient(180deg, #fff9f8 0%, #ffffff 100%);
}

.split-content-copy p {
    margin-top: 1.5rem;
    max-width: 38rem;
    color: #72737a;
    line-height: 1.8;
}

.check-list {
    display: grid;
    gap: 0.95rem;
    margin-top: 1.75rem;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #575a60;
    line-height: 1.6;
}

.check-list li::before {
    content: '+';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background: #ff8f8d;
    color: white;
    font-size: 0.85rem;
    line-height: 1;
    flex: 0 0 auto;
    margin-top: 0.1rem;
}

.split-content-panel {
    min-height: 100%;
}

.quote-panel,
.contact-card {
    padding: 2rem;
    border-radius: 2rem;
    background: #4b4444;
    color: white;
    box-shadow: 0 1.5rem 3.5rem rgba(79, 66, 66, 0.18);
}

.quote-panel p {
    margin-top: 0.75rem;
    line-height: 1.75;
}

.quote-panel strong {
    display: block;
    margin-top: 1rem;
}

.contact-card {
    display: grid;
    gap: 1rem;
    background: linear-gradient(180deg, #4b4444, #5c5252);
}

.contact-card label {
    display: grid;
    gap: 0.45rem;
}

.contact-card span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
}

.contact-card input,
.contact-card textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 0;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.96);
    color: #55595f;
    font: inherit;
}

.contact-card textarea {
    min-height: 9rem;
    resize: vertical;
}

.contact-card .button {
    margin-top: 0.5rem;
    border: 0;
    cursor: pointer;
}

/* About */
.about {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding-top: 7rem;
    padding-bottom: 7rem;
    background: linear-gradient(180deg, #ffffff 0%, #fff9f8 100%);
}

.about-copy {
    max-width: 38rem;
}

.about .section-tag {
    display: inline-block;
    color: #ff8f8d;
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.about h2 {
    color: #424449;
    font-size: clamp(2.8rem, 5vw, 4.3rem);
    line-height: 1.02;
    /* max-width: 11ch; */
}

.about-highlight {
    margin-top: 1.8rem;
    padding: 1.1rem 1.25rem;
    border-left: 0.35rem solid #ff8d8b;
    border-radius: 0 1rem 1rem 0;
    background: rgba(248, 233, 233, 0.72);
    color: #9a5f5d;
    font-size: 1rem;
    font-style: italic;
    line-height: 1.65;
}

.about-copy > p {
    margin-top: 1.25rem;
    color: #75767b;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 36rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2.3rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
    padding-right: 1.25rem;
}

.about-feature + .about-feature {
    padding-left: 1rem;
    border-left: 1px solid rgba(223, 157, 156, 0.35);
}

.feature-icon {
    position: relative;
    flex: 0 0 1.9rem;
    width: 1.9rem;
    height: 1.9rem;
    margin-top: 0.25rem;
    color: #ff8d8b;
}

.feature-icon::before,
.feature-icon::after {
    content: '';
    position: absolute;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.feature-icon::before {
    top: 0;
    left: 0.55rem;
    width: 0.75rem;
    height: 0.75rem;
}

.feature-icon::after {
    bottom: 0.1rem;
    left: 0.3rem;
    width: 1.25rem;
    height: 0.85rem;
    border-radius: 0.65rem 0.65rem 0.4rem 0.4rem;
}

.about-feature .feature-icon {
    box-shadow:
        -0.55rem 0.85rem 0 -0.48rem currentColor,
        0.55rem 0.85rem 0 -0.48rem currentColor;
}

.about-feature h3 {
    color: #3f4146;
    font-size: 1.35rem;
    line-height: 1.05;
}

.about-feature p {
    margin-top: 0.65rem;
    color: #76777c;
    line-height: 1.65;
}

.about-visual {
    position: relative;
    min-height: 42rem;
}

.about-image-frame {
    width: 100%;
    height: 100%;
    border-radius: 3.2rem;
    overflow: hidden;
    box-shadow: 0 2rem 4.5rem rgba(223, 157, 156, 0.18);
}

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

.about-quote-card {
    position: absolute;
    right: -2rem;
    bottom: -2.5rem;
    width: min(26rem, calc(100% - 2rem));
    padding: 2.2rem 2rem 1.8rem;
    border-radius: 2.2rem 2.2rem 0 2.2rem;
    background: linear-gradient(180deg, rgba(223, 111, 109, 0.9), rgba(217, 110, 107, 0.82));
    color: white;
    text-align: center;
}

.quote-mark {
    display: block;
    font-size: 4.5rem;
    line-height: 0.7;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.about-quote-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    font-style: italic;
    font-weight: 600;
}

.about-quote-card strong {
    display: block;
    margin-top: 1.2rem;
    font-size: 1.05rem;
}

.quote-role {
    display: block;
    margin-top: 0.35rem;
    color: rgba(255, 255, 255, 0.76);
}

/* Services Intro */
.services-overview {
    padding-top: 2rem;
    padding-bottom: 6rem;
    background: linear-gradient(180deg, #fff9f8 0%, #ffffff 22rem, #ffffff 100%);
}

.service-stats {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-radius: 2.25rem;
    overflow: hidden;
    background-image: linear-gradient(rgba(217, 111, 109, 0.78), rgba(217, 111, 109, 0.78)), url('../images/hero_1.png');
    background-size: cover;
    background-position: center;
    box-shadow: 0 2rem 4.5rem rgba(211, 126, 123, 0.18);
}

.service-stat {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 17rem;
    padding: 2.25rem 1.5rem;
    text-align: center;
    color: white;
}

.service-stat + .service-stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18%;
    bottom: 18%;
    width: 1px;
    background: rgba(255, 255, 255, 0.55);
}

.service-stat-icon {
    position: relative;
    width: 2.35rem;
    height: 1.9rem;
    margin-bottom: 1.45rem;
}

.service-stat-icon::before,
.service-stat-icon::after {
    content: '';
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.95);
    border-radius: 50%;
}

.service-stat-icon::before {
    top: 0;
    left: 0.77rem;
    width: 0.8rem;
    height: 0.8rem;
}

.service-stat-icon::after {
    left: 0.45rem;
    bottom: 0;
    width: 1.45rem;
    height: 0.95rem;
    border-radius: 0.9rem 0.9rem 0.45rem 0.45rem;
}

.service-stat:nth-child(1) .service-stat-icon,
.service-stat:nth-child(2) .service-stat-icon {
    box-shadow:
        -0.72rem 0.95rem 0 -0.58rem rgba(255, 255, 255, 0.95),
        0.72rem 0.95rem 0 -0.58rem rgba(255, 255, 255, 0.95);
}

.service-stat:nth-child(3) .service-stat-icon::before,
.service-stat:nth-child(3) .service-stat-icon::after {
    border-radius: 0.35rem;
}

.service-stat:nth-child(3) .service-stat-icon::before {
    width: 0.9rem;
    height: 0.9rem;
    left: 0.72rem;
}

.service-stat:nth-child(3) .service-stat-icon::after {
    width: 1.2rem;
    height: 0.7rem;
    left: 0.58rem;
    border-top: 0;
    border-radius: 0 0 0.5rem 0.5rem;
}

.service-stat:nth-child(4) .service-stat-icon::before,
.service-stat:nth-child(4) .service-stat-icon::after {
    border-radius: 0.3rem;
}

.service-stat:nth-child(4) .service-stat-icon::before {
    left: 0.55rem;
    width: 1.25rem;
    height: 0.95rem;
}

.service-stat:nth-child(4) .service-stat-icon::after {
    left: 0.15rem;
    bottom: -0.05rem;
    width: 2.05rem;
    height: 1.1rem;
    border-top: 0;
    border-radius: 0 0 0.8rem 0.8rem;
}

.service-stat strong {
    font-size: clamp(3rem, 5vw, 4.1rem);
    font-weight: 700;
    line-height: 0.95;
}

.service-stat strong span {
    font-size: 0.7em;
}

.service-stat p {
    margin-top: 0.8rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
    max-width: 9.5rem;
}

.services-copy {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    align-items: end;
    gap: 3rem;
    margin-top: 5.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(223, 157, 156, 0.45);
}

.services-copy-heading .section-tag {
    display: inline-block;
    color: #ff8f8d;
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1.4rem;
}

.services-copy h2 {
    color: #424449;
    font-size: clamp(2.8rem, 5.2vw, 4.25rem);
    line-height: 1.02;
}

.services-copy p {
    color: #6f7075;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 40rem;
    padding-bottom: 0.55rem;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    padding-top: 1rem;
    padding-bottom: 7rem;
    background: #ffffff;
}

.service-card {
    min-height: 27rem;
    padding: 2.3rem 2.2rem 2rem;
    border-radius: 2rem;
    background: #fff9f8;
    box-shadow: 0 1.5rem 3.8rem rgba(206, 178, 170, 0.32);
    color: #484a4f;
}

.service-card > img {
    display: block;
    width: 3.5rem;
    height: 3.5rem;
    object-fit: contain;
    filter: invert(71%) sepia(37%) saturate(1148%) hue-rotate(309deg) brightness(102%) contrast(101%);
}

.service-card-icon {
    position: relative;
    display: inline-block;
    width: 3rem;
    height: 3rem;
    color: #ff8f8d;
}

.service-card-icon::before,
.service-card-icon::after {
    content: '';
    position: absolute;
    border: 2px solid currentColor;
}

.service-card h3 {
    margin-top: 1.75rem;
    font-size: 1.55rem;
    line-height: 1.08;
    max-width: 8ch;
}

.service-card p {
    margin-top: 1.6rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(255, 143, 141, 0.85);
    color: #72737a;
    font-size: 1rem;
    line-height: 1.7;
}

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 2rem;
    color: #ff8f8d;
    font-size: 0.95rem;
    font-weight: 700;
}

.service-card a::before {
    content: '+';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 50%;
    background: currentColor;
    color: white;
    font-size: 0.9rem;
    line-height: 1;
}

.service-card-featured {
    background:
        radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.08) 2.5rem, transparent 2.6rem),
        radial-gradient(circle at 75% 70%, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0.06) 3rem, transparent 3.1rem),
        linear-gradient(180deg, #ff9b99, #f79190);
    color: white;
}

.service-card-featured .service-card-icon,
.service-card-featured a,
.service-card-featured p {
    color: white;
}

.service-card-featured > img {
    filter: brightness(0) invert(1);
}

.service-card-featured p {
    border-top-color: rgba(255, 255, 255, 0.45);
}

.service-card-featured a::before {
    background: white;
    color: #f79190;
}

.service-card-featured .service-card-icon::before {
    top: 0.15rem;
    left: 0.95rem;
    width: 0.9rem;
    height: 1rem;
    border-radius: 0.7rem 0.7rem 0.45rem 0.45rem;
    border-bottom: 0;
}

.service-card-featured .service-card-icon::after {
    left: 0.55rem;
    bottom: 0.2rem;
    width: 1.7rem;
    height: 1.35rem;
    border-radius: 1rem 1rem 0.7rem 0.7rem;
}

.service-card-document .service-card-icon::before {
    top: 0.25rem;
    left: 0.45rem;
    width: 1.35rem;
    height: 1.6rem;
    border-radius: 0.35rem;
}

.service-card-document .service-card-icon::after {
    top: 0.6rem;
    left: 1.35rem;
    width: 1.15rem;
    height: 1.4rem;
    border-radius: 0.35rem;
    background:
        linear-gradient(transparent 0.4rem, currentColor 0.4rem, currentColor 0.52rem, transparent 0.52rem),
        linear-gradient(transparent 0.82rem, currentColor 0.82rem, currentColor 0.94rem, transparent 0.94rem);
}

.service-card-group .service-card-icon::before,
.service-card-family .service-card-icon::before {
    top: 0.15rem;
    left: 1rem;
    width: 0.85rem;
    height: 0.85rem;
    border-radius: 50%;
}

.service-card-group .service-card-icon::after,
.service-card-family .service-card-icon::after {
    left: 0.6rem;
    bottom: 0.2rem;
    width: 1.7rem;
    height: 1.2rem;
    border-radius: 1rem 1rem 0.7rem 0.7rem;
}

.service-card-group .service-card-icon,
.service-card-family .service-card-icon {
    box-shadow:
        -0.95rem 1rem 0 -0.75rem currentColor,
        0.95rem 1rem 0 -0.75rem currentColor;
}

.service-card-consult .service-card-icon::before {
    top: 0.25rem;
    left: 1.3rem;
    width: 0.45rem;
    height: 1.9rem;
    border-radius: 999px;
    transform: rotate(34deg);
}

.service-card-consult .service-card-icon::after {
    top: 0.95rem;
    left: 0.55rem;
    width: 1.9rem;
    height: 0.45rem;
    border-radius: 999px;
    transform: rotate(-56deg);
}

.service-card-promo {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background-image: linear-gradient(rgba(208, 101, 98, 0.72), rgba(208, 101, 98, 0.72)), url('../images/hero_1.png');
    background-size: cover;
    background-position: center;
    color: white;
}

.service-card-promo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.08));
}

.service-card-promo-copy {
    position: relative;
    z-index: 1;
}

.service-card-promo h3 {
    font-size: clamp(2.6rem, 5vw, 4rem);
    line-height: 0.98;
    max-width: 5ch;
    color: white;
}

.service-card-promo a {
    margin-top: 1.35rem;
    color: white;
}

.service-card-promo a::before {
    background: white;
    color: #d36f6c;
}

.service-card-promo p {
    display: none;
}

/* Footer */
.site-footer {
    position: relative;
    margin-top: 2rem;
    color: white;
}

.footer-newsletter-wrap {
    position: relative;
    z-index: 2;
    margin-bottom: -5.5rem;
}

.footer-newsletter {
    display: grid;
    grid-template-columns: minmax(15rem, 20rem) minmax(0, 1fr);
    align-items: center;
    gap: 2rem;
    max-width: 62rem;
    margin: 0 auto;
    border-radius: 2.2rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 28% 30%, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.08) 2.8rem, transparent 2.9rem),
        radial-gradient(circle at 76% 62%, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 3.3rem, transparent 3.4rem),
        linear-gradient(180deg, #ff9c99, #f68e8d);
    box-shadow: 0 1.8rem 4rem rgba(214, 116, 113, 0.28);
}

.footer-newsletter-image {
    align-self: end;
    height: 100%;
}

.footer-newsletter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.footer-newsletter-content {
    padding: 2.5rem 2.75rem 2.5rem 0;
}

.footer-newsletter-content h2 {
    max-width: 12ch;
    font-size: clamp(2.3rem, 4.5vw, 3.6rem);
    line-height: 1.02;
}

.footer-newsletter-content label {
    display: inline-block;
    margin-top: 1.55rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.88);
}

.footer-newsletter-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.9rem;
    margin-top: 0.75rem;
}

.footer-newsletter-form input {
    width: 100%;
    min-height: 3.35rem;
    padding: 0 1.25rem;
    border: 0;
    border-radius: 999px;
    background: white;
    color: #595c61;
    font: inherit;
}

.footer-newsletter-form input::placeholder {
    color: #c9c5c5;
}

.footer-newsletter-form button {
    min-height: 3.35rem;
    padding: 0 2rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    background: #d86762;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
}

.footer-main {
    position: relative;
    padding-top: 10rem;
    background-image: linear-gradient(rgba(72, 62, 62, 0.8), rgba(72, 62, 62, 0.8)), url('../images/hero_1.png');
    background-size: cover;
    background-position: center;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(57, 47, 47, 0.18);
    backdrop-filter: grayscale(100%);
}

.footer-content,
.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.footer-brand img {
    width: 3rem;
}

.footer-brand-column p {
    margin-top: 1.8rem;
    max-width: 20rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
}

.footer-socials {
    display: flex;
    gap: 0.7rem;
    margin-top: 1.55rem;
}

.footer-socials a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 50%;
    background: #ff8f8d;
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-links-column h3,
.footer-gallery-column h3 {
    font-size: 1.35rem;
}

.footer-links-column ul {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.5rem;
    list-style: none;
}

.footer-links-column li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: rgba(255, 255, 255, 0.82);
}

.footer-links-column li::before {
    content: '+';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #ff8f8d;
    color: white;
    font-size: 0.8rem;
    line-height: 1;
    flex: 0 0 auto;
}

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-gallery img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 0.75rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    min-height: 3rem;
    background:
        radial-gradient(circle at 20% 40%, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 2rem, transparent 2.1rem),
        linear-gradient(180deg, rgba(255, 154, 153, 0.9), rgba(248, 141, 140, 0.92));
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom a,
.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.96);
}
