* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c9040d;
    --secondary-color: #20201f;
}

body {
    background: #ffffff;
    color: #111827;
    font-size: 14px;
    font-family: "Inter", sans-serif;
}

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

a {
    text-decoration: none;
}

ul {
    list-style-type: none;
}

p {
    color: #4e4e4e;
}

* {
    box-sizing: border-box;
}

.container {
    width: min(1250px, calc(100% - 50px));
    display: table;
    margin: 0 auto;
    position: relative;
}
.top-bar {
    width: 100%;
    height: 35px;
    background: #f5f0e5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 500;
    color: #3e3e3e;
    letter-spacing: 0.1px;
}
.top-content span {
    white-space: nowrap;
}

.top-content i {
    font-size: 12px;
    margin-right: 3px;
}
.divider {
    width: 1px;
    height: 9px;
    background: #bdb8ad;
}
.header {
    height: 72px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f2f2f2;
    background: #fff;
    margin: 10px 0 0;
    padding: 0 0 10px;
    border-bottom: 1px solid #eee;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -1px;
    width: 160px;
    padding: 12px 0;
}

.logo-drop {
    width: 25px;
    height: 34px;
    background: #d71920;
    clip-path: path("M12.5 0 C12.5 0 0 17 0 23 C0 30 5.6 34 12.5 34 C19.4 34 25 30 25 23 C25 17 12.5 0 12.5 0Z"
        );
    position: relative;
}

.logo-drop::after {
    content: "";
    width: 6px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    left: 7px;
    top: 12px;
    transform: rotate(25deg);
}

.logo span {
    color: #222;
}

.logo strong {
    color: var(--primary-color);
}

.nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
    font-weight: 500;
}

.nav a {
    transition: .2s ease;
    color: #444;
    text-transform: uppercase;
    font-size: 13px;
    padding-bottom: 8px;
}
.nav a i {
    font-size: 10px;
}
.nav a:hover,
.nav .current-menu-item a {
    color: #a67c32;
    border-bottom: 2px solid #a67c32;
}

.header-buttons {
    display: flex;
    gap: 9px;
}

.btn {
    padding: 9px 17px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    float: left;
}

.secondary-btn {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: #fff;
}

.primary-btn {
    background: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
}

section {
    padding: 40px 0;
}
.header-icons {
    width: 91px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 13px;
}

.header-icons a {
    position: relative;
    color: #292929;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}
.header-icons a:hover {
    color: #a67c32;
}
.header-icons .bag {
    font-size: 14px;
}
.cart-count,
.wishlist-count {
    position: absolute;
    top: -7px;
    right: -7px;
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #222;
    color: #fff;
    font-size: 10px;
}
.hero {
    background-size: contain;
    padding-bottom: 0;
    position: relative;
    padding: 0;
}
.hero-content {
    padding: 0;
    position: relative;
    z-index: 2;
}
.category-section h2 {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}
.category-grid ul {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    align-items: start;
}
.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #222;
    transition: transform 0.3s ease;
}
.category-card:hover {
    transform: translateY(-5px);
}
.image-box {
    position: relative;
    width: 100%;
    /* max-width: 145px; */
    aspect-ratio: 0.78;
    /* overflow: hidden; */
    background: #eee8dc;
    /* border-radius: 100px 100px 12px 12px; */
    /* border: 1px solid #e7dfd0; */
}
.image-box::before {
    content: "";
    background: url(../images/img-overlay.png) no-repeat top left;
    position: absolute;
    inset: 0px;
    /* border: 1px solid rgba(155, 124, 77, 0.35); */
    /* border-radius: 100px 100px 8px 8px; */
    z-index: 2;
    pointer-events: none;
    top: -6px;
    left: -24px;
}

.image-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
   
}
.category-card span {
    margin-top: 9px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #252525;
    text-align: center;
    text-transform: uppercase;
}
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #242424;
    font-weight: 600;
}

.section-header p {
    margin-top: 1px;
    font-size: 12px;
    color: #777;
}

.view-all {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.2px;
}

.view-all span {
    font-size: 11px;
}
.view-all:hover {
    color: #9a7237;
}
.products ul {
    display: grid;
    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 10px;
}
.product-card {
    min-width: 0;
    background: #fff;
    border: 1px solid #e8e5df;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 7px 20px rgba(0, 0, 0, 0.08);
}
.product-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #eee8de;
}

