/* ====== Paleta y base ====== */

:root {
    --navy: #27496B;
    --blue: #3C7BAA;
    --light: #E9EEF4;
    --sand: #E6DED5;
    --ink: #273140;
    --accent: #2D84C8;
    --radius: 16px;
    --shadow: 0 10px 28px rgba(39, 73, 107, .14);
    --header-h: 64px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--ink);
    background: var(--light);
    line-height: 1.65
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px
}

.section {
    padding: 70px 0;
    scroll-margin-top: calc(var(--header-h) + 12px)
}

.section.white {
    background: #fff
}

.section.sand {
    background: var(--sand)
}

.section.blue {
    background: linear-gradient(180deg, #f3f7fb, #e7f1f9)
}

.card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 20px
}

h1,
h2,
h3 {
    margin: 0 0 10px
}

h2 {
    color: var(--navy)
}


/* ====== Header ====== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    border-bottom: 2px solid var(--navy);
    background: #fff;
    transition: box-shadow .25s ease, background .25s ease
}

.site-header.scrolled {
    box-shadow: 0 8px 24px rgba(39, 73, 107, .18)
}

.site-header.over-hero {
    background: #3085e7;
    border-bottom-color: rgba(255, 255, 255, .35)
}

.nav {
    max-width: 1100px;
    margin: auto;
    padding: 10px 20px;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none
}

.brand-text {
    font-weight: 800;
    color: #fff
}

.site-header:not(.over-hero) .brand-text {
    color: var(--navy)
}

.brand-sigil {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--blue), var(--accent));
    box-shadow: 0 4px 14px rgba(0, 0, 0, .2)
}

.links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    padding: 8px 10px;
    border-radius: 10px
}

.site-header:not(.over-hero) .nav a {
    color: var(--navy)
}

.nav a:hover {
    background: rgba(255, 255, 255, .12)
}

.site-header:not(.over-hero) .nav a:hover {
    background: rgba(39, 73, 107, .08)
}

.btn {
    display: inline-block;
    background: var(--navy);
    color: #fff;
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 800;
    border: 0;
    box-shadow: 0 10px 18px rgba(39, 73, 107, .18);
    transition: transform .15s ease, filter .2s ease
}

.btn:hover {
    filter: brightness(1.06);
    transform: translateY(-2px)
}

.btn.ghost {
    background: transparent;
    border: 1px solid #fff
}

.btn.small {
    padding: 6px 10px;
    font-size: .9rem
}


/* Progress bar */

#progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    z-index: 1000
}


/* AppBar glass */

.appbar {
    position: sticky;
    top: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: rgba(255, 255, 255, .6);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid rgba(46, 106, 166, .15)
}

.brand {
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
    color: var(--ink);
    font-weight: 800
}

.brand img {
    width: 36px;
    height: 36px;
    object-fit: contain
}

.nav {
    display: flex;
    gap: 20px
}

.nav a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    opacity: .9
}

.nav a:hover {
    color: var(--brand)
}

.burger {
    display: none;
    background: transparent;
    border: 0;
    gap: 5px;
    flex-direction: column;
    padding: 6px;
    cursor: pointer
}

.burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--ink);
    transition: .3s;
    border-radius: 2px
}


/* Responsive */

@media (max-width: 920px) {
    .nav {
        display: none
    }
    .burger {
        display: flex
    }
    .two-col,
    .two-col.alt {
        grid-template-columns: 1fr
    }
    .identity .cards {
        grid-template-columns: 1fr
    }
}


/* Mobile full-screen menu */

body.menu-open .nav {
    position: unset;
    inset: 60px 16px 16px 16px;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    box-shadow: var(--shadow);
    display: grid;
    place-content: center;
    gap: 16px
}

body.menu-open .nav a {
    font-size: 22px
}

body.menu-open .burger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg)
}

body.menu-open .burger span:nth-child(2) {
    opacity: 0
}

body.menu-open .burger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg)
}


/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
    .reveal {
        transition: none
    }
    .blob {
        animation: none
    }
}


/* ====== Hamburger + Drawer ====== */

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: 0;
    padding: 8px;
    border-radius: 10px
}

.menu-toggle .bar {
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    display: block
}

.mobile-panel {
    position: fixed;
    inset: 0;
    pointer-events: none;
    visibility: hidden;
    z-index: 70
}

.mobile-panel .scrim {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    opacity: 0;
    transition: opacity .25s ease
}

.mobile-panel .panel-content {
    position: absolute;
    top: 0;
    right: 0;
    width: min(88vw, 380px);
    height: 100%;
    background: #fff;
    border-left: 1px solid rgba(39, 73, 107, .15);
    box-shadow: -8px 0 28px rgba(39, 73, 107, .18);
    transform: translateX(100%);
    transition: transform .3s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px
}

