@font-face {
    font-family: 'Grift';
    src: url('../fonts/Grift-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Grift';
    src: url('../fonts/Grift-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Grift';
    src: url('../fonts/Grift-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Grift';
    src: url('../fonts/Grift-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Grift';
    src: url('../fonts/Grift-Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Grift';
    src: url('../fonts/Grift-MediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Grift';
    src: url('../fonts/Grift-SemiBoldItalic.otf') format('opentype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Grift';
    src: url('../fonts/Grift-BoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@view-transition {
    navigation: auto;
}

::view-transition-old(root) {
    animation: 0.25s ease-out both fade-out;
}
::view-transition-new(root) {
    animation: 0.3s ease-in both fade-in;
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fade-out {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    --bg-color: #ffffff;
    --text-primary: #111111;
    --text-secondary: #6f6f6f;
    --border-color: #e5e5e5;
    --dark-color: #111111;
    --footer-bg: #0f0f0f;
    --light-bg: #f7f7f7;
    --font-primary: 'Grift', 'Helvetica Neue', Arial, sans-serif;
    --max-width: 1440px;
    --section-padding: 100px 5%;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 500;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
h2 { font-size: 2.5rem; letter-spacing: -0.02em; margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }
p { color: var(--text-secondary); margin-bottom: 1rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid var(--dark-color);
    background-color: var(--dark-color);
    color: #fff;
    position: relative;
    box-shadow: inset 0 -1px 0 var(--dark-color);
}

.btn:hover {
    opacity: 1;
    background-color: #f7f4ee;
    color: var(--dark-color);
    border-color: #ded8cd;
    transform: translateY(-2px);
    box-shadow: inset 0 -2px 0 var(--dark-color), 0 8px 18px rgba(17, 17, 17, 0.08);
}

.btn-black,
.btn-white {
    background-color: var(--dark-color);
    color: #fff;
    border-color: var(--dark-color);
}

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

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

/* Topbar */
.topbar {
    background-color: #f9f9f9;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.75rem;
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
}

.topbar-links {
    display: flex;
    gap: 1.5rem;
}

/* Header */
.header {
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.header.scrolled {
    border-bottom-color: var(--border-color);
}

.logo img {
    height: 30px;
}

.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
}

.nav-item-cta {
    display: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-icon {
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
}

a.nav-icon {
    text-decoration: none;
    color: inherit;
}

.nav-icon .lucide {
    width: 20px;
    height: 20px;
    stroke-width: 1.5px;
}

.burger-menu {
    display: none;
    cursor: pointer;
}

.burger-menu .lucide {
    width: 24px;
    height: 24px;
    stroke-width: 1.5px;
    display: block;
}

/* Hero Section */
.hero {
    padding: 60px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero-content {
    max-width: 500px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-text {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.hero-info {
    font-size: 0.85rem;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    border-left: 2px solid var(--dark-color);
    padding-left: 1rem;
}

.hero-info li {
    margin-bottom: 0.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-position: center;
    transition: transform 3s ease;
}

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

/* Full Width Carousel */
.full-width-img {
    position: relative;
    width: 100%;
    margin: 4rem 0;
}

.full-width-swiper {
    overflow: visible;
}

.full-width-swiper .swiper-slide {
    width: 100%;
}

.carousel-slide-card {
    position: relative;
    overflow: hidden;
    width: 100%;
     height: 720px;
    background: #e9e3d8;
}

.carousel-slide-card picture,
.carousel-slide-card img {
    width: 100%;
     height: 720px;
}

.carousel-slide-card img {
    object-fit: cover;
    
}

.carousel-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.04) 0%, rgba(17, 17, 17, 0.34) 100%);
}

.full-width-caption {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    color: #fff;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    max-width: 520px;
    z-index: 2;
}

/* Products Section */
.products-section {
    padding: var(--section-padding);
    max-width: var(--max-width);
    margin: 0 auto;
}

.products-header {
    margin-bottom: 4rem;
    max-width: 600px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.product-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hover-img);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 0.45s ease, transform 0.8s ease;
    z-index: 0;
}

.product-card img {
    width: 100%;
    aspect-ratio: 4/5;
    transition: transform 0.8s ease, opacity 0.45s ease;
    z-index: 1;
    position: relative;
}

.product-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.product-card:hover img {
    transform: scale(1.05);
    opacity: 0;
}

.product-card-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: background 0.3s ease;
    z-index: 2;
}

.product-card:hover .product-card-overlay {
    background: rgba(0,0,0,0.4);
}

.product-card h3 {
    margin-bottom: 0.5rem;
}

.product-card .link {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid #fff;
    padding-bottom: 2px;
}

/* Promise Section */
.promise-section {
    padding: var(--section-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
}

.promise-image {
    width: 100%;
    aspect-ratio: 3/4;
}

.promise-content ul {
    margin: 2rem 0;
}

.promise-content li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-primary);
}

.promise-icon {
    width: 18px;
    height: 18px;
    stroke-width: 2px;
    color: var(--text-primary);
    flex-shrink: 0;
}

.promise-content li:first-child {
    border-top: 1px solid var(--border-color);
}

/* Collections Section */
.collections-section {
    padding: var(--section-padding);
    background-color: #f9f9f9;
}

.collections-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.collection-card {
    background: #fff;
    padding: 1rem;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.collection-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.collection-card img {
    width: 100%;
    aspect-ratio: 1/1;
    margin-bottom: 1.5rem;
}

.collection-card-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.collection-card-info .lucide {
    width: 18px;
    height: 18px;
    stroke-width: 1.5px;
    transition: transform 0.3s ease;
}

.collection-card:hover .collection-card-info .lucide {
    transform: translateX(4px);
}

.collection-card h4 {
    font-size: 0.95rem;
    margin: 0;
}

/* B2B Section */
.b2b-section {
    background-color: var(--dark-color);
    color: #fff;
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.b2b-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 32%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 55%);
    pointer-events: none;
}

.b2b-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.b2b-copy {
    max-width: 560px;
}

.b2b-kicker {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #a5a5a5;
    margin-bottom: 1.25rem;
}

.b2b-section h2 {
    color: #fff;
    max-width: 12ch;
    margin-bottom: 1.25rem;
}

.b2b-section p {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.8;
}

.b2b-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin: 2.25rem 0 2.5rem;
}

.b2b-summary-item {
    display: grid;
    gap: 0.6rem;
    padding: 1.15rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.b2b-summary-item strong {
    color: #f3f0e8;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.b2b-summary-item span {
    color: #b8b8b8;
    font-size: 0.92rem;
    line-height: 1.6;
}

.b2b-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.b2b-actions .btn {
    background-color: #f7f4ee;
    color: var(--dark-color);
    border-color: #ded8cd;
    box-shadow: inset 0 -2px 0 var(--dark-color);
}

.b2b-actions .btn:hover {
    background-color: var(--dark-color);
    color: #fff;
    border-color: var(--dark-color);
    box-shadow: inset 0 -2px 0 #f7f4ee, 0 8px 18px rgba(17, 17, 17, 0.12);
}

.b2b-actions p {
    margin: 0;
    font-size: 0.88rem;
    color: #8d8d8d;
    line-height: 1.5;
}

.b2b-panel {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
    padding: 2rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.b2b-panel-head {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    align-items: start;
    gap: 2rem;
    padding-bottom: 1.75rem;
    margin-bottom: 1.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.b2b-panel-head span {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #a5a5a5;
    line-height: 1.7;
}

.b2b-panel-head p {
    margin: 0;
    max-width: 320px;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #c4c4c4;
}

.b2b-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}

.b2b-step {
    text-align: left;
    position: relative;
    padding: 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(17, 17, 17, 0.34);
    min-height: 188px;
}

.b2b-step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.1rem;
}

.b2b-step-top .lucide {
    width: 18px;
    height: 18px;
    color: #d7d0c2;
}

.b2b-step span {
    color: #7f7f7f;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
}

.b2b-step h4 {
    font-size: 1rem;
    margin-bottom: 0.7rem;
    color: #f4f1ea;
}

.b2b-step p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.6;
    color: #9f9f9f;
}

.b2b-footnote {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.b2b-footnote .lucide {
    width: 17px;
    height: 17px;
    color: #d8d2c5;
    flex-shrink: 0;
}

.b2b-footnote span {
    color: #9f9f9f;
    font-size: 0.88rem;
    line-height: 1.5;
}

/* Target Audience */
.audience-section {
    padding: var(--section-padding);
    text-align: center;
    max-width: var(--max-width);
    margin: 0 auto;
}

.audience-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 4rem;
}

.audience-item {
    font-size: 1.2rem;
    color: var(--text-primary);
}

/* About Section */
.about-section {
    padding: 120px 5%;
    text-align: center;
    background-color: #fafafa;
}

.about-shell {
    max-width: var(--max-width);
    margin: 0 auto;
}

.about-intro {
    margin-bottom: 3rem;
    text-align: left;
}

.about-intro h2 {
    margin: 0;
    max-width: 14ch;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.15rem;
}

.about-card {
    background-color: #1d1b19;
    border: 1px solid #3a332d;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.about-card:hover {
    border-color: #d8c9b7;
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.18);
}

.about-card-icon {
    width: 72px;
    height: 72px;
    margin: 24px 24px 0;
    border-radius: 999px;
    border: 1px solid #5a5046;
    background: rgba(255, 255, 255, 0.02);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ece4d8;
    transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.about-card-icon .lucide {
    width: 28px;
    height: 28px;
}

.about-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.35rem 1.25rem 1.25rem;
    text-align: left;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.about-card h3 {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.2;
    color: #f3ede2;
}

.about-card-plus {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid #5a5046;
    background: transparent;
    color: #f3ede2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.about-card-plus:hover {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
    color: #fff;
    transform: translateY(-2px);
}

.about-card-plus .lucide {
    width: 18px;
    height: 18px;
}

.about-card:hover .about-card-icon {
    border-color: #cdbfae;
    background-color: rgba(255, 255, 255, 0.75);
}

.about-card-hover {
    position: absolute;
    inset: 0;
    background-color: #f3efe8;
    padding: 2rem 1.5rem 1.35rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.about-card-hover-content {
    margin: auto 0;
}

.about-card-hover-content h3 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.about-card-hover-content p {
    margin: 0 0 0.7rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.about-card-hover-content p:last-child {
    margin-bottom: 0;
}

.about-card-close {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid #cdbfae;
    background: transparent;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
}

.about-card-close .lucide {
    width: 17px;
    height: 17px;
}

.about-card.is-open .about-card-icon,
.about-card.is-open .about-card-body {
    opacity: 0;
    transform: translateY(8px);
}

.about-card.is-open .about-card-hover {
    opacity: 1;
    pointer-events: auto;
}

.about-card:hover .about-card-icon,
.about-card:hover .about-card-body {
    opacity: 0;
    transform: translateY(8px);
}

.about-card:hover .about-card-hover {
    opacity: 1;
}

/* Footer */
.footer {
    background-color: var(--footer-bg);
    color: #fff;
    padding: 80px 5% 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    border-bottom: 1px solid #333;
    padding-bottom: 4rem;
    margin-bottom: 2rem;
}

.footer-col h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
    margin-bottom: 1.5rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    font-size: 0.9rem;
    color: #ccc;
}

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

.newsletter-form {
    display: flex;
    margin-top: 1rem;
    border-bottom: 1px solid #555;
    padding-bottom: 0.5rem;
}

.newsletter-form input {
    background: transparent;
    border: none;
    color: #fff;
    flex-grow: 1;
    outline: none;
    font-size: 0.9rem;
}

.newsletter-form button {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.form-success {
    padding: 1.5rem;
    text-align: center;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    font-size: 0.8rem;
    color: #888;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .header {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 1rem;
        padding: 18px 5%;
    }
    .logo img {
        height: 28px;
    }
    nav {
        min-width: 0;
    }
    .nav-links {
        gap: 1.2rem;
        flex-wrap: nowrap;
        justify-content: center;
        overflow: hidden;
    }
    .nav-actions {
        gap: 0.85rem;
        justify-content: flex-end;
        flex-shrink: 0;
    }
    .hero, .promise-section {
        gap: 2rem;
    }
    .hero {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    }
    .hero-content,
    .products-header,
    .collections-header {
        max-width: none;
    }
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .carousel-slide-card,
    .carousel-slide-card picture,
    .carousel-slide-card img {
        height: 420px;
    }
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .b2b-content {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.5rem;
    }
    .b2b-copy {
        max-width: none;
    }
    .b2b-panel-head p {
        max-width: none;
    }
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .about-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .about-card:hover .about-card-icon,
    .about-card:hover .about-card-body {
        opacity: 1;
        transform: none;
    }

    .about-card:hover .about-card-hover {
        opacity: 0;
        pointer-events: none;
    }

    .about-card.is-open {
        border-color: #d8c9b7;
        transform: translateY(-4px);
        box-shadow: 0 18px 40px rgba(17, 17, 17, 0.18);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 5%;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .topbar {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .nav-links, .nav-actions .btn {
        display: none;
    }

    .header {
        grid-template-columns: auto 1fr auto;
        padding: 16px 5%;
        gap: 0.85rem;
    }

    .logo img {
        height: 26px;
    }

    .nav-actions {
        margin-left: 0;
        gap: 0.75rem;
    }

    .nav-icon .lucide,
    .burger-menu .lucide {
        width: 20px;
        height: 20px;
    }
    
    .burger-menu {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero {
        grid-template-columns: 1fr;
        padding-top: 40px;
        gap: 2rem;
    }
    
    .hero-image {
        height: 50vh;
    }

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

    .full-width-img {
        height: auto;
        margin: 2.5rem 0;
        overflow: hidden;
    }

    .full-width-caption {
        left: 1.25rem;
        right: 1.25rem;
        bottom: 1.25rem;
        font-size: 0.8rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .promise-section {
        grid-template-columns: 1fr;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .b2b-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .b2b-panel {
        padding: 1.5rem;
    }

    .b2b-summary {
        grid-template-columns: 1fr;
    }

    .b2b-actions {
        align-items: start;
        flex-direction: column;
    }

    .b2b-panel-head {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .b2b-steps {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-section {
        padding: 90px 5%;
    }

    .about-intro h2 {
        max-width: 9ch;
    }

    .about-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.6rem;
    }

    .about-card {
        min-height: 180px;
    }

    .about-card-icon {
        width: 52px;
        height: 52px;
        margin: 16px 16px 0;
    }

    .about-card-icon .lucide {
        width: 20px;
        height: 20px;
    }

    .about-card-body {
        gap: 0.9rem;
        padding: 1rem;
    }

    .about-card h3 {
        font-size: 0.72rem;
        line-height: 1.3;
    }

    .about-card-plus,
    .about-card-close {
        width: 34px;
        height: 34px;
    }

    .about-card-plus .lucide,
    .about-card-close .lucide {
        width: 14px;
        height: 14px;
    }

    .about-card-hover {
        padding: 1.15rem 0.85rem 0.85rem;
    }

    .about-card-hover-content h3 {
        font-size: 0.82rem;
        margin-bottom: 1rem;
    }

    .about-card-hover-content p {
        font-size: 0.72rem;
        line-height: 1.45;
        margin-bottom: 0.45rem;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 560px) {
    h2 {
        font-size: 1.8rem;
    }

    .header {
        padding: 14px 5%;
        gap: 0.65rem;
    }

    .nav-actions {
        gap: 0.65rem;
    }

    .logo img {
        height: 24px;
    }

    .nav-icon .lucide,
    .burger-menu .lucide {
        width: 18px;
        height: 18px;
    }

    .about-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .about-card {
        min-height: 160px;
    }

    .hero {
        padding-top: 24px;
    }

    .hero-image {
        height: 42vh;
    }

    .product-card img,
    .promise-image,
    .collection-card img {
        aspect-ratio: 4 / 5;
    }

    .b2b-panel {
        padding: 1.2rem;
    }

    .b2b-step {
        min-height: auto;
    }

    .about-card-hover {
        padding: 1.6rem 1.15rem 1.15rem;
    }
}

@media (max-width: 420px) {
    .about-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile Menu Active */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 2rem 5%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    z-index: 99;
    gap: 1rem;
}

.nav-links.active .nav-item-cta {
    display: block;
    margin-top: 0.5rem;
}

.mobile-nav-access-btn {
    width: 100%;
    justify-content: center;
}
