/* CSS Variables - Organic Design Palette */
:root {
    --ocean-wave: #3a86ff;
    --crystal-light: #e6f0ff;
    --deep-sapphire: #0b4cb2;
    --forest-emerald: #2dd4bf;
    --mint-breeze: #a7f3d0;
    --sunset-coral: #fb7185;
    --rose-mist: #fce7f3;
    --amber-glow: #fbbf24;
    --honey-light: #fef3c7;
    --granite-edge: #6b7280;
    --pearl-surface: #f8fafc;
    --success-verdant: #10b981;
    --warning-flame: #f59e0b;
    --info-stream: #3b82f6;

    /* Typography Scale */
    --heading-font: 'Raleway', serif;
    --body-font: 'Open Sans', sans-serif;
    --text-base: 16px;
    --text-scale: 1.25;
}

/* Global Reset with Human Inconsistencies */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--deep-sapphire);
    background: var(--pearl-surface);
    overflow-x: hidden;
}

/* Container System with Organic Spacing */
.content-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 34px; /* Fibonacci spacing */
}

/* Navigation Styles with Unique Implementation */
.primary_navigation {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(13px);
    box-shadow: 0 7px 21px rgba(59, 130, 246, 0.08);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.34s cubic-bezier(0.23, 1, 0.32, 1);
}

.navigation-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 21px 0; /* Organic spacing */
    position: relative;
}

.brand-identity img {
    height: 55px;
    width: auto;
    transition: transform 0.28s ease;
}

.brand-identity:hover img {
    transform: scale(1.05) rotate(1deg);
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.hamburger-icon {
    width: 34px;
    height: 3px;
    background: var(--deep-sapphire);
    position: relative;
    transition: all 0.31s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 2px;
}

.hamburger-icon:before,
.hamburger-icon:after {
    content: '';
    position: absolute;
    width: 34px;
    height: 3px;
    background: var(--deep-sapphire);
    transition: all 0.31s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 2px;
}

.hamburger-icon:before {
    top: -10px;
}

.hamburger-icon:after {
    top: 10px;
}

.navigation-wrapper {
    display: flex;
    align-items: center;
}

.navigation-list {
    display: flex;
    list-style: none;
    gap: 42px; /* Organic spacing */
    margin: 0;
}

.nav-anchor {
    color: var(--deep-sapphire);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    padding: 8px 0;
}

.nav-anchor::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--ocean-wave);
    transition: all 0.28s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateX(-50%);
}

.nav-anchor:hover::after {
    width: 100%;
}

.nav-anchor:hover {
    color: var(--ocean-wave);
    transform: translateY(-1px);
}

