/*
Theme Name: RELO Group
Theme URI: https://relogroup.com
Author: RELO Group
Description: RELO Group WordPress Theme
Version: 1.2.2
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: relo-group
*/

/* =========================================
   GLOBAL VARIABLES
   ========================================= */
:root {
    --color-primary:    #101440;
    --color-accent:     #0068ae;
    --color-pale:       #f4f6f9;
    --color-text:       #1a1a1a;
    --color-text-mid:   #5a6378;
    --color-white:      #ffffff;
    --color-black:      #000000;
    --color-border:     #e2e8f0;

    --font-base:        'Inter', sans-serif;

    --fw-body:          400;
    --fw-heading:       600;

    --max-width:        1300px;
    --pad-x:            24px;
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
    font-family: var(--font-base);
    font-weight: var(--fw-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-base);
    font-weight: var(--fw-heading);
    line-height: 1.2;
    color: var(--color-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

p { color: var(--color-text-mid); }

/* =========================================
   LAYOUT
   ========================================= */
.theme-wrap {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

.theme-section {
    padding: 90px 0;
}

.theme-section--sm {
    padding: 56px 0;
}

.site-wrapper { display: flex; flex-direction: column; min-height: 100vh; }
.site-main { flex: 1; }

.accent { color: var(--color-accent); }

.text-underline {
    background-image: linear-gradient(#0068ae, #0068ae);
    background-repeat: no-repeat;
    background-position: 0 90%;
    background-size: 0% 4px;
    transition: background-size 0.6s ease;
}

.text-underline.is-visible {
    background-size: 100% 10px;
}

/* =========================================
   TYPOGRAPHY HELPERS
   ========================================= */
.accent-text      { color: var(--color-accent); }
.accent-underline {
    color: var(--color-accent);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}
.accent-highlight {
    background: var(--color-accent);
    color: var(--color-white);
    padding: 0 5px 2px;
}

/* =========================================
   BUTTONS — no rounding
   ========================================= */
.theme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-base);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 32px;
    border: 2px solid transparent;
    cursor: pointer;
    border-radius: 0;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
    line-height: 1;
}

@media (max-width: 768px) {
    .theme-card__cta, .theme-btn {
        font-size: 11px;
        padding: 11px 20px;
        letter-spacing: 0.05em;
    }
}

/* White solid → accent on hover */
.theme-btn--white {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}
.theme-btn--white:hover {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

/* White outline → white solid on hover */
.theme-btn--white-outline {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}
.theme-btn--white-outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

/* Black solid → accent on hover */
.theme-btn--black {
    background: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
}
.theme-btn--black:hover {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

/* Primary solid → accent on hover */
.theme-btn--primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}
.theme-btn--primary:hover {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

/* Accent solid → primary on hover */
.theme-btn--accent {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}
.theme-btn--accent:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

/* Primary outline → primary solid on hover */
.theme-btn--outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.theme-btn--outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* =========================================
   HEADER — blank, sticky
   ========================================= */
#site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}

/* =========================================
   HERO (video / image)
   ========================================= */
.theme-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.theme-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.theme-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.theme-hero__bg--fallback {
    background: var(--color-primary);
}

.theme-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(16,20,64,0.75) 0%,
        rgba(16,20,64,0.25) 50%,
        rgba(16,20,64,0.05) 100%
    );
    z-index: 1;
}

.theme-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 60px;
}

.theme-hero__title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-white);
    max-width: 700px;
}

/* =========================================
   SPLASH PAGE
   ========================================= */
.splash-section {
    background: var(--color-white);
    padding: 72px 0 80px;
}

.splash-section__logo {
    margin-bottom: 10px;
}

.splash-section__logo img {
    width: 100%;
}

.splash-section__heading {
    color: var(--color-primary);
    max-width: 820px;
    margin-bottom: 18px;
}

.splash-section__body {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-text-mid);
    max-width: 560px;
    margin-bottom: 32px;
	margin-top: 20px;
}

/* =========================================
   DIVISION / SPLASH CARDS
   ========================================= */
.theme-cards__grid {
    display: flex;
    gap: 12px;
}

.theme-card {
    position: relative;
    flex: 1;
    min-width: 0;
    min-height: 460px;
    overflow: hidden;
    background: var(--color-primary) center/cover no-repeat;
    cursor: pointer;
    text-decoration: none;
    transition: flex 0.35s ease;
}

.theme-card:hover {
    flex: 2;
}

.theme-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(16,20,64,0.6), rgba(16,20,64,0.15));
    pointer-events: none;
    transition: background 0.35s ease;
    z-index: 1;
}

.theme-card:hover::before {
    background: linear-gradient(to top, rgba(16,20,64,0.92), rgba(16,20,64,0.35));
}

/* Accent overlay on hover */
.theme-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,104,174,0.15);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;
    pointer-events: none;
}

.theme-card:hover::after {
    opacity: 1;
}

