/* =========================
   JK Leather Homepage Styles
========================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: #2a2118;
    background-color: #ede9e2;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

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

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

section {
    width: 100%;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    letter-spacing: 0.02em;
    font-weight: 400;
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.container {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
}

/* =========================
   Shared text styles
========================= */

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c8a27a;
}

.section-heading {
    text-align: center;
    margin-bottom: 42px;
}

.section-heading h2 {
    font-size: 2.4rem;
    margin-bottom: 12px;
    color: #2a2118;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
}

.section-heading p {
    max-width: 760px;
    margin: 0 auto;
    color: #6b6b6b;
    font-size: 1rem;
}

/* =========================
   Buttons  — minimal arrow style
========================= */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: inherit;
    cursor: pointer;
    border-radius: 0;
    transition: background-color 0.3s ease, color 0.3s ease,
                border-color 0.3s ease;
    position: relative;
}

/* animated arrow appended to every btn */
.btn::after {
    content: '→';
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0;
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn:hover::after {
    transform: translateX(5px);
}

/* Hero / dark-bg button — text underline style */
.btn-primary {
    background-color: transparent;
    color: #ffffff;
    border: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.btn-primary:hover {
    background-color: transparent;
    border-bottom-color: rgba(255, 255, 255, 0.75);
}

/* Secondary outlined — light-bg contexts */
.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.btn-outline:hover {
    background-color: transparent;
    border-bottom-color: rgba(255, 255, 255, 0.7);
}

/* Product-card / list button — text underline style */
.btn-secondary {
    background-color: transparent;
    color: #1b1b1b;
    border: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.btn-secondary:hover {
    background-color: transparent;
    color: #1b1b1b;
    border-bottom-color: #1b1b1b;
}

.text-link {
    font-size: 0.92rem;
    font-weight: 600;
    color: #1b1b1b;
    transition: color 0.2s ease;
}

.text-link:hover {
    color: #8a5c3b;
}

/* =========================
   Header / Navigation
========================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: background-color 0.38s ease, border-color 0.38s ease, backdrop-filter 0.38s ease;
}

.site-header.scrolled {
    background-color: rgba(237, 233, 226, 0.97);
    border-bottom-color: #d5cfc5;
    backdrop-filter: blur(8px);
}

.nav-container {
    width: 92%;
    max-width: 1280px;
    margin: 0 auto;
    min-height: 78px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    position: relative;
}

/* mobile hamburger */
.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    appearance: none;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
    transition: background 0.35s ease;
}

.site-header.scrolled .menu-toggle span {
    background: #181818;
}

/* logo */
.brand-logo {
    justify-self: start;
}

.brand-logo-img {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
}

.brand-logo a {
    display: inline-block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
    transition: color 0.35s ease;
}

.site-header.scrolled .brand-logo a {
    color: #2a2118;
}

/* desktop nav */
.site-nav,
.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

.desktop-nav > a,
.nav-drop-btn {
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    line-height: 1;
    transition: color 0.35s ease;
}

.site-header.scrolled .desktop-nav > a,
.site-header.scrolled .nav-drop-btn {
    color: #2a2118;
}

.desktop-nav > a:hover,
.nav-drop-btn:hover {
    color: rgba(255, 255, 255, 0.65);
}

.site-header.scrolled .desktop-nav > a:hover,
.site-header.scrolled .nav-drop-btn:hover {
    color: #8a5c3b;
}

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-drop-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    appearance: none;
}

.nav-arrow {
    font-size: 0.8rem;
    line-height: 1;
}

/* dropdown */
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border: 1px solid #ece7e2;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    padding: 14px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.22s ease;
    z-index: 20;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 18px;
    font-size: 0.92rem;
    color: #2a2118;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown-menu a:hover {
    background-color: #f7f3ef;
    color: #8a5c3b;
}

/* right icons */
.nav-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    justify-self: end;
    gap: 18px;
}

.icon-btn {
    width: auto;
    height: auto;
    border: none;
    background: transparent;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 4px 0;
    transition: color 0.35s ease, opacity 0.2s ease, transform 0.2s ease;
    appearance: none;
    font-family: inherit;
}

.site-header.scrolled .icon-btn {
    color: #2a2118;
}

