/*
Theme Name: Møn Tryk
Theme URI: https://montryk.dk/
Author: Møn Tryk
Description: Lightweight custom presentation theme for Møn Tryk.
Version: 0.3.3
Text Domain: mon-tryk
*/

:root {
    --mt-header: #263940;
    --mt-header-gradient: linear-gradient(118deg, #2b4149 0%, #24383f 46%, #1d2e34 100%);
    --mt-gold: #b48c46;
    --mt-gold-dark: #72521f;
    --mt-gold-mid: #99702f;
    --mt-gold-light: #c3a15c;
    --mt-gold-gradient: linear-gradient(135deg, #74531f 0%, #9b7433 42%, #c3a15c 67%, #7d5a24 100%);
    --mt-text: #1f2225;
    --mt-muted: #f2f1ef;
    --mt-footer: #17191a;
    --mt-white: #ffffff;
    --mt-header-height: 106px;
    --mt-footer-height: 42px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    height: 100%;
}

body {
    overflow: hidden;
    color: var(--mt-text);
    background: var(--mt-muted);
    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

.mt-site {
    height: 100svh;
    display: grid;
    grid-template-rows: var(--mt-header-height) minmax(0, 1fr) var(--mt-footer-height);
    overflow: hidden;
}

body.admin-bar .mt-site {
    height: calc(100svh - 32px);
}

@media (max-width: 782px) {
    body.admin-bar .mt-site {
        height: calc(100svh - 46px);
    }
}

.mt-header {
    position: relative;
    z-index: 20;
    background: var(--mt-header-gradient);
    border-bottom: 1px solid var(--mt-gold-mid);
}

.mt-header-inner {
    width: min(1560px, calc(100% - 36px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 54px;
}

.mt-logo-link {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.mt-logo {
    width: 185px;
    height: auto;
    display: block;
}

.mt-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 34px;
}

.mt-nav a {
    color: var(--mt-gold);
    background: var(--mt-gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    text-transform: uppercase;
    font-size: clamp(15px, 1.3vw, 21px);
    font-weight: 400;
    letter-spacing: .02em;
    white-space: nowrap;
    position: relative;
    padding-bottom: 8px;
    transition: opacity .15s ease;
}

.mt-nav a.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    background: var(--mt-gold-gradient);
}

.mt-nav a:hover,
.mt-nav a:focus-visible {
    opacity: .7;
}

.mt-menu-toggle {
    display: none;
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--mt-gold);
    font-size: 31px;
    line-height: 1;
    cursor: pointer;
    padding: 8px;
}

.mt-scroll {
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    background: var(--mt-muted);
}

.home .mt-scroll {
    background: var(--mt-header-gradient);
}

.mt-hero {
    position: relative;
    min-height: 70svh;
    overflow: hidden;
    background: #747875;
    border-bottom: 1px solid var(--mt-gold-mid);
}

.mt-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #202427;
    background-image: url("assets/images/hero-home.jpg");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    filter: none;
    transform: none;
}

.mt-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(255,255,255,.05) 0%, rgba(255,255,255,0) 32%, rgba(0,0,0,.20) 100%),
        linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.24) 100%),
        linear-gradient(115deg, rgba(255,255,255,.03) 0%, rgba(255,255,255,.01) 28%, rgba(0,0,0,.18) 100%);
    pointer-events: none;
}

.mt-home-intro {
    position: relative;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 78px 24px 62px;
    background: transparent;
    text-align: center;
}

.mt-eyebrow {
    display: inline-block;
    position: relative;
    margin: 0 0 28px;
    color: var(--mt-gold);
    background: var(--mt-gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: .19em;
    font-size: 13px;
}

.mt-eyebrow::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
    width: 58px;
    height: 2px;
    background: var(--mt-gold);
}

.mt-home-intro h1,
.mt-feature-copy h2,
.mt-cta h2,
.mt-page-title {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    color: var(--mt-gold);
    background: var(--mt-gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 3px 14px rgba(0,0,0,.16);
}

.mt-home-intro h1 {
    font-size: clamp(38px, 4.5vw, 70px);
    letter-spacing: -.02em;
}

.mt-home-intro p {
    max-width: 760px;
    margin: 20px auto 0;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,.96);
}

.mt-feature-grid {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: transparent;
}

.mt-feature-image {
    min-height: 600px;
    background-position: center;
    background-size: cover;
}

.mt-feature-image.stativ {
    background-image: url("assets/images/stativ.jpg");
}

.mt-feature-image.boellehatte {
    background-image: url("assets/images/boellehatte.jpg");
}

