:root {
    --primary: #1699b8;
    --secondary: #0d3b66;
    --ink: #18354d;
    --muted: #667785;
    --sand: #f7f5ef;
    --line: #dbe5e8;
    --white: #fff;
    --cta-color: #f6e1c9;
    --cta-color-lite: #fdf0e0;
    --shadow-soft: 0 24px 60px -22px rgba(13, 59, 102, 0.28);
    --shadow-card: 0 12px 34px -18px rgba(13, 59, 102, 0.24);
    --gradient: linear-gradient(135deg, #1699b8 0%, #38c0dc 55%, #7ad9ec 100%);
    interpolate-size: allow-keywords;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    color: var(--ink);
    font:
        16px/1.7 Inter,
        system-ui,
        sans-serif;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}
main {
    overflow: hidden;
}
h1,
h2,
h3 {
    font-family: "Playfair Display", Georgia, serif;
    letter-spacing: -0.025em;
    line-height: 1;
    margin: 0;
    font-weight: 500;
}
h1 {
    font-size: clamp(54px, 6.2vw, 72px);
}
h2 {
    font-size: clamp(39px, 4vw, 42px);
}
h3 {
    font-size: 20px;
}
p {
    margin: 0 0 16px;
}
a {
    color: inherit;
}
.container {
    width: min(1280px, calc(100% - 48px));
    margin: auto;
}
.narrow {
    max-width: 780px;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(219, 229, 232, 0.8);
}
.header-inner {
    /*height: 82px;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}
.brand {
    text-decoration: none;
    color: var(--secondary);
    font-family: "Playfair Display";
    font-weight: 700;
    font-size: 21px;
    line-height: 0.9;
	display: flex;
    gap: 12px;
    align-items: center;
	height: 100%;
}

/*
BUTTONS
*/
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 25px;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    box-shadow: var(--shadow-card);
    transition: 0.2s;
}
.button:hover {
    background: var(--secondary);
    /*transform: translateY(-1px);*/
}
.button-outline{
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(13, 59, 102, 0.28);
    box-shadow: none;
}
.cta .button-outline {
    background-color: var(--secondary);
}

.cta .button-outline:hover{
    background-color: var(--ink);
}

.secondary-button {
    background-color: var(--cta-color);
    color: var(--ink);
}
.secondary-button:hover {
    background-color: var(--cta-color-lite);
    color: var(--ink);
}
.button-small {
    padding: 10px 18px;
}

.split-copy h2 {
    color: var(--primary);
    margin-bottom: 20px;
}
.split-copy .eyebrow{
    color: var(--ink);
}

.contact-details .button {
    display: flex;
    gap: 10px;
    max-width: 200px;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.brand-text__container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    max-height: 40px;
}
.brand-text__container span{
	color: var(--primary);
	font-size: 18px;
    font-weight: 600;
    line-height: 1;
}
.brand-text__container strong{
	font-size: 10px;
	color: var(--line);
}
.brand small {
    display: block;
    font: 400 11px/1.2 Inter;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}
.brand strong {
    font-weight: 500;
    line-height: 1;
}
.brand-logo {
	padding: 8px 0;
    display: block;
    max-height: 75px;
    width: auto;
}


/*
PRIMARY NAVIGATION
*/
.primary-nav {
    display: flex;
    align-items: center;
    gap: 27px;
}

.primary-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.primary-nav > .menu {
    display: flex;
    align-items: center;
    gap: 27px;
}

.primary-nav .menu-item {
    position: relative;
}

.primary-nav .menu-item-row {
    display: flex;
    align-items: center;
    margin-top: 2px;
}

.primary-nav a {
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > .menu-item-row > a,
.primary-nav .current-menu-ancestor > .menu-item-row > a {
    color: var(--primary);
}

/*
SUBMENU TOGGLE
*/
.submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    margin: 0 -7px 0 2px;
    padding: 0;
    color: var(--ink);
    background: transparent;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}


.submenu-toggle:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.submenu-toggle-icon {
    display: block;
    transition: transform 0.25s ease;
}

/*
DESKTOP SUBMENU
*/
.primary-nav .sub-menu {
    position: absolute;
    z-index: 20;
    top: calc(100% + 14px);
    left: -18px;
    display: block;
    width: max-content;
    min-width: 260px;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 15px;
    box-shadow: var(--shadow-card);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}

/*
Invisible bridge between parent item and submenu.
Prevents the submenu from closing while the pointer
moves through the 14px gap.
*/
.primary-nav .sub-menu::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 15px;
    content: "";
}

