@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600&family=Inter:wght@400;500;600;700&display=swap");

/* Kent Holdings homepage content */
:root {
    --ink: #173c19;
    --muted-ink: #767676;
    --description-ink: #666a67;
    --leaf: #d6e1d2;
    --card-border: #cfe3d3;
    --paper: #ffffff;
    --display-font: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --section-muted: #f1f4f0;
    --accent: #376b32;
}

.kent-home {
    background: var(--paper);
    color: var(--ink);
    font-family: "Inter", Arial, Helvetica, sans-serif;
    min-width: 0;
}

html,
body {
    min-width: 320px;
    overflow-x: clip;
}

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

.page-shell {
    min-height: 100vh;
    padding-top: 70px;
}

.site-header {
    width: min(1000px, calc(100% - 48px));
    height: 70px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 26px;
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 10;
    transform: translateX(-50%);
}

.site-header::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    transform: translateX(-50%);
    border-bottom: 1px solid rgba(255, 255, 255, .45);
    background: rgba(255, 255, 255, .48);
    box-shadow: 0 4px 18px rgba(24, 60, 25, .08);
    backdrop-filter: blur(13px) saturate(120%);
    -webkit-backdrop-filter: blur(13px) saturate(120%);
}

.wordmark {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 15px;
    color: #111;
}

.site-nav a {
    padding: 11px 0 7px;
    white-space: nowrap;
}

.site-nav .active {
    color: var(--ink);
    font-weight: 700;
    border-bottom: 2px solid var(--ink);
}

.chevron {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin: 0 2px 3px 8px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    vertical-align: middle;
    transform: rotate(45deg);
    font-size: 0;
}

.social-links {
    margin-left: auto;
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #dfe5dc;
    color: #2b5128;
    font-size: 12px;
    font-weight: 700;
}

.menu-toggle,
.menu-button {
    display: none;
}

.hero {
    width: min(850px, calc(100% - 48px));
    height: calc(100vh - 70px);
    min-height: 480px;
    margin: 0 auto;
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: 430px minmax(0, 1fr);
    align-items: center;
    gap: 72px;
    padding: 0;
}

.hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0 calc((100vw - 100%) / -2);
    background: url("../home/Homepage-background-banner.jpeg") center center / cover no-repeat;
}

.hero-copy {
    position: relative;
    isolation: isolate;
    text-align: center;
    padding-top: 7px;
    transform: translate(6px, -27px);
}

.hero-copy::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -45px -55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .78);
    filter: blur(30px);
}

.kent-logo {
    display: block;
    width: 140px;
    height: auto;
    margin: 0 auto 16px;
    filter: drop-shadow(7px 8px 7px rgba(19, 49, 23, .18));
}

h1 {
    color: var(--ink);
    font-family: var(--display-font);
    font-size: 58px;
    font-weight: 600;
    font-style: normal;
    line-height: 120%;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
}

.hero-copy p {
    margin-top: 16px;
    color: var(--muted-ink);
    font-size: 15px;
    line-height: 1.55;
}

.product-collage {
    width: 374px;
    height: 457px;
    position: relative;
}

.product-card {
    min-width: 0;
    margin: 0;
    border: 2px solid var(--card-border);
    background: #fff;
    box-shadow: 0 2px 3px rgba(33, 69, 36, .16);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 115px;
    height: 145px;
}

.product-card img {
    width: 100%;
    min-height: 0;
    flex: 1;
    object-fit: cover;
    display: block;
}

.product-card figcaption {
    min-height: 29px;
    padding: 4px 2px 3px;
    color: #163518;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.18;
    text-align: center;
    display: grid;
    place-content: center;
}

.packaging { left: 0; top: 126px; }
.signages { left: 130px; top: -2px; }
.glass { left: 257px; top: 30px; }
.stamps { left: 130px; top: 154px; }
.frames { left: 0; top: 283px; }
.awards { left: 130px; top: 311px; }
.anugaa { left: 257px; top: 187px; }
.anugaa img { object-fit: cover; }

.why-kent {
    background: var(--section-muted);
    color: #173c19;
    padding: 49px 24px 54px;
}

.why-kent-inner {
    width: min(878px, 100%);
    margin: 0 auto;
}

.section-eyebrow {
    color: #757875;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.2;
}

.why-kent h2 {
    margin-top: 12px;
    font-family: var(--display-font);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0;
}

.why-kent-content {
    display: grid;
    grid-template-columns: 416px minmax(0, 1fr);
    gap: 27px;
    align-items: start;
    margin-top: 28px;
}

.why-kent-image {
    width: 416px;
    height: 311px;
    border-radius: 10px;
    box-shadow: 0 10px 14px rgba(25, 43, 29, .2);
    display: block;
    object-fit: cover;
}