/* Mobile Navigation Styles */
@media screen and (max-width: 890px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 21px;
        z-index: 2;
    }

    .navigation-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        transition: all 0.34s cubic-bezier(0.23, 1, 0.32, 1);
        padding-top: 120px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .navigation-list {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 28px;
    }

    .nav-element {
        width: 100%;
        text-align: center;
    }

    .nav-anchor {
        display: inline-block;
        padding: 15px 34px;
        font-size: 21px;
        color: var(--deep-sapphire);
        border-radius: 13px;
        transition: all 0.28s ease;
    }

    .nav-anchor:hover {
        background: var(--crystal-light);
        color: var(--ocean-wave);
    }

    .nav-toggle:checked ~ .navigation-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger-icon {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger-icon:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger-icon:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Hero Section with Organic Flow */
.hero-workspace {
    background: linear-gradient(128deg, var(--crystal-light) 0%, var(--pearl-surface) 100%);
    padding: 140px 0 89px 0; /* Organic spacing */
    position: relative;
    overflow: hidden;
}

.hero-workspace::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(58, 134, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 67px; /* Organic spacing */
    align-items: center;
    min-height: 550px;
}

.primary-heading {
    font-family: var(--heading-font);
    font-size: calc(var(--text-base) * 3.2);
    font-weight: 700;
    line-height: 1.15;
    color: var(--deep-sapphire);
    margin-bottom: 28px;
    position: relative;
}

.hero-description {
    font-size: calc(var(--text-base) * 1.18);
    line-height: 1.7;
    color: var(--granite-edge);
    margin-bottom: 42px;
}

.hero-action-zone {
    display: flex;
    gap: 21px;
    flex-wrap: wrap;
    align-items: center;
}

.primary-cta-button {
    background: linear-gradient(135deg, var(--ocean-wave) 0%, var(--deep-sapphire) 100%);
    color: white;
    padding: 18px 34px;
    border-radius: 13px;
    text-decoration: none;
    font-weight: 600;
    font-size: calc(var(--text-base) * 1.05);
    transition: all 0.31s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(58, 134, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.primary-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.primary-cta-button:hover::before {
    left: 100%;
}

.primary-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(58, 134, 255, 0.35);
}

.secondary-action-link {
    color: var(--ocean-wave);
    text-decoration: none;
    font-weight: 500;
    padding: 18px 28px;
    border: 2px solid var(--ocean-wave);
    border-radius: 13px;
    transition: all 0.25s ease;
}

.secondary-action-link:hover {
    background: var(--ocean-wave);
    color: white;
    transform: translateY(-2px);
}

.hero-visual-space img {
    width: 100%;
    height: auto;
    border-radius: 21px;
    box-shadow: 0 13px 42px rgba(58, 134, 255, 0.15);
    transition: transform 0.34s ease;
}

.hero-visual-space img:hover {
    transform: scale(1.02) rotate(0.5deg);
}

/* Workshop Section with Card Layout */
.workshop-area {
    padding: 120px 0;
    background: var(--pearl-surface);
}

.section-header {
    text-align: center;
    margin-bottom: 89px;
}

.section-title {
    font-family: var(--heading-font);
    font-size: calc(var(--text-base) * 2.8);
    color: var(--deep-sapphire);
    margin-bottom: 21px;
    font-weight: 600;
}

.section-subtitle {
    font-size: calc(var(--text-base) * 1.15);
    color: var(--granite-edge);
    max-width: 600px;
    margin: 0 auto;
}

.workshop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 42px;
}

.workshop-card {
    background: white;
    border-radius: 21px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(107, 114, 128, 0.08);
    transition: all 0.34s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.workshop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ocean-wave), var(--forest-emerald));
    transform: scaleX(0);
    transition: transform 0.31s ease;
}

.workshop-card:hover::before {
    transform: scaleX(1);
}

.workshop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 21px 55px rgba(107, 114, 128, 0.15);
}

.card-visual img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.31s ease;
}

.workshop-card:hover .card-visual img {
    transform: scale(1.05);
}

.card-content {
    padding: 34px 28px;
}

.card-heading {
    font-family: var(--heading-font);
    font-size: calc(var(--text-base) * 1.4);
    color: var(--deep-sapphire);
    margin-bottom: 18px;
    font-weight: 600;
}

.card-text {
    color: var(--granite-edge);
    line-height: 1.65;
    font-size: calc(var(--text-base) * 0.95);
}

/* Production Zone with Asymmetric Layout */
.production-zone {
    padding: 110px 0;
    background: linear-gradient(125deg, var(--crystal-light) 0%, var(--pearl-surface) 100%);
}

.production-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 75px;
    align-items: center;
}

.section-heading {
    font-family: var(--heading-font);
    font-size: calc(var(--text-base) * 2.6);
    color: var(--deep-sapphire);
    margin-bottom: 28px;
    font-weight: 600;
}

.production-description {
    font-size: calc(var(--text-base) * 1.1);
    line-height: 1.7;
    color: var(--granite-edge);
    margin-bottom: 42px;
}

.production-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.feature-item {
    padding: 21px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 18px rgba(107, 114, 128, 0.06);
    border-left: 4px solid var(--ocean-wave);
}

.feature-title {
    font-family: var(--heading-font);
    font-size: calc(var(--text-base) * 1.2);
    color: var(--deep-sapphire);
    margin-bottom: 13px;
    font-weight: 600;
}

.feature-text {
    color: var(--granite-edge);
    line-height: 1.6;
    font-size: calc(var(--text-base) * 0.94);
}

.production-visual img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(58, 134, 255, 0.12);
}

