/*!* The Food Boxes — Site Styles * Consolidated stylesheet for all pages. * Depends on:bootstrap.min.css,bootstrap-icons.min.css */
:root {
    --ink: #2a1a14;
    --green: #c33c2c;
    --green-700: #9e2e20;
    --amber: #f4b942;
    --amber-soft: #fce5b0;
    --cream: #fdf8f0;
    --sand: #f8ecd2;
    --line: #ecdfc4;
    --muted: #7a6655;
    --bs-body-font-family: "Schibsted Grotesk", sans-serif;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: "Schibsted Grotesk", sans-serif;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
.display-font {
    font-family: "Fraunces", serif;
    letter-spacing: -0.01em;
}

.text-muted-soft {
    color: var(--muted) !important;
}

a {
    text-decoration: none;
}

.btn {
    border-radius: 999px;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    transition: 0.2s;
}

.btn-amber {
    background: var(--amber);
    color: #1c1207;
    border: 1px solid var(--amber);
}

.btn-amber:hover {
    background: #dca528;
    color: #1c1207;
}

.btn-green {
    background: var(--green);
    color: #fff;
    border: 1px solid var(--green);
}

.btn-green:hover {
    background: var(--green-700);
    color: #fff;
}

.btn-outline-green {
    border: 1px solid var(--green);
    color: var(--green);
}

.btn-outline-green:hover {
    background: var(--green);
    color: #fff;
}

.btn-light-soft {
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line);
}

.btn-light-soft:hover {
    background: var(--sand);
}

.topbar {
    background: var(--green-700);
    color: #e9e4d6;
    font-size: 0.82rem;
}

