@font-face {
    font-family: "Raleway";
    src: url("../font/raleway-400-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Raleway";
    src: url("../font/raleway-700-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

:root {
    --orange: #f47b20;
    --orange-dark: #d95f0d;
    --orange-soft: #fff1e6;
    --green: #799f3a;
    --green-dark: #4e7022;
    --ink: #1e261c;
    --ink-soft: #4e584b;
    --cream: #fbf8f2;
    --cream-dark: #f3ede2;
    --white: #ffffff;
    --line: #e8e1d6;
    --shadow-sm: 0 12px 32px rgba(35, 30, 22, .08);
    --shadow-lg: 0 28px 80px rgba(35, 30, 22, .16);
    --radius-sm: 14px;
    --radius: 24px;
    --radius-lg: 38px;
    --transition: 180ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--white);
    color: var(--ink);
    font-family: "Raleway", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
    font-family: "Raleway", Arial, sans-serif;
}

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

a {
    color: inherit;
}

p:last-child {
    margin-bottom: 0;
}

::selection {
    background: var(--orange);
    color: #fff;
}

.skip-link {
    position: fixed;
    top: -100px;
    left: 1rem;
    z-index: 9999;
    border-radius: 0 0 10px 10px;
    background: var(--ink);
    color: #fff;
    padding: .75rem 1rem;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 0;
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    padding: .75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: rgba(24, 34, 22, .2);
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.site-header.is-scrolled {
    padding: .35rem 0;
    border-bottom-color: rgba(255, 255, 255, .06);
    background: rgba(27, 36, 25, .96);
    box-shadow: 0 10px 35px rgba(10, 18, 8, .14);
    backdrop-filter: blur(16px);
}

.site-logo {
    width: 188px;
    height: auto;
}

.site-header .navbar {
    padding: 0;
}

.site-header .nav-link {
    position: relative;
    margin: 0 .25rem;
    padding: .85rem .75rem !important;
    color: rgba(255, 255, 255, .82);
    font-size: .92rem;
    font-weight: 700;
    transition: color var(--transition);
}

.site-header .nav-link::after {
    position: absolute;
    right: .75rem;
    bottom: .45rem;
    left: .75rem;
    height: 2px;
    border-radius: 999px;
    background: var(--orange);
    content: "";
    opacity: 0;
    transform: scaleX(.4);
    transition: opacity var(--transition), transform var(--transition);
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: #fff;
}

.site-header .nav-link:hover::after,
.site-header .nav-link.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, .3);
    box-shadow: none !important;
}

.navbar-toggler-icon {
    filter: invert(1);
}

.btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    border-radius: 999px;
    padding: .72rem 1.35rem;
    font-size: .9rem;
    font-weight: 700;
    transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

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

.btn-lg {
    min-height: 56px;
    padding: .9rem 1.65rem;
}

.btn-orange {
    border: 1px solid var(--orange);
    background: var(--orange);
    box-shadow: 0 12px 26px rgba(244, 123, 32, .22);
    color: #fff;
}

.btn-orange:hover,
.btn-orange:focus {
    border-color: var(--orange-dark);
    background: var(--orange-dark);
    box-shadow: 0 16px 34px rgba(217, 95, 13, .28);
    color: #fff;
}

.btn-outline-orange {
    border: 1px solid var(--orange);
    background: transparent;
    color: var(--orange-dark);
}

.btn-outline-orange:hover,
.btn-outline-orange:focus {
    border-color: var(--orange);
    background: var(--orange);
    color: #fff;
}

.btn-whatsapp {
    border: 1px solid #25d366;
    background: #25d366;
    box-shadow: 0 12px 26px rgba(37, 211, 102, .2);
    color: #102d19;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
    border-color: #1eba59;
    background: #1eba59;
    color: #0b2614;
}

.btn-ghost-light {
    border: 1px solid rgba(255, 255, 255, .36);
    color: #fff;
}

.btn-ghost-light:hover,
.btn-ghost-light:focus {
    border-color: #fff;
    background: #fff;
    color: var(--ink);
}

.header-whatsapp {
    min-height: 44px;
    padding: .62rem 1.2rem;
    font-size: .82rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: 1.1rem;
    color: var(--orange-dark);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 28px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
}

.eyebrow-light {
    color: #ffad6d;
}

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 790px;
    padding: 165px 0 100px;
    background:
        radial-gradient(circle at 76% 28%, rgba(121, 159, 58, .2), transparent 28%),
        radial-gradient(circle at 18% 90%, rgba(244, 123, 32, .13), transparent 26%),
        linear-gradient(135deg, #1a2519 0%, #253423 53%, #182317 100%);
    color: #fff;
}

.hero-section::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 64px 64px;
    content: "";
    mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

.hero-section h1,
.page-hero h1 {
    max-width: 760px;
    margin: 0 0 1.4rem;
    font-size: clamp(2.8rem, 5.5vw, 5.5rem);
    font-weight: 700;
    letter-spacing: -.05em;
    line-height: .98;
}

.hero-section h1 em,
.page-hero h1 em,
.section-heading h2 em,
.cta-panel h2 em {
    color: var(--orange);
    font-style: normal;
}

.hero-copy {
    max-width: 620px;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, .72);
    font-size: 1.15rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.1rem 1.7rem;
    margin-top: 2.4rem;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.hero-trust > div {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: rgba(255, 255, 255, .7);
    font-size: .76rem;
    line-height: 1.35;
}

.hero-trust i {
    color: #a7c86f;
    font-size: 1rem;
}

.hero-trust strong {
    display: block;
    color: #fff;
}

.hero-visual {
    position: relative;
    max-width: 570px;
    margin-left: auto;
}

.hero-image-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: .92;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 48% 48% 34px 34px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .03));
    box-shadow: 0 44px 80px rgba(0, 0, 0, .25);
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-scent-card {
    position: absolute;
    right: -22px;
    bottom: 48px;
    display: flex;
    max-width: 300px;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--shadow-lg);
    color: var(--ink);
    padding: 1rem 1.15rem;
}

