@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --graphite: #111816;
    --graphite-deep: #070908;
    --ruby: #7a182b;
    --ruby-soft: #b23a4d;
    --brass: #c29a5c;
    --brass-light: #ead3a1;
    --forest: #123f34;
    --forest-soft: #1d6a53;
    --ivory: #fbf5ea;
    --ivory-muted: rgba(251, 245, 234, 0.78);
    --walnut: #5b3928;
    --panel: rgba(17, 24, 22, 0.78);
    --panel-strong: rgba(7, 9, 8, 0.88);
    --border: rgba(194, 154, 92, 0.26);
    --shadow: rgba(0, 0, 0, 0.34);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background:
        linear-gradient(180deg, rgba(7, 9, 8, 0.94) 0%, rgba(17, 24, 22, 0.95) 34%, rgba(18, 63, 52, 0.92) 72%, rgba(91, 57, 40, 0.9) 100%);
    color: var(--ivory);
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

body.menu-open,
body.cookie-open {
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

#ambient-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 18%, rgba(122, 24, 43, 0.22), transparent 28%),
        radial-gradient(circle at 82% 8%, rgba(194, 154, 92, 0.16), transparent 30%),
        linear-gradient(135deg, rgba(7, 9, 8, 0.98), rgba(18, 63, 52, 0.72));
}

.light-bead {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(234, 211, 161, 0.9), rgba(194, 154, 92, 0.22) 58%, transparent 72%);
    pointer-events: none;
    animation: beadFloat 16s ease-in-out infinite;
}

.ambient-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(251, 245, 234, 0.42);
    pointer-events: none;
    animation: drift 18s ease-in-out infinite;
}

@keyframes beadFloat {
    0% {
        transform: translateY(100vh) translateX(0) scale(0.4);
        opacity: 0;
    }
    15% {
        opacity: 0.55;
    }
    80% {
        opacity: 0.45;
    }
    100% {
        transform: translateY(-6vh) translateX(28px) scale(1);
        opacity: 0;
    }
}

@keyframes drift {
    0% {
        transform: translateX(-120px) translateY(18px);
        opacity: 0;
    }
    20% {
        opacity: 0.45;
    }
    80% {
        opacity: 0.3;
    }
    100% {
        transform: translateX(calc(100vw + 120px)) translateY(-40px);
        opacity: 0;
    }
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    background: rgba(7, 9, 8, 0.88);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border);
}

nav.scrolled {
    padding: 14px 50px;
    background: rgba(7, 9, 8, 0.96);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.32);
}

.Y8kBFJ3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 24px;
}

.wWndY1uXZ,
.jps38W8 {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.wWndY1uXZ {
    transition: transform 0.3s ease;
    flex: 0 0 auto;
}

.wWndY1uXZ:hover {
    transform: translateY(-2px);
}

.r3pCk1Vhp {
    width: 45px;
    height: 45px;
}

.yf5sdrejLcT {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ivory);
    letter-spacing: 0.8px;
    white-space: nowrap;
}

.yf5sdrejLcT span {
    color: var(--brass-light);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    font-family: 'Outfit', sans-serif;
    color: var(--ivory);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.6px;
    padding: 12px 0;
    font-size: 0.86rem;
    text-transform: uppercase;
}

nav ul a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--brass), var(--ruby-soft), var(--forest-soft));
    transition: width 0.3s ease;
}

nav ul a:hover,
nav ul a.active {
    color: var(--brass-light);
}

nav ul a:hover::after,
nav ul a.active::after {
    width: 100%;
}

.UYIozEof6 {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.UYIozEof6 span {
    width: 30px;
    height: 3px;
    background: var(--brass-light);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.UYIozEof6.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.UYIozEof6.active span:nth-child(2) {
    opacity: 0;
}

.UYIozEof6.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.G3Qeg9Bh {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
    padding: 120px 50px 140px;
}

.G3Qeg9Bh::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 9, 8, 0.88), rgba(7, 9, 8, 0.42), rgba(7, 9, 8, 0.68)),
        var(--hero-image);
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
}

.G3Qeg9Bh::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 28%;
    background: linear-gradient(180deg, transparent, rgba(7, 9, 8, 0.94));
}

.WEMiqC9Kg9c {
    width: min(1060px, 100%);
    z-index: 2;
    animation: fadeInUp 1.2s ease;
    position: relative;
}

