/* =====================================================
   US SPEEDFRAME MAIN CSS
===================================================== */

:root {
    --sf-blue: #08295f;
	--sf-blue-solid: #08295f;
	--sf-red: #bc1c1c;
	--sf-dark: #3a3a3a;
	--sf-navy: #131734;
    --sf-gray: #f3f5f7;
    --sf-soft: #f4f5f7;
    --sf-white: #ffffff;
    --sf-muted: #6b7280;
    --sf-accent: #b97845;
    --sf-line: #e5e7eb;
    --sf-radius: 18px;
    --sf-shadow: 0 24px 60px rgba(17, 24, 39, 0.14);
}

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

html,
body,
button,
input,
textarea,
select {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
}


html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Roboto', Arial, sans-serif;
    color: var(--sf-dark);
    background: #ffffff;
    line-height: 1.65;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.site-main,
.us-speedframe-home {
    margin: 0;
    padding: 0;
}

.site-main {
    padding-top: 112px;
}

.sf-container,
.container,
.sf-section-container {
    width: min(1060px, 88vw);
    margin-inline: auto;
}

.skip-link,
.screen-reader-text {
    position: absolute;
    left: -9999px;
}

.skip-link:focus {
    left: 20px;
    top: 20px;
    z-index: 10000;
    background: #ffffff;
    color: var(--sf-dark);
    padding: 12px 16px;
    border-radius: 8px;
}

/* =====================================================
   HEADER
===================================================== */

.sf-header,
.site-header {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 25px 0;
    color: #131734;
    background: #eff4fe;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    transition:
        background 0.28s ease,
        box-shadow 0.28s ease,
        padding 0.28s ease,
        backdrop-filter 0.28s ease,
        -webkit-backdrop-filter 0.28s ease;
}

.admin-bar .sf-header,
.admin-bar .site-header {
    top: 32px;
}

.sf-header.is-scrolled,
.site-header.is-scrolled {
    padding: 15px 0;
    background: rgba(9, 37, 111, 0.96);
    box-shadow: 0 12px 35px rgba(9, 37, 111, 0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.sf-header-inner,
.nav-wrap {
    width: min(1060px, 88vw);
    margin-inline: auto;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.sf-brand,
.site-branding {
    line-height: 1;
    flex-shrink: 0;
}

.sf-logo,
.brand-text {
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 1;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.sf-custom-logo-wrap,
.custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.sf-custom-logo,
.custom-logo {
    max-height: 54px;
    width: auto;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.18));
}

.sf-direct-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    line-height: 1;
    text-decoration: none;
}

.sf-direct-logo {
    display: block;
    width: 300px;
    max-width: 300px;
    height: auto;
    max-height: none;
    object-fit: contain;
    opacity: 1;
    visibility: visible !important;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.25));
    transition:
        width 0.25s ease,
        filter 0.25s ease,
        opacity 0.25s ease;
}

.sf-header:not(.is-scrolled) .sf-direct-logo,
.site-header:not(.is-scrolled) .sf-direct-logo {
    width: 300px;
    max-width: 300px;
}

.sf-header.is-scrolled .sf-direct-logo,
.site-header.is-scrolled .sf-direct-logo {
    width: 270px;
    max-width: 270px;
    filter:
        brightness(0)
        invert(1)
        drop-shadow(0 2px 10px rgba(0, 0, 0, 0.18));
}

.sf-nav,
.main-navigation {
    display: flex;
    align-items: center;
}

.sf-nav ul,
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 30px;
}

.sf-nav li,
.main-navigation li {
    position: relative;
}

.sf-nav a,
.main-navigation a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: auto;
    padding: 8px 4px;

    background: transparent;
    color: #131734;

    border: 0;
    border-radius: 0;
    box-shadow: none;

    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-align: center;

    transition: color 0.25s ease;
}

.sf-nav a::after,
.main-navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;

    height: 3px;
    background: #bc1c1c;

    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.sf-nav a:hover,
