*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #0D1F3C;
    --navy-mid: #152848;
    --navy-light: #1E3560;
    --gold: #C9A84C;
    --gold-light: #E2BE7A;
    --gold-dark: #A07C30;
    --cream: #F5EFE0;
    --cream-mid: #EDE4CC;
    --cream-dark: #D4C8A8;
    --text-dark: #1a1a1a;
    --text-mid: #3a3a3a;
    --text-muted: #6a6a6a;
    --white: #ffffff;
    --border-gold: rgba(201, 168, 76, 0.35);
    --border-light: rgba(255, 255, 255, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--white);
}

/* NAV */
.container{
    max-width: 1250px;
}
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 0;
    z-index: 999;
    border-bottom: 1px solid #ffffff40;
}

.logo-box img {
    width: 230px;
    max-width: 100%;
}

.main-header nav li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
}

.nav-cta {
    background: var(--gold);
    color: var(--navy);
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 3px;
    font-size: 13px;
    text-decoration: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #0d1b2a;
    z-index: 9999;
    transition: all 0.4s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.mobile-menu-header .logo-box img {
    width: 180px;
}

.close-menu {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
}

.mobile-menu ul {
    list-style: none;
    padding: 30px 20px;
    margin: 0;
}

.mobile-menu ul li {
    margin-bottom: 20px;
}

.mobile-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    display: block;
    transition: 0.3s;
}

.mobile-menu ul li a:hover {
    color: var(--gold);
}
button#mobileMenuBtn {
    background: transparent;
    border: 1px solid #fff;
    padding: 10px;
    border-radius: 5px;
}
button#mobileMenuBtn i{
    color: #fff;
}
.mobile-cta {
    background: var(--gold);
    color: var(--navy) !important;
    text-align: center;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 15px;
}

/* HERO */
.hero {
    background: url(../images/banner.png);
    position: relative;
    overflow: hidden;
    height: 120vh;
    background-repeat: no-repeat;
    background-size: cover;
}
.hero-inner {
    position: absolute;
    top: 25%;
}

.hero-eyebrow {
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 13px;
    font-weight: 500;
}
.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    line-height: 1.05;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 24px;
}
.hero-headline em {
    font-style: italic;
    color: var(--gold-light);
}
.gold-line {
    background: var(--gold);
    width: 150px;
    height: 3px;
    border-radius: 10px;
    margin: 10px 0;
}
.hero-body {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
    max-width: 440px;
    margin-bottom: 36px;
    font-family: 'EB Garamond', serif;
    font-size: 17px;
}
.hero-actions {
    display: flex;
    gap: 14px;
}
.btn-gold {
    background: var(--gold);
    color: var(--navy);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 13px 28px;
    border-radius: 3px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    display: inline-block;
    transition: background 0.2s;
}

.btn-gold:hover {
    background: var(--gold-light);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}
/* FEATURE BAR */
.feature-bar {
    background: #0D1D30;
    width: 90%;
    margin: auto;
    border-radius: 20px;
    position: absolute;
    bottom: 6%;
    right: 0;
    left: 0;
}
.feature-bar .col-md-3{
    margin: 0;
    padding: 0;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 36px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-item:last-child {
    border-right: none;
}

.feature-icon {
    width: 40px;
    height: 40px;
}

.feature-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}

.feature-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
}

/* ABOUT SECTION */
section{
    padding: 70px 0 0;
}
section.about-section {
    padding: 70px 0;
}
.section-eyebrow {
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 14px;
}

.section-headline {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    line-height: 1.1;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 24px;
}

.gold-rule {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 24px;
}

.section-body {
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    line-height: 1.75;
    color: var(--text-mid);
    margin-bottom: 32px;
}

.btn-dark {
    background: var(--navy);
    color: var(--white);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 26px;
    border-radius: 3px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}

.btn-dark:hover {
    background: var(--navy-light);
}

/* ASSETS TABLE */
.assets-section {
    background: #f9f7f2;
    padding: 70px 0;
}

.assets-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.assets-total {
    text-align: right;
}

.assets-total-label {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.assets-total-value {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: var(--gold-dark);
    font-weight: 700;
    line-height: 1;
}

.progress-ring-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
    justify-content: flex-end;
}

.assets-table-wrap {
    margin: 0 auto;
    overflow: auto;
}
.assets-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.assets-table thead th {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 20px;
    text-align: left;
}

