/* =============================================================
   STAR ONE PENS - style.css
   ============================================================= */

:root {
    --paper: #fdfbf6;
    --ivory: #faf6ec;
    --parchment: #f2ecdd;
    --ink: #1b1712;
    --ink-soft: #362f27;
    --text: #574f44;
    --grey: #8a8172;
    --line: #e3dcc9;
    --brass: #a9812e;
    --brass-dark: #7c5d1f;
    --brass-light: #d9bd7c;
    --oxblood: #6e2430;
    --oxblood-dark: #4d1620;
    --font-display: Helvetica, 'Helvetica Neue', Arial, sans-serif;
    --font-body: Helvetica, 'Helvetica Neue', Arial, sans-serif;
    --font-mono: Helvetica, 'Helvetica Neue', Arial, sans-serif;
}

* {
    font-family: Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--paper);
    color: var(--ink-soft);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

button, input, textarea, select {
    font: inherit;
}

ul, ol {
    list-style: none;
}

.small-heading {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--brass-dark);
    margin-bottom: 22px;
}

.small-heading::before {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--brass);
    flex-shrink: 0;
}

section h1, section h2 {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.5px;
}

section p {
    color: var(--text);
    font-size: 16.5px;
    max-width: 640px;
}

.nib-line {
    width: 120px;
    height: 5px;
    background: linear-gradient(
            90deg,
            var(--ink) 0%,
            var(--brass) 55%,
            transparent 100%
        );
    clip-path: polygon(0 20%, 100% 0%, 100% 100%, 0 80%);
}

.minimal-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 30px;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid var(--ink);
    transition: background 0.35s ease,
            border-color 0.35s ease,
            color 0.35s ease,
            transform 0.35s ease,
            letter-spacing 0.35s ease;
}

.minimal-button span {
    transition: transform 0.35s ease;
}

.minimal-button:hover {
    background: var(--oxblood);
    border-color: var(--oxblood);
    transform: translateY(-2px);
}

.minimal-button:hover span {
    transform: translateX(4px);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ink);
    padding-bottom: 4px;
    border-bottom: 1px solid var(--ink);
    transition: color 0.3s ease,
            border-color 0.3s ease,
            gap 0.3s ease;
}

.text-link:hover {
    color: var(--oxblood);
    border-color: var(--oxblood);
    gap: 16px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(253, 251, 246, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.header-container {
    width: min(1280px, 92%);
    min-height: 76px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    height: 76px;
}

.brand img {
    display: block;
    width: auto;
    height: auto;
    max-height: 56px;
    max-width: 220px;
    object-fit: contain;
}

.brand span {
    display: none;
}

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

.main-nav a {
    position: relative;
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--ink-soft);
    white-space: nowrap;
    transition: color 0.3s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 1px;
    background: var(--brass);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--brass-dark);
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a.active {
    color: var(--brass-dark);
}

.main-nav a.active::after {
    width: 100%;
}

.quote-link {
    flex-shrink: 0;
    padding: 11px 20px;
    border: 1px solid var(--brass-dark);
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--brass-dark);
    white-space: nowrap;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.quote-link:hover {
    background: var(--brass-dark);
    border-color: var(--brass-dark);
    color: var(--paper);
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--line);
    font-size: 18px;
    color: var(--ink);
    cursor: pointer;
}

.hero {
    position: relative;
    padding-top: 40px;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(169, 129, 46, 0.13), transparent 70%);
    pointer-events: none;
}

.hero-container {
    width: min(1280px, 92%);
    margin: auto;
    padding: 64px 0 56px;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 80px;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -1.5px;
    color: var(--ink);
    margin-bottom: 30px;
}

.hero-copy p {
    max-width: 560px;
    font-size: 17px;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 38px;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 34px;
}

.hero-note {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--grey);
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image-frame {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--parchment);
    box-shadow: 18px 18px 0 var(--parchment);
}

.hero-image-frame::after {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(169, 129, 46, 0.4);
    pointer-events: none;
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.hero-image-label {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    padding: 8px 12px;
    background: rgba(27, 23, 18, 0.88);
    color: var(--brass-light);
    border: 1px solid rgba(217, 189, 124, 0.4);
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.hero-image-frame:hover img {
    transform: scale(1.025);
}

.hero-line {
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent 0%, var(--ink) 10%, var(--brass) 55%, transparent 100%);
    clip-path: polygon(0 35%, 100% 0%, 100% 100%, 0 65%);
}

.intro-section {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--ivory);
}

.intro-container {
    width: min(900px, 88%);
    margin: auto;
    padding: 64px 0;
    text-align: center;
}

.intro-container .small-heading {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.intro-container .small-heading::before {
    display: none;
}

.intro-container h2 {
    font-size: clamp(34px, 4.4vw, 52px);
    line-height: 1.15;
    margin-bottom: 26px;
}

.intro-container p {
    max-width: 680px;
    margin: auto;
    font-size: 17.5px;
    line-height: 1.8;
}

.clients-section {
    padding: 65px 0 70px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.clients-title {
    width: min(1280px, 92%);
    margin: 0 auto 30px;
    text-align: center;
}

.clients-title .small-heading {
    flex-direction: column;
    gap: 10px;
}

.clients-title .small-heading::before {
    display: none;
}

.client-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.client-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: clientScroll 38s linear infinite;
}

@keyframes clientScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.client-logo {
    flex-shrink: 0;
    width: 175px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
}

.client-logo img {
    max-width: 125px;
    max-height: 34px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.55;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.client-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.04);
}