.sf-nav .current-menu-item > a,
.main-navigation a:hover,
.main-navigation .current-menu-item > a {
    background: transparent;
	color: #bc1c1c;
	transform: none;
	box-shadow: none;
}

.sf-nav a:hover::after,
.sf-nav .current-menu-item > a::after,
.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after {
    transform: scaleX(1);
}

.sf-header.is-scrolled .sf-nav a,
.site-header.is-scrolled .main-navigation a {
    background: transparent;
    color: #ffffff;
    border: 0;
    box-shadow: none;
}

.sf-header.is-scrolled .sf-nav a::after,
.site-header.is-scrolled .main-navigation a::after {
    background: #bc1c1c;
}

.sf-header.is-scrolled .sf-nav a:hover,
.sf-header.is-scrolled .sf-nav .current-menu-item > a,
.site-header.is-scrolled .main-navigation a:hover,
.site-header.is-scrolled .main-navigation .current-menu-item > a {
    background: transparent;
    color: #ffffff;
}

.sf-menu-toggle,
.menu-toggle {
    display: none;
    width: 46px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.38);
    cursor: pointer;
    padding: 8px 10px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.sf-menu-toggle span,
.menu-toggle span:not(.screen-reader-text) {
    display: block;
    width: 25px;
    height: 2px;
    background: #ffffff;
    margin: 5px 0;
    border-radius: 99px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.sf-menu-toggle.is-active span:nth-child(1),
.menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.sf-menu-toggle.is-active span:nth-child(2),
.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.sf-menu-toggle.is-active span:nth-child(3),
.menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =====================================================
   US SPEEDFRAME HOME / LANDING PAGE
===================================================== */

.us-speedframe-home {
    font-family: 'Roboto', Arial, sans-serif;
    color: var(--sf-dark);
    background: #ffffff;
    overflow: hidden;
}

.us-speedframe-home a {
    color: inherit;
    text-decoration: none;
}

.us-speedframe-home img {
    max-width: 100%;
    display: block;
}

/* =====================================================
   HOME HERO SLIDER
===================================================== */

.sf-hero-slider {
    position: relative;
    height: 85vh;
    min-height: 600px;
    max-height: 1900px;
    overflow: hidden;
    background: #d7e1e8;
}

.sf-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.85s ease,
        visibility 0.85s ease;
}

.sf-slide.active {
    opacity: 1;
    visibility: visible;
}

.sf-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.04);
    transition: transform 6s ease;
}

.sf-slide.active .sf-slide-bg {
    transform: scale(1);
}

.sf-slide-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(11, 20, 40, 0.36) 0%,
            rgba(11, 20, 40, 0.08) 38%,
            rgba(11, 20, 40, 0.04) 100%
        );
}

.sf-hero-card {
    position: absolute;
    z-index: 5;
    left: 0;
    bottom: 0;

    width: min(320px, 32vw);
    min-height: 120px;

    padding: 18px 24px 20px 32px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: rgba(255, 255, 255, 0.84);
    color: #172032;
    border-radius: 0 20px 0 0;

    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);

    box-shadow: 0 -8px 24px rgba(17, 24, 39, 0.06);
}

.sf-hero-card h1,
.sf-hero-card h2 {
    max-width: 240px;
    margin: 0 0 8px;

    color: #0c2a78;
    font-size: clamp(16px, 1.8vw, 22px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-align: left;
}

.sf-hero-card p {
    max-width: 230px;
    margin: 0;

    color: #172032;
    font-size: clamp(10px, 0.8vw, 12px);
    font-weight: 400;
    line-height: 1.4;
}

.sf-slider-dots {
    position: absolute;
    z-index: 10;
    right: 34px;
    bottom: 28px;

    display: flex;
    gap: 9px;
}

.sf-slider-dots button {
    width: 9px;
    height: 9px;

    padding: 0;
    border: 0;
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.55);

    cursor: pointer;
    transition: all 0.25s ease;
}

.sf-slider-dots button.active {
    width: 28px;
    background: #ffffff;
}

/* =====================================================
   STRONGER / FASTER BANNER
===================================================== */

