@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* =========================================
   1. RESET & VARIABLES
========================================= */

:root {
    --primary: #426b4b;
    --primary-dark: #294b34;
    --primary-light: #eaf1e8;

    --accent: #c79b58;
    --accent-light: #f4e9d6;

    --text: #28352c;
    --text-muted: #68756b;

    --background: #faf9f5;
    --surface: #ffffff;
    --border: #e5e8e0;

    --font-body: 'DM Sans', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;

    --container: 1200px;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;

    --shadow-sm: 0 4px 16px rgba(30, 50, 35, 0.05);
    --shadow-md: 0 12px 36px rgba(30, 50, 35, 0.09);

    --transition: 0.3s ease;
}

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

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

body {
    min-width: 320px;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--text);
}

h2 {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    letter-spacing: -0.035em;
}

h4 {
    font-size: 1.5rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition:
        color var(--transition),
        background-color var(--transition),
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

a:hover {
    color: var(--primary);
}

a:focus-visible,
input:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

ul {
    list-style: none;
}

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

input,
button {
    font: inherit;
}

input {
    min-width: 0;
}

input[type="submit"] {
    cursor: pointer;
}

::selection {
    color: #fff;
    background: var(--primary);
}

/* =========================================
   2. GLOBAL LAYOUT
========================================= */

#Wrapper {
    width: 100%;
    min-height: 100vh;
    overflow: clip;
}

.container,
.content_wrapper,
.section_wrapper {
    width: min(var(--container), calc(100% - 48px));
    margin-inline: auto;
}

.column,
.wrap,
.mcb-wrap-inner,
.column_attr {
    min-width: 0;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

#Content,
.sections_group,
.entry-content {
    width: 100%;
}

.section {
    position: relative;
    width: 100%;
    padding-block: clamp(64px, 8vw, 112px);
}

.section_wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(24px, 4vw, 64px);
}

.section_wrapper > .wrap {
    flex: 1 1 0;
}

.section_wrapper > .one-second {
    flex-basis: calc(50% - 32px);
}

.section_wrapper > .one-third {
    flex-basis: calc(33.333% - 43px);
}

.section_wrapper > .two-third {
    flex-basis: calc(66.667% - 43px);
}

.mcb-wrap-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.column.one {
    width: 100%;
}

.column.one-third {
    width: 33.333%;
}

/* =========================================
   3. HEADER
========================================= */

#Header_wrapper {
    position: relative;
    background: var(--surface);
}

#Header {
    position: relative;
    width: 100%;
}

.header_placeholder {
    display: none;
}

#Top_bar {
    position: relative;
    z-index: 100;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

#Top_bar > .container > .column {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 96px;
}

.top_bar_left {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    gap: clamp(24px, 3vw, 48px);
    min-width: 0;
}

.logo {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
}

#logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    min-height: 64px;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.04em;
}

#logo::before {
    content: attr(title);
}

#logo:hover {
    color: var(--accent);
}

/* =========================================
   4. NAVIGATION
========================================= */

.menu_wrapper {
    flex: 1 1 auto;
    min-width: 0;
}

#menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.menu-main {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(8px, 1.4vw, 22px);
}

.menu-main > .menu-item {
    position: relative;
}

.menu-main > .menu-item > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 4px;
    font-size: 0.83rem;
    font-weight: 600;
    letter-spacing: 0.015em;
    white-space: nowrap;
    color: var(--text);
}

.menu-main > .menu-item > a:hover,
.menu-main > .current-menu-item > a,
.menu-main > .current_page_item > a {
    color: var(--primary);
}

.menu-main > .current-menu-item > a::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 4px;
    width: calc(100% - 8px);
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.menu-item-has-children {
    position: relative;
}

.menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 4px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 200;
    width: max-content;
    min-width: 210px;
    max-width: min(320px, 90vw);
    padding: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition);
}

.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-sm);
}

.sub-menu li a:hover,
.sub-menu .current-lang > a {
    color: var(--primary);
    background: var(--primary-light);
}

.menu_right > .menu-item:last-child > .sub-menu {
    right: 0;
    left: auto;
}

.lang-item img,
.pll-parent-menu-item img {
    display: inline-block;
    width: 18px;
    height: auto;
    object-fit: contain;
    vertical-align: middle;
}

.auto-style-538507 {
    display: inline-block;
    vertical-align: middle;
}