.product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}
section.new-arrivals {
    padding-top: 0;
}
.wishlist {
    position: absolute;
    top: 7px;
    left: 7px;
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    color: #555;
    transition: all 0.2s ease;
}
.product-info {
    padding: 8px 8px 9px;
}

.product-info h3 {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.wishlist:hover {
    background: #222;
    color: #fff;
    border-color: #222;
}
.price {
    margin-top: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #222;
}
.rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

.stars {
    color: #b27b22;
    font-size: 12px;
    letter-spacing: 0.5px;
}
.reviews {
    color: #777;
    font-size: 10px;
}
section.another-banner {
    padding: 0;
}
.benefits-bar {
    background: #f8f5ed;
    border-top: 1px solid #eee9df;
    border-bottom: 1px solid #eee9df;
}
.benefits-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    position: relative;
}

.benefit-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: #ddd8ce;
}
.benefit-icon {
    width: 30px;
    height: 30px;
    margin-right: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3f3d38;
    font-size: 16px;
}
.benefit-content {
    line-height: 1;
}

.benefit-content h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.25px;
    color: #33312d;
}
.benefit-content p {
    margin: 3px 0 0;
    font-size: 13px;
    color: #77736c;
    letter-spacing: 0.1px;
}
.promo-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 8px;
}
section.promo-section {
    padding: 0;
}
section.story-section .container {
    display: grid;
    grid-template-columns: 1.15fr 1.15fr 0.8fr;
    gap: 18px;
}
.story-image {
    width: 100%;
    overflow: hidden;
    border-radius: 2px;
}
.story-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.story-image:hover img {
    transform: scale(1.04);
}
.story-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5px 8px;
}
.story-label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #a27d43;
    margin-bottom: 6px;
}
.story-content h2 {
    margin: 0;
    font-size: 20px;
    line-height: 1.05;
    font-weight: 500;
    color: #302c27;
}
.story-content p {
    max-width: 390px;
    margin: 10px 0;
    font-size: 13px;
    line-height: 1.5;
    color: #67615a;
}
.story-button {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 11px;
    background: #aa8144;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .2px;
    transition: all .25s ease;
}
.story-button span {
    font-size: 9px;
}
.story-button:hover {
    background: #80602e;
    transform: translateY(-1px);
}
.story-stats {
    border-left: 1px solid #ded7c9;
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}
.stat {
    display: flex;
    align-items: center;
    gap: 9px;
}
.stat-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c5aa7b;
    border-radius: 50%;
    color: #9b763e;
    font-size: 20px;
    flex-shrink: 0;
}
.stat strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #3a352e;
}
.stat small {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    color: #777168;
}
a.promo-card img {
    border-radius: 18px;
}
section.handloom-collection {
    padding: 0;
}
.testimonials {
    padding: 35px 20px;
    background: #fcfbf7;
    margin: 40px 0 0;
}
.testimonials h2 {
    text-align: center;
    margin: 0 0 18px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: .7px;
    color: #28251f;
}
.testimonial-wrapper {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 15px;
}
.testimonial-list {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 18px;
    list-style: none;
}
.testimonial-item {
    position: relative;
    flex: 1;
    min-height: 105px;
    padding: 14px 15px 12px 38px;
    box-sizing: border-box;
    background: #fffefa;
    border: 1px solid #eee9df;
    border-radius: 5px;
}
.quote {
    position: absolute;
    left: 11px;
    top: 7px;
    font-size: 25px;
    font-weight: bold;
    color: #b8a47a;
}
.testimonial-item p {
    margin: 4px 0 12px;
    font-size: 13px;
    line-height: 1.55;
    color: #625d54;
}
.customer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.customer span:first-child {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    color: #4d493f;
}
.stars {
    color: #b28a45;
    font-size: 12px;
    letter-spacing: 1px;
}
/*footer*/
footer {
    background: #faf9f3;
    color: #39362f;
    padding: 25px 0;
}
.newsletter {
    /* max-width: 1200px; */
    min-height: 92px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 18px;
    background: #f3f0e7;
    padding: 7px 20px;
    box-sizing: border-box;
}

.newsletter-icon {
    width: 45px;
    font-size: 28px;
    text-align: center;
    color: #77715f;
}

.newsletter-text {
    flex: 1;
}