.about-section {
    background: var(--ink);
    color: var(--paper);
}

.about-container {
    width: min(1280px, 92%);
    margin: auto;
    padding: 60px 0;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 60px;
}

.about-image {
    position: relative;
    aspect-ratio: 4 / 5;
    max-width: 460px;
    overflow: hidden;
    border: 1px solid rgba(217, 189, 124, 0.3);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-year {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 9px 13px;
    background: var(--brass);
    color: var(--ink);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-copy .small-heading {
    color: var(--brass-light);
}

.about-copy h2 {
    color: var(--paper);
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.08;
    margin-bottom: 28px;
}

.about-copy p {
    color: #cfc9bd;
    max-width: 560px;
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(250, 246, 236, 0.18);
    border-bottom: 1px solid rgba(250, 246, 236, 0.18);
    margin: 38px 0 30px;
}

.about-stat {
    padding: 22px 18px 22px 0;
    border-right: 1px solid rgba(250, 246, 236, 0.18);
}

.about-stat:not(:first-child) {
    padding-left: 18px;
}

.about-stat:last-child {
    border-right: 0;
}

.about-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--brass-light);
    margin-bottom: 4px;
}

.about-stat span {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #a79f8f;
}

.about-copy .text-link {
    margin-top: 20px;
    color: var(--paper);
    border-color: var(--paper);
}

.about-copy .text-link:hover {
    color: var(--brass-light);
    border-color: var(--brass-light);
}

.products-section {
    padding: 64px 0 40px;
    background: var(--paper);
}

.products-intro {
    width: min(1280px, 92%);
    margin: 0 auto 65px;
    max-width: 720px;
}

.products-intro h2 {
    font-size: clamp(36px, 4.2vw, 54px);
    line-height: 1.12;
    margin-bottom: 22px;
}

.products-intro p {
    max-width: 680px;
}

.main-product-categories {
    width: min(1280px, 92%);
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 70px;
    padding-bottom: 80px;
}

.main-product-category {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    padding: 20px 0;
}

.main-product-category:nth-child(even) .category-image {
    order: 2;
}

.category-image {
    position: relative;
    aspect-ratio: 5 / 4;
    overflow: hidden;
    background: var(--ivory);
    border: 1px solid var(--line);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.7s ease;
}

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

.category-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    padding: 9px 13px;
    background: rgba(27, 23, 18, 0.88);
    color: var(--brass-light);
    border: 1px solid rgba(217, 189, 124, 0.45);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1.2;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
}

.category-number {
    display: block;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--brass-dark);
    margin-bottom: 18px;
}

.category-number::before {
    content: "( ";;
}

.category-number::after {
    content: " )";;
}

.category-content h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(34px, 3.4vw, 46px);
    line-height: 1.08;
    color: var(--ink);
    margin-bottom: 20px;
}

.category-content > p {
    max-width: 540px;
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.75;
}

.subcategory-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--line);
}

.subcategory-list a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--ink-soft);
    transition: color 0.3s ease, gap 0.3s ease, padding-left 0.3s ease;
}

.subcategory-list a span {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--grey);
}

.subcategory-list a strong {
    margin-left: auto;
    font-size: 18px;
    font-weight: 400;
    color: var(--brass-dark);
    transition: transform 0.3s ease;
}

.subcategory-list a:hover {
    color: var(--oxblood);
    padding-left: 12px;
}

.subcategory-list a:hover strong {
    transform: translateX(4px);
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ink);
    padding-bottom: 4px;
    border-bottom: 1px solid var(--ink);
    transition: color 0.3s ease, border-color 0.3s ease, gap 0.3s ease;
}

.category-link:hover {
    color: var(--oxblood);
    border-color: var(--oxblood);
    gap: 18px;
}

.gifting-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--parchment);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.gifting-image {
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 4;
    align-self: center;
    overflow: hidden;
    background: var(--ivory);
}

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

.gifting-image:hover img {
    transform: scale(1.025);
}

.gifting-label {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;
    padding: 10px 14px;
    background: var(--ink);
    color: var(--brass-light);
    border: 1px solid rgba(217, 189, 124, 0.4);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.gifting-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 9%;
}