.scent-icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 15px;
    background: var(--orange-soft);
    color: var(--orange);
    font-size: 1.1rem;
}

.hero-scent-card span {
    display: block;
    color: var(--ink-soft);
    font-size: .72rem;
}

.hero-scent-card strong {
    display: block;
    font-size: .86rem;
    line-height: 1.4;
}

.hero-dot-pattern {
    position: absolute;
    top: 12%;
    left: -40px;
    width: 96px;
    height: 130px;
    background-image: radial-gradient(rgba(255, 255, 255, .36) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
}

.hero-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
}

.hero-orbit-one {
    top: -220px;
    right: -220px;
    width: 630px;
    height: 630px;
}

.hero-orbit-two {
    right: 16%;
    bottom: -300px;
    width: 560px;
    height: 560px;
}

.image-placeholder {
    position: relative;
    background:
        radial-gradient(circle at 35% 32%, rgba(244, 123, 32, .16), transparent 25%),
        linear-gradient(145deg, #eee8dd, #f8f4ed);
}

.image-placeholder.is-empty::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    color: rgba(78, 88, 75, .48);
    content: "\f1d8";
    font-family: "Font Awesome 7 Free";
    font-size: 2rem;
    font-weight: 900;
    transform: translate(-50%, -50%);
}

.image-placeholder.is-empty::after {
    position: absolute;
    top: calc(50% + 34px);
    left: 50%;
    z-index: 1;
    color: rgba(78, 88, 75, .58);
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    transform: translateX(-50%);
    white-space: nowrap;
}

img.is-placeholder {
    opacity: 0;
}

.expertise-strip {
    position: relative;
    z-index: 4;
    margin-top: -1px;
    background: #fff;
    box-shadow: 0 22px 60px rgba(30, 38, 28, .08);
}

.expertise-item {
    display: flex;
    gap: 1rem;
    min-height: 160px;
    align-items: center;
    border-right: 1px solid var(--line);
    padding: 2rem;
}

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

.expertise-item > span {
    color: var(--orange);
    font-size: 1.65rem;
    font-weight: 700;
}

.expertise-item strong {
    display: block;
    margin-bottom: .3rem;
    font-size: 1rem;
}

.expertise-item p {
    color: var(--ink-soft);
    font-size: .82rem;
    line-height: 1.55;
}

.section-space {
    padding: 110px 0;
}

.section-space-sm {
    padding: 80px 0;
}

.bg-warm {
    background: var(--cream);
}

.section-heading {
    max-width: 680px;
    margin-bottom: 3rem;
}

