/* ============================================================
   Estaciones de Comida Bogotá – PREMIUM REDESIGN v3
   Palette: Burgundy Wine · Warm Ivory · Rose Gold · Deep Forest
   Fonts: Playfair Display + Jost
   ============================================================ */

/* ---- ROOT ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --wine: #6B2737;
    --wine-dark: #4A1A26;
    --gold: #C9933A;
    --gold-lt: #E8C07A;
    --ivory: #FBF7F0;
    --cream: #F5EDE0;
    --forest: #1E2D2A;
    --charcoal: #1A1A1A;
    --white: #FFFFFF;
    --muted: #7A6E65;
    --border: rgba(107, 39, 55, 0.12);

    --ff-serif: 'Playfair Display', Georgia, serif;
    --ff-sans: 'Jost', system-ui, sans-serif;
    --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
    --trans: all 0.4s var(--ease);
    --radius: 4px;
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--ff-sans);
    background: var(--ivory);
    color: var(--charcoal);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

h1,
h2,
h3,
h4 {
    font-family: var(--ff-serif);
    line-height: 1.2;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

.heading-xl {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 500;
}

/* Eyebrow labels */
.eyebrow {
    display: inline-block;
    font-family: var(--ff-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--wine);
    margin-bottom: 16px;
}

.eyebrow--light {
    color: var(--gold-lt);
}

/* Section headers */
.sec-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.sec-head p {
    color: var(--muted);
    font-size: 1rem;
    margin-top: 14px;
    line-height: 1.8;
}

.sec-head--light .heading-xl {
    color: var(--white);
}

.sec-head--light p {
    color: rgba(255, 255, 255, 0.65);
}

/* Tags */
.tag {
    display: inline-block;
    font-family: var(--ff-sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--wine);
    border: 1px solid var(--wine);
    padding: 3px 10px;
    border-radius: 50px;
    margin-top: 10px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-sans);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 36px;
    border: none;
    cursor: pointer;
    transition: var(--trans);
    border-radius: var(--radius);
}

.btn--primary {
    background: var(--wine);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(107, 39, 55, 0.35);
}

.btn--primary:hover {
    background: var(--wine-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(107, 39, 55, 0.45);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.btn--ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.btn--dark {
    background: var(--charcoal);
    color: var(--white);
}

.btn--dark:hover {
    background: var(--forest);
    transform: translateY(-2px);
}

.btn--gold {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(201, 147, 58, 0.4);
}

.btn--gold:hover {
    background: #b97e28;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 147, 58, 0.5);
}

.btn--lg {
    padding: 18px 48px;
    font-size: 0.82rem;
    letter-spacing: 2.5px;
}

.btn--full {
    width: 100%;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--wine);
    border-radius: 3px;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgb(107 40 56 / 22%);
    backdrop-filter: blur(16px);
    transition: var(--trans);
}

.nav.shrunk {
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    max-width: 1180px;
    margin: 0 auto;
    height: 72px;
}

.nav__logo img {
    height: 52px;
    /* width: 52px; */
    /* border-radius: 50%; */
    /* background: var(--white); */
    object-fit: cover;
    transition: var(--trans);
}

.nav__logo:hover img {
    transform: rotate(5deg) scale(1.05);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav__links a {
    font-family: var(--ff-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    padding: 8px 16px;
    border-radius: var(--radius);
    transition: var(--trans);
}

.nav__links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

.nav__cta {
    color: var(--gold-lt) !important;
    border: 1px solid rgba(232, 192, 122, 0.5) !important;
    margin-left: 8px;
}

.nav__cta:hover {
    background: var(--wine) !important;
    border-color: var(--wine) !important;
    color: var(--white) !important;
}

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

.nav__burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--white);
    transition: var(--trans);
}

.nav__burger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav__burger.open span:nth-child(2) {
    opacity: 0;
}

.nav__burger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.nav__mobile {
    display: none;
    flex-direction: column;
    background: rgba(20, 30, 28, 0.98);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
}

.nav__mobile.open {
    max-height: 360px;
}

.nav__mobile a {
    font-family: var(--ff-sans);
    color: rgba(255, 255, 255, 0.8);
    padding: 14px 28px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--trans);
}