.gifting-copy h2 {
    max-width: 560px;
    font-family: Helvetica, Arial, sans-serif;
    font-size: clamp(38px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.5px;
    color: var(--ink);
    margin-bottom: 22px;
}

.gifting-copy p {
    max-width: 560px;
    font-family: Helvetica, Arial, sans-serif;
    color: var(--text);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 14px;
}

.gifting-points {
    display: flex;
    flex-direction: column;
    max-width: 560px;
    margin: 24px 0 20px;
    border-top: 1px solid var(--line);
}

.gifting-points div {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.gifting-points span {
    flex-shrink: 0;
    font-family: Helvetica,Arial ,sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--brass-dark);
}

.gifting-points strong {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}

.gifting-copy .minimal-button {
    width: fit-content;
    margin-top: 20px;
}

@media (max-width: 980px) {
    .gifting-section {
        grid-template-columns: 1fr;
    }

    .gifting-image {
        min-height: 430px;
    }

    .gifting-copy {
        padding: 70px 8%;
    }

    .final-cta-content {
        padding: 85px 0;
    }

    .final-cta h2 {
        font-size: clamp(38px, 5.5vw, 54px);
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 85px 0;
    }

    .contact-copy {
        max-width: 700px;
    }

    .contact-form {
        padding: 40px;
    }

    .product-catalogue-container {
        padding: 56px 0;
    }

    .product-catalogue-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .collection-feature {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .collection-feature-reverse .collection-feature-image {
        order: 1;
    }

    .collection-feature-reverse .collection-feature-content {
        order: 2;
    }

    .collection-feature-image {
        height: min(480px, 58vh);
    }

    .collection-feature-content {
        padding: 70px 8%;
    }
}

@media (max-width: 640px) {
    .gifting-image {
        min-height: 360px;
    }

    .gifting-label {
        left: 14px;
        bottom: 14px;
        padding: 8px 11px;
        font-size: 9px;
        letter-spacing: 1.3px;
    }

    .gifting-copy {
        padding: 60px 7%;
    }

    .gifting-copy h2 {
        font-size: 34px;
        line-height: 1.12;
    }

    .gifting-copy p {
        font-size: 15.5px;
        line-height: 1.75;
    }

    .gifting-points {
        margin-top: 20px;
    }

    .gifting-points div {
        gap: 12px;
        padding: 12px 0;
    }

    .gifting-points strong {
        font-size: 13.5px;
    }

    .final-cta-content {
        width: 88%;
        padding: 75px 0;
    }

    .final-cta h2 {
        font-size: 38px;
        line-height: 1.1;
    }

    .final-cta p {
        font-size: 15.5px;
        line-height: 1.75;
        margin-bottom: 28px;
    }

    .final-cta .minimal-button {
        width: 100%;
        max-width: 300px;
        padding: 14px 22px;
    }

    .contact-container {
        width: 88%;
        padding: 70px 0;
        gap: 40px;
    }

    .contact-copy h2 {
        font-size: 38px;
        line-height: 1.1;
    }

    .contact-copy > p {
        font-size: 15.5px;
        line-height: 1.75;
    }

    .contact-form {
        padding: 26px 22px;
    }

    .form-heading {
        margin-bottom: 26px;
    }

    .form-heading h3 {
        font-size: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group {
        margin-bottom: 18px;
    }

    .contact-form input, .contact-form select, .contact-form textarea {
        padding: 13px 14px;
        font-size: 15px;
    }

    .contact-form textarea {
        min-height: 125px;
    }

    #send-button {
        padding: 14px 20px;
    }

    .product-catalogue-container {
        width: 88%;
        padding: 75px 0;
    }

    .product-catalogue-intro {
        margin-bottom: 40px;
    }

    .product-catalogue-intro h2 {
        font-size: 36px;
    }

    .product-catalogue-intro p {
        font-size: 15.5px;
        line-height: 1.75;
    }

    .product-catalogue-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .product-catalogue-card {
        min-height: 260px;
        padding: 28px;
    }

    .product-catalogue-card h3 {
        font-size: 27px;
    }

    .collection-list-container {
        width: 100%;
    }

    .collection-feature {
        display: flex;
        flex-direction: column;
    }

    .collection-feature-reverse .collection-feature-image, .collection-feature-reverse .collection-feature-content {
        order: initial;
    }

    .collection-feature-image {
        width: 100%;
        height: min(340px, 48vh);
    }

    .collection-feature-content {
        width: 100%;
        padding: 55px 7%;
    }

    .collection-feature-content h2 {
        font-size: 38px;
        line-height: 1.1;
    }

    .collection-feature-content > p {
        font-size: 15px;
        line-height: 1.75;
    }

    .collection-highlights {
        margin-bottom: 28px;
    }

    .collection-highlights a, .collection-highlights span {
        font-size: 13.5px;
    }

    .collections-note-container {
        width: 88%;
        padding: 75px 0;
    }

    .collections-note h2 {
        font-size: 38px;
        line-height: 1.1;
    }

    .collections-note p {
        font-size: 15px;
        line-height: 1.75;
    }
}

.final-cta {
    background: var(--paper);
    color: var(--paper);
    text-align: center;
    border-top: 1px solid rgba(217, 189, 124, 0.2);
    border-bottom: 1px solid rgba(217, 189, 124, 0.2);
}

.final-cta-content {
    width: min(780px, 88%);
    margin: auto;
    padding: 66px 0;
}

.final-cta .small-heading {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--brass-light);
    margin-bottom: 20px;
}

.final-cta .small-heading::before {
    display: none;
}

.final-cta h2 {
    max-width: 700px;
    margin: 0 auto 24px;
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 62px);
    font-weight: 500;
    line-height: 1.08;
    color: var(--ink);
    letter-spacing: -0.5px;
}

