/* Custom Fonts */
@font-face {
    font-family: 'Decor';
    src: url('/fonts/Decor_Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Century Gothic';
    src: url('/fonts/centurygothic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Century Gothic';
    src: url('/fonts/centurygothic_bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    --burgundy: #3B0006;
    --burgundy-dark: #2a0004;
    --blush: #D9BAB4;
    --blush-light: #E8D4D0;
    --cream: #F5EBE9;
    --gold: #C9A962;
    --text-light: #f2e8e6;
    --text-dark: #3B0006;
    --font-display: 'Decor', 'Cormorant Garamond', serif;
    --font-subtitle: 'Cormorant Garamond', serif;
    --font-body: 'Century Gothic', 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--burgundy); color: var(--text-light); overflow-x: hidden; line-height: 1.6; }
.serif { font-family: var(--font-subtitle); }
h1, h2 { font-family: var(--font-display); font-weight: normal; font-style: italic; }
h3 { font-family: var(--font-subtitle); font-weight: 400; }

/* Navigation */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 20px 60px; display: flex; justify-content: space-between; align-items: center; transition: all 0.4s ease; }
.nav.scrolled { background: rgba(59, 0, 6, 0.95); backdrop-filter: blur(10px); padding: 15px 60px; }
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo-img { width: 140px; height: auto; filter: drop-shadow(0 0 8px rgba(217, 186, 180, 0.3)); transition: all 0.3s ease; }
.nav-logo:hover .nav-logo-img { filter: drop-shadow(0 0 15px rgba(217, 186, 180, 0.6)); transform: scale(1.02); }
.nav-links { display: flex; gap: 40px; list-style: none; align-items: center; }
.nav-links a { font-family: var(--font-body); color: var(--blush); text-decoration: none; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; position: relative; transition: color 0.3s ease; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--blush); transition: width 0.3s ease; }
.nav-links a:hover::after { width: 100%; }

.lang-switch { padding: 8px 16px; border: 1px solid var(--blush); border-radius: 20px; color: var(--blush); text-decoration: none; font-size: 11px; letter-spacing: 1px; font-weight: 600; transition: all 0.3s ease; }
.lang-switch:hover { background: var(--blush); color: var(--burgundy); }
.lang-switch::after { display: none !important; }

.nav-cta { padding: 12px 28px; border: 1px solid var(--blush); border-radius: 30px; color: var(--blush); text-decoration: none; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; transition: all 0.3s ease; }
.nav-cta:hover { background: var(--blush); color: var(--burgundy); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.nav-toggle span { width: 25px; height: 2px; background: var(--blush); transition: all 0.3s ease; }

/* Hero - Clean & Minimal */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 120px 20px 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse at center, rgba(59, 0, 6, 0.3) 0%, var(--burgundy) 70%); pointer-events: none; }
.hero-content { position: relative; z-index: 1; max-width: 900px; }
.hero-logo { max-width: 450px; width: 85%; height: auto; margin-bottom: 40px; animation: fadeInUp 1s ease 0.4s both; filter: drop-shadow(0 0 30px rgba(217, 186, 180, 0.3)); }
.hero-tagline { font-family: var(--font-display); font-size: clamp(24px, 4vw, 42px); font-style: italic; font-weight: normal; color: var(--blush-light); margin-bottom: 50px; opacity: 0.95; animation: fadeInUp 1s ease 0.5s both; line-height: 1.3; max-width: 650px; }
.hero-subtitle { display: none; }
.hero-cta { font-family: var(--font-body); display: inline-flex; align-items: center; gap: 12px; padding: 18px 40px; border: 1px solid var(--blush); border-radius: 50px; color: var(--blush); text-decoration: none; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; transition: all 0.4s ease; animation: fadeInUp 1s ease 0.7s both; position: relative; overflow: hidden; }
.hero-cta:hover { background: var(--blush); color: var(--burgundy); transform: translateY(-3px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4); }
.hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--blush); opacity: 0.6; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; animation: bounce 2s infinite; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }

