﻿@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  src: url('../fonts/roboto-v49-latin-100.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 200;
  src: url('../fonts/roboto-v49-latin-200.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/roboto-v49-latin-300.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v49-latin-regular.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/roboto-v49-latin-500.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/roboto-v49-latin-600.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-v49-latin-700.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/roboto-v49-latin-800.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/roboto-v49-latin-900.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/raleway-v37-latin-600.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/playfair-display-v40-latin-500.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 500;
  src: url('../fonts/playfair-display-v40-latin-500italic.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/playfair-display-v40-latin-600.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 600;
  src: url('../fonts/playfair-display-v40-latin-600italic.woff2') format('woff2');
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #2a3044;
  background-color: #fff;
  font-family: Roboto;
  font-size: 20px;
  font-weight: 300;
  line-height: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  display: inline-block;
}

address {
  font-style: normal;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.container {
  width: 100%;
  max-width: 1188px;
  margin: 0 auto;
  padding: 0 24px;
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

/* header */
.header {
    padding: 36px 0;
    background-color: #2a3044;
}

@media screen and (max-width: 768px) {
    .header {
        padding: 10px 0;
    }
}

.header--absolute {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
}

@media screen and (max-width: 768px) {
    .header--absolute {
        position: relative;
        background-color: #2a3044;
        padding: 10px 0;
    }
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    max-width: 264px;
}

@media screen and (max-width: 768px) {
    .header__logo {
        display: none;
    }
}

.header__logo-mobile {
    display: none;
}

@media screen and (max-width: 768px) {
    .header__logo-mobile {
        display: block;
    }
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media screen and (max-width: 768px) {
    .header__menu {
        display: none;
    }
}

.header__menu > li {
    position: relative;
}

.header__menu-link {
    padding: 12px 20px;
    font-family: Roboto;
    font-size: 18px;
    color: #fff;
    font-weight: 300;
    text-decoration: none;
    border-radius: 40px;
    border: 1px solid transparent;
    transition: all 0.4s;
    position: relative;
}

.header__menu-link:hover {
    color: #c4982d;
    border: 1px solid #fff;
}

.header__menu-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    height: 8px;
    width: 100%;
    background-color: transparent;
}

.submenu {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  left: 50%;
  top: 100%;
  min-width: 250px;
  margin: 8px 0 0;
  padding: 20px 0;
  list-style: none;
  background: #fff;
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, transform .4s ease, visibility .4s;
  z-index: 50;
  pointer-events: none;
}

.submenu li a {
    display: block;
    text-decoration: none;
    color: #2a3044;
    font-family: Raleway;
    font-weight: 600;
    font-size: 18px;
  
}
.submenu li a:hover { 
    color: #c4982d;
}

.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%);
  pointer-events: auto;
}

.header__button {
    padding: 12px 20px;
    font-family: Roboto;
    font-size: 18px;
    color: #fff;
    font-family: 300;
    text-decoration: none;
    border-radius: 40px;
    border: 1px solid #fff;
    transition: all 0.4s;
}

@media screen and (max-width: 768px) {
    .header__button {
        padding: 8px 12px;
        font-size: 10px;
    }
}

.header__button:hover {
    color: #c4982d;
}

.mobile-navigation-burger {
    display: none;
}

@media screen and (max-width: 768px) {
    .mobile-navigation-burger {
        display: block;
        background-color: transparent;
        border: none;
        outline: none;
    }
}

.mobile-navigation,
.mobile-navigation-overlay { 
    display: none; 
}

@media (max-width: 768px) {

  .mobile-navigation-burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    padding: 8px;
    cursor: pointer;
    z-index: 1100;
  }

  .mobile-navigation {
    display: block;
    position: fixed;
    left: 0; 
    right: 0;
    top: var(--header-height, 64px);
    width: 100%;
    background: #fff;
    max-height: calc(100vh - var(--header-height, 64px));
    overflow: auto;
    transform: translateY(-10px);
    opacity: 0; 
    visibility: hidden; 
    pointer-events: none;
    transition: opacity .4s ease, transform .4s ease, visibility .4s;
    z-index: 1050;
  }

  .mobile-navigation__list {
    list-style: none;
    margin: 0;
    padding: 26px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .mobile-navigation__link {
    display: block;
    width: 100%;
    text-decoration: none;
    color: #2a3044;
    font-family: Raleway;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
  }
  .mobile-navigation__link:hover { 
    color: #c69a2d; 
}

  .mobile-navigation__submenu {
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 10px;
  }

  .mobile-navigation__submenu-link {
    display: block;
    text-decoration: none;
    color: #2a3044;
    font-family: Roboto;
    font-weight: 400;
    font-size: 18px;
  }

  .mobile-navigation__submenu-link:hover { 
    color: #c69a2d; 
}

  .mobile-navigation-overlay {
    display: block;
    position: fixed;
    left: 0; 
    right: 0;
    top: var(--header-height, 64px);
    bottom: 0;
    background: rgba(42, 48, 68, 0.75);
    opacity: 0; 
    visibility: hidden; 
    transition: opacity .4s ease, visibility .4s;
    z-index: 1000;
  }

  .mobile-navigation--open {
    transform: translateY(0);
    opacity: 1; visibility: visible; pointer-events: auto;
  }

  .mobile-navigation-overlay--visible {
    opacity: 1; visibility: visible;
  }

  body.mobile-navigation--no-scroll { 
    overflow: hidden; 
}
}


/* home hero */

.home-hero {
    background-image: url('/images/home-hero-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 200px 0;
}

@media screen and (max-width: 768px) {
    .home-hero {
        padding: 50px 0 40px;
    }
}

.home-hero-wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 26px;
}

@media screen and (max-width: 768px) {
    .home-hero-wrapper {
        gap: 30px;
    }
}

.home-hero__title {
    font-family: Playfair Display;
    font-size: 50px;
    font-weight: 600;
    color: #fff;
    line-height: normal;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .home-hero__title {
         font-size: 30px;
    }
}

.home-hero__title span{
    font-family: Playfair Display;
    font-style: italic;
    font-size: 50px;
    font-weight: 600;
    color: #c69a2d;
    line-height: normal;
}

@media screen and (max-width: 768px) {
    .home-hero__title span {
         font-size: 30px;
    }
}

.home-hero__text {
    font-family: Roboto;
    font-size: 30px;
    font-weight: 100;
    color: #fff;
    line-height: normal;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .home-hero__text {
         font-size: 16px;
    }
}

/* home-blocks */
.home-blocks {
    margin-top: -100px;
    padding-bottom: 70px;
}

@media screen and (max-width: 768px) {
    .home-blocks {
        margin-top: 0;
        padding-top: 30px;
        padding-bottom: 40px;
    }
}

.home-blocks-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
}

@media screen and (max-width: 768px) {
    .home-blocks-wrapper {
        flex-direction: column;
        gap: 40px;
    }
}

.home-blocks__block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-blocks__block-image-left {
    margin-bottom: 40px;
    position: relative;
}

@media screen and (max-width: 768px) {
    .home-blocks__block-image-left {
        margin-bottom: 20px;
    }
}

.home-blocks__block-image-left::after {
    content: '';
    position: absolute;
    left: -12px;
    top: 10px;
    width: 12px;
    height: 90px;
    background-color: #c69a2d;
}

@media screen and (max-width: 768px) {
    .home-blocks__block-image-left::after {
        left: -2%;
        top: 2%;
        width: 2%;
        height: 86%;
    }
}

.home-blocks__block-image-left::before {
    content: '';
    position: absolute;
    left: 10px;
    top: -12px;
    width: 96%;
    height: 12px;
    background-color: #313d67;
}

@media screen and (max-width: 768px) {
    .home-blocks__block-image-left::before {
        left: 2%;
        top: -7%;
        width: 96%;
        height: 7%;
    }
}

.home-blocks__block-image-right {
    margin-bottom: 40px;
    position: relative;
}

@media screen and (max-width: 768px) {
    .home-blocks__block-image-right {
        margin-bottom: 20px;
    }
}

.home-blocks__block-image-right::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 10px;
    width: 12px;
    height: 90px;
    background-color: #c69a2d;
}