.icon-btn:hover {
    opacity: 0.72;
    transform: translateY(-1px);
}

.icon-btn svg {
    width: 15px;
    height: 15px;
    display: block;
    flex-shrink: 0;
}

.nav-icon-label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1;
}

/* mobile overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.22);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 1300;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-panel {
    width: min(86vw, 420px);
    height: 100%;
    background: #000000;
    color: #ffffff;
    padding: 34px 34px 50px;
    transform: translateX(-100%);
    transition: transform 0.28s ease;
    position: relative;
}

.mobile-menu-overlay.active .mobile-menu-panel {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 18px;
    right: 22px;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 2.2rem;
    line-height: 1;
    cursor: pointer;
    appearance: none;
}

.mobile-menu-nav {
    margin-top: 90px;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.mobile-menu-nav a {
    font-size: 2rem;
    font-weight: 400;
    color: #ffffff;
    transition: opacity 0.2s ease;
}

.mobile-menu-nav a:hover {
    opacity: 0.72;
}

.site-main {
    width: 100%;
}

/* =========================
   Hero Slider
========================= */

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 500px;
    overflow: hidden;
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.9s cubic-bezier(0.77, 0, 0.18, 1);
}

.slide {
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    overflow: hidden;
}

.slide-1 {
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%),
        url('../img/slide1.jpg') center/cover no-repeat;
}

.slide-2 {
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%),
        url('../img/slide2.jpg') center/cover no-repeat;
}

.slide-3 {
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%),
        url('../img/slide3.jpg') center/cover no-repeat;
}

.slide-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    text-align: center;
    color: #ffffff;
    padding: 0 24px;
    width: 100%;
    max-width: 680px;
}

.slide-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.slide-content h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.6rem, 8vw, 4rem);
    font-weight: 300;
    line-height: 1.08;
    margin-bottom: 18px;
    color: #ffffff;
    letter-spacing: 0.01em;
    overflow-wrap: break-word;
    word-break: break-word;
}

.slide-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 38px;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-cta {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #2a2118;
    background-color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.92);
    padding: 13px 32px;
    transition: background-color 0.28s ease, color 0.28s ease;
}

.hero-cta:hover {
    background-color: rgba(255, 255, 255, 1);
    color: #1a1208;
}

.slider-dots {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    align-items: center;
}

.dot {
    width: 36px;
    height: 2px;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, width 0.3s ease;
}

.dot.active {
    background: #ffffff;
    width: 56px;
}

/* =========================
   Editorial Section (split + products unified)
========================= */

.editorial-section {
    background-color: #ede9e2;
}

/* --- Split top --- */
.editorial-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 720px;
}

.editorial-image {
    width: 100%;
    height: 100%;
    min-height: 720px;
    overflow: hidden;
}

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

.editorial-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 64px;
}

.editorial-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3.4rem;
    font-weight: 400;
    color: #5c3520;
    margin-bottom: 24px;
    line-height: 1.15;
}

.editorial-desc {
    color: #5a5348;
    font-size: 1rem;
    max-width: 420px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.editorial-sub {
    color: #9a9089;
    font-size: 0.92rem;
    margin-bottom: 44px;
}

.shop-now-link {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #5c3520;
    padding-bottom: 5px;
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s ease;
}

.shop-now-link:hover {
    border-bottom-color: #5c3520;
}

/* --- Products below --- */
.editorial-products {
    padding: 56px 0 80px;
    border-top: 1px solid #d8d2c8;
}

.editorial-products-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 36px;
}

.editorial-products-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.9rem;
    font-weight: 400;
    color: #2a2118;
    margin: 0;
    letter-spacing: 0.01em;
}

.shop-all-link {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #5c3520;
    padding-bottom: 3px;
    border-bottom: 1px solid #5c3520;
    transition: opacity 0.2s ease;
}

.shop-all-link:hover {
    opacity: 0.65;
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 24px;
}

.editorial-product {
    display: block;
    color: inherit;
    cursor: pointer;
}

.editorial-product-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    margin-bottom: 14px;
}

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

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

.editorial-product-info {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px;
}

.editorial-product-name {
    font-size: 0.9rem;
    color: #2a2118;
    font-weight: 400;
}

