:root {
    --wine: #6B1C3D;
    --deep-rose: #8B2E4F;
    --blush: #E8B4BC;
    --powder: #F4D4D8;
    --cream: #FFF8F3;
    --white: #FFFFFF;
    --ink: #2A1A1F;
    --soft-shadow: 0 8px 30px rgba(107, 28, 61, 0.08);
    --medium-shadow: 0 12px 40px rgba(107, 28, 61, 0.12);
    --strong-shadow: 0 20px 60px rgba(107, 28, 61, 0.18);
}

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

html { 
    scroll-behavior: smooth; 
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--cream);
   
    background-image: linear-gradient(
        rgba(255, 248, 243, 0.6), 
        rgba(255, 248, 243, 0.7)
    ), url("img/Landing_Page.jpg");
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    color: var(--ink);
    line-height: 1.75;
    overflow-x: hidden;
    position: relative;
}

.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(107, 28, 61, 0.03) 2px, rgba(107, 28, 61, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(107, 28, 61, 0.03) 2px, rgba(107, 28, 61, 0.03) 4px);
    pointer-events: none;
    z-index: 100;
    opacity: 0.4;
}

.gradient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
    animation: float 20s ease-in-out infinite;
}

.gradient-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 180, 188, 0.6) 0%, rgba(232, 180, 188, 0) 70%);
    top: -200px;
    right: -200px;
}

.gradient-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 46, 79, 0.4) 0%, rgba(139, 46, 79, 0) 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(5deg); }
    50% { transform: translate(-20px, 20px) rotate(-5deg); }
    75% { transform: translate(40px, 10px) rotate(3deg); }
}

/* Header */
header {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    padding: 1rem 7%;
    position: sticky; 
    top: 0; 
    background: rgba(255, 248, 243, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    border-bottom: 1px solid rgba(107, 28, 61, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    padding: 0.95rem 8%;
    box-shadow: var(--soft-shadow);
}

.logo { 
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; 
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    letter-spacing: -0.02em;
}

.logo-miss {
    color: var(--wine);
}

.logo-ia {
    color: var(--deep-rose);
    font-style: italic;
    position: relative;
}

.logo-ia::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--wine), var(--blush));
    border-radius: 2px;
}

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

.nav-links a { 
    text-decoration: none; 
    color: var(--ink); 
    font-size: 0.95rem; 
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--wine);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: var(--wine);
}

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

.cta-nav { 
    background: linear-gradient(135deg, var(--wine), var(--deep-rose));
    color: white;
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(107, 28, 61, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-nav::after {
    display: none;
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 28, 61, 0.4);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    width: 42px;
    height: 42px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 0 auto;
    background: var(--wine);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 1200;
    box-shadow: -12px 0 35px rgba(42, 26, 31, 0.16);
    padding: 2rem 1.5rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-sidebar.is-open { 
    right: 0; 
}

.menu-close {
    border: 0;
    background: transparent;
    color: var(--wine);
    font-size: 2.5rem;
    cursor: pointer;
    margin-left: auto;
    display: block;
    line-height: 1;
    transition: transform 0.3s ease;
}

.menu-close:hover {
    transform: rotate(90deg);
}

.mobile-nav {
    margin-top: 3rem;
    display: grid;
    gap: 0.8rem;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--wine);
    font-weight: 600;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    background: var(--cream);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mobile-nav a:hover {
    background: var(--wine);
    color: var(--white);
    transform: translateX(5px);
}

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(42, 26, 31, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1100;
    backdrop-filter: blur(4px);
}

.sidebar-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

/* Hero Section */
.hero { 
    min-height: 70vh;
    display: grid; 
    grid-template-columns: 1.2fr 1fr;
    align-items: center; 
    gap: 2rem; 
    padding: 2rem 7% 3.2rem;
    position: relative;
}

.hero-content { 
    max-width: 700px; 
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, rgba(232, 180, 188, 0.3), rgba(244, 212, 216, 0.3));
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    border: 1px solid var(--blush);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--wine);
    margin-bottom: 1.3rem;
    backdrop-filter: blur(10px);
}

.sparkle {
    color: var(--wine);
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.8; }
}

.hero h1 { 
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.8vw, 3.9rem); 
    color: var(--wine); 
    line-height: 1.15;
    margin-bottom: 1.3rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.hero .italic { 
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; 
    font-weight: 600;
    color: var(--deep-rose);
}

.hero .highlight { 
    background: linear-gradient(180deg, transparent 60%, var(--blush) 60%);
    padding: 0 0.3rem;
    position: relative;
}

.hero p { 
    font-size: 1.08rem;
    line-height: 1.65;
    margin-bottom: 2rem;
    max-width: 600px;
    color: var(--deep-rose);
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 0.9rem;
    margin-bottom: 2.2rem;
    flex-wrap: wrap;
}

.btn { 
    padding: 0.72rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    border: 2px solid transparent;
}

.btn-wine { 
    background: linear-gradient(135deg, var(--wine), var(--deep-rose));
    color: white;
    box-shadow: 0 8px 25px rgba(107, 28, 61, 0.25);
}

