:root {
  --bg-dark: #1A110E;
  --bg-card: #261914;
  --text-primary: #FAF6F5;
  --text-secondary: #C0B2AE;
  --text-muted: #8C7B76;
  
  --accent-terracotta: #EA580C;
  --accent-terracotta-glow: rgba(234, 88, 12, 0.25);
  --accent-bronze: #854F3D;
  --accent-bronze-glow: rgba(133, 79, 61, 0.2);
  
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-serif: 'Cinzel', serif;
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

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

html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    min-height: 100vh;
}

.leather-glow-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.leather-glow-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.25;
    pointer-events: none;
}

.lthr-terracotta-glow {
    width: 500px;
    height: 500px;
    background: var(--accent-terracotta);
    top: -5%;
    right: -5%;
}

.lthr-bronze-glow {
    width: 600px;
    height: 600px;
    background: var(--accent-bronze);
    bottom: -10%;
    left: -10%;
}

.leather-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 17, 14, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.leather-top-bar {
    background: rgba(15, 10, 8, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    padding: 0.4rem 2.5rem;
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.leather-top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    gap: 1.2rem;
    align-items: center;
}

.leather-top-bar-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.25s;
}

.leather-top-bar-link:hover {
    color: var(--accent-terracotta);
}

.leather-top-bar-sep {
    color: var(--text-muted);
    opacity: 0.5;
}

.leather-top-bar-text {
    font-size: 0.7rem;
}

.leather-mobile-drawer-contact {
    display: none;
}

.leather-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 2.5rem;
}

.leather-logo {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--text-primary);
}

.leather-logo-accent {
    color: var(--accent-terracotta);
}

.leather-nav-links {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

.leather-nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.25s;
}

.leather-nav-links a:hover {
    color: var(--accent-terracotta);
}

.btn-leather-cta-nav {
    display: inline-block;
    padding: 0.55rem 1.4rem;
    background: none;
    border: 1px solid var(--accent-terracotta);
    color: var(--accent-terracotta);
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-leather-cta-nav:hover {
    background: var(--accent-terracotta);
    color: #FFFFFF;
    box-shadow: 0 4px 15px var(--accent-terracotta-glow);
}

.leather-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 16px;
    background: none;
    border: none;
    cursor: pointer;
}

.leather-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

.leather-main-content {
    position: relative;
    z-index: 1;
}

/* HERO SECTION */
.leather-hero-section {
    min-height: 95vh;
    padding: 9rem 2.5rem 4rem;
    display: flex;
    align-items: center;
}

.leather-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

.leather-brand-sub-badge {
    display: inline-block;
    color: var(--accent-terracotta);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.6rem;
}

.leather-hero-text h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.01em;
    margin-bottom: 1.2rem;
}

.leather-hero-lead {
    font-size: clamp(0.88rem, 1.5vw, 1rem);
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 2.2rem;
}

.leather-hero-action-row {
    display: flex;
    gap: 1.2rem;
}

.leather-hero-image-block {
    display: flex;
    justify-content: center;
    position: relative;
}

.lthr-bronze-glow-ellipse {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--accent-bronze-glow) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.leather-hero-phone-img {
    width: 90%;
    max-width: 320px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 45px rgba(0,0,0,0.5));
    animation: floatCase 6s ease-in-out infinite;
}

