:root {
    --green: #277c67;
    --green-dark: #155a49;
    --mint: #eaf8f3;
    --sand: #f7f1e7;
    --clay: #b97b52;
    --ink: #18302a;
    --muted: #63766f;
    --line: #dbe9e4;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(24, 48, 42, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.nav-wrap {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand-mark {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    font-weight: 900;
    letter-spacing: -0.06em;
}

.brand-mark strong {
    display: block;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.1;
}

.brand-mark small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: 3px;
}

.main-nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

.main-nav a {
    padding: 10px 13px;
    border-radius: 999px;
    color: var(--ink);
    font-weight: 800;
    font-size: 14px;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--green);
    background: var(--mint);
}

.hero {
    padding: 92px 0;
    background:
        radial-gradient(circle at 82% 18%, rgba(185, 123, 82, 0.18), transparent 27%),
        linear-gradient(135deg, #f3fbf8 0%, #ffffff 58%, #fff9f0 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 48px;
    align-items: center;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--green);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
}

h1,
h2,
h3 {
    margin-top: 0;
    color: var(--ink);
    line-height: 1.08;
}

h1 {
    font-size: clamp(42px, 6vw, 70px);
    letter-spacing: -0.06em;
    margin-bottom: 22px;
}

h2 {
    font-size: clamp(30px, 4vw, 44px);
    letter-spacing: -0.045em;
    margin-bottom: 18px;
}

h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

p {
    margin-top: 0;
}

.hero-lead,
.page-lead {
    font-size: 20px;
    color: #3f5a51;
    max-width: 780px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 900;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn.primary {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 12px 25px rgba(39, 124, 103, 0.22);
}

.btn.primary:hover {
    background: var(--green-dark);
}

.btn.secondary {
    background: var(--white);
    color: var(--ink);
    border-color: var(--line);
}

.btn.light {
    background: var(--white);
    color: var(--green-dark);
}

.btn.full {
    width: 100%;
    border: 0;
    font-size: 16px;
}

.hero-card,
.ingredient-card,
.value-card,
.story-card,
.contact-panel,
.contact-form,
.ingredient-detail,
.use-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 10px 28px rgba(24, 48, 42, 0.06);
}

.hero-card {
    box-shadow: var(--shadow);
}

.hero-card ul {
    padding-left: 20px;
    margin: 0;
}

.hero-card li {
    margin: 10px 0;
    color: #3f5a51;
}

.section {
    padding: 82px 0;
}

.section.soft {
    background: var(--mint);
}

.split {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 58px;
}

.split p {
    font-size: 18px;
    color: #3f5a51;
}

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

.ingredient-grid,
.value-grid,
.use-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.value-grid {
    grid-template-columns: repeat(4, 1fr);
}

.ingredient-card h3,
.value-card h3 {
    color: var(--green-dark);
}

.ingredient-card p,
.value-card p,
.story-card p,
.contact-panel p,
.ingredient-detail p {
    color: #4d665e;
}

.product-story {
    background: linear-gradient(135deg, #ffffff, var(--sand));
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: stretch;
}

.benefit-list {
    display: grid;
    gap: 14px;
}

.benefit-list div,
.contact-points div {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 20px;
}

.benefit-list strong,
.benefit-list span,
.contact-points strong,
.contact-points span {
    display: block;
}

.benefit-list strong,
.contact-points strong {
    color: var(--green-dark);
    margin-bottom: 4px;
}

.benefit-list span,
.contact-points span {
    color: var(--muted);
}

.cta-band {
    padding: 58px 0;
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: var(--white);
}

.cta-band h2,
.cta-band p {
    color: var(--white);
}

.cta-band p {
    opacity: 0.9;
}

.cta-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.page-hero {
    padding: 84px 0 60px;
    background:
        radial-gradient(circle at 86% 12%, rgba(185, 123, 82, 0.16), transparent 24%),
        linear-gradient(135deg, #f3fbf8, #ffffff);
}

.ingredient-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.use-grid {
    grid-template-columns: repeat(3, 1fr);
}

.use-card {
    font-weight: 900;
    color: var(--green-dark);
    min-height: 112px;
    display: flex;
    align-items: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
    align-items: start;
}

.contact-points {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.form-row.two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-weight: 900;
    font-size: 14px;
}

input,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px 15px;
    font: inherit;
    color: var(--ink);
    background: #fbfffd;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: rgba(39, 124, 103, 0.65);
    box-shadow: 0 0 0 4px rgba(39, 124, 103, 0.1);
}

.notice {
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 900;
}

.notice.success {
    background: #eaf8ef;
    color: #1f7a3f;
}

.notice.error {
    background: #fff0f0;
    color: #a33434;
}

.small-note {
    padding: 18px;
    border-radius: 18px;
    background: #fff9f0;
    border: 1px solid #ead7bc;
    color: #6b4b2d !important;
    font-size: 15px !important;
}

.site-footer {
    padding: 34px 0;
    background: #0f2c25;
    color: var(--white);
}

.footer-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-footer p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.72);
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.84);
    font-weight: 800;
}

