html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: #f5f1e9;
    color: #11100f;
    font-family: Arial, Helvetica, sans-serif;
}

.hero-background {
    background:
        linear-gradient(
            120deg,
            #492520 0%,
            #492520 48%,
            #57292c 48%,
            #57292c 100%
        );
	background-size: 100vw 100vh;
	background-attachment: fixed;
}

.site-header {
	display: flex;
    align-items: center;
    position: sticky;
	z-index: 100;
	top: 0;
    min-height: 80px;
    padding: 0 48px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
	box-sizing: border-box;
	transition: border-bottom-color 0.4s ease;
	--header-hover-color: #d4ad63;
	
}

.header-boxing-gloves {
    position: absolute;
    z-index: 101;
    top: 77px;
    right: 210px;
    width: 32px;
    height: auto;
    pointer-events: none;
	filter: drop-shadow(8px 6px 6px rgba(17, 16, 15, 0.3));
}

@keyframes boxing-gloves-swing {
    0% {
        transform: rotate(-3deg);
    }

    50% {
        transform: rotate(3deg);
    }

    100% {
        transform: rotate(-3deg);
    }
}

@keyframes boxing-gloves-settle {
    0% {
        transform: rotate(-3deg);
    }

    14% {
        transform: rotate(2.5deg);
    }

    29% {
        transform: rotate(-2deg);
    }

    44% {
        transform: rotate(1.5deg);
    }

    59% {
        transform: rotate(-1deg);
    }

    73% {
        transform: rotate(0.6deg);
    }

    85% {
        transform: rotate(-0.3deg);
    }

    94% {
        transform: rotate(0.1deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.header-boxing-gloves.is-settling {
    transform-origin: top center;
    animation: boxing-gloves-settle 0.9s ease-out forwards;
}

.header-boxing-gloves.is-swinging {
    transform-origin: top center;
    animation: boxing-gloves-swing 0.8s ease-out;
}

.site-header a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
    margin-right: auto;
    margin-left: 4px;
    transition: opacity 0.4s ease;
}

.logo img {
    display: block;
    width: auto;
    height: 60px;
    filter:
        drop-shadow(0 1px 1px rgba(17, 16, 15, 0.55))
        drop-shadow(0 3px 6px rgba(17, 16, 15, 0.22));
    transition:
		filter 0.4s ease,
		transform 0.2s ease;
}

.logo:hover img {
    transform: scale(1.06);
}

.header-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    position: absolute;
    left: 150px;
    z-index: 2;
}

.header-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-socials img {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(3px 4px 3px rgba(17, 16, 15, 0.15));
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-navigation a {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.coming-soon-popup {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 28px 48px;
    background-color: #11100f;
    border: 1px solid #d4ad63;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.coming-soon-popup p {
    margin: 0;
    color: #d4ad63;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
}

.header-button {
    margin-left: 0;
    padding: 13px 18px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.main-navigation a,
.header-button {
    transition:
        color 0.4s ease,
        background-color 0.4s ease,
        border-color 0.4s ease;
}

.main-navigation a:hover {
    color: var(--header-hover-color);
}

.header-button:hover {
    color: var(--header-hover-color);
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--header-hover-color);
}

.main-navigation a:focus-visible,
.header-button:focus-visible,
.menu-toggle:focus-visible {
    outline: 2px solid #d4ad63;
    outline-offset: 4px;
}

.header-menu {
    display: flex;
    align-items: center;
}

.menu-toggle {
    display: none;
}

.hero {
    display: flex;
    align-items: flex-start;
    box-sizing: border-box;
    min-height: calc(100vh - 80px);
	padding: 26px 48px 118px;
    color: #ffffff;
	justify-content: space-between;
	gap: 64px;
	position: relative;
}

.hero-content {
    width: 52%;
    max-width: 700px;
}

.hero-separator {
    display: inline-block;
    margin: 0 0.2em;
    font-size: 1em;
    line-height: 0;
    vertical-align: -0.04em;
}

.hero-label {
    margin: 0 0 20px;
    color: #d4ad63;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 900px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 5.5vw, 88px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.035em;
}

.hero h1 em {
    color: #d4ad63;
    font-weight: 400;
}

.hero-introduction {
    max-width: 720px;
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 24px;
}

.primary-button {
    display: inline-block;
    padding: 15px 22px;
    border: 1px solid transparent;
    background-color: #d4ad63;
    color: #211716;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition:
        color 0.4s ease,
        background-color 0.4s ease,
        border-color 0.4s ease;
}

.primary-button:hover {
    border-color: #d4ad63;
    background-color: transparent;
    color: #d4ad63;
}

.secondary-link {
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
	transition:
		color 0.4s ease,
		border-color 0.4s ease;
}

.secondary-link:hover {
    color: #d4ad63;
    border-bottom-color: #d4ad63;
}

.hero-news {
    align-self: flex-start;
    display: grid;
    grid-template-columns: 1fr;
    width: 42%;
    max-width: 700px;
}

.hero-news-header {
    grid-column: 1 / -1;
    grid-row: 1;
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.news-item {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    align-items: start;
    column-gap: 18px;
}

.news-item + .news-item {
    margin-top: 18px;
    padding-top: 18px;
}

.news-image-link {
    display: block;
    grid-column: 1;
    grid-row: 1 / 4;
	overflow: hidden;
}

.news-image {
    display: block;
    width: 150px;
    height: 100px;
    object-fit: cover;
	transition: transform 0.2s ease;
}

.news-image-link:hover .news-image {
    transform: scale(1.1);
}

.news-card-more.hero-news-more {
    color: #d4ad63;
}

.news-card-more.hero-news-more:hover {
    color: #ffffff;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero-news-label {
	margin: 0;
    color: #d4ad63;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.all-news-link {
	margin: 0 142px 0 0;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
	transition:
		color 0.4s ease,
		border-color 0.4s ease;
	grid-column: 1 / -1;
	grid-row: 1;
	justify-self: end;
	align-self: start;		
}

.all-news-link:hover {
    color: #d4ad63;
    border-bottom-color: #d4ad63;
}

.news-item time {
    display: block;
    grid-column: 2;
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    letter-spacing: 0.04em;
}

.news-item h3 {
    grid-column: 2;
    min-height: 0;
    margin: 5px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
}

.news-item p {
    grid-column: 2;
    margin: 5px 0 0;
    color: rgba(255, 255, 255, 0.70);
    font-size: 13px;
    line-height: 1.4;
}

.news-item h3 a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.4s ease;
}

.news-item h3 a:hover {
    color: #d4ad63;
}

.hero-facts {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-fact {
    box-sizing: border-box;
    min-height: 100px;
    padding: 14px 48px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-fact:last-child {
    border-right: 0;
}

.hero-fact dt {
    margin-bottom: 8px;
    color: #d4ad63;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-fact dd {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
}

.hero-fact strong {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 400;
}

.hero-fact span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
}

.training-section {
    position: relative;
    box-sizing: border-box;
    min-height: 100vh;
    scroll-margin-top: 0;
    padding: 112px 48px 108px;
    background-color: #f5f1e9;
}

.training-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
	min-height: calc(100vh - 220px);
    gap: 96px;
}

.training-heading {
    max-width: 760px;
}

.training-label,
.vision-label {
    margin: 0 0 20px;
    color: #d4ad63;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.training-section h2,
.vision-heading h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 5.5vw, 88px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.035em;
}

.vision-section h2 {
    color: #ffffff;
}

.training-introduction,
.vision-introduction {
    max-width: 680px;
    margin: 20px 0 0;
    color: #4b4140;
    font-size: 17px;
    line-height: 1.65;
}

.vision-introduction {
    color: rgba(255, 255, 255, 0.70);
}

.training-equipment {
    max-width: 680px;
    margin-top: 16px;
}

.training-equipment-label {
    margin: 0 0 4px;
    color: #9a742c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.training-equipment > p:last-child {
    margin: 0;
    color: #4b4140;
    font-size: 14px;
    line-height: 1.55;
}

.training-points {
    display: grid;
    align-self: center;
    gap: 24px;
    margin: 0;
}

.training-point {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
	gap: 12px;
}

.training-point-number {
	align-self: center;
    color: #9a742c;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.training-point-content h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.3;
}

.training-point-content p {
    margin: 4px 0 0;
    color: #4b4140;
    font-size: 14px;
    line-height: 1.45;
}

.training-facts {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin: 0;
    border-top: 1px solid rgba(73, 37, 32, 0.20);
}

.training-facts .hero-fact {
    border-right-color: rgba(73, 37, 32, 0.20);
}

.training-facts .hero-fact dt {
    color: #9a742c;
}

.training-facts .hero-fact strong {
    color: #11100f;
}

.training-facts .hero-fact span {
    color: #665c59;
}

.site-header.header-scrolled {
    background:
        linear-gradient(
            to bottom,
            transparent 0,
            transparent var(--training-header-position, 80px),

            #f5f1e9 var(--training-header-position, 80px),
            #f5f1e9 var(--vision-header-position, 80px),

            #11100f var(--vision-header-position, 80px),
            #11100f var(--practical-header-position, 80px),

            #57292c var(--practical-header-position, 80px),
            #57292c var(--about-header-position, 80px),

            #c8a45c var(--about-header-position, 80px),
            #c8a45c var(--trial-header-position, 80px),

            transparent var(--trial-header-position, 80px),
            transparent 100%
        ),
        linear-gradient(
            120deg,
            #492520 0%,
            #492520 48%,
            #57292c 48%,
            #57292c 100%
        );

    background-size: 100vw 100vh;
    background-attachment: fixed;
}

.site-header.header-on-light {
    border-bottom-color: rgba(73, 37, 32, 0.22);
}

.site-header.header-on-vision {
    border-bottom-color: rgba(255, 255, 255, 0.28);
}

.site-header.header-on-about {
    --header-hover-color: #492520;
    border-bottom-color: rgba(255, 255, 255, 0.48);
}

.site-header.header-on-trial {
    --header-hover-color: #d4ad63;
    border-bottom-color: rgba(255, 255, 255, 0.28);
}

.site-header.header-on-news {
    background:
        linear-gradient(
            to bottom,
            #11100f 0,
            #11100f var(--news-header-position, 80px),

            #f5f1e9 var(--news-header-position, 80px),
            #f5f1e9 100%
        );

    border-bottom-color: rgba(255, 255, 255, 0.28);
}

.site-header.header-on-news.header-on-news-light {
    border-bottom-color: rgba(73, 37, 32, 0.22);
}

.vision-section {
    box-sizing: border-box;
    min-height: 100vh;
    scroll-margin-top: 0;
    padding: 72px 48px;
    color: rgba(255, 255, 255, 0.88);
    background-color: #11100f;
}

.vision-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 96px;
    min-height: calc(100vh - 144px);
    align-items: center;
}

.vision-heading {
    max-width: 680px;
}

.vision-principles {
    display: grid;
    align-self: center;
    gap: 36px;
    margin: 0;
}

.vision-principle {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: stretch;
    gap: 12px;
}

.vision-principle-number {
    align-self: center;
    color: #9a742c;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.vision-principle-content h3 {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 19px;
    line-height: 1.3;
}

.vision-principle-content p {
    max-width: 620px;
    margin: 5px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.5;
}

.practical-section {
    display: flow-root;
    box-sizing: border-box;
    min-height: 100vh;
	scroll-margin-top: 0;
	padding: 104px 48px 32px;
    color: rgba(255, 255, 255, 0.88);
    background-color: #57292c;
}

.practical-heading {
    max-width: 820px;
    margin: 0;
}

.practical-label {
    margin: 0 0 20px;
    color: #d4ad63;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.practical-heading h2 {
    margin: 0;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 4vw, 64px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.035em;
}

.practical-heading h2 span {
    color: #d4ad63;
}

.practical-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    gap: 72px;
}

.practical-details,
.practical-guidance {
    display: grid;
    gap: 48px;
}

.practical-guidance {
    gap: 14px;
    padding-top: 0;
}

.practical-details {
    gap: 24px;
}

.practical-details .practical-item-content p {
    line-height: 1.45;
}

.practical-details .practical-item + .practical-item {
    margin-top: -6px;
}

.practical-item-content h3 {
    margin: 0;
    color: #ffffff;
    font-size: 19px;
    line-height: 1.3;
}

.practical-item-content p {
    max-width: 680px;
    margin: 5px 0 0;
    color: rgba(255, 255, 255, 0.70);
    font-size: 14px;
    line-height: 1.55;
}

.practical-text-link,
.practical-text-link:visited {
    color: #d4ad63;
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.4s ease;
}

.practical-text-link:hover {
    color: #ffffff;
}

.practical-text-link:focus-visible {
    color: #ffffff;
    outline: 2px solid #d4ad63;
    outline-offset: 3px;
}

.practical-address {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-top: 8px;
	color: #ffffff;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 1.25;
	text-align: center;
}

.practical-address strong {
    margin-bottom: 2px;
    color: #d4ad63;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-weight: 400;
}

.practical-item-content .practical-highlight {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 8px;
}

.practical-highlight strong {
    color: #d4ad63;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-weight: 400;
}

.practical-highlight > span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.practical-highlight .practical-day-separator {
    padding: 0 3px;
    color: #9a742c;
}

.practical-closure {
    margin-top: 12px;
}

.practical-item-content .practical-list-label {
    margin: 0;
    color: #d4ad63;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-transform: uppercase;
}

.practical-list {
    display: grid;
    grid-template-columns: max-content max-content;
    column-gap: 48px;
    row-gap: 8px;
    margin: 7px 0 0;
    padding: 0;
    list-style: none;
}

.practical-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    line-height: 1.4;
}