.topbar .marquee-item {
    padding: 0.5rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.topbar i {
    color: var(--amber);
}

.navbar {
    background: var(--cream);
    border-bottom: 1px solid var(--line);
}

.navbar .navbar-brand {
    font-family: "Fraunces", serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-mark {
    width: 34px;
    height: 34px;
    background: var(--green);
    border-radius: 9px;
    display: grid;
    place-items: center;
    color: var(--amber);
    font-size: 1.1rem;
}

.navbar .nav-link {
    font-weight: 600;
    color: var(--ink);
    padding: 0.5rem 1rem !important;
}

.navbar .nav-link:hover {
    color: var(--green);
}

.dropdown-menu {
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 24px 48px -16px rgba(122, 31, 18, 0.18);
    padding: 1rem;
    width: 13vw;
}

.mega-menu {
    min-width: 40vw;
}

.mega-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.6rem;
    border-radius: 10px;
    color: var(--ink);
    font-weight: 500;
    font-size: 0.92rem;
}

.mega-link:hover {
    background: var(--sand);
    color: var(--green);
}

.mega-link i {
    color: var(--amber);
}

.mega-promo {
    background: var(--green);
    color: #fff;
    border-radius: 14px;
    padding: 1.2rem;
}

.mega-promo h6 {
    color: #fff;
    font-weight: 700;
}

.section {
    padding: 6rem 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
    background: #fff;
    border: 1px solid var(--line);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
}

.section-title {
    font-size: clamp(1.65rem, 5.5vw, 3rem);
    font-weight: 600;
    line-height: 1.12;
}

.hero {
    background: radial-gradient(900px 380px at 85% -10%, #e6efe6 0, transparent 60%), var(--cream);
    overflow: hidden;
}

.hero h1 {
    font-size: clamp(2rem, 7vw, 3rem);
    font-weight: 600;
    line-height: 1.08;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.55rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-pill i {
    color: var(--green);
}

.hero-visual img {
    width: 100%;
}

.trust-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.trust-logo {
    font-family: "Fraunces", serif;
    font-weight: 600;
    color: #9ca39a;
    font-size: 1.15rem;
    white-space: nowrap;
}

.marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 26s linear infinite;
}

.marquee-track .trust-logo {
    padding: 0 3.2rem;
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

.product-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: 0.25s;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 50px -22px rgba(122, 31, 18, 0.3);
}

.tile {
    display: grid;
    place-items: center;
    font-size: 3.4rem;
    color: #fff;
    position: relative;
}

.tile span {
    position: absolute;
    bottom: 12px;
    right: 14px;
    font-size: 0.7rem;
    font-family: "Schibsted Grotesk", sans-serif;
    color: rgba(0, 0, 0, 0.7);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tile.t1 {
    background: linear-gradient(150deg, #c33c2c, #7a1f12);
}

.tile.t2 {
    background: linear-gradient(150deg, #b6763a, #7b4a22);
}

.tile.t3 {
    background: linear-gradient(150deg, #e2581c, #9e2e20);
}

.tile.t4 {
    background: linear-gradient(150deg, #c98f4e, #8a5b2a);
}

.tile.t5 {
    background: linear-gradient(150deg, #d8961d, #8a5e0d);
}

.tile.t6 {
    background: linear-gradient(150deg, #c44230, #5e1810);
}

.tile.t7 {
    background: linear-gradient(150deg, #a8763f, #5e3f1f);
}

.product-card .card-body {
    padding: 1.4rem;
}

.product-card h5 {
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.explore {
    color: var(--green);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.process {
    background: var(--green);
    color: #e9e4d6;
}

.process .section-title {
    color: #fff;
}

.feature-row {
    display: flex;
    gap: 1rem;
    padding: 1.3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-icn {
    flex: none;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(232, 151, 61, 0.18);
    color: var(--amber);
    display: grid;
    place-items: center;
    font-size: 1.3rem;
}

.feature-row h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.process-visual img{
    width: 100%;
}

.industry-card {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    height: 240px;
    display: flex;
    align-items: flex-end;
    border: 1px solid var(--line);
}

.industry-card .ind-bg {
    position: absolute;
}

.industry-card .ind-label {
    position: relative;
    width: 100%;
    padding: 1rem 1.2rem;
    background: linear-gradient(#21212100, #4f4f4feb);
    color: #fff;
    font-weight: 600;
    font-family: "Fraunces", serif;
    font-size: 1.15rem;
}

.ig2 {
    background: linear-gradient(150deg, #b07a47, #6a4527);
}

.ig3 {
    background: linear-gradient(150deg, #3b7065, #173d33);
}

.ig4 {
    background: linear-gradient(150deg, #5f8049, #324f29);
}

.ig5 {
    background: linear-gradient(150deg, #a86f3e, #5b3c20);
}

.ig6 {
    background: linear-gradient(150deg, #356057, #15342c);
}

.step-num {
    font-family: "Fraunces", serif;
    font-weight: 600;
    color: var(--amber);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

.step-visual img{
    width: 100%;
}

.sv1 {
    background: linear-gradient(150deg, #c33c2c, #7a1f12);
}

.sv2 {
    background: linear-gradient(150deg, #b6763a, #7b4a22);
}

.sv3 {
    background: linear-gradient(150deg, #e2581c, #9e2e20);
}

.sv4 {
    background: linear-gradient(150deg, #d8961d, #8a5e0d);
}

.testi-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1.6rem;
    height: 100%;
}

.stars {
    color: var(--amber);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green);
    color: var(--amber);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-family: "Fraunces", serif;
}

.quote-section {
    background: var(--sand);
}

.quote-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 2rem;
}

.quote-form .form-control,
.quote-form .form-select {
    border-radius: 12px;
    border: 1px solid var(--line);
    padding: 0.7rem 0.9rem;
    background: var(--cream);
}

.quote-form .form-control:focus,
.quote-form .form-select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 0.2rem rgba(122, 31, 18, 0.12);
}

.form-label {
    font-weight: 600;
    font-size: 0.88rem;
}

.dropzone {
    border: 1.5px dashed var(--line);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.88rem;
    background: var(--cream);
}

.accordion-item {
    border: 1px solid var(--line);
    border-radius: 14px !important;
    margin-bottom: 0.7rem;
    overflow: hidden;
}

.accordion-button {
    font-family: "Fraunces", serif;
    font-weight: 600;
    font-size: 1.05rem;
    background: #fff;
    color: var(--ink);
}

.accordion-button:not(.collapsed) {
    background: var(--green);
    color: #fff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    color: var(--muted);
}

.newsletter {
    background: var(--green);
    color: #fff;
    border-radius: 26px;
}

.newsletter .form-control {
    border-radius: 999px;
    border: none;
    padding: 0.8rem 1.3rem;
}

.footer {
    background: var(--green-700);
    color: #ebebeb;
}

.footer a {
    color: #ebebeb;
}

.footer a:hover {
    color: var(--amber);
}

.footer h6 {
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 1rem;
}

.footer .social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: grid;
    place-items: center;
    color: #fff;
}

.footer .social:hover {
    background: var(--amber);
    color: #1c1207;
    border-color: var(--amber);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.in {
    opacity: 1;
    transform: none;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.search-modal .modal-content {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--cream);
    box-shadow: 0 40px 80px -20px rgba(122, 31, 18, 0.25);
}

.search-modal .modal-body {
    position: relative;
}

.search-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 5;
    background: transparent;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--muted);
    cursor: pointer;
    transition: 0.18s;
}

.search-close:hover {
    background: var(--sand);
    color: var(--green);
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.85rem 1.1rem;
    margin-right: 3rem;
}

.search-bar i {
    font-size: 1.3rem;
    color: var(--green);
    flex: none;
}

.search-bar input {
    border: none;
    outline: none;
    flex: 1;
    background: transparent;
    font-size: 1.05rem;
    padding: 0.2rem 0;
    color: var(--ink);
    min-width: 0;
}

.suggest-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.7rem;
}

.suggest-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.suggest-pills a {
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 600;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    transition: 0.15s;
    text-decoration: none;
}

.suggest-pills a:hover {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

.trending-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.7rem 0.9rem;
    margin-bottom: 0.5rem;
    transition: 0.18s;
    color: var(--ink);
    text-decoration: none;
}

.trending-item:hover {
    background: var(--sand);
    transform: translateX(3px);
    color: var(--ink);
}

.trending-item strong {
    display: block;
    font-size: 0.92rem;
    font-family: "Fraunces", serif;
    font-weight: 600;
}

.trending-item span {
    font-size: 0.78rem;
    color: var(--muted);
}

.trending-item>i {
    color: var(--green);
}

.trending-thumb {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.1rem;
    flex: none;
}

.trending-thumb.t1 {
    background: linear-gradient(150deg, #c33c2c, #7a1f12);
}

.trending-thumb.t2 {
    background: linear-gradient(150deg, #d4731f, #6b3a10);
}

.trending-thumb.t3 {
    background: linear-gradient(150deg, #f4b942, #b88317);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Fraunces", serif;
    letter-spacing: -0.01em;
}

.crumb {
    background: var(--sand);
    font-size: 0.85rem;
}

.crumb a {
    color: var(--muted);
}

.crumb a:hover {
    color: var(--green);
}

.crumb .active {
    color: var(--green);
    font-weight: 600;
}

.cat-hero {
    padding: 3rem 0 1.5rem;
}

.cat-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 600;
    line-height: 1.1;
}

.cat-hero .lead-text {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.65;
    max-width: 62rem;
}

.sidebar-sticky {
    position: sticky;
    top: 90px;
}

.quote-side {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.5rem;
}

.quote-side h4 {
    font-family: "Fraunces", serif;
    font-weight: 600;
    margin-bottom: 0.2rem;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quote-side h4 i {
    color: var(--amber);
}

.quote-side .form-control {
    border-radius: 11px;
    border: 1px solid var(--line);
    background: #fff;
    padding: 0.75rem 0.9rem;
    font-size: 0.92rem;
}

.quote-side .form-control:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 0.18rem rgba(122, 31, 18, 0.12);
}

.quote-side textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.quote-side .file-input {
    border: 1px dashed var(--line);
    border-radius: 11px;
    padding: 0.5rem 0.7rem;
    background: var(--cream);
    font-size: 0.85rem;
}

.btn-submit {
    background: #fcd24a;
    color: #1c1207;
    border: 1px solid #fcd24a;
    font-weight: 700;
    border-radius: 12px;
    padding: 0.9rem 1.5rem;
    width: 100%;
    font-size: 0.98rem;
    transition: 0.2s;
}

.btn-submit:hover {
    background: #f3c52d;
    border-color: #f3c52d;
    color: #1c1207;
}

.side-links {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.3rem;
    margin-top: 1.2rem;
}

.side-links h6 {
    font-family: "Fraunces", serif;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
}

.side-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.55rem 0.25rem;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 500;
}

.side-links a:last-child {
    border-bottom: none;
}

.side-links a:hover {
    color: var(--green);
}

.side-links a i {
    font-size: 0.8rem;
    color: var(--muted);
}

.prod-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: 0.22s;
    display: flex;
    flex-direction: column;
}

.prod-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 40px -22px rgba(122, 31, 18, 0.28);
}

.prod-card:hover .prod-img img {
    transform: scale(1.05);
}

.prod-img {
    aspect-ratio: 1/1;
    background: var(--sand);
    overflow: hidden;
    position: relative;
}

.prod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.prod-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--green);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    letter-spacing: 0.05em;
}

.prod-body {
    padding: 0.95rem 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.prod-cat {
    font-size: 0.7rem;
    color: var(--amber);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.prod-title {
    font-family: "Fraunces", serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.3;
    color: var(--ink);
    margin: 0.25rem 0 0.8rem;
}

.prod-title a {
    color: inherit;
}

.prod-title a:hover {
    color: var(--green);
}

.prod-actions {
    display: flex;
    gap: 0.4rem;
    margin-top: auto;
}

.prod-actions .btn-quote {
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 9px;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.45rem 0.75rem;
    flex: 1;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    transition: 0.18s;
}

.prod-actions .btn-quote:hover {
    background: var(--green-700);
    color: #fff;
}

.prod-actions .btn-view {
    background: transparent;
    color: var(--green);
    border: 1px solid var(--line);
    border-radius: 9px;
    width: 36px;
    display: grid;
    place-items: center;
    flex: none;
    font-size: 0.9rem;
}

.prod-actions .btn-view:hover {
    background: var(--sand);
    border-color: var(--green);
}

.desc-section {
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.desc-section .desc-eyebrow {
    color: var(--amber);
    font-weight: 700;
    letter-spacing: 0.13em;
    font-size: 0.78rem;
    text-transform: uppercase;
    font-family: "Schibsted Grotesk", sans-serif;
}

.desc-section h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.desc-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 0.8rem;
    color: var(--green);
}

.desc-section p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 0.98rem;
}

.desc-section ul {
    padding-left: 1.2rem;
}

.desc-section ul li {
    margin-bottom: 0.6rem;
    color: var(--muted);
    line-height: 1.65;
}

.desc-section ul li strong {
    color: var(--ink);
}

.desc-section a {
    color: var(--green);
    font-weight: 600;
    border-bottom: 1px dotted var(--green);
}

.desc-section a:hover {
    color: var(--green-700);
}

.cta-strip {
    background: linear-gradient(160deg, var(--green) 0, var(--green-700) 100%);
    color: #fff;
    border-radius: 24px;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Fraunces", serif;
    letter-spacing: -0.01em;
}

.gallery-main {
    aspect-ratio: 1/1;
    width: 100%;
    border-radius: 22px;
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    background: var(--sand);
}

.gallery-main img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.25s ease;
}

.gallery-main .tag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: var(--amber);
    color: #1c1207;
    font-family: "Schibsted Grotesk", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    letter-spacing: 0.05em;
    box-shadow: 0 6px 16px -6px rgba(0, 0, 0, 0.25);
}

.thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.7rem;
    margin-top: 0.8rem;
}

.thumb {
    aspect-ratio: 1/1;
    border-radius: 13px;
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
    transition: 0.2s;
    background: var(--sand);
    position: relative;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumb.active {
    border-color: var(--green);
}

.thumb:hover {
    transform: translateY(-2px);
}

.sku-badge {
    display: inline-block;
    background: var(--sand);
    color: var(--green);
    font-weight: 700;
    font-size: 0.74rem;
    letter-spacing: 0.06em;
    padding: 0.3rem 0.7rem;
    border-radius: 7px;
    font-family: "Schibsted Grotesk", sans-serif;
}

.inquiry-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1.6rem;
}

.inquiry-card .form-control {
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
}

.inquiry-card .form-control:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 0.2rem rgba(122, 31, 18, 0.12);
}

.inquiry-card textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.inquiry-card .form-control::placeholder {
    color: #9aa19b;
}

.inquiry-card .file-input {
    border: 1px dashed var(--line);
    border-radius: 12px;
    padding: 0.6rem 0.8rem;
    background: var(--cream);
}

.inquiry-card .file-input input[type="file"] {
    font-size: 0.88rem;
}

.feat-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.4rem;
    height: 100%;
}

.feat-icn {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    background: var(--sand);
    color: var(--green);
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
}

.spec-tabs {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
}

.spec-tabs .nav-tabs {
    border: none;
    background: var(--cream);
    padding: 0.5rem;
    gap: 0.3rem;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.spec-tabs .nav-tabs::-webkit-scrollbar {
    height: 0;
}

.spec-tabs .nav-link {
    border: none;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.1rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.spec-tabs .nav-link:hover {
    color: var(--green);
}

.spec-tabs .nav-link.active {
    background: var(--green);
    color: #fff;
}

.spec-tabs .tab-content {
    padding: 1.8rem;
}

.spec-row {
    display: flex;
    gap: 0.9rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row .feat-icn {
    flex: none;
    margin-bottom: 0;
}

.spec-row h6 {
    font-family: "Fraunces", serif;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.spec-table {
    width: 100%;
    font-size: 0.92rem;
}

.spec-table td {
    padding: 0.7rem 0.4rem;
    border-bottom: 1px solid var(--line);
}

.spec-table td:first-child {
    font-weight: 600;
    color: var(--green);
    width: 42%;
}

.spec-table tr:last-child td {
    border-bottom: none;
}

.t1 {
    background: linear-gradient(150deg, #c33c2c, #7a1f12);
}

.t2 {
    background: linear-gradient(150deg, #b6763a, #7b4a22);
}

.t3 {
    background: linear-gradient(150deg, #d8961d, #8a5e0d);
}

.t4 {
    background: linear-gradient(150deg, #e2581c, #9e2e20);
}

.about-hero {
    background: radial-gradient(700px 280px at 15% 110%, rgba(232, 151, 61, 0.15), transparent 60%),
        radial-gradient(900px 380px at 90% -10%, #e6efe6 0, transparent 60%), var(--cream);
    padding: 4.5rem 0 2rem;
}

.about-hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 600;
    line-height: 1.05;
}

.about-hero h1 em {
    font-style: italic;
    color: var(--green);
    text-decoration-line: underline;
    text-decoration-color: var(--amber);
    text-decoration-thickness: 5px;
    text-underline-offset: 8px;
}

.about-hero p {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.65;
}

.story-img {
    aspect-ratio: 5/4;
    border-radius: 24px;
    overflow: hidden;
    background: var(--sand);
}

.story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stats-strip {
    background: var(--green);
    color: #fff;
    border-radius: 24px;
    padding: 2.5rem 2rem;
}

.stat-num {
    font-family: "Fraunces", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--amber);
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    font-weight: 500;
    margin-top: 0.4rem;
}

.value-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.6rem;
    height: 100%;
    transition: 0.2s;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 40px -22px rgba(122, 31, 18, 0.22);
}

.value-icn {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    background: var(--sand);
    color: var(--green);
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.value-card h5 {
    font-family: "Fraunces", serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

.cta-box {
    background: var(--ink);
    color: #fff;
    border-radius: 26px;
    padding: 3rem 2rem;
    text-align: center;
    background-image: radial-gradient(circle at 15% 80%, rgba(232, 151, 61, 0.18), transparent 50%),
        radial-gradient(circle at 90% 20%, rgba(122, 31, 18, 0.4), transparent 60%);
}

.cta-box h3 {
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 0.6rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 36rem;
    margin: 0 auto 1.4rem;
}

.contact-hero {
    padding: 3.5rem 0 1rem;
}

.contact-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 600;
    line-height: 1.05;
}

.contact-hero p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 36rem;
}

.info-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.4rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: 0.2s;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 36px -22px rgba(122, 31, 18, 0.22);
    border-color: var(--green);
}

.info-icn {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--sand);
    color: var(--green);
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    flex: none;
}

.info-card h6 {
    font-family: "Fraunces", serif;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.info-card p,
.info-card a {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0;
}

.info-card a {
    color: var(--green);
    font-weight: 600;
}

.info-card a:hover {
    color: var(--green-700);
}

.contact-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 2rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--cream);
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 0.18rem rgba(122, 31, 18, 0.12);
}

.contact-form textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

.side-panel {
    background: var(--green);
    color: #fff;
    border-radius: 22px;
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.side-panel::after {
    content: "";
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(232, 151, 61, 0.25), transparent 70%);
}

.side-panel h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 2;
}

.side-panel p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.side-panel ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    position: relative;
    z-index: 2;
}

.side-panel ul li {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
}

.side-panel ul li i {
    color: var(--amber);
    font-size: 1rem;
    flex: none;
    margin-top: 0.15rem;
}

.blog-hero {
    background: radial-gradient(700px 280px at 15% 110%, rgba(232, 151, 61, 0.18), transparent 60%),
        radial-gradient(900px 380px at 90% -10%, #e6efe6 0, transparent 60%), var(--cream);
    padding: 4rem 0 2rem;
    position: relative;
}

.blog-hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.02em;
}

.blog-hero h1 em {
    font-style: italic;
    color: var(--green);
    text-decoration-line: underline;
    text-decoration-color: var(--amber);
    text-decoration-thickness: 5px;
    text-underline-offset: 8px;
}

.blog-hero p {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 42rem;
    line-height: 1.65;
}

.search-box {
    display: flex;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.4rem 0.4rem 0.4rem 1.3rem;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 18px 40px -22px rgba(122, 31, 18, 0.2);
    max-width: 480px;
}

.search-box i {
    color: var(--muted);
}

.search-box input {
    border: none;
    outline: none;
    flex: 1;
    background: transparent;
    font-size: 0.95rem;
    padding: 0.5rem 0;
}

.tag-pills {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag-pill {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    transition: 0.15s;
}

.tag-pill:hover {
    background: var(--sand);
    color: var(--green);
}

.tag-pill.active {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

.tag-pill .count {
    font-size: 0.72rem;
    opacity: 0.65;
}

.featured-post {
    background: var(--green);
    color: #fff;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

.featured-post .row {
    margin: 0;
}

.featured-post-img {
    aspect-ratio: 4/3;
    background: linear-gradient(160deg, #c33c2c, #6b1a0e);
    position: relative;
    overflow: hidden;
}

.featured-post-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.5s ease;
}

.featured-post:hover .featured-post-img img {
    transform: scale(1.04);
}

.featured-post-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--amber);
    color: #1c1207;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    width: fit-content;
    text-transform: uppercase;
}

.featured-post h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 600;
    color: #fff;
    margin: 1rem 0;
    line-height: 1.15;
}

.featured-post h2 a {
    color: #fff;
}

.featured-post h2 a:hover {
    color: var(--amber);
}

.featured-post .meta {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
}

.featured-post .read-btn {
    background: #fff;
    color: var(--green);
    font-weight: 600;
    padding: 0.7rem 1.3rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    width: fit-content;
    margin-top: 1.3rem;
    transition: 0.2s;
}

.featured-post .read-btn:hover {
    background: var(--amber);
    color: #1c1207;
    gap: 0.7rem;
}

.post-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: 0.25s;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px -25px rgba(122, 31, 18, 0.3);
}

.post-card:hover .post-img img {
    transform: scale(1.05);
}

.post-img {
    aspect-ratio: 16/10;
    background: var(--sand);
    overflow: hidden;
    position: relative;
}

.post-img img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.35s ease;
}

.post-img .read-time {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(11, 45, 34, 0.85);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    backdrop-filter: blur(6px);
}

.post-img .read-time i {
    margin-right: 0.25rem;
}

.cat-chip {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.cat-design {
    background: #ffe1c2;
    color: #9e3c12;
}

.cat-sustain {
    background: #dff0e6;
    color: #c33c2c;
}

.cat-ecomm {
    background: #fceadb;
    color: #a8623a;
}

.cat-news {
    background: #fadcdc;
    color: #892c1c;
}

.cat-guide {
    background: #f6e6c8;
    color: #6b4a0d;
}

.post-body {
    padding: 1.3rem 1.4rem 1.4rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.post-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0.7rem 0;
    color: var(--ink);
}

.post-card h3 a {
    color: inherit;
}

.post-card h3 a:hover {
    color: var(--green);
}

.post-excerpt {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.82rem;
    color: var(--muted);
}

.side-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.4rem;
    margin-bottom: 1.4rem;
}

.side-card h5 {
    font-family: "Fraunces", serif;
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.side-card h5 i {
    color: var(--amber);
}

.pop-product {
    display: flex;
    gap: 0.85rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--line);
    align-items: center;
}

.pop-product:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pop-product:first-child {
    padding-top: 0;
}

.pop-thumb {
    width: 64px;
    height: 64px;
    border-radius: 11px;
    flex: none;
    overflow: hidden;
    background: var(--sand);
    position: relative;
}

.pop-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pop-rank {
    position: absolute;
    top: -6px;
    left: -6px;
    background: var(--green);
    color: var(--amber);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: "Fraunces", serif;
    font-weight: 700;
    font-size: 0.7rem;
    z-index: 2;
}

.pop-info {
    flex: 1;
    min-width: 0;
}

.pop-info h6 {
    font-family: "Fraunces", serif;
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1.25;
    margin: 0 0 0.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pop-info h6 a {
    color: var(--ink);
}

.pop-info h6 a:hover {
    color: var(--green);
}

.pop-info .price {
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 700;
}

.pop-info .stars {
    color: var(--amber);
    font-size: 0.7rem;
    margin-left: 0.4rem;
    letter-spacing: 0.04em;
}

.side-newsletter {
    background: linear-gradient(160deg, var(--green) 0, var(--green-700) 100%);
    color: #fff;
    border-color: transparent;
    position: relative;
    overflow: hidden;
}

.side-newsletter::after {
    content: "";
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(232, 151, 61, 0.25), transparent 70%);
}

.side-newsletter h5 {
    color: #fff;
}

.side-newsletter h5 i {
    color: var(--amber);
}

.side-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
}

.side-newsletter input {
    border: none;
    border-radius: 999px;
    padding: 0.65rem 1rem;
    width: 100%;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
}

.side-newsletter button {
    background: var(--amber);
    color: #1c1207;
    border: none;
    border-radius: 999px;
    padding: 0.65rem 1rem;
    width: 100%;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.2s;
}

.side-newsletter button:hover {
    background: #dca528;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.tag-cloud span {
    background: var(--sand);
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    cursor: pointer;
    transition: 0.15s;
}

.tag-cloud span:hover {
    background: var(--green);
    color: #fff;
}

.pager {
    display: flex;
    gap: 0.4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pager a {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: #fff;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--ink);
    font-weight: 600;
    font-size: 0.92rem;
    transition: 0.15s;
}

.pager a:hover {
    background: var(--sand);
}

.pager a.active {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

.pager .next {
    width: auto;
    padding: 0 1rem;
}

.post-banner {
    background: var(--green-700);
    color: #fff;
    padding: 3.5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.post-banner::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232, 151, 61, 0.18), transparent 70%);
    pointer-events: none;
}

.post-crumb {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 2;
}

.post-crumb a {
    color: rgba(255, 255, 255, 0.85);
}

.post-crumb a:hover {
    color: var(--amber);
}

.post-cat {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--amber);
    color: #1c1207;
    font-size: 0.74rem;
    font-weight: 700;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.post-banner h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.12;
    color: #fff;
    margin: 1.2rem 0 1.5rem;
}

.post-meta .avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--amber);
    color: #1c1207;
    display: grid;
    place-items: center;
    font-family: "Fraunces", serif;
    font-weight: 700;
    font-size: 0.92rem;
}

.post-meta .author {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.post-meta .author strong {
    color: #fff;
    font-weight: 600;
}

.post-meta i {
    color: var(--amber);
    margin-right: 0.3rem;
}

.banner-image {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4);
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-wrap {
    padding: 4rem 0;
}

.article h2 {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 600;
    margin: 2.5rem 0 1rem;
    color: var(--ink);
}

.article h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 0.8rem;
    color: var(--green);
}

.article p {
    color: #3a4641;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

.article p.lead {
    font-size: 1.2rem;
    color: var(--ink);
    font-weight: 500;
    line-height: 1.6;
}

.article ul {
    padding-left: 0;
    list-style: none;
}

.article ul li {
    position: relative;
    padding: 0.4rem 0 0.4rem 2rem;
    color: #3a4641;
    line-height: 1.7;
}

.article ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 18px;
    height: 18px;
    background: var(--green);
    border-radius: 50%;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e8973d'><path d='M13.485 1.929a.75.75 0 0 1 0 1.06l-7.5 7.5a.75.75 0 0 1-1.06 0l-3.5-3.5a.75.75 0 0 1 1.06-1.06L5 8.94l6.97-6.97a.75.75 0 0 1 1.06 0z'/></svg>");
    background-size: 11px;
    background-repeat: no-repeat;
    background-position: center;
}

.article ul li strong {
    color: var(--ink);
}

.article blockquote {
    border-left: 4px solid var(--amber);
    background: var(--sand);
    padding: 1.5rem 1.8rem;
    margin: 2rem 0;
    border-radius: 0 16px 16px 0;
    font-family: "Fraunces", serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--green);
    line-height: 1.5;
}

.article blockquote footer {
    font-family: "Schibsted Grotesk", sans-serif;
    font-style: normal;
    color: var(--muted);
    font-size: 0.85rem;
    margin-top: 0.8rem;
    font-weight: 600;
}

.article a {
    color: var(--green);
    font-weight: 600;
    border-bottom: 1px dotted var(--green);
}

.article a:hover {
    color: var(--green-700);
}

.article img {
    border-radius: 16px;
    width: 100%;
    margin: 1.5rem 0;
}

.article figcaption {
    font-size: 0.85rem;
    color: var(--muted);
    text-align: center;
    font-style: italic;
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
}

.share-row {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 1.2rem 0;
    margin: 3rem 0 0;
    font-size: 0.88rem;
    font-weight: 600;
}

.share-row .label {
    margin-right: auto;
    color: var(--muted);
}

.share-row a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--sand);
    color: var(--green);
    display: grid;
    place-items: center;
    transition: 0.18s;
}

.share-row a:hover {
    background: var(--green);
    color: #fff;
}

.author-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.5rem;
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    margin-top: 2rem;
}

.author-card .avatar-lg {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--green);
    color: var(--amber);
    display: grid;
    place-items: center;
    font-family: "Fraunces", serif;
    font-weight: 700;
    font-size: 1.4rem;
    flex: none;
}