.primary-nav .sub-menu .menu-item {
    width: 100%;
}

.primary-nav .sub-menu .menu-item-row {
    display: block;
}

.primary-nav .sub-menu a {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border-radius: 9px;
    line-height: 1.4;
    white-space: nowrap;
}

.primary-nav .sub-menu a:hover,
.primary-nav .sub-menu .current-menu-item > .menu-item-row > a {
    color: var(--primary);
    background: rgba(22, 153, 184, 0.08);
}

@media (min-width: 993px) {
    .primary-nav .menu-item-has-children:hover > .sub-menu,
    .primary-nav .menu-item-has-children:focus-within > .sub-menu,
    .primary-nav .menu-item-has-children.is-submenu-open > .sub-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .primary-nav .menu-item-has-children:hover > .menu-item-row .submenu-toggle-icon,
    .primary-nav .menu-item-has-children:focus-within > .menu-item-row .submenu-toggle-icon,
    .primary-nav .menu-item-has-children.is-submenu-open > .menu-item-row .submenu-toggle-icon {
        transform: rotate(180deg);
    }
}

@media (max-width: 992px) {
    .primary-nav a:hover, .primary-nav .current-menu-item > .menu-item-row > a, .primary-nav .current-menu-ancestor > .menu-item-row > a {
        /*color: var(--white);*/
    }
}


.header-phone {
    white-space: nowrap;
    display: flex;
    gap: 12px;
}

.header-phone-mobile {
    display: none;
}

.menu-toggle span{
    transition: all 0.3s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1){
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2){
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3){
    transform: translateY(-4px) rotate(-45deg);
}

@media (max-width: 992px){
    .header-phone-mobile{
        display: flex;
    }
    .header-phone-desktop {
        display: none;
    }
}
.menu-toggle {
    display: none;
    border: 0;
    background: none;
    padding: 8px;
}


.section {
    padding: 96px 0;
}
.section-muted {
    background: rgba(247, 245, 239, 0.72);
}
.eyebrow {
    margin: 0 0 15px;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;
    color: var(--primary);
}
.lead {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}


/*
  HERO
*/
.hero {
    position: relative;
    padding: 0;
    background: var(--gradient);
    color: #fff;
}
.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.25), transparent 44%);
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 58px;
    /*align-items: center;*/
    padding-top: 96px;
    padding-bottom: 128px;
}
.hero-grid h1 {
    margin-top: 20px;
}
.hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    color: #fff;
    margin: 0;
    font-weight: 500;
}
.hero .eyebrow:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary);
}
.hero h1 em {
    font-style: normal;
    color: var(--secondary);
}
.hero .lead {
    max-width: 610px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    margin-top: 26px;
}
.hero .button:first-child {
    background: var(--secondary);
}


.hero .button-outline {
    color: var(--ink);
}
.hero .button:first-child:hover {
    background-color: var( --ink);
}
.hero .button-outline:hover {
    color: var(--white);
}
.hero-media {
    position: relative;
}
.hero-image-frame {
    aspect-ratio: 4/5;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 48px;
    max-width: 48px;
    border-radius: 50px;
}
.hero-float {
    position: absolute;
    left: -28px;
    bottom: -28px;
    width: 235px;
    padding: 16px;
    display: flex;
    gap: 10px;
    border-radius: 17px;
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow-card);
}

.hero-float-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero .button, .cta .button {
    gap: 10px;
}

.hero .button svg, .cta .button svg {
    max-width: 20px;
}