.sf-strength-banner {
    position: relative;
    background: #ffffff;
    padding: 46px 0 44px;
    overflow: hidden;
}

.sf-strength-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    display: none;
    pointer-events: none;
}

.sf-strength-inner {
    position: relative;
    z-index: 2;
    width: min(1120px, 94vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 42px;
    align-items: center;
}

.sf-strength-image {
    align-self: start;
}

.sf-strength-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: 0 16px 35px rgba(17, 24, 39, 0.12);
}

.sf-strength-content {
    text-align: center;
}

.sf-strength-content h2 {
    margin: 0;
    text-transform: uppercase;
    line-height: 0.96;
    letter-spacing: -0.045em;
}

.sf-strength-content h2 span {
    display: block;
    color: var(--sf-blue);
    font-size: clamp(46px, 6vw, 66px);
    font-weight: 900;
}

.sf-strength-content h2 strong {
    display: block;
    color: #c62828;
    font-size: clamp(42px, 5.4vw, 66px);
    font-weight: 900;
}

.sf-strength-content h2 em {
    display: block;
    color: #3b3b3b;
    font-size: clamp(40px, 5.6vw, 66px);
    font-style: normal;
    font-weight: 900;
}

.sf-strength-content p {
    max-width: 620px;
    margin: 18px auto 0;
    color: #333333;
    font-size: 19px;
    line-height: 1.45;
}

.sf-strength-icons {
    grid-column: 1 / -1;
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 22px;
}

.sf-strength-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 76px;
}

.sf-strength-symbol {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: var(--sf-blue);
    font-size: 36px;
    line-height: 1;
}

.sf-strength-symbol.red {
    color: #c62828;
}

.sf-strength-item h3 {
    margin: 0;
    color: var(--sf-blue);
    font-size: 19px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
}

.sf-strength-item p {
    margin: 6px 0 0;
    color: #555555;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
}

.sf-strength-divider {
    width: 2px;
    height: 52px;
    background: #b8b8b8;
}

.sf-strength-tagline {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 16px;
}

.sf-strength-tagline span {
    width: 86px;
    height: 3px;
    background: var(--sf-blue);
}

.sf-strength-tagline p {
    margin: 0;
    color: #3b3b3b;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    text-align: center;
}

/* =====================================================
   BRAND STORY
===================================================== */

.sf-brand-story {
    background: #ffffff;
    padding: 82px 0;
    border-top: 1px solid var(--sf-line);
    border-bottom: 1px solid var(--sf-line);
}

.sf-brand-story-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 58px;
    align-items: center;
}

.sf-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #9fb4d2;
    font-size: 19px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.sf-label.blue {
    color: var(--sf-blue);
}

.sf-brand-story .sf-label {
    font-size: 20px;
    letter-spacing: 0.18em;
    margin-bottom: 18px;
}