.practical-list li::before {
    content: "";
    flex: 0 0 12px;
    width: 12px;
    height: 1px;
    background-color: #9a742c;
}

.practical-equipment {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    gap: 32px;
    margin-top: 10px;
}

.practical-equipment-list {
    margin: 7px 0 0;
    padding: 0;
    list-style: none;
}

.practical-equipment-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    line-height: 1.4;
}

.practical-equipment-list li + li {
    margin-top: 1px;
}

.practical-equipment-list li::before {
    content: "";
    flex: 0 0 12px;
    width: 12px;
    height: 1px;
    background-color: #9a742c;
}

.practical-item-content .practical-change-note,
.practical-item-content .practical-equipment-note {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 12px;
    line-height: 1.4;
}

.practical-prices > div {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 20px;
    padding: 4px 0;
}

.practical-prices > div:not(:nth-of-type(3))::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255, 255, 255, 0.06) 15%,
        rgba(255, 255, 255, 0.14) 50%,
        rgba(255, 255, 255, 0.06) 85%,
        transparent 100%
    );
}

.practical-prices dt {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.4;
}

.practical-prices dd {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
    text-align: right;
}

.training-times {
    margin: 4px 0 0;
}

.training-time {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 20px;
    padding: 4px 0;
}

.training-time:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255, 255, 255, 0.06) 15%,
        rgba(255, 255, 255, 0.14) 50%,
        rgba(255, 255, 255, 0.06) 85%,
        transparent 100%
    );
}