/* About */
.about { background: var(--burgundy); padding: 120px 60px; }
.about-container { max-width: 1400px; margin: 0 auto; }
.about-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 100px; align-items: center; }
.about-label { font-family: var(--font-body); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--blush); margin-bottom: 20px; opacity: 0.7; }
.about-title { font-family: var(--font-display); font-size: clamp(42px, 5vw, 68px); font-weight: normal; font-style: italic; color: var(--blush-light); line-height: 1.1; }
.about-text { font-size: 17px; line-height: 2; opacity: 0.9; }
.about-text p { margin-bottom: 20px; }
.about-grid { display: none; /* Hidden per client request */ }

/* Team */
.team { background: var(--blush); color: var(--text-dark); padding: 120px 60px; }
.team-container { max-width: 1400px; margin: 0 auto; }
.team-header { margin-bottom: 60px; text-align: center; }
.team-title { font-family: var(--font-display); font-size: clamp(42px, 5vw, 68px); font-weight: normal; font-style: italic; color: var(--burgundy); line-height: 1.1; }
.team-grid { display: flex; flex-direction: column; gap: 80px; }
.team-member { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.team-member:nth-child(even) { direction: rtl; }
.team-member:nth-child(even) > * { direction: ltr; }
.team-photo-frame { position: relative; background: #fff; padding: 12px; box-shadow: 0 20px 50px rgba(59, 0, 6, 0.15); border-radius: 8px; transition: all 0.4s ease; }
.team-photo-frame:hover { transform: scale(1.02); box-shadow: 0 30px 60px rgba(59, 0, 6, 0.25); }
.team-photo { width: 100%; height: 420px; object-fit: contain; display: block; border-radius: 4px; }
.team-name { font-family: var(--font-subtitle); font-size: clamp(28px, 3vw, 38px); font-weight: 400; font-style: italic; color: var(--burgundy); margin-bottom: 8px; text-transform: none; letter-spacing: 0; }
.team-role { font-family: var(--font-body); font-size: 12px; letter-spacing: 1px; color: var(--burgundy); opacity: 0.6; margin-bottom: 20px; text-transform: uppercase; }
.team-desc { font-family: var(--font-body); font-size: 14px; line-height: 1.9; color: var(--burgundy); opacity: 0.8; }

/* Services */
.services { background: var(--burgundy); color: var(--text-light); padding: 120px 60px; }
.services-container { max-width: 1400px; margin: 0 auto; }
.services-header { text-align: center; margin-bottom: 80px; }
.services-label { font-family: var(--font-body); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--blush); margin-bottom: 20px; opacity: 0.7; }
.services-title { font-family: var(--font-display); font-size: clamp(42px, 5vw, 68px); font-weight: normal; font-style: italic; color: var(--blush-light); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card { background: rgba(217, 186, 180, 0.1); border: 1px solid rgba(217, 186, 180, 0.2); border-radius: 24px; overflow: hidden; transition: all 0.4s ease; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3); border-color: rgba(217, 186, 180, 0.4); }
.service-image { width: 100%; height: 300px; object-fit: cover; filter: grayscale(100%); transition: filter 0.4s ease; }
.service-card:hover .service-image { filter: grayscale(0%); }
.service-content { padding: 35px; }
.service-number { display: none; }
.service-name { font-family: var(--font-subtitle); font-size: 28px; font-weight: 400; font-style: italic; color: var(--blush-light); margin-bottom: 15px; }
.service-desc { font-family: var(--font-body); font-size: 14px; line-height: 1.8; color: var(--blush); opacity: 0.85; }

/* Stages - Clean Columns */
.stages { background: var(--burgundy-dark); padding: 120px 60px; }
.stages-container { max-width: 1200px; margin: 0 auto; }
.stages-header { text-align: center; margin-bottom: 80px; }
.stages-title { font-family: var(--font-display); font-size: clamp(42px, 5vw, 68px); font-weight: normal; font-style: italic; color: var(--blush-light); line-height: 1.1; }
.stages-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 60px; margin-bottom: 80px; counter-reset: stage; }
.stage-item { display: flex; gap: 20px; align-items: flex-start; padding: 25px 30px; background: rgba(217, 186, 180, 0.05); border-radius: 16px; border-left: 3px solid var(--blush); transition: all 0.3s ease; }
.stage-item:hover { background: rgba(217, 186, 180, 0.1); transform: translateX(5px); }
.stage-number { font-family: var(--font-subtitle); font-size: 26px; font-weight: 500; font-style: italic; color: var(--blush); opacity: 0.7; line-height: 1; min-width: 40px; }
.stage-text { font-family: var(--font-body); font-size: 14px; line-height: 1.8; color: var(--blush-light); opacity: 0.9; }
.stages-image-row { display: flex; gap: 20px; justify-content: center; }
.stages-image-row img { width: calc(33.333% - 14px); height: 400px; object-fit: cover; border-radius: 16px; filter: grayscale(100%); transition: all 0.4s ease; }
.stages-image-row img:hover { filter: grayscale(0%); transform: scale(1.02); }

