@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/assets/fonts/manrope-400.ttf") format("truetype");
}

@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("/assets/fonts/manrope-500.ttf") format("truetype");
}

@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("/assets/fonts/manrope-600.ttf") format("truetype");
}

@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("/assets/fonts/manrope-700.ttf") format("truetype");
}

@font-face {
    font-family: "Sora";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/assets/fonts/sora-400.ttf") format("truetype");
}

@font-face {
    font-family: "Sora";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("/assets/fonts/sora-600.ttf") format("truetype");
}

@font-face {
    font-family: "Sora";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("/assets/fonts/sora-700.ttf") format("truetype");
}

@font-face {
    font-family: "Sora";
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url("/assets/fonts/sora-800.ttf") format("truetype");
}
:root {
    --color-primary: #6b4a2f;
    --color-secondary: #1f3a44;
    --color-accent: #d9892b;
    --color-bg: #f5f1ea;
    --color-surface: #fffdf8;
    --color-text: #211b15;
    --color-muted: #6f6559;
    --color-border: #ddd2c3;
    --shadow-lg: 0 24px 50px -26px rgba(31, 58, 68, 0.45);
    --radius-lg: 1.125rem;
    --radius-md: 0.75rem;
    --radius-sm: 0.5rem;
    --container: min(1160px, 92vw);
    --font-heading: "Sora", "Segoe UI", sans-serif;
    --font-body: "Manrope", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-text);
    background:
        radial-gradient(1000px 500px at 100% -10%, rgba(217, 137, 43, 0.12), transparent 60%),
        radial-gradient(800px 450px at -5% 22%, rgba(107, 74, 47, 0.1), transparent 65%),
        var(--color-bg);
    line-height: 1.6;
    max-width: 100%;
    overflow-x: hidden;
}

body.lightbox-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    left: 0.5rem;
    top: -100%;
    background: var(--color-secondary);
    color: #fff;
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-sm);
    z-index: 999;
}

.skip-link:focus {
    top: 0.6rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    background: rgba(245, 241, 234, 0.92);
    border-bottom: 1px solid rgba(111, 101, 89, 0.16);
}

.topbar {
    display: flex;
    justify-content: space-between;
    gap: 0.7rem;
    padding: 0.5rem 0;
    font-size: 0.93rem;
}

.topbar__contacts {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.topbar__actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.topbar a {
    text-decoration: none;
    color: var(--color-secondary);
}

.topbar__utility-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.8rem;
    padding: 0.72rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(31, 58, 68, 0.18);
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-secondary);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    transition: transform 0.15s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    border: 1px solid rgba(31, 58, 68, 0.18);
    background: rgba(255, 255, 255, 0.8);
    transition: transform 0.15s ease, background-color 0.2s ease;
}

.social-link img {
    width: 1rem;
    height: 1rem;
    object-fit: contain;
}

.topbar__utility-link:hover,
.topbar__utility-link:focus-visible,
.social-link:hover,
.social-link:focus-visible {
    transform: translateY(-1px);
    background: rgba(31, 58, 68, 0.08);
}

.main-nav-wrap {
    border-top: 1px solid rgba(111, 101, 89, 0.16);
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 4.5rem;
    gap: 1.2rem;
}

.logo-link {
    min-width: 140px;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.main-menu a {
    text-decoration: none;
    padding: 0.45rem 0.6rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-secondary);
    transition: background-color 0.18s ease, color 0.18s ease;
}

.main-menu a:hover,
.main-menu a:focus-visible {
    background: rgba(31, 58, 68, 0.09);
    color: #0f272f;
}

.main-menu a.is-active {
    background: var(--color-secondary);
    color: #fff;
}

.nav-toggle {
    display: none;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    border-radius: 0.6rem;
    width: 2.9rem;
    height: 2.55rem;
    padding: 0.35rem;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-secondary);
    margin: 0.28rem 0;
}

.visually-hidden {
    position: absolute;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    width: 1px;
    height: 1px;
    overflow: hidden;
    white-space: nowrap;
}

.section {
    padding: clamp(3rem, 4vw, 4.5rem) 0;
}

.section--tight {
    padding: 2.4rem 0;
}

