:root {
    --primary-color: #A8B4C0;
    --dark-color: #1A1A1A;
    --light-bg: #FAF8F5;
    --text-dark: #2C2C2C;
    --text-light: #666;
    --white: #FFFFFF;
    --accent: #8A98A8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

section[id] {
    scroll-margin-top: 90px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 25px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.85);
    padding: 20px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.navbar-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    transition: color 0.3s ease, transform 0.3s ease;
}

.navbar-burger:hover {
    color: var(--primary-color);
}

.navbar-burger-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.navbar-burger[aria-expanded="true"] .navbar-burger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar-burger[aria-expanded="true"] .navbar-burger-bar:nth-child(2) {
    opacity: 0;
}

.navbar-burger[aria-expanded="true"] .navbar-burger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-brand .logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    line-height: 1;
}

.navbar-brand .logo-subtitle {
    font-family: 'Great Vibes', cursive;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1;
    margin-top: 2px;
    margin-left: 3.3em;
}

.navbar-brand:hover .logo-main {
    color: var(--primary-color);
}

.navbar-brand:hover {
    transform: translateY(-2px);
}

.nav-links {
    display: flex;
    gap: 45px;
    align-items: center;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 4px 8px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    opacity: 0.9;
}

.lang-btn.active {
    opacity: 1;
    color: var(--primary-color);
}

.lang-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    user-select: none;
}

.navbar.scrolled .lang-btn {
    color: var(--white);
}

.navbar.scrolled .lang-btn.active {
    color: var(--primary-color);
}

.navbar.scrolled .lang-separator {
    color: rgba(255, 255, 255, 0.4);
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a:hover::after {
    opacity: 1;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/img/background.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.3;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(44, 44, 44, 0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 120px 20px 80px;
}

.hero-logo {
    display: inline-block;
    text-align: left;
}

.hero-main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: 3px;
    line-height: 1;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-family: 'Great Vibes', cursive;
    font-size: 4.5rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 30px;
    margin-left: 2.8em;
    line-height: 1;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 50px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.6s both;
    box-shadow: 0 10px 30px rgba(168, 180, 192, 0.3);
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(168, 180, 192, 0.4);
    color: var(--white);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: var(--primary-color);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(20px); opacity: 0.3; }
}

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

.about-section {
    padding: 120px 0;
    background: var(--light-bg);
}

.section-header {
    margin-bottom: 50px;
}

.section-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    font-weight: 300;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
    display: block;
    margin-bottom: -30px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 80px;
}

.section-header-center .section-number {
    margin-bottom: -40px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 300;
    margin-top: 20px;
}

.about-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.lead-text {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 25px;
    line-height: 1.6;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.services-section {
    padding: 120px 0;
    background: var(--dark-color);
    color: var(--white);
}

.services-section .section-title {
    color: var(--white);
}

.services-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.services-grid {
    margin-top: 60px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    width: 40px;
    height: 40px;
    stroke-width: 2;
    color: var(--white);
}

.service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.service-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.portfolio-section {
    padding: 120px 0 80px;
    background: var(--light-bg);
}

.portfolio-header {
    padding: 0 40px;
    margin-bottom: 60px;
}

.portfolio-scroll-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0 40px;
    margin: 0;
}

.portfolio-scroll-container::before,
.portfolio-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.portfolio-scroll-container::before {
    left: 0;
    background: linear-gradient(to right, var(--light-bg), transparent);
}

.portfolio-scroll-container::after {
    right: 0;
    background: linear-gradient(to left, var(--light-bg), transparent);
}

.portfolio-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.portfolio-nav-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(168, 180, 192, 0.4);
}

.portfolio-nav-btn:active:not(:disabled) {
    transform: translateY(-50%) scale(0.95);
}

.portfolio-nav-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.portfolio-nav-left {
    left: 60px;
}

.portfolio-nav-right {
    right: 35px;
}

.portfolio-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: flex;
    justify-content: center;
}

.portfolio-scroll-wrapper.smooth-scroll {
    scroll-behavior: smooth;
}


.portfolio-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.portfolio-grid {
    display: flex;
    gap: 30px;
    width: max-content;
    padding-left: 1260px;
    padding-right: 120px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    overflow: visible;
    flex-shrink: 0;
    width: 400px;
    padding: 10px;
}

