/* =====================================================================
   Slumber Parties — global stylesheet
   Mobile-first. Single file. No build step.
   ===================================================================== */

/* ---------- Design tokens (pulled from Figma variables) ---------- */
:root {
    /* Colours */
    --c-white:        #ffffff;
    --c-blue:         #b5c9d5;
    --c-blue-2:       #d6ecfa;
    --c-gold:         #b07e38;
    --c-brown:        #77574c;
    --c-brown-pale:   #a1908d;
    --c-gray-light:   #b0afaf;
    --c-gray-dark:    #6f6f6f;
    --c-stripe:       #f3f1f0;
    --c-wow-bg:       #eef4f7;

    /* Typography */
    --font-fancy:   'Bohemian Script', 'Snell Roundhand', cursive;
    --font-display: 'Amatic SC', 'Comic Sans MS', cursive;
    --font-body:    'Inter', system-ui, -apple-system, sans-serif;

    /* Fluid type — scales between mobile and desktop without media queries */
    --fs-fancy:    clamp(64px, 12vw, 200px);
    --fs-fancy-sm: clamp(40px, 5vw,  60px);
    --fs-hero:     clamp(40px, 6vw,  75px);
    --fs-h1:       clamp(36px, 5vw,  60px);
    --fs-h2:       clamp(32px, 4vw,  50px);
    --fs-h3:       clamp(26px, 3vw,  38px);
    --fs-h4:       clamp(24px, 2.4vw, 35px);
    --fs-lg:       clamp(18px, 1.6vw, 24px);
    --fs-body:     16px;

    /* Layout */
    --max-w:       1920px;
    --content-w:   1600px;
    --gutter:      clamp(20px, 4vw, 162px);

    /* Effects */
    --shadow-card:    0 4px 4px rgba(0, 0, 0, 0.10);
    --shadow-wow:     0 4px 4px rgba(0, 0, 0, 0.25);
    --shadow-text:    4px 4px 4px rgba(0, 0, 0, 0.25);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: var(--fs-body);
    font-weight: 400;
    line-height: 1.75;
    color: var(--c-gray-dark);
    background: var(--c-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
    outline: 2px solid var(--c-gold);
    outline-offset: 3px;
}

/* ---------- Typography helpers ---------- */
.font-fancy   { font-family: var(--font-fancy);   line-height: 1; }
.font-display { font-family: var(--font-display); line-height: 1.05; text-transform: uppercase; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.05;
}
h2 {
    font-size: 50px;
    font-weight: 500;
    color: var(--c-gray-dark);
    letter-spacing: 2.5px;
    text-align: center;
}
p { margin: 0 0 1em; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    font-family: var(--font-display);
    font-size: var(--fs-h4);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0.5px;
    border: 0;
    cursor: pointer;
    transition: transform .15s ease, filter .15s ease;
    white-space: nowrap;
}
.btn:hover, .btn:focus-visible { transform: translateY(-1px); filter: brightness(0.95); }

.btn--white      { background: var(--c-white);      color: var(--c-blue); }
.btn--gray       { background: var(--c-gray-light); color: var(--c-white); }
.btn--brown      { background: var(--c-brown);      color: var(--c-white); }
.btn--brown-pale { background: var(--c-brown-pale); color: var(--c-white); }
.btn--white-gold { background: var(--c-white);      color: var(--c-gold); }

/* =====================================================================
   Header
   ===================================================================== */
.site-header {
    position: relative;
    background: var(--c-white);
    z-index: 20;
}
.header-top {
    height: 40px;
    background: var(--c-stripe);
    background-image: url('../img/deco/top-cross-1.webp');
    background-repeat: repeat-x;
    background-position: top left;
    background-size: auto 40px;
}
.header-edge {
    position: absolute;
    left: 0; right: 0;
    height: 23px;
    background-repeat: repeat-x;
    background-size: 435px 23px;
    pointer-events: none;
    z-index: 30;
}
.header-edge--top    { top: 37px;  background-image: url('../img/deco/edge-arrows-1.webp'); }
.header-edge--bottom { bottom: -23px; background-image: url('../img/deco/edge-arrows-2.webp'); }

.header-inner {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gutter);
    height: 125px;
}