.training-time span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.4;
}

.training-time strong {
    color: #ffffff;
	font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    text-align: right;
    white-space: nowrap;
}

.about-section {
    box-sizing: border-box;
    min-height: 100vh;
    scroll-margin-top: 0;
    padding: 72px 48px;
    color: #11100f;
    background-color: #c8a45c;
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 96px;
    min-height: calc(100vh - 144px);
}

.about-heading {
    max-width: 720px;
}

.about-label {
    margin: 0 0 20px;
    color: #492520;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-heading h2 {
    margin: 0;
    color: #11100f;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 5vw, 80px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.035em;
}

.about-heading h2 span {
    display: block;
    color: #492520;
}

.about-introduction {
    max-width: 680px;
    margin: 22px 0 0;
    color: rgba(17, 16, 15, 0.76);
    font-size: 17px;
    line-height: 1.6;
}

.about-content {
    display: grid;
    align-self: center;
    gap: 20px;
    transform: translateY(30px);
}

.about-item h3 {
    margin: 0;
    color: #492520;
    font-size: 19px;
    line-height: 1.3;
}

.about-item p {
    max-width: 680px;
    margin: 5px 0 0;
    color: rgba(17, 16, 15, 0.76);
    font-size: 14px;
    line-height: 1.45;
}

.about-item p + p {
    margin-top: 6px;
}

.about-item em {
    color: #492520;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
}

.about-name-mark {
    text-decoration-line: underline;
    text-decoration-color: rgba(73, 37, 32, 0.65);
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    text-decoration-skip-ink: auto;
}

.about-trainer-name {
    color: #492520;
    font-weight: 600;
}

.trial-section {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    scroll-margin-top: 0;
    padding: 92px 48px 0;
    color: rgba(255, 255, 255, 0.82);
    background:
        linear-gradient(
            120deg,
            #492520 0%,
            #492520 48%,
            #57292c 48%,
            #57292c 100%
        );
	background-size: 100vw 100vh;
	background-attachment: fixed;
}