/* Quality Center with Showcase Layout */
.quality-center-area {
    padding: 100px 0;
    background: var(--pearl-surface);
}

.quality-header {
    text-align: center;
    margin-bottom: 75px;
}

.center-title {
    font-family: var(--heading-font);
    font-size: calc(var(--text-base) * 2.7);
    color: var(--deep-sapphire);
    margin-bottom: 24px;
    font-weight: 600;
}

.center-description {
    font-size: calc(var(--text-base) * 1.12);
    color: var(--granite-edge);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.quality-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 34px;
}

.showcase-item {
    background: white;
    padding: 42px 28px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 6px 24px rgba(107, 114, 128, 0.07);
    transition: all 0.28s ease;
    position: relative;
    overflow: hidden;
}

.showcase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 60px;
    height: 3px;
    background: var(--forest-emerald);
    transform: translateX(-50%);
    border-radius: 0 0 15px 15px;
}

.showcase-item:nth-child(2)::before {
    background: var(--sunset-coral);
}

.showcase-item:nth-child(3)::before {
    background: var(--amber-glow);
}

.showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(107, 114, 128, 0.12);
}

.showcase-heading {
    font-family: var(--heading-font);
    font-size: calc(var(--text-base) * 1.35);
    color: var(--deep-sapphire);
    margin-bottom: 21px;
    font-weight: 600;
}

.showcase-text {
    color: var(--granite-edge);
    line-height: 1.65;
    font-size: calc(var(--text-base) * 0.96);
}

/* CTA Section with Dynamic Background */
.craft-cta-zone {
    background: linear-gradient(135deg, var(--ocean-wave) 0%, var(--deep-sapphire) 100%);
    padding: 89px 0;
    position: relative;
    overflow: hidden;
}

.craft-cta-zone::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(10deg); }
}

.cta-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.cta-heading {
    font-family: var(--heading-font);
    font-size: calc(var(--text-base) * 2.5);
    margin-bottom: 28px;
    font-weight: 600;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-text {
    font-size: calc(var(--text-base) * 1.1);
    line-height: 1.7;
    margin-bottom: 42px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 21px;
}

.cta-primary-btn {
    background: white;
    color: var(--deep-sapphire);
    padding: 21px 42px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: calc(var(--text-base) * 1.08);
    transition: all 0.28s ease;
    box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

.cta-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
    background: var(--crystal-light);
}

.cta-note {
    font-size: calc(var(--text-base) * 0.9);
    opacity: 0.85;
    font-style: italic;
}

/* Contact Section with Advanced Form Styling */
.contact-workspace {
    padding: 110px 0;
    background: var(--pearl-surface);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 67px;
    align-items: start;
}

.contact-heading {
    font-family: var(--heading-font);
    font-size: calc(var(--text-base) * 2.4);
    color: var(--deep-sapphire);
    margin-bottom: 24px;
    font-weight: 600;
}

.contact-description {
    font-size: calc(var(--text-base) * 1.05);
    line-height: 1.7;
    color: var(--granite-edge);
    margin-bottom: 42px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detail-item {
    padding: 21px;
    background: white;
    border-radius: 13px;
    box-shadow: 0 4px 15px rgba(107, 114, 128, 0.06);
}

.detail-label {
    font-family: var(--heading-font);
    font-size: calc(var(--text-base) * 1.1);
    color: var(--deep-sapphire);
    margin-bottom: 8px;
    font-weight: 600;
}

.detail-value {
    color: var(--granite-edge);
    font-size: calc(var(--text-base) * 0.98);
}

.contact-form-area {
    background: white;
    padding: 42px;
    border-radius: 21px;
    box-shadow: 0 13px 42px rgba(107, 114, 128, 0.08);
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 21px;
}

.form-row:nth-child(3) {
    grid-template-columns: 1fr 1fr;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-weight: 500;
    color: var(--deep-sapphire);
    font-size: calc(var(--text-base) * 0.94);
}

.form-input,
.form-select,
.form-textarea {
    padding: 15px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: var(--text-base);
    transition: all 0.25s ease;
    background: white;
    font-family: var(--body-font);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--ocean-wave);
    box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.1);
    transform: translateY(-1px);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    background: linear-gradient(135deg, var(--ocean-wave) 0%, var(--deep-sapphire) 100%);
    color: white;
    padding: 18px 34px;
    border: none;
    border-radius: 13px;
    font-size: calc(var(--text-base) * 1.05);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.28s ease;
    box-shadow: 0 6px 21px rgba(58, 134, 255, 0.25);
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(58, 134, 255, 0.35);
}

