@charset "UTF-8";
/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    /* Colors (new brand palette) */
    --bg: #FFFFFF; /* page background */
    --bg-alt: #FAFAF8; /* alternate section background (Soft Neutral) */
    --primary: #17202A; /* deep charcoal/navy - corporate authority */
    --secondary: #F5F1EA; /* warm textile-inspired neutral */
    --accent: #B68A3A; /* premium muted gold - CTA/highlights */
    --danger: #B68A3A; /* no red defined in new palette; mapped to accent for highlight/hover states */
    --white: #FFFFFF;
    --text-dark: #17202A; /* dark text for readability */
    --text-light: #5C6670;
    --border: #E5DED0;

    /* Fonts */
    --font-heading: 'Cormorant Garamond', serif; /* H1-H3 per brand sheet */
    --font-body: 'Montserrat', sans-serif; /* body, nav, buttons, and H4-H6 */
    --font-primary: var(--font-body);

    /* Spacing */
    --space-xs: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
}

/* ===== BASE STYLES ===== */
* , *::before, *::after {
    box-sizing: border-box;
}

html {
    height: 100%;
    width: 100%;
}

body {
    height: 100%;
    width: 100%;
    font-family: var(--font-body);
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--bg);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
}

a:hover {
    color: var(--primary);
    text-decoration: none !important;
}

a,
button,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}

/* ===== TYPOGRAPHY ===== */
p {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-light);
    font-weight: 400;
    margin: 0 0 16px 0;
    font-family: var(--font-body);
}

h1, h2, h3 {
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 16px 0;
    font-family: var(--font-heading);
}

h4, h5, h6 {
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 16px 0;
    font-family: var(--font-body);
}

h1 { font-size: 64px; line-height: 1.1; }
h2 { font-size: 45px; line-height: 1.15; }
h3 { font-size: 30px; line-height: 1.2; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

@media (max-width: 1024px) {
    p { font-size: 15px; line-height: 25px; }
    h1 { font-size: 54px; }
    h2 { font-size: 40px; }
    h3 { font-size: 28px; }
}

@media (max-width: 768px) {
    p { font-size: 14px; line-height: 24px; }
    h1 { font-size: 42px; line-height: 1.12; }
    h2 { font-size: 30px; line-height: 1.18; }
    h3 { font-size: 26px; line-height: 1.22; }
    h4 { font-size: 1.35rem; }
    h5 { font-size: 1.15rem; }
    h6 { font-size: 1rem; }
}


/* ===== COMMON SECTION TITLE ===== */
.common-title { max-width: 720px; margin-bottom: 32px;}
.common-title__subtitle { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 10px; color: var(--accent); font-size: 15px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;}
.common-title__subtitle::after { display: none; }
.common-title__heading { margin: 0; color: var(--primary); font-size: 50px; font-weight: 800; line-height: 55px; letter-spacing: -1px; font-family: var(--font-heading); }
.common-title__highlight { color: var(--accent);}
.common-title__text { margin-top: 16px; max-width: 620px; font-size: 16px; line-height: 29px; font-family: var(--font-body); color: var(--text-light);}
@media (max-width: 768px) { .common-title { margin-bottom: 24px;}
.common-title__heading { font-size: 35px; line-height: 40px;}
.common-title__subtitle { gap: 10px; margin-bottom: 12px; font-size: 13px;}
.common-title__subtitle::after { width: 40px;}
.common-title__text {  font-size: 16px;}}

/* ===== COMMON BUTTON ===== */
.common-btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 48px; padding: 12px 36px; border: 2px solid transparent; border-radius: 1px; background: var(--primary); color: var(--white); font-family: var(--font-body); font-size: 15px; font-weight: 600; line-height: 1; text-decoration: none; cursor: pointer; position: relative;}
.common-btn:hover,
.common-btn:focus { text-decoration: none; background: var(--accent); border-color: var(--accent); color: var(--white);}
.common-btn::after { display: none; }
.common-btn--outline { background: transparent; color: var(--primary); box-shadow: none; border: 2px solid var(--primary);}
.common-btn--outline:hover,
.common-btn--outline:focus { background: var(--primary); border-color: var(--primary); color: var(--white);}
.common-btn--dark { background: var(--text-dark); border-color: var(--text-dark); color: var(--white); }
.common-btn--dark:hover,
.common-btn--dark:focus { background: var(--accent); border-color: var(--accent); color: var(--white);}
.common-btn--sm { min-height: 44px; padding: 10px 22px; font-size: 14px; border-radius: 1px;}
.common-btn--lg { min-height: 60px; padding: 16px 40px; font-size: 16px; border-radius: 1px;}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}
::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
    border-radius: 10px;
}