.section-heading-centered {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading-centered .eyebrow {
    justify-content: center;
}

.section-heading h2 {
    margin: 0 0 1.1rem;
    font-size: clamp(2.25rem, 4vw, 3.9rem);
    font-weight: 700;
    letter-spacing: -.045em;
    line-height: 1.08;
}

.section-heading p {
    color: var(--ink-soft);
    font-size: 1.02rem;
}

.section-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.text-link {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: .65rem;
    border-bottom: 1px solid var(--orange);
    color: var(--orange-dark);
    padding: 0 0 .25rem;
    font-size: .86rem;
    font-weight: 700;
    text-decoration: none;
}

.text-link i {
    transition: transform var(--transition);
}

.text-link:hover i {
    transform: translateX(4px);
}

.category-card {
    position: relative;
    display: block;
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: inherit;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.category-card:hover {
    border-color: rgba(244, 123, 32, .45);
    box-shadow: var(--shadow-lg);
    transform: translateY(-7px);
}

.category-image {
    overflow: hidden;
    aspect-ratio: 1.08;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-content {
    position: relative;
    padding: 1.5rem;
}

.category-content > span {
    display: block;
    color: var(--orange);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
}

.category-content h3 {
    margin: .45rem 2rem .5rem 0;
    font-size: 1.16rem;
    font-weight: 700;
}

.category-content p {
    display: -webkit-box;
    overflow: hidden;
    color: var(--ink-soft);
    font-size: .8rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 1.55;
}

.category-content > i {
    position: absolute;
    top: 1.65rem;
    right: 1.4rem;
    color: var(--orange);
    transform: rotate(-35deg);
    transition: transform var(--transition);
}

.category-card:hover .category-content > i {
    transform: rotate(0);
}

.product-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 10px 30px rgba(35, 30, 22, .04);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-card:hover {
    border-color: rgba(244, 123, 32, .38);
    box-shadow: var(--shadow-lg);
    transform: translateY(-7px);
}

.product-card-image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1.25;
}

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

.product-card:hover .product-card-image img {
    transform: scale(1.045);
}

.product-card-arrow {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--shadow-sm);
    color: var(--orange-dark);
    font-size: .8rem;
    transition: background var(--transition), color var(--transition);
}

.product-card:hover .product-card-arrow {
    background: var(--orange);
    color: #fff;
}

.product-card-body {
    display: flex;
    min-height: 260px;
    flex-direction: column;
    padding: 1.45rem;
}

.product-card-categories {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-bottom: .75rem;
}

.product-card-categories span {
    border-radius: 999px;
    background: var(--orange-soft);
    color: var(--orange-dark);
    padding: .25rem .65rem;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.product-card h3 {
    margin: 0 0 .7rem;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.25;
}

.product-card h3 a {
    color: inherit;
    text-decoration: none;
}

.product-card p {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 1.2rem;
    color: var(--ink-soft);
    font-size: .86rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-height: 1.65;
}

.product-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.product-details-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--ink);
    font-size: .78rem;
    font-weight: 700;
    text-decoration: none;
}

.product-details-link i {
    color: var(--orange);
    transition: transform var(--transition);
}

.product-details-link:hover i {
    transform: translateX(4px);
}

.product-whatsapp-link {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: #e7f9ee;
    color: #148c43;
    font-size: 1.08rem;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}

.product-whatsapp-link:hover {
    background: #25d366;
    color: #0d3519;
}

.empty-showcase {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border: 1px dashed #d7cbbb;
    border-radius: var(--radius);
    background: #fff;
    padding: 2.5rem;
}

.empty-showcase h3 {
    margin-bottom: .5rem;
}

.about-preview {
    overflow: hidden;
}

.about-collage {
    position: relative;
    min-height: 600px;
    padding-right: 72px;
}

.about-main-image {
    overflow: hidden;
    height: 560px;
    border-radius: var(--radius-lg);
}

.about-main-image img,
.about-secondary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-secondary-image {
    position: absolute;
    right: 0;
    bottom: 0;
    overflow: hidden;
    width: 48%;
    height: 230px;
    border: 9px solid #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.about-seal {
    position: absolute;
    top: 34px;
    right: 23px;
    display: grid;
    width: 125px;
    height: 125px;
    place-items: center;
    border: 5px solid #fff;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: var(--shadow-lg);
    color: #fff;
    text-align: center;
    transform: rotate(7deg);
}

.about-seal i {
    margin-bottom: -18px;
    font-size: 1.2rem;
}

.about-seal span {
    font-size: .72rem;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
}

.check-list {
    display: grid;
    gap: .8rem;
    margin: 0 0 2rem;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: .75rem;
    color: var(--ink-soft);
}

.check-list i {
    display: grid;
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: #edf4e3;
    color: var(--green-dark);
    font-size: .7rem;
}

.testimonials-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 10%, rgba(244, 123, 32, .15), transparent 22%),
        linear-gradient(145deg, #1c281a, #293b26);
    color: #fff;
}