@media (max-width: 940px) {
    .nav-wrap,
    .cta-wrap,
    .footer-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-wrap: wrap;
    }

    .hero-grid,
    .split,
    .story-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .ingredient-grid,
    .value-grid,
    .use-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {
        padding: 64px 0;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1120px);
    }

    h1 {
        font-size: 40px;
    }

    .ingredient-grid,
    .value-grid,
    .use-grid,
    .form-row.two {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 58px 0;
    }
}

/* FDF4 brand/logo + light imagery polish */
.brand-logo {
    display: block;
    width: 142px;
    max-width: 38vw;
    height: auto;
}

.brand-text {
    display: block;
}

.hero-product-card {
    padding: 0;
    overflow: hidden;
}

.hero-product-image {
    display: block;
    width: 100%;
    height: 315px;
    object-fit: contain;
    background: #f3fbf8;
    padding: 18px;
}

.hero-product-content {
    padding: 26px 28px 28px;
}

.hero-product-content ul {
    padding-left: 20px;
    margin: 0;
}

.hero-product-content li {
    margin: 10px 0;
    color: #3f5a51;
}

.visual-split {
    align-items: center;
}

.about-image-card {
    margin-top: 24px;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
    border: 1px solid var(--line);
}

.about-image-card img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.image-heading {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
    max-width: none;
}

.image-heading img {
    display: block;
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.ingredient-detail-enhanced {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    align-items: center;
}

.ingredient-detail-enhanced img {
    display: block;
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 22px;
}

.footer-meta {
    margin-top: 8px;
    margin-bottom: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 940px) {
    .image-heading,
    .ingredient-detail-enhanced {
        grid-template-columns: 1fr;
    }

    .brand-logo {
        width: 132px;
    }
}

@media (max-width: 640px) {
    .hero-product-image {
        height: 260px;
    }

    .about-image-card img,
    .image-heading img,
    .ingredient-detail-enhanced img {
        height: 210px;
    }
}

/* FDF5 mockup-style blue product-brand redesign */
:root {
    --ink: #071f4d;
    --muted: #46617f;
    --green: #08715f;
    --green-dark: #064f43;
    --blue: #005edc;
    --blue-dark: #002d82;
    --aqua: #dff6ff;
    --aqua-2: #eefaff;
    --line: #cfe1ef;
    --mint: #eefaff;
    --sand: #eefaff;
    --shadow: 0 18px 42px rgba(0, 60, 150, 0.12);
}

body {
    color: var(--ink);
    background: #ffffff;
}

.site-header {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #d9e8f4;
}

.nav-wrap {
    min-height: 74px;
}

.brand-logo {
    width: 112px !important;
    max-width: 28vw;
}

.brand-mark {
    gap: 12px;
}

.brand-text strong {
    color: var(--ink);
    font-size: 15px;
}

.brand-text small {
    color: var(--muted);
    font-size: 11px;
}

.main-nav a {
    color: var(--ink);
    border-radius: 0;
    background: transparent;
    padding: 10px 13px;
    border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--blue);
    background: transparent;
    border-bottom-color: var(--blue);
}

.fdf-hero {
    padding: 72px 0 48px;
    background:
        radial-gradient(circle at 82% 31%, rgba(37, 177, 229, 0.34), transparent 27%),
        radial-gradient(circle at 78% 68%, rgba(0, 94, 220, 0.10), transparent 34%),
        linear-gradient(105deg, #ffffff 0%, #f8fcff 43%, #dff6ff 100%);
    overflow: hidden;
}

.fdf-hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
    align-items: center;
}