.assets-table tbody tr {
    border-bottom: 1px solid #ede9e0;
}

.assets-table tbody tr:last-child {
    border-bottom: none;
}

.assets-table tbody td {
    padding: 20px;
    vertical-align: middle;
    font-size: 14px;
}

.asset-name-cell {
    display: flex;
    align-items: center;
    gap: 14px;
}

.asset-icon {
    width: 50px;
    height: 50px;
}

.asset-name {
    font-weight: 600;
    color: var(--navy);
    font-size: 15px;
}

.progress-bar-wrap {
    width: 100%;
}

.progress-pct {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.progress-bar-bg {
    height: 5px;
    background: #e8e3d8;
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 3px;
}

.chevron-cell {
    color: var(--gold-dark);
    font-size: 18px;
    padding-right: 24px !important;
}

.assets-footer {
    text-align: center;
    margin-top: 28px;
}

/* PHILOSOPHY SECTION */
/*Model*/
.modal-content{
    border-radius:20px;
    border:none;
}

.modal-header{
    padding:25px 30px;
    border-bottom:1px solid #eee;
}

.accordion-item{
    border:none;
    margin-bottom:15px;
    border-radius:15px !important;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.accordion-button {
    font-weight: 700;
    font-size: 16px;
    padding: 16px;
}
.accordion-button a{
    margin-left: 5px;
    text-decoration: none;
    
}
.accordion-button:not(.collapsed){
    background:#f8f5ef;
    color:#8a6a3e;
}

.accordion-body{
    padding:30px;
}

.accordion-body img{
    width:100%;
    height:300px;
    object-fit:contain;
}

blockquote{
    border-left:4px solid #8a6a3e;
    padding-left:15px;
    font-style:italic;
    margin:20px 0;
}
.modal-body{
    padding:30px;
    max-height:75vh;
}

.excerpt{
    padding-bottom:15px;
}

.excerpt:last-child{
    border-bottom:none;
}

.excerpt h4{
    color:#c9a35f;
    margin-bottom:10px;
    font-weight:700;
}

.excerpt blockquote{
    border-left:4px solid #c9a35f;
    padding-left:15px;
    font-style:italic;
    margin:15px 0;
}

.modal-body::-webkit-scrollbar{
    width:8px;
}

.modal-body::-webkit-scrollbar-thumb{
    background:#c9a35f;
    border-radius:10px;
}
.philosophy-section {
    background: url(../images/bg1.png);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
}

.philosophy-eyebrow {
    font-size: 14px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 500;
}

.philosophy-headline {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 10px;
}

.philosophy-body {
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    margin-bottom: 20px;
}

.philosophy-quote {
    padding: 15px;
    margin: 0 auto 30px;
    border: 1px solid var(--gold);
    border-radius: 10px;
    text-align: center;
}
.philosophy-quote p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 22px;
    color: var(--gold-light);
    line-height: 1.5;
}

.philosophy-quote .open-quote,
.philosophy-quote .close-quote {
    color: var(--gold);
    font-size: 36px;
    line-height: 0;
    vertical-align: middle;
    display: inline;
}

/* DOCUMENTS & NEWS */
.news-section {
    padding: 70px 0;
    background: var(--white);
}

.news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.news-header h2{
    font-family:'Playfair Display', serif;
    font-size:32px;
    color:var(--navy);
    font-weight: 700;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-card {
    border: 1px solid #e8e3d8;
    border-radius: 3px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-dark);
    transition: box-shadow 0.2s;
    display: block;
    height: 100%;
}

.news-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.news-card-img {
    width: 100%;
    height: 290px;
    background: var(--cream-mid);
    position: relative;
    overflow: hidden;
   
}

.news-tag {
    position: absolute;
    bottom: 6px;
    left: 0;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 2px;
    color: white;
}
.tag-tiff {
    background: #052339;
}

.tag-translation {
    background: #9d800d;
}

.tag-ledger {
    background: #991c0e;
}

.tag-pdf {
    background: #044065;
}

.tag-news {
    background: #9caf0e73;
    position: absolute;
    bottom: 10px;
    right: 10px;
    left: auto;
}

.news-card-body {
    padding: 16px;
}

.news-card-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--navy);
    margin-bottom: 4px;
    line-height: 1.35;
}

.news-card-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
    line-height: 1.5;
}

.news-card-date {
    font-size: 11px;
    color: rgba(0, 0, 0, 0.35);
    letter-spacing: 0.04em;
}

