/* ===================================================================
 * Custom Minimal Professional Design
 * Clean, Optimized & Modern Layout
 * ================================================================= */

/* ------------------------------------------------------------------- 
 * Root Variables - Professional Color Palette
 * ------------------------------------------------------------------- */
:root {
    --primary-text: #1a1a1a;
    --secondary-text: #4a4a4a;
    --accent-color: #2563eb;
    --accent-hover: #1e40af;
    --border-color: #e5e7eb;
    --bg-light: #ffffff;
    --bg-subtle: #f9fafb;
    --spacing-unit: 2.4rem;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* ------------------------------------------------------------------- 
 * Smooth Animations - Professional & Subtle
 * ------------------------------------------------------------------- */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

/* Fade-in on scroll */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Disable preloader */
#preloader {
    display: none !important;
}

/* ------------------------------------------------------------------- 
 * Blog Embed Section - Full Layout
 * ------------------------------------------------------------------- */
.s-blog-content {
    padding: 6rem 0;
    margin-top: 8rem;
    background: var(--bg-light);
    min-height: calc(100vh - 8rem);
}

.blog-header {
    text-align: center;
    margin-bottom: 6rem;
    padding: 0 2rem;
}

.blog-header h1 {
    font-size: 4.2rem;
    margin-bottom: 1rem;
    color: var(--primary-text);
}

.blog-header p {
    font-size: 2rem;
    color: var(--secondary-text);
    margin-bottom: 2rem;
}

.blog-link-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    font-size: 1.6rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.blog-link-button:hover {
    background-color: var(--accent-hover);
    color: white;
}

/* Substack Feed Styles */
.substack-feed-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.loading-message,
.error-message {
    text-align: center;
    padding: 4rem 2rem;
    font-size: 1.8rem;
    color: var(--secondary-text);
}

.error-link {
    display: inline-block;
    margin-top: 2rem;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.6rem;
}

.substack-post {
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    margin-bottom: 4rem;
    transition: box-shadow 0.3s ease;
}

.substack-post:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.substack-post__image {
    width: 100%;
    overflow: hidden;
}

.substack-post__image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.substack-post:hover .substack-post__image img {
    transform: scale(1.02);
}

.substack-post__content {
    padding: 3rem;
}

.substack-post__meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    color: var(--secondary-text);
}

.substack-post__author {
    font-weight: 600;
}

.substack-post__date {
    color: var(--secondary-text);
}