.nav__mobile a:hover {
    color: var(--gold-lt);
    padding-left: 34px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 85%;
}

.hero__vignette {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(20, 10, 12, 0.82) 0%,
            rgba(107, 39, 55, 0.3) 55%,
            rgba(20, 10, 12, 0.55) 100%);
}

.hero__content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 640px;
    padding: 0 28px 100px;
    margin-left: calc((100vw - 1180px)/2);
    margin-left: max(28px, calc((100vw - 1180px)/2));
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.hero__eyebrow {
    font-family: var(--ff-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-lt);
    opacity: 0;
    animation: fadeUp 0.7s 0.2s forwards;
}

.hero__title {
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 500;
    line-height: 1.08;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
    opacity: 0;
    animation: fadeUp 0.8s 0.35s forwards;
}

.hero__title em {
    color: var(--gold-lt);
    font-style: italic;
}

.hero__sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    line-height: 1.85;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.65s forwards;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero__scroll-line {
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5));
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: .4;
        height: 60px;
    }

    50% {
        opacity: .9;
        height: 80px;
    }
}

/* ============================================================
   RIBBON
   ============================================================ */
.ribbon {
    background: var(--wine);
    display: flex;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ribbon__item {
    padding: 16px 32px;
    font-family: var(--ff-sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    flex: 1;
    text-align: center;
}

.ribbon__item:last-child {
    border-right: none;
}

.ri {
    color: var(--gold-lt);
    margin-right: 8px;
}

/* ============================================================
   INTRO
   ============================================================ */
.intro {
    padding: 100px 0;
    background: var(--white);
}

.intro__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.intro__text p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.9;
}

.intro__text .btn {
    align-self: flex-start;
    margin-top: 8px;
}

.intro__visual {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.intro__img-wrap {
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.intro__logo-big {
    max-height: 260px;
    width: auto;
    margin: 0 auto;
}

.intro__stat-row {
    display: flex;
    align-items: center;
    gap: 28px;
    width: 100%;
    justify-content: center;
}

.istat {
    text-align: center;
}

.istat__n {
    display: block;
    font-family: var(--ff-serif);
    font-size: 2rem;
    color: var(--wine);
}

.istat__l {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}

.istat__sep {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ============================================================
   ESTACIONES
   ============================================================ */
.estaciones {
    padding: 110px 0;
    background: var(--ivory);
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.card {
    background: var(--white);
    display: flex;
    flex-direction: column;
    transition: var(--trans);
    position: relative;
    overflow: hidden;
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--wine), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.card:hover::after {
    transform: scaleX(1);
}

.card:hover {
    background: var(--ivory);
    z-index: 1;
    box-shadow: var(--shadow-md);
}

.card--wide {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
}

.card__icon {
    font-size: 2.2rem;
    padding: 28px 28px 0;
    line-height: 1;
}

.card__icon--lg {
    padding: 36px 40px;
    font-size: 3rem;
    flex-shrink: 0;
}

.card__body {
    padding: 18px 28px 28px;
    flex: 1;
}

.card__body h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--charcoal);
}

.card__body p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.8;
}

/* ============================================================
   EVENTOS
   ============================================================ */
.eventos {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
}

.eventos__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--wine-dark) 0%, var(--forest) 60%, var(--wine) 100%);
    z-index: 0;
}

.eventos .container {
    position: relative;
    z-index: 1;
}

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

.ev-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 28px;
    color: var(--white);
    position: relative;
    transition: var(--trans);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(4px);
    border-radius: var(--radius);
}

.ev-card:hover {
    background: rgba(201, 147, 58, 0.15);
    border-color: rgba(201, 147, 58, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.ev-card--accent {
    background: rgba(107, 39, 55, 0.35);
    border-color: rgba(201, 147, 58, 0.25);
}

.ev-card--accent:hover {
    background: rgba(107, 39, 55, 0.6);
}

.ev-card__num {
    font-family: var(--ff-serif);
    font-size: 0.75rem;
    color: var(--gold-lt);
    opacity: 0.6;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.ev-card__icon {
    font-size: 2rem;
    margin-bottom: 14px;
    display: block;
}

.ev-card h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.ev-card p {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
}

/* ============================================================
   POR QUÉ
   ============================================================ */
.porque {
    padding: 110px 0;
    background: var(--white);
}

.pq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 40px;
}

.pq-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pq-item__line {
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--wine), var(--gold));
    margin-bottom: 4px;
}