.author-card h5 {
    font-family: "Fraunces", serif;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.author-card p {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.toc-card {
    background: var(--sand);
    border-radius: 18px;
    padding: 1.4rem;
    margin-top: 1.3rem;
}

.toc-card h6 {
    font-family: "Fraunces", serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--green);
}

.toc-card ol {
    padding-left: 1.2rem;
    margin: 0;
}

.toc-card ol li {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 0.55rem;
    color: var(--ink);
}

.toc-card ol li a {
    color: var(--ink);
}

.toc-card ol li a:hover {
    color: var(--green);
}

.related {
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 4rem 0;
}

.related h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
}

.quote-hero {
    padding: 3rem 0 1rem;
    text-align: center;
}

.quote-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 600;
    line-height: 1.08;
}

.quote-hero p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 38rem;
    margin: 1rem auto 0;
}

.quote-card {
    background: #f6f8fa;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 2.2rem;
    box-shadow: 0 30px 70px -40px rgba(122, 31, 18, 0.25);
}

.quote-card .form-control,
.quote-card .form-select {
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    color: var(--ink);
}

.quote-card .form-control::placeholder,
.quote-card .form-select:not(:valid) {
    color: #a0a6a2;
}

.quote-card .form-control:focus,
.quote-card .form-select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 0.18rem rgba(122, 31, 18, 0.12);
    outline: none;
}