.section--light {
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.95), rgba(255, 253, 248, 0.6));
    border-top: 1px solid rgba(111, 101, 89, 0.15);
    border-bottom: 1px solid rgba(111, 101, 89, 0.15);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(3.2rem, 5vw, 5.2rem) 0;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.hero::before {
    width: 280px;
    height: 280px;
    background: rgba(217, 137, 43, 0.18);
    right: -90px;
    top: 35px;
}

.hero::after {
    width: 220px;
    height: 220px;
    background: rgba(31, 58, 68, 0.15);
    left: -80px;
    bottom: -70px;
}

.hero-grid {
    display: grid;
    gap: 1.5rem;
    align-items: center;
}

.hero h1 {
    margin: 0 0 1rem;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.01em;
    font-size: clamp(2rem, 5vw, 3.35rem);
}

.hero p {
    margin: 0;
    font-size: clamp(1.05rem, 1.9vw, 1.2rem);
    max-width: 60ch;
    color: #2f2720;
}

.hero__actions {
    margin-top: 1.7rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.hero-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    width: min(100%, 460px);
    margin-left: auto;
}

.hero-card img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    background: #fff;
}

.hero-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: center;
    padding: 0.35rem 0.4rem 0.5rem;
    font-size: 0.95rem;
    color: var(--color-muted);
}

.btn {
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0.72rem 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.18s ease, background-color 0.2s ease, color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-1px);
}

.btn--small {
    padding: 0.45rem 0.95rem;
    font-size: 0.88rem;
}

.btn--primary {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 10px 20px -12px rgba(107, 74, 47, 0.8);
}

.btn--primary:hover,
.btn--primary:focus-visible {
    background: #5b3f28;
}

.btn--accent {
    background: var(--color-accent);
    color: #2b1a07;
}

.btn--accent:hover,
.btn--accent:focus-visible {
    background: #be741d;
}

.btn--ghost {
    border-color: rgba(31, 58, 68, 0.3);
    color: var(--color-secondary);
    background: transparent;
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
    background: rgba(31, 58, 68, 0.08);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.9rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-secondary);
    font-weight: 700;
}

.eyebrow::before {
    content: "";
    display: inline-block;
    width: 1.7rem;
    height: 2px;
    background: currentColor;
}

h2,
h3,
h4 {
    margin-top: 0;
    color: #1b1814;
}

h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.4vw, 2.15rem);
    line-height: 1.2;
}

h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.16rem, 1.7vw, 1.38rem);
    line-height: 1.25;
}

p {
    margin: 0 0 1rem;
    color: #352d25;
    overflow-wrap: anywhere;
}

.section-lead {
    max-width: 66ch;
    color: #3f352c;
    margin-bottom: 1.5rem;
}

.cards {
    display: grid;
    gap: 0.7rem;
}

.card {
    display: grid;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 25px -22px rgba(31, 58, 68, 0.5);
}

.card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 180px;
}

.fefco-card__media {
    overflow: hidden;
    background: #fff;
}

.fefco-card__media img {
    height: 200px;
    min-height: 130px;
    object-fit: cover;
    object-position: right center;
}

.card__body {
    padding: 1rem 1.1rem 1.15rem;
}

.card__body p {
    color: #4a4036;
}

.card__link {
    text-decoration: none;
    font-weight: 700;
    color: var(--color-secondary);
}

.split {
    display: grid;
    gap: 1.3rem;
    align-items: center;
}

.list-check {
    list-style: none;
    margin: 0;
    padding: 0;
}

.list-check li {
    position: relative;
    padding-left: 1.65rem;
    margin-bottom: 0.7rem;
}

.list-check li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 30px;
    background: linear-gradient(120deg, var(--color-primary), var(--color-accent));
}

.timeline {
    display: grid;
    gap: 0.9rem;
}

.timeline-item {
    border-left: 3px solid rgba(107, 74, 47, 0.5);
    padding-left: 1rem;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding-block: 0.42rem;
}

.timeline-item h3 {
    margin-bottom: 0.35rem;
}

.gallery {
    display: grid;
    gap: 0.85rem;
}

.gallery figure {
    margin: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: #fff;
}

.gallery img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
}

.gallery video {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
    background: #000;
}