.trial-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    flex: 1;
    gap: 96px;
    padding-bottom: 48px;
}

.trial-heading {
    max-width: 720px;
}

.trial-label {
    margin: 0 0 20px;
    color: #d4ad63;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.trial-heading h2 {
    margin: 0;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 5vw, 80px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.035em;
}

.trial-heading h2 span {
    display: block;
    color: #d4ad63;
}

.trial-introduction {
    max-width: 680px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
    line-height: 1.6;
}

.trial-steps {
    display: grid;
    align-self: center;
    gap: 22px;
	transform: translateY(14px);
}

.trial-step {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
}

.trial-number {
	align-self: center;
    margin: 2px 0 0;
    color: #9a742c;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.trial-step h3 {
    margin: 0;
    color: #ffffff;
    font-size: 19px;
    line-height: 1.3;
}

.trial-step div > p {
    max-width: 680px;
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.5;
}

.trial-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: calc(100% + 96px);
    margin: 0 -48px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trial-facts > div {
    min-height: 80px;
    padding: 16px 48px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.trial-facts > div:last-child {
    border-right: 0;
}

.trial-facts > div:last-child {
    padding-right: 24px;
    border-right: 0;
}

.trial-facts dt {
    margin: 0 0 5px;
    color: #d4ad63;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trial-facts dd {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
}

@media (max-width: 1500px) {
    .site-header {
        padding: 0 32px;
    }

    .main-navigation {
        gap: 22px;
    }

    .main-navigation a {
        font-size: 14px;
        white-space: nowrap;
    }

    .header-button {
        margin-left: 0;
        padding: 12px 15px;
        font-size: 14px;
        white-space: nowrap;
    }
}

@media (max-width: 1100px) {
	.header-boxing-gloves {
		display: none;
	}

	.menu-toggle {
		display: block;
		padding: 11px 16px;
		border: 1px solid rgba(255, 255, 255, 0.55);
		background: transparent;
		color: rgba(255, 255, 255, 0.82);
		font: inherit;
		font-size: 14px;
		font-weight: 600;
		letter-spacing: 0.04em;
		cursor: pointer;
		transition:
			color 0.4s ease,
			background-color 0.4s ease,
			border-color 0.18s ease;
	}

	.site-header.header-on-news .menu-toggle {
		position: relative;
	}

	.site-header.header-on-news .menu-toggle::after {
		clip-path: inset(
			var(--news-menu-color-position, 100%)
			0
			0
			0
		);
	}
	
	.menu-toggle:hover {
		color: var(--header-hover-color);
		border-color: var(--header-hover-color);
		background-color: rgba(255, 255, 255, 0.08);
	}

	.header-menu {
		display: none;
	}

	.site-header.menu-open .header-menu {
		display: flex;
	}

	.header-menu {
		position: absolute;
		z-index: 10;
		top: 100%;
		max-height: calc(100vh - 80px);
		overflow-y: auto;
		right: 32px;
		left: auto;
		width: max-content;
		min-width: 220px;
		box-sizing: border-box;
		flex-direction: column;
		align-items: stretch;
		padding: 10px 32px 10px;
		background-color: rgba(33, 16, 15, 0.80);
		border-top: 1px solid rgba(255, 255, 255, 0.18);
		border-bottom: 1px solid rgba(255, 255, 255, 0.18);
	}
	
	.header-menu {
		scrollbar-width: thin;
		scrollbar-color: rgba(212, 173, 99, 0.55) transparent;
	}

	.header-menu::-webkit-scrollbar {
		width: 8px;
	}

	.header-menu::-webkit-scrollbar-track {
		background: transparent;
	}

	.header-menu::-webkit-scrollbar-thumb {
		background-color: rgba(212, 173, 99, 0.55);
		border: 2px solid transparent;
		border-radius: 999px;
		background-clip: content-box;
	}

	.main-navigation {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.main-navigation a {
		display: flex;
		align-items: center;
		min-height: 36px;
		padding: 8px 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}
	
	.header-menu .main-navigation a:hover {
		color: #d4ad63;
	}
	
	.header-button {
		border: 0;
	}
	
	.header-button:hover {
		background: none;
		border-bottom-color: rgba(255, 255, 255, 0.12);
	}
	
	.header-button::after,
	.header-button:hover::after {
		display: none;
		content: none;
	}

	.hero {
		flex-direction: column;
		min-height: auto;
		padding: 32px 32px 0;
		gap: 42px;
	}

	.hero-content {
		width: 100%;
		max-width: 760px;
		order: 1;
	}

	.hero-news {
		grid-template-columns: 1fr;
		justify-content: start;
		width: 100%;
		max-width: 700px;
		padding-bottom: 32px;
		order: 3;
	}
	
	.news-item h3 {
		min-height: 0;
	}

	.hero-facts {
		position: static;
		width: calc(100% + 64px);
		margin: 0 -32px;
		order: 2;
	}

	.site-header.header-scrolled .menu-toggle {
		margin-left: auto;
		position: relative;
	}

	.menu-toggle::after {
		content: "Menu";
		position: absolute;
		inset: -1px;
		display: flex;
		align-items: center;
		justify-content: center;
		border: 1px solid rgba(73, 37, 32, 0.55);
		color: #492520;
		clip-path: inset(
			var(--menu-color-position, 100%)
			0
			calc(
				100% -
				var(--vision-menu-color-position, 100%) -
				2px
			)
			0
		);
		pointer-events: none;
	}
	
	.vision-section {
		min-height: 100vh;
		padding: 72px 32px;
	}

	.vision-layout {
		grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
		gap: 64px;
		min-height: calc(100vh - 144px);
	}

	.vision-heading {
		max-width: 600px;
	}

	.vision-principles {
		gap: 30px;
	}

	.vision-principle {
		grid-template-columns: 36px minmax(0, 1fr);
		gap: 14px;
	}

	.about-content {
		transform: translateY(43px);
	}
	
	.training-facts {
		position: static;
		grid-template-columns: 1fr;
		width: calc(100% + 64px);
		margin: 32px -32px 0;
		border-top: 0;
	}

	.training-facts .hero-fact {
		position: relative;
		border-right: 0;
		border-bottom: 0;
	}

	.training-facts .hero-fact:not(:last-child)::after {
		content: "";
		position: absolute;
		right: 36px;
		bottom: 0;
		left: 36px;
		height: 1px;
		background: linear-gradient(
			to right,
			transparent 0%,
			rgba(73, 37, 32, 0.07) 20%,
			rgba(73, 37, 32, 0.18) 50%,
			rgba(73, 37, 32, 0.07) 80%,
			transparent 100%
		);
	}
	
	.trial-facts {
		grid-template-columns: 1fr;
		width: calc(100% + 64px);
		margin: 0 -32px;
		border-top: 0;
	}

	.trial-facts > div {
		position: relative;
		min-height: 0;
		padding: 16px 32px;
		border-right: 0;
		border-bottom: 0;
	}

	.trial-facts > div:not(:last-child)::after {
		content: "";
		position: absolute;
		right: 32px;
		bottom: 0;
		left: 32px;
		height: 1px;
		background: linear-gradient(
			to right,
			transparent 0%,
			rgba(255, 255, 255, 0.07) 20%,
			rgba(255, 255, 255, 0.18) 50%,
			rgba(255, 255, 255, 0.07) 80%,
			transparent 100%
		);
	}

}

@media (max-width: 810px) {
    .practical-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .site-header {
        padding: 0 24px;
    }

    .header-menu {
        padding-right: 24px;
        padding-left: 24px;
    }

    .hero {
        padding: 28px 24px 0;
    }

    .hero-facts {
        grid-template-columns: 1fr;
        width: calc(100% + 48px);
        margin: 0 -24px;
		border-top: 0;
		border-bottom: 0;
    }

	.hero-fact {
		position: relative;
		min-height: auto;
		padding: 16px 24px;
		border-right: 0;
		border-bottom: 0;
	}

	.hero-fact:not(:last-child)::after {
		content: "";
		position: absolute;
		right: 36px;
		bottom: 0;
		left: 36px;
		height: 1px;
		background: linear-gradient(
			to right,
			transparent 0%,
			rgba(255, 255, 255, 0.07) 20%,
			rgba(255, 255, 255, 0.18) 50%,
			rgba(255, 255, 255, 0.07) 80%,
			transparent 100%
		);
	}
    .hero-actions {
        flex-wrap: wrap;
    }
	
	    .practical-section {
        padding-right: 24px;
        padding-left: 24px;
    }

    .practical-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .practical-guidance {
        padding-top: 0;
    }
	
	.trial-facts {
		grid-template-columns: 1fr;
		width: calc(100% + 48px);
		margin: 0 -24px;
		border-top: 0;
	}
	
	.trial-facts > div {
		position: relative;
		min-height: 0;
		padding: 16px 24px;
		border-right: 0;
		border-bottom: 0;
	}

	.trial-facts > div:not(:last-child)::after {
		content: "";
		position: absolute;
		right: 24px;
		bottom: 0;
		left: 24px;
		height: 1px;
		background: linear-gradient(
			to right,
			transparent 0%,
			rgba(255, 255, 255, 0.07) 20%,
			rgba(255, 255, 255, 0.18) 50%,
			rgba(255, 255, 255, 0.07) 80%,
			transparent 100%
		);
	}

}

@media (max-width: 700px) {
	.all-news-link {
		margin-right: 0;
	}
}

@media (max-width: 610px) {
    .hero-news {
        grid-template-columns: 1fr;
        padding-bottom: 24px;
    }
	
	.training-section {
		display: flex;
		flex-direction: column;
		min-height: auto;
		padding: 104px 24px 36px;
	}

	.training-layout {
		grid-template-columns: 1fr;
		min-height: 0;
		gap: 40px;
		order: 2;
	}

	.training-heading {
		order: 1;
	}

	.training-points {
		align-self: auto;
		order: 2;
	}

	.training-facts {
		position: static;
		grid-template-columns: 1fr;
		width: calc(100% + 48px);
		margin: 32px -24px 48px;
		border-top: 0;
		order: 3;
	}
	
	.training-facts .hero-fact {
		position: relative;
		border-bottom: 0;
	}

	.training-facts .hero-fact:not(:last-child)::after {
		content: "";
		position: absolute;
		right: 36px;
		bottom: 0;
		left: 36px;
		height: 1px;
		background: linear-gradient(
			to right,
			transparent 0%,
			rgba(73, 37, 32, 0.07) 20%,
			rgba(73, 37, 32, 0.18) 50%,
			rgba(73, 37, 32, 0.07) 80%,
			transparent 100%
		);
	}
	
	.vision-section {
		min-height: 100vh;
		padding: 104px 24px 48px;
	}

	.vision-layout {
		grid-template-columns: 1fr;
		gap: 56px;
		min-height: 0;
	}

	.vision-heading {
		max-width: none;
	}

	.vision-principles {
		gap: 28px;
	}

	.vision-principle {
		grid-template-columns: 32px minmax(0, 1fr);
		gap: 12px;
	}

	.about-section {
		min-height: auto;
		padding: 90px 24px 36px;
	}

	.about-layout {
		grid-template-columns: 1fr;
		gap: 20px;
		min-height: 0;
	}

	.about-heading {
		max-width: none;
	}

	.about-content {
		gap: 20px;
		transform: none;
	}

	.about-introduction {
		margin-top: 14px;
	}
	
	.trial-layout {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	
	.trial-section {
		padding-top: 110px;
		padding-bottom: 24px;
	}
	
	.header-socials {
		left: 125px;
	}

}

@media (max-width: 400px) {
    .vision-section {
        padding-top: 120px;
    }

    .practical-prices dd {
        padding-right: 8px;
    }

    .practical-list {
        grid-template-columns: 1fr;
        row-gap: 4px;
    }
}

@media (max-width: 360px) {
    .hero-actions {
        row-gap: 16px;
    }

    .hero-facts {
        margin-top: -12px;
    }

}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

@media (max-width: 340px) {
	.news-item {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		row-gap: 0;
	}

	.news-image-link {
		grid-column: 1;
		grid-row: auto;
		margin-bottom: 10px;
	}

	.news-item time,
	.news-item h3,
	.news-item p {
		grid-column: 1;
	}
	
	.all-news-link {
		grid-column: 1;
		grid-row: auto;
		justify-self: start;
		align-self: auto;
		margin: 16px 0 0;
	}
	
	.hero-news-header {
		margin-bottom: 22px;
	}
	
	.hero-news {
		transform: translateY(-10px);
	}
}

@media (min-width: 1101px) {
	.main-navigation a {
		color: transparent;
		background:
			linear-gradient(
				to bottom,
				rgba(255, 255, 255, 0.82) 0,
				rgba(255, 255, 255, 0.82)
					var(--menu-link-color-position, 100%),

				#492520 var(--menu-link-color-position, 100%),
				#492520 var(--vision-menu-link-color-position, 100%),

				rgba(255, 255, 255, 0.82)
					var(--vision-menu-link-color-position, 100%),
				rgba(255, 255, 255, 0.82) 100%
			);
		background-clip: text;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		transition: -webkit-text-fill-color 0.4s ease;
	}
	
	.site-header.header-on-article .main-navigation a {
		background: none;
		color: #492520;
		-webkit-text-fill-color: currentColor;
		transition: color 0.4s ease;
	}

	.site-header.header-on-article .main-navigation a:hover {
		color: #d4ad63;
		-webkit-text-fill-color: currentColor;
	}
	
	.site-header.header-on-news .main-navigation a {
		color: transparent;
		background:
			linear-gradient(
				to bottom,
				rgba(255, 255, 255, 0.82) 0,
				rgba(255, 255, 255, 0.82)
					var(--news-menu-link-color-position, 100%),

				#492520 var(--news-menu-link-color-position, 100%),
				#492520 100%
			);
		background-clip: text;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}
	
	.site-header.header-on-news .main-navigation a:hover {
		-webkit-text-fill-color: var(--header-hover-color);
	}

	.main-navigation a:hover {
		-webkit-text-fill-color: var(--header-hover-color);
	}
	
	.header-button {
		position: relative;
	}

	.header-button::after {
		content: "Proeflessen";
		position: absolute;
		inset: -1px;

		display: flex;
		align-items: center;
		justify-content: center;

		color: #492520;
		border: 1px solid rgba(73, 37, 32, 0.55);
		clip-path: inset(
			var(--menu-link-color-position, 100%)
			0
			calc(
				100% -
				var(--vision-menu-link-color-position, 100%) -
				2px
			)
			0
		);
		pointer-events: none;

		transition:
			color 0.4s ease,
			background-color 0.4s ease,
			border-color 0.4s ease;
	}
	
	.site-header.header-on-news .header-button::after {
		clip-path: inset(
			var(--news-menu-link-color-position, 100%)
			0
			0
			0
		);
	}

	.header-button:hover::after {
		color: var(--header-hover-color);
		background-color: rgba(73, 37, 32, 0.06);
		border-color: var(--header-hover-color);
	}

	.site-header.header-on-about .main-navigation a {
		background: none;
		color: rgba(255, 255, 255, 0.82);
		-webkit-text-fill-color: currentColor;
		transition: color 0.4s ease;
	}

	.site-header.header-on-about .main-navigation a:hover {
		color: #492520;
		-webkit-text-fill-color: currentColor;
	}

	.site-header.header-on-about .header-button::after {
		color: rgba(255, 255, 255, 0.82);
		-webkit-text-fill-color: currentColor;
		transition:
			color 0.4s ease,
			background-color 0.4s ease,
			border-color 0.4s ease;
	}

	.site-header.header-on-about .header-button:hover::after {
		color: #492520;
		background-color: rgba(73, 37, 32, 0.08);
		border-color: #492520;
	}
	
	.site-header.header-on-trial .main-navigation a {
		background: none;
		color: rgba(255, 255, 255, 0.82);
		-webkit-text-fill-color: currentColor;
		transition: color 0.4s ease;
	}

	.site-header.header-on-trial .main-navigation a:hover {
		color: #d4ad63;
		-webkit-text-fill-color: currentColor;
	}

	.site-header.header-on-trial .header-button::after {
		color: rgba(255, 255, 255, 0.82);
		-webkit-text-fill-color: currentColor;
		transition:
			color 0.4s ease,
			background-color 0.4s ease,
			border-color 0.4s ease;
	}

	.site-header.header-on-trial .header-button:hover::after {
		color: #d4ad63;
		background-color: rgba(73, 37, 32, 0.06);
		border-color: #d4ad63;
	}
	
	.all-news-link {
		margin-right: 0;
	}

}

/* =========================
   NIEUWS
   ========================= */

.news-page {
    min-height: 100vh;
    background: #f4f0e8;
    color: #211817;
}

.news-featured {
    position: relative;
    background-color: #11100f;
}

.news-archive {
    min-height: 100vh;
    background-color: #f5f1e9;
}

.news-archive-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 110px 48px 100px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 300px);
    justify-content: center;
    gap: 80px;
    margin-top: 50px;
}

.news-card {
    min-width: 0;
}

.news-card-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
	transition: transform 0.4s ease;
}