@media screen and (max-width: 768px) {
    .home-blocks__block-image-right::after {
        right: -2%;
        top: 2%;
        width: 2%;
        height: 86%;
    }
}

.home-blocks__block-image-right::before {
    content: '';
    position: absolute;
    right: 10px;
    top: -12px;
    width: 96%;
    height: 12px;
    background-color: #313d67;
}

@media screen and (max-width: 768px) {
    .home-blocks__block-image-right::before {
        right: 2%;
        top: -7%;
        width: 96%;
        height: 7%;
    }
}

.home-blocks__block-title {
    margin-bottom: 30px;
    position: relative;
}

.home-blocks__block-title::after {
    position: absolute;
    background-color: #c69a2d;
    height: 1px;
    width: 110px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    content: '';
}

.home-blocks__block-title h2 {
    text-align: center;
    color: #2a3044;
    font-size: 30px;
    font-family: Playfair Display;
    font-weight: 600;
    line-height:50px;
}

@media screen and (max-width: 768px) {
    .home-blocks__block-title h2 {
        font-size: 24px;
    }
}

.home-blocks__block-title h2 span {
    color: #c69a2d;
    font-size: 50px;
    font-family: Playfair Display;
    font-weight: 600;
    line-height: 26px;
}

@media screen and (max-width: 768px) {
    .home-blocks__block-title h2 span {
        font-size: 36px;
    }
}