.gallery figcaption {
    padding: 0.55rem 0.75rem 0.7rem;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.gallery-article-preview {
    display: -webkit-box;
    margin-top: 0.3rem;
    color: #5f554b;
    font-size: 0.82rem;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    max-height: calc(1.45em * 4);
}

.gallery-article-preview p {
    margin: 0;
}

.gallery-article-preview p + p,
.gallery-article-preview ul,
.gallery-article-preview ol {
    margin-top: 0.35rem;
}

.gallery-inquiry-btn {
    margin-top: 0.65rem;
}

.gallery-media {
    position: relative;
}

.gallery-open {
    position: absolute;
    inset: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.gallery-open:focus-visible {
    outline: 2px solid rgba(107, 74, 47, 0.85);
    outline-offset: -2px;
}

.gallery-slideshow {
    position: relative;
    aspect-ratio: 3 / 2;
    background: #fff;
    overflow: hidden;
}

.gallery-slideshow__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.015);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.gallery-slideshow__image.is-active {
    opacity: 1;
    transform: scale(1);
}

.gallery-slideshow__dots {
    position: absolute;
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.55rem;
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    pointer-events: none;
}

.gallery-slideshow__dot {
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(31, 58, 68, 0.22);
}

.gallery-slideshow__dot.is-active {
    background: #fff;
    border-color: #fff;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1200;
}

.lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(16, 20, 24, 0.78);
    backdrop-filter: blur(2px);
}

.lightbox__panel {
    position: relative;
    width: min(1100px, 95vw);
    margin: min(4vh, 2.25rem) auto;
    max-height: 92vh;
}

.lightbox__figure {
    margin: 0;
    display: flex;
    flex-direction: column;
    background: #101316;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45);
    max-height: 92vh;
}

.lightbox__image,
.lightbox__video {
    display: block;
    width: 100%;
    min-height: 0;
    object-fit: contain;
    background: #0f1114;
}

.lightbox__image[hidden],
.lightbox__video[hidden] {
    display: none;
}

.lightbox__image {
    max-height: min(64vh, 760px);
}

.lightbox__video {
    max-height: min(56vh, 620px);
}

.lightbox[data-media-type="video"] .lightbox__video {
    max-height: min(46vh, 520px);
}

.lightbox__caption {
    background: #fff;
    padding: 0.95rem 1rem 1.05rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    max-height: 26vh;
    touch-action: pan-y;
}

.lightbox[data-media-type="video"] .lightbox__caption {
    max-height: 38vh;
}

.lightbox__caption h3 {
    margin: 0;
    color: var(--color-secondary);
}

.lightbox__text {
    margin: 0.55rem 0 0;
    color: #51493f;
    line-height: 1.6;
}

.lightbox__text p {
    margin: 0;
}

.lightbox__text p + p,
.lightbox__text ul,
.lightbox__text ol {
    margin-top: 0.55rem;
}

.lightbox__text a {
    color: var(--color-primary);
}

.lightbox__close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 2;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(15, 17, 20, 0.8);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.lightbox__nav {
    position: absolute;
    top: calc(50% - 1.4rem);
    z-index: 2;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(15, 17, 20, 0.75);
    color: #fff;
    font-size: 1.55rem;
    line-height: 1;
    cursor: pointer;
}

.lightbox__nav--prev {
    left: 0.6rem;
}

.lightbox__nav--next {
    right: 0.6rem;
}

.lightbox__nav:hover,
.lightbox__nav:focus-visible,
.lightbox__close:hover,
.lightbox__close:focus-visible {
    background: rgba(15, 17, 20, 0.95);
}

.lightbox__nav[hidden] {
    display: none;
}

.carousel {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.9rem;
    align-items: center;
}

.carousel__viewport {
    position: relative;
    overflow: hidden;
    min-height: clamp(18rem, 34vw, 26rem);
    padding: 1rem 0 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #fff, #f6f2eb);
    touch-action: pan-x;
}

.carousel__slide {
    position: absolute;
    top: 1rem;
    left: 50%;
    width: min(72%, 58rem);
    margin: 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) scale(0.82);
    transform-origin: center center;
    transition: transform 220ms ease, opacity 220ms ease, filter 220ms ease;
    filter: saturate(0.7);
}

.carousel__slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) scale(1);
    filter: none;
    z-index: 3;
}

.carousel__slide.is-prev,
.carousel__slide.is-next {
    opacity: 0.55;
    visibility: visible;
    pointer-events: none;
    z-index: 2;
}