/* ===== UTILITY CLASSES ===== */
.bg-dark {
    background-color: var(--text-dark) !important;
}
.bg-light {
    background-color: var(--bg) !important;
}

.content-section {
    padding: 70px 0;
}

/* ===== CARDS ===== */
.work-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
}

.work-content {
    padding: 20px 15px 10px;
}

.client-card {
    padding: 15px;
    background-color: var(--text-dark);
    border-radius: 6px;
    color: var(--white);
}

/* ===== WORDPRESS SPECIFIC ===== */
#wpadminbar {
    display: none !important;
}

.grecaptcha-badge {
    display: none !important;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER / NAV STYLES ===== */
.atlas-texati-heder-neewffvw-header { position: fixed; top: 18px; left: 0; right: 0; z-index: 60; padding: 0; background: transparent;}
.atlas-texati-heder-neewffvw-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; background: rgba(255, 255, 255, 0.88);  border: 1px solid rgba(23, 32, 42, 0.08); padding: 16px 34px; min-height: 90px; box-shadow: 0 8px 18px rgba(23, 32, 42, 0.04); position: relative;}
.atlas-texati-heder-neewffvw-brand { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; line-height: 1; z-index: 2;}
.atlas-texati-heder-neewffvw-logo { display: block; max-height: 52px; width: auto; object-fit: contain; filter: none;}
.atlas-texati-heder-neewffvw-nav { display: flex; align-items: center;  justify-content: center; flex-wrap: wrap;  gap: 12px 28px;  margin-left: auto;}
.atlas-texati-heder-neewffvw-link { color: var(--primary); text-decoration: none; text-transform: uppercase; font-size: 14px; font-weight: 600; letter-spacing: 0.18em; line-height: 1.2; transition: color 0.2s ease; font-family: var(--font-body);}
.atlas-texati-heder-neewffvw-link:hover,
.atlas-texati-heder-neewffvw-link:focus { color: var(--accent); text-decoration: none;}
.atlas-texati-heder-neewffvw-dropdown { position: relative; }
.atlas-texati-heder-neewffvw-dropdown-head { display: flex; align-items: center; gap: 6px; }
.atlas-texati-heder-neewffvw-dropdown-toggle { width: 9px; height: 9px; padding: 0; border: 0; border-right: 1px solid var(--primary); border-bottom: 1px solid var(--primary); background: transparent; transform: rotate(45deg) translateY(-2px); cursor: pointer; }
.atlas-texati-heder-neewffvw-dropdown-menu { position: absolute; top: calc(100% + 8px); left: 50%; z-index: 80; display: grid; min-width: 240px; padding: 10px; border: 1px solid rgba(23,32,42,.1); background: rgba(255,255,255,.98); box-shadow: 0 14px 30px rgba(23,32,42,.12); opacity: 0; pointer-events: none; transform: translate(-50%, 8px); transition: opacity .2s ease, transform .2s ease; }
.atlas-texati-heder-neewffvw-dropdown::after { content: ''; position: absolute; left: 0; right: 0; top: -10px; height: 10px; }
.atlas-texati-heder-neewffvw-dropdown-link { padding: 12px 14px; color: var(--primary); font: 600 11px/1.35 var(--font-body); letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.atlas-texati-heder-neewffvw-dropdown-link:hover, .atlas-texati-heder-neewffvw-dropdown-link:focus { background: var(--secondary); color: var(--accent); text-decoration: none; }
.atlas-texati-heder-neewffvw-dropdown:hover .atlas-texati-heder-neewffvw-dropdown-menu, .atlas-texati-heder-neewffvw-dropdown:focus-within .atlas-texati-heder-neewffvw-dropdown-menu, .atlas-texati-heder-neewffvw-dropdown.is-open .atlas-texati-heder-neewffvw-dropdown-menu { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.atlas-texati-heder-neewffvw-toggle { display: none; width: 44px; height: 44px;  border: 1px solid rgba(23, 32, 42, 0.12); background: var(--white);align-items: center; justify-content: center;  flex-direction: column;  gap: 5px;  padding: 0; cursor: pointer; z-index: 3;}
.atlas-texati-heder-neewffvw-toggle span { display: block; width: 18px;  height: 2px; background: var(--primary); border-radius: 1px; transition: transform 0.25s ease, opacity 0.25s ease;}
.atlas-texati-heder-neewffvw-toggle.open span:nth-child(1) {  transform: translateY(7px) rotate(45deg);}
.atlas-texati-heder-neewffvw-toggle.open span:nth-child(2) {  opacity: 0;}
.atlas-texati-heder-neewffvw-toggle.open span:nth-child(3) {  transform: translateY(-7px) rotate(-45deg);}
@media (max-width: 900px) {.atlas-texati-heder-neewffvw-header { top: 12px; padding: 0; background: transparent;}
.atlas-texati-heder-neewffvw-inner { gap: 12px; padding: 12px 16px; min-height: 68px;}
.atlas-texati-heder-neewffvw-toggle { display: inline-flex; margin-left: auto;}
.atlas-texati-heder-neewffvw-nav {  display: none;  position: absolute;  top: calc(100% + 12px);  left: 0;  right: 0; margin-left: 0; background: rgba(255, 255, 255, 0.96); border: 1px solid rgba(23, 32, 42, 0.08); border-radius: 1px; box-shadow: 0 14px 28px rgba(23, 32, 42, 0.08); padding: 18px 20px; flex-direction: column; align-items: flex-start; gap: 8px;  z-index: 30;}
.atlas-texati-heder-neewffvw-nav.open {  display: flex;} .atlas-texati-heder-neewffvw-link { width: 100%; padding: 8px 0; font-size: 11px; letter-spacing: 0.12em; }}
@media (max-width: 900px) {.atlas-texati-heder-neewffvw-dropdown { width: 100%; }.atlas-texati-heder-neewffvw-dropdown-head { width: 100%; justify-content: space-between; }.atlas-texati-heder-neewffvw-dropdown-menu { position: static; display: none; width: 100%; min-width: 0; margin: 4px 0 6px; padding: 0 0 0 14px; border: 0; box-shadow: none; opacity: 1; transform: none; }.atlas-texati-heder-neewffvw-dropdown.is-open .atlas-texati-heder-neewffvw-dropdown-menu { display: grid; }}
@media (max-width: 900px) {.atlas-texati-heder-neewffvw-dropdown:hover .atlas-texati-heder-neewffvw-dropdown-menu, .atlas-texati-heder-neewffvw-dropdown:focus-within .atlas-texati-heder-neewffvw-dropdown-menu, .atlas-texati-heder-neewffvw-dropdown.is-open .atlas-texati-heder-neewffvw-dropdown-menu { transform: none; }}
@media (max-width: 640px) {.atlas-texati-heder-neewffvw-header { top: 8px; padding: 0; background: transparent;}
.atlas-texati-heder-neewffvw-inner { justify-content: space-between; gap: 12px; padding: 10px 12px 10px 14px; min-height: 62px; flex-wrap: nowrap;}
.atlas-texati-heder-neewffvw-brand {  width: auto;  justify-content: flex-start;  flex: 1;} .atlas-texati-heder-neewffvw-logo { max-height: 34px;}
.atlas-texati-heder-neewffvw-nav { justify-content: flex-start; width: 100%; top: calc(100% + 8px);}}


/* ===== FOOTER ===== */
.footer-new-atlasvgsdvgsd {  background: var(--secondary);  color: var(--primary);}
.footer-new-atlasvgsdvgsd-main { padding: 64px 0 52px;}
.footer-new-atlasvgsdvgsd-grid { display: grid; grid-template-columns: minmax(220px, 1.5fr) repeat(3, minmax(130px, 0.8fr)) minmax(220px, 1.25fr); gap: 42px;}
.footer-new-atlasvgsdvgsd-logo-link { display: inline-flex; align-items: center; max-width: 180px; margin-bottom: 26px;}
.footer-new-atlasvgsdvgsd-logo { display: block; width: auto; max-width: 180px; max-height: 58px; object-fit: contain;}
.footer-new-atlasvgsdvgsd-text { max-width: 340px; margin: 0; color: #574e43; font-family: var(--font-body); font-size: 15px; line-height: 1.75;}
.footer-new-atlasvgsdvgsd-heading { margin: 8px 0 26px; color: var(--primary); font-family: var(--font-body); font-size: 16px; font-weight: 900; letter-spacing: 0.06em; line-height: 1.2; text-transform: uppercase;}
.footer-new-atlasvgsdvgsd-bottom-heading { margin: 0; color: var(--primary); font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;}
.footer-new-atlasvgsdvgsd-list, .footer-new-atlasvgsdvgsd-contact-list { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none;}
.footer-new-atlasvgsdvgsd-list a, .footer-new-atlasvgsdvgsd-contact-list a,
.footer-new-atlasvgsdvgsd-contact-list span { color: #574e43; font-family: var(--font-body); font-size: 15px; line-height: 1.4; text-decoration: none;}
.footer-new-atlasvgsdvgsd-list a:hover, .footer-new-atlasvgsdvgsd-list a:focus, .footer-new-atlasvgsdvgsd-contact-list a:hover,
.footer-new-atlasvgsdvgsd-contact-list a:focus { color: var(--accent);} .footer-new-atlasvgsdvgsd-contact-list li { display: flex; align-items: flex-start; gap: 12px;}
.footer-new-atlasvgsdvgsd-contact-list i { width: 16px; padding-top: 3px; color: var(--primary); text-align: center;}
.footer-new-atlasvgsdvgsd-social { display: flex; align-items: center; gap: 14px; margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(23, 32, 42, 0.18);}
.footer-new-atlasvgsdvgsd-social-link { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; color: #867c6e; font-size: 15px; text-decoration: none;}
.footer-new-atlasvgsdvgsd-social-link:hover,
.footer-new-atlasvgsdvgsd-social-link:focus { color: var(--primary);}
.footer-new-atlasvgsdvgsd-form { display: flex; margin-top: 18px; border-bottom: 1px solid rgba(23, 32, 42, 0.22);}
.footer-new-atlasvgsdvgsd-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;}
.footer-new-atlasvgsdvgsd-form input { min-width: 0; flex: 1; height: 46px; padding: 0 12px; border: 1px solid rgba(23, 32, 42, 0.14); border-right: 0; border-radius: 0; background: rgba(255, 255, 255, 0.36); color: var(--primary); font-family: var(--font-body); font-size: 12px;}
.footer-new-atlasvgsdvgsd-form input:focus { outline: 2px solid var(--accent); outline-offset: -2px;}
.footer-new-atlasvgsdvgsd-form button {  width: 50px;  border: 0; border-radius: 0; background: var(--primary); color: var(--white); cursor: pointer;}
.footer-new-atlasvgsdvgsd-form button:hover, .footer-new-atlasvgsdvgsd-form button:focus { background: var(--accent);}
.footer-new-atlasvgsdvgsd-bottom {  background: var(--accent);  padding-top: 12px;  padding-bottom: 12px;}
.footer-new-atlasvgsdvgsd-bottom-inner {  display: flex;  align-items: center; justify-content: space-between; gap: 24px;}
.footer-new-atlasvgsdvgsd-legal { display: flex; align-items: center; justify-content: flex-end; gap: 24px; }
.footer-new-atlasvgsdvgsd-legal a { color: var(--bg); font-family: var(--font-body); font-size: 13px; line-height: 1.4; text-decoration: none; }
.footer-new-atlasvgsdvgsd-legal a:hover, .footer-new-atlasvgsdvgsd-legal a:focus { color: var(--primary); }
.footer-new-atlasvgsdvgsd-grid { grid-template-columns: minmax(280px, 1.35fr) minmax(150px, .8fr) minmax(150px, .8fr) minmax(250px, 1.15fr) minmax(220px, 1.05fr); gap: 34px; }
.footer-new-atlasvgsdvgsd-contact-list { min-width: 0; }
.footer-new-atlasvgsdvgsd-contact-list li { min-width: 0; }
.footer-new-atlasvgsdvgsd-contact-list a, .footer-new-atlasvgsdvgsd-contact-list span { overflow-wrap: anywhere; }
.footer-new-atlasvgsdvgsd-copyright { margin: 0; color: var(--bg); font-size: 16px; line-height: 1.4; text-align: center;}
@media (max-width: 1100px) { .footer-new-atlasvgsdvgsd-grid { grid-template-columns: 1.4fr repeat(2, 1fr) 1.2fr;} .footer-new-atlasvgsdvgsd-column--about { grid-column: span 2; }}
@media (max-width: 700px) {.footer-new-atlasvgsdvgsd-main { padding: 46px 0 38px;}.footer-new-atlasvgsdvgsd-grid { grid-template-columns: 1fr 1fr; gap: 34px 24px;}
.footer-new-atlasvgsdvgsd-column--about, .footer-new-atlasvgsdvgsd-column--newsletter { grid-column: 1 / -1;}}
@media (max-width: 420px) { .footer-new-atlasvgsdvgsd-grid { grid-template-columns: 1fr;}
.footer-new-atlasvgsdvgsd-column--about, .footer-new-atlasvgsdvgsd-column--newsletter {  grid-column: auto;}
.footer-new-atlasvgsdvgsd-bottom-inner { flex-direction: column; gap: 8px;}}

.atlas-back-to-top { position: fixed; right: 24px; bottom: 24px; z-index: 90; display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; padding: 0; border: 0; border-radius: 50%; background: var(--primary); color: var(--white); font-size: 18px; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, background-color 0.2s ease;}
.atlas-back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0);}
.atlas-back-to-top:hover, .atlas-back-to-top:focus-visible { background: var(--accent);}
.atlas-back-to-top:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px;}
@media (max-width: 600px) { .atlas-back-to-top { right: 16px; bottom: 16px;}}

/*-- bradcrumb style --*/
.atlas-crumb-new2026bd-wrap { box-sizing: border-box; background: var(--white);}
.atlas-crumb-new2026bd-wrap * { box-sizing: border-box;} .atlas-crumb-new2026bd-wrap h1 { margin: 0; color: var(--white);}
.atlas-crumb-new2026bd-hero { position: relative; display: flex; align-items: stretch; min-height: 450px; overflow: hidden; background-color: var(--primary);
    background-image: linear-gradient(90deg, color-mix(in srgb, var(--accent) 86%, transparent) 0%, color-mix(in srgb, var(--accent) 72%, transparent) 34%, color-mix(in srgb, var(--accent) 18%, transparent) 58%, transparent 72%), var(--breadcrumb-image);
    background-position: center; background-size: cover;}
.atlas-crumb-new2026bd-hero-text { position: relative; z-index: 2; width: 100%; max-width: 1350px; margin: 0 auto; padding: 170px 20px 40px; color: var(--white);}
.atlas-crumb-new2026bd-bar { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; font-size: 16px;}
.atlas-crumb-new2026bd-bar a { color: var(--white); font-weight: 600; text-decoration: none; opacity: 0.85; transition: opacity 0.2s, color 0.2s;}
.atlas-crumb-new2026bd-bar a:hover, .atlas-crumb-new2026bd-bar a:focus { color: var(--accent); opacity: 1;}
.atlas-crumb-new2026bd-sep { color: var(--text-light); opacity: 0.6;} .atlas-crumb-new2026bd-current { color: var(--bg); font-weight: 600;}
.atlas-crumb-new2026bd-hero-text h1 { font-weight: 900; margin-bottom: 15px; font-size: 40px; line-height: 1.15;}
.atlas-crumb-new2026bd-tag { display: block; max-width: 480px; margin-bottom: 14px; padding-bottom: 14px; color: var(--bg); font-size: 16px; font-weight: 600;}
.atlas-crumb-new2026bd-wave { position: absolute; right: 0; bottom: -1px; left: 0; display: block; z-index: 3; width: 100%; height: 70px; pointer-events: none;}
.atlas-crumb-new2026bd-wave-fill { fill: var(--white);} .atlas-crumb-new2026bd-wave-line { stroke: var(--accent);}
@media (max-width: 768px) { .atlas-crumb-new2026bd-hero { flex-direction: column; min-height: 0;}
.atlas-crumb-new2026bd-hero-text { flex-basis: auto; padding: 100px 24px 32px;} .atlas-crumb-new2026bd-bar { margin-bottom: 8px;} .atlas-crumb-new2026bd-bar a { font-size: 13px;}
.atlas-crumb-new2026bd-current { font-size: 13px;} .atlas-crumb-new2026bd-hero-text h1 { font-size: 22px;} .atlas-crumb-new2026bd-tag { font-size: 13px;} .atlas-crumb-new2026bd-wave { height: 40px;}}