@keyframes floatCase {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* BRAND BAR */
.leather-brand-bar {
    background: rgba(26, 17, 14, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    padding: 1.5rem 2rem;
}

.leather-brand-bar-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.leather-partner-logo {
    font-family: var(--font-serif);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* BENTO CATALOG */
.leather-bento-catalog-section {
    padding: 6.5rem 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.leather-section-header-center {
    text-align: center;
    margin-bottom: 4.5rem;
}

.leather-section-header-center h2 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 0.8rem;
}

.leather-section-subtitle {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.leather-line-divider {
    width: 60px;
    height: 3px;
    background: var(--accent-terracotta);
    margin: 0 auto;
    border-radius: 4px;
}

.leather-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.leather-bento-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 240px;
    transition: all 0.4s;
}

.leather-bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(234, 88, 12, 0.2);
    box-shadow: 0 15px 35px rgba(234, 88, 12, 0.06);
}

.leather-bento-tall {
    grid-row: span 2;
}

.leather-bento-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 0;
}

.lthr-bg-macbook {
    background: radial-gradient(circle, var(--accent-terracotta) 0%, transparent 80%);
}

.lthr-bg-iphone {
    background: radial-gradient(circle, var(--accent-bronze) 0%, transparent 80%);
}

.lthr-bg-desk {
    background: radial-gradient(circle, var(--accent-terracotta) 0%, transparent 80%);
}

.leather-bento-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.leather-bento-tag {
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--accent-terracotta);
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.leather-bento-card h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.leather-bento-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* EMBOSSING */
.leather-embossing-section {
    padding: 3.5rem 2.5rem 6.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.leather-embossing-interactive-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.leather-embossing-preview-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.leather-embossing-card-preview {
    width: 250px;
    height: 380px;
    background: #4E3629;
    border: 3px solid #634535;
    border-radius: 35px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 4rem;
    transition: all 0.3s;
}

.leather-preview-case-mock {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.leather-case-monogram {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #D97706;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    text-transform: uppercase;
    transition: all 0.2s;
}

.leather-preview-shadow {
    position: absolute;
    width: 80%;
    height: 15px;
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
    bottom: -35px;
    filter: blur(10px);
}

.leather-embossing-options-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.leather-embossing-options-card h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.leather-control-group {
    display: flex;
    flex-direction: column;
}

.leather-control-group label {
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.leather-monogram-text-input {
    background: var(--bg-dark);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 0.75rem 1.1rem;
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    outline: none;
    transition: border 0.3s;
}

.leather-monogram-text-input:focus {
    border-color: var(--accent-terracotta);
}

.leather-foil-selectors {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
}

.leather-foil-btn {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    color: var(--text-secondary);
    padding: 0.75rem 0.5rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 700;
    transition: all 0.3s;
    text-align: center;
    outline: none;
}

.leather-foil-btn:hover {
    border-color: rgba(234, 88, 12, 0.3);
}

.leather-foil-btn.active {
    background: rgba(234, 88, 12, 0.08);
    border-color: var(--accent-terracotta);
    color: #FFFFFF;
}

.leather-embossing-specs-table {
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.78rem;
}

.leather-spec-row {
    display: flex;
    justify-content: space-between;
}

.leather-spec-row span {
    color: var(--text-muted);
}

/* CRAFTSMANSHIP */
.leather-craftsmanship-section {
    padding: 6.5rem 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.leather-craft-journey {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    margin-top: 2rem;
}

.leather-craft-journey::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: rgba(234, 88, 12, 0.12);
    z-index: 0;
}

.leather-craft-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.leather-step-icon-wrap {
    width: 42px;
    height: 42px;
    background: var(--bg-dark);
    border: 2px solid var(--accent-terracotta);
    color: var(--accent-terracotta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    box-shadow: 0 0 10px rgba(234, 88, 12, 0.3);
}

.leather-craft-step h3 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.leather-craft-step p {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* TESTIMONIALS */
.leather-testimonials-section {
    padding: 6.5rem 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.leather-testimonials-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.leather-test-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
}

.leather-test-quote {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.leather-test-author {
    display: flex;
    flex-direction: column;
}

.leather-test-author strong {
    font-size: 0.82rem;
    color: #FFFFFF;
}

.leather-test-author span {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* BUTTONS */
.btn-leather {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2.2rem;
    border-radius: 40px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    outline: none;
    text-align: center;
}

.btn-leather-primary {
    background: var(--accent-terracotta);
    color: #FFFFFF;
    box-shadow: 0 4px 15px var(--accent-terracotta-glow);
}

.btn-leather-primary:hover {
    background: #FFFFFF;
    color: var(--bg-dark);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.btn-leather-secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
}

.btn-leather-secondary:hover {
    background: #FFFFFF;
    color: var(--bg-dark);
    transform: translateY(-1px);
}

.btn-sm {
    padding: 0.5rem 1.4rem;
    font-size: 0.72rem;
}

/* CONTACT */
.leather-contact-section {
    background: #100a08;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding: 6.5rem 2.5rem;
    position: relative;
}

.leather-contact-split-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 4.5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.leather-contact-details-side h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.leather-contact-intro-txt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.leather-contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.leather-contact-info-block strong {
    color: var(--text-primary);
}

.leather-form-glass-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
}

.leather-main-booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.leather-form-group {
    display: flex;
    flex-direction: column;
}

.leather-flex-row-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.leather-form-group-sub {
    display: flex;
    flex-direction: column;
}

.leather-form-group label, .leather-form-group-sub label {
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--text-secondary);
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.leather-form-group input, .leather-form-group textarea, .leather-form-group-sub input {
    background: #140d0b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.65rem 1rem;
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-main);
    outline: none;
    font-size: 0.82rem;
    transition: border 0.3s;
}

.leather-form-group input:focus, .leather-form-group textarea:focus, .leather-form-group-sub input:focus {
    border-color: var(--accent-terracotta);
}

.leather-form-message {
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    display: none;
    margin-top: 1rem;
}

.leather-form-message.success {
    display: block;
    background: rgba(234, 88, 12, 0.1);
    color: var(--accent-terracotta);
    border: 1px solid var(--accent-terracotta);
}

.leather-form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: #F87171;
    border: 1px solid #EF4444;
}

/* FOOTER */
.leather-footer {
    background: #0c0807;
    color: var(--text-secondary);
    padding: 5rem 2.5rem 3rem;
    border-top: 1px solid rgba(255,255,255,0.02);
    word-wrap: break-word;
    word-break: break-word;
}

.leather-footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
}

.leather-footer-info h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.2rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.leather-footer-info p {
    font-size: 0.78rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.leather-footer-links-wrap h4 {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 1.2rem;
    letter-spacing: 0.05em;
}

.leather-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.leather-footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.78rem;
    transition: color 0.25s;
}

.leather-footer-links a:hover {
    color: var(--accent-terracotta);
}

.leather-footer-links-wrap p {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.leather-footer-links-wrap strong {
    color: #FFFFFF;
}

/* MODALS & COOKIE BANNER */
.leather-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    overflow: auto;
}

.leather-modal-content {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.03);
    margin: 10% auto;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 650px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.85rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.leather-modal-content h2, .leather-modal-content h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.leather-close-modal {
    color: var(--text-muted);
    position: absolute;
    top: 1.2rem;
    right: 1.8rem;
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.leather-close-modal:hover {
    color: var(--accent-terracotta);
}

.leather-cookie-banner {
    position: fixed;
    bottom: -150px;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 1.2rem 2rem;
    z-index: 1500;
    transition: bottom 0.4s ease;
    display: flex;
    justify-content: center;
    box-shadow: 0 -8px 30px rgba(0,0,0,0.2);
}

.leather-cookie-banner.show {
    bottom: 0;
}

.leather-cookie-content {
    max-width: 1100px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.leather-cookie-content p {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin: 0;
}

.leather-cookie-content a {
    color: var(--accent-terracotta);
    text-decoration: none;
    font-weight: 700;
}

.show-mobile-br {
    display: none;
}

/* RESPONSIVE FLUID MEDIA QUERIES (COLLAPSE DRAWERS ON TABLET & MOBILE) */
@media (max-width: 1024px) {
    .leather-top-bar {
        display: none;
    }
    
    .leather-nav-container {
        padding: 0.8rem 1rem;
    }

    .leather-hero-section {
        padding: 8rem 1.5rem 3rem;
    }
    
    .leather-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .leather-hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .leather-hero-action-row {
        justify-content: center;
    }
    
    .leather-bento-grid {
        grid-template-columns: 1fr;
    }
    
    .leather-bento-tall {
        grid-row: span 1;
    }
    
    .leather-embossing-interactive-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .leather-craft-journey {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .leather-craft-journey::before {
        display: none;
    }
    
    .leather-testimonials-masonry {
        grid-template-columns: 1fr;
    }
    
    .leather-contact-split-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .leather-footer-container {
        grid-template-columns: 1fr 1fr;
    }

    /* COLLAPSE HEADER TO HAMBURGER AT 1024PX TO PREVENT CUT-OFF LINK FLOWS */
    .leather-header {
        padding: 0;
    }

    .leather-menu-toggle {
        display: flex;
        position: relative;
        z-index: 1010; /* Make sure it stays on top of the fixed drawer */
    }

    .leather-contact-cta {
        display: none;
    }

    .leather-nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        padding: 4rem 2rem;
    }

    .leather-nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .leather-nav-links li {
        margin: 1.2rem 0;
    }
    
    .leather-nav-links a {
        font-size: 1.15rem;
    }

    .leather-mobile-drawer-contact {
        display: block;
        margin-top: 2rem;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .leather-drawer-contact-card {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: var(--radius-md);
        padding: 1.2rem;
        word-break: break-all;
    }
    
    .leather-drawer-contact-card h4 {
        font-family: var(--font-serif);
        font-size: 0.9rem;
        color: var(--text-primary);
        margin-bottom: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    
    .leather-drawer-contact-card p {
        font-size: 0.8rem;
        color: var(--text-secondary);
        margin-bottom: 0.4rem;
        line-height: 1.4;
        word-break: break-all;
    }
    
    .leather-drawer-contact-card a {
        color: var(--accent-terracotta);
        text-decoration: none;
        word-break: break-all;
    }

    .leather-menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .leather-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .leather-menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .leather-hero-section {
        padding: 8rem 1.5rem 3rem;
        overflow: hidden; /* Prevent background decorative elements from stretching width */
    }

    .leather-hero-action-row {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 1rem;
    }

    .leather-hero-action-row .btn-leather {
        width: 100%;
        max-width: 280px;
    }

    .leather-embossing-section {
        padding: 3.5rem 1.5rem 6.5rem;
    }

    .leather-embossing-options-card {
        padding: 1.2rem;
    }

    .leather-foil-selectors {
        grid-template-columns: 1fr;
    }

    .leather-spec-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }

    .leather-contact-info-block {
        word-break: break-word;
    }

    .leather-footer {
        padding: 4rem 1.5rem 22rem !important; /* Large bottom clearance to prevent fixed banner overlap cutoffs */
    }

    .hide-mobile {
        display: none !important;
    }

    .show-mobile-br {
        display: inline !important;
    }
}

@media (max-width: 768px) {
    .leather-flex-row-fields {
        grid-template-columns: 1fr;
    }
    
    .leather-footer-container {
        grid-template-columns: 1fr;
    }
    
    .leather-cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}
