/* Pro Sessions Editorial Design */
:root {
    --bg-main: #ffffff;
    --text-high: #111111;
    --text-mid: #555555;
    --accent-line: #e0e0e0;
    --spacing-unit: 1.5rem;
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-high);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.layout-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

@media (max-width: 768px) {
    .layout-wrapper {
        padding: 0 1.5rem;
    }
}

/* Header */
.top-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 0;
    border-bottom: 1px solid var(--accent-line);
}

.brand-identity {
    font-size: 1.25rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 3rem;
}

.menu-link {
    text-decoration: none;
    color: var(--text-high);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-high);
    transition: width 0.3s;
}

.menu-link:hover::after {
    width: 100%;
}

/* Hero */
.hero-editorial {
    padding: 8rem 0;
    display: flex;
    gap: 6rem;
    align-items: flex-start;
}

@media (max-width: 1024px) {
    .hero-editorial {
        flex-direction: column;
        padding: 4rem 0;
    }
}

.editorial-copy {
    flex: 1;
}

.editorial-copy h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.9;
    margin-bottom: 3rem;
    font-style: italic;
}

.editorial-intro {
    font-size: 1.5rem;
    color: var(--text-mid);
    max-width: 500px;
    margin-bottom: 4rem;
    font-weight: 300;
}

.hero-visual {
    flex: 1.2;
}

.hero-visual img {
    width: 100%;
    filter: grayscale(1);
    transition: filter 0.5s;
}

.hero-visual img:hover {
    filter: grayscale(0);
}

/* Content Grid */
.session-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    padding: 8rem 0;
    border-top: 1px solid var(--accent-line);
}

@media (max-width: 900px) {
    .session-info {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.info-sidebar h2 {
    font-size: 3rem;
    position: sticky;
    top: 4rem;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.feature-block {
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--accent-line);
}

.feature-block h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-block p {
    font-size: 1.1rem;
    color: var(--text-mid);
}

/* Enrollment */
.contact-minimal {
    padding: 10rem 0;
    text-align: center;
}

.form-minimal {
    max-width: 600px;
    margin: 4rem auto 0;
}

.minimal-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--text-high);
    padding: 1rem 0;
    font-size: 1.25rem;
    margin-bottom: 3rem;
    font-family: inherit;
}

.minimal-input:focus {
    outline: none;
}

.minimal-submit {
    background: var(--text-high);
    color: #fff;
    padding: 1.5rem 4rem;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

/* Footer */
.editorial-footer {
    padding: 6rem 0;
    border-top: 1px solid var(--accent-line);
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-mid);
}

@media (max-width: 600px) {
    .editorial-footer {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Cookie Banner */
.privacy-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    color: #fff;
    padding: 1.5rem;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
}

.notice-btn {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    padding: 0.5rem 2rem;
    cursor: pointer;
}

/* Success Message */
.submission-alert {
    display: none;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-top: 2rem;
}