.hero-float span,
.hero-float small {
    display: block;
}
.hero-float span {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
}
.hero-float small {
    font-size: 11px;
    color: var(--muted);
    max-width: 110px;
    line-height: 1;
}
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 580px;
    margin-top: 52px;
    text-shadow: 0 2px 12px rgba(13, 59, 102, 0.3);
}
.stats strong,
.stats span {
    display: block;
}
.stats strong {
    font: 50px/1 "Playfair Display";
    color: #fff;
}
.stats span {
    margin-top: 9px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: rgba(255, 255, 255, 0.8);
}
.hero-wave {
    position: absolute;
    z-index: 2;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    color: #fff;
}
.hero-inner .hero-grid {
    display: block;
    /*max-width: 900px;*/
    text-align: center;
    padding-top: 92px;
    padding-bottom: 125px;
}
.hero-inner .hero-copy {
    /*max-width: 800px;*/
    margin: auto;
}
.hero-inner h1 {
    font-size: clamp(46px, 5vw, 67px);
}
.hero-inner .lead {
    margin: 20px auto 0;
}
.hero-inner .actions {
    justify-content: center;
}
.hero-inner .hero-media {
    display: none;
}
.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 52px;
}
.section-heading .lead {
    margin: 18px auto 0;
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 23px;
}
.card {
    position: relative;
    margin: 0;
    background: #fff;
    border: 1px solid rgba(219, 229, 232, 0.8);
    border-radius: 23px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: 0.35s;
}
.card:hover {
    transform: translateY(-5px);
    border-color: rgba(22, 153, 184, 0.4);
}
.card-body h3 {
    color: var(--primary);
}
.card-media {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}
.card:hover .card-media img {
    transform: scale(1.05);
}
.card-icon,
.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    font-size: 25px;
}
.card-icon {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
}
.feature-icon {
    margin: 27px 27px 0;
}
.card-body > div > a {
    text-decoration: none;
    transition: color 0.5s ease;
}
.card-body > div > a:hover{
    color: var(--primary);
}

.card.form-card .frm_forms {
    min-height: 520px;
}
.card-body {
    padding: 25px;
}
.card-body > div {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 8px;
}
.text-link::after {
    content: "";
    display: inline-block;
    width: 14px; 
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    

    filter: brightness(0) saturate(100%) invert(0%); 
    transition: 0.2s;
}
.text-link:hover:after {
    transform: translateX(4px);
}
.feature-cards .cards-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.card-body{
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.feature-cards .card-body {
    padding-top: 17px;
}
.feature-cards .section-heading {
    text-align: left;
    max-width: none;
    display: grid;
    grid-template-columns: 7fr 5fr;
}
.feature-cards .section-heading .eyebrow,
.feature-cards .section-heading h2 {
    grid-column: 1;
}
.feature-cards .section-heading h2 {
    color: var(--primary);
}
.feature-cards .section-heading .eyebrow{
    color: var(--ink);
}

.feature-cards .section-heading .lead {
    grid-column: 2;
    grid-row: 1/3;
    align-self: end;
    text-align: left;
}
.service-cards .eyebrow{
    color: var(--ink);
}

.service-cards h2{
    color: var(--primary);
}
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 76px;
    align-items: center;
}
.split-media {
    position: relative;
}
.split-image-frame {
    aspect-ratio: 4/5;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.image-right .split-media {
    order: 2;
}
.split-copy .lead p {
    margin-bottom: 16px;
}
.image-text .eyebrow {
    color: var(--ink);
}
.image-text h2 {
    color: var(--primary);
    margin-bottom: 20px;
}
.check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
    padding: 0;
    list-style: none;
    margin: 28px 0;
}
.check-list li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
}

.image-text .check-list li {
    color: var(--muted);
}
.check-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}
.testimonials .card {
    padding: 30px;
}
.testimonials blockquote p {
    font-size: 16px;
    line-height: 1.75;
}
.testimonials footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}
.hobe-layout-testimonials .eyebrow{
    color: var(--ink);
}
.hobe-layout-testimonials h2 {
    color: var(--primary);
}
.testimonials footer img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonials footer strong,
.testimonials footer small {
    display: block;
}
.testimonials footer strong {
    color: var(--primary);
}
.testimonials footer small {
    color: var(--muted);
}

.faq {
    display: grid;
    gap: 12px;
}

.faq details {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 21px 24px;
    background: #fff;
    box-shadow: var(--shadow-card);
}

