/* Color Palette & Fonts */
:root {
    --bg-ivory: #F5F1E8;
    --gold-foil: #D4AF37;
    --deep-saffron: #E38C2D;
    --sage-green: #9DC183;
    --text-dark: #2C2C2C;
    --text-light: #555555;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--bg-ivory);
    line-height: 1.8;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation & Luxury Logo */
header {
    background-color: var(--bg-ivory);
    padding: 40px 0 20px 0;
}

.nav-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.brand-header {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sun-emblem {
    color: var(--gold-foil);
    font-size: 24px;
    margin-bottom: 5px;
}

.logo {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 400;
    margin: 0;
    color: var(--text-dark);
    letter-spacing: 12px; /* Wide-spaced luxury serif */
    text-indent: 12px; /* Centers properly with letter-spacing */
}

.logo-underline {
    width: 40px;
    height: 1px;
    background-color: var(--gold-foil);
    margin-top: 10px;
}

nav {
    margin-top: 20px;
}

nav a {
    text-decoration: none;
    color: var(--text-light);
    margin: 0 15px;
    font-family: var(--font-sans);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s;
}

nav a:hover, nav a.active {
    color: var(--gold-foil);
}

/* Main Content */
main {
    padding: 40px 0;
}

.main-image {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 60px;
}

h2 {
    font-family: var(--font-serif);
    font-weight: 400;
    color: var(--text-dark);
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    color: var(--text-dark);
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.about-story p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.signature {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 22px;
    color: var(--gold-foil);
    text-align: right;
    margin-top: 40px;
}

.section-divider {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(212, 175, 55, 0), rgba(212, 175, 55, 0.75), rgba(212, 175, 55, 0));
    margin: 60px 0;
}

/* Brand Identity Section */
.brand-identity {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.palette-container {
    margin-bottom: 50px;
}

.colors {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.color-swatch {
    flex: 1;
    min-width: 120px;
    height: 100px;
    border-radius: 4px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.color-name {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    font-weight: bold;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.dark-text {
    color: var(--text-dark);
    text-shadow: none;
}

.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.concept-card {
    border-top: 2px solid var(--gold-foil);
    padding-top: 20px;
}

.concept-card h4 {
    font-family: var(--font-serif);
    font-size: 20px;
    margin: 0 0 10px 0;
    color: var(--text-dark);
}

.concept-card p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 600px) {
    .concept-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    font-size: 13px;
    color: var(--text-light);
    letter-spacing: 1px;
}