.mobile-panel .panel-close {
    background: transparent;
    border: 0;
    font-size: 26px;
    align-self: flex-end
}

.mobile-panel a {
    padding: 12px;
    border-radius: 10px;
    color: var(--navy);
    font-weight: 700;
    text-decoration: none
}

.mobile-panel a:hover {
    background: rgba(39, 73, 107, .08)
}

.mobile-panel.open {
    pointer-events: auto;
    visibility: visible
}

.mobile-panel.open .scrim {
    opacity: 1
}

.mobile-panel.open .panel-content {
    transform: translateX(0)
}


/* ====== Hero ====== */

.hero {
    position: relative;
    min-height: 70vh;
    display: grid;
    place-items: center;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy), var(--blue))
}

.hero-inner {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    position: relative;
    z-index: 2
}

.kicker {
    text-transform: uppercase;
    letter-spacing: .15em;
    font-weight: 800;
    opacity: .9
}

.hero h1 {
    font-size: clamp(1.9rem, 3.6vw, 3.2rem);
    margin: .3rem 0 .6rem
}

.hero .lead {
    opacity: .98
}

.hero .cta {
    margin-top: 12px
}

.hero-art {
    position: absolute;
    inset: -10%;
    pointer-events: none;
    background: radial-gradient(900px 450px at 20% 25%, rgba(233, 238, 244, .35), transparent 60%), radial-gradient(700px 350px at 80% 10%, rgba(255, 255, 255, .18), transparent 60%), radial-gradient(600px 300px at 60% 85%, rgba(44, 132, 200, .30), transparent 60%);
}


/* ====== Layouts ====== */

.grid-2 {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 18px
}

.side-ill {
    background: linear-gradient(135deg, #c5d8ea, #edf3f9);
    border-radius: 14px;
    box-shadow: var(--shadow)
}

.photo.tall {
    min-height: 360px;
    background: linear-gradient(135deg, #d9e7f4, #f6fafc);
    border-radius: 14px;
    box-shadow: var(--shadow)
}

.id-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
}

.id-card .id-media {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    background: linear-gradient(135deg, #cde2f2, #ffffff);
    margin-bottom: 8px;
    box-shadow: var(--shadow)
}

.obj-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: center
}

.obj-media {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 12px;
    background: linear-gradient(135deg, #d5e6f7, #ffffff);
    box-shadow: var(--shadow)
}

.val-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px
}

.dep-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.srv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
}

.contact {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 16px;
    align-items: center
}

.map-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden
}

.map-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0
}


/* ===== Reveal animation ===== */

.reveal {
    opacity: 1;
    transform: none;
    transition: opacity .6s ease, transform .6s ease
}

.js .reveal {
    opacity: 100;
    transform: translateY(14px)
}

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

.reveal.d1 {
    transition-delay: .15s
}

.reveal.d2 {
    transition-delay: .3s
}

.reveal.d3 {
    transition-delay: .45s
}


/* ===== Footer ===== */

.site-footer {
    background: var(--navy);
    color: #fff;
    text-align: center;
    padding: 28px 20px
}


/* ===== Responsive ===== */

@media (max-width:1100px) {
    .val-grid {
        grid-template-columns: repeat(3, 1fr)
    }
    .srv-grid {
        grid-template-columns: 1fr
    }
    .obj-wrap {
        grid-template-columns: 1fr
    }
    .contact {
        grid-template-columns: 1fr
    }
}

@media (max-width:900px) {
    .links {
        display: none
    }
    .menu-toggle {
        display: flex
    }
    .grid-2 {
        grid-template-columns: 1fr
    }
    .dep-grid {
        grid-template-columns: 1fr
    }
    .val-grid {
        grid-template-columns: 1fr
    }
}


/* Logo image in header */

.brand-logo {
    display: block;
    width: 34px;
    height: 34px;
    border-radius: 6px;
    object-fit: contain;
    background: #fff;
    padding: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12)
}

.site-header:not(.over-hero) .brand-logo {
    background: transparent;
    box-shadow: none
}


/* === Imagery mapping added (user-provided images) === */


/* Hero with nurse image */

.hero {
    background-image: linear-gradient(115deg, rgba(8, 42, 84, .84), rgba(6, 139, 209, .74)), url('assets/img/hero-nurse.jpg');
    background-size: cover;
    background-position: center 30%;
}


/* Side illustration images */

#clientes .side-ill {
    background: linear-gradient(180deg, rgba(8, 42, 84, .15), rgba(8, 42, 84, .45)), url('assets/img/clients-clipboard.jpg') center/cover no-repeat;
}