.final-cta p {
    max-width: 650px;
    margin: 0 auto 34px;
    color: var(--text);
    font-size: 16.5px;
    line-height: 1.8;
}

.final-cta .minimal-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    background: var(--brass);
    border-color: var(--brass);
    color: var(--ink);
}

.final-cta .minimal-button:hover {
    background: var(--brass-light);
    border-color: var(--brass-light);
    color: var(--ink);
    transform: translateY(-2px);
}

.contact-section {
    background: var(--paper);
    border-top: 1px solid var(--line);
}

.contact-container {
    width: min(1280px, 92%);
    margin: auto;
    padding: 66px 0;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: start;
}

.contact-copy {
    padding-top: 10px;
}

.contact-copy .small-heading {
    margin-bottom: 20px;
}

.contact-copy h2 {
    max-width: 560px;
    font-family: var(--font-display);
    font-size: clamp(40px, 4.5vw, 58px);
    font-weight: 500;
    line-height: 1.08;
    color: var(--ink);
    margin-bottom: 22px;
}

.contact-copy > p {
    max-width: 520px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 520px;
    border-top: 1px solid var(--line);
}

.contact-details div {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.contact-details span {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--grey);
}

.contact-details strong {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.4;
}

.contact-form {
    background: var(--ivory);
    border: 1px solid var(--line);
    padding: 48px;
    box-shadow: 0 18px 50px rgba(27, 23, 18, 0.06);
}

.form-heading {
    margin-bottom: 32px;
}

.form-heading > span {
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brass-dark);
}

.form-heading h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 10px;
}

.form-heading p {
    max-width: 520px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--text);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 21px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 0;
    outline: none;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color 0.3s ease,
            box-shadow 0.3s ease;
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: #aaa397;
}

.contact-form select {
    cursor: pointer;
}

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

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    border-color: var(--brass);
    box-shadow: 0 0 0 3px rgba(169, 129, 46, 0.12);
}

#send-button {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 28px;
    background: var(--ink);
    color: var(--paper);
    border: 1px solid var(--ink);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease,
            border-color 0.3s ease,
            transform 0.3s ease;
}

#send-button:hover {
    background: var(--oxblood);
    border-color: var(--oxblood);
    transform: translateY(-2px);
}

#send-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

#form-message {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}


.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ink);
    color: var(--paper);
    border: 1px solid var(--brass-dark);
    font-size: 17px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease, background 0.3s ease, visibility 0.35s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--brass);
    color: var(--ink);
    border-color: var(--brass);
    transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .client-track {
        animation: none;
    }

    * {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}

.product-catalogue {
    background: var(--paper);
    border-top: 1px solid var(--line);
}

.product-catalogue-container {
    width: min(1280px, 92%);
    margin: auto;
    padding: 110px 0;
}

.product-catalogue-intro {
    max-width: 700px;
    margin-bottom: 55px;
}

.product-catalogue-intro h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 500;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 20px;
}

.product-catalogue-intro p {
    max-width: 620px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.8;
}

.product-catalogue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-catalogue-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 330px;
    padding: 32px;
    background: var(--ivory);
    border: 1px solid var(--line);
    transition: transform 0.3s ease,
            border-color 0.3s ease,
            box-shadow 0.3s ease;
}

.product-catalogue-card:hover {
    transform: translateY(-4px);
    border-color: var(--brass);
    box-shadow: 0 16px 35px rgba(27, 23, 18, 0.07);
}

.product-catalogue-number {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: var(--brass-dark);
    margin-bottom: 28px;
}

.product-catalogue-card h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 14px;
}

.product-catalogue-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 25px;
}

.product-catalogue-card .text-link {
    margin-top: auto;
}