.why-kent-description {
    color: var(--description-ink);
    font-size: 13px;
    line-height: 1.55;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 27px;
    row-gap: 34px;
    margin-top: 28px;
}

.stat {
    text-align: center;
}

.stat strong,
.stat span {
    display: block;
}

.stat strong {
    color: #1d521d;
    font-size: 39px;
    font-weight: 700;
    line-height: 1;
}

.stat span {
    margin-top: 9px;
    color: #4f5551;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .3px;
    line-height: 1.2;
}

.featured-products {
    overflow: hidden;
    background: #fff;
    padding: 71px 0 54px;
    color: #173c19;
}

.featured-products-intro {
    text-align: center;
}

.featured-products h2 {
    margin-top: 13px;
    font-family: var(--display-font);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.1;
}

.featured-products-description {
    margin-top: 17px;
    color: var(--description-ink);
    font-size: 13px;
    line-height: 1.55;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 17px;
}

.slider-controls button {
    width: 29px;
    height: 29px;
    border: 1px solid #e1e5e1;
    border-radius: 50%;
    background: #fff;
    color: #376533;
    font-family: Arial, sans-serif;
    font-size: 18px;
    line-height: 1;
    box-shadow: 0 1px 3px rgba(34, 54, 38, .12);
}

.slider-dots {
    display: flex;
    gap: 6px;
}

.slider-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d9dada;
}

.slider-dots button.active {
    background: var(--accent);
}

.products-slider {
    margin-top: 21px;
    overflow: hidden;
}

.products-track {
    display: flex;
    gap: 16px;
    width: max-content;
    will-change: transform;
}

.featured-product {
    width: 220px;
    flex: 0 0 220px;
    margin: 0;
}

.featured-product img {
    width: 220px;
    height: 295px;
    border-radius: 9px;
    display: block;
    object-fit: cover;
}

.featured-product h3 {
    margin-top: 13px;
    color: #111;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.25;
}

.featured-product p {
    margin-top: 8px;
    color: #686b69;
    font-size: 12px;
    line-height: 1.55;
}

.view-products-button {
    display: block;
    width: max-content;
    margin: 27px auto 0;
    padding: 9px 18px;
    border-radius: 20px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    line-height: 1;
}

.industries-section {
    background: var(--section-muted);
    padding: 63px 24px 60px;
    color: #173c19;
}

.industries-inner {
    width: min(1035px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 450px;
    gap: 62px;
    align-items: center;
}

.industries-copy h2 {
    margin-top: 13px;
    font-family: var(--display-font);
    font-size: 37px;
    font-weight: 600;
    line-height: 1.08;
}

.industries-description {
    max-width: 490px;
    margin-top: 20px;
    color: var(--description-ink);
    font-size: 15px;
    line-height: 1.55;
}

.industry-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 17px;
    margin-top: 25px;
}

.industry-list a {
    min-height: 36px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 0 10px;
    border: 1px solid #d6d9d6;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 2px 3px rgba(28, 42, 31, .12);
    color: #111;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.industry-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    color: #315f2d;
    line-height: 1;
    text-align: center;
}

