/* ===== CSS CUSTOM PROPERTIES (VARIABLES) ===== */
:root {
    --primary-color: #8B6F3D; /* Darker gold for WCAG AA contrast (4.5:1 with white) */
    --primary-hover: #8B6914;
    --text-color: #36454F;
    --text-muted: #666666;
    --background-light: #FDFBF6;
    --background-accent: #F8F6F0;
    --background-gallery: #EAEAEA;
    --border-radius: 12px;
    --transition-speed: 0.3s;
    --shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-light);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--primary-hover);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 1rem;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.error-message.show {
    display: block;
}

/* ===== NAVIGATION (MOBILE-FIRST) ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(253, 251, 246, 0.98);
    border-bottom: 1px solid rgba(176, 141, 87, 0.1);
    z-index: 1000;
    padding: 0.5rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--background-light);
    border-top: 1px solid rgba(176, 141, 87, 0.1);
    padding: 1rem;
}

.nav-menu.show {
    display: flex;
}

.nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(176, 141, 87, 0.1);
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:last-child {
    border-bottom: none;
}

.nav-link-active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* ===== HERO SECTION (MOBILE-FIRST) ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 5rem 0 2rem;
    background: linear-gradient(135deg, var(--background-light) 0%, #F5F1E8 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    gap: 2rem;
    align-items: center;
}

.hero-content {
    text-align: center;
    order: 2;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 400;
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(176, 141, 87, 0.3);
}

.cta-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(176, 141, 87, 0.4);
}

.hero-image {
    order: 1;
    text-align: center;
}

.hero-image img {
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===== GALLERY SECTION (MOBILE-FIRST) ===== */
.gallery {
    padding: 4rem 0;
    background-color: var(--background-gallery);
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.gallery-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 4px;
    transform: translateY(-5px);
}

.gallery-item:active {
    transform: translateY(-3px);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.gallery-info p {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.gallery-info p.medium {
    font-size: 0.8rem;
    opacity: 0.8;
    font-style: italic;
}

/* ===== ABOUT SECTION (MOBILE-FIRST) ===== */
.about {
    padding: 4rem 0;
}

.about-layout {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content {
    text-align: center;
}

.about-intro {
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #555;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

.artist-quote {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary-color);
    text-align: center;
    margin: 2rem 0;
    padding: 0 2rem;
    position: relative;
}

.artist-quote::before {
    content: '"';
    font-size: 4rem;
    color: rgba(176, 141, 87, 0.3);
    position: absolute;
    top: -1rem;
    left: 0;
    font-family: serif;
}

/* ===== PROCESS SECTION (MOBILE-FIRST) ===== */
.process {
    padding: 4rem 0;
    background-color: #F8F6F0;
}

.process-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.process-steps {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: start;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: 3rem 0;
    text-align: center;
}

.pricing-intro {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    max-width: 800px;
    margin: 0 auto 2rem;
}

.pricing-card {
    background: white;
    padding: 2rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(176, 141, 87, 0.2);
}

.pricing-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.price {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
}

.pricing-note {
    font-size: 0.875rem;
    color: #888;
    font-style: italic;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 3rem 0;
    background-color: var(--background-gallery);
}

.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 250px;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial.active {
    display: block;
    opacity: 1;
}

.testimonial p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #555;
}

.testimonial cite {
    font-style: normal;
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background-color: transparent;
    cursor: pointer;
    transition: var(--transition-speed) ease;
}

.testimonial-dot.active {
    background-color: var(--primary-color);
}

.testimonial-dot:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.testimonial-dot:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===== DEPOSIT CTA SECTION ===== */
.deposit-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--background-accent) 0%, var(--background-light) 100%);
}

.deposit-cta-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.deposit-cta-box {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.deposit-cta-content {
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.deposit-cta-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.deposit-details {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
}

.cta-button-large {
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
    margin-bottom: 1.5rem;
}

.deposit-note {
    font-size: 0.875rem;
    color: #666;
    font-style: italic;
}

.deposit-pricing-reminder {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-color);
}

.pricing-reminder-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-align: center;
}

.pricing-reminder-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-reminder-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--background-gallery);
    color: #555;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-reminder-list li:last-child {
    border-bottom: none;
}

.pricing-reminder-note {
    text-align: center;
    font-size: 0.875rem;
    color: #888;
    font-style: italic;
    margin-top: 1rem;
}

.deposit-alternate {
    text-align: center;
    margin-top: 2rem;
    font-size: 1rem;
    color: #666;
}

.inline-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.inline-link:hover {
    color: var(--primary-hover);
}