.woMMqkJ {
    min-height: 58vh;
    align-items: flex-end;
}

.woMMqkJ .WEMiqC9Kg9c {
    padding-bottom: 20px;
}

.dlWigrCOT {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--brass-light);
    font-size: 0.83rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.dlWigrCOT::before {
    content: '';
    width: 42px;
    height: 1px;
    background: var(--brass-light);
}

.xyb5N9mA {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 6.6rem);
    font-weight: 800;
    color: var(--ivory);
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-shadow: 0 14px 36px rgba(0, 0, 0, 0.58);
}

.dZpcURed {
    max-width: 760px;
    font-size: clamp(1.05rem, 2.1vw, 1.35rem);
    font-weight: 400;
    color: var(--ivory-muted);
    letter-spacing: 0.4px;
}

.t0Udaka9 {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.dqHsHzK4,
.RmWqOksh {
    font-family: 'Outfit', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid transparent;
}

.dqHsHzK4 {
    background: linear-gradient(135deg, var(--brass-light), var(--brass));
    color: var(--graphite-deep);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
}

.RmWqOksh {
    color: var(--ivory);
    border-color: rgba(251, 245, 234, 0.42);
    background: rgba(7, 9, 8, 0.32);
    backdrop-filter: blur(10px);
}

.dqHsHzK4:hover,
.RmWqOksh:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.32);
}

.kgTfio {
    margin-top: 24px;
    max-width: 720px;
    color: rgba(251, 245, 234, 0.72);
    font-size: 0.95rem;
}

.y8I03U12jY {
    position: absolute;
    bottom: 58px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 3;
    color: var(--brass-light);
    animation: gentleDrop 3s ease-in-out infinite;
}

.TLmeBdLaIbg {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(234, 211, 161, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(7, 9, 8, 0.42);
    backdrop-filter: blur(10px);
}

.y8I03U12jY svg {
    width: 28px;
    height: 28px;
}

@keyframes gentleDrop {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-12px);
    }
}

section {
    padding: 110px 50px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hCb2UgfMFIx {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 700;
    margin-bottom: 58px;
    text-align: center;
    position: relative;
    width: 100%;
    letter-spacing: 1px;
    color: var(--ivory);
}

.hCb2UgfMFIx::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    height: 3px;
    background: linear-gradient(90deg, var(--brass), var(--ruby-soft), var(--forest-soft));
}

.Xu1A7qKlu,
.l7pbHmM0T0,
.XAekzst,
.RB6Zq5,
.PnhVhc {
    background: linear-gradient(135deg, rgba(17, 24, 22, 0.78), rgba(18, 63, 52, 0.38));
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 70px 56px;
    box-shadow: 0 28px 70px var(--shadow);
    position: relative;
    overflow: hidden;
}

.Xu1A7qKlu::before,
.l7pbHmM0T0::before,
.XAekzst::before,
.RB6Zq5::before,
.PnhVhc::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent, rgba(194, 154, 92, 0.05), transparent);
    pointer-events: none;
}

.okLa6uhI {
    text-align: center;
    margin-bottom: 58px;
    position: relative;
    z-index: 1;
}

.okLa6uhI h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    color: var(--brass-light);
    margin-bottom: 20px;
}

.lpRwVSD {
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--ivory-muted);
    max-width: 850px;
    margin: 0 auto;
}

.Toa9hOfzRO {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

.je3Bbb,
.NFgnSZiFLR,
.VvzahbC1sh,
.S0h3DgPJY,
.faq-item,
.CVDrIcYnJvY {
    background: rgba(7, 9, 8, 0.48);
    border: 1px solid rgba(194, 154, 92, 0.24);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.je3Bbb {
    padding: 34px 28px;
    text-align: center;
}

.je3Bbb:hover,
.VvzahbC1sh:hover,
.S0h3DgPJY:hover,
.NFgnSZiFLR:hover {
    transform: translateY(-7px);
    border-color: rgba(234, 211, 161, 0.62);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}

.T6PFPoav,
.h2UTsN72Zq {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(234, 211, 161, 0.58);
    border-radius: 50%;
    color: var(--brass-light);
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 22px;
}

.je3Bbb h4,
.VvzahbC1sh h3,
.NFgnSZiFLR h4,
.S0h3DgPJY h4,
.CVDrIcYnJvY h3 {
    font-family: 'Playfair Display', serif;
    color: var(--brass-light);
    font-size: 1.35rem;
    margin-bottom: 14px;
}

.je3Bbb p,
.VvzahbC1sh p,
.NFgnSZiFLR p,
.S0h3DgPJY p,
.CVDrIcYnJvY p,
.CVDrIcYnJvY li {
    color: rgba(251, 245, 234, 0.78);
}

.GrUxqWRC15 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 42px;
    position: relative;
    z-index: 1;
}

.h34dDBruM,
.yMEix58,
.ySiHeRT {
    text-align: center;
    padding: 24px 18px;
    background: rgba(122, 24, 43, 0.18);
    border: 1px solid rgba(194, 154, 92, 0.22);
    border-radius: 8px;
}

.xm0vhN5KqT,
.yMEix58 .ZyQvjMEGUi,
.ySiHeRT .ZyQvjMEGUi,
.QUbVoYIGZX .ZyQvjMEGUi {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brass-light);
    line-height: 1;
    margin-bottom: 9px;
}