/* Portfolio */
.portfolio { background: var(--burgundy); padding: 120px 60px; }
.portfolio-header { text-align: center; margin-bottom: 60px; }
.portfolio-label { font-family: var(--font-body); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--blush); margin-bottom: 20px; opacity: 0.7; }
.portfolio-title { font-family: var(--font-display); font-size: clamp(42px, 5vw, 68px); font-weight: normal; font-style: italic; color: var(--blush-light); }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 30px; max-width: 1400px; margin: 0 auto; }
.portfolio-item { display: block; text-decoration: none; position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; }
.portfolio-image { width: 100%; height: 100%; }
.portfolio-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: all 0.5s ease; }
.portfolio-item:hover .portfolio-image img { filter: grayscale(0%); transform: scale(1.05); }
.portfolio-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 30px; background: linear-gradient(transparent, rgba(59, 0, 6, 0.9)); display: flex; flex-direction: column; gap: 5px; }
.portfolio-item-title { font-family: var(--font-subtitle); font-size: 22px; color: var(--blush-light); letter-spacing: 1px; }
.portfolio-item-subtitle { font-family: var(--font-body); font-size: 13px; color: var(--blush); opacity: 0.8; }
.portfolio-cta { text-align: center; margin-top: 60px; }
.portfolio-btn { font-family: var(--font-body); display: inline-flex; align-items: center; gap: 12px; padding: 18px 45px; border: 1px solid var(--blush); border-radius: 50px; color: var(--blush); text-decoration: none; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; transition: all 0.4s ease; }
.portfolio-btn:hover { background: var(--blush); color: var(--burgundy); }
.portfolio-btn i { transition: transform 0.3s ease; }
.portfolio-btn:hover i { transform: translateX(5px); }