/* ===== CONTACT SECTION (MOBILE-FIRST) ===== */
.contact {
    padding: 4rem 0;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-layout {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-footer-note {
    text-align: center;
    font-size: 0.875rem;
    color: #666;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--background-gallery);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--background-gallery);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.field-helper-text {
    font-size: 0.875rem;
    color: #666;
    margin: 0.5rem 0;
    line-height: 1.4;
}

.file-upload-area {
    position: relative;
    margin-top: 0.5rem;
}

.file-upload-area input[type="file"] {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    border: 2px dashed var(--primary-color);
    border-radius: 8px;
    background-color: var(--background-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-label:hover {
    border-color: var(--primary-hover);
    background-color: #F8F6F0;
}

.file-upload-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.file-upload-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.file-upload-subtext {
    font-size: 0.875rem;
    color: #888;
}

.file-preview-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.file-preview-item {
    position: relative;
    border: 2px solid var(--background-gallery);
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
}

.file-preview-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.file-preview-info {
    padding: 0.5rem;
    background-color: #F8F6F0;
}

.file-preview-name {
    font-size: 0.75rem;
    color: var(--text-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.25rem;
}

.file-preview-size {
    font-size: 0.7rem;
    color: #888;
}

.file-remove-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.file-remove-btn:hover {
    background-color: rgba(220, 53, 69, 0.9);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
}

.submit-button {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(176, 141, 87, 0.3);
}

.submit-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(176, 141, 87, 0.4);
}

.submit-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-text,
.btn-spinner {
    display: inline-block;
    transition: opacity var(--transition-speed) ease;
}

.btn-spinner {
    opacity: 0;
    margin-left: 0.5rem;
}

.form-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--text-color);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    margin: 0;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    z-index: 2001;
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.lightbox.show .lightbox-content {
    transform: scale(1);
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    font-size: 1.5rem;
    border: none;
    cursor: pointer;
    z-index: 2002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.lightbox-close:hover {
    background-color: rgba(0, 0, 0, 1);
    transform: scale(1.1);
}

.lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.lightbox-caption {
    padding: 1rem;
    text-align: center;
    background: white;
    font-weight: 600;
    color: var(--text-color);
}

.lightbox-counter {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 2002;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    width: 3rem;
    height: 3rem;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    z-index: 2002;
}

.lightbox-nav:hover {
    background-color: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev {
    left: 1rem;
    border-radius: 50%;
}

.lightbox-nav.next {
    right: 1rem;
    border-radius: 50%;
}

.lightbox-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.lightbox-nav:disabled:hover {
    background-color: rgba(0, 0, 0, 0.6);
    transform: translateY(-50%) scale(1);
}

/* ===== TABLET STYLES (768px and up) ===== */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .hero-content {
        order: 1;
        text-align: left;
    }

    .hero-image {
        order: 2;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .about-layout {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .about-content {
        text-align: left;
    }

    .process-steps {
        gap: 2rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .deposit-cta-box {
        grid-template-columns: 1.5fr 1fr;
        gap: 3rem;
        align-items: start;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        background: none;
        border: none;
        padding: 0;
    }

    .nav-link {
        padding: 0 1rem;
        border: none;
    }

    .nav-toggle {
        display: none;
    }
}

/* ===== DESKTOP STYLES (1024px and up) ===== */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.375rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .contact-form {
        padding: 3rem;
    }

    .lightbox-content {
        max-width: 80vw;
    }
}

/* ===== LARGE DESKTOP STYLES (1200px and up) ===== */
@media (min-width: 1200px) {
    .hero-container {
        gap: 4rem;
    }

    .hero-image img {
        max-width: 400px;
    }

    .gallery-grid {
        gap: 2.5rem;
    }

    .process-steps {
        gap: 4rem;
    }
}

/* ===== ACCESSIBILITY & FOCUS STATES ===== */
.nav-link:focus,
.cta-button:focus,
.submit-button:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.gallery-item:focus,
.lightbox-close:focus,
.lightbox-nav:focus,
.testimonial-dot:focus,
.file-upload-label:focus-within,
button:focus,
a:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Ensure focus is visible for keyboard navigation */
*:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .nav-toggle,
    .lightbox {
        display: none !important;
    }

    .hero,
    .gallery,
    .about,
    .process,
    .contact {
        page-break-inside: avoid;
    }
}

#btn-spinner {
    display: none;
}

#payment-section {
    display: none;
    margin-top: 2rem;
    text-align: center;
}

#payment-section p:first-of-type {
    margin-bottom: 1rem;
    color: #666;
}

#payment-section p:last-of-type {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #888;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.cookie-consent p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-consent strong {
    color: var(--primary-color);
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.cookie-accept {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 2px 10px rgba(176, 141, 87, 0.3);
}

.cookie-accept:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(176, 141, 87, 0.4);
}

.cookie-decline {
    background-color: #f5f5f5;
    color: var(--text-color);
    border: 2px solid #ddd;
}

.cookie-decline:hover {
    background-color: #e8e8e8;
    border-color: #ccc;
}

.cookie-consent.hidden {
    display: none;
}

/* Tablet and desktop cookie consent */
@media (min-width: 768px) {
    .cookie-consent-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }

    .cookie-consent p {
        flex: 1;
        margin-right: 2rem;
    }

    .cookie-consent-buttons {
        flex-shrink: 0;
    }
}