:root {
    --dfy-black: #080706;
    --dfy-ink: #15120f;
    --dfy-muted: #6f6760;
    --dfy-paper: #fbf7ef;
    --dfy-white: #ffffff;
    --dfy-line: #e6ded2;
    --dfy-orange: #f05a1a;
    --dfy-red: #d9251d;
    --dfy-gold: #f6a21a;
    --dfy-shadow: 0 18px 50px rgba(21, 18, 15, 0.12);
    --dfy-radius: 8px;
    --dfy-max: 1180px;
    --dfy-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body.dfy-theme {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    color: var(--dfy-ink);
    background: var(--dfy-paper);
    font-family: var(--dfy-font);
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

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

a {
    color: inherit;
}

.dfy-container {
    width: min(calc(100% - 40px), var(--dfy-max));
    margin: 0 auto;
}

.dfy-screen-reader-text,
.dfy-skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.dfy-skip-link:focus {
    z-index: 10000;
    top: 10px;
    left: 10px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    clip: auto;
    color: var(--dfy-white);
    background: var(--dfy-red);
}

.dfy-site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    color: var(--dfy-white);
    background: var(--dfy-black);
    box-shadow: 0 2px 0 rgba(255, 255, 255, 0.05);
}

.dfy-header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    width: min(calc(100% - 32px), 1240px);
    min-height: 72px;
    margin: 0 auto;
}

.dfy-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    max-width: 188px;
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.dfy-brand p,
.dfy-brand .ccm-block-image {
    margin: 0;
}

.dfy-brand a {
    display: inline-flex;
    align-items: center;
}

.dfy-brand img {
    display: block;
    width: 166px;
    max-width: 100%;
    height: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.dfy-header-panel {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1 1 auto;
    gap: 22px;
}

.dfy-navigation {
    flex: 1 1 auto;
}

.dfy-menu,
.dfy-navigation ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.dfy-menu a,
.dfy-navigation a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 9px 10px;
    border-radius: var(--dfy-radius);
    color: var(--dfy-white);
    font-size: 0.8rem;
    font-weight: 800;
    line-height: 1.1;
    text-decoration: none;
    text-transform: uppercase;
}

.dfy-menu a:hover,
.dfy-menu a:focus,
.dfy-navigation a:hover,
.dfy-navigation a:focus {
    color: var(--dfy-white);
    background: rgba(255, 255, 255, 0.1);
}

.dfy-menu-item-has-children {
    position: relative;
    display: flex;
    align-items: center;
}

.dfy-submenu-toggle {
    width: 24px;
    height: 38px;
    margin-left: -8px;
    border: 0;
    color: var(--dfy-white);
    background: transparent;
    cursor: pointer;
}

.dfy-submenu-toggle::before {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    margin: 0 auto 4px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
}

.dfy-submenu,
.dfy-navigation .dfy-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    display: grid;
    min-width: 230px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--dfy-radius);
    opacity: 0;
    visibility: hidden;
    background: #11100f;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
    transform: translateY(8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

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

.dfy-submenu a {
    justify-content: flex-start;
    width: 100%;
}

.dfy-header-social {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.dfy-header-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    color: var(--dfy-white);
    font-size: 0.78rem;
    font-weight: 900;
    text-decoration: none;
}

.dfy-header-social a:hover,
.dfy-header-social a:focus {
    border-color: var(--dfy-orange);
    background: var(--dfy-orange);
}

.dfy-search-link::before {
    content: "";
    width: 11px;
    height: 11px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.dfy-search-link::after {
    content: "";
    width: 7px;
    height: 2px;
    margin-top: 12px;
    margin-left: -2px;
    background: currentColor;
    transform: rotate(45deg);
}

.dfy-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--dfy-radius);
    background: transparent;
    cursor: pointer;
}

.dfy-menu-toggle span:not(.dfy-screen-reader-text) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--dfy-white);
}

.dfy-hero {
    position: relative;
    isolation: isolate;
    min-height: clamp(500px, 64vh, 660px);
    padding: clamp(58px, 8vw, 96px) 0 54px;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 24%, rgba(230, 80, 42, 0.16), transparent 36%),
        linear-gradient(135deg, #fff8ee 0%, var(--dfy-paper) 62%);
}

.dfy-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(251, 247, 239, 0.88) 0%, rgba(251, 247, 239, 0.64) 36%, rgba(251, 247, 239, 0.22) 58%, rgba(251, 247, 239, 0.04) 78%);
}