.editorial-product-price {
    font-size: 0.9rem;
    color: #2a2118;
}

.editorial-product-link {
    display: inline-block;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8a5c3b;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.editorial-product:hover .editorial-product-link {
    border-bottom-color: #8a5c3b;
}

/* =========================
   Our Story Section
========================= */

.our-story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #ede9e2;
    overflow: hidden;
}

.our-story-image {
    width: 100%;
    min-height: 520px;
    overflow: hidden;
    margin: 48px 0 48px 48px;
}

.our-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-story-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 72px 80px 64px;
}

.our-story-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3.2rem;
    font-weight: 400;
    color: #5c3520;
    line-height: 1.15;
    margin-bottom: 28px;
}

.our-story-desc {
    font-size: 1rem;
    color: #5a5348;
    line-height: 1.8;
    max-width: 460px;
    margin-bottom: 40px;
}

.learn-more-link {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #5c3520;
    padding-bottom: 4px;
    border-bottom: 1px solid #5c3520;
    transition: opacity 0.25s ease;
}

.learn-more-link:hover {
    opacity: 0.6;
}

/* =========================
   Scroll Reveal Animations
========================= */

.reveal {
    opacity: 0;
    transition: opacity 0.85s ease, transform 0.85s ease;
    transition-delay: var(--delay, 0s);
}

.reveal.reveal-up {
    transform: translateY(48px);
}

.reveal.reveal-left {
    transform: translateX(-52px);
}

.reveal.reveal-right {
    transform: translateX(52px);
}

.reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* =========================
   Service strip
========================= */

.service-strip {
    padding: 70px 0;
    background-color: #3a2a1f;
    color: #ffffff;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-item {
    text-align: center;
    padding: 0 15px;
}

.service-item h3 {
    font-size: 1.05rem;
    margin-bottom: 14px;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.service-item p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================
   CTA section
========================= */

.cta-section {
    padding: 88px 0;
    background-color: #ede9e2;
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: #2a2118;
}

.cta-box p {
    max-width: 720px;
    margin: 0 auto 24px;
    color: #666666;
}

/* =========================
   Stats Bar
========================= */

.stats-bar {
    background-color: #2a2118;
    padding: 36px 0;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.stat-item {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #c8a27a;
    letter-spacing: 0.02em;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

/* =========================
   Service icons
========================= */

.service-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 20px;
    color: #c8a27a;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

/* =========================
   Testimonials
========================= */

.testimonials {
    padding: 88px 0;
    background-color: #ede9e2;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background-color: #f5f1ea;
    border: 1px solid #ddd8cf;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.07);
}

.testimonial-stars {
    color: #c8a27a;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.testimonial-text {
    color: #444;
    font-size: 0.97rem;
    line-height: 1.75;
    flex: 1;
    margin: 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 4px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #8a5c3b;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.92rem;
    color: #1b1b1b;
}

.testimonial-author span {
    font-size: 0.82rem;
    color: #888;
}

/* =========================
   Placeholder blocks
========================= */

.placeholder-image {
    background:
        linear-gradient(rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.14)),
        linear-gradient(135deg, #2e2a27, #5a4a3f);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image span {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* =========================
   Footer
========================= */

.site-footer {
    background-color: #ede9e2;
    color: #2a2118;
}

/* --- Newsletter Bar --- */
.footer-newsletter-bar {
    border-bottom: 1px solid rgba(0,0,0,0.10);
    padding: 28px 0;
}

.footer-newsletter-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-newsletter-text {
    flex: 1;
    min-width: 220px;
}

.footer-newsletter-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #2a2118;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.footer-newsletter-text span {
    font-size: 0.82rem;
    color: #6b5d4f;
    line-height: 1.5;
}

.footer-newsletter-form {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #2a2118;
    flex-shrink: 0;
}

.footer-newsletter-input {
    background: transparent;
    border: none;
    outline: none;
    padding: 11px 18px;
    font-size: 0.85rem;
    color: #2a2118;
    font-family: "Helvetica Neue", Arial, sans-serif;
    min-width: 240px;
    letter-spacing: 0.04em;
}

.footer-newsletter-input::placeholder {
    color: #b0a090;
}

.footer-newsletter-btn {
    background: #2a2118;
    color: #faf8f5;
    border: none;
    padding: 11px 22px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.footer-newsletter-btn:hover {
    background: #4a3828;
}

.footer-newsletter-msg {
    text-align: center;
    font-size: 0.8rem;
    color: #6b5d4f;
    min-height: 20px;
    padding-top: 6px;
}

/* --- Main Grid --- */
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 48px 0 44px;
    align-items: start;
}

.footer-contact h4,
.footer-links h4,
.footer-about h4 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #2a2118;
    margin-bottom: 18px;
}

.footer-contact p {
    color: #666666;
    margin-bottom: 8px;
    font-size: 0.85rem;
    line-height: 1.55;
}

.footer-inline-link {
    color: #8a5c3b;
    text-decoration: none;
}

.footer-inline-link:hover {
    text-decoration: underline;
}

.footer-links a,
.footer-about a {
    display: block;
    margin-bottom: 10px;
    color: #666666;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-about a:hover {
    color: #2a2118;
}

/* --- Brand Block (logo + socials) --- */
.footer-brand-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.footer-brand-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-left: auto;
}

.footer-brand-logo {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2a2118;
    text-align: right;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.social-circle svg {
    width: 22px;
    height: 22px;
    display: block;
}

.social-circle:hover {
    transform: translateY(-2px);
    opacity: 0.95;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.social-facebook {
    background-color: #1877f2;
}

.social-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-tiktok {
    background-color: #010101;
}

/* --- Footer Bottom Bar --- */
.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.08);
    padding: 18px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    margin: 0;
    color: #888888;
    font-size: 0.82rem;
}

/* --- Payment Badges --- */
.footer-payments {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.pay-badge { display: inline-flex; align-items: center; justify-content: center; }

.pay-card {
    width: 50px;
    height: 32px;
    display: block;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.10));
}

