@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --warm-ivory: #F6F2E8;
    --soft-clay: #D6A885;
    --deep-charcoal: #2B2B2B;
    --burnt-sienna: #B2543D;
    --ultramarine-blue: #1C3D8C;
    --vintage-olive: #7A8E63;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--deep-charcoal);
    background-color: var(--warm-ivory);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

a {
    color: var(--burnt-sienna);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--ultramarine-blue);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

header {
    background: var(--warm-ivory);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(43, 43, 43, 0.05);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--deep-charcoal);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.375rem;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--deep-charcoal);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--deep-charcoal);
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--soft-clay);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1.5rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(246, 242, 232, 0.85) 0%, rgba(43, 43, 43, 0.4) 100%);
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, -30px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(43, 43, 43, 0.15);
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    margin-bottom: 1.5rem;
    color: var(--deep-charcoal);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 2rem;
    color: var(--deep-charcoal);
    font-weight: 400;
    line-height: 1.7;
}

.btn {
    display: inline-block;
    padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.75rem);
    background: linear-gradient(135deg, var(--burnt-sienna) 0%, #9a4530 100%);
    color: white;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(178, 84, 61, 0.3), 0 2px 8px rgba(178, 84, 61, 0.2);
    z-index: 1;
    text-align: center;
    white-space: nowrap;
    min-width: fit-content;
}

.btn > * {
    position: relative;
    z-index: 2;
    color: white;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--ultramarine-blue) 0%, #152d6b 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn:hover::after {
    opacity: 1;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(28, 61, 140, 0.4), 0 4px 12px rgba(28, 61, 140, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.btn:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--ultramarine-blue) 0%, #152d6b 100%);
    box-shadow: 0 4px 15px rgba(28, 61, 140, 0.3), 0 2px 8px rgba(28, 61, 140, 0.2);
}

.btn-secondary::after {
    background: linear-gradient(135deg, var(--burnt-sienna) 0%, #9a4530 100%);
}

.btn-secondary:hover {
    box-shadow: 0 8px 25px rgba(178, 84, 61, 0.4), 0 4px 12px rgba(178, 84, 61, 0.3);
    color: white;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    padding: 5rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--soft-clay);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 2rem;
}

.contact-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(43, 43, 43, 0.15));
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.15) rotate(5deg);
}

.contact-card h3 {
    margin-bottom: 1rem;
    color: var(--burnt-sienna);
}

.contact-card p {
    margin: 0;
    line-height: 1.8;
}

.contact-card a {
    color: var(--ultramarine-blue);
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--burnt-sienna);
}

.form-map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.form-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.form-wrapper .section-header {
    margin-bottom: 2rem;
}

.map-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.map-wrapper .section-header {
    margin-bottom: 2rem;
}

.map-container {
    flex: 1;
    min-height: 600px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(43, 43, 43, 0.15), 0 4px 12px rgba(43, 43, 43, 0.1);
    border: 3px solid rgba(214, 168, 133, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(43, 43, 43, 0.2), 0 6px 16px rgba(178, 84, 61, 0.15);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 600px;
    display: block;
}

form {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.creativity-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.creativity-grid .card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-icon {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    display: block;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(43, 43, 43, 0.1));
    transition: transform 0.3s ease;
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card {
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(43, 43, 43, 0.08), 0 2px 8px rgba(43, 43, 43, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(214, 168, 133, 0.15);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--burnt-sienna), var(--soft-clay), var(--ultramarine-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(214, 168, 133, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card:hover::after {
    opacity: 1;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(43, 43, 43, 0.12), 0 4px 12px rgba(178, 84, 61, 0.15);
    border-color: rgba(214, 168, 133, 0.4);
}

.card h3 {
    color: var(--burnt-sienna);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
    font-weight: 700;
    font-size: 1.5rem;
}

.card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--soft-clay), transparent);
    transition: width 0.4s ease;
}

.card:hover h3::after {
    width: 60px;
}

.card p {
    color: var(--deep-charcoal);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    flex-grow: 1;
}

.card .btn {
    margin-top: auto;
    align-self: stretch;
    width: 100%;
    text-align: center;
    padding: clamp(0.875rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
}

.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 8px 25px rgba(43, 43, 43, 0.12), 0 2px 8px rgba(43, 43, 43, 0.08);
    border: 4px solid var(--warm-ivory);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(178, 84, 61, 0.1) 0%, rgba(28, 61, 140, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    transform: rotate(1.5deg) scale(1.03);
    box-shadow: 0 16px 40px rgba(43, 43, 43, 0.2), 0 4px 12px rgba(178, 84, 61, 0.25);
    border-color: rgba(214, 168, 133, 0.6);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

form {
    max-width: 100%;
    margin: 0;
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(43, 43, 43, 0.1), 0 2px 8px rgba(43, 43, 43, 0.05);
    border: 1px solid rgba(214, 168, 133, 0.15);
    position: relative;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
}

form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--burnt-sienna), var(--soft-clay), var(--ultramarine-blue));
}

.form-group {
    margin-bottom: 1.75rem;
    position: relative;
}

form label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--deep-charcoal);
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(214, 168, 133, 0.25);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: var(--deep-charcoal);
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form textarea:focus {
    outline: none;
    border-color: var(--soft-clay);
    box-shadow: 0 0 0 3px rgba(214, 168, 133, 0.1);
    transform: translateY(-1px);
}

form textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
    flex: 1;
}

form .btn {
    margin-top: auto;
    width: 100%;
    padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.75rem);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

footer {
    background: var(--deep-charcoal);
    color: var(--warm-ivory);
    padding: 3rem 1.5rem 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--soft-clay);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section p,