.dfy-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    height: 42%;
    background: linear-gradient(180deg, rgba(251, 247, 239, 0), var(--dfy-paper));
}

.dfy-home-hero-media {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.dfy-home-hero-media .ccm-area,
.dfy-home-hero-media .ccm-block,
.dfy-home-hero-media .ccm-block-image,
.dfy-home-hero-media .ccm-custom-style-container,
.dfy-home-hero-media .ccm-custom-style-main,
.dfy-home-hero-media figure,
.dfy-home-hero-media picture {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.dfy-home-hero-media img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    border: 0;
    border-radius: 0;
    object-fit: cover !important;
    object-position: center center;
}

.dfy-hero-grid {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: clamp(360px, 48vh, 520px);
}

.dfy-hero-copy {
    width: min(100%, 560px);
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid rgba(21, 18, 15, 0.12);
    border-radius: var(--dfy-radius);
    background: rgba(251, 247, 239, 0.76);
    box-shadow: 0 18px 44px rgba(21, 18, 15, 0.12);
    backdrop-filter: blur(2px);
}

.dfy-hero-copy h1,
.dfy-page-hero h1 {
    margin: 0;
    color: var(--dfy-ink);
    font-size: clamp(2.6rem, 4.8vw, 5.15rem);
    line-height: 0.96;
    font-weight: 950;
}

.dfy-hero-copy p {
    max-width: 500px;
    margin: 24px 0 0;
    color: #3f3933;
    font-size: clamp(1.05rem, 1.7vw, 1.35rem);
    line-height: 1.55;
}

.dfy-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.dfy-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 18px;
    border: 2px solid transparent;
    border-radius: var(--dfy-radius);
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}

.dfy-button-primary {
    color: var(--dfy-white);
    background: linear-gradient(135deg, var(--dfy-red), var(--dfy-orange));
}

.dfy-button-primary:hover,
.dfy-button-primary:focus {
    color: var(--dfy-white);
    filter: brightness(0.95);
}

.dfy-button-dark {
    color: var(--dfy-white);
    background: var(--dfy-black);
}

.dfy-button-dark:hover,
.dfy-button-dark:focus {
    color: var(--dfy-white);
    border-color: var(--dfy-orange);
}

.dfy-home-editable {
    margin-top: 34px;
}

.dfy-hero-editable {
    position: relative;
    z-index: 1;
}

.dfy-explore {
    padding: 44px 0 74px;
    background: var(--dfy-white);
}

.dfy-section-heading {
    max-width: 780px;
    margin-bottom: 30px;
}

.dfy-eyebrow {
    margin: 0 0 10px;
    color: var(--dfy-red);
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: 0;
    line-height: 1.1;
    text-transform: uppercase;
}

.dfy-section-heading h2,
.dfy-cta-panel h2 {
    margin: 0;
    color: var(--dfy-ink);
    font-size: clamp(2.2rem, 4vw, 4.4rem);
    line-height: 0.98;
    font-weight: 950;
}

.dfy-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.dfy-feature-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--dfy-line);
    border-radius: var(--dfy-radius);
    background: var(--dfy-white);
    box-shadow: 0 12px 34px rgba(21, 18, 15, 0.08);
}

.dfy-card-image {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #ece6dc;
}

.dfy-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 240ms ease;
}

.dfy-feature-card:hover .dfy-card-image img {
    transform: scale(1.04);
}

.dfy-card-body {
    position: relative;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 34px 20px 22px;
}

.dfy-icon-badge {
    position: absolute;
    top: -24px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 10px;
    border: 4px solid var(--dfy-white);
    border-radius: 50%;
    color: var(--dfy-white);
    background: linear-gradient(135deg, var(--dfy-red), var(--dfy-orange));
    font-size: 0.82rem;
    font-weight: 950;
}

.dfy-card-body h3 {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.08;
    font-weight: 950;
}

.dfy-card-body p {
    flex: 1 1 auto;
    margin: 12px 0 18px;
    color: var(--dfy-muted);
    font-size: 0.98rem;
    line-height: 1.5;
}

.dfy-card-area {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 100%;
}

.dfy-card-area .ccm-area,
.dfy-card-area .ccm-block-edit {
    min-height: 100%;
}