.quote-card textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

.quote-card .form-select {
    color: #a0a6a2;
}

.quote-card .form-select.has-value {
    color: var(--ink);
}

.quote-card .form-select option {
    color: var(--ink);
}

.file-input {
    border: 1px dashed var(--line);
    border-radius: 12px;
    padding: 0.7rem 0.9rem;
    background: var(--cream);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--muted);
    max-width: 380px;
}

.file-input i {
    color: var(--green);
    font-size: 1.1rem;
}

.file-input input[type="file"] {
    border: none;
    background: transparent;
    padding: 0;
    font-size: 0.88rem;
    color: var(--ink);
    flex: 1;
    min-width: 0;
}

.file-input input[type="file"]::file-selector-button {
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0.35rem 0.8rem;
    font-weight: 600;
    font-size: 0.85rem;
    margin-right: 0.6rem;
    cursor: pointer;
}

.file-input input[type="file"]::file-selector-button:hover {
    background: var(--sand);
}

.success-banner {
    background: #dff0e6;
    color: #c33c2c;
    border: 1px solid #c8e3d3;
    border-radius: 14px;
    padding: 1rem 1.2rem;
    display: flex;
    gap: 0.7rem;
    align-items: center;
}

.assurance {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.4rem;
    margin-top: 1.5rem;
}