.btn-wine svg {
    transition: transform 0.3s ease;
}

.btn-wine:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(107, 28, 61, 0.35);
}

.btn-wine:hover svg {
    transform: translateX(5px);
}

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

.btn-outline:hover {
    background: var(--wine);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(107, 28, 61, 0.2);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--wine);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--deep-rose);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--blush), transparent);
}

.hero-visual { 
    justify-self: end;
    width: 100%;
    max-width: 400px;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
}

.hero-visual img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 200px 200px 30px 30px;
    border: 5px solid white;
    box-shadow: var(--strong-shadow);
    position: relative;
    z-index: 2;
}

.image-backdrop {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--blush), var(--powder));
    border-radius: 200px 200px 30px 30px;
    z-index: 1;
}

.floating-element {
    position: absolute;
    z-index: 3;
    animation: floatElement 6s ease-in-out infinite;
}

.floating-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-2 {
    bottom: 15%;
    left: -8%;
    animation-delay: -3s;
}

.dot-pattern {
    width: 80px;
    height: 80px;
    background-image: radial-gradient(var(--wine) 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.4;
}

@keyframes floatElement {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* About Section */
.about { 
    padding: 4rem 7%;
    background: var(--white);
}

.about-grid { 
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2.2rem;
    align-items: center;
}

.about-image { 
    position: relative;
}

.image-stack { 
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--blush), var(--powder));
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.image-stack img { 
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--medium-shadow);
    position: relative;
    z-index: 2;
}

.image-decoration {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--wine), var(--deep-rose));
    border-radius: 30px;
    opacity: 0.1;
    z-index: 1;
}

.svg-decoration { 
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    z-index: 0;
    opacity: 0.6;
}

.tag { 
    color: var(--wine);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    display: inline-block;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2.5rem;
}

.tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: var(--wine);
}

.tag-light {
    color: white;
}

.tag-light::before {
    background: white;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
    color: var(--wine);
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.2;
}

.lead-text {
    font-size: 1.12rem;
    color: var(--wine);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-text p {
    margin-bottom: 0.8rem;
    color: var(--deep-rose);
    font-size: 1rem;
}

/* Services Section */
.services { 
    padding: 4rem 7%;
    background: var(--cream);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    color: var(--wine);
    font-size: clamp(2rem, 3.3vw, 2.9rem);
    margin-bottom: 0.4rem;
    font-weight: 900;
}

.section-subtitle {
    font-size: 1.02rem;
    color: var(--deep-rose);
    margin-top: 0.2rem;
}

.services-grid { 
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
    margin-top: 2.5rem;
}

.card { 
    background: white;
    padding: 1.25rem 1rem;
    border-radius: 14px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wine), var(--blush));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    border-color: var(--blush);
    transform: translateY(-10px);
    box-shadow: var(--medium-shadow);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--blush), var(--powder));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.7rem;
    transition: all 0.4s ease;
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--wine), var(--deep-rose));
}

.card-icon svg {
    width: 20px;
    height: 20px;
    color: var(--wine);
    transition: color 0.4s ease;
}

.card:hover .card-icon svg {
    color: white;
}

.card h3 { 
    font-family: 'Playfair Display', serif;
    color: var(--wine);
    margin-bottom: 0.5rem;
    font-size: 1.14rem;
    font-weight: 700;
}

.card p {
    color: var(--deep-rose);
    line-height: 1.45;
    margin-bottom: 0.7rem;
    font-size: 0.96rem;
}

.card-list {
    list-style: none;
    margin-top: 0.45rem;
}

.card-list li {
    padding: 0.28rem 0;
    color: var(--ink);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.8rem;
}

.card-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--wine);
    font-weight: bold;
}

/* Projects Section */
.projects { 
    padding: 4rem 7%;
    background: var(--white);
}

