:root {
    --bg-paper: #F4ECD8;
    --bg-cream: #EDE5D3;
    --ink-primary: #2C241B;
    --wood-dark: #3E2723;
    --gold-accent: #B99761;
    /* Brand Flame Fox Color */
    --bronze-accent: #8B5A2B;
    /* New rich bronze */
    --gold-hover: #D4AF37;
    --border-ornate: #8B7355;
    --font-heading: 'Marcellus', serif;
    --font-subheading: 'Cormorant Garamond', serif;
    --font-body: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #241D17;
    /* Vintage Bronze Parallax Enchantment */
    background-image:
        radial-gradient(circle, transparent 20%, rgba(36, 29, 23, 0.7) 100%),
        url('https://www.transparenttextures.com/patterns/natural-paper.png'),
        url('../assets/images/bronze_parallax_bg.webp');
    background-blend-mode: normal, multiply, normal;
    background-size: cover, auto, cover;
    /* Ensure full side-to-side coverage */
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    filter: brightness(0.9) contrast(0.95);
    /* Subtler character */
    color: var(--ink-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    color: var(--gold-accent);
    transition: color 0.3s ease;
    text-decoration: none;
}

a:hover {
    color: var(--gold-hover);
}

/* ========== HERO SECTION (Slider) ========== */
.hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: none;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    /* Even smoother fade */
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--bg-paper);
    text-align: center;
}

.hero-content {
    background: rgba(36, 29, 23, 0.96);
    padding: 3rem 5rem 4rem;
    border: 1px solid var(--gold-accent);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}

.hero-signet-container {
    width: 140px;
    height: 140px;
    border: 2px solid var(--gold-accent);
    border-radius: 50%;
    margin: 0 auto 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(44, 36, 27, 0.6);
    padding: 25px;
    box-shadow: 0 0 30px rgba(185, 151, 97, 0.2);
}

.hero-signet {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    /* Ensure visibility for dark assets */
}

.hero-slide-1 {
    background-image: url('../assets/images/hero_craft_workshop.webp');
}

.hero-slide-2 {
    background-image: url('../assets/images/hero_candle_atmosphere.webp');
}

.hero-slide-3 {
    background-image: url('../assets/images/hero_01.webp');
}

.hero-slide-4 {
    background-image: url('../assets/images/hero_03.webp');
}

.hero-slide-5 {
    background-image: url('../assets/images/produkt_prezentacja_01.webp');
}

.hero-illustration {
    display: flex;
    justify-content: center;
    align-items: stretch;
    overflow: hidden;
    height: 100%;
}

.hero-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    mix-blend-mode: multiply;
}

.hero-center {
    text-align: center;
}

.logo-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border: 3px solid var(--ink-primary);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.main-title {
    font-size: 3.5rem;
    letter-spacing: 3px;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.subtitle {
    font-family: var(--font-subheading);
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.ornamental-divider {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
    margin: 1rem auto;
}

.hero-url {
    font-size: 1.1rem;
    color: var(--gold-accent);
    letter-spacing: 6px;
    /* Visible and elegant */
    font-weight: 500;
    text-transform: lowercase;
    opacity: 0.95;
    margin-top: 0.5rem;
}

/* ========== NAVIGATION ========== */
.main-nav {
    position: sticky;
    top: 0;
    z-index: 2000;
    background-color: rgba(36, 29, 23, 0.95);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(185, 151, 97, 0.2);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    width: 100%;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1rem 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--bg-paper);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--gold-accent);
}

/* ========== MAIN CONTENT ========== */
.main-content {
    width: 100%;
    background-color: transparent;
    padding: 2rem 0;
}

/* Section Spacing */
section {
    margin-bottom: 6rem;
    width: 100%;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Two Column Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Panel Frames */
.content-panel {
    background-color: var(--bg-paper);
}

.panel-frame,
.section-frame {
    border: 1px solid rgba(185, 151, 97, 0.2);
    padding: 4rem;
    background-color: rgba(36, 29, 23, 0.92);
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8);
    color: var(--bg-paper);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    position: relative;
}

.section-frame-light {
    background-color: rgba(255, 255, 255, 0.99);
    color: var(--ink-primary);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--gold-accent);
}

.light-content-card {
    background-color: rgba(255, 255, 255, 0.99);
    padding: 4rem 5rem;
    border: 1px solid var(--gold-accent);
    color: var(--ink-primary);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.35);
    /* Premium floating elevation */
    margin: 3rem auto;
    max-width: 900px;
    position: relative;
    overflow: hidden;
    /* For header image clipping */
}

.story-card-refined {
    padding-top: 0;
    /* Header image handles top space */
}

.panel-title,
.section-title-full {
    color: var(--gold-accent);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 100%;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 2.2rem;
}

.panel-title-internal {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    color: var(--ink-primary);
}

.about-header-illustration {
    width: calc(100% + 10rem);
    /* Compensate frame padding */
    margin: 0 -5rem 3rem;
    height: 300px;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--gold-accent);
}