.section-heading-light h2 {
    color: #fff;
}

.testimonial-card {
    position: relative;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .07);
    padding: 2rem;
    backdrop-filter: blur(8px);
}

.testimonial-quote {
    margin-bottom: 1.2rem;
    color: var(--orange);
    font-size: 1.5rem;
}

.testimonial-card > p {
    color: rgba(255, 255, 255, .76);
    font-size: .93rem;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-card footer {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-top: 1.5rem;
}

.testimonial-card footer span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--orange);
    font-weight: 700;
}

.testimonial-card footer strong {
    font-size: .85rem;
}

.cta-section {
    padding-top: 80px;
}

.cta-panel {
    position: relative;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, .16), transparent 25%),
        linear-gradient(135deg, var(--orange-dark), var(--orange));
    box-shadow: 0 32px 70px rgba(217, 95, 13, .25);
    color: #fff;
    padding: 3.5rem 4rem;
}

.cta-panel h2 {
    max-width: 700px;
    margin: 0 0 .8rem;
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 700;
    letter-spacing: -.045em;
    line-height: 1.08;
}

.cta-panel h2 em {
    color: #fff2d8;
}

.cta-panel p {
    color: rgba(255, 255, 255, .78);
}

.cta-panel .btn-light {
    flex: 0 0 auto;
    color: var(--orange-dark);
}

.page-hero {
    position: relative;
    overflow: hidden;
    min-height: 510px;
    padding: 165px 0 75px;
    background:
        radial-gradient(circle at 82% 25%, rgba(121, 159, 58, .22), transparent 26%),
        linear-gradient(135deg, #1a2519, #2c3d29);
    color: #fff;
}

.page-hero::before {
    position: absolute;
    right: -180px;
    bottom: -360px;
    width: 650px;
    height: 650px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    content: "";
}

.page-hero h1 {
    max-width: 900px;
    margin-bottom: 1rem;
    font-size: clamp(2.8rem, 5vw, 5rem);
}

.page-hero p {
    max-width: 580px;
    color: rgba(255, 255, 255, .7);
    font-size: 1.02rem;
}

.breadcrumb-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .65rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, .62);
    font-size: .74rem;
    font-weight: 700;
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, .82);
    text-decoration: none;
}

.breadcrumb-nav a:hover {
    color: #fff;
}

.breadcrumb-nav i {
    font-size: .5rem;
}

.page-hero-image {
    overflow: hidden;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50% 50% 26px 26px;
}

.page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-filters {
    position: relative;
    z-index: 5;
    margin-top: -125px;
    margin-bottom: 3.2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
}

.filter-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