.mt-feature-copy {
    position: relative;
    min-height: 600px;
    padding: clamp(46px, 7vw, 90px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
}

.mt-feature-copy::before,
.mt-feature-copy::after,
.mt-home-intro::before,
.mt-home-intro::after {
    position: absolute;
    color: var(--mt-gold-mid);
    font-size: 12px;
    line-height: 1;
    opacity: .95;
    pointer-events: none;
}

.mt-feature-copy::before,
.mt-home-intro::before {
    content: "✦";
}

.mt-feature-copy::after,
.mt-home-intro::after {
    content: "✦";
}

.mt-feature-copy::before {
    top: 26px;
    right: 30px;
}

.mt-feature-copy::after {
    bottom: 28px;
    left: 28px;
}

.mt-home-intro::before {
    top: 26px;
    left: 34px;
}

.mt-home-intro::after {
    top: 26px;
    right: 34px;
}

.mt-feature-copy h2 {
    font-size: clamp(39px, 4vw, 58px);
    line-height: .98;
    max-width: 500px;
}

.mt-rule {
    width: 92px;
    height: 3px;
    background: var(--mt-gold-gradient);
    margin: 30px 0;
}

.mt-feature-copy p {
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 18px;
    max-width: 500px;
    color: rgba(255,255,255,.96);
}

.mt-link {
    display: inline-block;
    margin-top: 8px;
    font-weight: 700;
    color: rgba(255,255,255,.98);
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.mt-cta {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto 72px;
    padding: 80px 30px;
    text-align: center;
    background: #202427;
    color: white;
}

.mt-cta h2 {
    font-size: clamp(36px, 4vw, 58px);
}

.mt-cta p {
    max-width: 720px;
    margin: 20px auto 28px;
    line-height: 1.65;
}

.mt-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 28px;
    border-radius: 999px;
    background: var(--mt-gold-gradient);
    color: #17191a;
    text-decoration: none;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.16),
        0 4px 14px rgba(0,0,0,.16);
    font-weight: 700;
}

.mt-footer {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mt-footer);
    color: #fff;
    font-size: 12px;
    font-style: italic;
}

.mt-page {
    min-height: 100%;
    padding: 80px 24px 100px;
    background: #fff;
}

.mt-page-inner {
    width: min(1100px, 100%);
    margin: 0 auto;
}

.mt-page-title {
    font-size: clamp(44px, 6vw, 78px);
    margin-bottom: 42px;
}

.mt-page-content {
    font-size: 18px;
    line-height: 1.75;
}