.theme-card__label {
    position: absolute;
    left: 22px;
    bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-white);
    z-index: 2;
    transition: opacity 0.25s ease;
}

.theme-card:hover .theme-card__label {
    opacity: 0;
}

.theme-card__content {
    position: absolute;
    inset: 0;
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 3;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.theme-card:hover .theme-card__content {
    opacity: 1;
    transform: translateY(0);
}

.theme-card__content h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-white);
}

.theme-card__copy {
    margin: 0 0 18px;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.85);
    max-width: 26rem;
}

.theme-card__cta {
    align-self: flex-start;
    padding: 8px 18px;
    border: 1.5px solid rgba(255,255,255,0.8);
    background: transparent;
    color: var(--color-white);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.22s, color 0.22s, border-color 0.22s;
}

.theme-card__cta:hover {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

@media (max-width: 900px) {
    .theme-cards__grid {
        flex-wrap: wrap;
    }
    .theme-card,
    .theme-card:hover {
        flex: 0 0 calc(50% - 6px);
        min-height: 200px;
    }
    .theme-card__copy { display: none; }
}

@media (max-width: 540px) {
    .theme-card,
    .theme-card:hover {
        flex: 0 0 100%;
    }
}

/* =========================================
   LOGO MARQUEE
   ========================================= */
.theme-marquee {
    background: var(--color-pale);
    border-top: 1px solid var(--color-border);
    padding: 32px 0;
    overflow: hidden;
}

.theme-marquee__track {
    display: flex;
    align-items: center;
    gap: 64px;
    width: max-content;
    animation: marquee-scroll 48s linear infinite;
}

.theme-marquee__track:hover {
    animation-play-state: paused;
}

.theme-marquee__item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.theme-marquee__item:hover { opacity: 1; }

.theme-marquee__item img {
    height: 100%;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =========================================
   INTRO / TEXT SECTION
   ========================================= */
.theme-intro__inner {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.theme-intro__heading {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--color-primary);
    margin-bottom: 20px;
}

.theme-intro__body {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--color-text-mid);
}

/* =========================================
   BANNER / CTA STRIP
   ========================================= */
.theme-banner {
    background: var(--color-primary);
}

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

.theme-banner__left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.theme-banner__heading {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--color-white);
    line-height: 1.25;
}

.theme-banner__body {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.7);
}

.theme-banner__right { overflow: hidden; }

.theme-banner__image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* =========================================
   POSTS / PROJECT GRID
   ========================================= */
.theme-grid-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.theme-grid-heading {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--color-primary);
}

.theme-tabs {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.theme-tab {
    font-family: var(--font-base);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 9px 20px;
    background: transparent;
    border: 1.5px solid var(--color-border);
    color: #666;
    cursor: pointer;
    border-radius: 0;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
}

.theme-tab:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.theme-tab.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

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

.theme-post-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: transform 0.22s, box-shadow 0.22s;
}

.theme-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(16,20,64,0.1);
}

.theme-post-card__thumb {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
}

.theme-post-card__thumb--placeholder {
    background: var(--color-pale);
}

.theme-post-card__body {
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.theme-post-card__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.theme-post-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.35;
}

.theme-grid-footer {
    text-align: center;
    margin-top: 48px;
}

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.theme-page-hero {
    position: relative;
    height: 220px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.theme-page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.theme-page-hero__bg--fallback {
    background: var(--color-primary);
}

.theme-page-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(16,20,64,0.72);
    z-index: 1;
}

.theme-page-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 48px;
}

.theme-page-hero__title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--color-white);
    line-height: 1.2;
    max-width: 900px;
}

/* =========================================
   CONTACT STRIP (floating card above footer)
   ========================================= */
.theme-contact-strip {
    background: linear-gradient(to bottom, var(--color-pale) 50%, var(--color-primary) 50%) !important;
    padding-bottom: 0;
}


.theme-contact-card {
    background: var(--color-white);
    box-shadow: 0 20px 80px rgba(16,20,64,0.1);
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    position: relative;
}

.theme-contact-card__left {
    padding: 52px 48px;
    border-right: 1px solid var(--color-border);
}

.theme-contact-card__title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--color-primary);
    margin-bottom: 14px;
}

.theme-contact-card__body {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-mid);
    margin-bottom: 36px;
}