.filter-heading span {
    display: block;
    color: var(--orange-dark);
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.filter-heading strong {
    display: block;
    font-size: 1rem;
}

.clear-filters {
    color: var(--ink-soft);
    font-size: .74rem;
    font-weight: 700;
    text-decoration: none;
}

.product-filters label,
.contact-form label {
    display: block;
    margin-bottom: .45rem;
    color: var(--ink);
    font-size: .75rem;
    font-weight: 700;
}

.form-control,
.form-select {
    min-height: 50px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background-color: #fff;
    color: var(--ink);
    font-size: .85rem;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(244, 123, 32, .7);
    box-shadow: 0 0 0 4px rgba(244, 123, 32, .1);
}

.filter-input-icon {
    position: relative;
}

.filter-input-icon > i {
    position: absolute;
    top: 50%;
    left: 1rem;
    z-index: 1;
    color: #9b9e96;
    transform: translateY(-50%);
}

.filter-input-icon .form-control {
    padding-left: 2.7rem;
}

.products-result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.products-result-header span {
    display: block;
    color: var(--orange-dark);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.products-result-header strong {
    font-size: 1rem;
}

.public-pagination {
    margin-top: 3rem;
}

.public-pagination .pagination {
    gap: .4rem;
}

.public-pagination .pagination li > a,
.public-pagination .pagination li > span {
    display: grid;
    min-width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50% !important;
    background: #fff;
    color: var(--ink-soft);
    font-size: .8rem;
    font-weight: 700;
}

.public-pagination .pagination li.active > a,
.public-pagination .pagination li.active > span,
.public-pagination .pagination li.current > a,
.public-pagination .pagination li.current > span {
    border-color: var(--orange);
    background: var(--orange);
    color: #fff;
}

.public-pagination .pagination li.disabled > a,
.public-pagination .pagination li.disabled > span {
    opacity: .45;
}

.no-results {
    border: 1px dashed #d8cdbd;
    border-radius: var(--radius);
    background: var(--cream);
    padding: 4.5rem 2rem;
    text-align: center;
}

.no-results-icon {
    display: grid;
    width: 68px;
    height: 68px;
    place-items: center;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: var(--orange-soft);
    color: var(--orange);
    font-size: 1.4rem;
}

.no-results h2 {
    font-size: 1.6rem;
    font-weight: 700;
}

.no-results p {
    max-width: 560px;
    margin: 0 auto 1.5rem;
    color: var(--ink-soft);
}

.product-detail-hero {
    min-height: 230px;
    padding: 145px 0 35px;
    background:
        radial-gradient(circle at 80% 10%, rgba(244, 123, 32, .15), transparent 30%),
        linear-gradient(135deg, #1b2619, #2a3a27);
}

.breadcrumb-nav-dark {
    margin-bottom: 0;
}

.product-gallery-main {
    overflow: hidden;
    aspect-ratio: 1.18;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery-thumbs {
    display: flex;
    overflow-x: auto;
    gap: .75rem;
    margin-top: 1rem;
    padding-bottom: .4rem;
}

.product-gallery-thumb {
    overflow: hidden;
    width: 96px;
    height: 76px;
    flex: 0 0 auto;
    border: 2px solid transparent;
    border-radius: 14px;
    background: var(--cream);
    padding: 0;
    opacity: .68;
    transition: border-color var(--transition), opacity var(--transition);
}

.product-gallery-thumb.active,
.product-gallery-thumb:hover {
    border-color: var(--orange);
    opacity: 1;
}

.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-content {
    position: sticky;
    top: 110px;
}

.product-detail-categories {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-bottom: 1rem;
}

.product-detail-categories a {
    border-radius: 999px;
    background: var(--orange-soft);
    color: var(--orange-dark);
    padding: .35rem .75rem;
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-decoration: none;
    text-transform: uppercase;
}

.product-detail-content > h1 {
    margin-bottom: 1.2rem;
    font-size: clamp(2.4rem, 4vw, 4.3rem);
    font-weight: 700;
    letter-spacing: -.05em;
    line-height: 1.02;
}

.product-lead {
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.85;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin: 1.5rem 0;
}

.product-tags a {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink-soft);
    padding: .45rem .75rem;
    font-size: .7rem;
    font-weight: 700;
    text-decoration: none;
}

.product-tags i {
    color: var(--orange);
    font-size: .62rem;
}

.product-contact-box {
    margin-top: 1.8rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--cream);
    padding: 1.5rem;
}

.product-contact-box > span {
    color: var(--orange-dark);
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.product-contact-box h2 {
    margin: .3rem 0 .5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.product-contact-box p {
    color: var(--ink-soft);
    font-size: .82rem;
    line-height: 1.6;
}

.product-contact-box small {
    display: block;
    margin-top: .65rem;
    color: #7b8278;
    font-size: .67rem;
    text-align: center;
}

.product-information {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid var(--line);
}

.product-information h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.rich-text {
    color: var(--ink-soft);
    line-height: 1.95;
}

.product-video-list {
    display: grid;
    gap: 1rem;
}

.product-video-list video {
    width: 100%;
    border-radius: var(--radius);
    background: #111;
}

.about-page-hero,
.contact-page-hero {
    min-height: 560px;
}

.about-story-images {
    position: relative;
    min-height: 650px;
    padding: 0 65px 65px 0;
}

.about-story-main {
    overflow: hidden;
    height: 620px;
    border-radius: 44% 44% var(--radius) var(--radius);
}

.about-story-main img,
.about-story-detail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-story-detail {
    position: absolute;
    right: 0;
    bottom: 0;
    overflow: hidden;
    width: 47%;
    height: 230px;
    border: 9px solid #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.value-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 2rem;
}

.value-card > span {
    position: absolute;
    top: 1.2rem;
    right: 1.4rem;
    color: #ded6ca;
    font-size: 2rem;
    font-weight: 700;
}

.value-card > i {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    margin-bottom: 1.4rem;
    border-radius: 18px;
    background: var(--orange-soft);
    color: var(--orange);
    font-size: 1.25rem;
}

.value-card h3 {
    font-size: 1.18rem;
    font-weight: 700;
}

.value-card p {
    color: var(--ink-soft);
    font-size: .84rem;
}

.sticky-heading {
    position: sticky;
    top: 125px;
}

.process-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-list li {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 1.5rem;
    border-bottom: 1px solid var(--line);
    padding: 0 0 2rem;
}

.process-list li + li {
    padding-top: 2rem;
}

.process-list > li > span {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
}

.process-list h3 {
    margin-bottom: .45rem;
    font-size: 1.35rem;
    font-weight: 700;
}

.process-list p {
    color: var(--ink-soft);
}

.contact-sidebar > h2 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 1.1;
}

.contact-sidebar > p {
    margin-bottom: 2rem;
    color: var(--ink-soft);
}

.contact-channel {
    display: grid;
    grid-template-columns: 54px 1fr auto;
    align-items: center;
    gap: 1rem;
    border: 1px solid #ccebd6;
    border-radius: var(--radius);
    background: #f2fbf5;
    color: inherit;
    padding: 1rem;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition);
}

.contact-channel + .contact-channel {
    margin-top: .85rem;
}

.contact-channel:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.contact-channel > span {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 17px;
    background: #25d366;
    color: #10351d;
    font-size: 1.45rem;
}

.contact-channel small {
    display: block;
    color: var(--ink-soft);
    font-size: .7rem;
}

.contact-channel strong {
    display: block;
}

.contact-channel > i {
    color: #148c43;
}

.contact-channel-email {
    border-color: #f5d7bf;
    background: #fff8f2;
}

.contact-channel-email > span {
    background: var(--orange-soft);
    color: var(--orange-dark);
}

.contact-channel-email > i {
    color: var(--orange);
}

.contact-channel-email div {
    min-width: 0;
}

.contact-channel-email strong {
    overflow-wrap: anywhere;
}

.contact-business-address {
    display: flex;
    gap: .85rem;
    margin: 1.25rem 0 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--ink-soft);
    padding: 1rem;
    font-size: .76rem;
    font-style: normal;
    line-height: 1.6;
}

.contact-business-address > i {
    margin-top: .22rem;
    color: var(--orange);
}

.contact-business-address strong,
.contact-business-address span {
    display: block;
}

.contact-business-address strong {
    color: var(--ink);
}

.contact-note {
    display: flex;
    gap: .75rem;
    margin: 1.25rem 0;
    border-radius: var(--radius-sm);
    background: var(--orange-soft);
    color: #795030;
    padding: 1rem;
}

.contact-note i {
    margin-top: .25rem;
    color: var(--orange);
}

.contact-note p {
    font-size: .76rem;
    line-height: 1.6;
}

.contact-static-image {
    overflow: hidden;
    height: 250px;
    border-radius: var(--radius);
}

.contact-static-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--cream);
    padding: 2.5rem;
}