/* =========================
   Join Popup Modal
========================= */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 9999;
}

.popup-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    max-width: calc(100vw - 32px);
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.popup-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.popup-content {
    padding: 30px 32px 34px;
    text-align: center;
}

.popup-title {
    font-size: 16px;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.popup-text {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.popup-offer {
    font-weight: 600;
    margin-bottom: 22px;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.popup-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    font-size: 14px;
    border-radius: 4px;
}

.popup-btn {
    width: 100%;
    padding: 14px;
    border: none;
    background: #8a5c3b;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
}

.popup-btn:hover {
    background: #744b2e;
}

.popup-close {
    position: absolute;
    right: 14px;
    top: 10px;
    font-size: 22px;
    cursor: pointer;
}

/* =========================
   Responsive
========================= */

@media (max-width: 1100px) {
    .editorial-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .editorial-split {
        grid-template-columns: 1fr;
    }

    .editorial-image {
        min-height: 460px;
    }

    .our-story-section {
        grid-template-columns: 1fr;
    }

    .our-story-image {
        min-height: 380px;
        margin: 32px 32px 0;
    }

    .our-story-text {
        padding: 48px 40px 64px;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        min-height: 420px;
    }
}

@media (max-width: 900px) {
    .nav-container {
        grid-template-columns: 42px 1fr auto;
        min-height: 72px;
        gap: 12px;
    }

    .menu-toggle {
        display: inline-flex;
        justify-self: start;
    }

    .desktop-nav,
    .site-nav {
        display: none;
    }

    .brand-logo {
        justify-self: center;
    }

    .brand-logo a {
        font-size: 1.1rem;
        letter-spacing: 0.16em;
    }

    .nav-icons {
        gap: 2px;
    }

    .nav-icon-label {
        display: none;
    }

    .icon-btn svg {
        width: 20px;
        height: 20px;
    }

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

    .footer-brand-block {
        align-items: flex-start;
    }

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

    .footer-newsletter-form {
        width: 100%;
    }

    .footer-newsletter-input {
        min-width: 0;
        flex: 1;
    }

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

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        flex-wrap: wrap;
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 0 0 calc(50% - 12px);
    }

    .slide-content h1 {
        font-size: 3rem;
    }

    .section-heading h2,
    .about-content h2,
    .cta-box h2 {
        font-size: 1.7rem;
    }

    .editorial-grid,
    .value-grid,
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-image {
        height: 320px;
        min-height: unset;
    }

    .editorial-text {
        padding: 60px 36px;
    }

    .editorial-title {
        font-size: 2.4rem;
    }

    .our-story-title {
        font-size: 2.4rem;
    }

    .btn {
        width: auto;
    }
}

@media (max-width: 560px) {
    .nav-container {
        width: 94%;
        grid-template-columns: 42px 1fr auto;
        gap: 10px;
    }

    .brand-logo a {
        font-size: 1rem;
        letter-spacing: 0.14em;
    }

    .mobile-menu-panel {
        width: 100%;
        padding: 30px 28px 44px;
    }

    .mobile-menu-nav {
        margin-top: 86px;
        gap: 22px;
    }

    .mobile-menu-nav a {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        width: 92%;
    }

    .slide-content h1 {
        font-size: 2.4rem;
    }

    .hero-content {
        padding: 56px 0;
    }

    .editorial-products,
    .brand-values,
    .about-brand,
    .cta-section {
        padding: 64px 0;
    }

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

    .popup-content {
        padding: 24px 20px 26px;
    }

    .popup-image img {
        height: 220px;
    }
}

@media (max-width: 420px) {
    .brand-logo a {
        font-size: 0.92rem;
        letter-spacing: 0.12em;
    }

    .icon-btn svg {
        width: 18px;
        height: 18px;
    }
}
/* =========================
   Extra mobile responsive fixes
========================= */

html,
body {
    overflow-x: hidden;
}

.site-main {
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .container {
        width: 92%;
    }

    .slide-content h1 {
        font-size: 2.8rem;
    }

    .section-heading p,
    .about-content p,
    .cta-box p {
        max-width: 100%;
    }
}

@media (max-width: 560px) {
    .container {
        width: 90%;
    }

    .slide-content h1 {
        font-size: 2.2rem;
    }

    .slide-text {
        font-size: 0.92rem;
    }

    .eyebrow {
        font-size: 0.72rem;
        letter-spacing: 0.16em;
        margin-bottom: 12px;
    }

    .section-heading h2,
    .about-content h2,
    .cta-box h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .about-image {
        height: 260px;
    }

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

@media (max-width: 420px) {
    .slide-content h1 {
        font-size: 1.9rem;
    }

    .section-heading h2,
    .about-content h2,
    .cta-box h2 {
        font-size: 1.6rem;
    }

    .section-heading p {
        font-size: 0.95rem;
    }
}
.contact-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1108 0%, #2a1f17 60%, #1a1108 100%);
    padding: 60px 20px;
}

.contact-card {
    width: 480px;
    max-width: 100%;
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

@media (max-width: 540px) {
    .contact-card {
        padding: 32px 24px;
    }
    .contact-page {
        padding: 40px 16px;
    }
}

.contact-title {
    text-align: center;
    margin-bottom: 10px;
    font-weight: 500;
}

.contact-subtitle {
    text-align: center;
    margin-bottom: 35px;
    color: #777;
    font-size: 14px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.input-group textarea {
    min-height: unset !important;
    height: 150px !important;
    max-height: 150px !important;
    resize: none !important;
    overflow-y: auto !important;
}

.char-counter {
    text-align: right;
    font-size: 12px;
    color: #999;
    margin-top: 5px;
    letter-spacing: 0.03em;
    transition: color 0.2s;
}

.char-counter.char-limit-hit {
    color: #c0392b;
    font-weight: 600;
}

.char-counter.char-limit-hit::after {
    content: ' — Word limit reached';
}

.contact-btn {
    width: 100%;
    padding: 14px;
    background: #8a5c3b;
    color: white;
    border: none;
    border-radius: 2px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: background 0.25s ease;
}

.contact-btn:hover {
    background: #744b2e;
}

/* =========================
   User Profile Dropdown
========================= */

.user-dropdown-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.user-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 20px;
    transition: background 0.2s, color 0.35s ease;
    color: #ffffff;
}

.site-header.scrolled .user-dropdown-trigger {
    color: #1b1b1b;
}

.user-dropdown-trigger:hover {
    background: rgba(255,255,255,0.12);
}

.site-header.scrolled .user-dropdown-trigger:hover {
    background: rgba(0,0,0,0.06);
}

.user-avatar-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: #1b1b1b;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.user-dropdown-chevron {
    font-size: 11px;
    transition: transform 0.2s, color 0.35s ease;
    color: rgba(255, 255, 255, 0.75);
}

.site-header.scrolled .user-dropdown-chevron {
    color: #555;
}

.user-dropdown-wrapper.open .user-dropdown-chevron {
    transform: rotate(180deg);
}

.user-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    min-width: 220px;
    z-index: 1000;
    overflow: hidden;
}