/* Contact */
.contact { background: var(--blush); padding: 120px 60px; }
.contact-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info { padding-top: 20px; }
.contact-label { font-family: var(--font-body); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--burgundy); margin-bottom: 20px; opacity: 0.7; }
.contact-title { font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 56px); font-weight: normal; font-style: italic; color: var(--burgundy); margin-bottom: 20px; line-height: 1.2; }
.contact-text { font-family: var(--font-subtitle); font-size: 18px; font-style: italic; line-height: 1.7; opacity: 0.85; margin-bottom: 40px; color: var(--burgundy); }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-link { display: flex; align-items: center; gap: 15px; color: var(--burgundy); text-decoration: none; font-size: 15px; transition: all 0.3s ease; }
.contact-link:hover { opacity: 0.7; transform: translateX(5px); }
.contact-link i { width: 45px; height: 45px; border: 1px solid rgba(59, 0, 6, 0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: all 0.3s ease; }
.contact-link:hover i { background: var(--burgundy); color: var(--blush); border-color: var(--burgundy); }
.contact-form-wrap { background: var(--cream); border-radius: 30px; padding: 50px; box-shadow: 0 30px 60px rgba(59, 0, 6, 0.1); }
.contact-form-title { font-family: var(--font-subtitle); font-size: 26px; font-style: italic; color: var(--burgundy); margin-bottom: 30px; }
.form-group { margin-bottom: 20px; }
.form-label { font-family: var(--font-body); display: block; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--burgundy); margin-bottom: 8px; opacity: 0.7; }
.form-input { width: 100%; padding: 15px 20px; border: 1px solid rgba(59, 0, 6, 0.15); border-radius: 50px; background: #fff; color: var(--burgundy); font-family: var(--font-body); font-size: 14px; transition: all 0.3s ease; }
.form-input:focus { outline: none; border-color: var(--burgundy); box-shadow: 0 0 0 3px rgba(59, 0, 6, 0.1); }
textarea.form-input { border-radius: 20px; min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-submit { width: 100%; padding: 18px 40px; background: var(--burgundy); border: none; border-radius: 50px; color: var(--blush); font-family: var(--font-body); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: all 0.4s ease; margin-top: 10px; }
.form-submit:hover { background: var(--burgundy-dark); transform: translateY(-3px); box-shadow: 0 15px 40px rgba(59, 0, 6, 0.3); }
.form-success { background: rgba(16, 81, 16, 0.1); border: 1px solid rgba(16, 81, 16, 0.3); color: #21592b; padding: 15px 20px; border-radius: 12px; margin-bottom: 20px; font-size: 14px; }
.form-errors { background: rgba(139, 26, 26, 0.1); border: 1px solid rgba(139, 26, 26, 0.3); color: #8b1a1a; padding: 15px 20px; border-radius: 12px; margin-bottom: 20px; font-size: 14px; }
.form-errors ul { margin: 0; padding-left: 20px; }

/* Footer */
.footer { background: var(--burgundy-dark); padding: 60px; text-align: center; }
.footer-logo { margin-bottom: 30px; display: flex; justify-content: center; }
.footer-logo-img { width: 200px; height: auto; filter: drop-shadow(0 0 15px rgba(217, 186, 180, 0.3)); transition: all 0.3s ease; }
.footer-logo-img:hover { filter: drop-shadow(0 0 25px rgba(217, 186, 180, 0.5)); transform: scale(1.02); }
.footer-socials { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
.footer-social { width: 50px; height: 50px; border: 1px solid rgba(217, 186, 180, 0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--blush); text-decoration: none; font-size: 18px; transition: all 0.3s ease; }
.footer-social:hover { background: var(--blush); color: var(--burgundy); border-color: var(--blush); transform: translateY(-3px); }
.footer-copy { font-size: 13px; opacity: 0.6; color: var(--blush); }

/* Animations */
.reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
    .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.4s ease, transform 0.4s ease; }
    .reveal.active { opacity: 1; transform: translateY(0); }
    .reveal-left { opacity: 0; transform: translateX(-20px); transition: opacity 0.4s ease, transform 0.4s ease; }
    .reveal-left.active { opacity: 1; transform: translateX(0); }
    .reveal-right { opacity: 0; transform: translateX(20px); transition: opacity 0.4s ease, transform 0.4s ease; }
    .reveal-right.active { opacity: 1; transform: translateX(0); }
}

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: var(--burgundy); z-index: 999; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 30px; transition: right 0.4s ease; }
.mobile-menu.open { right: 0; }
.mobile-menu a { font-family: var(--font-display); font-size: 32px; font-style: italic; color: var(--blush); text-decoration: none; }

.hp-field { position: absolute; left: -9999px; }

/* Responsive */
@media (max-width: 1024px) {
    .nav { padding: 20px 30px; }
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .about { padding: 80px 30px; }
    .about-header { grid-template-columns: 1fr; gap: 40px; }
    .about-grid { grid-template-columns: repeat(2, 1fr); }
    .team { padding: 80px 30px; }
    .team-member { grid-template-columns: 1fr; gap: 40px; }
    .team-member:nth-child(even) { direction: ltr; }
    .services { padding: 80px 30px; }
    .services-grid { grid-template-columns: 1fr; gap: 40px; }
    .stages { padding: 80px 30px; }
    .stages-grid { grid-template-columns: repeat(2, 1fr); }
    .stages-image-row { flex-direction: column; }
    .stages-image-row img { width: 100%; height: 300px; }
    .contact { padding: 80px 30px; }
    .contact-container { grid-template-columns: 1fr; gap: 50px; }
}
@media (max-width: 768px) {
    .hero { padding: 100px 20px 60px; }
    .hero-logo { max-width: 300px; }
    .about-grid { grid-template-columns: 1fr; }
    .team-photo { height: 320px; }
    .stages-grid { grid-template-columns: 1fr; }
    .stage-item { padding: 20px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 30px; }
    .footer { padding: 40px 20px; }
    .gallery-marquee img { width: 280px; height: 200px; }
}