/* Footer with Organic Layout */
.site-footer {
    background: linear-gradient(135deg, var(--deep-sapphire) 0%, #1e3a8a 100%);
    color: white;
    padding: 67px 0 34px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 55px;
    margin-bottom: 42px;
}

.footer-brand img {
    height: 48px;
    margin-bottom: 18px;
}

.footer-tagline {
    font-size: calc(var(--text-base) * 0.95);
    opacity: 0.85;
    line-height: 1.6;
}

.group-title,
.contact-title {
    font-family: var(--heading-font);
    font-size: calc(var(--text-base) * 1.15);
    margin-bottom: 21px;
    font-weight: 600;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.25s ease;
    font-size: calc(var(--text-base) * 0.94);
}

.footer-link:hover {
    color: white;
    transform: translateX(5px);
}

.contact-address,
.contact-phone {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 13px;
    font-size: calc(var(--text-base) * 0.94);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 28px;
    text-align: center;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: calc(var(--text-base) * 0.9);
}

/* Responsive Design with Organic Breakpoints */
@media screen and (max-width: 1280px) {
    .content-wrapper {
        padding: 0 28px;
    }

    .hero-content-grid {
        gap: 42px;
    }
}

@media screen and (max-width: 890px) {
    .hero-content-grid {
        grid-template-columns: 1fr;
        gap: 55px;
        text-align: center;
    }

    .primary-heading {
        font-size: calc(var(--text-base) * 2.4);
    }

    .production-content {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .form-row:nth-child(3) {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }

    .hero-action-zone {
        justify-content: center;
    }
}

@media screen and (max-width: 640px) {
    .content-wrapper {
        padding: 0 21px;
    }

    .hero-workspace {
        padding: 110px 0 67px 0;
    }

    .primary-heading {
        font-size: calc(var(--text-base) * 2.0);
    }

    .workshop-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-action-zone {
        flex-direction: column;
        width: 100%;
    }

    .primary-cta-button,
    .secondary-action-link {
        width: 100%;
        text-align: center;
    }

    .contact-form-area {
        padding: 28px;
    }

    .section-title {
        font-size: calc(var(--text-base) * 2.2);
    }

    .section-heading {
        font-size: calc(var(--text-base) * 2.0);
    }
}
/* About Page Specific Styles */

/* Craft Tradition Section */
.tradition-workspace {
    background: linear-gradient(132deg, var(--crystal-light) 0%, var(--pearl-surface) 100%);
    padding: 135px 0 95px 0;
    position: relative;
    overflow: hidden;
}

.tradition-workspace::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.06) 0%, transparent 65%);
    border-radius: 50%;
}

.tradition-content-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 72px;
    align-items: center;
}

.tradition-heading {
    font-family: var(--heading-font);
    font-size: calc(var(--text-base) * 3.1);
    font-weight: 700;
    line-height: 1.2;
    color: var(--deep-sapphire);
    margin-bottom: 32px;
}

.tradition-description {
    font-size: calc(var(--text-base) * 1.12);
    line-height: 1.75;
    color: var(--granite-edge);
    margin-bottom: 45px;
}

.tradition-highlights {
    display: flex;
    gap: 48px;
}

.highlight-item {
    text-align: center;
}

.highlight-number {
    font-family: var(--heading-font);
    font-size: calc(var(--text-base) * 3.4);
    font-weight: 700;
    color: var(--ocean-wave);
    margin-bottom: 12px;
}

.highlight-text {
    color: var(--granite-edge);
    font-size: calc(var(--text-base) * 0.95);
    line-height: 1.5;
}

.tradition-visual-space img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 18px 52px rgba(58, 134, 255, 0.14);
    transition: transform 0.38s ease;
}

.tradition-visual-space img:hover {
    transform: scale(1.03) rotate(-0.8deg);
}