.newsletter-text h3 {
    margin: 0 0 2px;
    font-size:20px;
    letter-spacing: .8px;
}

.newsletter-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #69645a;
}
.newsletter-form {
    display: flex;
    width: 420px;
    height: 46px;
}

.newsletter-form input {
    flex: 1;
    border: 1px solid #e5e0d5;
    background: #fff;
    padding: 0 12px;
    font-size: 13px;
    outline: none;
}

.newsletter-form button {
    width: 100px;
    border: none;
    background: #a88a55;
    color: #fff;
    font-size: 13px;
    letter-spacing: .4px;
    cursor: pointer;
}
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr 1fr 1fr;
    gap: 40px;
    padding: 30px 0;
}
.footer-brand p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #686359;
}

.social-icons {
    display: flex;
    gap: 13px;
    margin-top: 10px;
}

.social-icons a {
    text-decoration: none;
    color: #222;
    font-size: 16px;
    font-weight: bold;
}
.footer-column h4 {
    margin: 0 0 9px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: .5px;
    color: #343129;
}

.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-column li {
    margin-bottom: 12px;
}
.footer-column a {
    text-decoration: none;
    font-size: 13px;
    color: #69645b;
    transition: color .2s ease;
}

.footer-column a:hover {
    color: #9c8150;
}
.footer-bottom {
    /* max-width: 1200px; */
    margin: 0 auto;
    border-top: 1px solid #ebe7dc;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.footer-bottom p {
    margin: 0;
    font-size: 12px;
    color: #777269;
}

.payment-methods {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 9px;
    font-weight: bold;
    width: 200px;
}

.payment-methods .mastercard {
    letter-spacing: -4px;
}
/*contact page*/
.contact-info {
    width: 100%;
    padding: 30px 20px;
    background: #faf9f5;
    box-sizing: border-box;
}
.contact-list {
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.contact-card {
    min-height: 170px;
    padding: 12px 15px 15px;
    box-sizing: border-box;
    text-align: center;
    background: #fcfbf7;
    border: 1px solid #dfd4c2;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-card:first-child::before {
    content: "❀";
    position: absolute;
    left: -15px;
    bottom: -20px;
    font-size: 95px;
    color: #eadfca;
    opacity: .7;
    transform: rotate(-15deg);
}
.contact-icon {
    width: 43px;
    height: 43px;
    margin-bottom: 12px;
    border-radius: 50%;
    background: #a98750;
    border: 2px solid #fff;
    outline: 1px solid #b99a67;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 17px;
    position: relative;
    z-index: 2;
}
.contact-card h3 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 400;
    color: #28251f;
}
.contact-card strong {
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 600;
    color: #27241e;
}

.contact-card p {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    color: #625d54;
}
.contact-line {
    width: 35px;
    height: 1px;
    margin-top: 12px;
    background: #b99a67;
    display: block;
}
.whatsapp-card p {
    margin-bottom: 10px;
    font-size: 11px;
}

.whatsapp-btn {
    width: 165px;
    height: 34px;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    box-sizing: border-box;
    background: #4b5541;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    border-radius: 3px;
    transition: .25s ease;
}

.whatsapp-btn span {
    font-size: 17px;
}

.whatsapp-btn:hover {
    background: #394133;
}
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 10px;
}
.contact-story {
    position: relative;
    overflow: hidden;
}

.contact-story img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.contact-form-box {
    position: relative;
    padding: 20px 34px;
    box-sizing: border-box;
    background: #fcfbf7;
    border: 1px solid #e4d9c9;
    overflow: hidden;
}

.contact-form-box h2 {
    position: relative;
    z-index: 2;
    margin: 0 0 3px;
    font-size: 27px;
    font-weight: 600;
    color: #211e19;
}

