@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    /* Ethereal Palette (Light Mode) */
    --bg-base: #FAFAFA;
    /* Alabaster */
    --bg-surface: #FFFFFF;

    --text-primary: #1A1A1A;
    /* Soft Black */
    --text-secondary: #595959;
    --text-accent: #2F5938;
    /* Deep Forest Green */

    --border-subtle: rgba(0, 0, 0, 0.06);
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    /* Animation (Spring Physics approximation) */
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--text-accent);
    color: #fff;
}

/* --- UTILITIES --- */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.text-accent {
    color: var(--text-accent);
}

/* --- NAVIGATION --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    /* Soft blur for light mode */
    background: rgba(250, 250, 250, 0.85);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
}

.logo {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    color: var(--text-accent);
    text-transform: uppercase;
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    top: 40px;
    /* Offset for magazine look */
    left: 40px;
    right: 40px;
    bottom: 40px;
    z-index: 0;
    overflow: hidden;
    border-radius: 2px;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transform: scale(1.0);
    filter: brightness(1.05) contrast(0.95);
}

.overlay {
    display: none;
    /* No dark overlay for light mode */
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 60px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
}

.hero-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-accent);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1;
    margin-bottom: 32px;
    font-style: italic;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 40px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 50px;
    background: var(--text-primary);
    color: #fff;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    border-radius: 0;
    /* Boxy/Sharp */
    transition: all 0.4s var(--ease-spring);
    cursor: pointer;
}

.cta-btn:hover {
    background: var(--text-accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(47, 89, 56, 0.2);
}

/* --- VALUE PROPOSITION --- */
.value-section {
    padding: 140px 0;
    position: relative;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-label {
    font-size: 0.8rem;
    color: var(--text-accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 16px;
}

.section-title {
    font-size: 3.5rem;
    color: var(--text-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
}

.feature-card {
    background: var(--bg-surface);
    /* Removed border */
    padding: 0;
    text-align: center;
    transition: transform 0.4s var(--ease-spring);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--text-accent);
    font-weight: 300;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* --- THEMES / PILLARS --- */
.pillars-section {
    padding: 120px 0 160px;
    background: var(--bg-base);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px;
}

.pillar-item {
    grid-column: span 4;
    position: relative;
    aspect-ratio: 3/4;
    /* Classic portrait */
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.5s var(--ease-spring);
}

.pillar-item:hover {
    transform: translateY(-5px) scale(1.02);
    z-index: 2;
}

@media (max-width: 1024px) {
    .pillar-item {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .pillar-item {
        grid-column: span 12;
    }
}

.pillar-img {
    width: 100%;
    height: 85%;
    /* Image takes top part */
    object-fit: cover;
    transition: transform 1.2s ease;
    filter: sepia(0.2) contrast(0.95);
    /* Vintage feel */
}

.pillar-item:hover .pillar-img {
    transform: scale(1.1);
    filter: sepia(0);
}

.pillar-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15%;
    padding: 0 20px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-subtle);
}

.pillar-title {
    font-size: 1.1rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    font-style: normal;
}

.pillar-year {
    font-size: 0.8rem;
    color: var(--text-accent);
}

/* --- FOOTER --- */
footer {
    padding: 80px 0 40px;
    background: #fff;
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: initial;
}

.footer-brand h4 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--text-accent);
    font-style: italic;
}

.footer-links a {
    color: var(--text-secondary);
    margin-left: 32px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text-accent);
}