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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c1810;
    background-color: #fefefe;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: #1a1a1a;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation - Ultra Minimal */
.navbar {
    background-color: rgba(254, 254, 254, 0.9);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(44, 24, 16, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Logo Styles for Navbar */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-logo h2 {
    color: #2c1810;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    margin: 0;
}

.nav-logo:hover h2 {
    transform: translateY(-1px);
    color: #8b6f47;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: #2c1810;
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #8b6f47;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #8b6f47, transparent);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.bar {
    width: 20px;
    height: 1px;
    background-color: #2c1810;
    margin: 2px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero Section - Minimal */
.hero {
    margin-top: 80px;
    padding: 8rem 0;
    background: linear-gradient(rgba(226, 214, 189, 0.85), rgba(243, 235, 219, 0.85)), url('images/other artwork/O7.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    width: 100%;
}

.hero-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.2s;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    line-height: 1.1;
    font-weight: 300;
    letter-spacing: -1px;
}

.hero-text p {
    font-size: 1.2rem;
    margin: 0 auto 3rem auto;
    color: #555;
    font-weight: 300;
    line-height: 1.7;
    max-width: 500px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #2c1810;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 0;
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #2c1810;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 24, 16, 0.2);
}

.hero-image {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.4s;
}

.featured-art {
    width: 100%;
    max-width: 350px;
    height: 450px;
    object-fit: cover;
    border-radius: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(20%);
}

.featured-art:hover {
    transform: scale(1.02);
    filter: grayscale(0%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Featured Section - Minimal Grid */
.featured-section {
    max-width: 1200px;
    margin: 8rem auto 0;
    padding: 0 40px;
    text-align: center;
}

.featured-section h2 {
    font-size: 2rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
    font-weight: 300;
    letter-spacing: 2px;
}

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

.featured-item {
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.featured-item:hover {
    transform: translateY(-8px);
}

.featured-placeholder {
    height: 250px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    color: #999;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.featured-item:hover .featured-placeholder {
    background: #f0f0f0;
    border-color: #e0e0e0;
}

.instagram-link {
    display: inline-block;
    color: #2c1810;
    text-decoration: none;
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 0.8rem 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    border-bottom-color: #2c1810;
    transform: translateY(-1px);
}

/* Portfolio Section - Clean Grid */
.portfolio {
    padding: 8rem 0;
    background-color: #f8f6f3;
}

.portfolio h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
    font-weight: 300;
    letter-spacing: 2px;
}

.portfolio-categories {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.category-btn {
    background: transparent;
    border: none;
    color: #555;
    padding: 0.8rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-bottom: 1px solid transparent;
    position: relative;
}

.category-btn:hover,
.category-btn.active {
    color: #2c1810;
    border-bottom-color: #2c1810;
}

.category-btn:hover:not(.active) {
    color: #333;
    border-bottom-color: #ccc;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-image {
    width: 100%;
    height: 180px;
    object-fit: contain;
    object-position: center;
    background: #f8f8f8;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
}

/* For filtered view */
.portfolio-grid.filtered .portfolio-image {
    height: 140px;
    object-fit: contain;
    object-position: center;
    background: #f8f8f8;
}

/* Smaller grid items for filtered view */
.portfolio-grid.filtered {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
    filter: brightness(0.8);
}

.portfolio-placeholder {
    height: 180px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    color: #999;
    transition: all 0.4s ease;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Compact overlay for filtered portfolio items */
.portfolio-grid.filtered .portfolio-overlay {
    padding: 1rem;
}

.portfolio-grid.filtered .portfolio-overlay h3 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.portfolio-grid.filtered .portfolio-overlay p {
    font-size: 0.8rem;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    color: white;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    font-weight: 300;
    opacity: 0.9;
}

.dm-section {
    text-align: center;
}

.dm-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: transparent;
    color: #2c1810;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #2c1810;
    position: relative;
    overflow: hidden;
}

.dm-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #2c1810;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.dm-button:hover::before {
    left: 0;
}

.dm-button:hover {
    color: white;
    transform: translateY(-3px);
}

/* Services Section - Minimal Cards */
.services {
    padding: 8rem 0;
    background: #ffffff;
}

.services h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
    font-weight: 300;
    letter-spacing: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 4rem;
    margin-bottom: 6rem;
}

.service-card,
.process-card {
    background: white;
    padding: 3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
}

.service-card:hover,
.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: #e8e8e8;
}

.service-card h3,
.process-card h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 300;
}

.size-option {
    background: #fafafa;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.size-option:hover {
    border-left-color: #8b6f47;
    background: #f8f8f8;
}

.size-option h4 {
    color: #2c1810;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.price {
    color: #8b6f47;
    font-weight: 400;
    font-size: 1rem;
}

.add-ons {
    margin-top: 2rem;
}

.add-ons h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 300;
}

.add-ons ul {
    list-style: none;
    padding-left: 0;
}

.add-ons li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 2rem;
    font-weight: 300;
    transition: all 0.3s ease;
}

.add-ons li:hover {
    color: #8b6f47;
    padding-left: 2.5rem;
}

.add-ons li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #ccc;
    transition: all 0.3s ease;
}

.add-ons li:hover::before {
    color: #8b6f47;
}