.form-subtitle {
    position: relative;
    z-index: 2;
    margin: 0 0 25px;
    font-size: 13px;
    color: #403b34;
}
.flower-decoration {
    position: absolute;
    right: -15px;
    top: 5px;
    font-size: 100px;
    line-height: 1;
    color: #e8ddc9;
    opacity: .75;
    transform: rotate(-10deg);
}
.contact-form-box form {
    position: relative;
    z-index: 2;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.form-group {
    margin-bottom: 11px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #29251f;
}

.form-group label span {
    color: #9b6b65;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #d9d5ce;
    border-radius: 3px;
    background: rgba(255,255,255,.8);
    color: #333;
    font-size: 13px;
    outline: none;
    transition: .2s ease;
}

.form-group input,
.form-group select {
    height: 46px;
    padding: 0 9px;
}

.form-group textarea {
    height: 150px;
    padding: 9px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #b5966a;
    background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.full-width {
    width: 100%;
}
.submit-btn {
    display: block;
    width: 215px;
    height: 43px;
    margin: 2px auto 0;
    border: none;
    border-radius: 3px;
    background: #a88a55;
    color: #fff;
    font-size: 14px;
    letter-spacing: .5px;
    cursor: pointer;
    transition: .25s ease;
}
.submit-btn span {
    margin-left: 8px;
    font-size: 15px;
}
.submit-btn:hover {
    background: #9e7272;
}
.location-faq .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.location-box,
.faq-box {
    border: 1px solid #e5dccd;
    background: #fcfbf7;
    padding: 12px;
    box-sizing: border-box;
}
.location-box h2,
.faq-box h2 {
    margin: 0 0 7px;
    padding-left: 12px;
    font-size: 20px;
    font-weight: 600;
    color: #211e19;
}
.map-area {
    position: relative;
    height: 255px;
    overflow: hidden;
    border-radius: 3px;
}

.map-area iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: saturate(.8);
}
.location-card {
    position: absolute;
    left: 15px;
    top: 30px;
    width: 165px;
    padding: 12px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 3px 12px rgba(0,0,0,.08);
    box-sizing: border-box;
}

.location-card h3 {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 600;
    color: #28241e;
}

.location-card p {
    margin: 0 0 9px;
    font-size: 10px;
    line-height: 1.45;

    color: #5f5a51;
}

.map-link {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-size: 9px;
    color: #806e59;
}
.map-link i {
    font-size: 11px;
}
.map-link span {
    margin-left: auto;
    font-size: 15px;
}
.faq-box {
    padding-left: 22px;
    padding-right: 22px;
}

.faq-box h2 {
    padding-left: 0;
    margin-bottom: 7px;
}
.faq-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.faq-list li {
    border-top: 1px solid #ded8ce;
}
.faq-list li:last-child {
    border-bottom: 1px solid #ded8ce;
}
.faq-question {
    width: 100%;
    min-height: 44px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-size: 14px;
    color: #302c26;
}
.faq-question b {
    font-size: 16px;
    font-weight: 300;
    color: #39352f;
}
.faq-question:hover {
    color: #967a50;
}
section.location-faq {
    padding-bottom: 0;
}
/*about*/
.story-wrapper {
    display: grid;
    grid-template-columns: 40% 38% 22%;
}
.story-wrapper  .story-content {
    padding: 20px 30px 15px;
    box-sizing: border-box;
    background: #faf8f3;
}
.story-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 95px;
    margin-top: 13px;
}

.story-divider span {
    width: 30px;
    height: 1px;
    background: #9b6b50;
}

