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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #3C2415;
    background-color: #FAF8F5;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 600;
    color: #2D1810;
    margin-bottom: 0.5em;
    font-family: 'Crimson Text', serif;
}

h1 {
    font-size: 3.5rem;
    font-weight: 600;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.875rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: #5D4037;
    font-size: 1.1rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Color Variables */
:root {
    --terracotta: #C65D47;
    --terracotta-light: #D4755F;
    --terracotta-dark: #A34631;
    --clay-beige: #D4B896;
    --clay-dark: #8D6E63;
    --earth-brown: #5D4037;
    --warm-cream: #FAF8F5;
    --ceramic-white: #FEFEFE;
    --sage-green: #8BC34A;
    --burnt-orange: #FF6F42;
    --deep-earth: #3E2723;
    --soft-shadow: rgba(93, 64, 55, 0.15);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--terracotta), var(--terracotta-light));
    color: white;
    box-shadow: 0 8px 25px rgba(198, 93, 71, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(198, 93, 71, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--terracotta);
    border: 2px solid var(--terracotta);
}

.btn-secondary:hover {
    background: var(--terracotta);
    color: white;
    transform: translateY(-2px);
}

/* Logo styling */
.logo-image {
    height: 50px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-image:hover {
    opacity: 0.8;
}

.footer-logo-img {
    height: 80px;
    margin-bottom: 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--clay-beige);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo .logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
}

.logo-text {
    font-family: 'Crimson Text', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--terracotta);
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.875rem;
    color: var(--clay-dark);
    margin-top: -0.25rem;
    letter-spacing: 0.1em;
}

.heart-signature {
    font-size: 0.75rem;
    color: var(--terracotta);
    margin-top: 0.25rem;
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--earth-brown);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: width 0.3s ease;
}

.nav-link.disabled {
    color: #999;
    cursor: not-allowed;
    opacity: 0.6;
}

.disabled-link {
    color: #999;
    cursor: not-allowed;
    opacity: 0.6;
}

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

.nav-link:hover {
    color: var(--terracotta);
}