/* Master Builder Section */
.builder-area {
    padding: 115px 0;
    background: var(--pearl-surface);
}

.builder-header {
    text-align: center;
    margin-bottom: 85px;
}

.builder-title {
    font-family: var(--heading-font);
    font-size: calc(var(--text-base) * 2.9);
    color: var(--deep-sapphire);
    margin-bottom: 26px;
    font-weight: 600;
}

.builder-subtitle {
    font-size: calc(var(--text-base) * 1.18);
    color: var(--granite-edge);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

.builder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 52px;
}

.builder-profile {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(107, 114, 128, 0.09);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.builder-profile:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 65px rgba(107, 114, 128, 0.16);
}

.profile-visual img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.builder-profile:hover .profile-visual img {
    transform: scale(1.08);
}

.profile-content {
    padding: 38px 32px;
}

.profile-name {
    font-family: var(--heading-font);
    font-size: calc(var(--text-base) * 1.45);
    color: var(--deep-sapphire);
    margin-bottom: 8px;
    font-weight: 600;
}

.profile-role {
    color: var(--ocean-wave);
    font-weight: 500;
    margin-bottom: 22px;
    font-size: calc(var(--text-base) * 1.02);
}

.profile-bio {
    color: var(--granite-edge);
    line-height: 1.68;
    font-size: calc(var(--text-base) * 0.96);
}

/* Design Methods Section */
.methods-zone {
    padding: 108px 0;
    background: linear-gradient(127deg, var(--crystal-light) 0%, var(--pearl-surface) 100%);
}

.methods-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 78px;
    align-items: center;
}

.methods-visual img {
    width: 100%;
    height: auto;
    border-radius: 22px;
    box-shadow: 0 16px 48px rgba(58, 134, 255, 0.13);
}

.methods-heading {
    font-family: var(--heading-font);
    font-size: calc(var(--text-base) * 2.65);
    color: var(--deep-sapphire);
    margin-bottom: 32px;
    font-weight: 600;
}

.methods-description {
    font-size: calc(var(--text-base) * 1.08);
    line-height: 1.72;
    color: var(--granite-edge);
    margin-bottom: 48px;
}

.methods-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.method-step {
    background: white;
    padding: 26px;
    border-radius: 17px;
    box-shadow: 0 6px 22px rgba(107, 114, 128, 0.07);
    border-left: 5px solid var(--forest-emerald);
    transition: all 0.28s ease;
}

.method-step:nth-child(2) {
    border-left-color: var(--sunset-coral);
}

.method-step:nth-child(3) {
    border-left-color: var(--amber-glow);
}

.method-step:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 35px rgba(107, 114, 128, 0.12);
}

.step-title {
    font-family: var(--heading-font);
    font-size: calc(var(--text-base) * 1.24);
    color: var(--deep-sapphire);
    margin-bottom: 14px;
    font-weight: 600;
}

.step-text {
    color: var(--granite-edge);
    line-height: 1.65;
    font-size: calc(var(--text-base) * 0.95);
}

/* Quality Stories Section */
.stories-area {
    padding: 105px 0;
    background: var(--pearl-surface);
}

.stories-header {
    text-align: center;
    margin-bottom: 82px;
}

.stories-title {
    font-family: var(--heading-font);
    font-size: calc(var(--text-base) * 2.8);
    color: var(--deep-sapphire);
    margin-bottom: 25px;
    font-weight: 600;
}

.stories-subtitle {
    font-size: calc(var(--text-base) * 1.15);
    color: var(--granite-edge);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

.stories-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 38px;
}

.story-card {
    background: white;
    padding: 42px 35px;
    border-radius: 20px;
    box-shadow: 0 8px 28px rgba(107, 114, 128, 0.08);
    transition: all 0.32s ease;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ocean-wave), var(--forest-emerald));
    transform: scaleX(0);
    transition: transform 0.32s ease;
}

.story-card:hover::before {
    transform: scaleX(1);
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 55px rgba(107, 114, 128, 0.15);
}

.story-heading {
    font-family: var(--heading-font);
    font-size: calc(var(--text-base) * 1.38);
    color: var(--deep-sapphire);
    margin-bottom: 22px;
    font-weight: 600;
}