.sf-brand-story-content h2 {
    max-width: 720px;
    margin: 0 0 22px;
    color: #172032;
    font-size: clamp(34px, 4.8vw, 58px);
    line-height: 0.98;
    font-weight: 500;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.sf-brand-story-content p {
    max-width: 720px;
    margin: 0 0 18px;
    color: #4b5563;
	text-align: justify;
	text-align-last: left;
    font-size: 16px;
	font-weight: 400;
    line-height: 1.75;
}

.sf-brand-story-card {
    min-height: 360px;
    padding: 38px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(180deg, rgba(11, 42, 120, 0.08), rgba(11, 42, 120, 0.92)),
        url("http://usspeedframe.com/wp-content/uploads/2026/07/Contemporary-Luxe-1.jpg");
    background-size: cover;
    background-position: center;
    color: #ffffff;
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(17, 24, 39, 0.18);
}

.sf-brand-story-card h3 {
    margin: 0 0 10px;
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.sf-brand-story-card p {
    margin: 0;
    color: #e5e7eb;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    line-height: 1.5;
}

/* =====================================================
   PRODUCTS
===================================================== */

.sf-products,
.sf-works {
    background: #ffffff;
    padding: 44px 0 72px;
}

.sf-section-heading {
    margin-bottom: 26px;
}

.sf-section-heading h2 {
    max-width: 680px;
    margin: 0 0 20px;
    color: #172032;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.sf-product-sample-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.sf-product-sample-card {
    background: #ffffff;
    border: 1px solid var(--sf-line);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sf-product-sample-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(17, 24, 39, 0.12);
}

.sf-product-sample-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.sf-product-sample-content {
    padding: 16px 14px 18px;
}

.sf-product-sample-content h3 {
    margin: 0 0 8px;
    color: #172032;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
}

.sf-product-sample-content p {
    margin: 0 0 14px;
    color: #555555;
    font-size: 13px;
    line-height: 1.5;
}

.sf-product-sample-content a {
    display: inline-flex;
    align-items: center;
    color: var(--sf-blue);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.sf-product-sample-content a::after {
    content: "+";
    margin-left: 8px;
    color: #c62828;
}

/* =====================================================
   ABOUT
===================================================== */

.sf-about {
    background: var(--sf-navy);
    color: #ffffff;
    padding: 90px 0;
}

.sf-two-col {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
    align-items: center;
}

.sf-about-images {
    position: relative;
    min-height: 420px;
}

.sf-img-card {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.sf-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sf-img-card.large {
    width: 82%;
    height: 330px;
}

.sf-img-card.small {
    position: absolute;
    width: 58%;
    height: 230px;
    right: 0;
    bottom: 0;
    border: 8px solid var(--sf-navy);
}

.sf-about h2 {
    margin: 0 0 20px;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.sf-about p {
    color: #c9d2df;
    font-size: 16px;
	font-weight: 400;
    line-height: 1.75;
	text-align: justify;
	text-align-last: left;
}

.sf-process {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.sf-process div {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    padding-top: 16px;
}

.sf-process strong {
    display: block;
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
}

.sf-process span {
    display: block;
    margin-top: 8px;
    color: #c9d2df;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* =====================================================
   FEATURES
===================================================== */

.sf-features {
    padding: 60px 0;
    background: #ffffff;
}

.sf-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--sf-line);
    border-bottom: 1px solid var(--sf-line);
}

.sf-feature-card {
    padding: 38px 34px;
    border-right: 1px solid var(--sf-line);
}

.sf-feature-card:last-child {
    border-right: 0;
}

.sf-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    display: grid;
    place-items: center;
    font-size: 24px;
    color: var(--sf-blue);
}

.sf-feature-card h3 {
    margin: 0 0 12px;
    color: #172032;
    font-size: 18px;
    font-weight: 800;
}

.sf-feature-card p {
    margin: 0;
    color: var(--sf-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* =====================================================
   CLIENTS
===================================================== */

.sf-clients {
    padding: 40px 0 54px;
    background: #ffffff;
}

.sf-clients h2 {
    margin: 0 0 24px;
    color: var(--sf-blue);
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
}

.sf-client-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid var(--sf-line);
    border-bottom: 1px solid var(--sf-line);
}

.sf-client-grid div {
    min-height: 94px;
    display: grid;
    place-items: center;
    text-align: center;
    color: #6b7280;
    font-size: 15px;
    font-weight: 800;
    border-right: 1px solid var(--sf-line);
}

.sf-client-grid div:last-child {
    border-right: 0;
}

/* =====================================================
   FIND US
===================================================== */

.sf-find-us-section {
    width: 100%;
    background: #ffffff;
    color: var(--sf-blue);
    padding: 92px 0 96px;
}

.sf-find-us-container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.sf-find-us-container h2 {
    margin: 0 0 34px;
    padding: 0;
    color: var(--sf-blue);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sf-find-us-map {
    width: 100%;
    height: 430px;
    overflow: hidden;
    background: #eef2f7;
}

.sf-find-us-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(5%) saturate(0.95);
}

/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    background: #111827;
    color: #ffffff;
    padding: 70px 0 26px;
}

.footer-grid {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 36px;
}

.site-footer h2,
.site-footer h3 {
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.site-footer p,
.site-footer a {
    color: #c9d2df;
	font-size: 12px;
}

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

.footer-bottom {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    margin-top: 42px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #9ca3af;
    font-size: 10px;
}
.sf-footer-tagline {
    position: relative;

    max-width: 285px;
    margin: 2px 0 0;
    padding-left: 16px;

    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 0.01em;
}

.sf-footer-tagline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;

    width: 3px;
    height: calc(100% - 14px);
    min-height: 34px;

    background: #bc1c1c;
    border-radius: 999px;
}


/* FINAL CUSTOM FOOTER */

.site-footer.sf-footer {
    width: 100%;
    background: #1d2634;
    color: #ffffff;
    padding: 42px 0 38px;
    margin: 0;
}

.sf-footer-container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1.35fr 0.9fr 0.9fr 1.35fr;
    gap: 56px;
    align-items: start;
}

.sf-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.sf-footer-logo-wrap {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
}

.sf-footer-logo {
    display: block;
    width: 210px;
    max-width: 210px;
    height: auto;
    object-fit: contain;
    filter:
        brightness(0)
        invert(1)
        drop-shadow(0 2px 8px rgba(0, 0, 0, 0.14));
}

.sf-footer-socials {
    display: flex;
    align-items: center;
    gap: 7px;
}

.sf-footer-socials a {
    display: inline-grid;
    place-items: center;
    width: 17px;
    height: 17px;
    background: #ffffff;
    color: #1d2634;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.sf-footer-column {
    color: rgba(255, 255, 255, 0.86);
}

.sf-footer-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 18px;
}

.sf-footer-heading span {
    display: block;
    width: 44px;
    height: 1px;
    background: rgba(255, 255, 255, 0.72);
    flex-shrink: 0;
}

.sf-footer-heading h3 {
    margin: 0;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.sf-footer-column p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.55;
}

.sf-footer-column a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 0.2s ease;
}

.sf-footer-column a:hover {
    color: #ffffff;
}

.sf-footer-visit p {
    max-width: 280px;
}

.sf-footer .footer-bottom,
.site-footer.sf-footer .footer-bottom {
    display: none;
}

/* =====================================================
   ARCHIVE / SINGLE / PAGE
===================================================== */

.archive-main,
.single-main {
    padding: 140px 0 80px;
    background: var(--sf-soft);
    min-height: 70vh;
}

.page-header,
.entry-header {
    margin-bottom: 34px;
}

.page-header h1,
.entry-header h1 {
    font-size: clamp(36px, 6vw, 72px);
    line-height: 1;
    margin: 0;
    letter-spacing: -0.05em;
}

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

.post-card {
    background: #ffffff;
    border-radius: var(--sf-radius);
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(17, 24, 39, 0.08);
}

.post-image img {
    height: 240px;
    width: 100%;
    object-fit: cover;
}

.post-card-content {
    padding: 26px;
}

.post-meta {
    color: var(--sf-muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.post-card h2 {
    font-size: 24px;
    line-height: 1.15;
}

.text-link {
    font-weight: 800;
    color: #31517a;
}

.narrow-container {
    max-width: 920px;
}

.entry-article {
    background: #ffffff;
    padding: 42px;
    border-radius: var(--sf-radius);
    box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
}

.entry-featured-image {
    margin: 0 0 30px;
}

.entry-featured-image img {
    max-height: 520px;
    width: 100%;
}

.entry-content a {
    text-decoration: underline;
}

.entry-content img {
    border-radius: 12px;
}

.navigation,
.nav-links {
    margin-top: 30px;
}

.page-numbers {
    display: inline-flex;
    margin: 4px;
    padding: 8px 13px;
    background: #ffffff;
    border: 1px solid var(--sf-line);
    border-radius: 8px;
}

.page-numbers.current {
    background: var(--sf-dark);
    color: #ffffff;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .sf-header,
    .site-header {
        padding: 18px 0;
    }

    .sf-header.is-scrolled,
    .site-header.is-scrolled {
        padding: 14px 0;
    }

    .sf-logo,
    .brand-text {
        font-size: 24px;
    }

    .sf-direct-logo {
        width: 240px;
        max-width: 240px;
    }

    .sf-header:not(.is-scrolled) .sf-direct-logo,
    .site-header:not(.is-scrolled) .sf-direct-logo {
        width: 240px;
        max-width: 240px;
    }

    .sf-header.is-scrolled .sf-direct-logo,
    .site-header.is-scrolled .sf-direct-logo {
        width: 220px;
        max-width: 220px;
    }
	
	.site-main{
		padding-top: 98px;
	}
	
	.sf-header.is-scrolled,
    .site-header.is-scrolled {
        padding: 18px 0;
    }

    .sf-menu-toggle,
    .menu-toggle {
        display: block;
		background: #08295f;
    }
	
	.sf-header.is-scrolled .sf-menu-toggle,
	.site-header.is-scrolled .menu-toggle {
		background: #ffffff;
	}

	.sf-header.is-scrolled .sf-menu-toggle span,
	.site-header.is-scrolled .menu-toggle span:not(.screen-reader-text) {
		background: #08295f;
	}

    .sf-nav,
    .main-navigation {
        position: absolute;
        top: 70px;
        left: 6vw;
        right: 6vw;
        display: none;
        background: rgba(17, 24, 39, 0.96);
        border-radius: 18px;
        padding: 16px;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .sf-nav.open,
    .sf-nav.is-open,
    .main-navigation.open,
    .main-navigation.is-open {
        display: block;
    }

    .sf-nav ul,
    .main-navigation ul {
        display: grid;
        gap: 10px;
    }

    .sf-nav a,
    .main-navigation a {
        width: 100%;
        min-width: 0;
        background: rgba(255, 255, 255, 0.12);
        padding: 13px 18px;
		color: #ffffff;
    }

    .sf-hero-slider {
        height: 680px;
        min-height: 580px;
    }

    .sf-hero-card {
        width: min(72vw, 360px);
        min-height: 120px;
        padding: 22px 26px;
        border-radius: 0 22px 0 0;
    }

    .sf-hero-card h1,
    .sf-hero-card h2 {
        max-width: 310px;
        margin: 0 0 10px;
        font-size: clamp(22px, 4vw, 30px);
        line-height: 1.05;
        text-align: left;
    }

    .sf-hero-card p {
        max-width: 300px;
        font-size: 12px;
        line-height: 1.45;
    }

    .sf-strength-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .sf-strength-image {
        max-width: 420px;
        margin: 0 auto;
    }

    .sf-strength-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .sf-strength-divider {
        display: none;
    }

    .sf-strength-tagline {
        gap: 14px;
    }

    .sf-strength-tagline span {
        width: 46px;
    }

    .sf-strength-tagline p {
        font-size: 13px;
        letter-spacing: 0.18em;
    }

    .sf-brand-story-grid,
    .sf-two-col {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .sf-brand-story-card {
        min-height: 300px;
    }

    .sf-product-sample-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sf-product-sample-card img {
        height: 220px;
    }

    .sf-feature-grid {
        grid-template-columns: 1fr;
    }

    .sf-feature-card {
        border-right: 0;
        border-bottom: 1px solid var(--sf-line);
    }

    .sf-feature-card:last-child {
        border-bottom: 0;
    }

    .sf-client-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sf-client-grid div {
        border-bottom: 1px solid var(--sf-line);
    }

    .sf-find-us-section {
        padding: 76px 0 80px;
    }

    .sf-find-us-map {
        height: 380px;
    }

    .footer-grid,
    .sf-footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 34px 42px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .sf-footer-logo {
        width: 190px;
        max-width: 190px;
    }
    .entry-article {
        padding: 26px;
    }
}

@media (max-width: 782px) {
    .admin-bar .sf-header,
    .admin-bar .site-header {
        top: 46px;
    }
}

@media (max-width: 600px) {
    .admin-bar .sf-header,
    .admin-bar .site-header {
        top: 0;
    }
}

@media (max-width: 560px) {
	.site-main {
    padding-top: 98px;
	}
	
    .sf-container,
    .container,
    .sf-section-container,
    .sf-header-inner,
    .nav-wrap,
    .footer-grid,
    .footer-bottom {
        width: min(100% - 28px, 1180px);
    }

    .sf-direct-logo {
        width: 190px;
        max-width: 190px;
    }

    .sf-header:not(.is-scrolled) .sf-direct-logo,
    .site-header:not(.is-scrolled) .sf-direct-logo {
        width: 190px;
        max-width: 190px;
    }

    .sf-header.is-scrolled .sf-direct-logo,
    .site-header.is-scrolled .sf-direct-logo {
        width: 175px;
        max-width: 175px;
    }

    .sf-hero-slider {
        height: 620px;
        min-height: 560px;
    }

    .sf-hero-card {
        width: calc(100% - 90px);
        min-height: 120px;
        padding: 20px 20px 22px;
        border-radius: 0 20px 0 0;
    }

    .sf-hero-card h1,
    .sf-hero-card h2 {
        max-width: 100%;
        margin: 0 0 8px;
        font-size: clamp(20px, 6.5vw, 26px);
        line-height: 1.05;
        text-align: left;
    }

    .sf-hero-card p {
        max-width: 100%;
        font-size: 11px;
        line-height: 1.4;
    }

    .sf-slider-dots {
        right: 20px;
        bottom: 18px;
    }

    .sf-strength-banner {
        padding: 36px 0;
    }

    .sf-strength-image img {
        height: 220px;
    }

    .sf-strength-content h2 span,
    .sf-strength-content h2 strong,
    .sf-strength-content h2 em {
        font-size: 42px;
    }

    .sf-strength-icons {
        grid-template-columns: 1fr;
    }

    .sf-strength-item {
        justify-content: flex-start;
        padding: 0 20px;
    }

    .sf-strength-tagline {
        flex-direction: column;
        gap: 10px;
    }

    .sf-strength-tagline p {
        font-size: 12px;
        line-height: 1.6;
    }

    .sf-brand-story {
        padding: 58px 0;
    }

    .sf-brand-story-card {
        min-height: 260px;
        padding: 28px;
    }

    .sf-brand-story-card h3 {
        font-size: 28px;
    }

    .sf-about {
        padding: 58px 0;
    }

    .sf-about-images {
        min-height: auto;
    }

    .sf-img-card.large,
    .sf-img-card.small {
        position: relative;
        width: 100%;
        height: 250px;
        right: auto;
        bottom: auto;
        border: 0;
    }

    .sf-img-card.small {
        margin-top: 18px;
    }

    .sf-process {
        grid-template-columns: 1fr;
    }

    .sf-products,
    .sf-works {
        padding: 36px 0 54px;
    }

    .sf-product-sample-grid {
        grid-template-columns: 1fr;
    }

    .sf-product-sample-card img {
        height: 230px;
    }

    .sf-client-grid {
        grid-template-columns: 1fr;
    }

    .sf-find-us-section {
        padding: 58px 0 64px;
    }

    .sf-find-us-container {
        width: min(100% - 28px, 1180px);
    }

    .sf-find-us-container h2 {
        margin-bottom: 24px;
        font-size: 32px;
    }

    .sf-find-us-map {
        height: 320px;
    }

    .site-footer.sf-footer {
        padding: 36px 0;
    }

    .sf-footer-container {
        width: min(100% - 28px, 1180px);
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .sf-footer-logo {
        width: 180px;
        max-width: 180px;
    }

    .sf-footer-heading {
        gap: 12px;
        margin-bottom: 12px;
    }

    .sf-footer-heading span {
        width: 34px;
    }
	.sf-footer-tagline{
		max-width: 100%;
		font-size: 10px;
		line-height: 1.6;
	}

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

    .archive-main,
    .single-main {
        padding-top: 110px;
    }
}