.user-dropdown-wrapper.open .user-dropdown-menu {
    display: block;
}

.user-dropdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid #f0f0f0;
}

.user-dropdown-header .user-avatar-circle {
    width: 40px;
    height: 40px;
    font-size: 15px;
}

.user-dropdown-info {
    display: flex;
    flex-direction: column;
}

.user-dropdown-name {
    font-size: 14px;
    font-weight: 600;
    color: #1b1b1b;
    line-height: 1.3;
}

.user-dropdown-email {
    font-size: 12px;
    color: #888;
    line-height: 1.4;
    word-break: break-all;
}

.user-dropdown-links {
    padding: 8px 0;
}

.user-dropdown-links a {
    display: block;
    padding: 10px 18px;
    font-size: 14px;
    color: #1b1b1b;
    transition: background 0.15s;
}

.user-dropdown-links a:hover {
    background: #f5f5f5;
}

/* =========================
   Join the List Popup
========================= */

.jk-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(30, 20, 10, 0.52);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.jk-popup-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.jk-popup {
    position: relative;
    background: #faf8f5;
    width: 90%;
    max-width: 520px;
    padding: 60px 52px 52px;
    transform: translateY(18px);
    transition: transform 0.35s ease;
}

.jk-popup-overlay.is-visible .jk-popup {
    transform: translateY(0);
}