.faq summary {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    list-style: none;
    color: var(--primary);
    font: 20px/1.35 "Playfair Display";
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary b {
    display: grid;
    place-items: center;
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(13, 59, 102, 0.1);
    font: 400 18px/1 Inter;
    transition: transform 0.2s ease;
}

.faq details[open] summary b {
    transform: rotate(45deg);
}

.faq details::details-content {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        height 0.3s ease,
        opacity 0.3s ease,
        content-visibility 0.3s allow-discrete;
}

.faq details[open]::details-content {
    height: auto;
    opacity: 1;
}

.faq details > div {
    padding-top: 14px;
    color: var(--muted);
}

.hobe-layout-faq .eyebrow {
    color: var(--ink);
}

.hobe-layout-faq h2 {
    color: var(--primary);
}

.cta {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.5fr 0.7fr;
    align-items: center;
    gap: 45px;
    padding: 55px 60px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}
.cta:after {
    content: "";
    position: absolute;
    right: -95px;
    top: -95px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.16;
}
.cta > div {
    position: relative;
    z-index: 1;
}
.cta .actions {
    justify-content: flex-end;
}
.cta .eyebrow {
    color: var(--ink);
}
.cta h2 {
    color: var(--primary);
}
.cta > .cta-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.cta > .cta-text-wrapper {
    display: flex;
}
.cta-address {
    display: flex;
    gap: 8px;
    align-items: center;
    text-decoration: none;
}
.cta-address svg{
    max-width: 16px;
}
.form-card {
    padding: 38px;
}
.contact-details {
    margin-top: 26px;
}

/**
FOOTER
*/

.site-footer {
    overflow: hidden;
    padding: 0;
    color: rgba(255, 255, 255, 0.82);
    background: var(--primary);
    border-radius: 0 0 8px 8px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(170px, 0.8fr) minmax(280px, 1.25fr);
    gap: 90px;
    padding-top: 58px;
    padding-bottom: 54px;
}

.footer-about {
    max-width: 470px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    margin-bottom: 28px;
    color: #fff;
    text-decoration: none;
}

.footer-logo {
    display: block;
    width: auto;
    max-width: 65px;
    max-height: 65px;
    object-fit: cover;
    border-radius: 68px;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
}

.footer-brand-text strong {
    color: #fff;
    font: 600 25px/1.1 "Playfair Display", Georgia, serif;
}

.footer-brand-text small {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.9);
    font: 400 10px/1.2 Inter, sans-serif;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.footer-about h2 {
    display: none;
}

.footer-about p {
    max-width: 470px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14x;
    line-height: 1.65;
}

.footer-grid h3 {
    margin: 9px 0 24px;
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: -0.015em;
}

.footer-grid ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-grid a {
    color: inherit;
    text-decoration: none;
    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

.footer-grid a:hover {
    color: #fff;
}

.footer-menu {
    display: grid;
    gap: 6px;
}

.footer-menu li {
    margin: 0;
}

.footer-menu a {
    display: inline-block;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.35;
}

.footer-contact-list {
    display: grid;
    gap: 13px;
}

.footer-contact-list li {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: start;
    gap: 11px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.45;
}

.footer-contact-list svg {
    display: block;
    margin-top: 1px;
    color: rgba(255, 255, 255, 0.78);
}

.footer-contact-list a {
    overflow-wrap: anywhere;
}

.footer-bottom-wrapper {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 66px;
    padding-top: 16px;
    padding-bottom: 16px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    line-height: 1.4;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    color: #fff;
    text-decoration: none;
}

.footer-logo {
    display: block;
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 50%;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.footer-brand-text strong {
    color: #fff;
    font: 500 25px/1 "Playfair Display", Georgia, serif;
    letter-spacing: -0.02em;
}

.footer-brand-text small {
    color: rgba(255, 255, 255, 0.9);
    font: 400 10px/1.2 Inter, sans-serif;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}


body.home .hobe-row-4 .split-media:after,
body.page-id-0 .split-media:after {
    content: "";
}
.hobe-layout-contact .section {
    background: rgba(247, 245, 239, 0.72);
}
.hobe-layout-contact .split-grid {
    grid-template-columns: 5fr 7fr;
    align-items: start;
}
.hobe-layout-contact h1 {
    font-size: clamp(42px, 4vw, 58px);
}
input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
    font: inherit;
    background: #fff;
}
.wpcf7-form p {
    margin-bottom: 16px;
}
.wpcf7-submit {
    width: auto;
    border: 0;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}
@media (max-width: 992px) {
    .hero-grid {
        gap: 38px;
    }
    .feature-cards .cards-grid {
        grid-template-columns: 1fr 1fr;
    }
    .split-grid {
        gap: 45px;
    }
    .cta {
        grid-template-columns: 1fr;
    }
    .cta .actions {
        justify-content: flex-start;
    }
}
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
        gap: 4px;
        cursor: pointer;
        flex-direction: column;
        height: 33px;
    }
    .menu-toggle span:not(.screen-reader-text) {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--secondary);
    }

    .primary-nav {
        position: absolute;
        top: 111px;
        right: 0;
        left: 0;
        display: block;
        max-height: 0;
        padding: 0 25px;
        overflow: hidden;
        visibility: hidden;
        background: var(--white);
        border-bottom: 1px solid var(--line);
        opacity: 0;
        pointer-events: none;

        transition:
            max-height 0.35s ease,
            padding 0.35s ease,
            opacity 0.25s ease,
            visibility 0.35s ease;
    }

    .primary-nav.is-open {
        max-height: calc(100vh - 111px);
        padding-top: 25px;
        padding-bottom: 25px;
        overflow-y: auto;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
		padding-top: 10px;
    }

    .primary-nav > .menu {
        display: flex;
        align-items: stretch;
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .primary-nav > .menu > .menu-item {
        width: 100%;
        border-bottom: 1px solid var(--line);
    }

    .primary-nav > .menu > .menu-item:last-child {
        border-bottom: 0;
    }

    .primary-nav .menu-item-row {
        width: 100%;
        justify-content: space-between;
    }

    .primary-nav > .menu > .menu-item > .menu-item-row > a {
        flex: 1 1 auto;
        padding: 10px 0;
    }

    .primary-nav .submenu-toggle {
        width: 42px;
        height: 42px;
        margin: 0 -10px 0 10px;
    }

    .primary-nav .menu-item-has-children.is-submenu-open
        > .menu-item-row
        .submenu-toggle-icon {
        transform: rotate(180deg);
    }

    /*
    Mobile accordion submenu
    */
    .primary-nav .sub-menu {
        position: static;
        display: block;
        width: 100%;
        min-width: 0;
        max-height: 0;
        padding: 0 0 0 14px;
        overflow: hidden;
        visibility: visible;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;

        transition:
            max-height 0.35s ease,
            padding-bottom 0.35s ease;
    }

    .primary-nav .sub-menu::before {
        display: none;
    }

    .primary-nav .menu-item-has-children.is-submenu-open > .sub-menu {
        padding-bottom: 12px;
    }

    .primary-nav .sub-menu .menu-item {
        border: 0;
    }

    .primary-nav .sub-menu a {
        padding: 9px 12px;
        white-space: normal;
    }

    .primary-nav .sub-menu a:hover,
    .primary-nav .sub-menu .current-menu-item > .menu-item-row > a {
        background: rgba(22, 153, 184, 0.08);
    }

    .header-phone-mobile {
        margin-top: 22px;
    }
    .section {
        padding: 72px 0;
    }
    .hero-grid,
    .split-grid {
        grid-template-columns: 1fr;
    }
    .hero-grid {
        padding-top: 55px;
        padding-bottom: 110px;
    }
    .hero-media {
        max-width: 520px;
    }
    .hero-image-frame {
        aspect-ratio: 4/3;
    }
    .hero-float {
        left: 18px;
    }
    .feature-cards .section-heading {
        display: block;
        text-align: center;
    }
    .feature-cards .section-heading .lead {
        text-align: center;
    }
    .cards-grid {
        grid-template-columns: 1fr 1fr;
    }
    .image-right .split-media {
        order: 0;
    }
    .split-image-frame {
        aspect-ratio: 4/3;
    }
    .hobe-layout-contact .split-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}
