/* CSS RESET & FONTS (Apple System Fonts) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #FFFFFF;
    color: #000000;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 40px 80px;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
}

/* HEADER SECTION */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8vh;
}

.logo {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.logo a {
    color: #000000;
    text-decoration: none;
}

.year {
    font-weight: 300;
    color: #86868b;
    margin-left: 4px;
}

/* MAIN & CONTENT */
main {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content {
    max-width: 720px;
    width: 100%;
    margin-bottom: 14vh;
    text-align: left;
}

/* HERO AREA */
.hero {
    max-width: 680px;
    margin-bottom: 10vh;
}

/* TYPOGRAPHY */
h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.08349;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 24px;
}

.subtitle {
    font-size: 21px;
    line-height: 1.42859;
    font-weight: 400;
    color: #86868b;
    margin-bottom: 48px;
}

.subline {
    font-size: 21px;
    line-height: 1.42859;
    font-weight: 400;
    color: #1d1d1f;
    margin-bottom: 40px;
}

h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-top: 56px;
    margin-bottom: 20px;
    color: #1d1d1f;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1d1d1f;
}

p {
    font-size: 16px;
    line-height: 1.7;
    color: #1d1d1f;
    margin-bottom: 20px;
}

a {
    color: #000000;
    text-decoration: underline;
    text-underline-offset: 2px;
}

a:hover {
    color: #86868b;
}

/* DROP CAP */
.drop-cap::first-letter {
    font-size: 72px;
    font-weight: 700;
    float: left;
    line-height: 0.8;
    padding-right: 12px;
    padding-top: 8px;
    color: #000000;
}

/* INLINE PHOTO */
.inline-photo {
    margin-top: 40px;
    margin-bottom: 40px;
}

.inline-photo img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

.inline-photo-caption {
    font-size: 13px;
    color: #86868b;
    margin-top: 12px;
    line-height: 1.4;
}

/* PHOTO GRID — 3 SQUARE IMAGES */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 40px;
    width: 100%;
}

.photo-item {
    display: flex;
    flex-direction: column;
}

.photo-square {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #f5f5f7;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.photo-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.photo-title {
    font-size: 14px;
    font-weight: 600;
    color: #1d1d1f;
    margin-top: 12px;
    margin-bottom: 4px;
}

.photo-caption {
    font-size: 12px;
    color: #86868b;
    line-height: 1.4;
}

/* QUOTE BLOCK */
.quote-block {
    border-left: 3px solid #000000;
    padding-left: 24px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.quote-block p {
    font-size: 21px;
    font-weight: 500;
    line-height: 1.4;
    font-style: italic;
    color: #1d1d1f;
    margin-bottom: 12px;
}

.quote-block cite {
    font-size: 14px;
    font-style: normal;
    color: #86868b;
}

/* TIMELINE */
.timeline {
    margin-top: 40px;
    margin-bottom: 40px;
}

.timeline-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.timeline-year {
    font-size: 15px;
    font-weight: 600;
    color: #86868b;
    min-width: 80px;
    flex-shrink: 0;
    text-align: right;
}

.timeline-content {
    flex: 1;
}

.timeline-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* PDF DOWNLOAD BUTTON */
.pdf-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    background-color: #f5f5f7;
    color: #1d1d1f;
    border: 1px solid #d2d2d7;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 40px;
}

.pdf-download:hover {
    background-color: #e8e8ed;
    border-color: #86868b;
}

.pdf-download svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* WAITLIST FORM */
.waitlist-form {
    display: flex;
    gap: 12px;
    max-width: 460px;
}

.waitlist-form input[type="email"] {
    flex: 1;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid #d2d2d7;
    border-radius: 8px;
    background-color: #ffffff;
    color: #000000;
    outline: none;
    transition: border-color 0.3s ease;
}

.waitlist-form input[type="email"]:focus {
    border-color: #000000;
}

.waitlist-form button {
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 500;
    background-color: #1d1d1f;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.waitlist-form button:hover {
    background-color: #000000;
}

/* PHILOSOPHY GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    border-top: 1px solid #d2d2d7;
    padding-top: 40px;
    margin-bottom: 14vh;
}

.grid-col h3 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    color: #86868b;
}

.grid-col p {
    font-size: 16px;
    line-height: 1.5;
    color: #1d1d1f;
}

/* NEWSLETTER BOX */
.newsletter-box h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 0;
}

.newsletter-box p {
    font-size: 17px;
    line-height: 1.7;
    color: #1d1d1f;
    margin-bottom: 20px;
}

/* CONTACT BOX */
.contact-box {
    background-color: #f5f5f7;
    border-radius: 12px;
    padding: 32px;
    margin-top: 48px;
}

.contact-box h2 {
    margin-top: 0;
    margin-bottom: 20px;
}

.contact-row {
    display: flex;
    align-items: baseline;
    margin-bottom: 12px;
}

.contact-label {
    font-size: 13px;
    font-weight: 500;
    color: #86868b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    min-width: 80px;
    flex-shrink: 0;
}

.contact-value {
    font-size: 15px;
    color: #1d1d1f;
}

.contact-value a {
    text-decoration: none;
}

.contact-value a:hover {
    text-decoration: underline;
}

/* FOOTER */
footer {
    margin-top: auto;
    border-top: 1px solid #d2d2d7;
    padding-top: 30px;
    margin-bottom: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #86868b;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: #1d1d1f;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: #86868b;
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #86868b;
    padding-top: 20px;
    border-top: 1px solid #d2d2d7;
}

.footer-bottom a {
    color: #86868b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: #000000;
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    width: calc(100% - 48px);
    max-width: 800px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(210, 210, 215, 0.6);
    border-radius: 16px;
    padding: 20px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    z-index: 9999;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
}

.cookie-text {
    font-size: 13px;
    line-height: 1.4;
    color: #1d1d1f;
}

.cookie-text a {
    color: #000000;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    font-size: 13px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.cookie-btn.reject {
    background-color: transparent;
    color: #86868b;
}

.cookie-btn.reject:hover {
    color: #000000;
}

.cookie-btn.accept {
    background-color: #1d1d1f;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #000000;
}

/* RESPONSIVE STYLES */
@media (max-width: 768px) {
    body {
        padding: 30px 24px;
    }

    h1 {
        font-size: 32px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .subtitle {
        font-size: 18px;
    }

    .subline {
        font-size: 18px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 18px;
    }

    .drop-cap::first-letter {
        font-size: 56px;
        padding-top: 6px;
    }

    .photo-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .quote-block p {
        font-size: 18px;
    }

    .timeline-item {
        flex-direction: column;
        gap: 8px;
    }

    .timeline-year {
        text-align: left;
        min-width: auto;
    }

    .waitlist-form {
        flex-direction: column;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-box {
        padding: 24px;
    }

    .contact-row {
        flex-direction: column;
        gap: 4px;
    }

    .contact-label {
        min-width: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .cookie-banner {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
        bottom: 16px;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: flex-end;
    }
}