.carousel__slide.is-prev {
    transform: translateX(-118%) scale(0.72);
}

.carousel__slide.is-next {
    transform: translateX(18%) scale(0.72);
}

.carousel__slide.is-far {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.carousel__slide img {
    width: 100%;
    height: clamp(15rem, 26vw, 20rem);
    object-fit: contain;
    padding: 0.5rem 0.6rem 0.65rem;
    background: #fff;
    border-radius: calc(var(--radius-lg) - 0.35rem) calc(var(--radius-lg) - 0.35rem) 0 0;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 18px 38px rgba(33, 27, 21, 0.10);
}

.carousel__slide figcaption {
    padding: 0.75rem 0.95rem 0.85rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-secondary);
    border-top: 1px solid var(--color-border);
    border-radius: 0 0 calc(var(--radius-lg) - 0.35rem) calc(var(--radius-lg) - 0.35rem);
    background: rgba(31, 58, 68, 0.03);
}

.carousel__slide.is-prev figcaption,
.carousel__slide.is-next figcaption {
    opacity: 0;
}

.carousel__btn {
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    color: var(--color-secondary);
    border-radius: 999px;
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(31, 58, 68, 0.08);
}

.carousel__btn:hover,
.carousel__btn:focus-visible {
    background: rgba(31, 58, 68, 0.08);
}

.carousel__status {
    margin-top: 0.7rem;
    text-align: center;
    color: #4d4339;
    font-size: 0.93rem;
    font-weight: 600;
}

.carousel__btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel__scrubber {
    margin-top: 1rem;
}

.carousel__scrubber-label {
    display: block;
    margin-bottom: 0.45rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.carousel__scrubber-input {
    width: 100%;
    accent-color: #1f3a44;
    cursor: pointer;
}

.carousel__scrubber-value {
    margin: 0.45rem 0 0;
    text-align: center;
    color: #4d4339;
    font-size: 0.95rem;
    font-weight: 700;
}

.fefco-search {
    margin-bottom: 1rem;
}

.fefco-search__label {
    display: block;
    margin-bottom: 0.45rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.fefco-search__input {
    max-width: 24rem;
}

.fefco-search__hint {
    margin: 0.55rem 0 0;
    color: #4d4339;
    font-size: 0.95rem;
}

.stats {
    display: grid;
    gap: 0.8rem;
}

.stat {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 0.35rem 0.4rem 0.5rem;
}

.stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--color-secondary);
}

.contact-box {
    display: grid;
    gap: 0.7rem;
    align-items: center;
    background: linear-gradient(120deg, rgba(31, 58, 68, 0.95), rgba(48, 82, 90, 0.92));
    color: #f2efea;
    border-radius: var(--radius-lg);
    padding: 1.3rem;
}

.contact-box h2,
.contact-box p {
    color: inherit;
}

.contact-box__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.contact-box .btn--primary {
    background: var(--color-accent);
    color: #2b1a07;
}

.contact-box .btn--ghost {
    border-color: rgba(255, 255, 255, 0.58);
    color: #fff;
}

.breadcrumbs {
    font-size: 0.92rem;
    color: #5c5248;
    margin-top: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumbs a {
    color: var(--color-secondary);
}

.page-header {
    padding: 2.2rem 0 1.2rem;
}

.page-header h1 {
    margin: 0 0 0.8rem;
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-family: var(--font-heading);
    line-height: 1.12;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1rem;
}

.chip {
    border: 1px solid rgba(31, 58, 68, 0.28);
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    color: var(--color-secondary);
    background: rgba(31, 58, 68, 0.05);
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-surface);
}

table {
    border-collapse: collapse;
    width: 100%;
    min-width: 620px;
}

th,
td {
    text-align: left;
    padding: 0.75rem;
    border-bottom: 1px solid var(--color-border);
}

th {
    color: var(--color-secondary);
    font-weight: 700;
}

.info-panel {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.2rem;
}

.contact-grid {
    display: grid;
    gap: 0.7rem;
}

.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-list li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(111, 101, 89, 0.35);
}

.contact-list a {
    color: var(--color-secondary);
    font-weight: 700;
}

.contact-map-title {
    margin-top: 1rem;
    margin-bottom: 0.6rem;
}

.map-embed {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 22px -20px rgba(31, 58, 68, 0.5);
}