.form-kicker {
    color: var(--orange-dark);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contact-form-card > h2 {
    margin: .35rem 0 .45rem;
    font-size: 2rem;
    font-weight: 700;
}

.contact-form-card > p {
    margin-bottom: 1.7rem;
    color: var(--ink-soft);
    font-size: .85rem;
}

.contact-form textarea.form-control {
    min-height: 145px;
    resize: vertical;
}

.form-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.privacy-check {
    display: flex !important;
    align-items: flex-start;
    gap: .65rem;
    color: var(--ink-soft) !important;
    font-size: .74rem !important;
    font-weight: 400 !important;
    line-height: 1.55;
}

.privacy-check input {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    margin-top: .15rem;
    accent-color: var(--orange);
}

.privacy-check a {
    color: var(--orange-dark);
    font-weight: 700;
}

.legal-page-hero {
    min-height: 460px;
}

.legal-page-hero h1 {
    margin-bottom: .7rem;
}

.legal-index {
    position: sticky;
    top: 115px;
    display: grid;
    gap: .25rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--cream);
    padding: 1.35rem;
}

.legal-index strong {
    margin-bottom: .7rem;
    font-size: .83rem;
}

.legal-index a {
    border-radius: 8px;
    color: var(--ink-soft);
    padding: .35rem .5rem;
    font-size: .7rem;
    text-decoration: none;
}

.legal-index a:hover {
    background: #fff;
    color: var(--orange-dark);
}

.legal-content {
    max-width: 850px;
}

.legal-intro {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--orange);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    background: var(--orange-soft);
    padding: 1.4rem;
}

.legal-intro i {
    margin-top: .2rem;
    color: var(--orange);
    font-size: 1.25rem;
}

.legal-content section {
    scroll-margin-top: 110px;
    padding: 0 0 2.6rem;
}

.legal-content section + section {
    padding-top: 2.6rem;
    border-top: 1px solid var(--line);
}

.legal-content h2 {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: 1.2rem;
    font-size: 1.55rem;
    font-weight: 700;
}

.legal-content h2 span {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-size: .78rem;
}