.collections-intro {
    background: var(--ivory, #f5f3ed);
    border-bottom: 1px solid var(--line, #dedbd3);
    padding: 75px 7%;
}

.collections-intro-container {
    width: min(900px, 88%);
    margin: 0 auto;
    padding: 60px 0;
    text-align: center;
    max-width: 1100px;
}

.collections-intro-container .small-heading {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.collections-intro-container .small-heading::before {
    display: none;
}

.collections-intro h2 {
    margin: 18px 0 25px;
    font-family: "Fraunces", serif;
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: var(--ink, #242424);
    max-width: 750px;
    margin-bottom: 20px;
}

.collections-intro p {
    max-width: 720px;
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text, #555);
    font-family: "Public Sans", sans-serif;
    font-weight: 300;
}

.product-category-section {
    padding: 60px 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

.product-category-section:nth-of-type(even) {
    background: var(--ivory, #f5f3ed);
}

.product-category-heading {
    width: min(1200px, 88%);
    margin: 0 auto 45px;
    display: grid;
    flex-direction: column;
    gap: 70px;
    max-width: 1200px;
    grid-template-columns: 1fr 0.75fr;
    align-items: end;
}

.product-category-heading .small-heading {
    color: var(--brass-dark);
    margin-bottom: 16px;
}

.product-category-heading h2 {
    margin: 0;
    font-family: Helvetica, Arial, sans-serif;
    font-size: clamp(38px, 4.5vw, 58px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -1px;
    color: var(--ink);
}

.product-category-heading > p {
    max-width: 520px;
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 300;
}

.product-grid {
    width: min(1200px, 88%);
    margin: 0 auto;
    display: block;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
    max-width: none;
}

.product-card {
    display: grid !important;
    flex-direction: column;
    min-height: 480px !important;
    background: var(--paper);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
    width: 100% !important;
    grid-template-columns: 0.95fr 1.05fr !important;
    box-shadow: none;
    height: 480px !important;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--brass);
    box-shadow: 0 18px 45px rgba(27, 23, 18, 0.08);
}

.product-image-placeholder {
    position: relative;
    width: 100%;
    height: 330px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f0eee8;
    border-bottom: 1px solid var(--line, #dedbd3);
    overflow: hidden !important;
}

.product-image-placeholder img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: contain !important;
    object-position: center !important;
    margin: 0 auto !important;
    padding: 0;
    max-width: 100% !important;
    max-height: 100% !important;
}

.product-image-placeholder::before {
    display: none;
}

.product-image-placeholder span {
    display: none;
    font-family: "Space Mono", monospace;
    font-size: 10px;
    letter-spacing: 2px;
    color: #8a877f;
}

.product-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 55px;
    min-height: 520px;
    justify-content: center;
}

.product-code {
    display: block;
    margin-bottom: 18px;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--brass-dark);
}

.product-card-content h3 {
    margin: 0 0 22px;
    font-family: Helvetica, Arial, sans-serif;
    font-size: clamp(32px, 3.5vw, 46px);
    font-weight: 500;
    line-height: 1.08;
    color: var(--ink);
    letter-spacing: -0.8px;
}

.product-card-content p {
    margin: 0 0 32px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
    max-width: 460px;
    font-family: Helvetica, Arial, sans-serif;
}

.product-enquire {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 12px;
    margin-top: 5px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--brass);
    font-family: Helvetica, Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink);
    transition: color 0.3s ease,
        gap 0.3s ease;
    text-decoration: none;
}

.product-enquire span {
    color: var(--brass);
    font-size: 17px;
    transition: transform 0.3s ease;
}

.product-enquire:hover {
    color: var(--oxblood);
    gap: 17px;
}

.product-enquire:hover span {
    transform: translateX(4px);
}

.product-page-cta {
    padding: 64px 6%;
    background: var(--paper);
    color: #ffffff;
    text-align: center;
    border-top: 1px solid rgba(217, 189, 124, 0.2);
}

.product-page-cta-content {
    width: min(760px, 90%);
    margin: 0 auto;
    max-width: 850px;
    text-align: center;
}

.product-page-cta .small-heading {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--brass-light, #c6a15a);
    margin-bottom: 18px;
}

.product-page-cta .small-heading::before {
    display: none;
}

.product-page-cta h2 {
    margin: 18px 0 20px;
    font-family: "Fraunces", serif;
    font-size: clamp(40px, 5vw, 65px);
    font-weight: 400;
    line-height: 1.05;
    color: var(--text);
}

.product-page-cta p {
    max-width: 650px;
    margin: 0 auto 35px;
    font-size: 15px;
    line-height: 1.8;
    color: #d6d2ca;
    font-family: "Public Sans", sans-serif;
    font-weight: 300;
}

@media (max-width: 900px) {
    .collections-intro-container {
        padding: 80px 0;
    }

    .product-category-section {
        padding: 75px 0;
    }

    .product-category-heading {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-bottom: 35px;
        width: 88%;
    }

    .product-category-heading > p {
        max-width: 650px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 88%;
    }

    .product-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .collections-hero, .collections-intro, .product-category-section {
        padding: 80px 6%;
    }

    .product-image-placeholder {
        height: 280px;
    }

    .collections-hero {
        min-height: 520px;
    }

    .collections-hero-container {
        padding: 56px 0 50px;
    }

    .collections-hero h1 {
        font-size: 54px;
    }

    .product-card {
        grid-template-columns: 1fr !important;
        min-height: 0 !important;
        height: auto !important;
    }

    .product-card .product-image-placeholder {
        order: 1 !important;
        width: 100%;
        height: 420px !important;
        min-height: 0 !important;
        border-left: 0 !important;
        border-right: 0 !important;
        border-bottom: 1px solid var(--line) !important;
    }

    .product-card .product-card-content {
        order: 2 !important;
        min-height: auto;
        padding: 34px 6% !important;
        height: auto !important;
    }
}

@media (max-width: 600px) {
    .collections-intro-container {
        width: 88%;
        padding: 65px 0;
    }

    .collections-intro h2 {
        font-size: 40px;
    }

    .collections-intro p {
        font-size: 15px;
        line-height: 1.75;
    }

    .product-category-section {
        padding: 60px 0;
    }

    .product-category-heading {
        width: 90%;
        margin-bottom: 30px;
    }

    .product-category-heading h2 {
        font-size: 38px;
    }

    .product-category-heading > p {
        font-size: 14px;
        line-height: 1.75;
    }

    .product-grid {
        width: 90%;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card {
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    .product-image-placeholder {
        height: 300px;
    }

    .product-card-content {
        padding: 55px 65px;
        min-height: 520px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .product-card-content h3 {
        font-size: 31px;
    }

    .product-page-cta {
        padding: 75px 5%;
    }

    .product-page-cta h2 {
        font-size: 40px;
    }

    .product-page-cta p {
        font-size: 15px;
        line-height: 1.75;
    }

    .product-details-section {
        padding: 80px 20px;
    }

    .product-details-intro {
        margin-bottom: 40px;
    }

    .product-details-intro h2 {
        font-size: 42px;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .product-detail-card {
        min-height: auto;
        padding: 28px;
    }

    .collections-hero, .collections-intro, .product-category-section {
        padding: 65px 5%;
    }

    .collections-hero h1 {
        font-size: 43px;
        letter-spacing: -0.8px;
        line-height: 1.04;
    }

    .collections-hero {
        min-height: 480px;
        background-position: center;
    }

    .collections-hero::before {
        background: rgba(253, 251, 246, 0.28);
    }

    .collections-hero-container {
        width: 88%;
        padding: 70px 0 65px;
    }

    .collections-hero .back-link {
        margin-bottom: 35px;
    }

    .collections-hero p {
        font-size: 15px;
        line-height: 1.75;
    }

    .collections-intro {
        padding: 60px 5%;
    }

    .product-card .product-image-placeholder {
        width: 100%;
        height: 300px !important;
        min-height: 0 !important;
        border-left: 0 !important;
        border-right: 0 !important;
        border-bottom: 1px solid var(--line) !important;
    }

    .product-card-content::before {
        width: 55px;
        margin-bottom: 24px;
    }

    .product-card-content p {
        font-size: 14.5px;
        line-height: 1.75;
    }
}

@media (max-width: 400px) {
    .collections-hero h1 {
        font-size: 38px;
    }

    .collections-intro h2 {
        font-size: 35px;
    }

    .product-category-heading h2 {
        font-size: 34px;
    }

    .product-page-cta h2 {
        font-size: 36px;
    }

    .product-card .product-image-placeholder {
        height: 290px !important;
        min-height: 0 !important;
    }

    .product-card-content {
        padding: 28px 22px;
    }
}

.footer-brand .brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--paper);
}

.footer-brand .brand img {
    width: auto;
    height: auto;
    max-height: 56px;
    max-width: 220px;
    object-fit: contain;
    display: block;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 55px 6% 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-links {
        gap: 16px;
    }

    .footer-bottom {
        margin-top: 45px;
        flex-direction: column;
        gap: 10px;
    }
}

.product-details-section {
    padding: 80px 6%;
    background: var(--ivory);
    border-top: 1px solid var(--line);
}

.product-details-container {
    max-width: 1400px;
    margin: 0 auto;
}

.product-details-intro {
    max-width: 650px;
    margin-bottom: 60px;
}

.product-details-intro h2 {
    margin: 14px 0 20px;
    font-family: var(--font-display);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 400;
    line-height: 1.05;
    color: var(--ink);
}

.product-details-intro p {
    max-width: 600px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-detail-card {
    padding: 35px;
    min-height: 280px;
    background: var(--paper);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    transition: 0.3s ease;
}

.product-detail-card:hover {
    transform: translateY(-4px);
    border-color: var(--brass);
}

.product-detail-number {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--brass-dark);
    margin-bottom: 25px;
}

.product-detail-card h3 {
    margin: 0 0 15px;
    font-family: var(--font-display);
    font-size: 27px;
    font-weight: 400;
    color: var(--ink);
}

.product-detail-card p {
    margin: 0 0 25px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text);
}

.product-detail-card .text-link {
    margin-top: auto;
}

.header-search {
    display: flex;
    align-items: center;
    width: 190px;
    height: 40px;
    border: 1px solid var(--line);
    margin-left: 20px;
}

.header-search input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    padding: 0 10px;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 13px;
}

.header-search input::placeholder {
    color: #888;
}

.header-search button {
    width: 40px;
    height: 100%;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 15px;
}

.header-search button:hover {
    opacity: 0.6;
}

.site-header .brand {
    height: 76px;
    max-width: 220px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    flex-shrink: 0;
}

.site-header .brand img {
    width: auto !important;
    height: auto !important;
    max-height: 56px !important;
    max-width: 100% !important;
    object-fit: contain;
    display: block;
}

.product-card h3 {
    margin: 0 0 12px;
    font-family: "Fraunces", serif;
    font-size: 27px;
    line-height: 1.2;
    font-weight: 400;
    color: var(--ink, #242424);
}

.product-card p {
    margin: 0 0 25px;
    font-family: "Public Sans", sans-serif;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 300;
    color: var(--text, #555);
}

.product-page-cta .minimal-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 16px 25px;
    border: 1px solid var(--brass, #a47b35);
    color: #ffffff;
    text-decoration: none;
    font-family: "Space Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.product-page-cta .minimal-button:hover {
    background: var(--brass, #a47b35);
    color: #ffffff;
}

.product-page-cta .minimal-button span {
    font-size: 15px;
}

.collection-list {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

.collection-list-container {
    width: min(1280px, 92%);
    margin: 0 auto;
}

.collection-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: min(620px, 78vh);
    border-bottom: 1px solid var(--line);
}

.collection-feature:last-child {
    border-bottom: none;
}

.collection-feature-reverse .collection-feature-image {
    order: 2;
}

.collection-feature-reverse .collection-feature-content {
    order: 1;
}

.collection-feature-image {
    position: relative;
    width: 100%;
    height: min(520px, 62vh);
    overflow: hidden;
    background: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-feature-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    transition: transform 0.7s ease;
}

.collection-feature-image:hover img {
    transform: scale(1.03);
}

.collection-feature-image .category-badge {
    position: absolute;
    left: 22px;
    bottom: 22px;
    z-index: 2;
}

.collection-feature-content {
    padding: 70px 8%;
}

.collection-feature-content .category-number {
    display: block;
    margin-bottom: 18px;
}

.collection-label {
    display: block;
    margin-bottom: 18px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--brass-dark);
}

.collection-feature-content h2 {
    margin: 0 0 22px;
    font-family: var(--font-display);
    font-size: clamp(40px, 4.5vw, 58px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -1px;
    color: var(--ink);
}

.collection-feature-content > p {
    max-width: 560px;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
}

.collection-highlights {
    display: flex;
    flex-direction: column;
    max-width: 560px;
    margin-bottom: 32px;
    border-top: 1px solid var(--line);
}

.collection-highlights a, .collection-highlights span {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
    transition: color 0.3s ease,
        padding-left 0.3s ease;
}

.collection-highlights a:hover {
    color: var(--oxblood);
    padding-left: 12px;
}

.collection-feature-content .minimal-button {
    margin-top: 4px;
}

.collections-note {
    background: var(--ink);
    color: var(--paper);
    text-align: center;
    border-top: 1px solid rgba(217, 189, 124, 0.2);
}

.collections-note-container {
    width: min(780px, 88%);
    margin: 0 auto;
    padding: 66px 0;
}

.collections-note .small-heading {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--brass-light);
    margin-bottom: 20px;
}

.collections-note .small-heading::before {
    display: none;
}

.collections-note h2 {
    max-width: 700px;
    margin: 0 auto 24px;
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 62px);
    font-weight: 500;
    line-height: 1.08;
    color: var(--paper);
}

.collections-note p {
    max-width: 650px;
    margin: 0 auto 34px;
    color: #cfc9bd;
    font-size: 16px;
    line-height: 1.8;
}

.collections-hero {
    position: relative;
    min-height: 600px;
    background-image: url("../images/collections/IMG-20260818-WA0082.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.collections-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(20, 18, 15, 0.58) 0%,
        rgba(20, 18, 15, 0.28) 42%,
        rgba(20, 18, 15, 0.05) 75%,
        transparent 100%
    );
    z-index: 0;
}

.collections-hero-container {
    position: relative;
    z-index: 1;
    width: min(1200px, 88%);
    margin: 0 auto;
    padding: 70px 0 64px;
}

.collections-hero .back-link {
    display: inline-flex;
    align-items: center;
    margin-bottom: 45px;
    padding: 10px 16px;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(20, 18, 15, 0.28);
    backdrop-filter: blur(4px);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
    transition: color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.collections-hero .back-link:hover {
    color: var(--brass-light);
    background: rgba(20, 18, 15, 0.55);
    border-color: var(--brass-light);
}

.collections-hero .small-heading {
    margin-bottom: 20px;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brass-light);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.collections-hero h1 {
    max-width: 850px;
    margin: 0 0 28px;
    font-family: Helvetica, Arial, sans-serif;
    font-size: clamp(48px, 6vw, 78px);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -1.5px;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.collections-hero p {
    max-width: 680px;
    margin: 0;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.collections-hero h1, .collections-hero p, .collections-hero .small-heading, .collections-hero .back-link {
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.45);
}

.economical-slider {
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.economical-slider img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.product-card .product-image-placeholder {
    width: 100% !important;
    height: 480px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
    position: relative;
    display: flex !important;
    background: var(--parchment) !important;
    min-height: 0 !important;
    border-right: 1px solid var(--line) !important;
    align-items: center !important;
    justify-content: center !important;
}

.product-card .product-image-placeholder img {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    border: 0 !important;
    border-radius: 0 !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 0.7s ease;
    max-width: 100% !important;
    max-height: 100% !important;
}

#premium-plastic-pens {
    background: var(--ivory);
}

#conceptual-plastic-pens {
    background: var(--paper);
}

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

.product-card-content::before {
    content: "";
    width: 70px;
    height: 2px;
    margin-bottom: 30px;
    background: linear-gradient(
        90deg,
        var(--ink),
        var(--brass),
        transparent
    );
}

#premium-plastic-pens .product-card .product-image-placeholder {
    order: 2;
    border-right: 0 !important;
    border-left: 1px solid var(--line) !important;
}

#premium-plastic-pens .product-card .product-card-content {
    order: 1;
}

#conceptual-plastic-pens .product-card .product-image-placeholder {
    order: 1;
}

#conceptual-plastic-pens .product-card .product-card-content {
    order: 2;
}