@media (max-width: 560px) {
    .container {
        width: min(100% - 32px, 1180px);
    }
    .header-inner {
        /*height: 72px;*/
    }
    .primary-nav {
        top: 71px;
    }
    .section {
        padding: 60px 0;
    }
    h1 {
        font-size: 46px;
    }
    h2 {
        font-size: 37px;
    }
    .hero-grid {
        padding-top: 44px;
        padding-bottom: 95px;
    }
    .hero .lead {
        font-size: 16px;
    }
    .hero-image-frame {
        aspect-ratio: 4/5;
    }
    .hero-float {
        display: none;
    }
    .stats {
        gap: 12px;
        margin-top: 38px;
    }
    .stats strong {
        font-size: 36px;
    }
    .stats span {
        font-size: 9px;
    }
    .hero-inner .hero-grid {
        padding-top: 64px;
        padding-bottom: 100px;
    }
    .cards-grid,
    .feature-cards .cards-grid {
        grid-template-columns: 1fr;
    }
    .check-list {
        grid-template-columns: 1fr;
    }
    .cta {
        display: block;
        padding: 34px 26px;
    }
    .cta .actions {
        margin-top: 25px;
    }
    .footer-bottom {
        display: block;
    }
.footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 42px;
    padding-bottom: 40px;
}