.news-card-image-link:hover .news-card-image {
    transform: scale(1.1);
}

.news-card-image-link {
    display: block;
    overflow: hidden;
}

.news-card {
    max-width: 300px;
}

.news-card time {
    display: block;
    margin-top: 8px;
    color: #8a6d3b;
    font-size: 14px;
    letter-spacing: 0.04em;
}

.news-card h2 {
    margin: 8px 0 6px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.15;
}

.news-card h2 a {
    color: #492520;
    text-decoration: none;
    transition: color 0.4s ease;
}

.news-card h2 a:hover {
    color: #d4ad63;
}

.news-card p {
    margin: 0;
    color: #492520;
    font-size: 14px;
    line-height: 1.5;
}

.news-card-more {
    display: inline-block;
    margin-top: 10px;
    color: #8a6d3b;
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.4s ease;
}

.news-card-more:hover {
    color: #492520;
}

.news-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 1.1fr);
    gap: 80px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 110px 48px 145px;
	background-color: #11100f;
}

.featured-news-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-news-image-link {
    display: block;
    overflow: hidden;
}

.featured-news-image-link:hover .featured-news-image {
    transform: scale(1.1);
}

.news-intro-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.featured-news {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.featured-news-content {
    min-width: 0;
}

.featured-news-content time {
    display: block;
    margin-bottom: 12px;
    color: #8a6d3b;
    font-size: 14px;
    letter-spacing: 0.04em;
}

.featured-news-content h2 {
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.15;
}

.featured-news-content h2 a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    transition: color 0.4s ease;
}