.portfolio-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background: var(--white);
    padding: 8px;
}

.portfolio-image-wrapper {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.portfolio-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.portfolio-image-wrapper::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 2px solid rgba(168, 180, 192, 0.3);
    border-radius: 8px;
    z-index: 1;
    pointer-events: none;
}

.portfolio-image-wrapper::before {
    transition: border-color 0.2s ease;
}

.portfolio-image-wrapper:hover::before {
    border-color: var(--primary-color);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.7) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay,
.portfolio-item:active .portfolio-overlay {
    opacity: 1;
}

.portfolio-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.portfolio-year {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
}

.contact-section {
    padding: 120px 0;
    background: var(--white);
}

.contact-content {
    margin-top: 50px;
}

.contact-info {
    margin-top: 50px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent);
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.about-social-wrap {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(168, 180, 192, 0.25);
}

.about-social-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.about-social-panels {
    gap: 30px;
}

.social-panel {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    min-height: 520px;
    border: 1px solid rgba(168, 180, 192, 0.2);
}

.social-panel-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(168, 180, 192, 0.25);
    letter-spacing: 0.5px;
}

.social-panel-inner {
    padding: 0;
    min-height: 480px;
}

.social-panel-instagram {
    display: flex;
    flex-direction: column;
}

.social-panel-instagram .social-panel-inner {
    display: flex;
    flex-direction: column;
}

.instagram-embed {
    flex: 1;
    min-height: 550px;
    width: 100%;
    max-width: 100%;
}

.contact-image-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
}

.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer p {
    margin: 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--white);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-info {
    margin-top: 30px;
    text-align: center;
    color: var(--white);
}

.lightbox-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
}

.lightbox-info p {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 500;
}

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

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 992px) {
    .navbar .container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-main-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-number {
        font-size: 4rem;
    }

    .about-section,
    .services-section,
    .portfolio-section,
    .contact-section {
        padding: 80px 0;
    }

    .portfolio-item {
        width: 350px;
    }

    .portfolio-image-wrapper {
        height: 500px;
    }

    .about-image,
    .contact-image {
        height: 500px;
    }
}