.footer-section a {
    color: var(--warm-ivory);
    opacity: 0.9;
    line-height: 1.8;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--soft-clay);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(246, 242, 232, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.privacy-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(43, 43, 43, 0.3);
    z-index: 10000;
    display: none;
    animation: slideUp 0.5s ease-out;
}

.privacy-popup.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.privacy-popup p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.privacy-popup-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.privacy-popup-buttons button {
    flex: 1;
    min-width: 100px;
    padding: clamp(0.625rem, 2vw, 0.75rem);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    transition: all 0.3s ease;
}

.privacy-popup-buttons .btn-accept {
    background: linear-gradient(135deg, var(--burnt-sienna) 0%, #9a4530 100%);
    color: white;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(178, 84, 61, 0.3);
    transition: all 0.3s ease;
}

.privacy-popup-buttons .btn-accept:hover {
    background: linear-gradient(135deg, var(--ultramarine-blue) 0%, #152d6b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(28, 61, 140, 0.4);
}

.privacy-popup-buttons .btn-decline {
    background: var(--warm-ivory);
    color: var(--deep-charcoal);
    border: 2px solid var(--deep-charcoal);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.privacy-popup-buttons .btn-decline:hover {
    background: var(--deep-charcoal);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 43, 43, 0.3);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        position: relative;
        flex-wrap: nowrap;
    }

    .logo {
        flex-shrink: 0;
        font-size: clamp(1.25rem, 4vw, 1.75rem);
    }

    .menu-toggle {
        flex-shrink: 0;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--warm-ivory);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 10px rgba(43, 43, 43, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        margin-top: 1rem;
    }

    .nav-links.active {
        max-height: 500px;
        padding: 1rem 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 1rem 1.5rem;
        width: 100%;
    }

    .hero {
        min-height: 60vh;
        padding: 3rem 1.5rem;
    }

    .hero-content {
        padding: 1.5rem;
        max-width: 100%;
    }

    section {
        padding: 3rem 1.5rem;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .contact-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .map-container {
        margin: 1.5rem auto 0;
    }

    .form-map-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        min-height: 400px;
    }

    .map-container iframe {
        min-height: 400px;
    }

    .creativity-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .card-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .privacy-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    .privacy-popup-buttons {
        flex-direction: column;
    }

    .privacy-popup-buttons button {
        width: 100%;
        min-width: auto;
    }

    .hero-content div[style*="margin-top"] .btn {
        margin: 1rem auto !important;
        display: block;
        width: 100%;
        max-width: 300px;
    }

    .hero-content div[style*="margin-top"] .btn + .btn {
        margin-top: 1.5rem !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1.25rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.9rem;
        width: auto;
        min-width: 120px;
    }

    .hero-content .btn {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-content div[style*="margin-top"] .btn {
        margin: 0.75rem auto !important;
        display: block;
        width: 100%;
        max-width: 300px;
    }

    .hero-content div[style*="margin-top"] .btn + .btn {
        margin-top: 1rem !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    section {
        padding: 2.5rem 1rem;
    }

    .card {
        padding: 1.5rem;
    }

    form {
        padding: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .creativity-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .card-icon {
        font-size: 2rem;
    }

    .contact-card {
        padding: 1.5rem 1rem;
    }

    .contact-icon {
        font-size: 2rem;
    }

    .form-map-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .map-container {
        min-height: 350px;
    }

    .map-container iframe {
        min-height: 350px;
    }
}

@media (max-width: 340px) {
    nav {
        padding: 0 1rem;
        flex-wrap: nowrap;
    }

    .logo {
        font-size: clamp(1.1rem, 3.5vw, 1.5rem);
        flex-shrink: 0;
        max-width: calc(100% - 50px);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .menu-toggle {
        display: flex;
        flex-shrink: 0;
        padding: 0.4rem;
    }

    .menu-toggle span {
        width: 22px;
        height: 2.5px;
    }

    .nav-links a {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    nav {
        padding: 0 0.75rem;
        flex-wrap: nowrap;
    }

    .logo {
        font-size: 1.1rem;
        flex-shrink: 0;
        max-width: calc(100% - 45px);
    }

    .menu-toggle {
        padding: 0.35rem;
        flex-shrink: 0;
    }

    .menu-toggle span {
        width: 20px;
        height: 2px;
    }

    .nav-links a {
        padding: 0.75rem 0.875rem;
        font-size: 0.85rem;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--warm-ivory);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 10px rgba(43, 43, 43, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        margin-top: 1rem;
    }

    .nav-links.active {
        max-height: 500px;
        padding: 1rem 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 0.75rem 0.875rem;
        width: 100%;
        font-size: 0.85rem;
    }

    .hero {
        padding: 2rem 1rem;
        min-height: 50vh;
    }

    .hero-content {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.85);
    }

    section {
        padding: 2rem 1rem;
    }

    .card {
        padding: 1.25rem;
    }

    form {
        padding: 1.25rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
        width: auto;
        min-width: 100px;
        letter-spacing: 0.3px;
    }

    .hero-content .btn {
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .btn + .btn {
        margin-top: 0.75rem;
        margin-left: 0;
    }

    .hero-content div[style*="margin-top"] .btn {
        margin: 1rem auto !important;
        display: block;
        width: 100%;
        max-width: 280px;
    }

    .hero-content div[style*="margin-top"] .btn + .btn {
        margin-top: 1.25rem !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .creativity-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .card-icon {
        font-size: 1.75rem;
    }

    .contact-card {
        padding: 1.25rem 0.75rem;
    }

    .contact-icon {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .form-map-container {
        gap: 1rem;
    }

    .map-container {
        min-height: 300px;
    }

    .map-container iframe {
        min-height: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