.story-text {
    color: var(--granite-edge);
    line-height: 1.68;
    margin-bottom: 28px;
    font-size: calc(var(--text-base) * 0.97);
    font-style: italic;
}

.story-author {
    border-top: 1px solid #e5e7eb;
    padding-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.author-name {
    font-weight: 600;
    color: var(--deep-sapphire);
    font-size: calc(var(--text-base) * 0.98);
}

.author-company {
    color: var(--granite-edge);
    font-size: calc(var(--text-base) * 0.9);
}

/* Craft Journey Section */
.journey-workspace {
    background: linear-gradient(135deg, var(--ocean-wave) 0%, var(--deep-sapphire) 100%);
    padding: 95px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.journey-workspace::before {
    content: '';
    position: absolute;
    top: -25%;
    right: -18%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 68%);
    border-radius: 50%;
    animation: slowSpin 20s linear infinite;
}

@keyframes slowSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.journey-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 68px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.journey-heading {
    font-family: var(--heading-font);
    font-size: calc(var(--text-base) * 2.6);
    margin-bottom: 28px;
    font-weight: 600;
}

.journey-description {
    font-size: calc(var(--text-base) * 1.1);
    line-height: 1.72;
    margin-bottom: 45px;
    opacity: 0.92;
}

.journey-values {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 42px;
}

.value-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 24px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.value-title {
    font-family: var(--heading-font);
    font-size: calc(var(--text-base) * 1.22);
    margin-bottom: 12px;
    font-weight: 600;
}

.value-text {
    opacity: 0.88;
    line-height: 1.6;
    font-size: calc(var(--text-base) * 0.95);
}

.journey-button {
    background: white;
    color: var(--deep-sapphire);
    padding: 20px 38px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: calc(var(--text-base) * 1.06);
    transition: all 0.28s ease;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.journey-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
    background: var(--crystal-light);
}

.journey-visual img {
    width: 100%;
    height: auto;
    border-radius: 22px;
    box-shadow: 0 18px 48px rgba(0,0,0,0.2);
}

/* Thank You Page Specific Styles */

/* Gratitude Section */
.thankyou-workspace {
    background: linear-gradient(130deg, var(--crystal-light) 0%, var(--pearl-surface) 100%);
    padding: 140px 0 90px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thankyou-content {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.gratitude-visual {
    margin-bottom: 45px;
}

.success-icon {
    display: inline-block;
    position: relative;
}

.checkmark-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--success-verdant) 0%, var(--forest-emerald) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: scaleIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.25);
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.checkmark {
    width: 35px;
    height: 20px;
    border: 4px solid white;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    animation: drawCheck 0.4s ease 0.2s both;
}

@keyframes drawCheck {
    0% { width: 0; height: 0; }
    100% { width: 35px; height: 20px; }
}

.gratitude-heading {
    font-family: var(--heading-font);
    font-size: calc(var(--text-base) * 2.8);
    color: var(--deep-sapphire);
    margin-bottom: 28px;
    font-weight: 600;
}

.gratitude-description {
    font-size: calc(var(--text-base) * 1.15);
    line-height: 1.72;
    color: var(--granite-edge);
    margin-bottom: 55px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* Next Steps Section */
.next-steps {
    background: white;
    padding: 45px 38px;
    border-radius: 22px;
    box-shadow: 0 10px 32px rgba(107, 114, 128, 0.08);
    margin-bottom: 48px;
    text-align: left;
}

.steps-title {
    font-family: var(--heading-font);
    font-size: calc(var(--text-base) * 1.45);
    color: var(--deep-sapphire);
    margin-bottom: 32px;
    text-align: center;
    font-weight: 600;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.step-item {
    display: flex;
    gap: 22px;
    align-items: flex-start;
}

.step-number {
    background: linear-gradient(135deg, var(--ocean-wave) 0%, var(--deep-sapphire) 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: calc(var(--text-base) * 1.1);
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-heading {
    font-family: var(--heading-font);
    font-size: calc(var(--text-base) * 1.18);
    color: var(--deep-sapphire);
    margin-bottom: 10px;
    font-weight: 600;
}

.step-text {
    color: var(--granite-edge);
    line-height: 1.65;
    font-size: calc(var(--text-base) * 0.95);
}

/* Contact Reminder Section */
.contact-reminder {
    background: var(--crystal-light);
    padding: 35px 32px;
    border-radius: 18px;
    margin-bottom: 42px;
    text-align: left;
}

.reminder-title {
    font-family: var(--heading-font);
    font-size: calc(var(--text-base) * 1.3);
    color: var(--deep-sapphire);
    margin-bottom: 15px;
    font-weight: 600;
}

.reminder-text {
    color: var(--granite-edge);
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: calc(var(--text-base) * 0.98);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    gap: 15px;
}

.contact-label {
    font-weight: 600;
    color: var(--deep-sapphire);
    min-width: 80px;
    font-size: calc(var(--text-base) * 0.95);
}

.contact-value {
    color: var(--granite-edge);
    font-size: calc(var(--text-base) * 0.95);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-return-btn {
    background: linear-gradient(135deg, var(--ocean-wave) 0%, var(--deep-sapphire) 100%);
    color: white;
    padding: 18px 35px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: calc(var(--text-base) * 1.05);
    transition: all 0.28s ease;
    box-shadow: 0 8px 25px rgba(58, 134, 255, 0.25);
}

.primary-return-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(58, 134, 255, 0.35);
}

.secondary-about-btn {
    color: var(--ocean-wave);
    text-decoration: none;
    font-weight: 500;
    padding: 18px 32px;
    border: 2px solid var(--ocean-wave);
    border-radius: 14px;
    transition: all 0.25s ease;
    font-size: calc(var(--text-base) * 1.05);
}

.secondary-about-btn:hover {
    background: var(--ocean-wave);
    color: white;
    transform: translateY(-2px);
}

/* Additional Resources Section */
.resources-area {
    padding: 95px 0;
    background: var(--pearl-surface);
}

.resources-header {
    text-align: center;
    margin-bottom: 75px;
}

.resources-title {
    font-family: var(--heading-font);
    font-size: calc(var(--text-base) * 2.5);
    color: var(--deep-sapphire);
    margin-bottom: 22px;
    font-weight: 600;
}

.resources-subtitle {
    font-size: calc(var(--text-base) * 1.1);
    color: var(--granite-edge);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.resource-card {
    background: white;
    padding: 38px 32px;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(107, 114, 128, 0.07);
    transition: all 0.28s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 50px;
    height: 3px;
    background: var(--forest-emerald);
    transform: translateX(-50%);
    border-radius: 0 0 10px 10px;
}

.resource-card:nth-child(2)::before {
    background: var(--sunset-coral);
}

.resource-card:nth-child(3)::before {
    background: var(--amber-glow);
}

.resource-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(107, 114, 128, 0.12);
}

.resource-heading {
    font-family: var(--heading-font);
    font-size: calc(var(--text-base) * 1.3);
    color: var(--deep-sapphire);
    margin-bottom: 20px;
    font-weight: 600;
}

.resource-text {
    color: var(--granite-edge);
    line-height: 1.65;
    font-size: calc(var(--text-base) * 0.95);
}

/* Responsive Design for About and Thank You Pages */
@media screen and (max-width: 890px) {
    .tradition-content-grid,
    .methods-content,
    .journey-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .tradition-highlights {
        justify-content: center;
        gap: 35px;
    }

    .steps-list {
        gap: 35px;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .contact-info {
        align-items: center;
        text-align: center;
    }

    .contact-item {
        flex-direction: column;
        gap: 5px;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .primary-return-btn,
    .secondary-about-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media screen and (max-width: 640px) {
    .tradition-heading {
        font-size: calc(var(--text-base) * 2.2);
    }

    .builder-grid {
        grid-template-columns: 1fr;
    }

    .tradition-highlights {
        flex-direction: column;
        gap: 25px;
    }

    .next-steps,
    .contact-reminder {
        padding: 28px 22px;
    }

    .resources-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .journey-values {
        gap: 20px;
    }

    .value-item {
        padding: 20px;
    }
}


.opl {
    margin: 5% 15%;
}