#somos .photo {
    background: linear-gradient(180deg, rgba(8, 42, 84, .15), rgba(8, 42, 84, .45)), url('assets/img/office.jpg') center/cover no-repeat;
}


/* Misión & Visión imagery */

.id-media.mision {
    background-image: linear-gradient(160deg, rgba(6, 139, 209, .55), rgba(8, 42, 84, .55)), url('assets/img/doctor-consult.jpg');
    background-size: cover;
    background-position: center;
}

.id-media.vision {
    background-image: linear-gradient(160deg, rgba(6, 139, 209, .55), rgba(8, 42, 84, .55)), url('assets/img/stethoscope-clip.jpg');
    background-size: cover;
    background-position: center;
}


/* Objetivos decorative image */

.obj-media {
    background-image: linear-gradient(160deg, rgba(6, 139, 209, .45), rgba(8, 42, 84, .45)), url('assets/img/training.jpg');
    background-size: cover;
    background-position: center;
}


/* Valores cards with subtle imagery */

.val {
    position: relative;
    overflow: hidden;
}

.val::after {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .18;
    transition: opacity .3s ease;
}

.val:hover::after {
    opacity: .28;
}

.val:nth-child(1)::after {
    background-image: url('assets/img/imgVal1.png');
}

.val:nth-child(2)::after {
    background-image: url('assets/img/imgVal2.png');
}

.val:nth-child(3)::after {
    background-image: url('assets/img/imgVal3.png');
}

.val:nth-child(4)::after {
    background-image: url('assets/img/imgVal4.png');
}

.val:nth-child(5)::after {
    background-image: url('assets/img/imgVal5.png');
}


/* Departamentos circular thumbnails */

.dep-card {
    position: relative;
    overflow: hidden;
}

.dep-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .18;
    transition: opacity .3s ease;
}

.dep-card:hover::after {
    opacity: .28;
}

.dep-card:nth-child(1)::after {
    background-image: url('assets/img/imgdep1.png');
}

.dep-card:nth-child(2)::after {
    background-image: url('assets/img/imgDep2.png');
}

.dep-card:nth-child(3)::after {
    background-image: url('assets/img/imgDep3.png');
}

.dep-card:nth-child(4)::after {
    background-image: url('assets/img/imgDep4.png');
}

.dep-card:nth-child(5)::after {
    background-image: url('assets/img/imgDep5.png');
}

.dep-card:nth-child(6)::after {
    background-image: url('assets/img/imgDep6.png');
}


/* Servicios cards background imagery */

.srv {
    position: relative;
    overflow: hidden;
}

.srv::after {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(.9);
    opacity: .12;
    transition: opacity .3s ease;
}

.srv:hover::after {
    opacity: .22;
}

.srv:nth-child(1)::after {
    background-image: url('assets/img/meeting-room.jpg');
}


/* Consultorios */

.srv:nth-child(2)::after {
    background-image: url('assets/img/pills.jpg');
}


/* Distribución farmacéuticos */

.srv:nth-child(3)::after {
    background-image: url('assets/img/instruments.jpg');
}


/* Mobiliario e instrumental */

.srv:nth-child(4)::after {
    background-image: url('assets/img/business-talk.jpg');
}


/* Intermediación comercial */

.srv:nth-child(5)::after {
    background-image: url('assets/img/stethoscope-clip.jpg');
}


/* Venta de equipo */

:root {
    --ink: #1f2b3a;
    --muted: #63748b;
    --brand: #2E6AA6;
    --brand-2: #5DB2FF;
    --accent: #1fa2ff;
    --bg: #f6f9fc;
    --panel: #ffffff;
    --radius: 16px;
    --shadow: 0 10px 30px rgba(31, 43, 58, .10);
}

* {
    box-sizing: border-box
}

html,
body {
    margin: 0
}

body {
    font-family: Inter, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65
}


/* Progress bar */

#progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--brand), var(--brand-2));
    z-index: 1000
}


/* AppBar glass */

.appbar {
    position: sticky;
    top: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: rgba(255, 255, 255, .6);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid rgba(46, 106, 166, .15)
}

.brand {
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
    color: var(--ink);
    font-weight: 800
}

.brand img {
    width: 36px;
    height: 36px;
    object-fit: contain
}

.nav {
    display: flex;
    gap: 20px
}

.nav a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    opacity: .9
}

.nav a:hover {
    color: var(--brand)
}

.burger {
    display: none;
    background: transparent;
    border: 0;
    gap: 5px;
    flex-direction: column;
    padding: 6px;
    cursor: pointer
}

.burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--ink);
    transition: .3s;
    border-radius: 2px
}


/* Hero */

.hero {
    position: relative;
    min-height: 72vh;
    display: grid;
    place-items: center;
    overflow: hidden
}

.hero picture,
.hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.6)
}