.logo img { width: clamp(200px, 18vw, 310px); height: auto; }

/* Primary nav */
.primary-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}
.nav-list {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    gap: clamp(20px, 2.5vw, 50px);
}
.nav-list a {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(22px, 1.8vw, 40px);
    color: var(--c-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
    transition: color .15s ease;
}
.nav-list a:hover { color: var(--c-brown); }

/* Hamburger (mobile only) */
.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 8px;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    margin: 5px 0;
    background: var(--c-brown);
    transition: transform .2s, opacity .2s;
}

.header-cta {
    font-size: var(--fs-h4);
    margin-left: clamp(12px, 2vw, 36px);
}

/* =====================================================================
   Hero
   ===================================================================== */
.hero {
    position: relative;
    z-index: 1;
    min-height: calc(100svh - 165px);
    background: url('../img/home/hero-bg.webp') center/cover no-repeat;
    color: var(--c-white);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-inner {
    position: relative;
    z-index: 2;
    width: min(100% - 40px, max(60vw, 945px));
    padding: 60px 0;
}
.hero h1 {
    font-size: var(--fs-hero);
    color: var(--c-white);
    text-shadow: var(--shadow-text);
    margin-bottom: 35px;
}
.hero-sub {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: var(--fs-lg);
    text-transform: none;
    line-height: 1.3;
    text-shadow: var(--shadow-text);
    max-width: 945px;
    margin: 0 auto 35px;
    color: var(--c-white);
    letter-spacing: 0.24px;
}
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* =====================================================================
   Edge-striped white section helper
   Each white panel has a 9px decorative strip at top/bottom.
   ===================================================================== */
.edge-section {
    position: relative;
    background: var(--c-white);
    z-index: 2;
}
.edge-section::before,
.edge-section::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 9px;
    background-repeat: repeat-x;
    background-size: 870px 9px;
    pointer-events: none;
    z-index: 3;
}
.edge-section::before { top: -9px;    background-image: url('../img/deco/edge-stripe-top.webp'); }
.edge-section::after  { bottom: -9px; background-image: url('../img/deco/edge-stripe-bottom.webp'); }
.edge-section--top-only::after { display: none; }

/* =====================================================================
   Opening — "Dreamy Slumber Party Setups"
   ===================================================================== */
.opening {
    padding: clamp(60px, 8vw, 130px) var(--gutter);
}
.opening-inner {
    display: grid;
    gap: clamp(44px, 6vw, 110px);
    align-items: center;
    max-width: var(--content-w);
    margin: 0 auto;
    grid-template-columns: 1fr;
}
.opening-copy { text-align: center; }
.opening-copy .fancy {
    font-family: var(--font-fancy);
    font-size: var(--fs-fancy);
    line-height: 0.6;
    color: var(--c-gold);
    margin: 0 0 40px;
    text-transform: none;
}
.opening-copy h2 {
    margin: 0 0 40px;
}
.opening-copy p {
    font-size: var(--fs-lg);
    color: var(--c-gray-dark);
    letter-spacing: 0.24px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.divider-1 {
    width: 251px; height: 27px;
    margin: 30px auto 0;
    display: block;
}

.opening-photos {
    position: relative;
    min-height: clamp(420px, 42vw, 560px);
    width: min(100%, 720px);
    margin: 0 auto;
}
.opening-photo {
    position: absolute;
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 10px solid var(--c-white);
    box-shadow: var(--shadow-card);
    background: var(--c-gray-light);
}
.opening-photo--back {
    top: 0;
    right: 0;
    z-index: 1;
}
.opening-photo--front {
    left: 0;
    bottom: 0;
    z-index: 2;
}

/* =====================================================================
   Sleepover Upgrade — blue band
   ===================================================================== */
.upgrade {
    position: relative;
    background: var(--c-blue-2);
    padding: clamp(60px, 8vw, 90px) var(--gutter);
    text-align: center;
    overflow: hidden;
}
.upgrade-inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}
.upgrade h2 {
    font-size: var(--fs-hero);
    margin-bottom: 20px;
}
.upgrade .divider-2 {
    width: clamp(220px, 30vw, 372px);
    height: auto;
    margin: 0 auto 30px;
    display: block;
}
.upgrade h3 {
    font-size: var(--fs-h2);
    color: var(--c-gray-dark);
    margin-bottom: 30px;
}

