﻿@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Outfit:wght@100..900&display=swap');

/* ==========================================================================
   1. GLOBAL RESETS & TYPOGRAPHY
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    color: #000000;
    overflow-x: hidden;
    font-family: "Manrope", sans-serif;
    overscroll-behavior: none; 
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Dark Theme Trigger (Προσθέτεις το class="dark-theme" στο <body>) --- */
body.dark-theme {
    background-color: #000000;
    color: #ffffff;
}

body.dark-theme-soft { /* Εναλλακτικό για το dark grey background */
    background-color: #1e1e1e;
    color: #ffffff;
}

.global-padding {
    padding-left: clamp(20px, 4vw, 40px);
    padding-right: clamp(20px, 4vw, 40px);
    width: 100%;
}

/* ==========================================================================
   2. HEADER & NAVIGATION (Κοινό σε όλες τις σελίδες)
   ========================================================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #ffffff;
    position: relative;
    height: 80px; 
    z-index: 100;
    font-weight: bold;
}

.logo a {
    text-decoration: none;
    color: #000000;
    font-size: clamp(1.4rem, 2vw, 1.9rem);
    letter-spacing: 1px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    margin-left: 10%;
}

.nav-group-center {
    display: flex;
    gap: 30px;
    margin-right: auto;
    align-items: center;
}

.nav-group-end {
    display: flex;
    gap: 10px;
    margin-left: 5%;
}

.nav-link {
    text-decoration: none;
    color: #000000;
    font-size: 1.25rem;
    letter-spacing: 1px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
}

/* --- Dropdown Menu --- */
.dropdown { position: relative; display: inline-block; }
.dropdown-trigger { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.nav-plus { font-weight: 600; font-size: 1.2rem; color: #000; transition: transform 0.3s ease; }
.dropdown::after { content: ''; position: absolute; top: 100%; left: 0; width: 100%; height: 15px; background: transparent; z-index: 999; display: none; }

.dropdown-menu {
    display: none; position: absolute; top: calc(100% + 15px); left: 0; 
    background-color: #ffffff; min-width: 300px; box-shadow: 0px 8px 30px rgba(0,0,0,0.08); 
    list-style: none; padding: 15px 0; z-index: 1000; border: 1px solid rgba(0,0,0,0.03); border-radius: 4px;
}

.dropdown-menu li a {
    color: #000; padding: 10px 25px; text-decoration: none; display: block;
    font-size: 0.95rem; text-transform: uppercase; font-weight: 600; letter-spacing: 1px;
    transition: background 0.3s ease, padding-left 0.3s ease;
}

.dropdown-menu li a:hover { background-color: #f5f5f5; padding-left: 30px; }

@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu, .dropdown:hover::after { display: block; }
    .dropdown:hover .nav-plus { transform: rotate(90deg); }
}

.burger-menu { display: none; cursor: pointer; flex-direction: column; gap: 6px; z-index: 101; }
.burger-bar { width: 28px; height: 2px; background-color: #000; transition: all 0.3s ease; }


/* ==========================================================================
   3. SHARED PAGE SECTIONS (Triptych, Info, Projects)
   ========================================================================== */
.triptych-section { padding-top: 0px; padding-bottom: 0px; }
.triptych-wrapper { display: flex; width: 100%; height: calc(100vh - 140px); gap: 0px; min-height: 500px; }
.triptych-item { position: relative; overflow: hidden; background-color: #e0e0e0; will-change: width; }
.triptych-item.side { width: 33.333%; }
.triptych-item.center { width: 33.333%; }
.triptych-item img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }

.center-title {
position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 300;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  writing-mode: sideways-lr;
  text-orientation: mixed;
  z-index: 2;
  pointer-events: none;
  padding: 20px 10px;
  font-family: "Manrope", sans-serif;
  line-height: 1;
}

/* Dark variations */
.dark-theme .triptych-item { background-color: #111; }
.dark-theme .center-title { color: #fff; }

.info-section { padding-top: clamp(40px, 8vw, 80px); padding-bottom: clamp(50px, 10vw, 100px); font-family: "Manrope", sans-serif; color: #000; }
.info-title { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 800; line-height: 1.1; margin-bottom: clamp(30px, 5vw, 50px); text-transform: uppercase; }
.info-content-wrapper { position: relative; display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.info-text-column { width: 33.3%; font-size: clamp(1rem, 1.5vw, 1.2rem); line-height: 1.6; font-weight: 600; }
.info-text-column p { margin-bottom: 25px; }
.info-link { font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 600; text-decoration: none; color: #000; display: flex; align-items: center; gap: 15px; transition: opacity 0.3s ease; white-space: nowrap; }
.info-link:hover { opacity: 0.6; }

/* Dark variations */
.dark-theme .info-section, .dark-theme .info-title, .dark-theme .info-link { color: #fff; }

/* Masonry Projects */
.projects-masonry-section { padding-top: clamp(20px, 5vw, 40px); padding-bottom: clamp(60px, 10vw, 100px); overflow: hidden; }
.projects-layout { column-count: 2; column-gap: clamp(20px, 4vw, 40px); width: 100%; }
.project-item { display: flex; flex-direction: column; gap: 15px; opacity: 0; transform: translateY(50px); break-inside: avoid; page-break-inside: avoid; margin-bottom: clamp(40px, 6vw, 60px); }
.project-title { font-size: 0.83rem; font-weight: 600; letter-spacing: 0.15em; color: #000; text-transform: uppercase; }
.project-img-wrapper { width: 100%; background-color: #f4f4f4; overflow: hidden; }
.project-img-wrapper img { width: 100%; height: auto; display: block; }

/* Dark variations */
.dark-theme .project-title { color: #fff; }
.dark-theme .project-img-wrapper { background-color: #1a1a1a; }

/* Editorial Hero */
.editorial-hero { width: 100%; display: flex; flex-direction: column; }
.hero-top-block { background-color: #bebcbc; padding: clamp(40px, 8vw, 60px) 20px; text-align: center; }
.hero-chapter { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: #000; margin-bottom: 30px; }
.hero-main-title { font-family: "Manrope", sans-serif; font-size: clamp(2rem, 5vw, 5rem); font-weight: 300; text-transform: uppercase; color: #000; line-height: 1.1; letter-spacing: -0.02em; }
.hero-bottom-block { background-color: #1e1e1e; padding: clamp(30px, 5vw, 40px) 20px; text-align: center; }
.hero-subtitle { font-family: "Manrope", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 200;
  color: #fff;
  line-height: 1.4; }
.hero-subtitle em { font-style: italic; }

/* Dark variations */
.dark-theme .hero-top-block { background-color: #111; }
.dark-theme .hero-chapter { color: #aaa; font-weight: 300; }
.dark-theme .hero-main-title { color: #fff; }
.dark-theme .hero-bottom-block { background-color: #0a0a0a; border-top: 1px solid #222; }

/* 100vh Images Grid */
.index-container { display: grid; grid-template-columns: 1fr; width: 100%; height: auto; min-height: 100vh; background-color: #ffffff; padding: clamp(20px, 4vw, 60px); gap: clamp(20px, 4vw, 60px); }
.column { display: flex; flex-direction: column; justify-content: space-between; height: 50vh; }
.image-wrapper { position: relative; width: 100%; flex-grow: 1; min-height: 0; }
.main-img { width: 100%; height: 100%; display: block; object-fit: cover; }
.project-badge { position: absolute; top: 20px; left: 20px; background-color: #000; color: #fff; text-decoration: none; font-weight: 600; font-size: 0.75rem; letter-spacing: 0.1em; padding: 12px 24px; text-transform: uppercase; transition: background-color 0.3s ease; z-index: 10; }
.project-badge:hover { background-color: #222; }

.grid-overlap-container { display: grid; grid-template-columns: repeat(12, 1fr); position: relative; width: 100%; flex-grow: 1; min-height: 0; }
.bg-image-wrapper { grid-column: 1 / 11; grid-row: 1; z-index: 1; height: 100%; }
.overlapped-image-wrapper { grid-column: 8 / 13; grid-row: 1; z-index: 2; align-self: center; opacity: 0.95; filter: drop-shadow(-10px 10px 25px rgba(0,0,0,0.15)); height: auto; max-height: 80%; }
.overlap-img { width: 100%; height: auto; display: block; object-fit: contain; }
.column-footer { padding-top: 15px; flex-shrink: 0; }
.column-footer h2 { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; color: #000; text-transform: uppercase; }

/* Dark variations */
.dark-theme .index-container { background-color: #000; }
.dark-theme .project-badge { background-color: #fff; color: #000; }
.dark-theme .project-badge:hover { background-color: #ccc; }
.dark-theme .column-footer h2 { color: #fff; }


/* ==========================================================================
   4. UNIQUE COMPONENTS & SECTIONS
   ========================================================================== */

/* --- Gradient Body Panel (Από Page 1) --- */
.body2 { background: linear-gradient(to bottom, rgba(82, 82, 82, 0.84) 0%, rgba(0, 0, 0, 0.74) 50%, rgba(4, 4, 4, 0.9) 100%); color: #ffffff; min-height: 600px; display: flex; justify-content: center; align-items: center; padding: 20px; overflow-x: hidden; }
.panel-container { text-align: center; max-width: 900px; width: 100%; height: 400px; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 20px; }
.panel-container .top-accent { font-size: clamp(0.65rem, 1.5vw, 0.75rem); text-transform: uppercase; letter-spacing: 0.5em; color: #fff; margin-bottom: 1.5rem; font-weight: 400; }
.panel-container .main-title { font-size: clamp(1.6rem, 4vw, 3rem); text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.2; font-weight: 200; color: #ffffff; margin-bottom: 0.5rem; }
.panel-container .italic-subtitle { font-style: italic; font-size: clamp(1.8rem, 5vw, 2.8rem); color: #9e9e9e; text-transform: lowercase; font-weight: 100; margin-bottom: 1.8rem; display: block; }
.panel-container .description { font-size: clamp(0.85rem, 1.8vw, 1rem);
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #a0a0a0;
  max-width: 650px;
  margin: 0 auto;
  font-weight: 100;}

/* --- Brutal Contact Form (Από Page 2) --- */
.brutal-container { width: 100%; margin: 0 auto; display: flex; flex-direction: column; gap: 60px; padding-top: 80px; padding-bottom: 80px; }
.brutal-container .main-title { font-weight: 600; font-size: clamp(3.5rem, 8vw, 7.5rem); line-height: 0.85; text-transform: uppercase; letter-spacing: -4px; word-wrap: break-word; color: #fff; }
.brutal-container .main-title span { display: block; }
.brutal-container .main-title .italic-text { font-style: italic; color: #aaa; }
.hero-image-wrapper { width: 100%; aspect-ratio: 2 / 1; background-color: #1a1a1a; border: 1px solid #2d2d2d; }
.hero-image-wrapper img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(110%); display: block; }
.content-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: flex-start; }
.cta-heading { font-weight: 600; font-size: clamp(2rem, 4vw, 3.8rem); line-height: 1.0; letter-spacing: -1px; max-width: 550px; color:#fff; }
.brutal-form { display: flex; flex-direction: column; gap: 35px; }
.form-row { display: flex; gap: 30px; }
.form-group { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.brutal-form label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: #888888; }
.brutal-form input[type="text"], .brutal-form input[type="email"], .brutal-form select, .brutal-form textarea { width: 100%; background-color: transparent; border: none; border-bottom: 2px solid #ffffff; color: #ffffff; font-family: 'Courier New', Courier, monospace; font-size: 1rem; padding: 10px 0; outline: none; border-radius: 0; appearance: none; -webkit-appearance: none; }
.brutal-form select { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white'><path d='M0 3h12L6 10z'/></svg>"); background-repeat: no-repeat; background-position: right center; cursor: pointer; }
.brutal-form textarea { height: 80px; resize: none; }
.brutal-form input:focus, .brutal-form select:focus, .brutal-form textarea:focus { border-bottom-color: #555555; }
.budget-container { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 5px; }
.budget-radio { position: relative; }
.budget-radio input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.budget-label { display: inline-block; border: 1px solid #444444; padding: 8px 18px; font-size: 0.8rem; cursor: pointer; transition: all 0.2s ease; color: #ffffff; }
.budget-radio input[type="radio"]:checked + .budget-label { background-color: #ffffff; color: #000000; border-color: #ffffff; font-weight: bold; }
.budget-label:hover { border-color: #ffffff; }
.submit-btn { background-color: transparent; border: 2px solid #ffffff; color: #ffffff; padding: 18px; font-family: 'Courier New', Courier, monospace; font-size: 1rem; font-weight: bold; text-transform: uppercase; letter-spacing: 2px; cursor: pointer; width: 100%; transition: all 0.3s ease; margin-top: 15px; }
.submit-btn:hover { background-color: #ffffff; color: #000000; }

/* --- Portfolio Gallery (Από Page 3) --- */
.portfolio-container { width: 95%; display: flex; flex-direction: column; gap: 40px; margin: 50px auto; padding-top: 10px; }
.portfolio-container p, .text-content { font-family: 'Courier New', Courier, monospace !important; margin: 0 0 15px; }
.intro-section { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: stretch; min-height: 500px; }
.intro-left { display: flex; flex-direction: column; justify-content: space-between; }
.header-title { font-weight: 600; font-size: clamp(2.5rem, 5.5vw, 5.5rem); line-height: 0.9; text-transform: uppercase; letter-spacing: -2px; margin-bottom: 40px; color: #000; }
.header-title2
{
    font-weight: 600;
  font-size: clamp(2.5rem, 5.5vw, 5.5rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -2px;
  color: #fff;
}
.header-title span { display: block; }
.header-title .italic-text { font-style: italic; padding-left: 15px; color: #6c6c6c; }
.intro-bottom-row { display: flex; gap: 30px; align-items: flex-end; }
.intro-small-img { width: 150px; aspect-ratio: 1 / 1.1; flex-shrink: 0; background-color: #2b2b2b; }
.intro-small-img img, .grid-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.intro-section .bio-text { font-size: 0.85rem; line-height: 1.6; text-align: justify; max-width: 400px; opacity: 0.9; }
.intro-right-img { background-color: #2b2b2b; }
.intro-right-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-landscape { width: 100%; aspect-ratio: 2.1 / 1; background-color: #2b2b2b; margin: 20px 0; }
.feature-landscape img { width: 100%; height: 100%; object-fit: cover; display: block; }
li
{
    border-bottom: none !important;
}
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 30px; grid-auto-flow: dense; }
.grid-item { min-height: 200px; }
.item-tall-left { grid-column: span 5; grid-row: span 2; aspect-ratio: 1 / 1.6; }
.item-small-top-right { grid-column: span 4; grid-column-start: 9; aspect-ratio: 1.6 / 1; }
.item-dark-box-center { grid-column: span 4; grid-column-start: 7; aspect-ratio: 1 / 1; opacity: 0.4; }
.item-square-mid-left { grid-column: span 5; aspect-ratio: 1 / 1; }
.item-tall-mid-right { grid-column: span 4; grid-row: span 2; aspect-ratio: 1 / 1.5; }
.item-vertical-stack-1 { grid-column: span 5; aspect-ratio: 1 / 1.2; }
.item-vertical-stack-2 { grid-column: span 4; aspect-ratio: 1 / 1.1; }
.item-bottom-left-tall { grid-column: span 5; aspect-ratio: 1 / 1.2; }
.item-bottom-right-small { grid-column: span 4; aspect-ratio: 1 / 1.2; }
.item-bottom-corner { grid-column: span 4; aspect-ratio: 1 / 1.3; }

/* --- Company & Design Sections (Από Page 4) --- */
.company-section { padding-top: 80px; padding-bottom: 80px; }
.container1 { display: flex; max-width: 1100px; width: 100%; gap: 60px; align-items: stretch; margin: 0 auto; }
.content-section { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; border: 1px solid #fff; padding: 40px; }
h1.company-title { font-weight: 900; font-size: 2.5rem; letter-spacing: -1px; margin-bottom: 40px; text-transform: uppercase; color: #fff; }
.company-section .bio-text { font-size: 0.95rem; line-height: 1.6; color: #fff; font-family: 'Courier New', Courier, monospace; }
.company-section .bio-text p { margin-bottom: 20px; }
.image-section { flex: 1; display: flex; justify-content: flex-end; }
.image-container { width: 100%; max-width: 500px; aspect-ratio: 1 / 1.35; background-color: #222; overflow: hidden; }
.image-container img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); display: block; }

.design-section { padding-top: 80px; padding-bottom: 120px; background-color: #000000; }
.container2 { display: flex; max-width: 1100px; width: 100%; gap: 50px; align-items: stretch; margin: 0 auto; }
.left-content { flex: 1.2; display: flex; flex-direction: column; justify-content: space-between; text-align: right; }
.design-section .header-title { margin-bottom: 60px; }
.bottom-row { display: flex; gap: 40px; align-items: flex-end; }
.small-img-container { width: 180px; flex-shrink: 0; aspect-ratio: 1 / 1.1; background-color: #222; }
.small-img-container img { width: 100%; height: 100%; object-fit: cover; display: block; }
.design-section .bio-text { font-size: 0.9rem; line-height: 1.6; text-align: justify; max-width: 420px; color: #ccc; }
.design-section .bio-text p { margin-bottom: 15px; }
.right-content { flex: 0.9; display: flex; justify-content: flex-end; border: 1px solid #fff; padding: 20px; }
.large-img-container { width: 100%; height: 100%; min-height: 550px; background-color: #222; }
.large-img-container img { width: 100%; height: 100%; object-fit: cover; display: block; }


/* ==========================================================================
   5. LUXURY FOOTER (Κοινό σε όλες τις σελίδες)
   ========================================================================== */
.site-footer { background-color: #1e1e1e; color: #ffffff; padding: clamp(3rem, 8vw, 5rem) clamp(20px, 4vw, 4rem) 2rem; position: relative; z-index: 10; overflow: hidden; border-top: 1px solid #222; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(2rem, 4vw, 3rem); margin-bottom: clamp(3rem, 6vw, 4rem); position: relative; z-index: 2; }
.footer-column h3 { font-size: clamp(2rem, 2.5vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.2rem;
  font-weight: 800;
  color: #b8b8b8; }
.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 0.8rem; }
.footer-column ul li a { color: #ffffff; text-decoration: none; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.6; transition: opacity 0.3s; }
.footer-column ul li a:hover { opacity: 1; }
.footer-column p { font-size: 0.9rem; line-height: 1.6; opacity: 0.8; }
.footer-column .italic-text { font-family: 'Georgia', serif; font-style: italic; opacity: 0.7; }
.footer-giant-logo { text-align: center; margin-bottom: clamp(1rem, 4vw, 2rem); user-select: none; opacity: 0; transform: translateY(100px); width: 100%; overflow: hidden; display: flex; justify-content: center; }
.giant-text { font-family: "Manrope", sans-serif; font-size: clamp(1.8rem, 7.5vw, 9rem); line-height: 1; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: #ffffff; white-space: nowrap; }
.footer-bottom { border-top: 1px dashed rgba(255, 255, 255, 0.15); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.5; position: relative; z-index: 2; }
.footer-bottom-links a { color: #fff; text-decoration: none; margin-left: 1.5rem; transition: opacity 0.3s;}
.footer-bottom-links a:hover { opacity: 1; }


/* ==========================================================================
   6. RESPONSIVE MEDIA QUERIES (Mobile Οργάνωση)
   ========================================================================== */
@media (min-width: 769px) {
    .index-container { grid-template-columns: 1fr 1fr; height: 100vh; }
    .column { height: 100%; }
    .overlapped-image-wrapper { transform: translateY(-20px); }
}

@media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .grid-item, .item-tall-left, .item-small-top-right, .item-dark-box-center, .item-square-mid-left, .item-tall-mid-right, .item-vertical-stack-1, .item-vertical-stack-2, .item-bottom-left-tall, .item-bottom-right-small, .item-bottom-corner {
        grid-column: span 1 !important; grid-row: span 1 !important; aspect-ratio: 1 / 1; 
    }
    .item-tall-left, .item-tall-mid-right { aspect-ratio: 1 / 1.4; }
}

@media (max-width: 992px) {
    .nav-container { margin-left: auto; justify-content: flex-end; gap: 30px; }
    .nav-group-center { display: none; }
    .burger-menu { display: flex; }
    .nav-group-end { display: none; }

    .info-content-wrapper { flex-direction: column; align-items: flex-start; }
    .info-text-column { width: 100%; }
    .info-link { align-self: flex-start; margin-top: 10px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    
    .content-grid { grid-template-columns: 1fr; gap: 50px; }
    .cta-heading { max-width: 100%; }

    .container1 { flex-direction: column-reverse; gap: 40px; }
    .content-section { justify-content: flex-start; padding: 20px; }
    .image-section { justify-content: center; width: 100%; }
    .image-container { max-width: 100%; }

    .container2 { flex-direction: column; gap: 40px; }
    .left-content { justify-content: flex-start; text-align: left; }
    .design-section .header-title { margin-bottom: 40px; }
    .large-img-container { min-height: 450px; }
}

@media (max-width: 768px) {
    /* Mobile Drawer Blur Navigation */
    .nav-container {
        position: fixed; top: 0; right: -100%; width: 100%; max-width: 320px; height: 100vh;
        background-color: rgba(255, 255, 255, 0.96); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
        box-shadow: -10px 0 30px rgba(0,0,0,0.05); flex-direction: column; justify-content: flex-start;
        align-items: flex-start; padding: 100px 30px 40px; gap: 30px; transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        margin: 0; z-index: 99; overflow-y: auto;
    }
    .nav-group-center, .nav-group-end { display: flex; flex-direction: column; gap: 20px; margin: 0; width: 100%; align-items: flex-start; }
    .nav-group-end { margin-top: auto; padding-top: 30px; border-top: 1px solid rgba(0,0,0,0.1); }
    .nav-container.active { right: 0; }
    
    .burger-menu { z-index: 101; }
    .burger-menu.active .burger-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .burger-menu.active .burger-bar:nth-child(2) { opacity: 0; }
    .burger-menu.active .burger-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .dropdown { width: 100%; }
    .dropdown-trigger { justify-content: space-between; width: 100%; }
    .nav-plus { font-size: 1.5rem; transition: transform 0.3s ease; }
    .dropdown-menu { position: relative; top: 0; left: 0; box-shadow: none; border: none; border-left: 2px solid #000; border-radius: 0; padding: 10px 0 10px 20px; margin-top: 10px; width: 100%; background: transparent; }
    .dropdown-menu.mobile-active { display: block; }
    .dropdown.mobile-active .nav-plus { transform: rotate(45deg); }
    .dropdown-menu li a { padding: 8px 0; font-size: 1rem; }

    .triptych-wrapper { min-height: 60vh; }
    .triptych-item.side { width: 15%; }
    .triptych-item.center { width: 70%; }
    .projects-layout { column-count: 1; }
    .index-container { display: flex; flex-direction: column; }
    .column { height: 60vh; }
    
    .intro-section { grid-template-columns: 1fr; min-height: auto; }
    .intro-bottom-row { flex-direction: column-reverse; align-items: flex-start; margin-bottom: 20px; }
    .intro-small-img { width: 100%; max-width: 200px; }
    .feature-landscape { aspect-ratio: 1.5 / 1; }

    .panel-container { height: 600px; }
    .panel-container .top-accent { letter-spacing: 0.3em; margin-bottom: 1.2rem; }
    .panel-container .italic-subtitle { margin-bottom: 1.5rem; }

    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; }
    .footer-column:last-child { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .footer-bottom-links { display: flex; gap: 15px; justify-content: center;}
    .footer-bottom-links a { margin-left: 0; }
}

@media (max-width: 600px) {
    .brutal-container { gap: 40px; padding-left: 20px; padding-right: 20px; }
    .form-row { flex-direction: column; gap: 35px; }
    .hero-image-wrapper { aspect-ratio: 1.5 / 1; }
    
    .bottom-row { flex-direction: column-reverse; align-items: flex-start; gap: 30px; }
    .small-img-container { width: 100%; max-width: 240px; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; gap: 15px; }
    .grid-item { aspect-ratio: 1 / 1 !important; }
}