.fdf-hero-copy h1 {
    color: var(--blue-dark);
    font-size: clamp(48px, 6vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.eyebrow {
    color: #007260;
}

.fdf-hero-copy .hero-lead {
    color: #193e68;
    font-size: 18px;
    max-width: 470px;
}

.btn.primary {
    background: linear-gradient(135deg, var(--blue), #004fc2);
    box-shadow: 0 10px 24px rgba(0, 94, 220, 0.24);
}

.btn.secondary {
    color: var(--blue);
    border-color: rgba(0, 94, 220, 0.42);
    background: rgba(255, 255, 255, 0.72);
}

.fdf-product-stage {
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.fdf-product-stage::before {
    content: "";
    position: absolute;
    inset: 6% 2% 0 2%;
    background:
        radial-gradient(circle at 58% 46%, rgba(255, 255, 255, 0.86), transparent 34%),
        radial-gradient(circle at 70% 63%, rgba(0, 94, 220, 0.12), transparent 34%);
    filter: blur(2px);
}

.fdf-product-stage::after {
    content: "";
    position: absolute;
    width: 92%;
    height: 42%;
    right: -8%;
    bottom: 20%;
    border-radius: 50%;
    border-top: 3px solid rgba(255, 255, 255, 0.92);
    transform: rotate(-10deg);
    opacity: 0.75;
}

.fdf-hero-product {
    position: relative;
    z-index: 2;
    display: block;
    width: min(470px, 86%);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 28px rgba(0, 45, 130, 0.16));
}

.audience-wrap {
    margin-top: 34px;
}

.audience-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #d7e9f6;
    border-radius: 20px;
    padding: 20px 24px;
    box-shadow: var(--shadow);
}

.audience-card .eyebrow {
    margin-bottom: 12px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.audience-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 12px;
    align-items: center;
    padding: 8px 18px;
    border-right: 1px solid #d5e4ef;
}

.audience-item:last-child {
    border-right: 0;
}

.audience-icon {
    grid-row: span 2;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 2px solid var(--blue);
    border-radius: 14px;
    color: var(--blue);
    font-weight: 900;
}

.audience-item strong {
    color: var(--blue-dark);
    font-size: 14px;
}

.audience-item small {
    color: var(--muted);
    font-size: 12px;
}

.fdf-lifestyle-band {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background:
        linear-gradient(90deg, #ffffff 0%, #ffffff 48%, #eefaff 100%);
    border-top: 1px solid #d8e8f4;
    border-bottom: 1px solid #d8e8f4;
}

.fdf-lifestyle-image {
    min-height: 440px;
    overflow: hidden;
}

.fdf-lifestyle-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
}

.fdf-lifestyle-copy {
    padding: clamp(44px, 6vw, 78px);
    align-self: center;
}

.fdf-lifestyle-copy h2 {
    color: var(--blue-dark);
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.05;
}

.fdf-lifestyle-copy p {
    color: #16395f;
    font-size: 16px;
}

.fdf-ingredients-preview {
    background: #ffffff;
    padding-top: 64px;
}

.centered {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.centered h2 {
    color: var(--blue-dark);
}

.ingredient-visual-grid {
    align-items: stretch;
}

.ingredient-visual-card {
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 12px 22px;
    border-radius: 0;
    border-right: 1px solid #d3e2ee;
}

.ingredient-visual-card:last-child {
    border-right: 0;
}

.ingredient-visual-card h3 {
    color: var(--blue);
}

.ingredient-visual-card p {
    color: #17395f;
    font-size: 14px;
}

.ingredient-illustration {
    width: 145px;
    height: 96px;
    margin-bottom: 16px;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, #ffffff 0 28%, transparent 29%),
        radial-gradient(circle at 50% 68%, rgba(0, 94, 220, 0.14), transparent 50%);
    position: relative;
}

.ingredient-illustration::before {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 16px;
    height: 48px;
    border-radius: 50% 50% 46% 46%;
    background: #c98742;
    box-shadow: inset 0 -12px 0 rgba(80, 45, 20, 0.16);
}

.ingredient-illustration::after {
    content: "";
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 48px;
    height: 24px;
    border-radius: 50%;
    background: #f1eee5;
    box-shadow: 0 -10px 18px rgba(255,255,255,.6);
}

.powder-bowl::after {
    background: #fff6e5;
}

.bark-stack::before {
    left: 24px;
    right: 26px;
    bottom: 30px;
    height: 14px;
    border-radius: 6px;
    background: #9a6a3d;
    box-shadow:
        12px -14px 0 #b7864f,
        25px 4px 0 #8e5f34,
        48px -8px 0 #a87945;
    transform: rotate(-8deg);
}

.bark-stack::after {
    left: 86px;
    right: auto;
    bottom: 62px;
    width: 38px;
    height: 34px;
    border-radius: 50% 0 50% 0;
    background: #63b33d;
    transform: rotate(-24deg);
}

.trust-strip {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #d5e5f0;
    border-radius: 18px;
    background: rgba(255,255,255,.88);
    overflow: hidden;
}

.trust-strip div {
    padding: 20px 24px;
    display: grid;
    grid-template-columns: 40px 1fr;
    column-gap: 12px;
    border-right: 1px solid #d5e5f0;
}

.trust-strip div:last-child {
    border-right: 0;
}

.trust-strip span {
    grid-row: span 2;
    color: #08715f;
    font-size: 30px;
}

.trust-strip strong {
    color: #08715f;
}

.trust-strip small {
    color: var(--muted);
}

.ingredient-detail-enhanced {
    display: block !important;
}

.fdf-footer {
    background: linear-gradient(135deg, #005edc, #00339b);
    color: #ffffff;
    padding: 46px 0 0;
}

.fdf-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.9fr 0.9fr 1.15fr;
    gap: 40px;
    align-items: start;
}

.footer-logo {
    display: block;
    width: 138px;
    height: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.fdf-footer p {
    color: rgba(255,255,255,.86);
    margin: 0;
}

.fdf-footer strong {
    display: block;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: 13px;
    margin-bottom: 14px;
}

.footer-links.stacked {
    display: grid;
    gap: 9px;
}

.footer-links.stacked a {
    color: rgba(255,255,255,.9);
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.social-icons span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.95);
    color: var(--blue);
    font-weight: 900;
}

.footer-bottom {
    margin-top: 36px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.18);
    display: flex;
    justify-content: center;
    gap: 64px;
    color: rgba(255,255,255,.82);
    font-size: 13px;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 940px) {
    .fdf-hero-grid,
    .fdf-lifestyle-band,
    .fdf-footer-grid {
        grid-template-columns: 1fr;
    }

    .audience-grid,
    .trust-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .audience-item,
    .trust-strip div {
        border-right: 0;
        border-bottom: 1px solid #d5e4ef;
    }

    .fdf-product-stage {
        min-height: 320px;
    }

    .fdf-hero-product {
        width: min(380px, 86%);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .brand-logo {
        width: 96px !important;
    }

    .fdf-hero {
        padding: 46px 0 36px;
    }

    .audience-grid,
    .trust-strip,
    .ingredient-grid {
        grid-template-columns: 1fr !important;
    }

    .fdf-lifestyle-copy {
        padding: 34px 22px;
    }
}

/* FDF5G product image fallback balance */
.fdf-product-stage {
    min-height: 390px;
}

.fdf-hero-product {
    width: min(390px, 76%) !important;
    background: transparent;
    border-radius: 0;
    mix-blend-mode: multiply;
}

.brand-logo {
    width: 96px !important;
}

@media (max-width: 940px) {
    .fdf-hero-product {
        width: min(330px, 78%) !important;
    }
}

/* FDF6 product/header balance cleanup */
.brand-logo {
    width: 90px !important;
}

.brand-text strong {
    font-size: 14px !important;
}

.brand-text small {
    font-size: 10px !important;
}

.fdf-product-stage {
    min-height: 390px !important;
}

.fdf-product-stage::before {
    background:
        radial-gradient(circle at 58% 46%, rgba(255, 255, 255, 0.38), transparent 34%),
        radial-gradient(circle at 70% 63%, rgba(0, 94, 220, 0.12), transparent 34%) !important;
}

.fdf-hero-product {
    width: min(420px, 78%) !important;
    background: transparent !important;
    mix-blend-mode: normal !important;
    filter: drop-shadow(0 24px 30px rgba(0, 45, 130, 0.18)) !important;
}

@media (max-width: 940px) {
    .fdf-hero-product {
        width: min(340px, 78%) !important;
    }
}

/* ============================================================
   FDF HERO PRODUCT + AUDIENCE ROW CLEANUP
   ============================================================ */

.fdf-hero-product-image{
  display:block;
  max-width:100%;
  width:420px;
  height:auto;
  margin:0 auto;
}

.fdf-audience-card{
  background:#fff;
  border:1px solid #d9e4ef;
  border-radius:22px;
  box-shadow:0 8px 24px rgba(10,50,120,.08);
  padding:22px 26px;
  margin-top:28px;
}

.fdf-audience-title{
  font-size:14px;
  line-height:1.2;
  letter-spacing:.12em;
  font-weight:800;
  color:#0b7a66;
  text-transform:uppercase;
  margin-bottom:18px;
}

.fdf-audience-grid{
  display:grid;
  grid-template-columns:repeat(5, minmax(0, 1fr));
  gap:0;
}

.fdf-audience-item{
  display:flex;
  align-items:center;
  gap:14px;
  padding:10px 18px;
  border-right:1px solid #d9e4ef;
}

.fdf-audience-item:last-child{
  border-right:none;
}

.fdf-audience-icon{
  width:52px;
  height:52px;
  min-width:52px;
  border:2px solid #1c63e8;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#1c63e8;
  background:#fff;
}

.fdf-audience-icon svg{
  width:24px;
  height:24px;
  display:block;
}

.fdf-audience-copy{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.fdf-audience-copy strong{
  font-size:16px;
  line-height:1.2;
  color:#0c2f79;
  font-weight:800;
}

.fdf-audience-copy span{
  font-size:14px;
  line-height:1.45;
  color:#35507f;
}

@media (max-width: 1100px){
  .fdf-audience-grid{
    grid-template-columns:1fr;
  }

  .fdf-audience-item{
    border-right:none;
    border-bottom:1px solid #d9e4ef;
    padding:14px 0;
  }

  .fdf-audience-item:last-child{
    border-bottom:none;
  }

  .fdf-hero-product-image{
    width:340px;
  }
}

@media (max-width: 768px){
  .fdf-hero-product-image{
    width:280px;
  }

  .fdf-audience-card{
    padding:18px 18px;
    border-radius:18px;
  }

  .fdf-audience-icon{
    width:46px;
    height:46px;
    min-width:46px;
    border-radius:14px;
  }

  .fdf-audience-copy strong{
    font-size:15px;
  }

  .fdf-audience-copy span{
    font-size:13px;
  }
}

/* FDF7 consistent hero audience icon row */
.fdf-audience-wrap {
    margin-top: 34px;
}

.fdf-audience-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #d7e9f6;
    border-radius: 20px;
    padding: 20px 24px;
    box-shadow: 0 18px 42px rgba(0, 60, 150, 0.12);
}

.fdf-audience-title {
    color: #007260;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.fdf-audience-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.fdf-audience-item {
    display: grid;
    grid-template-columns: 46px 1fr;
    column-gap: 14px;
    align-items: center;
    padding: 8px 18px;
    border-right: 1px solid #d5e4ef;
}

.fdf-audience-item:last-child {
    border-right: 0;
}

.fdf-audience-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 2px solid #005edc;
    border-radius: 14px;
    color: #005edc;
    background: #ffffff;
}

.fdf-audience-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.fdf-audience-copy {
    display: grid;
    gap: 4px;
}

.fdf-audience-copy strong {
    color: #002d82;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.15;
}

.fdf-audience-copy span {
    color: #46617f;
    font-size: 12px;
    line-height: 1.35;
}

/* Hide/de-prioritize old FDF5 placeholder icon selectors if any remain */
.audience-wrap,
.audience-card,
.audience-grid,
.audience-item,
.audience-icon {
    /* no-op reset target; new fdf-audience-* classes control the row */
}

@media (max-width: 1100px) {
    .fdf-audience-grid {
        grid-template-columns: 1fr;
    }

    .fdf-audience-item {
        border-right: 0;
        border-bottom: 1px solid #d5e4ef;
        padding: 14px 0;
    }

    .fdf-audience-item:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 640px) {
    .fdf-audience-card {
        padding: 18px;
    }

    .fdf-audience-item {
        grid-template-columns: 42px 1fr;
    }

    .fdf-audience-icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .fdf-audience-icon svg {
        width: 21px;
        height: 21px;
    }
}

/* FDF8 integrated hero product scene */
.fdf-product-stage {
    min-height: 390px !important;
    justify-content: center !important;
}

.fdf-product-stage::before,
.fdf-product-stage::after {
    display: none !important;
}

.fdf-hero-product {
    width: min(560px, 94%) !important;
    height: auto !important;
    display: block !important;
    background: transparent !important;
    box-shadow: none !important;
    filter: drop-shadow(0 22px 28px rgba(0, 45, 130, 0.08)) !important;
}

@media (max-width: 940px) {
    .fdf-product-stage {
        min-height: 300px !important;
    }

    .fdf-hero-product {
        width: min(420px, 92%) !important;
    }
}

/* FDF8D hero product image only fix */
.fdf-product-stage {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 430px !important;
    background: transparent !important;
    overflow: hidden !important;
}

.fdf-hero-product {
    display: block !important;
    width: min(500px, 96%) !important;
    max-width: 500px !important;
    height: auto !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    object-fit: contain !important;
}

@media (max-width: 980px) {
    .fdf-hero-product {
        width: min(400px, 92%) !important;
        max-width: 400px !important;
    }

    .fdf-product-stage {
        min-height: 320px !important;
    }
}

/* FDF8G hero product image blend/restoration */
.fdf-product-stage {
    min-height: 430px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background:
        radial-gradient(circle at 55% 48%, rgba(255,255,255,0.55), transparent 34%),
        radial-gradient(circle at 68% 58%, rgba(0,94,220,0.10), transparent 38%) !important;
    overflow: hidden !important;
}

.fdf-product-stage::before,
.fdf-product-stage::after {
    display: none !important;
}

.fdf-hero-product {
    display: block !important;
    width: min(390px, 78%) !important;
    max-width: 390px !important;
    height: auto !important;
    object-fit: contain !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    filter:
        drop-shadow(0 22px 26px rgba(0, 45, 130, 0.16)) !important;
    mix-blend-mode: multiply;
    border-radius: 0 !important;
}

@media (max-width: 940px) {
    .fdf-product-stage {
        min-height: 320px !important;
    }

    .fdf-hero-product {
        width: min(330px, 80%) !important;
        max-width: 330px !important;
    }
}

/* FDF8K product image class fix / hero balance */
.fdf-product-stage {
    min-height: 430px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background:
        radial-gradient(circle at 55% 48%, rgba(255,255,255,0.48), transparent 34%),
        radial-gradient(circle at 68% 58%, rgba(0,94,220,0.10), transparent 38%) !important;
    overflow: hidden !important;
}

.fdf-product-stage::before,
.fdf-product-stage::after {
    display: none !important;
}

.fdf-hero-product {
    display: block !important;
    width: min(390px, 78%) !important;
    max-width: 390px !important;
    height: auto !important;
    object-fit: contain !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    filter: drop-shadow(0 22px 26px rgba(0, 45, 130, 0.16)) !important;
    mix-blend-mode: multiply;
}

@media (max-width: 940px) {
    .fdf-product-stage {
        min-height: 320px !important;
    }

    .fdf-hero-product {
        width: min(330px, 80%) !important;
        max-width: 330px !important;
    }
}

/* ============================================================
   FDF9 FINAL STAGING OVERRIDES
   Purpose: final homepage/header/product polish before DNS cutover.
   Do not remove until FreshDryFeet cutover is complete.
   ============================================================ */

.site-header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(28, 84, 151, 0.10);
}

.brand-mark {
    gap: 12px;
    align-items: center;
}

.brand-logo {
    width: 138px !important;
    height: auto !important;
    display: block;
}

.brand-text strong {
    font-size: 1.02rem;
    line-height: 1.05;
}

.brand-text small {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fdf-hero {
    position: relative;
    overflow: hidden;
}

.fdf-hero-grid {
    align-items: center;
    gap: clamp(28px, 5vw, 72px);
}

.fdf-hero-copy {
    max-width: 620px;
}

.fdf-hero-copy h1 {
    max-width: 11ch;
    line-height: 0.95;
}

.fdf-product-stage {
    min-height: 455px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative;
    overflow: visible !important;
    background:
        radial-gradient(circle at 52% 48%, rgba(255,255,255,0.92), transparent 32%),
        radial-gradient(circle at 50% 52%, rgba(49,132,212,0.14), transparent 52%) !important;
    border-radius: 34px;
}

.fdf-product-stage::before,
.fdf-product-stage::after {
    display: none !important;
    content: none !important;
}

.fdf-hero-product {
    display: block !important;
    width: min(430px, 84%) !important;
    max-width: 430px !important;
    height: auto !important;
    object-fit: contain !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    filter: drop-shadow(0 24px 30px rgba(18, 61, 120, 0.20)) !important;
    mix-blend-mode: normal !important;
}

.fdf-audience-card {
    box-shadow: 0 24px 70px rgba(20, 67, 126, 0.12);
}

.footer-logo {
    width: 128px !important;
    height: auto !important;
}

@media (max-width: 980px) {
    .brand-logo {
        width: 118px !important;
    }

    .fdf-hero-grid {
        gap: 26px;
    }

    .fdf-hero-copy h1 {
        max-width: 100%;
    }

    .fdf-product-stage {
        min-height: 340px !important;
        border-radius: 26px;
    }

    .fdf-hero-product {
        width: min(350px, 82%) !important;
        max-width: 350px !important;
    }
}

@media (max-width: 640px) {
    .brand-mark {
        gap: 9px;
    }

    .brand-logo {
        width: 96px !important;
    }

    .brand-text strong {
        font-size: 0.9rem;
    }

    .brand-text small {
        font-size: 0.62rem;
    }

    .fdf-product-stage {
        min-height: 285px !important;
        margin-top: 8px;
    }

    .fdf-hero-product {
        width: min(290px, 86%) !important;
        max-width: 290px !important;
    }

    .footer-logo {
        width: 104px !important;
    }
}

/* ============================================================
   FDF11 PRODUCT IMAGE PRESENTATION
   CSS is active. Product JPG appears to be the limiting factor.
   This crops/frames the live JPG more intentionally.
   ============================================================ */

.fdf-product-stage {
    min-height: 470px !important;
    padding: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background:
        radial-gradient(circle at 50% 48%, rgba(255,255,255,0.95), transparent 31%),
        radial-gradient(circle at 50% 50%, rgba(58,139,220,0.16), transparent 55%) !important;
    border-radius: 36px !important;
    overflow: hidden !important;
}

.fdf-hero-product {
    width: min(500px, 96%) !important;
    max-width: 500px !important;
    height: auto !important;
    display: block !important;
    object-fit: contain !important;
    transform: scale(1.18) translateY(4px) !important;
    transform-origin: center center !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    mix-blend-mode: normal !important;
    filter: drop-shadow(0 28px 34px rgba(18, 61, 120, 0.22)) !important;
}

@media (max-width: 980px) {
    .fdf-product-stage {
        min-height: 360px !important;
        padding: 10px !important;
    }

    .fdf-hero-product {
        width: min(410px, 94%) !important;
        max-width: 410px !important;
        transform: scale(1.14) translateY(2px) !important;
    }
}

@media (max-width: 640px) {
    .fdf-product-stage {
        min-height: 300px !important;
        padding: 8px !important;
    }

    .fdf-hero-product {
        width: min(340px, 94%) !important;
        max-width: 340px !important;
        transform: scale(1.12) translateY(0) !important;
    }
}



/* ============================================================
   FDF15 FINAL JPG PRODUCT RESTORE
   Product asset is /images/fdf-product.jpg. Do not point hero at transparent PNG.
   ============================================================ */

.fdf-product-stage {
    min-height: 470px !important;
    padding: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    visibility: visible !important;
    opacity: 1 !important;
    background:
        radial-gradient(circle at 50% 48%, rgba(255,255,255,0.95), transparent 31%),
        radial-gradient(circle at 50% 50%, rgba(58,139,220,0.16), transparent 55%) !important;
    border-radius: 36px !important;
    overflow: hidden !important;
}

.fdf-product-stage::before,
.fdf-product-stage::after {
    display: none !important;
    content: none !important;
}

.fdf-hero-product {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: min(500px, 96%) !important;
    max-width: 500px !important;
    min-width: 220px !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    transform: scale(1.18) translateY(4px) !important;
    transform-origin: center center !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    mix-blend-mode: normal !important;
    filter: drop-shadow(0 28px 34px rgba(18, 61, 120, 0.22)) !important;
}

@media (max-width: 980px) {
    .fdf-product-stage {
        min-height: 360px !important;
        padding: 10px !important;
    }

    .fdf-hero-product {
        width: min(410px, 94%) !important;
        max-width: 410px !important;
        transform: scale(1.14) translateY(2px) !important;
    }
}

@media (max-width: 640px) {
    .fdf-product-stage {
        min-height: 300px !important;
        padding: 8px !important;
    }

    .fdf-hero-product {
        width: min(340px, 94%) !important;
        max-width: 340px !important;
        transform: scale(1.12) translateY(0) !important;
    }
}


/* ============================================================
   FDF16 HOME LIFESTYLE SECTION FIX
   Match live-style parent/child shoe image and compact split layout.
   Homepage only.
   ============================================================ */

.fdf-lifestyle-band {
    max-width: 1120px !important;
    margin: 0 auto 72px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 1fr) !important;
    align-items: stretch !important;
    background: #ffffff !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    box-shadow: 0 18px 50px rgba(20, 67, 126, 0.08) !important;
}

.fdf-lifestyle-image {
    min-height: 365px !important;
    height: 365px !important;
    overflow: hidden !important;
}

.fdf-lifestyle-image img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center center !important;
}