.theme-contact-card__details {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.theme-contact-card__detail {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-primary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.18s;
}

.theme-contact-card__detail:hover { color: var(--color-accent); }

.theme-contact-card__detail svg {
    flex-shrink: 0;
    color: var(--color-accent);
    opacity: 0.7;
}

.theme-contact-card__right {
    padding: 52px 48px;
}

/* Form */
.theme-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.theme-form__row {
    display: flex;
    gap: 16px;
}

.theme-form__row .theme-form__field { flex: 1; }

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

.theme-form__field label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.theme-form__field input,
.theme-form__field select,
.theme-form__field textarea {
    font-family: var(--font-base);
    font-size: 0.9375rem;
    color: var(--color-text);
    background: var(--color-pale);
    border: 1.5px solid var(--color-border);
    border-radius: 0;
    padding: 12px 14px;
    width: 100%;
    outline: none;
    transition: border-color 0.18s, background 0.18s;
    appearance: none;
    -webkit-appearance: none;
}

.theme-form__field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23101440' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.theme-form__field input:focus,
.theme-form__field select:focus,
.theme-form__field textarea:focus {
    border-color: var(--color-accent);
    background: var(--color-white);
}

.theme-form__field textarea {
    resize: vertical;
    min-height: 110px;
}

.theme-form__submit {
    font-family: var(--font-base);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--color-primary);
    color: var(--color-white);
    border: 2px solid var(--color-primary);
    border-radius: 0;
    padding: 14px 32px;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.theme-form__submit:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.theme-form-success {
    background: #f0f9ff;
    border: 1.5px solid var(--color-accent);
    color: var(--color-primary);
    padding: 20px 24px;
    font-weight: 600;
    font-size: 0.9375rem;
}

@media (max-width: 860px) {
    .theme-contact-card { grid-template-columns: 1fr; }
    .theme-contact-card__left {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        padding: 36px 28px;
    }
    .theme-contact-card__right { padding: 36px 28px; }
    .theme-form__row { flex-direction: column; }
}

/* =========================================
   FOOTER
   ========================================= */
#site-footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0;
    /* override sticky header styles */
    position: static;
    border-bottom: none;
}

.theme-footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

.theme-footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 60px;
    padding: 128px 0 52px; /* 64px card offset + 64px breathing room */
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.theme-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.theme-footer-logo {
    max-width: 160px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.theme-footer-logo-link { display: inline-block; width: fit-content; }

.theme-footer-name {
    color: var(--color-white);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.theme-footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.55);
}

.theme-footer-heading {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 18px;
}

.theme-footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.theme-footer-links a {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.18s;
}

.theme-footer-links a:hover { color: var(--color-white); }

.theme-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
}

.theme-footer-copy {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.35);
    margin: 0;
}

.theme-footer-socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.theme-footer-socials a {
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    transition: color 0.18s;
}

.theme-footer-socials a:hover { color: var(--color-white); }

/* =========================================
   CONTENT PAGES
   ========================================= */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 { margin: 1.5em 0 0.5em; }

.entry-content p { margin-bottom: 1.25em; }
.entry-content a { text-decoration: underline; }
.entry-content ul,
.entry-content ol { list-style: disc; padding-left: 1.5em; margin-bottom: 1.25em; }

/* =========================================
   WP REQUIRED
   ========================================= */
.alignleft  { float: left; margin-right: 1.5em; margin-bottom: 1em; }
.alignright { float: right; margin-left: 1.5em; margin-bottom: 1em; }
.aligncenter { display: block; margin: 0 auto 1em; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.875rem; color: #666; margin-top: 0.5em; }
.screen-reader-text { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 960px) {
    .theme-banner__inner { grid-template-columns: 1fr; gap: 40px; }
    .theme-banner__right { display: none; }
    .theme-grid { grid-template-columns: repeat(2, 1fr); }
    .theme-grid-header { flex-direction: column; align-items: flex-start; }
    .theme-footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding-top: 100px;
    }
    .theme-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
    .theme-section { padding: 60px 0; }
    .theme-grid { grid-template-columns: 1fr; }
    .theme-tabs { flex-wrap: wrap; }
    .theme-footer-top { grid-template-columns: 1fr; }
}

/* =========================================
   REVIEWS STRIP
   ========================================= */
.theme-reviews-strip {
    background: var(--color-pale);
    padding: 56px 0;
    border-top: 1px solid var(--color-border);
}

/* =========================================
   MOBILE FIXES
   ========================================= */
@media (max-width: 768px) {
    .theme-contact-card { grid-template-columns: 1fr; }
    .theme-contact-card__left {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        padding: 32px 24px;
    }
    .theme-contact-card__right { padding: 32px 24px; }
    .theme-form__row { flex-direction: column; }
    .theme-footer-top {
        grid-template-columns: 1fr;
        padding-top: 80px;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .theme-section { padding: 48px 0; }
    .theme-section--sm { padding: 36px 0; }
    .splash-section { padding: 40px 0 48px; }
    .theme-banner__inner { grid-template-columns: 1fr; gap: 24px; }
    .theme-banner__right { display: none; }
    .theme-grid { grid-template-columns: 1fr; }
    .theme-cards__grid { gap: 8px; }
    .theme-card,
    .theme-card:hover { flex: 0 0 100%; min-height: 220px; }
	.theme-reviews-strip {padding-bottom: 1px}
    .theme-contact-card__left { padding: 24px 20px; }
    .theme-contact-card__right { padding: 24px 20px; }
    .theme-footer-top { padding-top: 60px; }
    .theme-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