.home-blocks__block-text {
    max-width: 400px;
    color: #2a3044;
    font-size: 20px;
    font-family: Roboto;
    font-weight: 300;
    text-align: center;
    line-height: 40px;
}

@media screen and (max-width: 768px) {
    .home-blocks__block-text {
        font-size: 16px;
    }
}

.home-blocks__block-text span {
    color: #c69a2d;
    font-size: 20px;
    font-family: Roboto;
    font-weight: 500;
    line-height: 40px;
}

@media screen and (max-width: 768px) {
    .home-blocks__block-text span {
        font-size: 16px;
    }
}

/* footer */
.footer {
    background-color: #2a3044;
    padding: 0 0 50px;
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 0 0 40px;
    }
}

.footer-button-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__button {
    padding: 30px 65px;
    background-color: #c69a2d;
    font-family: Roboto;
    font-weight: 700;
    font-size: 26px;
    color: #fff;
    margin: 0 auto;
    text-decoration: none;
    border: 1px solid #c69a2d;
    transition: all 0.4s;
    margin-top: -28px;
}

@media screen and (max-width: 768px) {
    .footer__button {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 0;
        font-size: 20px;
        width: calc(100% + 32px);
        margin-left: -16px;
        margin-right: -16px;
        margin-top: 0;
    }
}

.footer__button:hover {
    color: #c69a2d;
    background-color: #fff;
}

.footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 90px;
}

@media screen and (max-width: 768px) {
    .footer-wrapper {
        flex-direction: column;
        gap: 24px;
        margin-top: 36px;
    }
}

.footer-wrapper a {
    font-family: Roboto;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s;
}

@media screen and (max-width: 768px) {
    .footer-wrapper a {
        flex-direction: column;
        gap: 24px;
    }
}

.footer-wrapper a:hover {
    color: #c69a2d;
}

.footer-wrapper p {
    font-family: Roboto;
    font-size: 14px;
    font-weight: 400;
    color: #b4b7c2;
}

@media screen and (max-width: 768px) {
    .footer-wrapper p {
        order: 1;
    }
}

/* interior-hero */
.interior-hero {
    background-image: url('/images/interior-hero.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 30px 0 190px;
}

@media screen and (max-width: 768px) {
    .interior-hero {
        padding: 34px 0 42px;
    }
}

.interior-hero-wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 28px;
}

@media screen and (max-width: 768px) {
    .interior-hero-wrapper {
        gap: 10px;
    }
}

.interior-hero__title {
    font-size: 50px;
    font-family: Playfair Display;
    font-weight: 500;
    color: #fff;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .interior-hero__title {
        font-size: 24px;
    }
}

.interior-hero__text {
    font-size: 30px;
    font-family: Roboto;
    font-weight: 400;
    color: #fff;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .interior-hero__text {
        font-size: 16px;
    }
}

/* interior-block */
.interior-block {
    margin-top: -150px;
    padding-bottom: 40px;
}