.featured-news-content h2 a:hover {
    color: #d4ad63;
}

.featured-news-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.5;
}

.news-page-label {
    margin: 0 0 18px;
    color: #d4ad63;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.news-intro h1 {
    max-width: 780px;
    margin: 0;
	color: rgba(255, 255, 255, 0.92);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 400;
    line-height: 1.05;
}

.news-intro h1 span {
    color: #d4ad63;
}

.more-news-scroll {
    display: none;
}

@media (max-width: 1100px) {
    .news-featured {
        min-height: 100vh;
    }

    .news-intro {
        padding-top: 140px;
    }
}

@media (max-width: 1050px) {
    .news-intro {
        grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
        gap: 48px;
    }

    .news-grid {
        grid-template-columns: repeat(2, 300px);
    }

}

@media (max-width: 900px) {
    .news-intro {
        grid-template-columns: 1fr;
        gap: 56px;
		padding-top: 100px;
    }
}

@media (max-width: 720px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .news-card {
        display: grid;
        grid-template-columns: 180px minmax(0, 1fr);
        column-gap: 20px;
        max-width: none;
    }

    .news-card-image-link {
        grid-row: 1 / 6;
    }
}

@media (max-width: 560px) {
    .news-intro {
        padding-top: 70px;
    }

    .featured-news {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 460px) {
    .news-grid {
        gap: 48px;
    }

    .news-card {
        grid-template-columns: 1fr;
        gap: 0;
		width: 100%;
    }

    .news-card-image-link {
        grid-row: auto;
        width: 260px;
        margin-bottom: 8px;
		width: 100%;
        max-width: 260px;
    }
}

@media (min-width: 1101px) {
	.more-news-scroll {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: fit-content;
		position: absolute;
		left: 50%;
		bottom: 45px;
		transform: translateX(-50%);
		margin: 0;
		color: #d4ad63;
		font-size: 14px;
		font-weight: 600;
		letter-spacing: 0.04em;
		text-decoration: none;
		transition: color 0.4s ease;
	}

	.more-news-arrow {
		margin-top: 5px;
		font-size: 18px;
		line-height: 1;
		transition: transform 0.4s ease;
	}

	.more-news-scroll:hover {
		color: rgba(255, 255, 255, 0.82);
	}

	.more-news-scroll:hover .more-news-arrow {
		transform: translateY(4px);
	}

}

/* =========================
   ARTIKEL
   ========================= */

.news-article-page {
    min-height: 100vh;
    padding: 32px 48px 48px;
    background-color: #f5f1e9;
    color: #492520;
}

.site-header.header-on-article {
    background-color: #f5f1e9;
    border-bottom-color: rgba(73, 37, 32, 0.22);
}

.site-header.header-on-article .main-navigation a {
    color: #492520;
}

.site-header.header-on-article .header-button {
    color: #492520;
    border-color: rgba(73, 37, 32, 0.55);
}

.site-header.header-on-article .main-navigation a:hover {
    color: #d4ad63;
}

.site-header.header-on-article .header-button:hover {
    color: #d4ad63;
    border-color: #d4ad63;
}

.site-header.header-on-article .menu-toggle {
    color: #492520;
    border-color: rgba(73, 37, 32, 0.55);
}

.news-article {
    max-width: 850px;
    margin: 0 auto;
}

.news-article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.news-article-meta time {
    color: #8a6d3b;
    font-size: 14px;
    letter-spacing: 0.04em;
}

.news-article-back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #492520;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.4s ease;
}