.secondary_menu_wrapper {
    display: none;
}

.responsive-menu-toggle {
    display: none;
}

/* =========================================
   5. HEADER ACTIONS
========================================= */

.top_bar_right {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
}

.top_bar_right_wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

#header_cart,
#slide-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 40px;
    min-height: 40px;
    color: var(--primary-dark);
}

#header_cart span,
#slide-cart span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    background: var(--accent);
    border-radius: 50px;
}

.action_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 22px;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    background: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 50px;
    white-space: nowrap;
}

.action_button:hover {
    color: #fff;
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.banner_wrapper,
.search_wrapper {
    display: none;
}

/* =========================================
   6. HERO / SLIDER
========================================= */

#mfn-rev-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--primary-dark);
}

.rev_slider_wrapper,
.rev_slider {
    position: relative;
    width: 100%;
    min-height: clamp(440px, 58vw, 660px);
}

.rev_slider {
    display: grid;
    place-items: center;
    isolation: isolate;
    overflow: hidden;
}

.rev_slider > ul {
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.rev_slider > ul > li {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(
            circle at 78% 35%,
            rgba(199, 155, 88, 0.36),
            transparent 42%
        ),
        linear-gradient(
            120deg,
            #203d2b 0%,
            #426b4b 55%,
            #7a8759 100%
        );
}

.rev_slider > ul > li:not(:first-child) {
    display: none;
}

.rev_slider > ul > li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tp-static-layers {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: min(900px, calc(100% - 40px));
    padding: 80px 20px;
    text-align: center;
}

.tp-caption {
    position: relative;
    max-width: 100%;
    color: #fff;
    white-space: normal;
}

#slider-4-layer-5 {
    font-family: var(--font-body);
    font-size: clamp(0.7rem, 1.3vw, 0.9rem);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent-light);
}

#slider-4-layer-3 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.035em;
    text-wrap: balance;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.tp-bannertimer {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--accent);
}

/* =========================================
   7. CONTENT SECTIONS
========================================= */

.entry-content > .section:nth-child(even) {
    background: var(--surface);
}

.entry-content > .section:nth-child(odd) {
    background: var(--background);
}

.entry-content .column_attr {
    max-width: 580px;
}

.entry-content .column_attr h2 {
    margin-bottom: 24px;
}

.entry-content .column_attr h6 {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.4vw, 1.05rem);
    font-weight: 400;
    line-height: 1.9;
    color: var(--text-muted);
}

.entry-content .column_attr h6.auto-style-46932c {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3.3rem);
    font-weight: 600;
    line-height: 1.25;
    color: var(--text);
}

hr.no_line {
    height: 0;
    border: 0;
}

hr.auto-style-7c221d {
    width: 64px;
    height: 3px;
    margin: 24px 0;
    background: var(--accent);
    border: 0;
    border-radius: 10px;
}

hr.auto-style-13152c {
    height: 24px;
}

hr.auto-style-562cdd {
    height: 12px;
}

.column_image {
    width: 100%;
}

.image_frame {
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.image_wrapper {
    position: relative;
    width: 100%;
    min-height: 320px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(199, 155, 88, 0.35),
            transparent 45%
        ),
        linear-gradient(
            135deg,
            #e9eddf 0%,
            #d5dfcc 55%,
            #a8bda0 100%
        );
    border-radius: var(--radius-lg);
}

.image_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image_frame:hover img {
    transform: scale(1.04);
}

.scale-with-grid img {
    max-width: 100%;
    height: auto;
}

.aligncenter {
    margin-inline: auto;
}

.alignright {
    margin-left: auto;
}