.pricing-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.pricing-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
    font-weight: 300;
    color: #666;
    transition: all 0.3s ease;
}

.pricing-list li:hover {
    color: #8b6f47;
    padding-left: 2rem;
}

.pricing-list li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-weight: 400;
    transition: all 0.3s ease;
}

.pricing-list li:hover::before {
    transform: scale(1.1);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

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

.step-number {
    background: #2c1810;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    flex-shrink: 0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
    background: #8b6f47;
}

.step-content h4 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.step-content p {
    font-weight: 300;
    color: #666;
}

.examples-section {
    text-align: center;
}

.examples-section h3 {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 300;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.example-item {
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border-radius: 8px;
}

.example-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.example-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: grayscale(10%);
}

.example-item:hover .example-image {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.services-cta {
    text-align: center;
    margin-top: 4rem;
}

.services-cta .footer-dm-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #8b6f47;
    color: white;
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(139, 111, 71, 0.3);
}

.services-cta .footer-dm-button:hover {
    background: #2c1810;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 24, 16, 0.3);
}

/* Shop Section - Minimal Product Cards */
.shop {
    padding: 8rem 0;
    background-color: #f5f5f5;
}

.shop h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 300;
    letter-spacing: 2px;
}

.shop-intro {
    text-align: center;
    color: #666;
    margin-bottom: 4rem;
    font-size: 1.1rem;
    font-weight: 300;
}

/* Shop Category Cards */
.shop-category-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.category-card {
    background: #fefefe;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(44, 24, 16, 0.15);
    border-color: #8b6f47;
}

.category-icon {
    font-size: 2.5rem;
    color: #8b6f47;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    color: #2c1810;
}

.category-card h3 {
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    font-weight: 400;
    font-size: 1.3rem;
}

.category-card p {
    color: #666;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 24, 16, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
}

.category-card:hover .card-overlay {
    opacity: 1;
}

.shop-link-text {
    color: white;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Shop Tabs */
.shop-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: #f8f8f8;
    border: 1px solid #d0d0d0;
    color: #444;
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 25px;
}

.tab-btn:hover,
.tab-btn.active {
    background: #2c1810;
    color: white;
    border-color: #2c1810;
    transform: translateY(-2px);
}

.tab-btn:hover:not(.active) {
    background: #e8e8e8;
    color: #2c1810;
    border-color: #bbb;
    transform: translateY(-1px);
}

/* Shop Portfolio Grid */
.shop-portfolio {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.shop-item {
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.shop-item.hidden {
    display: none;
}

.shop-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

.shop-placeholder {
    height: 280px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    color: #999;
    transition: all 0.4s ease;
}

.shop-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 24, 16, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-item:hover .shop-overlay {
    opacity: 1;
}

.shop-item:hover {
    transform: translateY(-8px);
}

.shop-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 1rem 2rem;
    border: 1px solid white;
    transition: all 0.3s ease;
}

.shop-link:hover {
    background: white;
    color: #2c1810;
    transform: scale(1.05);
}

.shop-info {
    text-align: center;
}

.shop-info h3 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 300;
    font-size: 1.1rem;
}

.shop-info p {
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 300;
    font-size: 0.9rem;
}

.price {
    color: #8b6f47;
    font-weight: 400;
    font-size: 1rem;
}

.shop-cta {
    text-align: center;
}

.shop-cta p {
    margin-bottom: 2rem;
    color: #666;
    font-size: 1rem;
    font-weight: 300;
}

.redbubble-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #8b6f47;
    color: white;
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(139, 111, 71, 0.3);
}

.redbubble-button:hover {
    background: #2c1810;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 24, 16, 0.3);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.product-card {
    background: transparent;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-placeholder {
    height: 280px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    color: #999;
    transition: all 0.4s ease;
    margin-bottom: 1.5rem;
}

.product-card:hover .product-placeholder {
    background: #f0f0f0;
}

.product-info {
    padding: 0;
    text-align: center;
}

.product-info h3 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 300;
    font-size: 1.1rem;
}

.product-info p {
    color: #666;
    margin-bottom: 1rem;
    font-weight: 300;
    font-size: 0.9rem;
}

.price-range {
    color: #8b6f47;
    font-weight: 400;
    font-size: 1rem;
}

.order-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: transparent;
    color: #2c1810;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #2c1810;
    position: relative;
    overflow: hidden;
}

.order-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #2c1810;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.order-button:hover::before {
    left: 0;
}

.order-button:hover {
    color: white;
    transform: translateY(-3px);
}

/* About Section - Minimal Layout */
.about {
    padding: 8rem 0;
    background: #f9f7f4;
}

.about-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.about-image {
    text-align: center;
}

.artist-photo {
    width: 100%;
    max-width: 300px;
    height: 400px;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(30%);
}

.artist-photo:hover {
    transform: scale(1.02);
    filter: grayscale(0%);
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 300;
    letter-spacing: 1px;
}

.about-text p {
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.8;
    font-weight: 300;
}