.news-article-back:hover {
    color: #d4ad63;
}

.news-article-header {
    margin: 0;
}

.news-article-header h1 {
    margin: 0;
    color: #492520;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 400;
    line-height: 1.05;
}

.news-article-video {
    width: 65%;
    margin: 18px auto 42px;
    aspect-ratio: 16 / 9;
}

.news-article-video iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.news-article-content {
    margin-top: 14px;
}

.news-article-lead {
    margin: 0;
    color: #492520;
    font-size: 19px;
    line-height: 1.6;
}

.news-article-feature {
    margin-top: 28px;
}

.news-article-feature img {
    float: left;
    width: 27%;
    height: auto;
    margin: 0 32px 20px 0;
}

.news-article-bottom-image {
    width: 50%;
    margin: 32px auto 0;
}

.news-article-bottom-image img {
    display: block;
    width: 100%;
    height: auto;
}

.news-article-feature::after {
    content: "";
    display: block;
    clear: both;
}

.news-article-feature > p,
.news-article-feature-text p {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.6;
}

.news-article-feature-text p:last-child {
    margin-bottom: 0;
}

.site-header.header-on-article .main-navigation .header-button {
    margin-left: 0;
}

.news-article-feature-text a {
    color: #8a6d3b;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.4s ease;
}