.upgrade-deco {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}
.upgrade-deco--feathers {
    top: 0; right: 0;
    width: clamp(60px, 10vw, 120px); height: 100%;
    object-fit: contain;
    object-position: top right;
    display: none;
}
.upgrade-deco--leaf {
    bottom: 0; left: 0;
    width: clamp(160px, 25vw, 360px);
    height: auto;
    display: none;
}
.upgrade-deco--flourish {
    bottom: 30%;
    right: 18%;
    width: clamp(40px, 4vw, 65px);
    height: auto;
    display: none;
}

/* =====================================================================
   Themes
   ===================================================================== */
.themes {
    padding: clamp(70px, 8vw, 103px) var(--gutter);
}
.themes-inner {
    max-width: var(--content-w);
    margin: 0 auto;
    text-align: center;
}
.themes-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 4vw, 80px);
    margin: 0 0 30px;
}
.themes-title h2 {
    font-size: var(--fs-h1);
    color: var(--c-gray-dark);
    margin: 0;
}
.themes-title img { width: clamp(32px, 3vw, 53px); height: auto; }

.themes-intro {
    font-size: var(--fs-lg);
    color: var(--c-gray-dark);
    max-width: 988px;
    margin: 0 auto 60px;
    letter-spacing: 0.24px;
}

.theme-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
}
.theme-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.theme-card .photo {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 350 / 300;
    object-fit: cover;
    border: 10px solid var(--c-white);
    box-shadow: var(--shadow-card);
    background: var(--c-gray-light);
}
.theme-card h3 {
    font-family: var(--font-fancy);
    font-weight: 400;
    text-transform: none;
    font-size: var(--fs-fancy-sm);
    color: var(--c-brown);
    line-height: 1;
    margin: 0;
}
.theme-card .divider-heart {
    width: 150px;
    height: 18px;
}
.theme-card p {
    font-size: var(--fs-body);
    color: var(--c-gray-dark);
    max-width: 330px;
    margin: 0;
}

.themes-cta {
    font-size: var(--fs-lg);
    color: var(--c-gray-dark);
    max-width: 970px;
    margin: 0 auto 30px;
}

/* =====================================================================
   Wow Factor — dark band, 3+2 grid
   ===================================================================== */
.wow {
    background: var(--c-wow-bg);
    color: var(--c-gray-dark);
    padding: clamp(60px, 8vw, 100px) var(--gutter);
    text-align: center;
    position: relative;
}
.wow-inner { max-width: var(--content-w); margin: 0 auto; }

.wow-title {
    margin: 0 auto 60px;
    text-align: center;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.wow-title .fancy {
    font-family: var(--font-fancy);
    font-size: var(--fs-fancy);
    line-height: 0.6;
    color: var(--c-gold);
    text-transform: none;
    display: inline-block;
    width: auto;
    margin: 0 auto 30px;
    text-align: center;
}
.wow-title h2 {
    margin: 0 0 20px;
}
.wow-title p {
    font-size: var(--fs-lg);
    color: var(--c-gray-dark);
    max-width: 1100px;
    margin: 0 auto 20px;
    letter-spacing: 0.24px;
}
.wow-title .divider-1 { margin-left: auto; margin-right: auto; }

.wow-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.wow-block {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-wow);
    color: var(--c-gray-dark);
    min-height: 360px;
    isolation: isolate;
    padding: 20px 60px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 20px;
}
.wow-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -1;
}
.wow-block--1::before { background-image: url('../img/home/wow-block-1.webp'); }
.wow-block--2::before { background-image: url('../img/home/wow-block-2.webp'); }
.wow-block--3::before { background-image: url('../img/home/wow-block-3.webp'); }
.wow-block--4::before { background-image: url('../img/home/wow-block-4.webp'); }
.wow-block--5::before { background-image: url('../img/home/wow-block-5.webp'); }
.wow-block--1::before { background-position: bottom center; }
.wow-block--2::before { background-position: top center; }
.wow-block--3::before { background-position: bottom center; }
.wow-block--4::before { background-position: bottom left; }
.wow-block--5::before { background-position: top right; }

