/* GLOBAL BOX-SIZING */
*, *::before, *::after { box-sizing: border-box; }

/* FONT IMPORTS (Paths point up one level to your root /fonts/ folder) */
@font-face { font-family: 'Chiswick Sans Text'; src: url('../fonts/ChiswickSansText-Regular.woff2') format('woff2'); font-weight: normal; font-style: normal; }
@font-face { font-family: 'Chiswick Sans Text'; src: url('../fonts/ChiswickSansText-Semibold.woff2') format('woff2'); font-weight: 600; font-style: normal; }
@font-face { font-family: 'Blanco'; src: url('../fonts/Blanco-Regular.woff2') format('woff2'); font-weight: normal; font-style: normal; }
@font-face { font-family: 'Blanco'; src: url('../fonts/Blanco-Bold.woff2') format('woff2'); font-weight: bold; font-style: normal; }

/* FORA COLOR PALETTE */
:root { --sand: #FEFAF5; --black-sand: #131313; --shell: #E5DBD0; --stone: #827363; }

/* BASE STYLES & TYPOGRAPHY */
body { background-color: var(--sand); color: var(--black-sand); font-family: 'Chiswick Sans Text', sans-serif; margin: 0; padding: 0; line-height: 1.5; text-align: left; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }

.section-title { font-family: 'Blanco', serif; font-weight: bold; text-transform: capitalize; font-size: 2.2rem; margin-top: 0; margin-bottom: 1.5rem; line-height: 1.25; }
.accent-text { font-family: 'Chiswick Sans Text', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.85rem; color: var(--stone); display: block; margin-bottom: 0.5rem; }
p { font-family: 'Chiswick Sans Text', sans-serif; font-size: 1.1rem; margin-bottom: 1.5rem; }

/* BUTTONS */
.btn { display: inline-block; background-color: var(--black-sand); color: var(--sand); padding: 1rem 2rem; text-decoration: none; font-family: 'Chiswick Sans Text', sans-serif; text-transform: uppercase; letter-spacing: 0.05em; border: 1px solid var(--black-sand); border-radius: 13px; transition: all 0.3s ease; text-align: center; cursor: pointer; }
.btn:hover { background-color: transparent; color: var(--black-sand); }

/* HEADER (STICKY) */
.sticky-header-wrapper { position: sticky; top: 0; background-color: var(--sand); z-index: 1000; border-bottom: 1px solid var(--shell); }
header { padding: 1rem 0; display: flex; justify-content: space-between; align-items: center; }
.header-left { display: flex; flex-direction: column; }
.logo { font-size: 1.2rem; font-weight: bold; letter-spacing: -0.02em; text-decoration: none; color: var(--black-sand); line-height: 1.1; }
.header-left .accent-text { font-size: 0.65rem; margin-bottom: 0; margin-top: 4px; }

/* BREADCRUMB NAVIGATION */
.breadcrumb { padding: 1.5rem 0 0 0; font-family: 'Chiswick Sans Text', sans-serif; font-size: 0.9rem; color: var(--stone); }
.breadcrumb a { color: var(--stone); text-decoration: none; transition: color 0.3s ease; }
.breadcrumb a:hover { color: var(--black-sand); }
.breadcrumb span { margin: 0 0.5rem; }

/* ARTICLE SPECIFIC STYLES */
.article-header { padding: 2rem 0 2rem 0; text-align: center; }
.article-header h1 { font-family: 'Blanco', serif; font-size: 3rem; line-height: 1.1; margin: 1rem 0; color: var(--black-sand); }
.article-hero-img { width: 100%; max-height: 600px; object-fit: cover; border-radius: 20px; margin-bottom: 3rem; box-shadow: 0 12px 32px rgba(0,0,0,0.08); }

.article-body { max-width: 800px; margin: 0 auto; padding-bottom: 4rem; font-size: 1.15rem; line-height: 1.8; }
.article-body h2 { font-family: 'Blanco', serif; font-size: 2rem; margin-top: 3rem; margin-bottom: 1rem; color: var(--black-sand); }
.article-body h3 { font-family: 'Chiswick Sans Text', sans-serif; font-size: 1.3rem; margin-top: 2rem; color: var(--black-sand); }
.article-body ul { margin-bottom: 2rem; padding-left: 1.5rem; }
.article-body li { margin-bottom: 0.5rem; }
.article-body hr { border: none; border-top: 1px solid var(--shell); margin: 3rem 0; }

/* TABLE STYLES FOR ARTICLE */
.article-table-wrapper { overflow-x: auto; margin-bottom: 2rem; border-radius: 12px; border: 1px solid var(--shell); }
.article-body table { width: 100%; border-collapse: collapse; min-width: 600px; }
.article-body th, .article-body td { border-bottom: 1px solid var(--shell); padding: 1.2rem; text-align: left; font-family: 'Chiswick Sans Text', sans-serif; font-size: 1.05rem; }
.article-body thead { background-color: var(--shell); }
.article-body thead td { font-weight: 600; color: var(--black-sand); }
.article-body tbody tr:last-child td { border-bottom: none; }
.article-body tbody tr:nth-child(even) { background-color: rgba(229, 219, 208, 0.2); }

/* INLINE IMAGES */
.article-inline-img { width: 100%; border-radius: 16px; margin: 2rem 0; box-shadow: 0 8px 24px rgba(0,0,0,0.06); object-fit: cover; max-height: 400px; }

/* LET'S CONNECT SECTION (DARK MODE) - Required for Shared Footer */
.connect-section { padding: 4rem 0; text-align: center; background-color: var(--black-sand); color: var(--sand); }
.connect-content { max-width: 600px; margin: 0 auto; }
.connect-section .section-title, .connect-section p { color: var(--sand); }
.connect-section .accent-text { color: var(--sand) !important; }
.social-icons { display: flex; justify-content: center; gap: 2rem; margin-top: 2rem; }
.social-icon-link { color: var(--sand); transition: color 0.3s ease; display: inline-block; }
.social-icon-link:hover { color: var(--stone); }
.social-icon-link svg { width: 32px; height: 32px; fill: currentColor; }

/* FOOTER - Required for Shared Footer */
footer { padding: 4rem 0; text-align: center; font-size: 0.9rem; border-top: 1px solid var(--shell); padding-bottom: 6rem; }
.footer-logo { max-width: 120px; margin-bottom: 0.75rem; display: block; margin-left: auto; margin-right: auto; }
.footer-details { margin-bottom: 1rem; color: var(--stone); }

/* MOBILE STICKY SOCIAL MENU - Required for Shared Footer */
.mobile-sticky-social { display: none; }

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .article-header h1 { font-size: 2.2rem; }
    .article-hero-img { max-height: 350px; border-radius: 12px; }
    
    /* MOBILE STICKY CSS - Required for Shared Footer */
    .mobile-sticky-social { display: flex; position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(229, 219, 208, 0.70); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-top: 1px solid rgba(255, 255, 255, 0.4); box-shadow: 0 -10px 30px rgba(0,0,0,0.05); padding: 1rem; justify-content: center; gap: 2rem; z-index: 999; transition: transform 0.4s ease-in-out; }
    .mobile-sticky-social.hidden { transform: translateY(100%); }
    .mobile-sticky-social svg { width: 28px; height: 28px; fill: var(--black-sand); }
    .mobile-sticky-social .sticky-img-icon { height: 28px; width: auto; object-fit: contain; display: block; }
}

@media (max-width: 400px) {
    header .btn { padding: 0.6rem 1rem; font-size: 0.75rem; letter-spacing: 0.02em; }
    .logo { font-size: 0.95rem; }
    .header-left .accent-text { font-size: 0.6rem; }
}