.project-grid { 
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    margin-top: 2.1rem;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.project-item {
    background: white;
    border: 2px solid var(--powder);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-item:hover { 
    transform: translateY(-12px);
    box-shadow: var(--strong-shadow);
    border-color: var(--blush);
}

.project-img { 
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    aspect-ratio: 16 / 10;
}
.project-img::-webkit-scrollbar { display: none; }

.project-img img { 
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    scroll-snap-align: start;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(107, 28, 61, 0.95), rgba(139, 46, 79, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-view {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.project-item:hover .project-view {
    transform: translateY(0);
}

.project-item:hover .project-img img { 
    transform: scale(1.1);
}

.project-info { 
    padding: 0.75rem 0.7rem 0.85rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-info h3 { 
    font-family: 'Playfair Display', serif;
    color: var(--wine);
    margin-bottom: 0.45rem;
    font-size: 1.02rem;
    font-weight: 700;
}

.project-info p { 
    color: var(--deep-rose);
    font-size: 0.9rem;
    line-height: 1.45;
    margin-bottom: 0.8rem;
    flex-grow: 1;
}

.project-tags {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.project-tag {
    padding: 0.22rem 0.55rem;
    background: var(--cream);
    color: var(--wine);
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 500;
    border: 1px solid var(--powder);
}

/* Current status */
.current-status {
    padding: 3rem 7%;
    background: var(--cream);
}

.status-grid {
    margin: 1rem auto 0;
    max-width: 900px;
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}
.status-grid::-webkit-scrollbar { display: none; }

.status-card {
    background: var(--white);
    border: 1px solid var(--powder);
    border-radius: 14px;
    padding: 0.55rem;
    text-align: center;
    flex: 0 0 min(280px, 85%);
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.88);
}

.status-card img {
    width: 100%;
    aspect-ratio: 16 / 8;
    object-fit: contain;
    border-radius: 10px;
    background: #fff;
    padding: 0.4rem;
}

/* Contact Section */
.contact { 
    padding: 3rem 7%;
    background: linear-gradient(135deg, var(--wine), var(--deep-rose));
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 1.2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-info {
    color: white;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 0.8rem;
    font-weight: 300;
    line-height: 1.2;
}

.contact-info > p {
    font-size: 1rem;
    line-height: 1.45;
    opacity: 0.95;
    margin-bottom: 1.1rem;
}

.contact-methods {
    display: grid;
    gap: 0.7rem;
    margin-bottom: 1.1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.72rem 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.method-icon {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-label {
    font-size: 0.84rem;
    opacity: 0.8;
    margin-bottom: 0.3rem;
}

.method-value {
    font-weight: 600;
    font-size: 0.97rem;
}

.social-links {
    display: flex;
    gap: 0.6rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgb(254, 250, 250);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    background: white;
    color: var(--wine);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.social-links svg {
    width: 16px;
    height: 16px;
}

.contact-form-wrapper {
    background: white;
    padding: 1.25rem;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-form {
    display: grid;
    gap: 0.85rem;
}

.form-group {
    display: grid;
    gap: 0.35rem;
}

.form-group label {
    font-weight: 600;
    color: var(--wine);
    font-size: 0.92rem;
}

.form-group input,
.form-group textarea {
    padding: 0.66rem 0.8rem;
    border-radius: 10px;
    border: 2px solid var(--powder);
    font-family: inherit;
    font-size: 0.98rem;
    transition: all 0.3s ease;
    background: var(--cream);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--wine);
    background: white;
    box-shadow: 0 0 0 4px rgba(107, 28, 61, 0.1);
}

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

/* Footer */
footer { 
    background: var(--ink);
    color: rgba(255, 255, 255, 0.8);
    padding: 1.1rem 7% 0.6rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 0.7rem;
    margin-bottom: 0.6rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    margin-top: 0.35rem;
    line-height: 1.3;
    opacity: 0.8;
    max-width: 350px;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 0.45rem;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
}

.footer-links nav {
    display: grid;
    gap: 0.25rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.9rem;
}

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

.footer-contact p {
    margin-bottom: 0.25rem;
    opacity: 0.8;
    font-size: 0.88rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 0.55rem;
    font-size: 0.99rem;
    opacity: 0.7;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

.footer-bottom a { 
    color: var(--blush);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-bottom a:hover { 
    color: white;
}

/* Animations */
.reveal { 
    will-change: transform, opacity;
}

.hero-content .reveal:nth-child(1) { 
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-content .reveal:nth-child(2) { 
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-content .reveal:nth-child(3) { 
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-content .reveal:nth-child(4) { 
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-content .reveal:nth-child(5) { 
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-visual { 
    animation: fadeInRight 1s ease 0.3s both;
}

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

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

.card, .project-item { 
    animation: floatIn 0.8s ease both;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }

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

/* Responsive Design */
@media (max-width: 1100px) {
    .project-grid { 
        grid-template-columns: minmax(0, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .hero { 
        grid-template-columns: 1fr;
        padding-top: 2rem;
        min-height: auto;
    }
    
    .hero-visual { 
        justify-self: center;
        max-width: 400px;
        order: -1;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.6rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1.5rem 5%;
    }
    
    .nav-links { 
        display: none;
    }
    
    .menu-toggle { 
        display: flex;
    }
    
    .services-grid,
    .project-grid { 
        grid-template-columns: 1fr;
    }
    .project-item {
        max-width: 100%;
        border-radius: 14px;
    }
    .project-img {
        aspect-ratio: 4 / 5;
    }
    .project-info {
        padding: 0.85rem 0.8rem 1rem;
    }
    .project-info h3 {
        font-size: 0.95rem;
    }
    .project-info p {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .hero,
    .about,
    .services,
    .projects,
    .contact,
    .current-status {
        padding-left: 4%;
        padding-right: 4%;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .contact-form-wrapper {
        padding: 1rem;
    }
    
    footer { padding: 0.9rem 4% 0.6rem; }
    .status-card { flex-basis: 88%; }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .card { padding: 1rem 0.85rem; }
    body {
        background-attachment: scroll;
    }
    .grain-overlay,
    .gradient-orb {
        display: none;
    }
    .project-img { aspect-ratio: 4 / 5; }
    .status-card { flex-basis: 92%; }
}