#pen-stands .product-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 30px;
}

#pen-stands .product-image-placeholder img {
    width: 82%;
    height: 82%;
    object-fit: contain;
    display: block;
}

.product-card .product-card-content {
    min-height: 0 !important;
    height: 480px !important;
    padding: 50px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    box-sizing: border-box;
}

#gift-sets .product-image-placeholder {
    width: 100%;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f7f3ec;
    padding: 20px;
    box-sizing: border-box;
}

#gift-sets .product-image-placeholder img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

@media (max-width: 1024px) {
    .header-container {
        flex-wrap: wrap;
        row-gap: 0;
    }

    .brand {
        order: 1;
    }

    .menu-button {
        order: 2;
        display: flex !important;
        margin-left: auto;
    }

    .main-nav {
        order: 3;
    }

    .header-search {
        order: 4;
    }

    .quote-link {
        order: 5;
    }

    .main-nav, .header-search, .quote-link {
        display: none;
    }

    .site-header.nav-open .main-nav, .site-header.nav-open .header-search, .site-header.nav-open .quote-link {
        display: flex;
        width: 100%;
    }

    .site-header.nav-open .main-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 8px 0 18px;
        border-top: 1px solid var(--line);
    }

    .site-header.nav-open .main-nav a {
        width: 100%;
        padding: 15px 2px;
        border-bottom: 1px solid var(--line);
    }

    .site-header.nav-open .main-nav a::after {
        display: none;
    }

    .site-header.nav-open .header-search {
        width: 100%;
        margin: 14px 0 0;
    }

    .site-header.nav-open .header-search input {
        width: 100%;
    }

    .site-header.nav-open .quote-link {
        width: 100%;
        justify-content: center;
        margin: 16px 0 18px;
        padding: 14px 20px;
    }
}