@media screen and (max-width: 768px) {
    .interior-block {
        margin-top: -16px;
        padding-bottom: 0;
    }
}

.interior-block-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background-color: #2a3044;
    padding: 50px 64px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .interior-block-wrapper {
        gap: 28px;
        padding: 24px;
    }
}

.interior-block-wrapper::after {
    position: absolute;
    content: '';
    background-color: #c69a2d;
    height: 10px;
    width: 96%;
    left: 20px;
    bottom: -10px;
}

@media screen and (max-width: 768px) {
    .interior-block-wrapper::after {
        height: 8px;
        width: 97%;
        left: 5px;
        bottom: -8px;
    }
}

.interior-block__title {
    font-size: 30px;
    font-family: Roboto;
    font-weight: 400;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .interior-block__title {
        font-size: 18px;
        max-width: 180px;
    }
}

.interior-block__text {
    font-size: 18px;
    font-family: Roboto;
    font-weight: 400;
    color: #fff;
    line-height: 30px;
}

@media screen and (max-width: 768px) {
    .interior-block__text {
        font-size: 16px;
        line-height: 24px;
    }
}

/* interior-advantages */
.interior-advantages {
    padding: 40px 0 80px;
    background-color: #fff;
}

@media screen and (max-width: 768px) {
    .interior-advantages {
        padding: 30px 0 40px;
    }
}

.interior-advantages:nth-child(odd) {
    background-color: #fdfaf2;
}

.interior-advantages-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media screen and (max-width: 768px) {
    .interior-advantages-wrapper {
        gap: 34px;
    }
}

.interior-advantages__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.interior-advantages__title-line {
    height: 5px;
    width: 100%;
    background-color: #edcf88;
    max-width: 32%;
}

@media screen and (max-width: 768px) {
    .interior-advantages__title-line {
        height: 3px;
        max-width: 18%;
    }
}

.interior-advantages__title h2 {
    color: #2a3044;
    font-size: 30px;
    font-family: Playfair Display;
    font-weight: 600;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .interior-advantages__title h2 {
        font-size: 18px;
        line-height: 16px;
    }
}

.interior-advantages__title h2 span {
    color: #c69a2d;
    font-size: 30px;
    font-family: Playfair Display;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .interior-advantages__title h2 span {
        font-size: 18px;
    }
}

.interior-advantages__list {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
    .interior-advantages__list {
        gap: 34px;
        flex-direction: column;
    }
}

.interior-advantages__list-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: calc(33% - 38px);
}

@media screen and (max-width: 768px) {
    .interior-advantages__list-item {
        width: 100%;
        gap: 16px;
        flex-direction: row;
        align-items: flex-start;
    }
}

.interior-advantages__list-item-image {
    height: 70px;
    display: flex;
    align-items: flex-start;
}

@media screen and (max-width: 768px) {
    .interior-advantages__list-item-image {
        height: auto;
        flex-shrink: 0;
        max-width: 50px;
    }
}

.interior-advantages__list-item-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

@media screen and (max-width: 768px) {
    .interior-advantages__list-item-content {
        gap: 10px;
        align-items: flex-start;
    }
}

.interior-advantages__list-item-content h3 {
    color: #2a3044;
    font-size: 20px;
    font-family: Playfair Display;
    font-weight: 600;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .interior-advantages__list-item-content h3 {
        font-size: 14px;
        text-align: left;
    }
}

.interior-advantages__list-item-content p {
    color: #2a3044;
    font-size: 20px;
    font-family: Roboto;
    font-weight: 300;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .interior-advantages__list-item-content p {
        font-size: 14px;
        text-align: left;
    }
}

@media screen and (max-width: 768px) {

    /* Push Contact button fully right */
    .header__button {
        margin-left: auto;
    }

    /* Visually center the burger relative to the screen */
    .mobile-navigation-burger {
        margin: 0 auto;
    }
}

.interior-hero__signature {
    width: 100%;
    text-align: right;
    margin-top: 0px;
}

.interior-hero__name {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: 26px;
    color: #fff;
    margin-bottom: 4px;
}

.interior-hero__role {
    font-family: Roboto, sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: #fff;
    opacity: 0.85;
}