.assurance h6 {
    font-family: "Fraunces", serif;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.assurance h6 i {
    color: var(--amber);
}

.assurance ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.assurance ul li {
    display: flex;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--muted);
    padding: 0.4rem 0;
}

.assurance ul li i {
    color: var(--green);
    flex: none;
}

.error-page {
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0 4rem;
    background:
        radial-gradient(700px 280px at 20% 110%, rgba(244, 185, 66, .18), transparent 60%),
        radial-gradient(900px 380px at 90% -10%, rgba(195, 60, 44, .10) 0%, transparent 60%),
        var(--cream);
    position: relative;
    overflow: hidden;
}

.error-page::before {
    content: "";
    position: absolute;
    top: 18%;
    left: 8%;
    width: 120px;
    height: 120px;
    background: var(--amber);
    border-radius: 50%;
    opacity: .12;
    filter: blur(40px);
}

.error-page::after {
    content: "";
    position: absolute;
    bottom: 14%;
    right: 10%;
    width: 160px;
    height: 160px;
    background: var(--green);
    border-radius: 50%;
    opacity: .08;
    filter: blur(50px);
}

.error-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 42rem;
    padding: 0 1rem;
}

.error-code {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: clamp(7rem, 18vw, 12rem);
    line-height: 1;
    background: linear-gradient(135deg, var(--green) 0%, var(--amber) 60%, #c33c2c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0 0 .5rem;
    letter-spacing: -.05em;
    text-shadow: 0 24px 60px rgba(122, 31, 18, .12);
}

.error-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--green);
    font-size: 2rem;
    margin-bottom: 1.2rem;
    box-shadow: 0 18px 40px -18px rgba(122, 31, 18, .25);
}