/* =========================================================
   STAR ONE PENS — COMPACT FOOTER
========================================================= */

.site-footer {
    background: #181510;
    color: #f7f1e5;
    font-family: Helvetica, Arial, sans-serif;
}


/* MAIN LAYOUT */

.footer-container {
    width: min(1320px, 90%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;

    padding: 50px 0 40px;

    align-items: start;
}


/* COLUMNS */

.footer-brand,
.footer-column {
    padding: 0 32px;
}

.footer-brand {
    padding-left: 0;
}

.footer-contact {
    padding-right: 0;
}


/* DIVIDERS */

.footer-column {
    border-left: 1px solid rgba(169, 129, 46, 0.30);
}


/* LOGO */

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    display: block;

    width: 250px;
    height: 75px;

    object-fit: contain;
    object-position: left center;

    filter: brightness(0) invert(1);
}


/* DESCRIPTION */

.footer-brand p {
    max-width: 330px;

    margin: 0;

    font-size: 15px;
    line-height: 1.7;

    color: #cfc6b7;
}


/* HEADINGS */

.footer-column h3 {
    margin: 0 0 25px;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.8px;

    color: #c99b3d;
}


/* SMALL GOLD LINE */

.footer-column h3::after {
    content: "";

    display: block;

    width: 40px;
    height: 2px;

    margin-top: 14px;

    background: #c99b3d;
}