.footer-contact {
    grid-column: auto;
}

.footer-logo {
    max-width: 60px;
    max-height: 60px;
}

.footer-brand {
    margin-bottom: 22px;
}

.footer-about p {
    font-size: 14px;
}

.footer-grid h3 {
    margin-top: 0;
    margin-bottom: 18px;
}

.footer-bottom {
    display: grid;
    gap: 7px;
    min-height: 0;
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer-bottom span {
    display: block;
    margin: 0;
}
}


#frm_form_3_container .frm_submit button.frm_button_submit {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    width: auto !important;
    min-width: 0 !important;
    padding: 13px 25px !important;

    border: 0 !important;
    border-radius: 999px !important;

    background: var(--primary) !important;
    color: var(--white) !important;

    font-family: inherit !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1 !important;

    text-decoration: none !important;
    cursor: pointer;

    box-shadow: var(--shadow-card) !important;

    transition:
        background-color 0.2s ease,
        color 0.2s ease !important;
}

#frm_form_3_container .frm_submit button.frm_button_submit:hover,
#frm_form_3_container .frm_submit button.frm_button_submit:focus {
    background: var(--secondary) !important;
    color: var(--white) !important;
}

#frm_form_3_container .frm_submit button.frm_button_submit:focus-visible {
    outline: 2px solid var(--secondary) !important;
    outline-offset: 3px;
}

.contact-image img {
    max-width: 480px;
    height: fit-content;
    border-radius: 25px;
	width:100%;
}


.hero-404 {
	position: relative;
	min-height: 680px;
	color: var(--ink);

	background-image:
		linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.98) 0%,
			rgba(255, 255, 255, 0.92) 30%,
			rgba(255, 255, 255, 0.35) 53%,
			rgba(255, 255, 255, 0) 72%
		),
		url("../img/404-page-hero.png");

	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}


.hero-404::before {
	display: none;
}

.hero-404 .hero-grid {
	display: flex;
	align-items: center;
	min-height: 680px;
	padding-top: 80px;
	padding-bottom: 130px;
	text-align: left;
}

.hero-404 .hero-copy {
	width: min(540px, 48%);
	margin: 0;
}

.hero-404 .eyebrow {
	color: var(--secondary);
	background: rgba(255, 255, 255, 0.65);
}

.hero-404 h1 {
	display: flex;
	flex-direction: column;
	gap: 50px;
	margin-top: 20px;
	color: var(--primary);
	font-size: clamp(110px, 12vw, 180px);
	line-height: 0.75;
}

.hero-404 h1 span {
	color: var(--secondary);
	font-size: clamp(42px, 4.5vw, 64px);
	line-height: 1;
}

.hero-404 .lead {
	max-width: 480px;
	margin: 28px 0 0;
	color: var(--ink);
	font-size: 17px;
}

.hero-404 .actions {
	justify-content: flex-start;
}

.hero-404 .button:first-child {
	background: var(--secondary);
}

.hero-404 .button-outline {
	color: var(--secondary);
	background: rgba(255, 255, 255, 0.7);
	border-color: rgba(13, 59, 102, 0.35);
	backdrop-filter: blur(8px);
}

.hero-404 .button-outline:hover {
	color: var(--white);
	background: var(--primary);
}