.mission,
.artistic-style {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.mission:hover,
.artistic-style:hover {
    border-left-color: #8b6f47;
    transform: translateX(5px);
}

.mission h3,
.artistic-style h3 {
    color: #2c1810;
    margin-bottom: 1rem;
    font-weight: 300;
    font-size: 1.1rem;
}

.mission p,
.artistic-style p {
    margin-bottom: 0;
}

/* Contact Section - Clean Layout */
.contact {
    padding: 8rem 0;
    background-color: #fefefe;
}

.contact h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
    font-weight: 300;
    letter-spacing: 2px;
}

.contact-content {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-main {
    display: flex;
    gap: 4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: #fafafa;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
    min-width: 300px;
    max-width: 400px;
}

.contact-method:hover {
    background: #f8f8f8;
    border-left-color: #8b6f47;
    transform: translateY(-5px);
}

.contact-method i {
    font-size: 1.5rem;
    color: #8b6f47;
    margin-top: 0.5rem;
}

.contact-method h3 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.contact-method p {
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.contact-link {
    color: #2c1810;
    text-decoration: none;
    font-weight: 300;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.contact-link:hover {
    border-bottom-color: #2c1810;
}



/* Testimonials Section - Minimal Cards */
.testimonials {
    padding: 8rem 0;
    background: #fafafa;
}

.testimonials h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
    font-weight: 300;
    letter-spacing: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.testimonial-item {
    background: white;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
}

.testimonial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border-color: #e8e8e8;
}

.testimonial-content p {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-weight: 300;
}

.testimonial-author {
    color: #2c1810;
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Footer - Ultra Minimal */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Footer Logo Section - Centered at top */
.footer-logo-section {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo-section p {
    color: #999;
    font-weight: 300;
    margin-top: 0.5rem;
}

/* Footer Sections */
.footer-section {
    flex: 0 0 auto;
    min-width: 150px;
    text-align: center;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-weight: 300;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

/* Footer Logo Styles */
.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}

.footer-logo-img {
    width: 35px;
    height: 35px;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
    filter: brightness(1.2);
}

.footer-logo-img:hover {
    transform: scale(1.05);
    filter: brightness(1.4);
}

.footer-logo h3 {
    color: white;
    margin: 0;
    font-weight: 300;
    letter-spacing: 2px;
}

.footer-main h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.footer-main {
    flex: 1;
    min-width: 200px;
}

.footer-main h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.footer-main p {
    color: #999;
    font-weight: 300;
}

.footer-social {
    display: flex;
    align-items: flex-start;
    min-width: 50px;
}

.social-link {
    color: #999;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: white;
    transform: translateY(-2px);
}

.footer-cta {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-dm-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.footer-dm-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.footer-dm-button:hover::before {
    left: 0;
}

.footer-dm-button:hover {
    color: #1a1a1a;
    border-color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
    font-weight: 300;
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Optimized Mobile Grid Layouts */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    /* Enhanced Mobile Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(254, 254, 254, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(20px);
        padding: 3rem 0;
        gap: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        margin: 0 1rem;
    }

    .nav-link:hover {
        background-color: rgba(139, 111, 71, 0.1);
        transform: translateY(-2px);
    }

    .hamburger {
        display: flex;
        cursor: pointer;
        padding: 10px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .hamburger:hover {
        background-color: rgba(139, 111, 71, 0.1);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(5px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-5px) rotate(-45deg);
    }

    /* Enhanced Hero Section for Mobile */
    .hero {
        padding: 4rem 0;
        min-height: 85vh;
    }

    .hero-content {
        text-align: center;
        gap: 2rem;
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 2.8rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        letter-spacing: -0.5px;
    }

    .hero-text p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2.5rem;
        padding: 0 10px;
    }

    /* Enhanced CTA Button for Mobile */
    .cta-button {
        padding: 1.2rem 2rem;
        font-size: 1rem;
        min-height: 48px; /* Touch-friendly size */
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(44, 24, 16, 0.2);
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        touch-action: manipulation;
    }

    .cta-button:hover,
    .cta-button:active {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(44, 24, 16, 0.3);
    }
    
    .cta-button:active {
        transform: translateY(0);
        transition: transform 0.1s ease;
    }

    /* Compact Featured Grid */
    .featured-section {
        padding: 0 15px;
        margin: 3rem auto 0; /* Reduced from 4rem */
    }

    .featured-section h2 {
        margin-bottom: 2.5rem; /* Reduced from 4rem */
        font-size: 1.8rem;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem; /* Reduced from 2.5rem */
    }

    .featured-placeholder {
        height: 180px; /* Reduced from 220px */
        border-radius: 8px;
        margin-bottom: 1rem; /* Reduced from 1.5rem */
    }

    /* Compact Portfolio Grid */
    .portfolio {
        padding: 3rem 0; /* Reduced from 4rem */
    }

    .portfolio h2 {
        margin-bottom: 2.5rem; /* Reduced from 4rem */
        font-size: 1.8rem;
    }

    .portfolio-categories {
        justify-content: center;
        margin-bottom: 2rem; /* Reduced from 3rem */
        gap: 0.5rem; /* Reduced from 0.8rem */
        padding: 0 10px;
    }

    .category-btn {
        font-size: 0.85rem;
        padding: 0.6rem 1rem; /* More compact */
        border-radius: 20px;
        min-height: 40px;
        white-space: nowrap;
    }

    .portfolio-grid {
        padding: 0 15px;
        gap: 1rem;
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-item {
        aspect-ratio: 1;
    }

    .portfolio-image,
    .portfolio-placeholder {
        height: 100%;
        border-radius: 6px;
    }

    .portfolio-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 6px;
    }

    /* Compact Services Grid */
    .services {
        padding: 3rem 0; /* Reduced from 4rem */
    }

    .services h2 {
        margin-bottom: 2.5rem;
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem; /* Reduced from 2rem */
        padding: 0 15px;
    }

    .service-card {
        padding: 1.8rem 1.5rem; /* More compact */
        border-radius: 10px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .service-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Compact Shop Grid */
    .shop {
        padding: 3rem 0; /* Reduced from 4rem */
    }

    .shop h2 {
        margin-bottom: 2.5rem;
        font-size: 1.8rem;
    }

    .shop-category-cards {
        grid-template-columns: repeat(2, 1fr); /* 2 columns instead of 1 */
        gap: 1rem; /* Reduced from 1.5rem */
        padding: 0 15px;
    }

    .category-card {
        padding: 1.5rem; /* Reduced from 2rem */
        border-radius: 10px;
        min-height: 100px; /* Reduced from 120px */
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .category-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .category-card p {
        font-size: 0.85rem;
        margin: 0;
    }

    /* Compact About Grid */
    .about {
        padding: 3rem 0; /* Reduced from 4rem */
    }

    .about h2 {
        margin-bottom: 2.5rem;
        font-size: 1.8rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem; /* Reduced from 2.5rem */
        padding: 0 15px;
    }

    .about-text {
        order: 2;
    }

    .about-image {
        order: 1;
    }

    .about-image img {
        max-height: 250px; /* Limit image height */
        width: 100%;
        object-fit: cover;
        border-radius: 8px;
    }

    /* Compact Contact Grid */
    .contact {
        padding: 3rem 0; /* Reduced from 4rem */
    }

    .contact h2 {
        margin-bottom: 2.5rem;
        font-size: 1.8rem;
    }

    .contact-content {
        flex-direction: column;
        gap: 1.5rem; /* Reduced from 2rem */
        padding: 0 15px;
    }

    .contact-main {
        flex-direction: column;
        gap: 1.5rem; /* Reduced from 2rem */
    }

    .contact-method {
        min-width: unset;
        max-width: unset;
        padding: 1.5rem; /* Reduced from 2rem 1.5rem */
        border-radius: 10px;
        border-left: none;
        border-top: 3px solid transparent;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .contact-method:hover {
        transform: translateY(-3px);
        border-top-color: #8b6f47;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }

    .contact-method i {
        font-size: 1.8rem;
    }

    /* Compact Testimonials Grid */
    .testimonials {
        padding: 3rem 0;
    }

    .testimonials h2 {
        margin-bottom: 2.5rem;
        font-size: 1.8rem;
    }

    .testimonials-grid {
        gap: 1.5rem; /* Reduced from 2rem */
        padding: 0 15px;
    }

    .testimonial-item {
        padding: 1.8rem; /* Reduced from 2.5rem */
    }

    /* Enhanced Footer Mobile */
    .footer {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 0 20px;
    }
    
    .footer-logo-section {
        margin-bottom: 1.5rem;
        padding: 0 20px;
    }
    
    .footer-section {
        text-align: center;
        min-width: 100%;
    }
    
    .footer-links a:hover {
        transform: none;
    }
    
    .footer-section h4 {
        margin-bottom: 1rem;
        font-size: 0.95rem;
    }
    
    .footer-links li {
        margin-bottom: 0.6rem;
    }
    
    .footer-logo {
        gap: 0.6rem;
        justify-content: center;
    }
    
    .footer-logo-img {
        width: 32px;
        height: 32px;
    }
    
    .footer-logo h3 {
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        padding: 1.5rem 20px 0;
        margin: 0 20px;
    }

    /* Mobile Responsive Logo */
    .nav-logo {
        gap: 0.5rem;
    }
    
    .logo-img {
        width: 35px;
        height: 35px;
    }
    
    .nav-logo h2 {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
}

/* Extra Small Mobile Optimization */
@media (max-width: 480px) {
    /* Ultra-responsive typography */
    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero-text p {
        font-size: 1rem;
        padding: 0 5px;
    }

    /* Ultra-compact grids for small screens */
    .featured-grid {
        gap: 1rem;
    }

    .featured-placeholder {
        height: 160px; /* Even smaller */
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .portfolio-image,
    .portfolio-placeholder {
        border-radius: 4px;
    }

    .shop-category-cards {
        grid-template-columns: 1fr; /* Single column for very small screens */
        gap: 0.8rem;
    }

    .category-card {
        padding: 1.2rem;
        min-height: 80px;
    }

    .services-grid {
        gap: 1.2rem;
    }

    .service-card {
        padding: 1.5rem 1.2rem;
        margin: 0 10px;
    }

    .testimonials-grid {
        gap: 1.2rem;
        padding: 0 10px;
    }

    .testimonial-item {
        padding: 1.5rem;
    }

    /* Smaller logo for very small screens */
    .nav-logo h2 {
        font-size: 1.1rem;
    }
    
    .logo-img {
        width: 30px;
        height: 30px;
    }

    /* Enhanced touch targets */
    .category-btn {
        padding: 1rem 1.5rem;
        margin: 0.2rem;
    }

    .cta-button {
        padding: 1.3rem 2.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        display: block;
        text-align: center;
    }

    /* Improved spacing */
    .container {
        padding: 0 10px;
    }

    .nav-container {
        padding: 0 10px;
    }

    /* Compact section spacing */
    .hero,
    .portfolio,
    .services,
    .shop,
    .about,
    .contact,
    .testimonials {
        padding: 2.5rem 0; /* Further reduced */
    }

    .featured-section {
        margin: 2.5rem auto 0;
    }

    /* Compact headings */
    .portfolio h2,
    .services h2,
    .shop h2,
    .about h2,
    .contact h2,
    .testimonials h2,
    .featured-section h2 {
        margin-bottom: 2rem;
        font-size: 1.6rem;
    }
    
    .footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-content {
        padding: 0 15px;
        gap: 1rem;
    }
    
    .footer-logo-section {
        margin-bottom: 1rem;
        padding: 0 15px;
    }
    
    .footer-logo-img {
        width: 28px;
        height: 28px;
    }
    
    .footer-logo h3 {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .footer-section h4 {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        padding: 1rem 15px 0;
        margin: 0 15px;
        font-size: 0.8rem;
    }
}

/* Touch-friendly enhancements for all mobile devices */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .cta-button:hover,
    .service-card:hover,
    .contact-method:hover,
    .featured-item:hover {
        transform: none;
    }

    /* Add active states for touch */
    .cta-button:active {
        transform: scale(0.98);
    }

    .service-card:active,
    .contact-method:active {
        transform: scale(0.99);
    }

    /* Larger touch targets */
    .nav-link,
    .category-btn,
    .cta-button {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Hide portfolio items by default for filtering */
.portfolio-item.hidden {
    display: none;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Focus states for accessibility */
.cta-button:focus,
.dm-button:focus,
.order-button:focus,
.footer-dm-button:focus {
    outline: 2px solid #8b6f47;
    outline-offset: 2px;
}

.nav-link:focus {
    outline: 1px solid #8b6f47;
    outline-offset: 2px;
}

/* Particle Animation Styles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(179, 130, 63, 0.6);
    border-radius: 50%;
    animation: float 15s infinite linear;
    opacity: 1;
}

.particle:nth-child(odd) {
    background: rgba(150, 93, 70, 0.4);
    animation-duration: 20s;
}

.particle:nth-child(3n) {
    background: rgba(218, 151, 112, 0.8);
    animation-duration: 12s;
}

.particle:nth-child(4n) {
    background: rgba(139, 111, 71, 0.3);
    animation-duration: 18s;
}

.particle:nth-child(5n) {
    background: rgba(44, 24, 16, 0.2);
    animation-duration: 25s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px) rotate(360deg);
        opacity: 1;
    }
}

@keyframes floatLeft {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(-100px) rotate(-360deg);
        opacity: 1;
    }
}

@keyframes scatter {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg) scale(0.8);
        opacity: 1;
    }
    20% {
        opacity: 1;
        transform: translateY(80vh) translateX(20px) rotate(90deg) scale(1);
    }
    50% {
        transform: translateY(50vh) translateX(-30px) rotate(180deg) scale(1.2);
    }
    80% {
        transform: translateY(20vh) translateX(50px) rotate(270deg) scale(0.8);
    }
    100% {
        transform: translateY(-20vh) translateX(-20px) rotate(360deg) scale(0.8);
        opacity: 1;
    }
}

/* Section-specific particle styles */
.hero {
    position: relative;
}

.hero .particles .particle {
    animation-name: float;
}

.hero .particles .particle:nth-child(even) {
    animation-name: floatLeft;
}

.about {
    position: relative;
}

.about .particles .particle {
    background: rgba(139, 111, 71, 0.4);
    animation-name: scatter;
}

.about .particles .particle:nth-child(3n) {
    background: rgba(44, 24, 16, 0.3);
}

.portfolio {
    position: relative;
}

.portfolio .particles .particle {
    background: rgba(254, 254, 254, 0.7);
    animation-name: float;
}

.portfolio .particles .particle:nth-child(odd) {
    background: rgba(139, 111, 71, 0.5);
    animation-name: floatLeft;
}

.services {
    position: relative;
}

.services .particles .particle {
    background: rgba(139, 111, 71, 0.3);
    animation-name: scatter;
}

.services .particles .particle:nth-child(even) {
    background: rgba(44, 24, 16, 0.2);
    animation-name: float;
}

.shop {
    position: relative;
}

.shop .particles .particle {
    background: rgba(139, 111, 71, 0.4);
    animation-name: floatLeft;
}

.shop .particles .particle:nth-child(3n) {
    background: rgba(254, 254, 254, 0.6);
    animation-name: scatter;
}

.contact {
    position: relative;
}

.contact .particles .particle {
    background: rgba(44, 24, 16, 0.3);
    animation-name: float;
}

.contact .particles .particle:nth-child(odd) {
    background: rgba(139, 111, 71, 0.4);
    animation-name: floatLeft;
}

/* Responsive particle sizes */
.particle {
    width: 4px;
    height: 4px;
}

.particle:nth-child(2n) {
    width: 6px;
    height: 6px;
}

.particle:nth-child(3n) {
    width: 3px;
    height: 3px;
}

.particle:nth-child(4n) {
    width: 8px;
    height: 8px;
}

.particle:nth-child(5n) {
    width: 2px;
    height: 2px;
}

/* Reduce particles on mobile */
@media (max-width: 768px) {
    .particle:nth-child(n+15) {
        display: none;
    }
}

/* Page Header Styles */
.page-header {
    margin-top: 80px;
    padding: 6rem 0 4rem 0;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f2ed 100%);
    text-align: center;
    border-bottom: 1px solid rgba(44, 24, 16, 0.1);
}

/* Portfolio Page Header with O13.jpg background */
body.portfolio-page .page-header {
    background: linear-gradient(rgba(250, 248, 245, 0.9), rgba(245, 242, 237, 0.9)), url('images/other artwork/O13.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    min-height: 250px;
    border-bottom: none;
    padding: 4rem 0 3rem 0;
}

/* Activities Page Header with O10.jpg background */
body.activities-page .page-header {
    background: linear-gradient(rgba(250, 248, 245, 0.9), rgba(245, 242, 237, 0.9)), url('images/other artwork/O10.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    min-height: 250px;
    border-bottom: none;
    padding: 4rem 0 3rem 0;
}

/* Full Page Particles for Portfolio and Activities */
body.portfolio-page,
body.activities-page {
    position: relative;
}

body.portfolio-page .particles,
body.activities-page .particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

body.portfolio-page .particles .particle,
body.activities-page .particles .particle {
    background: rgba(254, 254, 254, 0.7);
    animation-name: float;
}

body.portfolio-page .particles .particle:nth-child(odd),
body.activities-page .particles .particle:nth-child(odd) {
    background: rgba(139, 111, 71, 0.5);
    animation-name: floatLeft;
}

body.portfolio-page .particles .particle:nth-child(3n),
body.activities-page .particles .particle:nth-child(3n) {
    background: rgba(218, 151, 112, 0.6);
    animation-name: scatter;
}

body.portfolio-page .particles .particle:nth-child(4n),
body.activities-page .particles .particle:nth-child(4n) {
    background: rgba(179, 130, 63, 0.4);
    animation-name: float;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 300;
    letter-spacing: -1px;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Featured Grid Styles */
.portfolio-preview {
    padding: 6rem 0;
    background: #fefefe;
}

.portfolio-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c1810;
    font-weight: 400;
    letter-spacing: 1px;
}

.portfolio-preview p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.featured-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    box-shadow: 0 4px 20px rgba(44, 24, 16, 0.08);
}

.featured-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(44, 24, 16, 0.15);
}

.featured-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.featured-item:hover .featured-image {
    transform: scale(1.05);
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-item:hover .featured-overlay {
    transform: translateY(0);
}

.featured-overlay h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.featured-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Activities Page Styles */
.creative-process {
    padding: 6rem 0;
    background: #faf8f5;
}

.process-timeline {
    max-width: 800px;
    margin: 4rem auto 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #8b6f47, #b3823f);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b6f47, #b3823f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    margin: 0 2rem;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(44, 24, 16, 0.08);
    max-width: 300px;
}

.timeline-content h3 {
    margin-bottom: 1rem;
    color: #2c1810;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

.workshops-events {
    padding: 6rem 0;
    background: #fefefe;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.activity-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(44, 24, 16, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(44, 24, 16, 0.15);
}

.activity-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b6f47, #b3823f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.activity-card h3 {
    margin-bottom: 1rem;
    color: #2c1810;
}

.activity-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.activity-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #8b6f47;
    font-size: 0.9rem;
}

.detail-item i {
    color: #b3823f;
}

.community-involvement {
    padding: 6rem 0;
    background: #faf8f5;
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.community-list {
    list-style: none;
    margin-top: 1.5rem;
}

.community-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #666;
}

.community-list i {
    color: #8b6f47;
    font-size: 1.1rem;
}

.community-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 300px;
    height: 200px;
    background: linear-gradient(135deg, #f5f2ed, #faf8f5);
    border: 2px dashed #8b6f47;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #8b6f47;
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.upcoming-events {
    padding: 6rem 0;
    background: #fefefe;
}

.events-list {
    margin-top: 3rem;
}

.event-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(44, 24, 16, 0.08);
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(44, 24, 16, 0.12);
}

.event-date {
    text-align: center;
    background: linear-gradient(135deg, #8b6f47, #b3823f);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    min-width: 80px;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-date .day {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    margin-top: 0.5rem;
}

.event-details h3 {
    margin-bottom: 1rem;
    color: #2c1810;
}

.event-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #8b6f47;
    font-size: 0.9rem;
}

.event-meta i {
    color: #b3823f;
}

.events-cta, .commission-cta, .collaboration-cta {
    text-align: center;
    margin-top: 3rem;
}

.events-cta p, .commission-cta p {
    margin-bottom: 1.5rem;
    color: #666;
}

.collaboration {
    padding: 6rem 0;
    background: #faf8f5;
}

.collaboration-content {
    text-align: center;
    margin-top: 3rem;
}

.collaboration-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.collaboration-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.collab-option {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(44, 24, 16, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.collab-option:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(44, 24, 16, 0.12);
}

.collab-option i {
    font-size: 2.5rem;
    color: #8b6f47;
    margin-bottom: 1rem;
}

.collab-option h3 {
    margin-bottom: 1rem;
    color: #2c1810;
}

.collab-option p {
    color: #666;
    font-size: 0.9rem;
}

/* Commission Examples Section */
.commission-examples {
    padding: 6rem 0;
    background: #faf8f5;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.example-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    box-shadow: 0 4px 20px rgba(44, 24, 16, 0.08);
}

.example-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(44, 24, 16, 0.15);
}

.example-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.example-item:hover .example-image {
    transform: scale(1.05);
}

.example-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.example-item:hover .example-overlay {
    transform: translateY(0);
}

.example-overlay h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* New Gallery Sections for Activities */
.japan-festival,
.creative-workshops,
.local-markets {
    padding: 4rem 0;
    background: #fff;
}

.japan-festival:nth-child(even),
.creative-workshops:nth-child(even),
.local-markets:nth-child(even) {
    background: #f8f9fa;
}

.japan-festival h2,
.creative-workshops h2,
.local-markets h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 2.5rem;
}

.japan-festival p,
.creative-workshops p,
.local-markets p {
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Festival Gallery (3 columns) */
.festival-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Workshop and Market Gallery (4 columns) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* Responsive Design for New Galleries */
@media (max-width: 768px) {
    .festival-gallery {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .festival-gallery .gallery-item:last-child {
        grid-column: 1 / -1;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Make last image in Other Artwork section span full width on mobile */
    .other-artwork .gallery-grid .gallery-item:last-child {
        grid-column: 1 / -1;
    }
    
    .gallery-image {
        height: 180px;
    }
    
    .japan-festival h2,
    .creative-workshops h2,
    .local-markets h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .japan-festival p,
    .creative-workshops p,
    .local-markets p {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .japan-festival,
    .creative-workshops,
    .local-markets {
        padding: 2rem 0;
    }
    
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-image {
        height: 150px;
    }
    
    .japan-festival h2,
    .creative-workshops h2,
    .local-markets h2 {
        font-size: 1.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .gallery-item {
        border-radius: 8px;
    }
}

.example-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Active navigation link */
.nav-link.active {
    color: #8b6f47;
    font-weight: 500;
}

.nav-link.active::after {
    width: 100%;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .portfolio-preview h2 {
        font-size: 2rem;
    }
    
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .featured-grid .featured-item:only-child,
    .featured-grid .featured-item:nth-child(odd):last-child {
        grid-column: 1 / -1;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .timeline-icon {
        position: absolute;
        left: 0;
        margin: 0;
    }
    
    .timeline-content {
        max-width: none;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .community-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .event-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .event-date {
        align-self: flex-start;
    }
    
    .collaboration-options {
        grid-template-columns: 1fr;
    }
    
    .examples-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .examples-grid .example-item:only-child,
    .examples-grid .example-item:nth-child(odd):last-child {
        grid-column: 1 / -1;
    }
}

/* Image Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.modal.show {
    display: flex;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 85vw;
    max-height: 85vh;
    margin: 0;
    padding: 0;
}

.modal-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.modal-caption {
    margin: 15px 0;
    text-align: center;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 300;
}

.close {
    position: fixed;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1002;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1;
}

.close:hover,
.close:focus {
    color: #ff6b6b;
    transform: scale(1.1);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
    text-decoration: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Make gallery images clickable */
.gallery-image {
    cursor: pointer;
}

/* Portfolio Page Styles */
.portraits-section,
.other-artwork {
    padding: 4rem 0;
    background: #fafaf8;
}

.portraits-section:nth-child(even),
.other-artwork:nth-child(even) {
    background: #fff;
}

.portraits-section h2,
.other-artwork h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8b6f47;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.portraits-section p,
.other-artwork p {
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Commission Modal Styles */
.commission-modal-content {
    position: relative;
    margin: 3% auto;
    max-width: 500px;
    max-height: 85vh;
    overflow-y: auto;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 24px;
    padding: 20px;
    width: 90%;
    height: auto;
    display: block;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12), 0 12px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.commission-form-container {
    padding: 2.5rem 2rem;
    background: transparent;
}

.commission-form-container h2 {
    color: #2a2a2a;
    margin-bottom: 2.5rem;
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 2rem;
    font-weight: 300;
    position: relative;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.commission-form-container h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #8b6f47, #a0845c);
    border-radius: 1px;
    opacity: 0.8;
}

.commission-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.form-group label {
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: #555;
    font-size: 0.85rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1.2rem;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.8);
    font-family: inherit;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b6f47;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.08), 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.pricing-section {
    background: rgba(248, 246, 243, 0.4);
    padding: 1.8rem;
    border-radius: 20px;
    margin: 2rem 0;
    border: 1px solid rgba(232, 228, 220, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(5px);
}

.pricing-section h3 {
    color: #6b5b47;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: -0.3px;
}

.price-category {
    margin-bottom: 1.2rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 1.3rem;
    border-radius: 16px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

.price-category:last-child {
    margin-bottom: 0;
}

.price-category h4 {
    color: #6b5b47;
    margin-bottom: 0.8rem;
    font-weight: 500;
    font-size: 1.1rem;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(240, 240, 240, 0.6);
    letter-spacing: 0.3px;
}

.price-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-category li {
    padding: 0.6rem 0;
    color: #666;
    border-bottom: 1px solid rgba(245, 245, 245, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.4;
}

.price-category li:last-child {
    border-bottom: none;
}

.price-category li:before {
    content: '•';
    color: #8b6f47;
    font-weight: bold;
    margin-right: 0.5rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(224, 224, 224, 0.3);
}

.form-actions .cta-button {
    background: linear-gradient(135deg, #8b6f47, #a0845c);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 25px rgba(139, 111, 71, 0.25);
    min-width: 130px;
    letter-spacing: 0.3px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-actions .cta-button:hover {
    background: linear-gradient(135deg, #a0845c, #b8956f);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 111, 71, 0.35);
    filter: brightness(1.05);
}

.cancel-btn {
    background: rgba(248, 248, 248, 0.8);
    color: #666;
    border: 1px solid rgba(224, 224, 224, 0.5);
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 130px;
    letter-spacing: 0.3px;
    backdrop-filter: blur(5px);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cancel-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(139, 111, 71, 0.6);
    color: #8b6f47;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Commission modal close button */
.commission-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #666;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1002;
    transition: color 0.3s ease;
}

.commission-close:hover,
.commission-close:focus {
    color: #333;
    text-decoration: none;
}

/* Mobile responsive for modal */
@media (max-width: 768px) {
    
    .modal-image {
        max-height: 70vh;
        max-width: 95%;
        width: auto;
        height: auto;
        object-fit: contain;
        object-position: center;
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
    
    .close {
        top: 15px;
        right: 15px;
        font-size: 35px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        line-height: 1;
    }
    
    .modal-caption {
        font-size: 0.9rem;
        margin: 15px 10px;
        padding: 0 10px;
    }
    
    /* Commission modal responsive */
    .commission-modal-content {
        width: 90%;
        margin: 3% auto;
        max-height: 75vh;
        border-radius: 15px;
        padding: 15px;
    }
    
    .commission-form-container {
        padding: 1rem;
    }
    
    .commission-form-container h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 8px;
    }
    
    .pricing-section {
        padding: 1.2rem;
        margin: 1.5rem 0;
        border-radius: 18px;
    }
    
    .pricing-section h3 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    
    .price-category {
        padding: 1rem;
        border-radius: 14px;
        margin-bottom: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 1.5rem;
        padding-top: 1.2rem;
    }
    
    .form-actions button {
        width: 100%;
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
        border-radius: 22px;
        min-height: 50px;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        touch-action: manipulation;
        transition: all 0.2s ease;
    }
    
    .form-actions button:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .form-actions .cta-button {
        order: 1;
    }
    
    .cancel-btn {
        order: 2;
    }
    
    .commission-close {
        position: fixed;
        top: 15px;
        right: 15px;
        font-size: 30px;
        color: #666;
        text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
        line-height: 1;
        z-index: 1002;
    }
    
    /* Mobile responsive for galleries */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        justify-items: center;
        padding: 0 1rem;
    }
    
    .gallery-item {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .gallery-image {
        border-radius: 8px;
        width: 100%;
        height: 180px;
        object-fit: cover;
        object-position: center;
    }
    
    /* Portfolio sections mobile */
    .portraits-section h2,
    .other-artwork h2 {
        font-size: 2rem;
    }
    
    .portraits-section p,
    .other-artwork p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .portraits-section,
    .other-artwork {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    
    .modal-image {
        max-height: 65vh;
        max-width: 98%;
        border-radius: 10px;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
    }
    
    .close {
        font-size: 30px;
        top: 10px;
        right: 10px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    
    .modal-caption {
        font-size: 0.8rem;
        margin: 10px 5px;
        padding: 0 5px;
    }
    
    .commission-modal-content {
        width: 95%;
        margin: 2% auto;
        max-height: 80vh;
        border-radius: 12px;
        padding: 12px;
    }
    
    .commission-form-container {
        padding: 0.8rem;
    }
    
    .commission-form-container h2 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        border-radius: 6px;
    }
    
    .pricing-section {
        padding: 1rem;
        margin: 1rem 0;
        border-radius: 16px;
    }
    
    .pricing-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .price-category {
        padding: 0.8rem;
        border-radius: 12px;
        margin-bottom: 0.8rem;
    }
    
    .price-category h4 {
        font-size: 1rem;
    }
    
    .price-category li {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 1.2rem;
        padding-top: 1rem;
    }
    
    .form-actions button {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
        min-height: 45px;
        border-radius: 20px;
    }
    
    .form-actions .cta-button,
    .cancel-btn {
        width: 100%;
        order: unset;
    }
    
    .commission-close {
        width: 35px;
        height: 35px;
        font-size: 25px;
        top: 8px;
        right: 10px;
    }
    
    .gallery-grid {
        padding: 0 0.5rem;
        gap: 0.25rem;
    }
    
    .gallery-image {
        height: 150px;
    }
    
    .portraits-section h2,
    .other-artwork h2 {
        font-size: 1.8rem;
    }
}