.Lxo5QRcp,
.yMEix58 .pmYC6eDG,
.ySiHeRT .pmYC6eDG,
.QUbVoYIGZX .pmYC6eDG {
    display: block;
    color: rgba(251, 245, 234, 0.68);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.R444JwN7g {
    max-width: none;
    padding: 110px 0;
    background: rgba(7, 9, 8, 0.24);
}

.oIK8aV {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 295px 1fr;
    gap: 46px;
    align-items: start;
}

.YPoS2eD {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 22px;
    position: sticky;
    top: 116px;
}

.research-tab {
    width: 100%;
    display: block;
    background: transparent;
    border: 1px solid rgba(194, 154, 92, 0.16);
    color: rgba(251, 245, 234, 0.82);
    padding: 16px 18px;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    text-align: left;
}

.research-tab:last-child {
    margin-bottom: 0;
}

.research-tab:hover,
.research-tab.active {
    background: linear-gradient(135deg, rgba(122, 24, 43, 0.72), rgba(18, 63, 52, 0.72));
    border-color: rgba(234, 211, 161, 0.6);
    color: var(--ivory);
}

.KoT348sWN {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 52px;
    min-height: 520px;
}

.research-content {
    display: none;
    animation: fadeInUp 0.55s ease;
}

.research-content.active {
    display: block;
}

.research-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--brass-light);
    margin-bottom: 20px;
}

.research-content > p {
    color: var(--ivory-muted);
    font-size: 1.08rem;
    max-width: 900px;
}

.KpOG7wM {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 34px 0;
}

.yMEix58 {
    min-width: 150px;
    flex: 1;
}

.jJzWkvaJv {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.NFgnSZiFLR {
    padding: 26px;
}

.rzYbZZy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    gap: 30px;
    align-items: center;
    margin-top: 34px;
}

.odIDIcedMM {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(194, 154, 92, 0.28);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.l7pbHmM0T0 {
    padding: 54px;
}

.Tc4XSWU {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    position: relative;
    z-index: 1;
}

.VvzahbC1sh {
    padding: 0;
    overflow: hidden;
}

.VvzahbC1sh .KdcIy7zDmv {
    padding: 30px;
}

.ruUxhkZ {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-bottom: 1px solid rgba(194, 154, 92, 0.24);
}

.ID948LUsv {
    list-style: none;
    margin-top: 22px;
}

.ID948LUsv li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(251, 245, 234, 0.1);
    color: rgba(251, 245, 234, 0.82);
}

.ID948LUsv li:last-child {
    border-bottom: none;
}

.jYSCJkH {
    color: var(--brass-light);
    white-space: nowrap;
}

.cl79rHw {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 22px;
}