.map-embed iframe {
    display: block;
    width: 100%;
    height: 290px;
    border: 0;
}

.map-link-line {
    margin: 0.65rem 0 0;
}

.form {
    display: grid;
    gap: 0.9rem;
}

.form-grid {
    display: grid;
    gap: 0.75rem;
}

label {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

input,
textarea {
    width: 100%;
    border: 1px solid #ccbfae;
    border-radius: 0.65rem;
    font: inherit;
    color: var(--color-text);
    padding: 0.68rem 0.75rem;
    background: #fff;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

input:focus-visible,
textarea:focus-visible,
.btn:focus-visible,
a:focus-visible,
.nav-toggle:focus-visible {
    outline: 3px solid rgba(217, 137, 43, 0.46);
    outline-offset: 1px;
}

.field-error {
    color: #a32116;
    margin-top: 0.3rem;
    font-size: 0.86rem;
}

.alert {
    border-radius: var(--radius-sm);
    padding: 0.75rem 0.9rem;
    margin-bottom: 0.7rem;
    font-size: 0.94rem;
}

.alert--success {
    background: rgba(36, 124, 57, 0.14);
    border: 1px solid rgba(36, 124, 57, 0.36);
    color: #184f26;
}

.alert--error {
    background: rgba(179, 50, 31, 0.14);
    border: 1px solid rgba(179, 50, 31, 0.35);
    color: #7e1e10;
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.site-footer {
    margin-top: 2rem;
    background: linear-gradient(180deg, #223d46, #1a3038);
    color: #d9892b;
}

.site-footer p {
    color: inherit;
}

.footer-grid {
    padding: 2rem 0;
    display: grid;
    gap: 1.1rem;
}

.footer-title {
    margin-bottom: 0.55rem;
    color: #fff;
    font-size: 1.1rem;
}

.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-list li {
    margin-bottom: 0.5rem;
    color: inherit;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.social-link--footer {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.social-link--footer:hover,
.social-link--footer:focus-visible {
    background: rgba(255, 255, 255, 0.2);
}

.footer-list a {
    color: inherit;
    text-decoration: none;
}

.footer-list a:hover,
.footer-list a:focus-visible {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding: 0.75rem 0;
    font-size: 0.88rem;
    color: inherit;
}

.footer-bottom p {
    color: #ffffff;
    margin: 0;
}

.footer-bottom__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.footer-consent-link {
    border: 0;
    background: transparent;
    color: #ffffff;
    text-decoration: underline;
    font: inherit;
    cursor: pointer;
    padding: 0;
}

.footer-consent-link:hover,
.footer-consent-link:focus-visible {
    color: #f5c174;
}

.cookie-consent {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: end center;
    padding: 0.35rem 0.4rem 0.5rem;
}

.cookie-consent[hidden] {
    display: none;
}

.cookie-consent__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(16, 27, 32, 0.58);
}

.cookie-consent__dialog {
    position: relative;
    width: min(100%, 38rem);
    border-radius: 1.25rem;
    padding: 1.35rem;
    background: linear-gradient(180deg, #fff8ef, #fff1de);
    border: 1px solid rgba(107, 74, 47, 0.16);
    box-shadow: 0 24px 60px rgba(19, 29, 34, 0.28);
}

.cookie-consent__eyebrow {
    margin: 0 0 0.45rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8d6134;
}

.cookie-consent__dialog h2 {
    margin-bottom: 0.6rem;
}

.cookie-consent__dialog p {
    margin-top: 0;
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}


.self-service-modal {
    position: fixed;
    inset: 0;
    z-index: 1250;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.self-service-modal[hidden] {
    display: none;
}

.self-service-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(16, 27, 32, 0.62);
}

.self-service-modal__dialog {
    position: relative;
    width: min(100%, 28rem);
    padding: 1.4rem;
    border-radius: 1.25rem;
    background: linear-gradient(180deg, #fff9f1, #fef1df);
    border: 1px solid rgba(107, 74, 47, 0.16);
    box-shadow: 0 24px 60px rgba(19, 29, 34, 0.28);
}

.self-service-modal__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2.25rem;
    height: 2.25rem;
    border: 0;
    border-radius: 999px;
    background: rgba(31, 58, 68, 0.08);
    color: var(--color-secondary);
    font: inherit;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}

.self-service-modal__eyebrow {
    margin: 0 0 0.45rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8d6134;
}

.self-service-modal__dialog h2 {
    margin-bottom: 0.6rem;
}

.self-service-modal__dialog p {
    margin-top: 0;
}

.self-service-modal__form {
    display: grid;
    gap: 0.9rem;
    margin-top: 1rem;
}

.self-service-modal__error {
    margin: 0;
    padding: 0.8rem 0.9rem;
    border-radius: 0.85rem;
    background: rgba(163, 46, 46, 0.08);
    border: 1px solid rgba(163, 46, 46, 0.16);
    color: #8b1e1e;
    font-weight: 600;
}


.self-service-modal__field {
    display: grid;
    gap: 0.35rem;
}

.self-service-modal__field span {
    font-weight: 700;
    color: var(--color-secondary);
}

.self-service-modal__field input {
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: 0.85rem;
    padding: 0.82rem 0.9rem;
    font: inherit;
    background: #fff;
}

.self-service-modal__field input:focus {
    outline: 2px solid rgba(107, 74, 47, 0.18);
    border-color: rgba(107, 74, 47, 0.4);
}

.self-service-modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

body.has-self-service-modal-open {
    overflow: hidden;
}
body.has-cookie-consent-open {
    overflow: hidden;
}

.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal {
    opacity: 1;
    transform: none;
}

.js .page-home .reveal {
    opacity: 0;
    transform: translate3d(0, 34px, 0);
    will-change: opacity, transform;
}

.js .reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .gallery-slideshow__image {
        transition: none;
    }

    .reveal {
        transition: none;
    }

    .js .page-home .reveal {
        opacity: 1;
        transform: none;
        will-change: auto;
    }
}
@media (min-width: 700px) {
    .cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }

    .stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .contact-grid {
        grid-template-columns: 0.95fr 1.05fr;
    }

    .split {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-box {
        grid-template-columns: 1fr auto;
    }

    .form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 980px) {
    .cards.cards--3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .gallery.gallery--4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
    }
}

@media (max-width: 959px) {
    .nav-toggle {
        display: inline-block;
    }

    .main-menu {
        position: absolute;
        top: calc(100% + 1px);
        right: 4vw;
        left: 4vw;
        background: var(--color-surface);
        border: 1px solid var(--color-border);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: stretch;
        padding: 0.65rem;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .main-menu.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .main-menu a {
        border-radius: 0.5rem;
        padding: 0.6rem 0.75rem;
    }

    .topbar {
        padding: 0.42rem 0;
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .breadcrumbs {
        display: none;
    }

    .topbar__contacts {
        width: 100%;
        justify-content: space-between;
        font-size: 0.83rem;
    }

    .topbar .btn {
        width: 100%;
    }

    .topbar__actions {
        width: 100%;
    }

    .topbar__utility-link {
        flex: 0 0 auto;
    }

    .carousel {
        grid-template-columns: 1fr;
    }

    .carousel__viewport {
        order: 1;
        min-height: 19rem;
    }

    .carousel__slide {
        width: 84%;
    }

    .carousel__slide.is-prev {
        transform: translateX(-104%) scale(0.72);
    }

    .carousel__slide.is-next {
        transform: translateX(4%) scale(0.72);
    }

    .carousel__btn {
        width: 100%;
        border-radius: 0.7rem;
        height: 2.6rem;
    }

    .carousel__btn--prev {
        order: 2;
    }

    .carousel__btn--next {
        order: 3;
    }

    .fefco-search__input {
        max-width: none;
        width: 100%;
    }

    .carousel__scrubber-input {
        touch-action: pan-x;
    }



    .lightbox__panel {
        width: 96vw;
        margin: 2vh auto;
    }
    .lightbox__image {
        max-height: 50vh;
    }

    .lightbox__video {
        max-height: 40vh;
    }

    .lightbox[data-media-type="video"] .lightbox__video {
        max-height: 34vh;
    }

    .lightbox__caption {
        padding: 0.8rem 0.85rem 0.95rem;
        max-height: 38vh;
    }

    .lightbox[data-media-type="video"] .lightbox__caption {
        max-height: 44vh;
    }

    .lightbox__nav {
        width: 2.45rem;
        height: 2.45rem;
    }
}






