.industry-icon svg {
    display: block;
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.industries-visual img {
    width: 450px;
    height: 337px;
    border-radius: 12px;
    display: block;
    object-fit: cover;
    box-shadow: 0 10px 15px rgba(31, 47, 34, .2);
}

.trust-contact {
    background: #fff;
    color: #173c19;
    padding: 36px 24px 38px;
}

.trusted-logos {
    width: min(1050px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
}

.trusted-heading-logo {
    width: 145px;
    height: auto;
}

.organization-logos {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.organization-logos a {
    display: block;
    line-height: 0;
}

.organization-logos img,
.trusted-heading-logo {
    filter: grayscale(1);
    opacity: .72;
    transition: filter .25s ease, opacity .25s ease;
}

.organization-logos a:hover img,
.organization-logos a:focus-visible img,
.trusted-heading-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

.organization-logos img {
    width: 128px;
    max-height: 48px;
    object-fit: contain;
}

.contact-cta {
    margin: 50px auto 0;
    text-align: center;
}

.contact-cta h2 {
    margin-top: 13px;
    font-family: var(--display-font);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.1;
}

.contact-cta > p:not(.section-eyebrow) {
    margin-top: 17px;
    color: var(--description-ink);
    font-size: 12px;
    line-height: 1.55;
}

.quote-button {
    display: inline-block;
    margin-top: 21px;
    padding: 8px 17px;
    border-radius: 18px;
    background: var(--accent);
    color: #fff !important;
    font-size: 10px;
    line-height: 1;
}

.view-products-button {
    color: #fff !important;
}

.site-footer {
    background: #194a12;
    color: #fff;
    padding: 46px 24px 47px;
}

.footer-inner {
    width: min(820px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.55fr;
    gap: 48px;
}

.kent-home .footer-brand-top {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.kent-home .footer-brand img {
    width: 46px;
    height: 74px;
    object-fit: contain;
    flex: 0 0 auto;
}

.site-footer p,
.site-footer a {
    color: rgba(255, 255, 255, .92);
    font-size: 13px;
    line-height: 1.55;
}

.kent-home .footer-brand-top p {
    margin-top: 0;
}

.copyright {
    margin-top: 28px;
}

.site-footer h2 {
    margin: 0 0 9px;
    color: #fff;
    font-family: var(--display-font);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
}

.footer-subheading {
    margin-top: 28px !important;
}

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

.footer-socials a {
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.footer-link-divider {
    margin: 0 8px;
    color: rgba(255, 255, 255, .55);
}

@media (min-width: 1200px) {
    .site-header {
        width: min(1280px, calc(100% - 64px));
    }

    .hero {
        width: min(1280px, calc(100% - 64px));
        height: 760px;
        min-height: 760px;
        grid-template-columns: 570px minmax(0, 1fr);
        gap: 80px;
    }

    .kent-logo {
        width: 160px;
    }

    .product-collage {
        width: 540px;
        height: 660px;
    }

    .product-card {
        width: 165px;
        height: 210px;
    }

    .product-card figcaption {
        min-height: 42px;
        font-size: 13px;
    }

    .packaging { left: 0; top: 182px; }
    .signages { left: 187px; top: -3px; }
    .glass { left: 370px; top: 43px; }
    .stamps { left: 187px; top: 222px; }
    .frames { left: 0; top: 407px; }
    .awards { left: 187px; top: 447px; }
    .anugaa { left: 370px; top: 269px; }

    .why-kent {
        padding: 70px 32px 76px;
    }

    .why-kent-inner {
        width: min(1280px, 100%);
    }

    .why-kent h2,
    .featured-products h2,
    .contact-cta h2 {
        font-size: 48px;
    }

    .why-kent-content {
        grid-template-columns: 600px minmax(0, 1fr);
        gap: 40px;
        margin-top: 38px;
    }

    .why-kent-image {
        width: 600px;
        height: 450px;
    }

    .why-kent-description {
        font-size: 15px;
    }

    .stats-grid {
        column-gap: 40px;
        row-gap: 48px;
        margin-top: 38px;
    }

    .stat strong {
        font-size: 55px;
    }

    .stat span {
        font-size: 13px;
    }

    .featured-products {
        padding: 100px 0 70px;
    }

    .featured-products-description {
        font-size: 15px;
    }

    .products-slider {
        margin-top: 30px;
    }

    .products-track {
        gap: 24px;
    }

    .featured-product {
        width: 320px;
        flex-basis: 320px;
    }

    .featured-product img {
        width: 320px;
        height: 430px;
    }

    .featured-product h3 {
        margin-top: 17px;
        font-size: 18px;
    }

    .featured-product p {
        margin-top: 10px;
        font-size: 15px;
    }

    .view-products-button {
        margin-top: 38px;
        padding: 12px 24px;
        font-size: 13px;
    }

    .industries-section {
        padding: 80px 32px 76px;
    }

    .industries-inner {
        width: min(1280px, 100%);
        grid-template-columns: minmax(0, 1fr) 570px;
        gap: 90px;
    }

    .industries-copy h2 {
        font-size: 50px;
    }

    .industries-description {
        max-width: 600px;
        font-size: 18px;
    }

    .industry-list {
        gap: 22px 24px;
        margin-top: 32px;
    }

    .industry-list a {
        min-height: 48px;
        font-size: 16px;
    }

    .industries-visual img {
        width: 570px;
        height: 428px;
    }

    .trust-contact {
        padding: 58px 32px 60px;
    }

    .trusted-logos {
        width: min(1280px, 100%);
    }

    .trusted-heading-logo {
        width: 180px;
    }

    .organization-logos img {
        width: 160px;
        max-height: 60px;
    }

    .contact-cta {
        margin-top: 70px;
    }

    .contact-cta > p:not(.section-eyebrow) {
        font-size: 15px;
    }

    .quote-button {
        margin-top: 28px;
        padding: 11px 23px;
        font-size: 13px;
    }

    .site-footer {
        padding: 60px 32px 62px;
    }

    .footer-inner {
        width: min(1280px, 100%);
        gap: 70px;
    }

    .footer-brand img {
        width: 60px;
        height: 96px;
    }

    .site-footer p,
    .site-footer a {
        font-size: 15px;
    }

    .site-footer h2 {
        font-size: 17px;
    }
}

@media (min-width: 1400px) and (min-height: 800px) {
    .site-header {
        transform: translateX(-50%);
    }

    .hero {
        transform: none;
    }

}

@media (max-width: 820px) {
    .site-header,
    .hero {
        width: min(640px, calc(100% - 36px));
    }

    .site-header {
        height: 72px;
    }

    .page-shell {
        padding-top: 72px;
    }

    .site-nav {
        gap: 15px;
    }

    .hero {
        height: auto;
        grid-template-columns: 1fr;
        gap: 20px;
        padding-top: 15px;
    }

    .hero-copy {
        order: 1;
        transform: none;
    }

    h1 {
        white-space: normal;
    }

    .product-collage {
        order: 2;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 115px 115px 115px;
        grid-template-rows: 145px 145px 145px;
        gap: 12px 14px;
        align-content: center;
    }

    .product-card {
        position: relative;
        left: auto;
        top: auto;
        width: auto;
        height: auto;
    }

    .packaging { grid-column: 1; grid-row: 2; }
    .signages { grid-column: 2; grid-row: 1; }
    .glass { grid-column: 3; grid-row: 1 / span 2; }
    .stamps { grid-column: 2; grid-row: 2; }
    .frames { grid-column: 1; grid-row: 3; }
    .awards { grid-column: 2; grid-row: 3; }
    .anugaa { grid-column: 3; grid-row: 3; }

    .why-kent-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .why-kent-image {
        width: 100%;
        height: auto;
        aspect-ratio: 416 / 311;
    }

    .trusted-logos {
        flex-direction: column;
        gap: 28px;
    }

    .organization-logos {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .site-header {
        width: calc(100% - 32px);
        height: 64px;
    }

    .page-shell {
        padding-top: 64px;
    }

    .menu-button {
        width: 28px;
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .menu-button span {
        width: 22px;
        height: 2px;
        background: var(--ink);
    }

    .site-nav {
        position: absolute;
        top: 58px;
        left: 0;
        right: 0;
        padding: 12px 16px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
        background: rgba(255, 255, 255, .97);
        box-shadow: 0 8px 18px rgba(24, 60, 25, .1);
    }

    .menu-toggle:checked ~ .site-nav {
        display: flex;
    }

    .site-nav a {
        width: 100%;
        padding: 9px 0;
    }

    .social-links {
        gap: 7px;
    }

    .social-links a {
        width: 24px;
        height: 24px;
    }

    .hero {
        width: calc(100% - 24px);
        min-height: auto;
        padding: 30px 0 48px;
    }

    .kent-logo {
        width: 94px;
        margin-bottom: 27px;
    }

    h1 {
        font-size: clamp(34px, 8vw, 58px);
    }

    .hero-copy p {
        font-size: 14px;
    }

    .why-kent {
        padding: 40px 18px 44px;
    }

    .why-kent h2 {
        font-size: 30px;
    }

    .why-kent-content {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 24px;
    }

    .why-kent-image {
        width: 100%;
        height: auto;
        aspect-ratio: 416 / 311;
    }

    .why-kent-description {
        font-size: 14px;
    }

    .featured-products {
        padding: 52px 0 44px;
    }

    .featured-products h2 {
        font-size: 30px;
    }

    .featured-products-description {
        padding: 0 20px;
    }

    .industries-section {
        padding: 48px 18px 50px;
    }

    .industries-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .industries-copy h2 {
        font-size: 31px;
    }

    .industries-description {
        font-size: 14px;
    }

    .industry-list {
        gap: 12px;
    }

    .industry-list a {
        font-size: 12px;
        white-space: normal;
    }

    .industries-visual img {
        width: 100%;
        height: auto;
        aspect-ratio: 450 / 337;
    }

    .trust-contact {
        padding: 38px 18px 42px;
    }

    .trusted-logos {
        flex-direction: column;
        gap: 28px;
    }

    .organization-logos {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }

    .contact-cta {
        margin-top: 42px;
    }

    .contact-cta h2 {
        font-size: 30px;
    }

    .contact-desktop-break {
        display: none;
    }

    .site-footer {
        padding: 36px 22px;
    }

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

    .footer-brand {
        grid-column: auto;
    }

    .footer-desktop-break {
        display: none;
    }

    .featured-desktop-break {
        display: none;
    }

    .products-slider {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .products-slider::-webkit-scrollbar {
        display: none;
    }

    .products-track {
        transform: none;
        padding: 0 18px;
    }

    .desktop-break {
        display: none;
    }

    .product-collage {
        width: min(374px, 100%);
        height: auto;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: repeat(3, auto);
        gap: 8px;
    }

    .product-card {
        min-height: 110px;
    }

    .product-card figcaption {
        font-size: 9px;
        min-height: 27px;
    }
}

@media (max-width: 380px) {
    .social-links {
        display: none;
    }

    .product-card {
        min-height: 95px;
    }
}