.jk-popup-close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #2a2118;
    line-height: 1;
    font-size: 1.4rem;
    opacity: 0.55;
    transition: opacity 0.2s;
}

.jk-popup-close:hover {
    opacity: 1;
}

.jk-popup-close svg {
    display: block;
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
}

.jk-popup-eyebrow {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #c8a27a;
    margin-bottom: 20px;
}

.jk-popup-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.2;
    color: #2a2118;
    margin: 0 0 14px;
    letter-spacing: 0.01em;
}

.jk-popup-sub {
    font-size: 0.875rem;
    color: #6b5d4f;
    line-height: 1.65;
    margin: 0 0 36px;
}

.jk-popup-form {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #2a2118;
    padding-bottom: 10px;
    gap: 8px;
}

.jk-popup-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    color: #2a2118;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

.jk-popup-input::placeholder {
    color: #aaa09a;
    letter-spacing: 0.06em;
}

.jk-popup-submit {
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px 0 2px 8px;
    color: #2a2118;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.jk-popup-submit:hover {
    transform: translateX(4px);
}

.jk-popup-submit svg {
    display: block;
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.6;
    fill: none;
}

.jk-popup-success {
    display: none;
    text-align: center;
    padding: 12px 0 0;
}

.jk-popup-success p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #2a2118;
    margin: 0 0 8px;
}

.jk-popup-success span {
    font-size: 0.82rem;
    color: #6b5d4f;
    letter-spacing: 0.06em;
}

.jk-popup-error {
    display: none;
    font-size: 0.78rem;
    color: #b94a48;
    margin-top: 8px;
    letter-spacing: 0.04em;
}

.jk-popup-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 18px;
    cursor: pointer;
}

.jk-popup-consent-check {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-top: 1px;
    accent-color: #2a2118;
    cursor: pointer;
    border: 1px solid #aaa09a;
}

.jk-popup-consent span {
    font-size: 0.75rem;
    color: #6b5d4f;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.jk-popup-login-link {
    display: block;
    margin-top: 20px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888;
    text-decoration: none;
    text-align: center;
}

.jk-popup-login-link:hover {
    color: #111;
}

@media (max-width: 540px) {
    .jk-popup {
        padding: 48px 32px 40px;
    }

    .jk-popup-heading {
        font-size: 1.9rem;
    }
}