.legal-content p,
.legal-content li {
    color: var(--ink-soft);
    font-size: .9rem;
}

.legal-content li + li {
    margin-top: .45rem;
}

.legal-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.25rem;
}

.legal-table {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-size: .78rem;
}

.legal-table th {
    background: var(--cream);
    color: var(--ink);
}

.legal-table td,
.legal-table th {
    border-color: var(--line);
    padding: .85rem;
}

.site-footer {
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    background: #172015;
    color: #fff;
    padding: 80px 0 28px;
}

.footer-glow {
    position: absolute;
    top: -280px;
    right: -220px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(244, 123, 32, .08);
    filter: blur(2px);
}

.footer-logo {
    width: 190px;
    height: auto;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-intro,
.footer-contact-copy {
    max-width: 390px;
    color: rgba(255, 255, 255, .62);
    font-size: .84rem;
}

.footer-company-data {
    display: grid;
    gap: .2rem;
    margin-top: 1.2rem;
    color: rgba(255, 255, 255, .52);
    font-size: .68rem;
}

.footer-company-data strong {
    color: rgba(255, 255, 255, .78);
}

.footer-title {
    margin: 0 0 1.2rem;
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: .65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a,
.footer-links-static li {
    color: rgba(255, 255, 255, .6);
    font-size: .8rem;
    text-decoration: none;
}

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

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    color: #62df8f;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
}

.footer-contact-list {
    display: grid;
    gap: .75rem;
}

.footer-email,
.footer-address {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: .72rem;
    font-style: normal;
    line-height: 1.55;
    text-decoration: none;
}

.footer-email {
    overflow-wrap: anywhere;
}

.footer-email i,
.footer-address i {
    margin-top: .2rem;
    color: var(--orange);
}

.footer-email:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 4rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom p,
.footer-bottom a {
    margin: 0;
    color: rgba(255, 255, 255, .45);
    font-size: .7rem;
}

.footer-bottom > div {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom a {
    text-decoration: none;
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1020;
    display: flex;
    align-items: center;
    gap: .55rem;
    border: 4px solid rgba(255, 255, 255, .9);
    border-radius: 999px;
    background: #25d366;
    box-shadow: 0 14px 34px rgba(12, 82, 37, .28);
    color: #10351d;
    padding: .75rem 1rem;
    font-size: .76rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition);
}

.floating-whatsapp i {
    font-size: 1.2rem;
}

.floating-whatsapp:hover {
    box-shadow: 0 18px 42px rgba(12, 82, 37, .36);
    color: #10351d;
    transform: translateY(-3px);
}

.privacy-notice {
    position: fixed;
    right: 24px;
    bottom: 92px;
    z-index: 1040;
    display: flex;
    width: min(520px, calc(100vw - 48px));
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-lg);
    padding: 1rem 1.1rem;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 250ms ease, transform 250ms ease;
}

.privacy-notice[hidden] {
    display: none;
}

.privacy-notice.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.privacy-notice strong {
    display: block;
    font-size: .83rem;
}

.privacy-notice p {
    color: var(--ink-soft);
    font-size: .7rem;
}

.privacy-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: .75rem;
}

.privacy-actions a,
.privacy-actions button {
    border: 0;
    background: transparent;
    color: var(--orange-dark);
    font-size: .7rem;
    font-weight: 700;
}

.privacy-actions button {
    border-radius: 999px;
    background: var(--orange);
    color: #fff;
    padding: .55rem .85rem;
}

.flash-messages {
    position: fixed;
    top: 96px;
    left: 50%;
    z-index: 2000;
    display: grid;
    width: min(540px, calc(100vw - 32px));
    gap: .6rem;
    transform: translateX(-50%);
}

.flash-messages .message {
    display: flex;
    align-items: center;
    gap: .7rem;
    border: 1px solid #bfe6c9;
    border-left: 4px solid #29a957;
    border-radius: 14px;
    background: #effbf2;
    box-shadow: var(--shadow-lg);
    color: #216735;
    padding: .9rem 1rem;
    font-size: .8rem;
    font-weight: 700;
    cursor: pointer;
    animation: messageIn 300ms ease both;
}

.flash-messages .message.error {
    border-color: #f1c0be;
    border-left-color: #d83c35;
    background: #fff1f0;
    color: #9c2e29;
}

.flash-messages .message.warning {
    border-color: #efd49e;
    border-left-color: #db9224;
    background: #fff8e8;
    color: #8d5d19;
}

.flash-messages .message.is-leaving {
    animation: messageOut 260ms ease both;
}