.error-page h1 {
    font-size: clamp(1.6rem, 3.6vw, 2.4rem);
    font-weight: 600;
    margin-bottom: .7rem;
    color: var(--ink);
}

.error-page p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    gap: .7rem;
    justify-content: center;
    flex-wrap: wrap;
}

.error-links {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.error-links p {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1rem;
}

.error-links .quick {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
}

.error-links .quick a {
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink);
    font-size: .88rem;
    font-weight: 600;
    padding: .5rem 1rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    transition: .15s;
}

.error-links .quick a:hover {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

.error-links .quick a i {
    color: var(--amber);
}

.error-links .quick a:hover i {
    color: #fff;
}

.privacy-hero {
    padding: 3rem 0 1.5rem;
}

.privacy-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 600;
    line-height: 1.08;
}

.privacy-hero p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 42rem;
    margin-top: 1rem;
}

.policy-toc {
    background: var(--sand);
    border-radius: 18px;
    padding: 1.4rem 1.6rem;
    margin-bottom: 2rem;
    position: sticky;
    top: 90px;
}

.policy-toc h6 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: .7rem;
    display: flex;
    align-items: center;
    gap: .4rem;
    color: var(--green);
}

.policy-toc ol {
    padding-left: 1.2rem;
    margin: 0;
}