/* =========================================
   8. BUTTONS
========================================= */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: fit-content;
    min-height: 48px;
    padding: 13px 26px;

    font-family: var(--font-body);
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.4;

    color: #fff;
    background: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 50px;

    transition:
        background-color var(--transition),
        color var(--transition),
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.button:hover {
    color: #fff;
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.button_label {
    display: inline-block;
}

.button_stroke_custom {
    color: var(--primary);
    background: transparent;
    border-color: var(--primary);
}

.button_stroke_custom:hover {
    color: #fff;
    background: var(--primary);
}

.column_button {
    margin-top: 8px;
}

/* =========================================
   9. SPECIFIC CONTENT SECTIONS
========================================= */

/* Walnut section */

.entry-content > .section:first-child {
    padding-top: clamp(80px, 10vw, 140px);
    padding-bottom: clamp(80px, 10vw, 140px);
}

.entry-content > .section:first-child .image_wrapper {
    min-height: clamp(300px, 38vw, 500px);
    background:
        radial-gradient(
            circle at 35% 40%,
            rgba(199, 155, 88, 0.4),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #e4d7b9,
            #a4ae85
        );
}

/* Visual gallery */

.entry-content > .section.full-width {
    padding-block: 40px;
    background: var(--surface);
}

.entry-content > .section.full-width > .section_wrapper {
    width: min(1400px, calc(100% - 48px));
    align-items: stretch;
    gap: 24px;
}

.entry-content > .section.full-width .mcb-wrap-inner,
.entry-content > .section.full-width .column_image,
.entry-content > .section.full-width .animate,
.entry-content > .section.full-width .image_frame {
    height: 100%;
}

.entry-content > .section.full-width .image_wrapper {
    height: 100%;
    min-height: 360px;
}

.entry-content > .section.full-width .one-third .image_wrapper {
    background: linear-gradient(145deg, #d8c6a3, #9eae88);
}

.entry-content > .section.full-width .two-third .image_wrapper {
    background: linear-gradient(145deg, #afc19a, #55765a);
}

/* Raisin section */

.entry-content > .section.bg-cover {
    background:
        radial-gradient(
            circle at 12% 50%,
            rgba(199, 155, 88, 0.15),
            transparent 45%
        ),
        linear-gradient(
            120deg,
            #e7ebdf,
            #f5f3e9
        );
}

.entry-content > .section.bg-cover .placeholder {
    min-height: 380px;
}

.entry-content > .section.bg-cover .column_attr {
    padding: clamp(24px, 4vw, 56px);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

/* Fig section */

.entry-content > .section.auto-style-35eaad {
    background: var(--surface);
}

.entry-content > .section.auto-style-35eaad .image_wrapper {
    min-height: 460px;
    background: linear-gradient(
        145deg,
        #e8d4b8,
        #9eab88
    );
}

.entry-content > .section.auto-style-35eaad .column_attr {
    padding-block: 24px;
}

/* Empty page sections */

.section.the_content.no_content,
.section.section-page-footer {
    display: none;
}

/* =========================================
   10. FOOTER
========================================= */

#Footer {
    position: relative;
    color: #e4ebe3;
    background: #203b2b;
}

#Footer .widgets_wrapper {
    padding-block: clamp(64px, 8vw, 100px);
}

#Footer .widgets_wrapper > .container {
    display: grid;
    grid-template-columns: 0.8fr 1fr 1.3fr;
    gap: clamp(30px, 5vw, 80px);
    align-items: start;
}

#Footer .column {
    width: 100%;
}

#Footer .widget {
    width: 100%;
}

#Footer h4 {
    margin-bottom: 18px;
    font-size: 1.6rem;
    color: #fff;
}

#Footer p {
    color: #b9c9bb;
}

#Footer a {
    color: #d4dfd3;
}

#Footer a:hover {
    color: var(--accent);
}

#Footer hr.auto-style-7c221d {
    margin: 18px 0 28px;
    background: var(--accent);
}

#Footer .auto-style-001272 a {
    font-size: 0.95rem;
    overflow-wrap: anywhere;
}

#Footer .auto-style-001272 a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* =========================================
   11. CONTACT FORM
========================================= */

.wpcf7 {
    width: 100%;
}

.wpcf7-form {
    width: 100%;
}

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

.wpcf7-form .col-md-12 {
    width: 100%;
}

.wpcf7-form .form-group {
    width: 100%;
}

.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="number"] {
    display: block;
    width: 100%;
    min-height: 50px;
    padding: 13px 16px;

    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.5;

    color: var(--text);
    background: #f8faf6;
    border: 1px solid #dce5da;
    border-radius: var(--radius-sm);

    transition:
        border-color var(--transition),
        background-color var(--transition),
        box-shadow var(--transition);
}

.wpcf7-form input::placeholder {
    color: #8a978b;
    opacity: 1;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="number"]:focus {
    outline: none;
    background: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(199, 155, 88, 0.15);
}

.wpcf7-form input[aria-invalid="true"] {
    border-color: #d16b61;
}