.dfy-card-area .ccm-block-image,
.dfy-card-area .ccm-block-image-slider,
.dfy-card-area picture {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #ece6dc;
}

.dfy-card-area .ccm-block-image img,
.dfy-card-area .ccm-block-image-slider img,
.dfy-card-area > img,
.dfy-card-area picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dfy-card-area .ccm-block-content,
.dfy-card-area .ccm-block-page-title,
.dfy-card-area .ccm-block-button,
.dfy-card-area .ccm-block-feature {
    padding-right: 20px;
    padding-left: 20px;
}

.dfy-card-area .ccm-block-content:first-child,
.dfy-card-area .ccm-block-page-title:first-child,
.dfy-card-area .ccm-block-feature:first-child {
    padding-top: 34px;
}

.dfy-card-area .ccm-block-content:last-child,
.dfy-card-area .ccm-block-button:last-child,
.dfy-card-area .ccm-block-feature:last-child {
    padding-bottom: 22px;
}

.dfy-card-area h1,
.dfy-card-area h2,
.dfy-card-area h3,
.dfy-card-area h4 {
    margin: 0 0 12px;
    color: var(--dfy-ink);
    font-size: 1.25rem;
    line-height: 1.08;
    font-weight: 950;
}

.dfy-card-area p {
    margin: 0 0 18px;
    color: var(--dfy-muted);
    font-size: 0.98rem;
    line-height: 1.5;
}

.dfy-card-area a:not(.dfy-button) {
    color: var(--dfy-red);
    font-weight: 950;
    text-decoration: none;
}

.dfy-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dfy-red);
    font-weight: 950;
    text-decoration: none;
}

.dfy-text-link::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
}

.dfy-text-link:hover,
.dfy-text-link:focus {
    color: var(--dfy-black);
}

.dfy-bottom-cta {
    padding: 70px 0;
    color: var(--dfy-white);
    background: var(--dfy-black);
}

.dfy-cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--dfy-radius);
    background: #12100e;
}

.dfy-cta-panel {
    padding: clamp(28px, 5vw, 54px);
}

.dfy-cta-contact {
    background: linear-gradient(135deg, rgba(217, 37, 29, 0.18), rgba(240, 90, 26, 0.3));
}

.dfy-cta-panel h2 {
    color: var(--dfy-white);
    font-size: clamp(1.9rem, 3vw, 3.35rem);
}

.dfy-cta-panel p:not(.dfy-eyebrow) {
    max-width: 560px;
    margin: 18px 0 24px;
    color: rgba(255, 255, 255, 0.78);
}

.dfy-page-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: clamp(220px, 27vw, 340px);
    margin-top: 0;
    padding: 54px 0 50px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(240, 90, 26, 0.08), rgba(251, 247, 239, 0) 55%),
        var(--dfy-paper);
    border-bottom: 1px solid var(--dfy-line);
}

.dfy-page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(251, 247, 239, 0.84) 0%, rgba(251, 247, 239, 0.63) 38%, rgba(251, 247, 239, 0.18) 76%, rgba(251, 247, 239, 0.06) 100%),
        linear-gradient(180deg, rgba(251, 247, 239, 0.05), rgba(251, 247, 239, 0.22));
}

.dfy-page-hero > .dfy-container {
    position: relative;
    z-index: 2;
}

.dfy-page-hero-media {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: transparent;
}

.dfy-page-hero-media .ccm-area,
.dfy-page-hero-media .ccm-block,
.dfy-page-hero-media .ccm-block-image,
.dfy-page-hero-media .ccm-custom-style-container,
.dfy-page-hero-media .ccm-custom-style-main,
.dfy-page-hero-media figure,
.dfy-page-hero-media picture {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.dfy-page-hero-media img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    border: 0;
    border-radius: 0;
    object-fit: cover !important;
    object-position: center center;
}

.dfy-page-hero-media .ccm-edit-mode-disabled-item {
    height: 100%;
}

.dfy-content-section {
    padding: 24px 0 76px;
    background: var(--dfy-paper);
}

.dfy-readable {
    max-width: 820px;
}

.dfy-page,
.dfy-home {
    flex: 1 0 auto;
}

.dfy-content-panel {
    width: 100%;
    min-height: 320px;
    padding: clamp(18px, 3vw, 34px);
    border: 1px solid var(--dfy-line);
    border-radius: var(--dfy-radius);
    background: var(--dfy-white);
    box-shadow: 0 14px 40px rgba(21, 18, 15, 0.08);
}