.contact-btn {
    background: var(--terracotta);
    color: white !important;
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-btn::after {
    display: none;
}

.contact-btn:hover {
    background: var(--terracotta-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(198, 93, 71, 0.3);
}

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

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--terracotta);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #FAF8F5 0%, #F5F1EB 50%, #EDE7DE 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23D4B896" fill-opacity="0.1"><circle cx="30" cy="30" r="2"/></g></g></svg>');
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.badge-text {
    background: linear-gradient(135deg, var(--sage-green), #66BB6A);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(139, 195, 74, 0.3);
}

.hero-title {
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    line-height: 1.1;
    font-family: 'Crimson Text', serif;
}

.highlight {
    background: linear-gradient(135deg, var(--terracotta), var(--burnt-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    color: var(--earth-brown);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease 0.2s both;
    position: relative;
}

.pottery-showcase {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.showcase-pottery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    filter: sepia(0.1) contrast(1.1) brightness(0.9);
    transition: transform 0.3s ease;
}

.showcase-piece:hover .showcase-pottery-img {
    transform: scale(1.05);
}

.showcase-piece {
    background: var(--ceramic-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px var(--soft-shadow);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.showcase-piece::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(212, 184, 150, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

.piece-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1rem;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
}

.clay-texture {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--clay-beige), var(--terracotta-light));
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.clay-texture::after {
    content: '🏺';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    opacity: 0.7;
}

.piece-caption {
    font-style: italic;
    color: var(--clay-dark);
    font-size: 0.95rem;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.clay-element {
    position: absolute;
    background: var(--clay-beige);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s infinite ease-in-out;
}

.element-1 {
    width: 20px;
    height: 20px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 15px;
    height: 15px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    width: 25px;
    height: 25px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--clay-dark);
    max-width: 600px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    background: var(--clay-beige);
    color: var(--earth-brown);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

/* Story Section */
.story-section {
    padding: 6rem 0;
    background: var(--ceramic-white);
    position: relative;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.story-lead {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--terracotta);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.story-timeline {
    margin-top: 2rem;
}

.timeline-item {
    position: relative;
    padding: 1.5rem 0 1.5rem 3rem;
    border-left: 3px solid var(--clay-beige);
}

.timeline-item:last-child {
    border-left: 3px solid transparent;
}

.timeline-marker {
    position: absolute;
    left: -7px;
    top: 2rem;
    width: 12px;
    height: 12px;
    background: var(--terracotta);
    border-radius: 50%;
    border: 3px solid var(--ceramic-white);
    box-shadow: 0 0 0 3px var(--clay-beige);
}

.timeline-content h3 {
    color: var(--terracotta);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-family: 'Crimson Text', serif;
}

.timeline-content p {
    color: var(--earth-brown);
    line-height: 1.6;
}

.story-visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.artist-photo {
    text-align: center;
    position: relative;
}

.artist-photo-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    filter: sepia(0.2) contrast(1.1) brightness(0.95);
}

.photo-frame {
    background: var(--ceramic-white);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 30px var(--soft-shadow);
    margin-bottom: 1rem;
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.photo-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.photo-placeholder {
    width: 250px;
    height: 300px;
    background: linear-gradient(135deg, var(--clay-beige), var(--terracotta-light));
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--ceramic-white);
}

.photo-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.photo-placeholder p {
    font-weight: 500;
    margin: 0;
}

.photo-caption {
    font-style: italic;
    color: var(--clay-dark);
    max-width: 280px;
    margin: 0 auto;
}

.photo-caption p {
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
}

/* Gallery Preview */
.gallery-preview {
    padding: 6rem 0;
    background: linear-gradient(135deg, #F5F1EB 0%, #EDE7DE 100%);
}

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

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
}

.gallery-item.featured {
    grid-column: span 2;
}

.item-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    position: relative;
    transition: transform 0.3s ease;
}

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

.piggy { background: linear-gradient(135deg, #FFB3D1, #FF8FA3); }
.octopus { background: linear-gradient(135deg, #B39DDB, #9575CD); }
.fish { background: linear-gradient(135deg, #81C784, #66BB6A); }
.basket { background: linear-gradient(135deg, #FFCC02, #FFC107); }
.sail { background: linear-gradient(135deg, #4FC3F7, #29B6F6); }
.bowl { background: linear-gradient(135deg, var(--clay-beige), var(--terracotta-light)); }

/* Real image styling */
.gallery-item img,
.gallery-piece img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    transition: transform 0.3s ease;
    filter: brightness(0.9) contrast(1.1) saturate(1.1);
}

.gallery-item:hover img,
.gallery-piece:hover img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.2) saturate(1.2);
}

.item-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.3s ease;
}

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

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

.item-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* M2 Logo styling */
.m2-logo-small {
    height: 24px;
    width: auto;
    filter: brightness(1.2);
}

.m2-logo-large {
    height: 80px;
    width: auto;
    filter: brightness(1.1) drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.heart-stamp {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--terracotta);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

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

/* Philosophy Section */
.philosophy-section {
    padding: 6rem 0;
    background: var(--ceramic-white);
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.philosophy-lead {
    font-size: 1.25rem;
    color: var(--terracotta);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.philosophy-text p {
    color: var(--earth-brown);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.signature-explanation {
    background: var(--warm-cream);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--terracotta);
    margin-top: 2rem;
}

.signature-explanation h3 {
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.philosophy-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.signature-showcase {
    text-align: center;
    background: var(--ceramic-white);
    padding: 3rem;
    border-radius: 50%;
    box-shadow: 0 20px 40px var(--soft-shadow);
    width: 250px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.signature-showcase::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--clay-beige);
    border-radius: 50%;
    opacity: 0.5;
}

.signature-large {
    font-size: 3rem;
    color: var(--terracotta);
    margin-bottom: 1rem;
    font-family: 'Crimson Text', serif;
}

.signature-showcase p {
    color: var(--clay-dark);
    font-size: 0.875rem;
    margin: 0;
    font-style: italic;
}

/* FND Section */
.fnd-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--clay-beige) 0%, var(--clay-dark) 100%);
    color: white;
}

.fnd-header {
    text-align: center;
    margin-bottom: 3rem;
}

.fnd-header h2 {
    color: white;
    margin-bottom: 1rem;
}

.fnd-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.fnd-explanation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.fnd-text h3,
.fnd-support h3 {
    color: white;
    margin-bottom: 1rem;
}

.fnd-text p,
.fnd-support p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.support-link {
    margin-top: 2rem;
}

.fnd-section .btn-secondary {
    border-color: white;
    color: white;
}

.fnd-section .btn-secondary:hover {
    background: white;
    color: var(--clay-dark);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--warm-cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.method-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.method-info h4 {
    margin-bottom: 0.25rem;
    color: var(--terracotta);
}

.method-info p {
    color: var(--clay-dark);
    margin: 0;
}

/* Form Styles */
.contact-form {
    background: var(--ceramic-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 30px var(--soft-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--earth-brown);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--clay-beige);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background: var(--warm-cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--terracotta);
    background: white;
    box-shadow: 0 0 0 3px rgba(198, 93, 71, 0.1);
}

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

.form-submit {
    width: 100%;
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* Captcha styling */
.captcha-group {
    background: #f8f6f3;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #e0d5c7;
    margin-top: 1rem;
}

.captcha-group label {
    font-weight: 600;
    color: var(--earth-brown);
}

.captcha-group #captcha-question {
    font-weight: bold;
    color: var(--terracotta);
    font-size: 1.2rem;
}

.captcha-help {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Footer */
.footer {
    background: var(--deep-earth);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-main {
    max-width: 300px;
}

.footer-logo .logo .logo-text {
    color: var(--terracotta-light);
    font-size: 1.5rem;
}

.footer-logo .logo .logo-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo .logo .heart-signature {
    color: var(--terracotta-light);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-top: 1rem;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--terracotta-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.875rem;
}

.footer-heart p {
    color: var(--terracotta-light);
    margin: 0;
    font-style: italic;
}

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

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

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container,
    .story-content,
    .philosophy-content,
    .fnd-explanation,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .gallery-item.featured {
        grid-column: span 1;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(250, 248, 245, 0.98);
        backdrop-filter: blur(15px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--soft-shadow);
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .timeline-item {
        padding-left: 2rem;
    }
    
    .timeline-marker {
        left: -5px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .photo-placeholder {
        width: 200px;
        height: 240px;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .signature-showcase {
        width: 200px;
        height: 200px;
        padding: 2rem;
    }
    
    .signature-large {
        font-size: 2rem;
    }
}