/* LINKS */

.footer-column a {
    display: block;

    width: fit-content;

    margin-bottom: 14px;

    color: #f7f1e5;

    font-size: 14px;
    line-height: 1.5;

    text-decoration: none;

    transition: color 0.25s ease;
}

.footer-column a:hover {
    color: #c99b3d;
}


/* ADDRESS */

.footer-contact p {
    margin: 20px 0 0;

    font-size: 14px;
    line-height: 1.7;

    color: #d8d0c2;
}


/* BOTTOM BAR */

.footer-bottom {
    width: min(1320px, 90%);
    margin: 0 auto;

    min-height: 65px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-top: 1px solid rgba(169, 129, 46, 0.30);

    font-size: 12px;

    color: #9f9687;
}


/* TABLET */

@media (max-width: 900px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px 0;
    }

    .footer-brand,
    .footer-column {
        padding: 0 25px;
    }

    .footer-brand,
    .footer-contact {
        padding-left: 0;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .footer-container {
        width: 88%;

        grid-template-columns: 1fr;

        padding: 40px 0 30px;
    }

    .footer-brand,
    .footer-column {
        padding: 25px 0;

        border-left: 0;
        border-bottom: 1px solid rgba(169, 129, 46, 0.25);
    }

    .footer-brand {
        padding-top: 0;
    }

    .footer-logo img {
        width: 220px;
        height: 65px;
    }

    .footer-bottom {
        width: 88%;

        min-height: auto;

        flex-direction: column;
        align-items: flex-start;

        gap: 8px;

        padding: 20px 0;
    }

}

.whatsapp-float {
    position: fixed;
    right: 82px;
    bottom: 24px;
    z-index: 999;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    color: #ffffff;

    border-radius: 50%;

    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.whatsapp-float svg {
    width: 27px;
    height: 27px;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
}