.hero-content {
    position: relative;
    max-width: 1050px;
    padding: 80px 20px;
    color: #fff;
    text-align: center
}

.hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    margin: 0 0 10px
}

.hero .lead {
    max-width: 70ch;
    margin: 0 auto 24px;
    color: #e7f1ff
}

.hero .btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 999px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    margin: 6px 8px;
    transition: .25s
}

.hero .btn.primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    border-color: transparent
}

.hero .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2)
}

.blob {
    position: absolute;
    inset: auto -30vw -40vh auto;
    width: 60vw;
    height: 60vw;
    filter: blur(30px);
    opacity: .35;
    background: radial-gradient(50% 50% at 50% 50%, var(--brand-2) 0%, rgba(93, 178, 255, 0) 70%);
    animation: float 10s ease-in-out infinite
}

@keyframes float {
    50% {
        transform: translateY(-20px) scale(1.05)
    }
}


/* Counters */

.counters {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 22px;
    flex-wrap: wrap
}

.counter {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 14px 18px;
    border-radius: 14px;
    min-width: 150px
}

.counter strong {
    display: block;
    font-size: 28px
}

.counter small {
    opacity: .85
}


/* Panels */

.panel {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 18px
}

.two-col {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px;
    align-items: center
}

.two-col.alt {
    grid-template-columns: .9fr 1.1fr
}

.rounded {
    border-radius: var(--radius)
}

.shadow {
    box-shadow: var(--shadow)
}

.section-title {
    font-size: clamp(24px, 3.5vw, 40px);
    margin: 0 0 14px;
    color: var(--brand)
}

.section-title.center {
    text-align: center
}

.text p {
    color: var(--muted)
}


/* Identity flip cards */

.identity .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1100px;
    margin: 20px auto
}

.flip {
    perspective: 1000px
}

.flip .card {
    min-height: 260px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    background: var(--panel);
    padding: 22px
}

.flip .face {
    transition: transform .7s;
    transform-style: preserve-3d;
    position: relative
}

.flip .back {
    position: absolute;
    inset: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 18px;
    backface-visibility: hidden
}

.flip img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.flip:hover .front {
    transform: rotateY(180deg)
}

.flip:hover .back {
    transform: rotateY(0)
}

.front {
    backface-visibility: hidden
}

.back {
    transform: rotateY(-180deg)
}


/* Timeline */

.timeline {
    position: relative;
    padding: 40px 0 10px
}

.timeline .curve {
    position: absolute;
    left: 50%;
    top: 70px;
    bottom: 60px;
    width: 4px;
    background: linear-gradient(var(--brand), var(--brand-2));
    transform: translateX(-50%);
    border-radius: 3px
}

.timeline .steps {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 18px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
}

.timeline .step {
    background: var(--panel);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 18px;
    border-left: 6px solid var(--brand)
}

.timeline .step span {
    display: block;
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 6px
}

.timeline-img {
    display: block;
    max-width: 980px;
    margin: 26px auto;
    border-radius: 18px;
    box-shadow: var(--shadow)
}


/* Services masonry */

.services .masonry {
    max-width: 1100px;
    margin: 6px auto;
    padding: 0 18px;
    columns: 3 280px;
    column-gap: 18px
}

.tile {
    break-inside: avoid;
    position: relative;
    margin: 0 0 18px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow)
}

.tile img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    filter: saturate(.95)
}

.tile .overlay {
    position: absolute;
    inset: auto 0 0 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .7));
    color: #fff;
    padding: 16px 14px;
    transform: translateY(0);
    transition: .3s
}

.tile:hover .overlay {
    transform: translateY(-4px)
}


/* Contact */

.contact .contact-card {
    max-width: 1100px;
    margin: 40px auto;
    background: var(--panel);
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--shadow)
}

.contact ul {
    padding-left: 18px;
    color: var(--muted)
}


/* Footer */

.foot {
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #fff, #f0f6ff);
    padding: 24px;
    margin-top: 38px;
    border-top: 1px solid rgba(46, 106, 166, .15)
}

.foot img {
    height: 44px;
    opacity: .9
}


/* Reveal on scroll */

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: all .6s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}


/* To top */

#toTop {
    position: fixed;
    bottom: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 0;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
    cursor: pointer;
    box-shadow: var(--shadow);
    display: none
}

#toTop.show {
    display: block
}


/* Responsive */

@media (max-width: 920px) {
    .nav {
        display: none
    }
    .burger {
        display: flex
    }
    .two-col,
    .two-col.alt {
        grid-template-columns: 1fr
    }
    .identity .cards {
        grid-template-columns: 1fr
    }
}


/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
    .reveal {
        transition: none
    }
    .blob {
        animation: none
    }
}