:root {
    --bg-color: #1B365D;        /* Azul Marino - Deep Pacific Navy */
    --primary-color: #FDFBF7;   /* White Sand - Cream for headings and main text */
    --secondary-color: #C5A059; /* Desert Gold - Warm sand color for accents */
    --accent-color: #F9B233;    /* Golden Yellow - Bright highlights */
    --text-main: #FDFBF7;       /* Cream for high-contrast reading */
    --text-secondary: #A5AAB5;  /* Muted Blue-Grey for secondary labels */
    --white: #ffffff;
    --divider: rgba(253, 251, 247, 0.15); /* Light cream-based divider */
}

/* MOBILE-FIRST DEFAULTS */
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

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

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 0;
}

/* Fixed Mobile Header */
header {
    background: var(--bg-color);
    padding: 2rem 1rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--divider);
}

header .logo-container img {
    max-height: 80px;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.1));
}

header h1 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary-color);
    margin-top: 0.8rem;
}

/* Mobile-First Navigation (Sticky Bar with Title & Menu) */
nav {
    position: sticky;
    top: 0;
    z-index: 2000;
    background: var(--bg-color);
    border-bottom: 1px solid var(--divider);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.2rem;
    box-sizing: border-box;
}

/* Hamburger Active Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary-color);
    margin: 0;
}

.hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: rgba(253, 251, 247, 0.05);
    border: 1px solid var(--divider);
    border-radius: 4px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--primary-color);
    transition: 0.3s;
}

/* Remove the "MENU" text to keep it clean as a real hamburger */
.hamburger::after {
    display: none;
}

nav ul {
    display: none;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    flex-direction: column;
    background: var(--bg-color);
    position: absolute;
    top: 100%; 
    right: 0;
    width: 260px; 
    border-left: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
    box-shadow: -10px 10px 30px rgba(0,0,0,0.5);
    z-index: 5000;
}

nav ul.active {
    display: flex;
}

nav ul li {
    border-bottom: 1px solid var(--divider);
}

nav ul li:last-child {
    border-bottom: none;
}

nav ul li a {
    color: var(--primary-color);
    text-decoration: none;
    padding: 1rem 1.5rem;
    display: block;
    text-align: left; /* Left align for a clean list */
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

nav ul li a.active {
    color: var(--accent-color);
    background: rgba(253, 251, 247, 0.05);
}

/* Global Content Container */
.container {
    width: 90%;
    margin: 0 auto;
    padding: 3rem 0 5rem;
}

/* Vertical Sections */
.editorial-section {
    margin-bottom: 4rem;
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    color: var(--secondary-color);
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    display: block;
}

.section-divider {
    width: 60%;
    height: 2px;
    background: var(--divider);
    margin: 4rem auto;
}

/* Stacked Story Blocks */
.story-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.story-image img, .story-image iframe {
    width: 100%;
    border-radius: 4px;
    box-shadow: 10px 10px 0 rgba(253, 251, 247, 0.05);
}

/* Beliefs / Items List */
.belief-item {
    padding: 2rem 0;
    border-bottom: 1px solid var(--divider);
    text-align: left;
}

.belief-item h3 {
    font-size: 1.4rem;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.belief-item i {
    color: var(--secondary-color);
    width: 30px;
    text-align: center;
}

/* Buttons (Touch Friendly & Themed) */
.btn-cta {
    display: inline-block;
    background: var(--secondary-color); /* Desert Gold */
    color: var(--bg-color) !important; /* Deep Navy text */
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px; /* More sophisticated than 50px */
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 1px solid var(--secondary-color);
}

.btn-cta:hover {
    background: transparent;
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Footer (Simplified) */
footer {
    text-align: center;
    padding: 5rem 1rem;
    border-top: 1px solid var(--divider);
    background: #15294B;
}

footer .social-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

footer .social-links a {
    color: var(--secondary-color);
    font-size: 1.8rem;
}

footer p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary-color);
    line-height: 1.6;
}

/* DESKTOP ENHANCEMENTS (Optional larger screens) */
@media (min-width: 1024px) {
    .container { width: 80%; max-width: 1100px; }
    .story-block { flex-direction: row; align-items: center; text-align: left; gap: 4rem; }
    .story-content { flex: 1; }
    .story-image { flex: 1; }
    .section-title { font-size: 3.5rem; }
    
    /* Desktop Nav would go here if needed, but keeping mobile-first focus */
}