.pq-item__num {
    font-family: var(--ff-serif);
    font-size: 0.72rem;
    color: var(--wine);
    letter-spacing: 2px;
    opacity: 0.5;
}

.pq-item h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--charcoal);
}

.pq-item p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.85;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.ctaband {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
    text-align: center;
}

.ctaband__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ctaband__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

.ctaband__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(30, 45, 42, 0.88), rgba(107, 39, 55, 0.85));
}

.ctaband__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    color: var(--white);
}

.ctaband__pre {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-lt);
    opacity: .85;
}

.ctaband__title {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 400;
    line-height: 1.15;
}

.ctaband__title em {
    color: var(--gold-lt);
    font-style: italic;
}

/* ============================================================
   CONTACTO
   ============================================================ */
.contacto {
    padding: 110px 0;
    background: var(--ivory);
}

.contacto__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.contacto__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contacto__info .heading-xl {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.contacto__info .heading-xl em {
    color: var(--wine);
    font-style: italic;
}

.contacto__info>p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.9;
}

.contacto__channels {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.channel {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: var(--radius);
    transition: var(--trans);
}

.channel:hover {
    border-color: var(--wine);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.channel__ico {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.channel strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--charcoal);
}

.channel span {
    font-size: 0.8rem;
    color: var(--muted);
}

/* Form */
.contacto__form {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--wine);
    padding: 44px 40px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.fgroup {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fgroup label {
    font-family: var(--ff-sans);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--charcoal);
}

.fgroup input,
.fgroup select,
.fgroup textarea {
    border: 1px solid #DDD8D2;
    border-radius: var(--radius);
    padding: 13px 16px;
    font-family: var(--ff-sans);
    font-size: 0.9rem;
    background: var(--ivory);
    color: var(--charcoal);
    outline: none;
    transition: var(--trans);
}

.fgroup input:focus,
.fgroup select:focus,
.fgroup textarea:focus {
    border-color: var(--wine);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(107, 39, 55, 0.1);
}

.fgroup textarea {
    resize: vertical;
    min-height: 108px;
}

.fgroup input::placeholder,
.fgroup textarea::placeholder {
    color: #BFB8B0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--forest);
    color: rgba(255, 255, 255, 0.65);
    padding: 72px 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white);
    object-fit: cover;
}

.footer__tagline {
    font-size: 0.85rem;
    line-height: 1.75;
    max-width: 240px;
    opacity: .6;
}

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

.footer__col h4 {
    font-family: var(--ff-sans);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-bottom: 16px;
}

.footer__col a,
.footer__col p {
    display: block;
    font-size: 0.82rem;
    margin-bottom: 8px;
    opacity: .55;
    transition: var(--trans);
}

.footer__col a:hover {
    opacity: 1;
    color: var(--white);
    padding-left: 3px;
}

.footer__bottom {
    text-align: center;
    padding: 18px 28px;
    font-size: 0.72rem;
    opacity: .3;
    letter-spacing: 0.5px;
}

.footer__bottom a {
    color: var(--gold-lt);
    opacity: 1;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.on {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .ev-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .intro__visual {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__cols {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }

    .nav__burger {
        display: flex;
    }

    .nav__mobile {
        display: flex;
    }

    .ribbon {
        display: none;
    }

    .hero__content {
        padding: 0 24px 80px;
        margin: 0;
        max-width: 100%;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .card--wide {
        flex-direction: column;
    }

    .card__icon--lg {
        font-size: 2.2rem;
        padding: 24px 24px 0;
    }

    .ev-grid {
        grid-template-columns: 1fr;
    }

    .pq-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contacto__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contacto__form {
        padding: 28px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer__cols {
        grid-template-columns: 1fr 1fr;
    }

    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .ctaband {
        padding: 100px 0;
    }

    .ctaband__content {
        padding: 0 24px;
    }

    .intro__stat-row {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .footer__cols {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 20px;
    }

    .intro__img-wrap {
        padding: 24px;
    }
}