.substack-post__title {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.substack-post__title a {
    color: var(--primary-text);
    text-decoration: none;
}

.substack-post__title a:hover {
    color: var(--accent-color);
}

.substack-post__excerpt {
    font-size: 1.7rem;
    line-height: 1.7;
    color: var(--secondary-text);
    margin-bottom: 2rem;
}

.substack-post__link {
    display: inline-block;
    color: var(--accent-color);
    font-size: 1.6rem;
    font-weight: 600;
    text-decoration: none;
}

.substack-post__link:hover {
    color: var(--accent-hover);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .blog-header h1 {
        font-size: 3.2rem;
    }
    
    .blog-header p {
        font-size: 1.6rem;
    }
    
    .substack-post__content {
        padding: 2rem;
    }
    
    .substack-post__title {
        font-size: 2.2rem;
    }
}

/* ------------------------------------------------------------------- 
 * Global Enhancements
 * ------------------------------------------------------------------- */
body {
    background: var(--bg-light);
    color: var(--primary-text);
    font-size: 1.8rem;
    line-height: 1.8;
    letter-spacing: 0.01em;
}

/* Clean Typography */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    color: var(--primary-text);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

h1, .h1 {
    font-size: 4.2rem;
    line-height: 1.15;
    margin-bottom: 2rem;
}

h2, .h2 {
    font-size: 3.2rem;
    line-height: 1.25;
}

h3, .h3 {
    font-size: 2.4rem;
    line-height: 1.3;
}

/* Enhanced Links */
a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover, a:focus {
    color: var(--accent-hover);
}

/* Lead Paragraphs */
.lead, p.lead {
    font-size: 2.2rem;
    line-height: 1.7;
    color: var(--secondary-text);
    margin-bottom: 3rem;
    font-weight: 400;
}

/* ------------------------------------------------------------------- 
 * Header - Minimalist Clean Design
 * ------------------------------------------------------------------- */
.header {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    padding: 2rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.header__logo {
    flex-shrink: 0;
}

.header__logo .logo {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary-text);
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo__icon {
    width: 3.2rem;
    height: 3.2rem;
    flex-shrink: 0;
    fill: var(--primary-text);
}

.logo__text {
    white-space: nowrap;
}

/* Clean Navigation */
.header__nav-wrap {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header__nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0.5rem;
}

.header__nav > li > a {
    color: var(--secondary-text);
    font-size: 1.5rem;
    font-weight: 500;
    padding: 0.8rem 1.6rem;
    display: block;
    transition: var(--transition-smooth);
    border-radius: 0.6rem;
    position: relative;
}

.header__nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.header__nav > li > a:hover,
.header__nav > li.current > a {
    color: var(--accent-color);
    background: var(--bg-subtle);
}

.header__nav > li > a:hover::after,
.header__nav > li.current > a::after {
    width: 60%;
}

.header__nav-heading {
    display: none;
}

.header__overlay-close {
    display: none;
}

/* Remove Search Functionality */
.header__search-trigger,
.header__search {
    display: none !important;
}

/* Simplified Social Icons */
.header__social {
    list-style: none;
    margin: 0;
    padding: 1.2rem 0;
    display: flex;
    gap: 2rem;
    justify-content: center;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.header__social li a {
    color: var(--secondary-text);
    font-size: 1.6rem;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__social li a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Mobile Toggle Menu */
.header__toggle-menu {
    display: none;
}

/* Responsive Design */
@media screen and (max-width: 900px) {
    .header__content {
        gap: 2rem;
        justify-content: space-between;
    }
    
    .header__logo {
        z-index: 1002;
    }
    
    .header__nav-wrap {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-light);
        padding: 6rem 3rem;
        transition: right 0.3s ease;
        box-shadow: -4px 0 12px rgba(0,0,0,0.1);
        z-index: 1001;
        display: block;
    }
    
    .header__nav-wrap.is-visible {
        right: 0;
    }
    
    .header__nav {
        flex-direction: column;
        gap: 0;
    }
    
    .header__nav-heading {
        display: block;
        margin-bottom: 2rem;
        font-size: 1.4rem;
        text-transform: uppercase;
        color: var(--secondary-text);
    }
    
    .header__overlay-close {
        display: block;
        position: absolute;
        top: 2rem;
        right: 2rem;
        font-size: 1.2rem;
        color: var(--secondary-text);
        cursor: pointer;
    }
    
    .header__toggle-menu {
        display: block !important;
        font-size: 1.4rem;
        color: #000000 !important;
        z-index: 1002;
        position: relative;
    }
    
    .header__toggle-menu span,
    .header__toggle-menu span::before,
    .header__toggle-menu span::after {
        background-color: #000000 !important;
    }
    
    .header__social {
        position: static;
        transform: none;
        gap: 1.2rem;
        padding: 0.8rem 0;
    }
}

/* ------------------------------------------------------------------- 
 * Page Header - Minimalist Featured Section
 * ------------------------------------------------------------------- */
.s-pageheader--home {
    background: var(--bg-light);
    padding: 0;
    margin-top: 8rem;
}

.s-pageheader {
    margin-top: 8rem;
    padding-top: 2rem;
}

.pageheader-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.featured {
    display: block;
    max-width: 100%;
    margin: 0;
}

.featured__banner {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 0;
}

.featured__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.featured__banner:hover .featured__image {
    transform: scale(1.05);
}

.featured__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.featured__text {
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 800px;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.featured__title {
    font-size: 5.6rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.featured__description {
    font-size: 2rem;
    margin: 0 0 2rem 0;
    line-height: 1.5;
    font-weight: 400;
    opacity: 0.95;
}

.featured__hero-message {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-top: 1.5rem;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.featured__button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 1.4rem 3.2rem;
    border-radius: 0.6rem;
    font-size: 1.6rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    margin-top: 3rem;
}

.featured__button:hover {
    background-color: var(--accent-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .featured__banner {
        height: 400px;
    }
    
    .featured__title {
        font-size: 3.2rem;
    }
    
    .featured__description {
        font-size: 1.8rem;
    }
    
    .featured__button {
        padding: 1rem 2rem;
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 480px) {
    .featured__banner {
        height: 300px;
    }
    
    .featured__title {
        font-size: 2.4rem;
    }
    
    .featured__description {
        font-size: 1.4rem;
    }
    
    .featured__button {
        padding: 0.8rem 1.5rem;
        font-size: 1.2rem;
    }
}

.entry {
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.entry:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.entry__content {
    padding: 2.5rem;
}

.entry__category a {
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-color);
    font-weight: 600;
}

.entry h1 {
    font-size: 2.2rem;
    line-height: 1.35;
    margin: 1rem 0 1.5rem;
}

.entry h1 a {
    color: var(--primary-text);
}

.entry h1 a:hover {
    color: var(--accent-color);
}

.entry__meta {
    display: flex;
    gap: 1.5rem;
    font-size: 1.4rem;
    color: var(--secondary-text);
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ------------------------------------------------------------------- 
 * Content Section - Clean Blog Layout
 * ------------------------------------------------------------------- */
.s-content {
    background: var(--bg-light);
    padding: 8rem 0;
}

.masonry {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 4rem;
}

.masonry__brick {
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.masonry__brick:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.entry__thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.entry__text {
    padding: 2.5rem;
}

.entry__date a {
    font-size: 1.3rem;
    color: var(--secondary-text);
    font-weight: 500;
}

.entry__title {
    font-size: 2.2rem;
    line-height: 1.35;
    margin: 1rem 0;
}

.entry__title a {
    color: var(--primary-text);
}

.entry__title a:hover {
    color: var(--accent-color);
}

.entry__excerpt {
    color: var(--secondary-text);
    font-size: 1.6rem;
    line-height: 1.7;
    margin: 1.5rem 0;
}

.entry__meta-links a {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-right: 1.5rem;
    font-weight: 500;
}

/* Quote Format - Elegant Style */
.format-quote {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    padding: 4rem;
}

.format-quote blockquote {
    margin: 0;
    border: none;
    padding: 0;
}

.format-quote blockquote p {
    color: white;
    font-size: 2.4rem;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 2rem;
}

.format-quote blockquote cite {
    color: rgba(255,255,255,0.9);
    font-size: 1.6rem;
    font-style: normal;
}

/* Link Format */
.format-link {
    background: var(--bg-subtle);
    padding: 3rem;
    border-left: 4px solid var(--accent-color);
}

.link-wrap p {
    font-size: 2rem;
    line-height: 1.5;
    color: var(--primary-text);
    margin-bottom: 1rem;
}

.link-wrap cite a {
    color: var(--accent-color);
    font-size: 1.5rem;
}

/* ------------------------------------------------------------------- 
 * Sidebar Section - Clean & Minimal
 * ------------------------------------------------------------------- */
.s-extra {
    background: var(--bg-subtle);
    padding: 6rem 0;
    border-top: 1px solid var(--border-color);
}

.popular__post {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.popular__post:last-child {
    border-bottom: none;
}

.popular__thumb {
    border-radius: 6px;
    overflow: hidden;
}

.popular__post h5 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin: 1rem 0;
}

.popular__post h5 a {
    color: var(--primary-text);
}

.popular__post h5 a:hover {
    color: var(--accent-color);
}

.popular__meta {
    font-size: 1.3rem;
    color: var(--secondary-text);
}

/* About Section */
.about h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about p {
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--secondary-text);
}

.about__social {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
}

.about__social li a {
    color: var(--secondary-text);
    font-size: 2rem;
}

.about__social li a:hover {
    color: var(--accent-color);
}

/* Tags */
.tagcloud a {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    margin: 0.5rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--secondary-text);
    font-size: 1.4rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.tagcloud a:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

/* ------------------------------------------------------------------- 
 * Footer - Clean & Minimal
 * ------------------------------------------------------------------- */
.s-footer {
    background: var(--primary-text);
    color: rgba(255,255,255,0.7);
    padding: 6rem 0 2rem;
}

.s-footer h4 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.s-footer__linklist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.s-footer__linklist li {
    margin-bottom: 1rem;
}

.s-footer__linklist a {
    color: rgba(255,255,255,0.7);
    font-size: 1.5rem;
    transition: color 0.2s ease;
}

.s-footer__linklist a:hover {
    color: white;
}

/* Newsletter Form */
.subscribe-form {
    margin-top: 2rem;
}

.subscribe-form input[type="email"] {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 1.2rem 1.5rem;
    border-radius: 4px;
    width: 100%;
    margin-bottom: 1rem;
}

.subscribe-form input[type="submit"] {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.subscribe-form input[type="submit"]:hover {
    background: var(--accent-hover);
}

/* Footer Bottom */
.s-footer__bottom {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.s-footer__copyright {
    color: rgba(255,255,255,0.6);
    font-size: 1.4rem;
}

.s-footer__copyright a {
    color: rgba(255,255,255,0.8);
}

/* Go to Top Button */
.go-top {
    position: fixed;
    bottom: 3rem;
    right: 3rem;
    z-index: 999;
}

.go-top a {
    display: block;
    width: 5rem;
    height: 5rem;
    background: var(--accent-color);
    color: white;
    text-align: center;
    line-height: 5rem;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.go-top a:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* ------------------------------------------------------------------- 
 * Pagination - Clean Style
 * ------------------------------------------------------------------- */
.pgn {
    text-align: center;
    margin: 6rem 0;
}

.pgn ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-flex;
    gap: 1rem;
}

.pgn__num,
.pgn__prev,
.pgn__next {
    display: inline-block;
    padding: 1rem 1.6rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--secondary-text);
    font-weight: 500;
    transition: all 0.2s ease;
}

.pgn__num:hover,
.pgn__prev:hover,
.pgn__next:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.pgn__num.current {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

/* ------------------------------------------------------------------- 
 * Single Post Page - Clean Reading Experience
 * ------------------------------------------------------------------- */
.s-content--narrow {
    max-width: 920px;
    margin: 0 auto;
    padding: 6rem 3rem;
}

.s-content__header-title {
    font-size: 4.8rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.s-content__post-thumb img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 3rem 0;
}

.s-content__main p {
    font-size: 1.9rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--primary-text);
    max-width: 100%;
}

/* ------------------------------------------------------------------- 
 * Contact Page - Clean Form
 * ------------------------------------------------------------------- */
.form-field {
    margin-bottom: 2rem;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1.6rem;
    transition: border-color 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn {
    padding: 1.5rem 3rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ------------------------------------------------------------------- 
 * Responsive Design
 * ------------------------------------------------------------------- */
@media screen and (max-width: 1024px) {
    .featured {
        grid-template-columns: 1fr;
    }
    
    .masonry {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 3rem;
    }
}

@media screen and (max-width: 768px) {
    h1, .h1 {
        font-size: 3.2rem;
    }
    
    .header__content {
        padding: 0 2rem;
    }
    
    .masonry {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .s-content--narrow {
        padding: 4rem 2rem;
        max-width: 100%;
    }
    
    .s-content__header-title {
        font-size: 3.6rem;
    }
    
    .go-top {
        bottom: 2rem;
        right: 2rem;
    }
}

@media screen and (max-width: 480px) {
    body {
        font-size: 1.6rem;
    }
    
    h1, .h1 {
        font-size: 2.8rem;
    }
    
    .entry h1 {
        font-size: 2.2rem;
    }
    
    .s-content {
        padding: 4rem 0;
    }
}

/* ------------------------------------------------------------------- 
 * Remove Unused Elements
 * ------------------------------------------------------------------- */
#map-wrap,
#map-container,
.header__search,
.header__search-trigger {
    display: none !important;
}

/* Hide preloader for cleaner experience */
#preloader {
    display: none !important;
}