.fdf-lifestyle-copy {
    min-height: 365px !important;
    padding: 52px 48px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.98), rgba(245,251,255,0.92)) !important;
}

.fdf-lifestyle-copy h2 {
    font-size: clamp(2rem, 3vw, 3rem) !important;
    line-height: 1.02 !important;
    margin-bottom: 20px !important;
}

.fdf-lifestyle-copy p {
    max-width: 560px !important;
}

@media (max-width: 900px) {
    .fdf-lifestyle-band {
        grid-template-columns: 1fr !important;
        margin-bottom: 54px !important;
    }

    .fdf-lifestyle-image {
        height: 320px !important;
        min-height: 320px !important;
    }

    .fdf-lifestyle-copy {
        min-height: auto !important;
        padding: 38px 28px 44px !important;
    }
}

@media (max-width: 640px) {
    .fdf-lifestyle-band {
        margin-left: 16px !important;
        margin-right: 16px !important;
    }

    .fdf-lifestyle-image {
        height: 250px !important;
        min-height: 250px !important;
    }

    .fdf-lifestyle-copy {
        padding: 32px 22px 36px !important;
    }
}


/* FDF9K comfort section image swap */
.fdf-comfort-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FDF9M comfort section no-image layout */
.fdf-lifestyle-band.no-image {
    display: block !important;
    background: linear-gradient(135deg, #ffffff 0%, #f3fbff 100%) !important;
    border-top: 1px solid #d8e8f4;
    border-bottom: 1px solid #d8e8f4;
}

.fdf-lifestyle-band.no-image .fdf-lifestyle-copy {
    max-width: 860px;
    margin: 0 auto;
    padding: 72px 0;
    text-align: left;
}

.fdf-lifestyle-band.no-image .fdf-lifestyle-copy h2 {
    max-width: 620px;
}

@media (max-width: 940px) {
    .fdf-lifestyle-band.no-image .fdf-lifestyle-copy {
        padding: 48px 0;
    }
}

/* FDF9O align no-image comfort section with page grid */
.fdf-lifestyle-band.no-image .fdf-lifestyle-copy {
    max-width: 720px !important;
    margin: 0 !important;
    padding: 72px 0 !important;
    text-align: left !important;
}

.fdf-lifestyle-band.no-image .fdf-lifestyle-copy h2 {
    max-width: 620px !important;
}

.fdf-lifestyle-band.no-image .container {
    max-width: 1120px;
}

@media (max-width: 940px) {
    .fdf-lifestyle-band.no-image .fdf-lifestyle-copy {
        padding: 48px 0 !important;
    }
}

/* FDF9Q center no-image comfort section */
.fdf-lifestyle-band.no-image .fdf-lifestyle-copy {
    max-width: 760px !important;
    margin: 0 auto !important;
    padding: 72px 0 !important;
    text-align: center !important;
}

.fdf-lifestyle-band.no-image .fdf-lifestyle-copy h2 {
    max-width: 680px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.fdf-lifestyle-band.no-image .fdf-lifestyle-copy p {
    max-width: 720px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

@media (max-width: 940px) {
    .fdf-lifestyle-band.no-image .fdf-lifestyle-copy {
        padding: 48px 0 !important;
    }
}

/* FDF9S remove comfort section shading */
.fdf-lifestyle-band.no-image {
    background: #ffffff !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
}

.fdf-lifestyle-band.no-image .container {
    background: #ffffff !important;
    box-shadow: none !important;
}

.fdf-lifestyle-band.no-image .fdf-lifestyle-copy {
    background: #ffffff !important;
    box-shadow: none !important;
}

/* FDF10 real ingredient images */
.ingredient-real-image {
    display: block;
    width: 150px;
    height: 110px;
    object-fit: contain;
    margin: 0 0 18px 0;
    border-radius: 18px;
}

.ingredient-visual-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 940px) {
    .ingredient-real-image {
        width: 140px;
        height: 100px;
    }
}

@media (max-width: 640px) {
    .ingredient-real-image {
        margin-left: auto;
        margin-right: auto;
    }

    .ingredient-visual-card {
        align-items: center;
        text-align: center;
    }
}

/* FDF11A widen and center comfort narrative section */
.fdf-lifestyle-band.no-image {
    padding: 72px 0 76px !important;
    background: #ffffff !important;
}

.fdf-lifestyle-band.no-image .container {
    max-width: 1120px !important;
}

.fdf-lifestyle-band.no-image .fdf-lifestyle-copy {
    max-width: 900px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    text-align: center !important;
}

.fdf-lifestyle-band.no-image .fdf-lifestyle-copy .eyebrow {
    text-align: center !important;
}

.fdf-lifestyle-band.no-image .fdf-lifestyle-copy h2 {
    max-width: 760px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 22px !important;
    text-align: center !important;
}

.fdf-lifestyle-band.no-image .fdf-lifestyle-copy p {
    max-width: 860px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    line-height: 1.65 !important;
}

.fdf-lifestyle-band.no-image .fdf-lifestyle-copy p + p {
    margin-top: 18px !important;
}

@media (max-width: 940px) {
    .fdf-lifestyle-band.no-image {
        padding: 52px 0 56px !important;
    }

    .fdf-lifestyle-band.no-image .fdf-lifestyle-copy {
        max-width: 92% !important;
    }
}

/* FDF11C tighten spacing between comfort and ingredients sections */
.fdf-lifestyle-band.no-image {
    padding: 62px 0 34px !important;
}

.fdf-ingredients-preview {
    padding-top: 34px !important;
}

.fdf-lifestyle-band.no-image .fdf-lifestyle-copy {
    padding: 0 !important;
}

@media (max-width: 940px) {
    .fdf-lifestyle-band.no-image {
        padding: 46px 0 28px !important;
    }

    .fdf-ingredients-preview {
        padding-top: 28px !important;
    }
}