/* Responsive adjustment for smaller screens */
@media screen and (max-width: 768px) {
    .interior-hero__signature {
        text-align: center;
        margin-top: 12px;
    }

    .interior-hero__name {
        font-size: 20px;
    }

    .interior-hero__role {
        font-size: 14px;
    }
}


/* Leadership Section */
.leadership {
  background-color: #fdfaf2;
  padding: 20px 0 80px;
}

.leadership__title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 600;
  color: #2a3044;
  margin-bottom: 40px;
}

/* Leadership grid layout */
.leadership__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center full and partial rows */
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Leader cards */
.leader {
  flex: 1 1 calc(33.333% - 40px);
  max-width: 340px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  padding: 24px 26px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

/* 👻 Invisible placeholder keeps last row centered */
.leader--ghost {
  visibility: hidden;
  pointer-events: none;
  flex: 1 1 calc(33.333% - 40px);
  max-width: 340px;
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  box-shadow: none;
}

/* Responsive */
@media screen and (max-width: 992px) {
  .leader,
  .leader--ghost {
    flex: 1 1 calc(50% - 40px);
  }
}

@media screen and (max-width: 600px) {
  .leader,
  .leader--ghost {
    flex: 1 1 100%;
  }
}


/* Name and role */
.leader__name {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 600;
    color: #2a3044;
    margin-bottom: 4px;
    position: relative;
}

    .leader__name::after {
        content: "▼";
        font-size: 12px;
        color: #c69a2d;
        margin-left: 6px;
        transition: transform 0.3s ease;
    }

.leader__role {
    font-family: Roboto, sans-serif;
    font-size: 15px;
    color: #c69a2d;
    font-weight: 500;
    margin-bottom: 12px;
}

/* Bio - hidden text, popup handled separately */
.leader__bio {
    display: none;
}

/* Responsive layout */
@media screen and (max-width: 992px) {
    .leadership__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media screen and (max-width: 600px) {
    .leader {
        flex: 1 1 100%;
    }
}

/* Popup overlay */
.leader-popup {
    position: fixed;
    inset: 0;
    background: rgba(42, 48, 68, 0.8);
    display: flex;
    align-items: flex-start; /* move higher */
    justify-content: center;
    padding-top: 6vh; /* add gentle top spacing */
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 2000;
}

    .leader-popup.active {
        visibility: visible;
        opacity: 1;
    }

/* Popup box */
.leader-popup__inner {
    background: #fff;
    border-radius: 12px;
    max-width: 800px;
    width: 90%;
    padding: 40px 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.leader-popup.active .leader-popup__inner {
    transform: scale(1);
}

/* Close button */
.leader-popup__close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 30px;
    color: #2a3044;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.leader-popup__name {
    font-family: "Playfair Display", serif;
    font-size: 26px;
    font-weight: 600;
    color: #2a3044;
    margin-bottom: 6px;
}

.leader-popup__role {
    font-family: Roboto, sans-serif;
    color: #c69a2d;
    font-weight: 500;
    margin-bottom: 20px;
}

.leader-popup__bio {
    font-family: Roboto, sans-serif;
    font-size: 17px;
    color: #2a3044;
    font-weight: 300;
    line-height: 28px;
}

    .leader-popup__bio p {
        margin-bottom: 16px;
    }

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .leader-popup {
        align-items: center;
        padding-top: 0;
    }
}

@media screen and (max-width: 768px) {
    .leader-popup__inner {
        width: 95%;
        padding: 24px;
        border-radius: 8px;
        max-height: 85vh;
        overflow-y: auto;
    }
}

/* bio excerpts */
.leader__excerpt {
    font-family: Roboto, sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #2a3044;
    line-height: 1.5;
    margin-top: 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical;
}

.leader__more {
    display: inline-block;
    font-weight: 500;
    color: #c69a2d;
    text-decoration: none;
    margin-left: 4px;
    transition: color 0.3s ease;
}

    .leader__more:hover {
        color: #2a3044;
        text-decoration: underline;
    }


.contact .footer__button {
    display: none !important;
}

.home-blocks__block-text a {
    display: inline!important;
    text-decoration: none;
    color: inherit;
}