/* Doc image placeholders */

.doc-img-title {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(90, 74, 48, 0.3);
    padding-bottom: 6px;
    margin-bottom: 8px;
    width: 100%;
}

.doc-img-lines {
    width: 80%;
}

.doc-img-line {
    height: 1px;
    background: rgba(90, 74, 48, 0.2);
    margin: 5px 0;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a3548 0%, #1a2535 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* SUPPORT SECTION */
.support-section {
    background: #f9f7f2;
    padding: 70px 0;
}

.support-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 14px;
}

.support-left p {
    font-family: 'EB Garamond', serif;
    font-size: 17px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 28px;
}

.support-actions {
    display: flex;
    gap: 12px;
}

.support-right {
    background: var(--white);
    border: 1px solid #e8e3d8;
    border-radius: 4px;
    padding: 32px;
}

.support-right-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lock-icon {
    color: var(--gold-dark);
    font-size: 18px;
}

.support-checks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.support-checks li {
    font-size: 14px;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-mark {
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 15px;
}

/* FOOTER */
footer {
    background: var(--navy-mid);
    padding: 48px 0 24px;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
}
.footer-col i {
    margin-right: 10px;
}
.social-row i {
    padding: 0;
    margin: 0;
}
.footer-top {
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--white);
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.9;
}

.footer-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.footer-col a:hover {
    color: var(--gold-light);
}

.social-row {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.social-btn {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 13px;
    transition: border-color 0.2s, color 0.2s;
}

.social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
}

.footer-disclaimer {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.28);
    line-height: 1.6;
    max-width: 780px;
}

.footer-star {
    color: var(--gold);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Progress ring SVG */
.ring-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ring-pct {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
}

.ring-label {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Responsive code */
@media(max-width: 1200px){
.hero-inner{
    top: 20%;
}
}
@media(max-width: 1024px){
    .hero-headline{
        font-size: 55px;
    }
    .feature-item{
        padding: 15px 30px;
    }
}
@media(max-width: 991px){
    
}
@media(max-width: 767px){
    .assets-header{
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }
    .assets-total-label,
    .assets-total-value{
        text-align: center;
    }
    .assets-total-value{
        font-size: 28px;
    }
    .progress-ring-wrap{
        justify-content: center;
    }
    .news-header{
        flex-direction: column;
    }
    .feature-bar {
        background: #0D1D30;
        width: 100%;
        border-radius: 20px;
        position: static;
    }
    .hero{
        height: 100vh;
    }
    .hero-inner {
         top: 25%; 
    }
    section {
        padding: 35px 0 0;
    }
    section.about-section {
        padding: 35px 0;
    }
    .section-headline{
        font-size: 30px;
        margin-bottom: 15px;
    }
    .philosophy-section{
        padding: 35px 0;
        background-position: center;
    }
    .gold-rule{
        margin-bottom: 10px;
    }
    .section-body{
        margin-bottom: 20px;
    }
    .assets-section,
    .news-section,
    .support-section{
        padding: 35px 0;
    }
    .philosophy-headline{
        font-size: 30px;
    }
    .philosophy-eyebrow{
        margin-bottom: 8px;
    }
    .philosophy-quote{
        margin: 0 auto 15px;
    }
    .philosophy-body{
        margin-bottom: 10px;
    }
    .assets-section .section-eyebrow{
        text-align: center;
    }
    .support-left h2{
        font-size: 28px;
    }
    .news-header h2{
        font-size: 30px;
    }
}
@media(max-width: 667px){
    
}
@media(max-width: 568px){
    .hero-headline {
        font-size: 45px;
    }
    .feature-item{
        justify-content: center
    }
}
@media(max-width: 479px){
    .hero-actions {
    display: flex;
    gap: 14px;
    flex-direction: column;
    align-items: flex-start;
}
.hero-headline {
    font-size: 38px;
    margin-bottom: 15px;
}
.hero-body{
    margin-bottom: 15px;
}
}
@media(max-width: 414px){
    .support-actions {
    display: flex;
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
}
}
@media(max-width: 375px){
    
}
@media(max-width: 360px){
    .hero-headline {
    font-size: 34px;
}
.section-headline {
    font-size: 22px;
    margin-bottom: 15px;
}
.news-header h2 {
    font-size: 22px;
}
.support-left h2 {
    font-size: 24px;
}
}
@media(max-width: 325px){
    
}