.wpcf7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    margin-top: 8px;
    padding: 13px 24px;

    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;

    color: #203b2b;
    background: var(--accent);
    border: 1px solid var(--accent);
    border-radius: var(--radius-sm);

    transition:
        background-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.wpcf7-submit:hover {
    background: #dfb675;
    border-color: #dfb675;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.wpcf7-submit:active {
    transform: translateY(0);
}

.wpcf7-form .auto-style-9c7663,
.wpcf7-form .auto-style-9c7663 + br,
.wpcf7-form input[type="hidden"] {
    display: none;
}

.wpcf7-form .col-md-12 > p:empty {
    display: none;
}

.wpcf7-response-output {
    margin-top: 16px;
    padding: 12px 16px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

.wpcf7-display-none {
    display: none;
}

/* =========================================
   12. FOOTER COPYRIGHT
========================================= */

.footer_copy {
    padding-block: 22px;
    background: #172e20;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_copy .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_copy .column.one {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.copyright {
    font-size: 0.8rem;
    color: #a9bdad;
    text-align: center;
}

.copyright a {
    font-weight: 600;
    color: var(--accent);
}

.copyright a:hover {
    color: #fff;
}

.social:empty {
    display: none;
}

/* =========================================
   13. SIDE MENU
========================================= */

#Side_slide {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;

    width: min(320px, 85vw);
    padding: 28px;

    color: #fff;
    background: var(--primary-dark);

    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);

    transform: translateX(105%);
    visibility: hidden;

    transition:
        transform var(--transition),
        visibility var(--transition);
}

#Side_slide:target {
    transform: translateX(0);
    visibility: visible;
}

#Side_slide .close-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

#Side_slide .close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
}

#Side_slide .extras {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#Side_slide .action_button {
    width: 100%;
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary-dark);
}

#Side_slide .extras-wrapper {
    display: flex;
    justify-content: center;
}

#Side_slide #slide-cart {
    color: #fff;
}

#Side_slide .lang-wrapper {
    margin-top: 32px;
}

#Side_slide .wpml-lang {
    display: flex;
    gap: 12px;
}

#Side_slide .wpml-lang a {
    display: block;
    width: 12px;
    height: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

#Side_slide .wpml-lang a.active {
    background: var(--accent);
    border-color: var(--accent);
}

#body_overlay {
    display: none;
}

/* =========================================
   14. TABLET
========================================= */

@media (max-width: 1024px) {

    :root {
        --container: 960px;
    }

    #Top_bar > .container > .column {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 24px;
        padding-block: 14px;
    }

    .top_bar_left {
        flex-basis: 100%;
        justify-content: space-between;
    }

    #menu {
        gap: 12px;
    }

    .menu-main {
        gap: 8px 12px;
    }

    .menu-main > .menu-item > a {
        font-size: 0.78rem;
    }

    .top_bar_right {
        justify-content: center;
    }

    .section_wrapper {
        gap: 32px;
    }

    .section_wrapper > .one-second {
        flex-basis: calc(50% - 16px);
    }

    .section_wrapper > .one-third {
        flex-basis: calc(33.333% - 22px);
    }

    .section_wrapper > .two-third {
        flex-basis: calc(66.667% - 22px);
    }

    #Footer .widgets_wrapper > .container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    #Footer .widget_media_image {
        grid-column: 1 / -1;
    }

    #Footer .column:has(.widget_media_image) {
        grid-column: 1 / -1;
    }
}

/* =========================================
   15. MOBILE
========================================= */