.about-header-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.5) contrast(1.1) sepia(0.2);
}

.section-title-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    text-transform: uppercase;
    letter-spacing: 8px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.8), 2px 2px 0 var(--gold-accent);
    width: 100%;
    text-align: center;
    z-index: 10;
    pointer-events: none;
}

.panel-text {
    font-size: 0.95rem;
    line-height: 1.7;
}

.panel-text p {
    margin-bottom: 1rem;
}

.panel-url {
    text-align: center;
    font-size: 0.85rem;
    color: var(--wood-dark);
    margin-top: 1rem;
}

/* Panel Subtitles */
.panel-subtitle {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--wood-dark);
    margin: 2rem 0 1rem;
    padding-top: 1rem;
    border-top: 2px dashed var(--gold-accent);
}

/* Materials List */
.materials-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.materials-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.materials-list li::before {
    content: "🌿";
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

/* Brand Motto / Quote */
.brand-motto {
    font-size: 1.6rem;
    font-style: italic;
    text-align: center;
    color: var(--gold-accent);
    margin: 3rem 0;
    padding: 2.5rem;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    line-height: 1.6;
    font-family: var(--font-subheading);
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.brand-motto::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: rgba(197, 160, 89, 0.2);
    font-family: serif;
}

/* Right Column */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ========== CONTINUOUS INTERACTIVE SLIDER (Integrated) ========== */
.interactive-slider-container {
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.interactive-track {
    display: flex;
    width: max-content;
    animation: scrollContinuous 40s linear infinite;
}

.interactive-track:hover {
    animation-play-state: paused;
}

@keyframes scrollContinuous {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.slider-item {
    width: 300px;
    height: 400px;
    margin: 0 1rem;
    cursor: pointer;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.slider-item:hover {
    border-color: var(--gold-accent);
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.slider-item:hover img {
    transform: scale(1.05);
}

/* Modal for Enlarge Image */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    text-align: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 80vh;
    border: 3px solid var(--gold-accent);
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.contact-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 2rem;
    background: var(--gold-accent);
    color: var(--ink-primary);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: bold;
}

/* Products Panel (Okienka) */
.products-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.product-mini {
    background: white;
    border: 2px solid var(--gold-accent);
    padding: 1.5rem;
    transition: box-shadow 0.3s;
}

.product-mini:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-mini-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    margin-bottom: 0.5rem;
    background-color: var(--bg-cream);
}

.product-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.product-price {
    display: block;
    font-size: 0.9rem;
    color: var(--gold-accent);
    font-weight: bold;
}

/* Contact Panel */
.contact-info {
    text-align: center;
    font-size: 0.9rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-url {
    font-weight: bold;
    color: var(--gold-accent);
}

/* ========== WORKSHOPS SPLIT ========== */
.workshops-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.workshop-column {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-height: 100%;
}

.workshop-medallion {
    width: 90px;
    height: 90px;
    border: 2px solid var(--gold-accent);
    border-radius: 50%;
    margin-bottom: -45px;
    z-index: 5;
    background: var(--ink-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    color: var(--gold-accent);
}

.workshop-svg-icon {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.workshop-card p {
    font-size: 1rem;
    margin-bottom: auto;
    /* Push content to top, allowing card to stretch */
    color: #555;
    line-height: 1.7;
    padding-bottom: 2rem;
}

.workshop-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gold-accent);
    /* Floating gold button */
    color: var(--ink-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-top: -30px;
    /* Float below box */
    z-index: 2;
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.3);
}

.workshop-cta:hover {
    background: var(--gold-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.4);
}

/* ========== SLAVIC PRODUCTS CAROUSEL ========== */
.slavic-carousel-container {
    width: 100%;
    overflow: hidden;
    padding: 0.5rem 0;
    /* Further reduced height */
    background: var(--ink-primary);
    color: var(--bg-paper);
}

.slavic-track {
    display: flex;
    width: max-content;
    animation: scrollContinuous 60s linear infinite;
}

.slavic-item {
    width: 250px;
    height: 350px;
    /* Controlled height */
    text-align: center;
    margin: 0 1.5rem;
    position: relative;
    /* For label positioning */
    overflow: hidden;
}

.slavic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.6s ease;
}

.slavic-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.slavic-item span.slavic-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 36, 27, 0.8);
    color: var(--gold-accent);
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

.slavic-item:hover span.slavic-label {
    opacity: 1;
    transform: translateY(0);
}

/* Integrated CTA in Slavic Section */
.cta-mini {
    margin-top: 4rem;
    padding: 3rem;
    border-top: 1px solid var(--gold-accent);
    text-align: center;
}

.cta-mini h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--bg-paper);
}

.cta-mini p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, var(--ink-primary) 0%, var(--wood-dark) 100%);
    color: var(--bg-paper);
    padding: 3rem 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--bg-paper);
}

.cta-content p {
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 2px solid var(--gold-accent);
    background: var(--gold-accent);
    color: var(--ink-primary);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.cta-button:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
}

.slavic-title {
    color: white;
}