.news-article-feature-text a:hover {
    color: #492520;
}

@media (max-width: 1100px) {
    .site-header.header-on-article .header-menu .main-navigation a {
        color: rgba(255, 255, 255, 0.82);
        -webkit-text-fill-color: currentColor;
    }
	
	.site-header.header-on-article .main-navigation .header-button {
		justify-content: flex-start;
		text-align: left;
	}

}

@media (max-width: 560px) {
    .news-article-feature img {
        display: block;
        float: none;
        width: 80%;
        margin: 0 auto 20px;
    }
}

@media (max-width: 400px) {
    .news-article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .news-article-back {
        order: 1;
    }

    .news-article-meta time {
        order: 2;
    }
}

@media (min-width: 1101px) {
    .news-article-page {
        padding-top: 55px;
    }
}

/* =========================
   PAGE TRANSITION
   ========================= */
   
.page-transition {
    transform: translateX(100vw);
}

.page-transition.page-entered {
    transform: translateX(0);
    transition: transform 0.45s ease-in-out;
}

.page-slide-overlay {
    position: fixed;
    z-index: 10000;
    inset: 0;
    background-color: #f5f1e9;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    pointer-events: none;
}

.page-slide-overlay.is-active {
    transform: translateX(0);
}

.page-transition.page-exiting {
    transform: translateX(100vw);
    transition: transform 0.45s ease-in-out;
}

.page-transition-home {
    transform: translateX(-100vw);
}

.page-transition-home.page-entered {
    transform: translateX(0);
    transition: transform 0.45s ease-in-out;
}

/* =========================
   CONTACT
   ========================= */

.contact-page {
    min-height: 100vh;
    padding: 28px 48px 64px;
    background-color: #f5f1e9;
    color: #492520;
}

.contact-content {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
}

.contact-label {
    margin: 0 0 10px;
    color: #d4ad63;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-content h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 3vw, 46px);
    font-weight: 400;
    line-height: 1.05;
}

.contact-intro {
    max-width: 580px;
    margin: 5px 0 10px;
    font-size: 17px;
    line-height: 1.6;
}

.contact-form {
    display: grid;
    gap: 8px;
}

.contact-field {
    display: grid;
    gap: 5px;
}

.contact-field label {
    font-size: 14px;
    font-weight: 600;
}

.contact-field label span {
    font-weight: 400;
    opacity: 0.7;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    box-sizing: border-box;
    color: #492520;
    background-color: transparent;
    border: 1px solid rgba(73, 37, 32, 0.35);
    border-radius: 0;
    font: inherit;
}

.contact-field input {
    padding: 4px 11px;
}

.contact-field textarea {
    padding: 12px 14px;
}

.contact-field textarea {
    resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: #d4ad63;
}

.contact-submit {
    justify-self: start;
    padding: 12px 22px;
    color: #492520;
    background: transparent;
    border: 1px solid rgba(73, 37, 32, 0.55);
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition:
        color 0.4s ease,
        border-color 0.4s ease,
        background-color 0.4s ease;
}

.contact-submit:hover {
    color: #d4ad63;
    border-color: #d4ad63;
}

.contact-form-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.contact-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-socials a {
    display: flex;
    align-items: center;
}

.contact-socials img {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.header-socials img,
.contact-socials img {
    transition: transform 0.3s ease;
}

.header-socials a:hover img,
.contact-socials a:hover img {
    transform: scale(1.12);
}

/* Desktop contactvenster */

.contact-modal {
    display: none;
}

@media (min-width: 1101px) {
    .contact-modal.is-open {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        z-index: 10000;
        inset: 0;
    }

    .contact-modal-backdrop {
        position: absolute;
        inset: 0;
        background-color: rgba(17, 16, 15, 0.55);
    }

    .contact-modal-panel {
        position: relative;
        z-index: 1;
        width: min(720px, calc(100vw - 96px));
        box-sizing: border-box;
        padding: 32px 40px 36px;
        background-color: rgba(250, 248, 243, 0.88);
		color: #492520;
		border: 1px solid rgba(212, 173, 99, 0.65);
		border-radius: 12px;
		backdrop-filter: blur(5px);
		-webkit-backdrop-filter: blur(5px);
        box-shadow: 0 18px 55px rgba(17, 16, 15, 0.25);
    }

    .contact-modal-panel h2 {
        margin: 0;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 38px;
        font-weight: 400;
        line-height: 1.05;
    }

    .contact-modal-close {
        position: absolute;
        top: 14px;
        right: 18px;
        padding: 0;
        color: #492520;
        background: none;
        border: 0;
        font-size: 30px;
        font-weight: 300;
        line-height: 1;
        cursor: pointer;
        transition: color 0.4s ease;
    }

    .contact-modal-close:hover {
        color: #d4ad63;
    }
}

