* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Spartan', sans-serif;
}

h1 {
    font-size: 50px;
    line-height: 64px;
    color: #0f3d2e;
}

h2 {
    font-size: 46px;
    line-height: 54px;
    color: #0f3d2e;
}

h4 {
    font-size: 20px;
    color: #0f3d2e;
}

h6 {
    font-weight: 700;
    font-size: 12px;
    color: #0f3d2e;
}

p {
    font-size: 16px;
    color: #ffffff;
    margin: 15px 0 20px 0;
}

.section-p1 {
    padding: 40px 80px;
}

.section-m1 {
    margin: 40px 0;
}

body {
    width: 100%;
    background: #f5f1eb;
    color: #0E1F1C;
    font-family: 'Poppins', sans-serif;
}

/*Navbar*/

.navbar {
    background-color: #0f3d2e !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 999;
}

.navbar .logo {
    width: 130px;
}

.navbar-nav .nav-link {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    color: #f5f1eb !important;
    padding: 10px 20px;
    transition: 0.3s ease;
    text-align: center;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #c9a24d !important;
}

.navbar-nav .nav-link::after {
    content: "";
    width: 0;
    height: 2px;
    background: #c9a24d;
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 50%;
}

.navbar-nav .nav-link i {
    font-size: 18px;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* =====================
   BRAND HISTORY SECTION
===================== */
.brand-story {
    background-color: #f5f1eb;
    padding: 60px 40px;
    border-radius: 20px;
}

.story-img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.story-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f3d2e;
}

.story-text h5 {
    color: #c9a24d;
    font-weight: 500;
}

.story-text p {
    color: #444;
    line-height: 1.7;
    font-size: 16px;
}

.story-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.story-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #333;
}

.story-list li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: #c9a24d;
    font-weight: bold;
}

.story-end {
    margin-top: 20px;
    font-style: italic;
    color: #0f3d2e;
}

/* =====================
   FOOTER (LUXURY DARK)
===================== */
.BA-footer {
    background-color: #0f3d2e;
    color: #e6e2dc;
    padding: 60px 0 20px;
    font-size: 14px;
}

.BA-footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding: 0 40px;
}

.BA-footer-logo {
    color: #c9a24d;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

.BA-footer-box h3 {
    color: #c9a24d;
    margin-bottom: 15px;
    font-size: 18px;
}

.BA-footer-text {
    line-height: 1.8;
    color: #e6e2dc;
}

.BA-footer-box i {
    color: #c9a24d;
    margin-right: 8px;
}

.BA-footer-links {
    list-style: none;
    padding: 0;
}

.BA-footer-links li {
    margin-bottom: 10px;
}

.BA-footer-links a {
    color: #e6e2dc;
    text-decoration: none;
    transition: 0.3s;
}

.BA-footer-links a:hover {
    color: #c9a24d;
}

.BA-footer-form {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.BA-footer-form input {
    flex: 1;
    padding: 10px;
    border-radius: 20px;
    border: none;
    outline: none;
    background-color: #f5f1eb;
    color: #0f3d2e;
}

.BA-footer-form button {
    background-color: #c9a24d;
    color: #0f3d2e;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.BA-footer-form button:hover {
    background-color: #b8933f;
}

.BA-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 40px;
    text-align: center;
    padding-top: 15px;
    font-size: 13px;
    color: #e6e2dc;
}