.dfy-content-panel.dfy-readable {
    margin-right: auto;
}

.dfy-content-panel > *:first-child,
.dfy-content-panel .ccm-area > *:first-child,
.dfy-content-panel .ccm-block-content > *:first-child {
    margin-top: 0;
}

.dfy-content-panel h1,
.dfy-content-panel h2,
.dfy-content-panel h3 {
    line-height: 1.08;
    font-weight: 950;
}

.dfy-content-panel a {
    color: var(--dfy-ink);
    font-weight: 850;
    text-decoration-color: var(--dfy-orange);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.dfy-content-panel img {
    border: 1px solid var(--dfy-line);
    border-radius: var(--dfy-radius);
    background: var(--dfy-paper);
}

.dfy-content-panel form,
.dfy-content-panel .ccm-block-form,
.dfy-content-panel .ccm-block-express-form {
    width: 100%;
    max-width: 720px;
    margin: 26px auto 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.dfy-content-panel form fieldset,
.dfy-content-panel .ccm-block-form fieldset,
.dfy-content-panel .ccm-block-express-form fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0 !important;
}

.dfy-content-panel form > div,
.dfy-content-panel form .form-group,
.dfy-content-panel form .mb-3,
.dfy-content-panel form .ccm-block-form-field-set {
    margin-bottom: 18px;
}

.dfy-content-panel form label,
.dfy-content-panel form .control-label {
    display: block;
    margin: 0 0 7px;
    color: var(--dfy-ink);
    font-size: 0.92rem;
    font-weight: 900;
    line-height: 1.2;
}

.dfy-content-panel form label .text-muted,
.dfy-content-panel form .text-muted,
.dfy-content-panel form .required,
.dfy-content-panel form .ccm-required {
    color: var(--dfy-red) !important;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.dfy-content-panel form input[type="text"],
.dfy-content-panel form input[type="email"],
.dfy-content-panel form input[type="tel"],
.dfy-content-panel form input[type="url"],
.dfy-content-panel form input[type="number"],
.dfy-content-panel form textarea,
.dfy-content-panel form select {
    display: block;
    width: 100%;
    min-height: 48px;
    padding: 12px 13px;
    border: 1px solid rgba(21, 18, 15, 0.18);
    border-radius: 10px;
    background: var(--dfy-white);
    color: var(--dfy-ink);
    font: inherit;
    line-height: 1.45;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.dfy-content-panel form textarea {
    min-height: 150px;
    resize: vertical;
}

.dfy-content-panel form input:focus,
.dfy-content-panel form textarea:focus,
.dfy-content-panel form select:focus {
    outline: 3px solid rgba(240, 90, 26, 0.18);
    border-color: var(--dfy-orange);
}

.dfy-content-panel form button,
.dfy-content-panel form input[type="submit"],
.dfy-content-panel form .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border: 0;
    border-radius: var(--dfy-radius);
    color: var(--dfy-white);
    background: linear-gradient(135deg, var(--dfy-red), var(--dfy-orange));
    font: inherit;
    font-weight: 950;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}

.dfy-content-panel form button:hover,
.dfy-content-panel form button:focus,
.dfy-content-panel form input[type="submit"]:hover,
.dfy-content-panel form input[type="submit"]:focus,
.dfy-content-panel form .btn:hover,
.dfy-content-panel form .btn:focus {
    color: var(--dfy-white);
    filter: brightness(0.95);
}

.dfy-content-panel form .g-recaptcha,
.dfy-content-panel form iframe[src*="recaptcha"] {
    max-width: 100%;
}

.dfy-two-column {
    display: grid;
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
    gap: 42px;
    align-items: start;
}

.dfy-sidebar {
    padding: 22px;
    border: 1px solid var(--dfy-line);
    border-radius: var(--dfy-radius);
    background: var(--dfy-paper);
}

.dfy-site-footer {
    flex-shrink: 0;
    padding: 34px 0;
    color: rgba(255, 255, 255, 0.78);
    background: var(--dfy-black);
    border-top: 4px solid var(--dfy-orange);
}

.dfy-footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
}

.dfy-site-footer strong {
    display: block;
    color: var(--dfy-white);
    font-size: 1.02rem;
}

.dfy-site-footer p {
    margin: 6px 0 0;
}

.dfy-footer-editable {
    min-width: min(100%, 360px);
}

.dfy-footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 16px;
}

