:root {
    --primary: #1a1a1a;       /* Soft Black */
    --accent: #2c5f78;        /* San Clemente Ocean Blue */
    --bg: #fdfdfd;            /* Off-white */
    --surface: #f4f4f4;       /* Light Grey */
    --text: #333333;
    --white: #ffffff;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
}

/* Typography */
h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--primary); }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Nav */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 10;
}
.logo { font-weight: 800; font-size: 1.2rem; letter-spacing: -0.5px; }
.insta-btn {
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom: 2px solid transparent;
}
.insta-btn:hover { border-bottom: 2px solid var(--accent); color: var(--accent); }

/* Hero */
.hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5%;
    background: radial-gradient(circle at top right, #eef4f8, #ffffff);
    position: relative;
}
.hero h1 { font-size: 4.5rem; line-height: 1.1; margin-bottom: 1.5rem; }
.subtitle { font-size: 1.5rem; color: var(--accent); margin-bottom: 2.5rem; font-weight: 300; }
.cta-button {
    background-color: var(--primary);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-block;
}
.cta-button:hover { background-color: var(--accent); transform: translateY(-2px); }
.hero-year {
    position: absolute;
    bottom: 2rem;
    right: 5%;
    font-weight: 800;
    opacity: 0.1;
    font-size: 5rem;
    pointer-events: none;
}

/* Info Bar */
.info-bar {
    background: var(--primary);
    color: var(--white);
    display: flex;
    flex-wrap: wrap;
    padding: 4rem 5%;
    justify-content: space-between;
}
.info-item { flex: 1; min-width: 250px; margin-bottom: 1rem; }
.info-item h3 { color: var(--white); margin: 0.5rem 0; font-family: 'Inter', sans-serif; }
.label { text-transform: uppercase; font-size: 0.75rem; letter-spacing: 1px; opacity: 0.7; }

/* About */
.about-section { padding: 6rem 5%; text-align: center; }
.container { max-width: 1000px; margin: 0 auto; }
.about-section h2 { font-size: 3rem; margin-bottom: 2rem; }
.lead-text { font-size: 1.25rem; font-weight: 300; margin-bottom: 1.5rem; }
.disclaimer-box {
    margin-top: 3rem;
    padding: 1.5rem;
    background: #fcfcfc;
    border: 1px solid #eee;
    display: inline-block;
    font-size: 0.9rem;
    color: #666;
    border-radius: 8px;
}

/* Instagram Feed */
.insta-feed { padding: 4rem 5%; background: var(--surface); }
.feed-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 2rem;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}
.grid-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.grid-item:hover img { transform: scale(1.05); }

/* Footer */
footer { padding: 4rem 5%; text-align: center; border-top: 1px solid #eaeaea; }
.tiny { font-size: 0.8rem; color: #888; margin-top: 0.5rem; }

/* Mobile Response */
@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .info-bar { flex-direction: column; gap: 2rem; }
    .feed-header { flex-direction: column; gap: 1rem; }
}