.story-divider i {
    margin: 0 5px;
    font-size: 13px;
    font-style: normal;
    color: #8b4e43;
}
.story-heritage {
    position: relative;
    min-height: 285px;
    padding: 12px 25px;
    box-sizing: border-box;
    background: #f3eee5;
    border-left: 1px solid #e4d9ca;
    overflow: hidden;
}
.weaver-art {
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.weaver-art img {
    width: 180px;
    height: 152px;
    object-fit: contain;
    opacity: .55;
}
.story-heritage blockquote {
    margin: 28px 0 32px;
    padding-left: 8px;
    font-size: 15px;
    line-height: 1.5;
    font-style: italic;
    color: #5e5046;
}
.heritage-line {
    display: flex;
    align-items: center;
    width: 50px;
    margin-left: 8px;
}

.heritage-line span {
    width: 32px;
    height: 1px;
    background: #89664c;
}

.heritage-line b {
    margin-left: -1px;
    font-size: 12px;
    font-weight: 400;
    color: #89664c;
}
.brand-values {
    width: 100%;
    padding: 22px 20px;
    background: #f9e9e6;
    box-sizing: border-box;
}
.values-list {
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.value-item {
    min-height: 105px;
    padding: 0 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-sizing: border-box;
}
.value-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 5px;
    width: 1px;
    height: 92px;
    background: #dfc8c1;
}
.value-icon {
    height: 35px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7e1e2b;
    font-size: 27px;
}
.value-item h3 {
    margin: 0 0 5px;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: .5px;
    color: #332522;
}
.value-item p {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
    color: #554844;
}
.vision-wrapper {
    display: grid;
    grid-template-columns: 48% 52%;
}
.vision-video {
    position: relative;
    height: 296px;
    overflow: hidden;
}
.vision-video img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(35, 24, 15, .72),
            rgba(35, 24, 15, .15)
        );
}
.video-title {
    position: absolute;
    left: 42px;
    top: 35px;
    font-size: 23px;
    line-height: 1.3;
    color: #f7e8d4;
}
.play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.9);
    background: rgba(30,30,25,.3);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.play-button span {
    font-size: 22px;
    margin-left: 4px;
}
.play-text {
    position: absolute;
    left: 50%;
    top: calc(50% + 42px);
    transform: translateX(-50%);
    font-size: 9px;
    letter-spacing: .5px;
    color: #fff;
}
.vision-content {
    display: grid;
    grid-template-columns: 1fr 100px;
    background: #fbf8f1;
}
.vision-main {
    padding: 17px 35px 12px;
    box-sizing: border-box;
}
.vision-label {
    display: block;
    margin-bottom: 12px;
    font-size: 11px;
    letter-spacing: 3px;
    color: #87503f;
}
.vision-main h2 {
    margin: 0 0 16px;
    font-size: 25px;
    line-height: 1.05;
    font-weight: 400;
    color: #8c1f2d;
}
.vision-main p {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    color: #443e37;
}
.vision-stats {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.vision-stats li {
    text-align: left;
    padding-left: 18px;
    border-left: 1px solid #dfc9bc;
    display: flex;
    flex-direction: column;
}

.vision-stats li:first-child {
    padding-left: 0;
    border-left: none;
}
section.vision-section {
    padding-bottom: 0;
}
.vision-stats strong {
    font-size: 27px;
    line-height: 1;
    font-weight: 400;
    color: #9b2332;
}
.vision-stats span {
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.35;
    letter-spacing: .8px;
    color: #403a35;
}
.vision-message {
    border-left: 1px solid #dfc9bc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 11px;
    letter-spacing: 1.4px;
    color: #8d634d;
}
.lotus-icon {
    margin-bottom: 7px;
    font-size: 36px;
    color: #a87955;
}

/* WordPress plugin integration and interactive states. */
.newsletter-form .mc4wp-form,
.newsletter-form .mc4wp-form-fields { width: 100%; margin: 0; }
.newsletter-form .wd-grid-g { display: flex; width: 100%; }
.newsletter-form .wd-col { flex: 1; }
.newsletter-form .wd-col-auto { flex: 0 0 auto; }
.newsletter-form input[type="email"] { width: 100%; }
.newsletter-form input[type="submit"] { height: 100%; border: 0; border-radius: 0; background: #8b1e2d; color: #fff; padding: 0 25px; cursor: pointer; }
.contact-form-box .wpcf7-form { position: relative; z-index: 2; }
.contact-form-box .wpcf7-form-control-wrap { display: block; }
.contact-form-box .wpcf7-spinner { position: absolute; left: 50%; bottom: 8px; }
.contact-form-box .wpcf7-response-output { margin: 12px 0 0; font-size: 12px; }
.contact-card strong a { color: inherit; text-decoration: none; }
.faq-answer { display: none; padding: 0 25px 14px 0; color: #625d54; font-size: 12px; line-height: 1.55; }
.faq-answer p { margin: 0; }
.faq-list li.open .faq-answer { display: block; }
.play-button { cursor: default; }

@media (max-width: 767px) {
    .contact-list { grid-template-columns: 1fr 1fr; }
    .contact-wrapper, .location-faq .container, .vision-wrapper, .story-wrapper { grid-template-columns: 1fr; }
    .story-heritage { min-height: 250px; }
    .contact-story { min-height: 360px; }
    .values-list { grid-template-columns: 1fr 1fr; row-gap: 24px; }
    .value-item:nth-child(2)::after { display: none; }
}
@media (max-width: 480px) {
    .contact-list, .values-list, .form-row { grid-template-columns: 1fr; }
    .value-item::after { display: none; }
    .contact-form-box { padding: 24px 18px; }
    .newsletter-form .wd-grid-g { display: block; }
    .newsletter-form input[type="submit"] { width: 100%; min-height: 42px; }
}