.modal-product-title {
    color: white;
    margin-top: 1rem;
}

/* ========== FOOTER ========== */
.main-footer {
    background-color: var(--bg-cream);
    padding: 4rem 0 2rem;
    width: 100%;
    border-top: 1px solid var(--gold-accent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-col {
    font-size: 0.9rem;
}

.footer-col p {
    margin-bottom: 0.5rem;
}

.footer-center {
    text-align: center;
}

.footer-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 0.5rem;
    border: 2px solid var(--gold-accent);
    overflow: hidden;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: screen;
    /* Better visibility for signet logo */
}

.footer-logo.logo-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid var(--gold-accent);
    background: var(--ink-primary);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--gold-accent);
    background: var(--ink-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.social-icon:hover {
    background: var(--gold-accent);
    color: var(--ink-primary);
    transform: translateY(-3px);
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Contact Form Styles */
.vintage-form {
    display: grid;
    gap: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--ink-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(185, 151, 97, 0.3);
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
}

.form-submit {
    background: var(--gold-accent);
    color: var(--ink-primary);
    border: none;
    padding: 1.2rem;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.3s;
}

.form-submit:hover {
    background: var(--gold-hover);
    letter-spacing: 4px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: var(--gold-accent);
    color: var(--ink-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    /* Controlled by JS */
    font-size: 1.5rem;
    z-index: 3000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    align-items: center;
    justify-content: center;
}

.back-to-top:hover {
    background: var(--gold-hover);
    transform: translateY(-5px);
}

.brand-motto-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4rem 0 2rem;
    padding: 2.5rem;
    border-top: 1px solid rgba(185, 151, 97, 0.2);
    border-bottom: 1px solid rgba(185, 151, 97, 0.2);
    background: rgba(244, 236, 216, 0.3);
    text-align: center;
}


.brand-motto {
    font-size: 1.8rem;
    line-height: 1.4;
    color: var(--wood-dark);
    font-family: var(--font-subheading);
    font-style: italic;
    font-weight: 600;
    margin: 0;
    padding: 0;
    border: none;
}

.workshop-column {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-height: 100%;
}

.workshop-card {
    background: white;
    padding: 70px 3rem 4rem;
    text-align: center;
    border: 1px solid rgba(185, 151, 97, 0.1);
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    position: relative;
    color: var(--ink-primary);
    flex: 1;
    /* Force card to fill column height */
    display: flex;
    flex-direction: column;
}

.workshop-card p {
    font-size: 1rem;
    margin-bottom: auto;
    /* Push content to top */
    color: #555;
    line-height: 1.7;
    padding-bottom: 2rem;
}

/* Captcha Styling */
.captcha-group input {
    font-size: 1.2rem;
    font-weight: bold;
    font-weight: 600;
}

.footer-link:hover {
    color: var(--gold-accent);
}

.footer-logo-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid var(--gold-accent);
    background: var(--ink-primary);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(71%) sepia(19%) saturate(1028%) hue-rotate(357deg) brightness(88%) contrast(85%);
    /* Gold Signet */
}

/* ========== RESPONSIVENESS ========== */
@media (max-width: 1024px) {

    .section-frame,
    .light-content-card {
        padding: 3rem;
        margin-left: 1rem;
        margin-right: 1rem;
    }
}

@media (max-width: 768px) {
    .section-container {
        padding: 0;
    }

    .section-frame {
        width: 100%;
        max-width: none;
        margin: 0;
        border-left: none;
        border-right: none;
        border-radius: 0;
        padding: 3rem 1.5rem;
    }

    .hero-content {
        padding: 2.5rem 1.5rem;
        width: 95%;
        max-width: 450px;
    }

    .about-header-illustration {
        width: calc(100% + 3rem);
        /* Matching section-frame padding */
        margin: 0 -1.5rem 2rem;
        height: 220px;
    }

    .main-title {
        font-size: 2.2rem;
    }

    .section-title-overlay {
        font-size: 1.8rem;
        letter-spacing: 4px;
    }

    .light-content-card {
        padding: 2.5rem 1.5rem;
        margin: 2rem 1rem;
        border-radius: 8px;
    }

    .section-frame-light {
        margin: 0;
        border-radius: 0;
        width: 100%;
    }

    .nav-links {
        gap: 1.2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        font-size: 0.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-right,
    .footer-col {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .workshops-split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .section-frame {
        padding: 2.5rem 1rem;
    }

    .about-header-illustration {
        width: calc(100% + 2rem);
        /* Matching section-frame padding */
        margin: 0 -1rem 1.5rem;
        height: 180px;
    }

    .hero-signet-container {
        width: 90px;
        height: 90px;
        padding: 12px;
    }

    .main-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .subtitle {
        font-size: 0.95rem;
    }

    .section-title-overlay {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }

    .brand-motto {
        font-size: 1.2rem;
        padding: 1.5rem;
    }

    .nav-links a {
        font-size: 0.7rem;
    }

    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }

    .workshop-card {
        padding: 60px 1.5rem 2.5rem;
    }
}