.dfy-footer-nav a {
    color: var(--dfy-white);
    font-size: 0.82rem;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

.dfy-footer-nav a:hover,
.dfy-footer-nav a:focus {
    color: var(--dfy-orange);
}

.dfy-footer-note {
    margin-top: 10px;
    text-align: right;
    font-size: 0.9rem;
}

.dfy-area-layout-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.dfy-area-layout-col {
    min-width: 0;
    flex: 0 0 auto;
}

.dfy-area-layout-col-1 { width: calc((100% - 264px) / 12); }
.dfy-area-layout-col-2 { width: calc(((100% - 264px) / 12 * 2) + 24px); }
.dfy-area-layout-col-3 { width: calc(((100% - 264px) / 12 * 3) + 48px); }
.dfy-area-layout-col-4 { width: calc(((100% - 264px) / 12 * 4) + 72px); }
.dfy-area-layout-col-5 { width: calc(((100% - 264px) / 12 * 5) + 96px); }
.dfy-area-layout-col-6 { width: calc(((100% - 264px) / 12 * 6) + 120px); }
.dfy-area-layout-col-7 { width: calc(((100% - 264px) / 12 * 7) + 144px); }
.dfy-area-layout-col-8 { width: calc(((100% - 264px) / 12 * 8) + 168px); }
.dfy-area-layout-col-9 { width: calc(((100% - 264px) / 12 * 9) + 192px); }
.dfy-area-layout-col-10 { width: calc(((100% - 264px) / 12 * 10) + 216px); }
.dfy-area-layout-col-11 { width: calc(((100% - 264px) / 12 * 11) + 240px); }
.dfy-area-layout-col-12 { width: 100%; }

@media (max-width: 1120px) {
    .dfy-header-inner {
        gap: 16px;
    }

    .dfy-brand {
        max-width: 172px;
    }

    .dfy-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 940px) {
    .dfy-menu-toggle {
        display: block;
    }

    .dfy-header-inner {
        min-height: 76px;
        flex-wrap: wrap;
    }

    .dfy-header-panel {
        display: none;
        order: 3;
        width: 100%;
        padding: 0 0 18px;
    }

    .dfy-menu-open .dfy-header-panel {
        display: grid;
        gap: 18px;
    }

    .dfy-menu,
    .dfy-navigation ul {
        display: grid;
        justify-content: stretch;
        gap: 4px;
    }

    .dfy-menu a,
    .dfy-navigation a {
        width: 100%;
        min-height: 46px;
    }

    .dfy-menu-item-has-children {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 44px;
    }

    .dfy-submenu-toggle {
        width: 44px;
        height: 46px;
        margin-left: 0;
    }

    .dfy-submenu,
    .dfy-navigation .dfy-submenu {
        position: static;
        display: none;
        grid-column: 1 / -1;
        min-width: 0;
        margin: 2px 0 8px 12px;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .dfy-menu-item-has-children.dfy-submenu-open .dfy-submenu,
    .dfy-menu-item-has-children:hover .dfy-submenu,
    .dfy-menu-item-has-children:focus-within .dfy-submenu {
        display: grid;
    }

    .dfy-header-social {
        justify-content: flex-start;
    }

    .dfy-hero {
        min-height: 620px;
        background:
            radial-gradient(circle at 70% 24%, rgba(230, 80, 42, 0.16), transparent 34%),
            linear-gradient(135deg, #fff8ee 0%, var(--dfy-paper) 62%);
    }

    .dfy-home-hero-media img {
        object-position: 61% center;
    }

    .dfy-hero-grid {
        min-height: 470px;
    }

    .dfy-cta-grid,
    .dfy-two-column {
        grid-template-columns: 1fr;
    }

    .dfy-area-layout-row {
        display: block;
    }

    .dfy-area-layout-col {
        width: 100%;
    }
}

@media (max-width: 680px) {
    .dfy-container {
        width: min(calc(100% - 28px), var(--dfy-max));
    }

    .dfy-brand {
        max-width: 164px;
        padding: 7px 9px;
    }

    .dfy-card-grid {
        grid-template-columns: 1fr;
    }

    .dfy-button {
        width: 100%;
    }

    .dfy-cta-panel {
        padding: 28px 22px;
    }

    .dfy-footer-inner {
        display: grid;
    }
}