.mt-page-content img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 850px) {
    :root {
        --mt-header-height: 76px;
        --mt-footer-height: 36px;
    }

    .mt-header-inner {
        width: calc(100% - 20px);
        justify-content: space-between;
        gap: 12px;
    }

    .mt-logo {
        width: 118px;
    }

    .mt-menu-toggle {
        display: block;
    }

    .mt-nav {
        display: none;
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        padding: 18px 22px 22px;
        background: var(--mt-header);
        border-bottom: 1px solid var(--mt-gold-mid);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .mt-nav.is-open {
        display: flex;
    }

    .mt-nav a {
        padding: 14px 4px;
        font-size: 17px;
        border-bottom: 1px solid rgba(231, 197, 127, .18);
    }

    .mt-nav a.is-active::after {
        left: 4px;
        right: auto;
        width: 72px;
        bottom: 6px;
    }

    .mt-hero {
        min-height: 58svh;
    }

    .mt-home-intro {
        padding: 54px 22px 46px;
    }

    .mt-home-intro p {
        font-size: 16px;
    }

    .mt-feature-grid {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .mt-feature-image,
    .mt-feature-copy {
        min-height: auto;
    }

    .mt-feature-image {
        aspect-ratio: 4 / 3;
    }

    .mt-feature-copy {
        padding: 48px 24px 56px;
    }

    .mt-feature-copy.order-mobile-after {
        order: 2;
    }

    .mt-feature-image.order-mobile-before {
        order: 1;
    }

    .mt-cta {
        width: 100%;
        margin-bottom: 0;
        padding: 60px 22px;
    }

    .mt-page {
        padding: 52px 22px 70px;
    }
}


@media (max-width: 850px) {
    .mt-feature-copy::before {
        top: 18px;
        right: 22px;
    }

    .mt-feature-copy::after {
        bottom: 20px;
        left: 22px;
    }

    .mt-home-intro::before {
        left: 22px;
        top: 18px;
    }

    .mt-home-intro::after {
        right: 22px;
        top: 18px;
    }
}


.mt-coming-soon {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    background: var(--mt-header-gradient);
    text-align: center;
}

.mt-coming-soon-inner {
    width: min(900px, 100%);
    padding: 70px 30px;
}

.mt-coming-soon-kicker {
    margin: 0 0 18px;
    color: rgba(255,255,255,.9);
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: 13px;
}

.mt-coming-soon h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(52px, 7vw, 96px);
    line-height: .95;
    font-weight: 400;
    color: var(--mt-gold);
    background: var(--mt-gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 18px rgba(0,0,0,.16);
}

.mt-coming-soon-rule {
    width: 96px;
    height: 2px;
    margin: 30px auto;
    background: var(--mt-gold-gradient);
}

.mt-coming-soon p {
    max-width: 620px;
    margin: 0 auto;
    color: rgba(255,255,255,.92);
    font-size: 18px;
    line-height: 1.7;
}


.mt-coming-soon-inner {
    position: relative;
}

.mt-coming-star {
    position: absolute;
    color: var(--mt-gold-mid);
    font-size: 11px;
    line-height: 1;
    opacity: .9;
    pointer-events: none;
}

.mt-coming-star.star-1 {
    top: 20px;
    left: 12%;
}

.mt-coming-star.star-2 {
    top: 68px;
    right: 10%;
    font-size: 8px;
}

.mt-coming-star.star-3 {
    bottom: 74px;
    left: 18%;
    font-size: 8px;
}

.mt-coming-star.star-4 {
    bottom: 28px;
    right: 16%;
}

@media (max-width: 850px) {
    .mt-coming-star.star-1 {
        left: 4%;
    }

    .mt-coming-star.star-2 {
        right: 4%;
    }

    .mt-coming-star.star-3 {
        left: 6%;
    }

    .mt-coming-star.star-4 {
        right: 6%;
    }
}


/* =========================
   Tryk Opgaver
   ========================= */

.mt-work-page {
    min-height: 100%;
    background: var(--mt-header-gradient);
    color: white;
    padding: 64px 24px 80px;
}

.mt-work-wrap {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.mt-work-hero {
    position: relative;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: stretch;
    margin-bottom: 28px;
}

.mt-work-hero-copy {
    position: relative;
    padding: clamp(44px, 6vw, 82px);
    background: rgba(20,27,30,.34);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mt-work-kicker {
    margin: 0 0 18px;
    color: rgba(255,255,255,.84);
    text-transform: uppercase;
    letter-spacing: .20em;
    font-size: 13px;
}

.mt-work-title,
.mt-work-copy h2,
.mt-work-cta h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    color: var(--mt-gold);
    background: var(--mt-gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 3px 14px rgba(0,0,0,.16);
}

.mt-work-title {
    font-size: clamp(52px, 6.5vw, 88px);
    line-height: .95;
}

.mt-work-hero-copy p,
.mt-work-copy p {
    color: rgba(255,255,255,.94);
    font-size: 17px;
    line-height: 1.75;
}

.mt-work-hero-copy p {
    max-width: 520px;
    margin: 26px 0 0;
}

.mt-work-image {
    min-height: 560px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.mt-work-image.hero {
    background-image: url("assets/images/opgaver-4.jpg");
}

.mt-work-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
}

.mt-work-image.workshop {
    background-image: url("assets/images/opgaver-1.jpg");
    background-position: center 38%;
}

.mt-work-image.machine {
    background-image: url("assets/images/opgaver-2.jpg");
    background-position: center;
}

.mt-work-image.design {
    background-image: url("assets/images/opgaver-3.jpg");
    background-position: center 44%;
}

.mt-work-image.campaign {
    background-image: url("assets/images/opgaver-5.jpg");
    background-position: center 38%;
}

.mt-work-copy {
    position: relative;
    padding: clamp(42px, 6vw, 76px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(20,27,30,.22);
}

.mt-work-copy h2 {
    font-size: clamp(38px, 4.3vw, 60px);
    line-height: 1.02;
}

.mt-work-rule {
    width: 88px;
    height: 2px;
    margin: 26px 0;
    background: var(--mt-gold-gradient);
}

.mt-work-star {
    position: absolute;
    color: var(--mt-gold-mid);
    font-size: 10px;
    opacity: .9;
    pointer-events: none;
}

.mt-work-star.a {
    top: 24px;
    right: 28px;
}

.mt-work-star.b {
    bottom: 24px;
    left: 28px;
    font-size: 8px;
}

.mt-work-cta {
    position: relative;
    margin-top: 28px;
    padding: 74px 30px;
    text-align: center;
    background: #202427;
}

.mt-work-cta h2 {
    font-size: clamp(40px, 5vw, 64px);
}

.mt-work-cta p {
    max-width: 720px;
    margin: 18px auto 28px;
    color: rgba(255,255,255,.92);
    line-height: 1.7;
}

@media (max-width: 850px) {
    .mt-work-page {
        padding: 30px 0 0;
    }

    .mt-work-hero,
    .mt-work-row {
        grid-template-columns: 1fr;
    }

    .mt-work-hero-copy,
    .mt-work-copy {
        padding: 46px 24px 52px;
    }

    .mt-work-image {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .mt-work-image.workshop,
    .mt-work-image.design {
        aspect-ratio: 3 / 4;
        background-position: center;
    }

    .mt-work-row.mobile-image-first .mt-work-image {
        order: 1;
    }

    .mt-work-row.mobile-image-first .mt-work-copy {
        order: 2;
    }

    .mt-work-cta {
        margin-top: 0;
        padding: 58px 24px 64px;
    }
}


/* =========================
   Om Os
   ========================= */

.mt-about-page {
    min-height: 100%;
    padding: 64px 24px 80px;
    background: var(--mt-header-gradient);
    color: white;
}

.mt-about-wrap {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.mt-about-hero,
.mt-about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
}

.mt-about-photo {
    min-height: 580px;
    background-size: cover;
    background-repeat: no-repeat;
}

.mt-about-photo.owners {
    background-image: url("assets/images/owner.jpg");
    background-position: center 42%;
}

.mt-about-photo.workshop {
    background-image: url("assets/images/about-print.jpg");
    background-position: center 48%;
}

.mt-about-copy {
    position: relative;
    padding: clamp(46px, 6vw, 82px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(20,27,30,.28);
}

.mt-about-kicker {
    margin: 0 0 18px;
    color: rgba(255,255,255,.84);
    text-transform: uppercase;
    letter-spacing: .20em;
    font-size: 13px;
}

.mt-about-title,
.mt-about-copy h2,
.mt-about-people h2,
.mt-about-card h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    color: var(--mt-gold);
    background: var(--mt-gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 3px 14px rgba(0,0,0,.16);
}

.mt-about-title {
    font-size: clamp(52px, 6.5vw, 88px);
    line-height: .95;
}

.mt-about-copy h2 {
    font-size: clamp(38px, 4.3vw, 60px);
    line-height: 1.02;
}

.mt-about-copy p,
.mt-about-card p {
    color: rgba(255,255,255,.94);
    font-size: 17px;
    line-height: 1.75;
}

.mt-about-rule {
    width: 88px;
    height: 2px;
    margin: 26px 0;
    background: var(--mt-gold-gradient);
}

.mt-about-star {
    position: absolute;
    color: var(--mt-gold-mid);
    font-size: 10px;
    opacity: .9;
    pointer-events: none;
}

.mt-about-star.a {
    top: 24px;
    right: 28px;
}

.mt-about-star.b {
    bottom: 24px;
    left: 28px;
    font-size: 8px;
}

.mt-about-people {
    position: relative;
    padding: 78px 0 0;
}

.mt-about-people > h2 {
    text-align: center;
    font-size: clamp(42px, 5vw, 66px);
}

.mt-about-people > .mt-about-rule {
    margin-left: auto;
    margin-right: auto;
}

.mt-about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 38px;
}

.mt-about-card {
    position: relative;
    padding: 48px;
    background: #202427;
    border: 1px solid rgba(185,145,70,.22);
}

.mt-about-card h3 {
    font-size: clamp(34px, 3.5vw, 48px);
}

.mt-about-role {
    display: block;
    margin: 12px 0 24px;
    color: var(--mt-gold-light);
    font-size: 13px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.mt-about-cta {
    position: relative;
    margin-top: 28px;
    padding: 72px 30px;
    text-align: center;
    background: rgba(20,27,30,.42);
}

.mt-about-cta h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    font-size: clamp(40px, 5vw, 64px);
    color: var(--mt-gold);
    background: var(--mt-gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mt-about-cta p {
    max-width: 720px;
    margin: 18px auto 28px;
    color: rgba(255,255,255,.92);
    line-height: 1.7;
}

@media (max-width: 850px) {
    .mt-about-page {
        padding: 30px 0 0;
    }

    .mt-about-hero,
    .mt-about-story {
        grid-template-columns: 1fr;
    }

    .mt-about-photo {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .mt-about-photo.owners {
        aspect-ratio: 1 / 1;
        background-position: center 40%;
    }

    .mt-about-copy {
        padding: 46px 24px 52px;
    }

    .mt-about-story .mt-about-photo {
        order: 1;
    }

    .mt-about-story .mt-about-copy {
        order: 2;
    }

    .mt-about-people {
        padding: 56px 18px 0;
    }

    .mt-about-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .mt-about-card {
        padding: 36px 24px;
    }

    .mt-about-cta {
        margin-top: 18px;
        padding: 58px 24px 64px;
    }
}


/* =========================
   Kontakt
   ========================= */

.mt-contact-page {
    min-height: 100%;
    padding: 64px 24px 80px;
    background: var(--mt-header-gradient);
    color: white;
}

.mt-contact-wrap {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.mt-contact-hero {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    min-height: 610px;
}

.mt-contact-photo {
    min-height: 610px;
    background:
        linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.18)),
        url("assets/images/kontakt.jpg") center 45% / cover no-repeat;
}

.mt-contact-copy {
    position: relative;
    padding: clamp(46px, 6vw, 82px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(20,27,30,.30);
}

.mt-contact-kicker {
    margin: 0 0 18px;
    color: rgba(255,255,255,.84);
    text-transform: uppercase;
    letter-spacing: .20em;
    font-size: 13px;
}

.mt-contact-title,
.mt-contact-details h2,
.mt-contact-box h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    color: var(--mt-gold);
    background: var(--mt-gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 3px 14px rgba(0,0,0,.16);
}

.mt-contact-title {
    font-size: clamp(52px, 6.5vw, 88px);
    line-height: .95;
}

.mt-contact-copy > p {
    max-width: 520px;
    margin: 26px 0 0;
    color: rgba(255,255,255,.94);
    font-size: 17px;
    line-height: 1.75;
}

.mt-contact-rule {
    width: 88px;
    height: 2px;
    margin: 26px 0;
    background: var(--mt-gold-gradient);
}

.mt-contact-star {
    position: absolute;
    color: var(--mt-gold-mid);
    font-size: 10px;
    opacity: .9;
    pointer-events: none;
}

.mt-contact-star.a {
    top: 24px;
    right: 28px;
}

.mt-contact-star.b {
    bottom: 24px;
    left: 28px;
    font-size: 8px;
}

.mt-contact-details {
    padding: 76px 0 0;
}

.mt-contact-details > h2 {
    text-align: center;
    font-size: clamp(42px, 5vw, 66px);
}

.mt-contact-details > .mt-contact-rule {
    margin-left: auto;
    margin-right: auto;
}

.mt-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 38px;
}

.mt-contact-box {
    position: relative;
    min-height: 230px;
    padding: 42px;
    background: #202427;
    border: 1px solid rgba(185,145,70,.22);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mt-contact-box h3 {
    font-size: clamp(30px, 3vw, 42px);
}

.mt-contact-label {
    margin-top: 16px;
    color: rgba(255,255,255,.62);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.mt-contact-value {
    margin-top: 7px;
    color: rgba(255,255,255,.96);
    font-size: 18px;
    line-height: 1.55;
}

.mt-contact-note {
    position: relative;
    margin-top: 24px;
    padding: 62px 30px;
    background: rgba(20,27,30,.38);
    text-align: center;
}

.mt-contact-note h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    font-size: clamp(38px, 4.5vw, 58px);
    color: var(--mt-gold);
    background: var(--mt-gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mt-contact-note p {
    max-width: 720px;
    margin: 18px auto 0;
    color: rgba(255,255,255,.92);
    line-height: 1.7;
}

@media (max-width: 850px) {
    .mt-contact-page {
        padding: 30px 0 0;
    }

    .mt-contact-hero {
        grid-template-columns: 1fr;
    }

    .mt-contact-photo {
        min-height: 0;
        aspect-ratio: 4 / 3;
        background-position: center 45%;
    }

    .mt-contact-copy {
        padding: 46px 24px 52px;
    }

    .mt-contact-details {
        padding: 56px 18px 0;
    }

    .mt-contact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .mt-contact-box {
        min-height: 0;
        padding: 34px 24px;
    }

    .mt-contact-note {
        margin-top: 18px;
        padding: 54px 24px 60px;
    }
}


/* =========================
   Final presentation polish
   ========================= */

:root {
    --mt-surface: rgba(20,27,30,.34);
    --mt-surface-strong: #202427;
    --mt-radius-lg: 24px;
    --mt-radius-md: 18px;
    --mt-soft-shadow: 0 18px 50px rgba(0,0,0,.14);
    --mt-soft-border: 1px solid rgba(195,161,92,.16);
}

/* Cleaner, slightly richer navigation treatment */
.mt-header {
    box-shadow: 0 8px 26px rgba(0,0,0,.14);
}

.mt-nav a {
    transition:
        opacity .16s ease,
        transform .16s ease,
        text-shadow .16s ease;
}

.mt-nav a:hover,
.mt-nav a:focus-visible {
    opacity: 1;
    transform: translateY(-1px);
    text-shadow: 0 0 12px rgba(195,161,92,.18);
}

.mt-nav a.is-active::after {
    border-radius: 999px;
    box-shadow: 0 0 10px rgba(180,140,70,.18);
}

/* Home page alternating blocks */
.mt-feature-grid {
    gap: 16px;
    background: transparent;
}

.mt-feature-image,
.mt-feature-copy {
    overflow: hidden;
    box-shadow: var(--mt-soft-shadow);
}

.mt-feature-grid > :nth-child(1) {
    border-radius: var(--mt-radius-lg) 0 0 0;
}

.mt-feature-grid > :nth-child(2) {
    border-radius: 0 var(--mt-radius-lg) 0 0;
}

.mt-feature-grid > :nth-child(3) {
    border-radius: 0 0 0 var(--mt-radius-lg);
}

.mt-feature-grid > :nth-child(4) {
    border-radius: 0 0 var(--mt-radius-lg) 0;
}

.mt-feature-copy {
    border: var(--mt-soft-border);
    backdrop-filter: blur(2px);
}

.mt-home-intro {
    padding-left: 34px;
    padding-right: 34px;
}

/* Hero treatment: slightly more cinematic without changing composition */
.mt-hero::after {
    background:
        radial-gradient(circle at 50% 42%, rgba(255,255,255,.025) 0%, rgba(255,255,255,0) 31%, rgba(0,0,0,.24) 100%),
        linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.28) 100%),
        linear-gradient(118deg, rgba(255,255,255,.018) 0%, rgba(255,255,255,0) 35%, rgba(0,0,0,.16) 100%);
}

/* CTA panels */
.mt-cta,
.mt-work-cta,
.mt-about-cta,
.mt-contact-note {
    border: var(--mt-soft-border);
    border-radius: var(--mt-radius-lg) 0 var(--mt-radius-lg) 0;
    box-shadow: var(--mt-soft-shadow);
}

/* Tryk Opgaver */
.mt-work-hero,
.mt-work-row {
    gap: 16px;
}

.mt-work-hero-copy,
.mt-work-copy,
.mt-work-image {
    overflow: hidden;
    box-shadow: var(--mt-soft-shadow);
}

.mt-work-hero-copy {
    border-radius: var(--mt-radius-lg) 0 0 0;
    border: var(--mt-soft-border);
}

.mt-work-hero .mt-work-image {
    border-radius: 0 var(--mt-radius-lg) 0 0;
}

.mt-work-row:nth-of-type(even) .mt-work-image {
    border-radius: var(--mt-radius-md) 0 0 var(--mt-radius-md);
}

.mt-work-row:nth-of-type(even) .mt-work-copy {
    border-radius: 0 var(--mt-radius-md) var(--mt-radius-md) 0;
}

.mt-work-row:nth-of-type(odd) .mt-work-copy {
    border-radius: var(--mt-radius-md) 0 0 var(--mt-radius-md);
}

.mt-work-row:nth-of-type(odd) .mt-work-image {
    border-radius: 0 var(--mt-radius-md) var(--mt-radius-md) 0;
}

.mt-work-copy {
    border: var(--mt-soft-border);
}

/* Om os */
.mt-about-hero,
.mt-about-story {
    gap: 16px;
}

.mt-about-photo,
.mt-about-copy,
.mt-about-card {
    overflow: hidden;
    box-shadow: var(--mt-soft-shadow);
}

.mt-about-hero .mt-about-photo {
    border-radius: var(--mt-radius-lg) 0 0 0;
}

.mt-about-hero .mt-about-copy {
    border-radius: 0 var(--mt-radius-lg) 0 0;
}

.mt-about-story .mt-about-copy {
    border-radius: 0 0 0 var(--mt-radius-lg);
}

.mt-about-story .mt-about-photo {
    border-radius: 0 0 var(--mt-radius-lg) 0;
}

.mt-about-copy {
    border: var(--mt-soft-border);
}

.mt-about-card:first-child {
    border-radius: var(--mt-radius-md) 0 var(--mt-radius-md) 0;
}

.mt-about-card:last-child {
    border-radius: 0 var(--mt-radius-md) 0 var(--mt-radius-md);
}

/* Kontakt */
.mt-contact-hero {
    gap: 16px;
}

.mt-contact-photo,
.mt-contact-copy,
.mt-contact-box {
    overflow: hidden;
    box-shadow: var(--mt-soft-shadow);
}

.mt-contact-copy {
    border-radius: var(--mt-radius-lg) 0 0 var(--mt-radius-lg);
    border: var(--mt-soft-border);
}

.mt-contact-photo {
    border-radius: 0 var(--mt-radius-lg) var(--mt-radius-lg) 0;
}

.mt-contact-box:nth-child(1),
.mt-contact-box:nth-child(4) {
    border-radius: var(--mt-radius-md) 0 var(--mt-radius-md) 0;
}

.mt-contact-box:nth-child(2),
.mt-contact-box:nth-child(3) {
    border-radius: 0 var(--mt-radius-md) 0 var(--mt-radius-md);
}

/* Coming-soon panel */
.mt-coming-soon-inner {
    border: var(--mt-soft-border);
    border-radius: var(--mt-radius-lg) 0 var(--mt-radius-lg) 0;
    background: rgba(20,27,30,.16);
    box-shadow: var(--mt-soft-shadow);
}

/* Buttons: a little less glossy, more corporate */
.mt-button {
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.10),
        0 6px 18px rgba(0,0,0,.18);
    transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}

.mt-button:hover,
.mt-button:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.04);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.12),
        0 10px 24px rgba(0,0,0,.20);
}

/* Keep rounded treatment clean on phones */
@media (max-width: 850px) {
    .mt-feature-grid,
    .mt-work-hero,
    .mt-work-row,
    .mt-about-hero,
    .mt-about-story,
    .mt-contact-hero {
        gap: 10px;
    }

    .mt-feature-grid > *,
    .mt-work-hero-copy,
    .mt-work-hero .mt-work-image,
    .mt-work-row .mt-work-image,
    .mt-work-row .mt-work-copy,
    .mt-about-hero .mt-about-photo,
    .mt-about-hero .mt-about-copy,
    .mt-about-story .mt-about-copy,
    .mt-about-story .mt-about-photo,
    .mt-contact-copy,
    .mt-contact-photo {
        border-radius: var(--mt-radius-md);
    }

    .mt-cta,
    .mt-work-cta,
    .mt-about-cta,
    .mt-contact-note,
    .mt-coming-soon-inner {
        border-radius: var(--mt-radius-md) 0 var(--mt-radius-md) 0;
    }
}


/* =========================
   v0.2.7 corner continuity
   Round only free outer edges.
   Shared image/text seams stay perfectly straight.
   ========================= */

/* Homepage: treat the 2x2 image/text area as one continuous surface. */
.mt-feature-grid {
    gap: 0;
    overflow: hidden;
    border-radius: var(--mt-radius-lg) var(--mt-radius-lg) 0 0;
    box-shadow: var(--mt-soft-shadow);
}

.mt-feature-grid > :nth-child(1),
.mt-feature-grid > :nth-child(2),
.mt-feature-grid > :nth-child(3),
.mt-feature-grid > :nth-child(4),
.mt-feature-image,
.mt-feature-copy {
    border-radius: 0;
    box-shadow: none;
}

/* CTA continues directly from the homepage grid, so its top edge remains straight. */
.mt-cta {
    border-radius: 0 0 var(--mt-radius-lg) var(--mt-radius-lg);
}

/* Tryk Opgaver: each two-column section has one outer silhouette;
   the shared center seam is never rounded. */
.mt-work-hero,
.mt-work-row {
    gap: 0;
    overflow: hidden;
}

.mt-work-hero {
    border-radius: var(--mt-radius-lg);
}

.mt-work-row {
    border-radius: 0;
}

.mt-work-hero-copy,
.mt-work-hero .mt-work-image,
.mt-work-row .mt-work-image,
.mt-work-row .mt-work-copy,
.mt-work-row:nth-of-type(even) .mt-work-image,
.mt-work-row:nth-of-type(even) .mt-work-copy,
.mt-work-row:nth-of-type(odd) .mt-work-image,
.mt-work-row:nth-of-type(odd) .mt-work-copy {
    border-radius: 0;
    box-shadow: none;
}

/* About: hero and story visually form one continuous block. */
.mt-about-hero,
.mt-about-story {
    gap: 0;
    overflow: hidden;
}

.mt-about-hero {
    border-radius: var(--mt-radius-lg) var(--mt-radius-lg) 0 0;
}

.mt-about-story {
    border-radius: 0 0 var(--mt-radius-lg) var(--mt-radius-lg);
}

.mt-about-hero .mt-about-photo,
.mt-about-hero .mt-about-copy,
.mt-about-story .mt-about-copy,
.mt-about-story .mt-about-photo {
    border-radius: 0;
    box-shadow: none;
}

/* Contact hero is isolated, so only the outside of the complete pair is rounded. */
.mt-contact-hero {
    gap: 0;
    overflow: hidden;
    border-radius: var(--mt-radius-lg);
    box-shadow: var(--mt-soft-shadow);
}

.mt-contact-copy,
.mt-contact-photo {
    border-radius: 0;
    box-shadow: none;
}

/* Independent cards are not touching, so their restrained corner treatment stays. */
.mt-about-card,
.mt-contact-box,
.mt-coming-soon-inner {
    overflow: hidden;
}

/* Mobile follows the same rule: the group owns the radius, never the touching children. */
@media (max-width: 850px) {
    .mt-feature-grid,
    .mt-work-hero,
    .mt-work-row,
    .mt-about-hero,
    .mt-about-story,
    .mt-contact-hero {
        gap: 0;
    }

    .mt-feature-grid > *,
    .mt-work-hero-copy,
    .mt-work-hero .mt-work-image,
    .mt-work-row .mt-work-image,
    .mt-work-row .mt-work-copy,
    .mt-about-hero .mt-about-photo,
    .mt-about-hero .mt-about-copy,
    .mt-about-story .mt-about-copy,
    .mt-about-story .mt-about-photo,
    .mt-contact-copy,
    .mt-contact-photo {
        border-radius: 0;
    }

    .mt-work-hero,
    .mt-contact-hero {
        border-radius: var(--mt-radius-md);
    }

    .mt-about-hero {
        border-radius: var(--mt-radius-md) var(--mt-radius-md) 0 0;
    }

    .mt-about-story {
        border-radius: 0 0 var(--mt-radius-md) var(--mt-radius-md);
    }

    .mt-feature-grid {
        border-radius: var(--mt-radius-md) var(--mt-radius-md) 0 0;
    }

    .mt-cta {
        border-radius: 0 0 var(--mt-radius-md) var(--mt-radius-md);
    }
}


/* v0.2.8 mobile eyebrow underline alignment */
@media (max-width: 850px) {
    .mt-eyebrow {
        line-height: 1;
        margin-bottom: 28px;
    }

    .mt-eyebrow::after {
        bottom: -7px;
        width: 46px;
        height: 1px;
    }
}


/* v0.2.9 move mobile MØN TRYK underline tighter upward */
@media (max-width: 850px) {
    .mt-eyebrow {
        margin-bottom: 30px;
    }

    .mt-eyebrow::after {
        bottom: -2px;
    }
}


/* v0.3.0 final mobile MØN TRYK underline position */
@media (max-width: 850px) {
    .mt-eyebrow::after {
        bottom: 3px;
    }
}


/* v0.3.1 contact details */
.mt-contact-value a {
    color: inherit;
    text-decoration: none;
}

.mt-contact-value a:hover,
.mt-contact-value a:focus-visible {
    color: var(--mt-gold-light);
}


/* =========================
   v0.3.2 language switcher
   ========================= */

.mt-language-switcher {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-left: 6px;
    flex: 0 0 auto;
}

.mt-lang {
    position: relative;
    width: 25px;
    height: 17px;
    display: block;
    overflow: hidden;
    border-radius: 2px;
    border: 1px solid rgba(255,255,255,.22);
    box-shadow: 0 2px 7px rgba(0,0,0,.22);
    opacity: .70;
    transition: opacity .15s ease, transform .15s ease, box-shadow .15s ease;
}

.mt-lang:hover,
.mt-lang:focus-visible,
.mt-lang.is-active {
    opacity: 1;
    transform: translateY(-1px);
}

.mt-lang.is-active {
    box-shadow:
        0 0 0 1px rgba(180,140,70,.92),
        0 2px 8px rgba(0,0,0,.25);
}

/* Denmark */
.mt-flag-da {
    background:
        linear-gradient(90deg, transparent 0 29%, #fff 29% 39%, transparent 39%),
        linear-gradient(0deg, transparent 0 42%, #fff 42% 58%, transparent 58%),
        #c8102e;
}

/* Netherlands */
.mt-flag-nl {
    background: linear-gradient(
        to bottom,
        #ae1c28 0 33.333%,
        #fff 33.333% 66.666%,
        #21468b 66.666% 100%
    );
}

/* Germany */
.mt-flag-de {
    background: linear-gradient(
        to bottom,
        #111 0 33.333%,
        #dd0000 33.333% 66.666%,
        #ffce00 66.666% 100%
    );
}

/* UK - compact CSS interpretation */
.mt-flag-en {
    background:
        linear-gradient(33deg, transparent 43%, #fff 43% 48%, #c8102e 48% 52%, #fff 52% 57%, transparent 57%),
        linear-gradient(-33deg, transparent 43%, #fff 43% 48%, #c8102e 48% 52%, #fff 52% 57%, transparent 57%),
        linear-gradient(90deg, transparent 39%, #fff 39% 46%, #c8102e 46% 54%, #fff 54% 61%, transparent 61%),
        linear-gradient(0deg, transparent 34%, #fff 34% 43%, #c8102e 43% 57%, #fff 57% 66%, transparent 66%),
        #012169;
}

@media (max-width: 1100px) and (min-width: 851px) {
    .mt-header-inner {
        gap: 24px;
    }

    .mt-nav {
        gap: 20px;
    }

    .mt-lang {
        width: 23px;
        height: 15px;
    }
}

@media (max-width: 850px) {
    .mt-language-switcher {
        margin-left: auto;
        margin-right: 2px;
        gap: 6px;
    }

    .mt-lang {
        width: 22px;
        height: 15px;
    }

    .mt-header-inner {
        gap: 8px;
    }
}


/* =========================
   v0.3.3 About people portraits
   ========================= */

.mt-about-card {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.mt-about-person-photo {
    width: 100%;
    height: 460px;
    display: block;
    object-fit: contain;
    object-position: center;
    background: #172126;
    border-bottom: 1px solid rgba(195,161,92,.18);
}

.mt-about-person-copy {
    position: relative;
    padding: 42px 44px 46px;
    flex: 1;
}

.mt-about-person-copy p {
    margin: 0;
}

.mt-about-person-copy p + p {
    margin-top: 16px;
}

@media (max-width: 850px) {
    .mt-about-person-photo {
        height: 420px;
    }

    .mt-about-person-copy {
        padding: 34px 24px 38px;
    }
}

@media (max-width: 520px) {
    .mt-about-person-photo {
        height: 360px;
    }
}