@media (max-width: 767px) {

    body {
        font-size: 15px;
        line-height: 1.65;
    }

    .container,
    .content_wrapper,
    .section_wrapper {
        width: calc(100% - 32px);
    }

    h2 {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    h4 {
        font-size: 1.35rem;
    }

    .section {
        padding-block: 64px;
    }

    .section_wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 36px;
    }

    .section_wrapper > .wrap,
    .section_wrapper > .one-second,
    .section_wrapper > .one-third,
    .section_wrapper > .two-third {
        flex: 1 1 100%;
        width: 100%;
    }

    .mcb-wrap-inner {
        gap: 18px;
    }

    /* Mobile header */

    #Top_bar > .container > .column {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding-block: 12px;
    }

    .top_bar_left {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    #logo {
        min-height: 48px;
        font-size: 1.7rem;
    }

    .menu_wrapper {
        width: 100%;
    }

    #menu {
        flex-direction: column;
        gap: 0;
    }

    .menu-main {
        width: 100%;
        justify-content: center;
        gap: 2px 12px;
    }

    .menu-main > .menu-item > a {
        padding: 9px 4px;
        font-size: 0.8rem;
    }

    .menu-main > .current-menu-item > a::after {
        bottom: 2px;
    }

    .menu_left,
    .menu_right {
        justify-content: center;
    }

    .sub-menu {
        max-width: min(280px, calc(100vw - 32px));
    }

    .top_bar_right {
        width: 100%;
        justify-content: center;
        padding-top: 8px;
        border-top: 1px solid var(--border);
    }

    .top_bar_right_wrapper {
        justify-content: center;
        gap: 14px;
    }

    .action_button {
        min-height: 40px;
        padding: 10px 18px;
        font-size: 0.8rem;
    }

    /* Mobile hero */

    .rev_slider_wrapper,
    .rev_slider {
        min-height: 440px;
    }

    .tp-static-layers {
        gap: 18px;
        width: calc(100% - 24px);
        padding: 60px 12px;
    }

    #slider-4-layer-5 {
        font-size: 0.7rem;
        letter-spacing: 0.16em;
    }

    #slider-4-layer-3 {
        font-size: clamp(1.9rem, 7vw, 3rem);
        line-height: 1.25;
    }

    #slider-4-layer-3 br {
        display: none;
    }

    /* Mobile content */

    .entry-content > .section:first-child {
        padding-block: 64px;
    }

    .entry-content > .section:first-child .image_wrapper {
        min-height: 300px;
    }

    .entry-content .column_attr h2 {
        margin-bottom: 18px;
    }

    .entry-content .column_attr h6 {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .image_frame,
    .image_wrapper {
        border-radius: var(--radius-md);
    }

    .image_wrapper {
        min-height: 280px;
    }

    .entry-content > .section.full-width {
        padding-block: 24px;
    }

    .entry-content > .section.full-width > .section_wrapper {
        width: calc(100% - 32px);
        gap: 16px;
    }

    .entry-content > .section.full-width .image_wrapper {
        min-height: 260px;
    }

    .entry-content > .section.bg-cover .placeholder {
        min-height: 220px;
    }

    .entry-content > .section.bg-cover .column_attr {
        padding: 28px 22px;
    }

    .entry-content > .section.auto-style-35eaad .image_wrapper {
        min-height: 300px;
    }

    .entry-content > .section.auto-style-35eaad .column_attr {
        padding-block: 0;
    }

    .button {
        min-height: 46px;
        padding: 12px 22px;
    }

    /* Mobile footer */

    #Footer .widgets_wrapper {
        padding-block: 56px;
    }

    #Footer .widgets_wrapper > .container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    #Footer .column,
    #Footer .column:has(.widget_media_image) {
        width: 100%;
        grid-column: auto;
    }

    #Footer h4 {
        font-size: 1.4rem;
    }

    .footer_copy {
        padding-block: 20px;
    }

    .footer_copy .column.one {
        flex-direction: column;
        gap: 10px;
    }
}

/* =========================================
   16. SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .container,
    .content_wrapper,
    .section_wrapper {
        width: calc(100% - 28px);
    }

    #logo {
        font-size: 1.55rem;
    }

    .menu-main {
        gap: 0 10px;
    }

    .menu-main > .menu-item > a {
        padding: 8px 2px;
        font-size: 0.75rem;
    }

    .rev_slider_wrapper,
    .rev_slider {
        min-height: 390px;
    }

    #slider-4-layer-3 {
        font-size: clamp(1.65rem, 7.5vw, 2.3rem);
    }

    .entry-content .column_attr h2 {
        font-size: 2rem;
    }

    .image_wrapper {
        min-height: 240px;
    }

    .entry-content > .section.bg-cover .column_attr {
        padding: 24px 18px;
    }

    .entry-content > .section.bg-cover .placeholder {
        min-height: 160px;
    }

    .button {
        width: 100%;
    }

    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="email"],
    .wpcf7-form input[type="number"] {
        min-height: 48px;
        font-size: 16px;
    }
}

/* =========================================
   17. ACCESSIBILITY & REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}