.policy-toc ol li {
    font-size: .88rem;
    line-height: 1.5;
    margin-bottom: .5rem;
}

.policy-toc ol li a {
    color: var(--ink);
}

.policy-toc ol li a:hover {
    color: var(--green);
}

.policy-body {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 2.2rem 2.4rem;
}

.policy-body h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2.2rem 0 .8rem;
    color: var(--green);
    scroll-margin-top: 90px;
}

.policy-body h2:first-child {
    margin-top: 0;
}

.policy-body p,
.policy-body li {
    color: #3a2a20;
    line-height: 1.75;
    font-size: .98rem;
}

.policy-body ul {
    padding-left: 1.3rem;
}

.policy-body ul li {
    margin-bottom: .5rem;
}

.policy-body a {
    color: var(--green);
    font-weight: 600;
    border-bottom: 1px dotted var(--green);
}

.policy-body a:hover {
    color: var(--green-700);
}

.policy-meta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--sand);
    color: var(--green);
    font-weight: 600;
    font-size: .82rem;
    padding: .45rem .9rem;
    border-radius: 999px;
}

@media(max-width:991px) {
    .policy-toc {
        position: static;
    }

    .policy-body {
        padding: 1.6rem 1.4rem;
    }
}

@media(max-width:575px) {
    .policy-body {
        padding: 1.3rem 1.2rem;
    }
}