@keyframes messageIn {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
}

@keyframes messageOut {
    to {
        opacity: 0;
        transform: translateY(-10px) scale(.98);
    }
}

@media (max-width: 1199.98px) {
    .hero-section {
        min-height: auto;
    }

    .hero-trust {
        gap: .9rem;
    }

    .about-collage,
    .about-story-images {
        min-height: 560px;
    }

    .about-main-image,
    .about-story-main {
        height: 530px;
    }
}

@media (max-width: 991.98px) {
    .site-header {
        background: rgba(27, 36, 25, .98);
    }

    .site-logo {
        width: 164px;
    }

    .navbar-collapse {
        margin-top: .75rem;
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 18px;
        background: #202d1e;
        padding: .75rem;
    }

    .site-header .nav-link {
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .06);
    }

    .site-header .nav-link::after {
        display: none;
    }

    .header-whatsapp {
        width: 100%;
        margin: .75rem 0 0 !important;
    }

    .hero-section {
        padding-top: 145px;
    }

    .hero-visual {
        margin-right: auto;
    }

    .hero-scent-card {
        right: 12px;
    }

    .expertise-item {
        min-height: 145px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .section-space {
        padding: 85px 0;
    }

    .section-space-sm {
        padding: 65px 0;
    }

    .product-filters {
        margin-top: -90px;
    }

    .product-detail-content,
    .sticky-heading,
    .legal-index {
        position: static;
    }

    .contact-sidebar {
        max-width: 680px;
    }

    .legal-index {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 135px 0 70px;
    }

    .hero-section h1,
    .page-hero h1 {
        font-size: clamp(2.65rem, 13vw, 4.2rem);
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .hero-image-frame {
        border-radius: 44% 44% 28px 28px;
    }

    .hero-scent-card {
        right: 8px;
        bottom: 18px;
        max-width: 270px;
    }

    .section-heading-row {
        display: block;
    }

    .section-heading-row .text-link {
        margin-top: 1rem;
    }

    .about-collage,
    .about-story-images {
        min-height: 490px;
        padding-right: 35px;
    }

    .about-main-image,
    .about-story-main {
        height: 460px;
    }

    .about-secondary-image,
    .about-story-detail {
        height: 180px;
    }

    .about-seal {
        top: 20px;
        right: 4px;
        width: 105px;
        height: 105px;
    }

    .cta-panel {
        display: block;
        border-radius: var(--radius);
        padding: 2.25rem 1.5rem;
    }

    .cta-panel .btn {
        width: 100%;
        margin-top: 1rem;
    }

    .page-hero {
        min-height: 470px;
        padding-top: 145px;
    }

    .product-filters {
        margin-top: -55px;
    }

    .filter-heading {
        align-items: flex-start;
    }

    .product-gallery-main {
        border-radius: var(--radius);
    }

    .contact-form-card {
        border-radius: var(--radius);
        padding: 1.4rem;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .privacy-notice {
        right: 12px;
        bottom: 82px;
        width: calc(100vw - 24px);
        align-items: flex-start;
        flex-direction: column;
    }

    .privacy-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

@media (max-width: 575.98px) {
    .hero-trust {
        grid-template-columns: 1fr;
    }

    .hero-scent-card {
        position: relative;
        right: auto;
        bottom: auto;
        max-width: none;
        margin: -36px 14px 0;
    }

    .hero-dot-pattern {
        display: none;
    }

    .expertise-item {
        min-height: auto;
        padding: 1.5rem .8rem;
    }

    .empty-showcase {
        align-items: flex-start;
        flex-direction: column;
        padding: 1.5rem;
    }

    .about-collage,
    .about-story-images {
        min-height: 420px;
        padding: 0 22px 46px 0;
    }

    .about-main-image,
    .about-story-main {
        height: 400px;
    }

    .about-secondary-image,
    .about-story-detail {
        width: 55%;
        height: 145px;
        border-width: 6px;
    }

    .about-seal {
        width: 90px;
        height: 90px;
        border-width: 4px;
    }

    .process-list li {
        grid-template-columns: 50px 1fr;
        gap: 1rem;
    }

    .process-list > li > span {
        width: 46px;
        height: 46px;
    }

    .contact-channel {
        grid-template-columns: 48px 1fr;
    }

    .contact-channel > i {
        display: none;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        width: 58px;
        height: 58px;
        justify-content: center;
        padding: 0;
    }

    .floating-whatsapp span {
        display: none;
    }

    .floating-whatsapp i {
        font-size: 1.45rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