@media (max-width: 768px) {
    section[id] {
        scroll-margin-top: 220px;
    }

    .navbar {
        padding: 20px 0;
        transition: padding 0.45s ease-in-out, background 0.35s ease, box-shadow 0.35s ease;
    }

    .navbar.scrolled {
        padding: 15px 0;
    }

    .navbar-burger {
        display: none;
        margin-left: auto;
    }

    .navbar.navbar-compact .navbar-burger {
        display: flex;
        align-self: flex-start;
        width: 36px;
        height: 36px;
        margin-top: -50px;
    }

    .navbar.navbar-compact .navbar-burger .navbar-burger-bar {
        width: 18px;
    }

    .navbar.navbar-compact .navbar-burger[aria-expanded="true"] .navbar-burger-bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .navbar.navbar-compact .navbar-burger[aria-expanded="true"] .navbar-burger-bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .navbar .container {
        flex-wrap: wrap;
        flex-direction: row;
        align-items: center;
        gap: 0;
        padding: 0 20px;
    }

    .navbar.navbar-compact .container {
        align-items: flex-start;
    }

    .nav-links {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding-top: 0;
        padding-bottom: 0;
        margin: 0;
        border-top: none;
        transition: max-height 0.45s ease-in-out, opacity 0.4s ease, padding 0.4s ease;
    }

    .navbar:not(.navbar-compact) .nav-links {
        max-height: 280px;
        opacity: 1;
        padding-top: 16px;
        padding-bottom: 4px;
        margin-top: 4px;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .navbar.navbar-compact.navbar-menu-open .nav-links {
        max-height: 280px;
        opacity: 1;
        padding-top: 16px;
        padding-bottom: 4px;
        margin-top: 4px;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .navbar-compact {
        padding: 6px 0;
    }

    .navbar-compact .navbar-brand .logo-main {
        font-size: 1.45rem;
    }

    .navbar-compact .navbar-brand .logo-subtitle {
        font-size: 1.1rem;
    }

    .navbar-compact .nav-links {
        max-height: 0;
        opacity: 0;
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 0;
        border-top: none;
    }

    .navbar-brand .logo-main {
        font-size: 1.6rem;
    }

    .navbar-brand .logo-subtitle {
        font-size: 1.2rem;
    }

    .lang-switcher {
        flex-basis: 100%;
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        justify-content: center;
        padding-top: 4px;
        margin-top: 4px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-links a {
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .hero-section::before {
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
    }

    .hero-main-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-number {
        font-size: 3rem;
    }

    .service-card {
        padding: 40px 30px;
        margin-bottom: 30px;
    }

    .portfolio-header {
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .portfolio-item {
        width: min(340px, 88vw);
    }

    .portfolio-image-wrapper {
        height: auto;
        aspect-ratio: 2 / 3;
    }

    .portfolio-image {
        object-fit: contain;
        object-position: center top;
    }

    .portfolio-scroll-wrapper {
        justify-content: flex-start;
        scroll-snap-type: x mandatory;
    }

    .portfolio-grid {
        gap: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .portfolio-item {
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }

    .portfolio-overlay {
        padding: 30px 20px;
        opacity: 0.9;
    }

    .portfolio-title {
        font-size: 1.5rem;
    }

    .lightbox-content {
        max-width: 95%;
    }

    .lightbox-close {
        top: -40px;
        font-size: 2.5rem;
        width: 40px;
        height: 40px;
    }

    .lightbox-info h3 {
        font-size: 2rem;
    }

    .lightbox-info p {
        font-size: 1rem;
    }

    .about-image-wrapper,
    .contact-image-wrapper {
        border-radius: 0;
    }

    .about-image,
    .contact-image {
        height: auto;
        min-height: 300px;
        max-height: 500px;
        object-fit: contain;
        object-position: center;
    }

    .about-section .section-header,
    .about-section .about-content {
        text-align: center;
    }

    .about-content {
        padding: 40px 20px;
    }

    .contact-section .section-header,
    .contact-section .contact-content {
        text-align: center;
    }

    .contact-section .contact-item {
        justify-content: center;
    }

    .contact-section .contact-item div {
        text-align: center;
    }

    .about-social-wrap {
        margin-top: 50px;
        padding-top: 40px;
    }

    .about-social-heading {
        font-size: 1.35rem;
        margin-bottom: 28px;
    }

    .about-social-panels {
        flex-direction: column;
    }

    .social-panel {
        min-height: 480px;
    }

    .social-panel-inner {
        min-height: 420px;
    }

    .instagram-embed {
        min-height: 500px;
    }
}

@media (max-width: 480px) {
    section[id] {
        scroll-margin-top: 240px;
    }

    .nav-links {
        gap: 8px;
    }

    .nav-links a {
        font-size: 0.7rem;
    }

    .lang-btn {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    .portfolio-item {
        width: min(320px, 92vw);
        padding: 6px;
    }

    .portfolio-image-wrapper {
        height: auto;
        aspect-ratio: 2 / 3;
        padding: 6px;
    }

    .portfolio-image-wrapper::before {
        top: 6px;
        left: 6px;
        right: 6px;
        bottom: 6px;
        border-width: 1.5px;
    }

    .portfolio-scroll-wrapper {
        justify-content: flex-start;
    }

    .portfolio-grid {
        gap: 18px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .portfolio-scroll-container {
        margin: 0 -8px;
    }

    .portfolio-scroll-container::before,
    .portfolio-scroll-container::after {
        width: 30px;
    }

    .portfolio-nav-btn {
        width: 45px;
        height: 45px;
    }

    .portfolio-nav-btn svg {
        width: 20px;
        height: 20px;
    }

    .portfolio-nav-left {
        left: 5px;
    }

    .portfolio-nav-right {
        right: 5px;
    }

    .about-image,
    .contact-image {
        min-height: 250px;
        max-height: 400px;
    }

    .lightbox-content {
        max-width: 98%;
        padding: 10px;
    }

    .lightbox-img {
        max-height: 75vh;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 2rem;
        width: 35px;
        height: 35px;
    }

    .lightbox-info {
        margin-top: 20px;
    }

    .lightbox-info h3 {
        font-size: 1.5rem;
    }

    .lightbox-info p {
        font-size: 0.9rem;
    }
}
