.s-header__menu-links a {
    display: inline-block;
    font-family: var(--font-1);
    font-weight: 400;
    font-size: 1.85rem;
    line-height: var(--vspace-1);
    color: rgba(255, 255, 255, 0.805);
    padding: 0 1.7rem;
    border-radius: 6px;
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
    z-index: 1;
}

.s-header__menu-links a::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 85%; /* Match this value for both hover and current */
    height: 100%;
    background: rgb(213, 213, 213);
    border-radius: 6px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.25s;
}


.s-header__menu-links a:hover::before,
.s-header__menu-links a:focus::before,
.s-header__menu-links .current a::before {
    opacity: 1;
}

.s-header__menu-links .current a {
    color: #222 !important;
    position: relative;
    border-bottom: none !important;
    box-shadow: none !important;
    background: none !important;
}
.s-header__menu-links a:hover,
.s-header__menu-links a:focus {
    color: #222;
}

.s-header__menu-links a:hover::before,
.s-header__menu-links a:focus::before {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
}

.s-header__menu-links .current a {
    color: #222 !important;
    position: relative;
    border-bottom: none !important; /* Remove underline */
    box-shadow: none !important;    /* Remove any shadow underline */
}

.s-header__menu-links .current a::before {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
    background: rgb(213, 213, 213);
}
.s-header__inner {
    height: 100%;
    align-items: center;
}
.s-pagewrap {
    background-color: #232622;
}

.s-pageheader {
	background-color: gray  ;
	background-size : cover;
	background-position-x: center;
    background-position-y: 7%;
	background-repeat: no-repeat;
    padding-top: 16rem !important;
    opacity: 92%;
    text-color: rgb(255, 255, 255)
}

.logo-text {
    font-family: serif;         /* or your .intro-big-title font-family */
    font-size: 2.5rem;          /* adjust as needed */
    font-weight: bold;
    color: #f7f1e1;                /* or your preferred color */
    letter-spacing: 2px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.25);
    display: inline-block;
}






body {
    background-color: #232622; /* This is the color from your screenshot */
}


.caption {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem; /* optional spacing between items */
    width: 100%;
}
.caption > * {
    float: none;
    width: auto;
}

.row .pagemedia {
    margin-bottom: 1rem;

}

.row .pageintro p {
  font-size: 24px;

}

/* make pagemain text match pageintro .lead */
.pagemain .lead,
.pagemain .lead p {
    font-size: 24px; 
    line-height: 1.6;
}
.press-kit {
    display: flex;
    flex-wrap: wrap;
    width: 96.5%;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    display: relative;
    margin: auto;
}

.pageintro,
.pageintro p,
.lead,
.lead p {
    color: #f7f1e1 !important;
}


.p-button {
   border: 1px solid black;
   width: 100px;
   height: 50px;
   flex-grow: 1;
   transition: 0.3s;
   border-radius: 0px;
}

.p-button p {
    text-align: center;
    line-height: 50px;
}
.p-button:hover{
    background-color: black;
    color: white;
    cursor: pointer;
}
.p-button a {
    color: black;
    transition: 0.3s;

}
.p-button:hover a {
    color: white;
}


.back-to-catalog-link {
    color: #f7f1e1;
    font-size: 2rem;
    margin-left: 1rem;
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

.back-to-catalog-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: #f7f1e1;
    opacity: 0;
    transform: scaleX(0);
    transition: opacity 0.3s, transform 0.3s;
}

.back-to-catalog-link:hover::after {
    opacity: 1;
    transform: scaleX(1);
}