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

body {
background: #1E1E1E;
color: #FFFCCC;
font-family: 'Poppins', sans-serif;
overflow-x: hidden;
}

.split-page {
display: flex;
min-height: 100vh;
}

/* LEFT PANEL */

.media-panel {
width: 80vh;
max-width: 720px;
min-width: 420px;
height: 100vh;
position: sticky;
top: 0;
overflow: hidden;
background: #111111;
}

.media-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.35s ease;

    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
}
.image-shield {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.watermark {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 4;

    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.08em;

    color: rgba(255, 252, 204, 0.45);

    pointer-events: none;
}

.caption {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
padding: 46px;
background: linear-gradient(
to top,
rgba(0,0,0,0.85),
transparent
);
}

.caption h2 {
font-size: 12px;
font-weight: 600;
letter-spacing: 0.15em;
margin-bottom: 8px;
}

.caption p {
font-size: 12px;
font-weight: 300;
opacity: 0.85;
}

/* RIGHT PANEL */

.content-panel {
flex: 1;
padding: 50px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}

.logo {
margin-bottom: 50px;
text-align: center;
}

.logo img {
width: 150px;
height: auto;
display: block;
margin: 0 auto;
}

.logo-description {
max-height: 0;
opacity: 0;
overflow: hidden;
max-width: 620px;
transition: all 0.4s ease;
}

.logo-description p {
font-size: 16px;
line-height: 1.9;
font-weight: 300;
margin-top: 20px;
}

.logo:hover .logo-description {
max-height: 300px;
opacity: 1;
margin-top: 20px;
}

/* PILLARS */

.pillars {
width: 100%;
max-width: 700px;
margin-bottom: 58px;
}

.pillar {
padding: 26px 0;
border-top: 1px solid rgba(255,252,204,0.15);
}

.pillar:last-child {
border-bottom: 1px solid rgba(255,252,204,0.15);
}

.pillar h2 {
font-size: 50px;
font-weight: 500;
line-height: 1;
color: #FFFCCC;
transition: all 0.3s ease;
}

.pillar:hover {
cursor: pointer;
}

.pillar:hover h2 {
color: #F2541B;
}

.pillar-description {
max-height: 0;
opacity: 0;
overflow: hidden;
margin: 0 auto;
max-width: 600px;
font-size: 14px;
font-weight: 300;
line-height: 1.8;
transition: all 0.35s ease;
}

.pillar:hover .pillar-description {
max-height: 180px;
opacity: 1;
margin-top: 16px;
}

/* BUTTONS */

.actions {
display: flex;
justify-content: center;
gap: 18px;
flex-wrap: wrap;
}

.button {
border: 1px solid #FFFCCC;
color: #FFFCCC;
padding: 14px 26px;
font-size: 10px;
font-weight: 500;
letter-spacing: 0.15em;
text-decoration: none;
transition: all 0.3s ease;
}

.button:hover {
background: #F2541B;
border-color: #F2541B;
color: #FFFCCC;
transform: translateY(-2px);
}

/* CONTACT */

.contact {
margin-top: 48px;
max-width: 520px;
text-align: center;
}

.contact-label {
font-size: 9px;
font-weight: 600;
letter-spacing: 0.18em;
margin-bottom: 8px;
color: #F2541B;
}

.contact p {
font-size: 12px;
line-height: 1.8;
}

.socials {
margin-top: 24px;
display: flex;
justify-content: center;
gap: 18px;
flex-wrap: wrap;
}

.socials a {
color: #FFFCCC;
text-decoration: none;
font-size: 12px;
transition: color 0.3s ease;
}

.socials a:hover {
color: #F2541B;
}

.footer-note {
margin-top: 48px;
font-size: 11px;
font-weight: 300;
letter-spacing: 0.08em;
color: rgba(255,252,204,0.5);
text-align: center;
}

.footer-note strong {
color: #FFFCCC;
font-weight: 500;
}

/* MOBILE */

@media (max-width: 1200px) {

```
.split-page {
    flex-direction: column;
}

.media-panel {
    width: 100%;
    max-width: none;
    min-width: 0;
    height: auto;
    aspect-ratio: 4 / 5;
    position: relative;
}

.content-panel {
    padding: 40px 28px;
}

.logo img {
    width: 150px;
}

.logo-description p {
    font-size: 14px;
}

.pillar h2 {
    font-size: 34px;
}

.pillar-description {
    font-size: 13px;
    max-width: 100%;
}

.actions {
    flex-direction: column;
    width: 100%;
}

.socials {
    flex-direction: column;
    gap: 10px;
}
```

}