.PktqCwXk {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.S0h3DgPJY {
    padding: 30px;
}

.S0h3DgPJY p {
    font-size: 1.02rem;
    line-height: 1.8;
}

.S0h3DgPJY .hxSkef4tU {
    margin-top: 20px;
    color: var(--brass-light);
    font-weight: 700;
}

.RB6Zq5 {
    padding: 50px;
}

.byPCFU {
    display: grid;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.faq-item {
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: transparent;
    color: var(--ivory);
    border: 0;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    cursor: pointer;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
}

.faq-question span:last-child {
    color: var(--brass-light);
    font-size: 1.35rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question span:last-child {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 22px;
    color: var(--ivory-muted);
}

.PnhVhc {
    padding: 46px;
}

.PnhVhc h3 {
    font-family: 'Playfair Display', serif;
    color: var(--brass-light);
    font-size: 2rem;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.PnhVhc p,
.PnhVhc li {
    color: var(--ivory-muted);
    position: relative;
    z-index: 1;
}

.PnhVhc ul {
    margin: 20px 0 0 20px;
}

.LE6fdtHC5 {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px;
    align-items: start;
}

.Q1fVUGvn3,
.contact-form {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 42px;
    box-shadow: 0 24px 60px var(--shadow);
}

.Q1fVUGvn3 h3,
.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--brass-light);
    margin-bottom: 28px;
}

.QFEjIbYbY3 {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 18px;
    padding: 18px;
    background: rgba(7, 9, 8, 0.34);
    border: 1px solid rgba(194, 154, 92, 0.18);
    border-radius: 8px;
}

.lgLl0iV {
    flex: 0 0 38px;
    height: 38px;
    border: 1px solid rgba(234, 211, 161, 0.5);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brass-light);
    font-size: 0.8rem;
    font-weight: 800;
}

.UMAGJAoa {
    color: var(--brass-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.78rem;
    margin-bottom: 4px;
    font-weight: 700;
}

.RcuuLo {
    color: var(--ivory-muted);
}

.PVbpv7ZZhT {
    margin-top: 28px;
}

.NEYtSB9K {
    color: var(--brass-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.qi179SKD {
    height: 220px;
    border: 1px dashed rgba(234, 211, 161, 0.52);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(122, 24, 43, 0.18), rgba(18, 63, 52, 0.28)),
        repeating-linear-gradient(45deg, transparent 0 14px, rgba(251, 245, 234, 0.03) 14px 15px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgba(251, 245, 234, 0.76);
    padding: 24px;
}

.Bry49Km05T3 {
    margin-top: 12px;
    color: rgba(251, 245, 234, 0.66);
    font-size: 0.92rem;
}

.Kv19h95 {
    margin-bottom: 20px;
}

.Kv19h95 input,
.Kv19h95 textarea,
.Kv19h95 select {
    width: 100%;
    padding: 16px 18px;
    background: rgba(7, 9, 8, 0.42);
    border: 1px solid rgba(194, 154, 92, 0.34);
    border-radius: 8px;
    color: var(--ivory);
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.Kv19h95 textarea {
    resize: vertical;
    min-height: 150px;
}

.Kv19h95 input:focus,
.Kv19h95 textarea:focus,
.Kv19h95 select:focus {
    outline: none;
    border-color: var(--brass-light);
    box-shadow: 0 0 0 4px rgba(194, 154, 92, 0.14);
}

.Kv19h95 input::placeholder,
.Kv19h95 textarea::placeholder {
    color: rgba(251, 245, 234, 0.54);
}

.XAekzst {
    max-width: 1000px;
}

.UXT25hh7k {
    display: grid;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.CVDrIcYnJvY {
    padding: 30px;
}

.CVDrIcYnJvY ul {
    margin: 16px 0 0 20px;
}

.CVDrIcYnJvY li {
    margin-bottom: 10px;
}

footer {
    background: linear-gradient(135deg, rgba(7, 9, 8, 0.98), rgba(17, 24, 22, 0.96));
    border-top: 1px solid var(--border);
    padding: 72px 50px 42px;
    margin-top: 110px;
    position: relative;
    z-index: 2;
}

.uz4m7j {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.3fr;
    gap: 60px;
}

.jk4odu .jps38W8 {
    margin-bottom: 24px;
}

.jk4odu .jps38W8 svg {
    width: 48px;
    height: 48px;
}

.osOJk357W,
.EcB7kE79Yk p,
.VJB9ef {
    color: rgba(251, 245, 234, 0.72);
}

.osOJk357W {
    max-width: 620px;
    margin-bottom: 26px;
}

.fvmTwb {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.QUbVoYIGZX {
    min-width: 110px;
}

.QUbVoYIGZX .ZyQvjMEGUi {
    font-size: 1.55rem;
}

.EcB7kE79Yk h3 {
    font-family: 'Playfair Display', serif;
    color: var(--brass-light);
    margin-bottom: 18px;
    font-size: 1.35rem;
}

.EcB7kE79Yk ul {
    list-style: none;
}

.EcB7kE79Yk li {
    margin-bottom: 12px;
}

.EcB7kE79Yk a {
    color: rgba(251, 245, 234, 0.78);
    text-decoration: none;
    transition: color 0.3s ease;
}

.EcB7kE79Yk a:hover {
    color: var(--brass-light);
}

.nQHGTZgIV {
    margin-bottom: 12px;
}

.TLwlCkjK {
    margin-top: 20px;
    padding: 16px;
    border: 1px solid rgba(194, 154, 92, 0.24);
    border-radius: 8px;
    color: var(--ivory);
    background: rgba(122, 24, 43, 0.18);
}

.VJB9ef {
    max-width: 1400px;
    margin: 42px auto 0;
    padding-top: 28px;
    border-top: 1px solid rgba(194, 154, 92, 0.2);
    text-align: center;
}

.cookie-consent {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    max-width: 920px;
    margin: 0 auto;
    z-index: 1400;
    background: rgba(7, 9, 8, 0.96);
    border: 1px solid rgba(234, 211, 161, 0.44);
    border-radius: 8px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
    padding: 22px;
    display: none;
    gap: 18px;
    align-items: center;
}

.cookie-consent.visible {
    display: flex;
}

.cookie-consent p {
    color: var(--ivory-muted);
    flex: 1;
}

.c5Uwffpr {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.c5Uwffpr button {
    white-space: nowrap;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(54px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    nav ul {
        gap: 20px;
    }

    nav a {
        font-size: 0.78rem;
    }

    .oIK8aV,
    .LE6fdtHC5 {
        grid-template-columns: 1fr;
    }

    .YPoS2eD {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .research-tab {
        margin-bottom: 0;
    }

    .rzYbZZy,
    .uz4m7j {
        grid-template-columns: 1fr;
    }

    .PktqCwXk {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }

    nav.scrolled {
        padding: 12px 20px;
    }

    .yf5sdrejLcT {
        font-size: 1.25rem;
    }

    .r3pCk1Vhp {
        width: 38px;
        height: 38px;
    }

    .Y8kBFJ3 {
        position: relative;
    }

    .UYIozEof6 {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(7, 9, 8, 0.98);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin-top: 15px;
        border-radius: 8px;
    }

    .nav-menu.active {
        max-height: 520px;
        border: 1px solid rgba(194, 154, 92, 0.28);
        box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 18px 24px;
        align-items: stretch;
    }

    nav ul li {
        padding: 10px 0;
        border-bottom: 1px solid rgba(194, 154, 92, 0.12);
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    .G3Qeg9Bh {
        margin-top: 68px;
        min-height: calc(100vh - 68px);
        padding: 90px 20px 120px;
    }

    .woMMqkJ {
        min-height: 52vh;
    }

    section,
    .oIK8aV {
        padding-left: 20px;
        padding-right: 20px;
    }

    section,
    .R444JwN7g {
        padding-top: 76px;
        padding-bottom: 76px;
    }

    .Xu1A7qKlu,
    .l7pbHmM0T0,
    .XAekzst,
    .RB6Zq5,
    .PnhVhc,
    .Q1fVUGvn3,
    .contact-form,
    .KoT348sWN {
        padding: 30px 22px;
    }

    .Toa9hOfzRO,
    .Tc4XSWU,
    .jJzWkvaJv {
        grid-template-columns: 1fr;
    }

    .GrUxqWRC15,
    .cl79rHw {
        grid-template-columns: repeat(2, 1fr);
    }

    .YPoS2eD {
        grid-template-columns: 1fr;
    }

    .KpOG7wM {
        flex-direction: column;
    }

    .t0Udaka9 {
        flex-direction: column;
        align-items: stretch;
    }

    .QFEjIbYbY3 {
        flex-direction: column;
    }

    .uz4m7j {
        gap: 36px;
    }

    footer {
        padding: 56px 20px 34px;
        margin-top: 76px;
    }

    .cookie-consent.visible {
        display: block;
    }

    .c5Uwffpr {
        margin-top: 16px;
    }

    .c5Uwffpr .dqHsHzK4,
    .c5Uwffpr .RmWqOksh {
        width: 100%;
    }
}

@media (max-width: 460px) {
    .GrUxqWRC15,
    .cl79rHw {
        grid-template-columns: 1fr;
    }

    .xyb5N9mA {
        font-size: 2.8rem;
    }

    .hCb2UgfMFIx {
        font-size: 2rem;
    }

    .ID948LUsv li {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }
}