@media(max-width:575px) {
    .error-page {
        padding: 2rem 0 3rem;
    }

    .error-code {
        margin-bottom: 0;
    }

    .error-page p {
        font-size: .95rem;
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
    }
}

@media (max-width: 991px) {
    .section {
        padding: 4rem 0;
    }

    .mega-menu {
        min-width: auto;
    }

    .case-visual {
        min-height: 260px;
    }

    .navbar-collapse {
        margin-top: 1rem;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 3.2rem 0;
    }

    .hero .section {
        padding-top: 2.5rem;
    }

    .case-visual {
        min-height: 220px;
        font-size: 3rem;
    }

    .tile {
        height: 160px;
        font-size: 2.6rem;
    }

    .industry-card {
        height: 170px;
    }

    .industry-card .ind-label {
        font-size: 1rem;
        padding: 0.8rem 0.9rem;
    }

    .quote-form {
        padding: 1.3rem;
    }

    .testi-card,
    .resource-card {
        padding: 1.2rem;
    }

    .btn-lg {
        padding: 0.65rem 1.2rem;
        font-size: 0.95rem;
    }

    .fs-5 {
        font-size: 1rem !important;
    }

    .topbar .marquee-item {
        padding: 0.5rem 0.8rem;
        font-size: 0.78rem;
    }

    .marquee-track .trust-logo {
        padding: 0 1.8rem;
    }

    .feature-row {
        padding: 1rem 0;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 2.6rem 0;
    }

    .eyebrow {
        font-size: 0.68rem;
        padding: 0.35rem 0.7rem;
    }

    .hero .d-flex.flex-wrap.gap-3 .btn {
        width: 100%;
    }

    .hero-pill {
        font-size: 0.82rem;
        padding: 0.45rem 0.8rem;
    }

    .industry-card {
        height: 150px;
    }

    .newsletter .input-group {
        flex-wrap: nowrap;
    }

    .navbar .navbar-brand {
        font-size: 1.25rem;
    }
}

@media (max-width: 575px) {
    .search-bar {
        margin-right: 2.6rem;
        padding: 0.7rem 0.9rem;
    }

    .search-bar input {
        font-size: 0.95rem;
    }
}

@media (max-width: 991px) {
    .sidebar-sticky {
        position: static;
    }

    .cat-hero {
        padding: 2rem 0 1rem;
    }
}

@media (max-width: 575px) {

    .quote-side,
    .side-links {
        padding: 1.15rem;
    }

    .prod-body {
        padding: 0.8rem 0.85rem 1rem;
    }

    .prod-title {
        font-size: 0.92rem;
    }

    .topbar .marquee-item {
        padding: 0.5rem 0.8rem;
    }
}

@media (max-width: 991px) {
    .section {
        padding: 3.4rem 0;
    }
}

@media (max-width: 575px) {
    .section {
        padding: 2.6rem 0;
    }

    .inquiry-card,
    .quote-form {
        padding: 1.2rem;
    }

    .topbar .marquee-item {
        padding: 0.5rem 0.8rem;
    }

    .thumbs {
        gap: 0.5rem;
    }

    .gallery-main .tag {
        font-size: 0.65rem;
        padding: 0.3rem 0.65rem;
    }
}

@media (max-width: 991px) {
    .about-hero {
        padding: 3rem 0 1.5rem;
    }
}

@media (max-width: 575px) {
    .topbar .marquee-item {
        padding: 0.5rem 0.8rem;
    }

    .stats-strip {
        padding: 1.8rem 1.2rem;
    }
}

@media (max-width: 991px) {
    .contact-hero {
        padding: 2.5rem 0 0.5rem;
    }
}

@media (max-width: 575px) {

    .contact-form,
    .side-panel {
        padding: 1.4rem;
    }

    .topbar .marquee-item {
        padding: 0.5rem 0.8rem;
    }
}

@media (max-width: 991px) {
    .sidebar-sticky {
        position: static;
    }

    .blog-hero {
        padding: 2.5rem 0 1rem;
    }

    .featured-post-body {
        padding: 1.5rem;
    }
}

@media (max-width: 575px) {

    .side-card,
    .post-body {
        padding: 1.2rem;
    }

    .topbar .marquee-item {
        padding: 0.5rem 0.8rem;
    }

    .featured-post h2 {
        font-size: 1.45rem;
    }
}

@media (max-width: 991px) {
    .sidebar-sticky {
        position: static;
    }

    .post-banner {
        padding: 2.5rem 0 2rem;
    }

    .article-wrap {
        padding: 2.5rem 0;
    }
}

@media (max-width: 575px) {
    .post-banner {
        padding: 2rem 0 1.5rem;
    }

    .article p {
        font-size: 1rem;
    }

    .article p.lead {
        font-size: 1.05rem;
    }

    .quote-side {
        padding: 1.2rem;
    }

    .article blockquote {
        padding: 1.2rem 1.3rem;
        font-size: 1.05rem;
    }

    .topbar .marquee-item {
        padding: 0.5rem 0.8rem;
    }

    .post-meta {
        gap: 0.8rem;
        font-size: 0.82rem;
    }

    .post-meta .avatar {
        width: 32px;
        height: 32px;
        font-size: 0.82rem;
    }
}

@media (max-width: 991px) {
    .quote-hero {
        padding: 2rem 0 0.5rem;
    }

    .quote-card {
        padding: 1.6rem;
    }
}

@media (max-width: 575px) {
    .quote-card {
        padding: 1.2rem;
    }

    .topbar .marquee-item {
        padding: 0.5rem 0.8rem;
    }

    .btn-submit {
        width: 100%;
    }
}