.wow-block .icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}
.wow-block h3 {
    font-size: var(--fs-h3);
    color: var(--c-gray-dark);
    margin: 0;
    max-width: 400px;
}
.wow-block p {
    font-size: var(--fs-body);
    color: var(--c-gray-dark);
    max-width: 350px;
    margin: 0;
}
.wow-block .divider-3 {
    width: 296px; height: 14px;
    margin-top: auto;
}

/* =====================================================================
   What We Offer
   ===================================================================== */
.offer {
    padding: clamp(70px, 8vw, 120px) var(--gutter);
}
.offer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
    max-width: var(--content-w);
    margin: 0 auto;
}
.offer-copy {
    text-align: center;
}
.offer-copy .fancy {
    font-family: var(--font-fancy);
    font-size: var(--fs-fancy);
    line-height: 0.6;
    color: var(--c-gold);
    text-transform: none;
    margin: 0 0 40px;
}
.offer-copy h2 {
    margin-bottom: 20px;
}
.offer-copy p {
    color: var(--c-gray-dark);
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.offer-copy .divider-2 {
    width: 200px;
    height: auto;
    margin: 0 auto 30px;
}
.offer-lists {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    margin: 34px auto;
    max-width: 660px;
    text-align: left;
}
.offer-lists h3 {
    color: var(--c-brown);
    font-size: var(--fs-h4);
    margin-bottom: 10px;
    text-align: left;
}
.offer-lists ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
    color: var(--c-gray-dark);
}
.offer-lists li {
    position: relative;
    padding-left: 22px;
}
.offer-lists li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 11px;
    height: 11px;
    background: url('../img/deco/list-chevrons.svg') center/contain no-repeat;
    transform: translateY(-50%);
}
.offer-photo {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

/* =====================================================================
   Blog Preview
   ===================================================================== */
.blog-preview {
    padding: clamp(70px, 8vw, 120px) var(--gutter);
    background-color: #f0efed;
    background-image: url('../img/deco/pattern-arrows-2-white.webp');
    background-repeat: repeat;
    background-size: 1000px 1000px;
}
.blog-preview-inner {
    max-width: var(--content-w);
    margin: 0 auto;
}
.section-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(18px, 3vw, 52px);
    margin-bottom: 52px;
    text-align: center;
}
.section-title h2 {
    margin: 0;
}
.section-title img {
    width: clamp(70px, 10vw, 151px);
}
.blog-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
.blog-card {
    background: var(--c-white);
    box-shadow: var(--shadow-card);
    text-align: center;
    padding-bottom: 34px;
    display: flex;
    flex-direction: column;
}
.blog-card img {
    width: 100%;
    aspect-ratio: 420 / 260;
    object-fit: cover;
}
.blog-card h3 {
    color: var(--c-gray-dark);
    font-size: var(--fs-h4);
    margin: 28px 24px 14px;
}
.blog-card p {
    color: var(--c-gray-dark);
    max-width: 360px;
    margin: 0 auto 18px;
    padding: 0 22px;
}
.blog-card a {
    font-family: var(--font-display);
    color: var(--c-blue);
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.blog-card time {
    display: block;
    border-top: 1px solid #efefef;
    color: var(--c-gray-light);
    font-size: 13px;
    margin: auto 22px 0;
    padding-top: 16px;
}

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer {
    position: relative;
    background-color: var(--c-blue-2);
    background-image: url('../img/deco/wood-tile-transparent.png');
    background-repeat: repeat;
    background-size: auto;
    color: var(--c-gray-dark);
    padding: 70px var(--gutter);
    text-align: left;
    overflow: visible;
}
.footer-edge {
    position: absolute;
    left: 0; right: 0;
    height: 23px;
    background-repeat: repeat-x;
    background-size: 435px 23px;
    pointer-events: none;
    z-index: 4;
}
.footer-edge--top    { top: -23px;    background-image: url('../img/deco/edge-arrows-2.webp'); }
.footer-edge--bottom { bottom: -23px; background-image: url('../img/deco/edge-arrows-1.webp'); }
.footer-inner {
    position: relative;
    z-index: 1;
    max-width: var(--content-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
}
.footer-column h2 {
    font-family: var(--font-display);
    font-size: 45px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: left;
    color: var(--c-gray-dark);
    margin: 0 0 8px;
}
.footer-column h2::after {
    content: '';
    display: block;
    width: 220px;
    height: 16px;
    margin-top: 8px;
    background: url('../img/deco/underline-drop-light.webp') left center / contain no-repeat;
}
.footer-column p,
.footer-column a,
.footer-column label {
    color: var(--c-gray-dark);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
}
.footer-column p { margin: 0; max-width: 310px; }
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-nav a:hover,
.footer-contact a:hover { color: var(--c-brown); }
.footer-newsletter form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.footer-newsletter label span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}
.footer-newsletter input {
    width: 100%;
    border: 0;
    background: var(--c-white);
    height: 40px;
    padding: 0 12px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    color: var(--c-gray-dark);
}
.footer-newsletter input::placeholder { color: var(--c-gray-light); }
.footer-newsletter .btn {
    align-self: flex-start;
    padding: 10px 28px;
    font-size: 22px;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-contact > a {
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-socials {
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.footer-socials img {
    width: 32px;
    height: 32px;
}

/* =====================================================================
   Mobile nav (under 1024px) — hamburger drawer
   ===================================================================== */
@media (max-width: 1023px) {
    .nav-toggle { display: block; order: 3; }
    .header-cta {
        font-size: 22px;
        padding: 10px 18px;
        margin-left: 0;
    }

    .nav-list {
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        flex-direction: column;
        background: var(--c-white);
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height .25s ease;
        box-shadow: var(--shadow-card);
        z-index: 50;
    }
    .nav-list.is-open { max-height: 80vh; }
    .nav-list li { width: 100%; text-align: center; }
    .nav-list a { display: block; padding: 14px 20px; font-size: 26px; }
}

/* =====================================================================
   Tablet ≥ 768px
   ===================================================================== */
@media (min-width: 768px) {
    .opening-inner {
        grid-template-columns: 1fr 1fr;
        text-align: center;
    }
    .opening-copy { text-align: center; }

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

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

    .offer-inner { grid-template-columns: 1fr 1fr; }
    .offer-lists { grid-template-columns: 1fr 1fr; }
    .blog-card-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-inner { grid-template-columns: 1.2fr 0.8fr 1fr 1fr; }

    .upgrade-deco--feathers,
    .upgrade-deco--leaf,
    .upgrade-deco--flourish { display: block; }
}

/* =====================================================================
   Desktop ≥ 1200px — match Figma layout
   ===================================================================== */
@media (min-width: 1200px) {
    .theme-grid { grid-template-columns: repeat(4, 1fr); gap: 60px; }

    /* Wow factor: 3 blocks on top row, 2 wider blocks below */
    .wow-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: auto auto;
        gap: 40px;
    }
    .wow-block--1, .wow-block--2, .wow-block--3 {
        grid-column: span 2;
        min-height: 380px;
    }
    .wow-block--4, .wow-block--5 {
        grid-column: span 3;
        min-height: 285px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-content: center;
        justify-items: center;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .wow-block--4 > * { grid-column: 2; }
    .wow-block--5 > * { grid-column: 1; }
    .wow-block--4 .icon,
    .wow-block--5 .icon {
        margin-bottom: 0;
    }
}

/* =====================================================================
   Reduced motion
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
